@charset "UTF-8";

html {
    color: #666666;
}

body {
    width: 100%;
    height: auto;
}

main {
    width: 100%;
    height: auto;
}

.Shippori {
    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
}

/* pc版 */
@media (min-width: 768px) {

    /* --------TOPイメージ-------- */
    /* PCだけで表示する */
    .sp-only {
        display: none;
    }

    .onsen1_fv {
        width: 100%;
        text-align: center;
    }

    /* --------温泉上部ポエム-------- */
    .br-pc {
        display: none;
    }

    .onsen1_poem {
        width: 100%;
        height: auto;
        padding-top: 300px;
        padding-bottom: 300px;
        position: relative;
    }

    .onsen1_poemp h2,
    .onsen1_poemp h3 {
        width: 100%;
        text-align: center;
        /* font-size: 1.75rem; */
        font-size: clamp(1.5rem, 1.333rem + 0.347vw, 1.75rem);
        font-weight: normal;
    }

    .onsen1_poemp p {
        width: 100%;
        text-align: center;
        margin-top: 50px;
        /* font-size: 1rem; */
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        font-weight: normal;
        line-height: 2;
    }

    /* ふわっと表示（最初は消しとく） */
    .onsen1_poemp {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease-out, transform 2s ease-out;
        transition-delay: calc(var(--delay) * 0.2s);
    }

    /* ふわっと表示 */
    .onsen1_poemp.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* スクロールアニメーション＝＝＝＝＝＝＝＝＝ */

    /*スクロールダウン全体の場所*/
    .o-scrolldown {
        /*描画位置※位置は適宜調整してください*/
        position: absolute;
        bottom: 50px;
        left: 90%;
    }

    /*Scrollテキストの描写*/
    .o-scrolldown span {
        /*描画位置*/
        position: absolute;
        left: 10px;
        bottom: 10px;
        /*テキストの形状*/
        color: #a58e60;
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        /*縦書き設定*/
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    /* 丸の描写 */
    .o-scrolldown:before {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: -4px;

        /*丸の形状*/
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #a58e60;

        /*丸の動き1.6秒かけて透過し、永遠にループ*/
        animation:
            circlemove 1.6s ease-in-out infinite,
            cirlemovehide 1.6s ease-out infinite;
    }

    /*下からの距離が変化して丸の全体が上から下に動く*/
    @keyframes circlemove {
        0% {
            bottom: 80px;
        }

        100% {
            bottom: -5px;
        }
    }

    /*上から下にかけて丸が透過→不透明→透過する*/
    @keyframes cirlemovehide {
        0% {
            opacity: 0
        }

        50% {
            opacity: 1;
        }

        80% {
            opacity: 0.9;
        }

        100% {
            opacity: 0;
        }
    }

    /* 線の描写 */
    .o-scrolldown:after {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: 0;
        /*線の形状*/
        width: 1px;
        height: 100px;
        background: #a58e60;
    }

    /* ↑スクロールアニメーションここまで＝＝＝＝＝＝＝＝＝ */


    /* --------温泉-------- */
    /*　温泉：TOP */
    .onsen2 {
        width: 100%;
        height: auto;
        padding-top: 25px;
        padding-bottom: 300px;
        background-color: #161C2D;
        color: #fff;
    }

    .onsen_top img {
        width: 100%;
        object-fit: contain;
    }

    /* 温泉：写真と文章 */
    .onsen2_container {
        max-width: 1920px;
        margin: 0 auto;
    }


    .onsen2_imgleft {
        display: flex;
        align-items: center;
        margin-top: 1.25rem;
    }

    .onsen2_imgright {
        display: flex;
        flex-direction: row-reverse;
        align-items: center;
        margin-top: 1.25rem;
    }

    .onsen2_img {
        width: 50%;
    }

    .onsen2_p {
        width: 50%;
    }

    .onsen2_p h3 {
        /* font-size: 1.75rem; */
        font-size: clamp(1.25rem, 0.917rem + 0.694vw, 1.75rem);
        text-align: center;
    }

    .onsen-txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        line-height: 2;
    }

    .onsen2_p p {
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        margin: 25px 50px 0;
    }

    /* 色の文字 */
    .o-iro {
        background-image: url(../img/nukumori.png);
        background-repeat: no-repeat;
        background-position: bottom left;
        background-size: 15%;
    }

    /* 温泉：効能 */
    .onsen2_kounou {
        max-width: 1280px;
        margin: 0 auto;
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        line-height: 2;
    }

    .onsen2_kounou h3 {
        font-size: clamp(1.25rem, 0.917rem + 0.694vw, 1.75rem);
        margin: 150px 20px 25px;
    }

    .onsen2_kounou p {
        margin-left: 20px;
        margin-right: 20px;
    }

    .onsen2_info {
        display: grid;
        grid-template-columns: 120px 1fr;
        /* 横幅を固定して揃える */
        gap: 25px 20px;
        max-width: 1280px;
        margin: 50px 20px 0;
    }

    .onsen2_info dt {
        text-align: center;
        /* ラベルを中央寄せ */
    }

    .onsen2_label {
        display: inline-block;
        background: #A58E60;
        color: #000;
        padding: 5px 40px;
        font-weight: bold;
    }

    .onsen2_label2 {
        display: inline-block;
        background: #A58E60;
        color: #000;
        padding: 5px 30px;
        font-weight: bold;
    }


    .onsen2_info dd {
        margin: 0;
        /* ブラウザデフォルトの余白を消す */
        padding: 5px 0;
    }




    /* --------香り-------- */
    /* 香り：TOP */
    .onsen3_scent {
        width: 100%;
        height: auto;
        margin-top: 5px;
        padding-bottom: 100px;
        background-color: #161C2D;
        color: #fff;
    }

    /* 香り：写真と文章 */
    .onsen3_container {
        max-width: 1280px;
        margin: 100px auto 0;
    }

    .onsen3_img {
        width: 50%;
    }

    .onsen3_p {
        width: 50%;
        text-align: center;
    }

    .onsen3_p h3 {
        /* font-size: 1.75rem; */
        font-size: clamp(1.25rem, 0.917rem + 0.694vw, 1.75rem);
        text-align: center;
    }

    .onsen3-txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
        margin-top: 1rem;
    }

    .onsen3_p p {
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        line-height: 2;
        margin: 25px 50px 0;
        text-align: left;
    }

    /* 色の文字 */
    .o-iro2 {
        background-image: url(../img/kaori3.png);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: 15%;
    }

    /* ご利用時間 */
    .onsen4_time {
        text-align: center;
        margin-top: 200px;
        margin-bottom: 300px;
    }

    .onsen4_time h2 {
        font-size: clamp(1.25rem, 0.917rem + 0.694vw, 1.75rem);
    }

    .onsen4_timebox {
        display: inline-block;
        background: #f4f1ec;
        /* ベージュ背景 */
        padding: 30px 50px;
        border-radius: 4px;
        margin-top: 50px;
    }

    .onsen4_timebox p {
        font-size: clamp(1rem, 0.667rem + 0.694vw, 1.5rem);
    }


    /* ------フッター上の空白------- */

}




