@charset "utf-8";

/*staging*/
/*************************************************/
/* .nav-map > ul { background: #ff0; } */
/*************************************************/


.detail-body {
    margin-top: 15px;
}

.movie_wrap {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    margin-top: 15px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
}

iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
}

.img_box+.img_box {
    margin-top: 15px;
}

.icon {
    width: 120px;
    align-items: center;
    margin-bottom: 20px;
}

@media (min-width: 768px) {

    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 18px;
        line-height: 1.6;
    }

    h1 {
        margin-bottom: 50px;
    }

    h2 {
        color: #00352d;
        font-weight: bold;
        margin-bottom: 40px;
        position: relative;
        text-align: center;
        font-size: 1.5em;
        /* 文字の中央寄せ */
    }

    h2::after {
        background-color: #c69c6c;
        /* 線の色 */
        bottom: -10px;
        /* 線の位置 */
        content: "";
        height: 3px;
        /* 線の高さ */
        left: 50%;
        /* 線の中央寄せ */
        position: absolute;
        transform: translateX(-50%);
        /* 線の中央寄せ */
        width: 30px;
        /* 線の長さ */
    }

    .hero {
        background-color: #00352d;
        color: white;
        padding: 130px 20px;
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-content h1 img {
        width: auto;
    }

    .benefits {
        background-color: #efefef;
        padding: 80px 20px;
        color: #00352d;
        line-height: 3em;
    }

    .steps,
    .notes {
        background-color: #f6f6f6;
        padding: 100px 20px;
    }

    .info,
    .faq {
        padding: 100px 20px;
    }

    .step {
        display: flex;
        align-items: center;
        gap: 15px;
        margin: 0 auto 40px;
        flex-direction: row;
        flex-wrap: nowrap;
        justify-content: center;
    }

    .step-text {
        text-align: left;
    }

    .step-text_n {
        color: #00352d;
        font-weight: bold;
        font-size: 12px;
    }

    .step-text_t {
        color: #00352d;
        font-weight: bold;
    }

    .step-text p {
        line-height: 1.5em;
        background-color: #d9d9d9;
        padding: 10px 20px;
        font-size: 16px;
        width: 470px
    }

    .info-box {
        background-color: rgba(198, 156, 108, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 50%;
        margin: 0 auto 40px;
        padding: 20px;
        text-align: left;
        line-height: 3em;
    }

    .info-box p {
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        width: 57%;
        padding: 20px;
        text-align: left;
        line-height: 1.5em;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        font-weight: bold;
    }

    .faq-item {
        border-bottom: 1px solid #ccc;
        padding: 10px 0;
        width: 40%;
        margin: 0 auto;
        text-align: left;
    }

    .faq-item .answer {
        display: none;
        padding: 20px 20px 20px 8px;
        background-color: rgba(198, 156, 108, 0.1);
        line-height: 1.5em;
    }

    .faq-item .question {
        cursor: pointer;
        font-weight: bold;
    }

    .faq-item .question::after {
        content: ' ＋';
    }

    .faq-item.open .question::after {
        content: ' －';
    }

    .notes p {
        width: 50%;
        margin: 0 auto;
        text-align: left;
        line-height: 1.5em;
        font-size: 0.8em;
    }

    .hero .button {
        background-color: #FFFFFF;
        color: #00352d;
        border: 1px solid #00352d;
        transition: .3s;
    }

    .hero .button:hover {
        background-color: #00352d;
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
        transition: .3s;
        opacity: unset;
    }

    .button {
        padding: 0px 40px;
        border: 1px solid black;
        color: black;
        cursor: pointer;
        margin-top: 60px;
        transition: .3s;
        display: inline-block;

    }

    .button:hover {
        background-color: #00352d;
        color: #FFFFFF;
        opacity: unset;
        transition: .3s;
    }

    .area {
        width: 20%;
        margin: 0 0 16px 0;
    }

    .sticky-banner {
        position: fixed;
        bottom: 0;
        width: 30%;
        color: white;
        text-align: center;
        padding: 15px;
        opacity: 0;
        right: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out, visibility 0.5s;
        box-sizing: content-box;
    }

    /* 表示時のスタイル */
    .sticky-banner.show {
        opacity: 1;
        visibility: visible;
    }

    .triangle-btn,
    .triangle-btn a {
        position: relative;
        padding: 10px 30px 10px 10px;
        /* 右側に余白を作る */
        background-color: #c69c6c;
        color: #FFFFFF;
        cursor: pointer;
        font-size: 16px;
        font-weight: bolder;
        width: fit-content;
        margin: 0 auto 40px;
    }

    .triangle-btn::after {
        content: "";
        position: absolute;
        right: 20px;
        /* ボタンの右端に配置 */
        top: 50%;
        transform: translateY(-50%);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 10px solid #FFF;
        /* 右向き三角形 */
    }


}

@media (max-width: 768px) {


    body {
        font-family: Arial, sans-serif;
        margin: 0;
        padding: 0;
        text-align: center;
        font-size: 16px;
        line-height: 1.6;
    }

    .pc_br {
        display: none;
    }

    h1 {
        width: 90%;
        margin: 0 auto;
    }

    h2 {
        color: #00352d;
        font-weight: bold;
        margin-bottom: 40px;
        position: relative;
        text-align: center;
        font-size: 1.5em;
        /* 文字の中央寄せ */
    }

    h2::after {
        background-color: #c69c6c;
        /* 線の色 */
        bottom: -10px;
        /* 線の位置 */
        content: "";
        height: 3px;
        /* 線の高さ */
        left: 50%;
        /* 線の中央寄せ */
        position: absolute;
        transform: translateX(-50%);
        /* 線の中央寄せ */
        width: 30px;
        /* 線の長さ */
    }

    .hero {
        background-color: #00352d;
        color: white;
        padding: 140px 0px 90px 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .benefits {
        background-color: #efefef;
        padding: 60px 20px;
        color: #00352d;
    }

    .steps {
        background-color: #f6f6f6;
        padding: 60px 20px;
    }

    .notes {
        background-color: #f6f6f6;
        padding: 20px;
    }

    .info,
    .faq {
        padding: 60px 10px;
    }

    .step {
        display: flex;
        gap: 15px;
        margin: 0 auto 20px;
    }

    .step-text {
        text-align: left;
        width: fit-content;
    }

    .step-text_n {
        color: #00352d;
        font-weight: bold;
        font-size: 12px;
    }

    .step-text_t {
        color: #00352d;
        font-weight: bold;
    }

    .step-text p {
        line-height: 1.5em;
        padding: 10px 20px;
        font-size: 16px;
        background-color: #d9d9d9;
    }

    .info-box {
        background-color: rgba(198, 156, 108, 0.1);
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
        margin: 0 auto;
        padding: 20px;
        text-align: left;
        flex-direction: column;
    }

    .info-box p {
        margin: 30px 13px;
    }

    .step-icon {
        width: 100px;
        height: 100px;
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: white;
        font-weight: bold;
    }

    .faq-item {
        border-bottom: 1px solid #ccc;
        padding: 10px 0;
        margin: 0 auto;
        text-align: left;
    }

    .faq-item .answer {
        display: none;
        padding: 20px 20px 20px 8px;
        background-color: rgba(198, 156, 108, 0.1);
        line-height: 1.5em;
    }

    .faq-item .question {
        cursor: pointer;
        font-weight: bold;
    }

    .faq-item .question::after {
        content: ' ＋';
    }

    .faq-item.open .question::after {
        content: ' －';
    }

    .notes p {
        margin: 0 auto;
        text-align: left;
        line-height: 1.5em;
        font-size: 0.8em;
    }

    .hero .button {
        background-color: #FFFFFF;
        color: #00352d;
        border: 1px solid #00352d;
        transition: .3s;
    }

    .hero .button:hover {
        background-color: #00352d;
        color: #FFFFFF;
        border: 1px solid #FFFFFF;
        transition: .3s;
        opacity: unset;
    }

    .button {
        padding: 0px 40px;
        border: 1px solid black;
        color: black;
        cursor: pointer;
        margin-top: 60px;
        transition: .3s;
        display: inline-block;

    }

    .button:hover {
        background-color: #00352d;
        color: #FFFFFF;
        opacity: unset;
        transition: .3s;
    }

    .area {
        width: 50%;
        margin: 0 0 16px 0;
    }

    .sticky-banner {
        position: fixed;
        bottom: 0;
        left: 0;
        width: 90%;
        padding: 15px;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.5s ease-in-out, visibility 0.5s;
        box-sizing: content-box;
    }

    /* 表示時のスタイル */
    .sticky-banner.show {
        opacity: 1;
        visibility: visible;
    }

    .triangle-btn,
    .triangle-btn a {
        position: relative;
        padding: 10px 30px 10px 10px;
        /* 右側に余白を作る */
        background-color: #c69c6c;
        color: #FFFFFF;
        cursor: pointer;
        font-size: 16px;
        font-weight: bolder;
        width: fit-content;
        margin: 0 auto 40px;
    }

    .triangle-btn::after {
        content: "";
        position: absolute;
        right: 20px;
        /* ボタンの右端に配置 */
        top: 50%;
        transform: translateY(-50%);
        border-top: 6px solid transparent;
        border-bottom: 6px solid transparent;
        border-left: 10px solid #FFF;
        /* 右向き三角形 */
    }


}