@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;
    }

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

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

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

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

    .taiken1_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;
    }

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

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



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

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

    /*Scrollテキストの描写*/
    .t-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;
    }

    /* 丸の描写 */
    .t-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;
        }
    }

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

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


    /* --------雲の旅-------- */
    /* 雲：TOP */
    .taiken2_kumo {
        width: 100%;
        height: auto;
        padding-bottom: 300px;
        background-color: #161C2D;
        color: #fff;
    }

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

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

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

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

    .taiken2_img {
        width: 50%;
    }

    .taiken2_p {
        width: 50%;
    }

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

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

    .taiken2_p p:first-child {
        /* font-size: 1.25rem; */
        font-size: clamp(1rem, 0.333rem + 0.972vw, 1.25rem);
        margin: 25px 50px 0;
        text-align: center;
    }

    .taiken2_p p:last-child {
        /* font-size: 1rem; */
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        margin: 25px 50px 0;
        line-height: 2;
    }



    /* 料金表 */
    .price-table {
        width: 100%;
        max-width: 700px;
        margin: 100px auto 0;
        border-collapse: collapse;
    }

    .row:first-child {
        border-top: 1px solid #c7c7c7;
    }

    .row {
        display: flex;
        border-bottom: 1px solid #c7c7c7;
        padding: 12px 0;
        /* font-size: 1.25rem; */
        font-size: clamp(1rem, 0.333rem + 0.972vw, 1.25rem);
        align-items: center;
    }

    .label {
        /* flex: 1;
        padding: 10px 25px; */
        flex: 0 0 180px;
        /* PCでは固定幅 */
        text-align: center;
        padding: 10px 15px;
        flex-shrink: 0;
    }

    .value {
        /* flex: 2;
        padding: 10px 25px; */
        flex: 1;
        padding: 10px 25px;
    }

    .note {
        /* 85%の大きさにする */
        font-size: 0.85em;
    }

    .btn {
        display: inline-block;
        padding: 8px 16px;
        background-color: #A58E60;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn:hover {
        background-color: #e2cda4;
    }

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

    .taiken1_poemp h3 {
        margin-top: 200px;
    }

    /* 釣り：写真と文章 */
    .taiken3_container {
        max-width: 1920px;
        margin: 200px auto 0;
    }

    .taiken3_img {
        width: 50%;
    }

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

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

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

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

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

    /* main下の空白 */
    .kankou3_turi {
        margin-bottom: 300px;
    }

    /* ------フッター上の空白------- */
    .t-main {
        margin-bottom: 5px;
    }
}




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

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

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

    }

    .br-sp {
        display: none;
    }

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

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

    .taiken1_fv img {
        width: 100%;
    }

    /* --------体験上部ポエム-------- */

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

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

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

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

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

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

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

    /*Scrollテキストの描写*/
    .t-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;
    }

    /* 丸の描写 */
    .t-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;
        }
    }

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

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


    /* --------雲の旅-------- */
    /* 雲：TOP */
    .taiken2_kumo {
        width: 100%;
        height: auto;
        padding-bottom: 100px;
        background-color: #161C2D;
        color: #fff;
    }

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

    /* 雲：写真と文章 */
    .taiken2_imgleft {
        display: flex;
        flex-direction: column;
        align-items: center;
        margin-top: 50px;
    }

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

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

    .taiken2_img img {
        height: 300px;
        width: auto;
        object-fit: cover;
    }

    .taiken2_p {
        width: 100%;
    }

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

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

    .taiken2_p p:first-child {
        font-size: 1rem;
        margin: 20px 0 0;
        text-align: center;
    }

    .taiken2_p p:last-child {
        font-size: 1rem;
        margin: 20px 0;
    }


    /* 料金表 */
    .price-table {
        width: 100%;
        max-width: 700px;
        margin: 100px auto 0;
        border-collapse: collapse;
    }

    .row:first-child {
        border-top: 1px solid #c7c7c7;
    }

    .row {
        display: flex;
        flex-direction: column;
        border-bottom: 1px solid #c7c7c7;
        padding: 12px 0;
        /* font-size: 1.25rem; */
        font-size: clamp(1rem, 0.333rem + 0.972vw, 1.25rem);
        align-items: center;
    }

    .label {
        /* flex: 0 0 160px; */
        width: 100%;
        text-align: center;
        padding: 5px 15px;
        flex-shrink: 0;
        font-weight: bold;
    }

    .value {
        /* flex: 2;
        padding: 10px 25px; */
        flex: 1;
        width: 100%;
        padding: 5px 15px;
        text-align: center;
    }

    .note {
        /* 85%の大きさにする */
        font-size: 0.85em;
    }


    .btn {
        display: inline-block;
        padding: 8px 16px;
        background-color: #A58E60;
        color: #fff;
        border-radius: 6px;
        text-decoration: none;
        transition: 0.3s;
    }

    .btn:hover {
        background-color: #e2cda4;
    }



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

    .taiken1_poemp h3 {
        margin-top: 100px;
    }

    /* 釣り：ポエム部分 */
    .turi-sp {
        margin-bottom: 100px;
    }

    /* 釣り：写真と文章 */
    .taiken3_container {
        max-width: none;
        margin: 0 auto;
    }

    .taiken3_img {
        width: 100%;
    }

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

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

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

    .taiken3_p p {
        font-size: 1rem;
        margin: 20px 0 0;
        text-align: left;
    }

    /* 色の文字 */
    .t-iro {
        background-image: url(../img/aji.png);
        background-repeat: no-repeat;
        background-position: bottom left;
        background-size: 10rem;
    }



    /* main下の空白 */
    .kankou3_turi {
        margin-bottom: 100px;
    }

    /* ------フッター上の空白------- */
    .t-main {
        margin-bottom: 5px;
    }

}