@charset "utf-8";
/*===========================
add
===========================*/
/*===========================
shutter
===========================*/
.shutter {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #07428b;
    z-index: 99999;
}
.shutter::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    margin: auto;
    background-color: #FFFFFF;
    width: 0;
    height: 1px;
}
.shutter {
    -webkit-animation: byeShutter 2.6s forwards;
    animation: byeShutter 2.6s forwards;
}
.shutter::before {
    -webkit-animation: shutterOpen 2.6s forwards;
    animation: shutterOpen 2.6s forwards;
}
@keyframes byeShutter {
    70% {
        opacity: 1;
    }
    100% {
        opacity: 0;
        display: none;
        z-index: -1;
    }
}
@keyframes shutterOpen {
    0% {
        width: 0;
        height: 1px;
    }
    50% {
        width: 100%;
        height: 1px;
    }
    90% {
        width: 100%;
        height: 100%;
    }
    100% {
        width: 100%;
        height: 100%;
    }
}
.txWhite {
    color: #FFFFFF;
}
.wf-ryumin {
    font-family: a-otf-ryumin-pr6n, serif;
    font-style: normal;
    font-weight: 300;
}
.flow-section {
    max-width: 800px;
    margin: 60px auto;
    font-family: "Noto Sans JP", sans-serif;
}
.flow-item {
    display: flex;
    align-items: center;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 16px;
    padding: 25px 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}
.flow-item + .arrow {
    text-align: center;
    font-size: 24px;
    color: #e74c3c;
    margin: 10px 0;
}
.flow-icon {
    flex: 0 0 90px;
    text-align: center;
    color: #4776B6;
}
.flow-icon img {
    width: 150px;
    /*height: 150px;*/
    object-fit: contain;
    box-shadow: none;
}
.flow-text {
    flex: 1;
    padding-left: 25px;
}
.flow-text h3 {
    font-size: 18px;
    color: #222;
    margin-bottom: 30px;
    font-weight: 600;
    text-align: left;
	display: inline-block; /* ← テキスト幅に合わせる */
    position: relative;
    
}
.flow-text h3:after {
    height: 2px;            /* ラインの太さ */
    width: 100%;            /* ← h3 のテキスト幅に合わせる */
    left: 0;
    transform: translateX(0%);
    background-color: #acacac;
    border-radius: 8px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
}
.flow-text p {
    font-size: 16px;
    color: #555;
    line-height: 1.8;
}
@media (max-width: 600px) {
    .flow-item {
        flex-direction: column;
        text-align: center;
    }
    .flow-text {
        padding-left: 0;
        margin-top: 15px;
    }
    .flow-icon img {
        width: 60px;
        height: 60px;
    }
}
[href^="tel"] {
    text-decoration: none;
    color: #000;
    cursor: default;
    pointer-events: none;
}
@media screen and (max-width: 768px) {
    [href^="tel"] {
        pointer-events: auto;
    }
}

textarea {
  vertical-align: top;
}