/* ----------------sp版---------------- */
@media (max-width: 768px) {

    /* ！コピペしてください！ */
    /* PCだけで表示する */
    .pc-only {
        display: none;
    }

    .fv {
        aspect-ratio: 375 / 470;
        /* 縦横比を固定 */

    }

    .br-sp {
        display: none;
    }

    .o-container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .onsen1_fv {
        width: 100%;
        text-align: center;
    }

    .onsen1_fv img {
        width: 100%;
    }


    /* --------温泉上部ポエム-------- */

    .onsen1_poem {
        width: 100%;
        height: auto;
        padding-top: 100px;
        padding-bottom: 100px;
        position: relative;
    }

    .onsen1_poemp h2,
    .onsen1_poemp h3 {
        width: 100%;
        text-align: center;
        font-size: 1.75rem;
        font-weight: normal;
    }

    .onsen1_poemp p {
        width: 100%;
        text-align: center;
        margin-top: 50px;
        font-size: 1rem;
        font-weight: normal;
        line-height: 2;
    }

    /* ふわっと表示（最初は消しとく） */
    .onsen1_poemp {
        opacity: 0;
        transform: translateY(100px);
        transition: opacity 1s ease-out, transform 2s ease-out;
        transition-delay: calc(var(--delay) * 0.2s);
    }

    /* ふわっと表示 */
    .onsen1_poemp.visible {
        opacity: 1;
        transform: translateY(0);
    }

    /* スクロールアニメーション＝＝＝＝＝＝＝＝＝ */

    /*スクロールダウン全体の場所*/
    .o-scrolldown {
        /*描画位置※位置は適宜調整してください*/
        position: absolute;
        bottom: 30px;
        left: 90%;
    }

    /*Scrollテキストの描写*/
    .o-scrolldown span {
        /*描画位置*/
        position: absolute;
        left: 10px;
        bottom: 10px;
        /*テキストの形状*/
        color: #a58e60;
        font-size: 0.7rem;
        letter-spacing: 0.05em;
        /*縦書き設定*/
        -ms-writing-mode: tb-rl;
        -webkit-writing-mode: vertical-rl;
        writing-mode: vertical-rl;
    }

    /* 丸の描写 */
    .o-scrolldown:before {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: -4px;

        /*丸の形状*/
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #a58e60;

        /*丸の動き1.6秒かけて透過し、永遠にループ*/
        animation:
            circlemove 1.6s ease-in-out infinite,
            cirlemovehide 1.6s ease-out infinite;
    }

    /*下からの距離が変化して丸の全体が上から下に動く*/
    @keyframes circlemove {
        0% {
            bottom: 80px;
        }

        100% {
            bottom: -5px;
        }
    }

    /*上から下にかけて丸が透過→不透明→透過する*/
    @keyframes cirlemovehide {
        0% {
            opacity: 0
        }

        50% {
            opacity: 1;
        }

        80% {
            opacity: 0.9;
        }

        100% {
            opacity: 0;
        }
    }

    /* 線の描写 */
    .o-scrolldown:after {
        content: "";
        /*描画位置*/
        position: absolute;
        bottom: 0;
        left: 0;
        /*線の形状*/
        width: 1px;
        height: 70px;
        background: #a58e60;
    }

    /* ↑スクロールアニメーションここまで＝＝＝＝＝＝＝＝＝ */






    /* --------温泉-------- */
    /*　温泉：TOP */
    .onsen2 {
        width: 100%;
        height: auto;
        padding-top: 25px;
        padding-bottom: 100px;
        background-color: #161C2D;
        color: #fff;
    }

    .onsen_top img {
        width: 100%;
        object-fit: contain;
    }

    /* 温泉：写真と文章 */
    .onsen2_container {
        max-width: 1920px;
        margin: 0 auto;
    }


    .onsen2_imgleft {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .onsen2_imgright {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

    .onsen2_img {
        width: 100%;
        text-align: center;
    }

    .onsen2_p {
        width: 100%;
    }

    .onsen2_p h3 {
        font-size: 1.25rem;
        text-align: center;
        margin-top: 25px;
    }

    .onsen-txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .onsen2_p p {
        font-size: 1rem;
        margin: 20px 0;
        line-height: 2;
    }

    /* 色の文字 */
    .o-iro {
        background-image: url(../img/nukumori.png);
        background-repeat: no-repeat;
        background-position: bottom left;
        background-size: 15%;
    }

    /* 温泉：効能 */
    .onsen2_kounou {
        max-width: 1280px;
        margin: 0 auto;
        font-size: 1rem;
    }

    .onsen2_kounou h3 {
        font-size: 1.5rem;
        margin: 100px 20px 25px;
    }

    .onsen2_kounou p {
        margin-left: 20px;
        margin-right: 20px;
        line-height: 2;
    }

    .onsen2_info {
        display: grid;
        grid-template-columns: 120px 1fr;
        /* 横幅を固定して揃える */
        gap: 25px 20px;
        max-width: 1280px;
        margin: 50px 20px 0;
    }

    .onsen2_info dt {
        text-align: center;
        /* ラベルを中央寄せ */
    }

    .onsen2_label {
        display: inline-block;
        background: #A58E60;
        color: #000;
        padding: 5px 40px;
        font-weight: bold;
    }

    .onsen2_label2 {
        display: inline-block;
        background: #A58E60;
        color: #000;
        padding: 5px 30px;
        font-weight: bold;
    }


    .onsen2_info dd {
        margin: 0;
        /* ブラウザデフォルトの余白を消す */
        padding: 5px 0;
    }




    /* --------香り-------- */
    /* 香り：TOP */
    .onsen3_scent {
        width: 100%;
        height: auto;
        margin-top: 5px;
        padding-bottom: 100px;
        background-color: #161C2D;
        color: #fff;
    }

    /* 香り：写真と文章 */
    .onsen3_container {
        max-width: 1280px;
        margin: 50px auto 0;
    }

    .onsen3_img {
        width: 100%;
    }

    .onsen3_p {
        width: 100%;
        text-align: center;
    }

    .onsen3_p h3 {
        font-size: 1.25rem;
        text-align: center;
        margin-top: 25px;
    }

    .onsen3-txt {
        display: flex;
        flex-direction: column;
        justify-content: center;
    }

    .onsen3_p p {
        font-size: 1rem;
        margin: 20px 0 0;
        text-align: left;
        line-height: 2;
    }

    /* 色の文字 */
    .o-iro2 {
        background-image: url(../img/kaori3.png);
        background-repeat: no-repeat;
        background-position: top right;
        background-size: 15%;
    }

    /* ご利用時間 */
    .onsen4_time {
        text-align: center;
        margin-top: 50px;
        margin-bottom: 100px;
    }

    .onsen4_time h2 {
        font-size: 1.5rem;
    }

    .onsen4_timebox {
        display: inline-block;
        background: #D9D9D9;
        /* グレー背景 */
        padding: 15px 25px;
        border-radius: 4px;
        margin-top: 25px;
    }

    .onsen4_timebox p {
        font-size: 1.25rem;
    }


}