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

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

    /* --------観光上部ポエム-------- */

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

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

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

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

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

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

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

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

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

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

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





    /* --------自然-------- */
    /* 自然：TOP */
    .kankou2_sizen {
        width: 100%;
        height: auto;
        /* margin-top: 300px; */
    }

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

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

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

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

    .kankou2_img {
        width: 50%;
    }

    .kankou2_p {
        width: 50%;
    }

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

    .kankou-txt {
        display: flex;
        justify-content: center;
        margin-top: 2rem;
        line-height: 2;
    }

    .kankou2_p p {
        /* font-size: 1rem; */
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        max-width: 30em;
        margin: 0 1em;
    }

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


    /* --------パワースポット-------- */
    /* パワスポ：TOP */
    .kankou3_powerspot {
        width: 100%;
        height: auto;
        margin-top: 300px;
    }

    /* パワスポ：写真と文章 */
    .kankou3_oya_taki {
        text-align: center;
    }

    .kankou3_oya_taki h3 {
        margin-top: 100px;
        /* font-size: 1.75rem; */
        font-size: clamp(1.25rem, 0.917rem + 0.694vw, 1.75rem);
    }

    .kankou3_taki {
        margin-top: 50px;

    }

    .kankou3_p {
        display: flex;
        justify-content: center;
        margin-top: 50px;
    }

    .kankou3_p p {
        /* font-size: 1rem; */
        font-size: clamp(0.8rem, 0.667rem + 0.278vw, 1rem);
        max-width: 32em;
        text-align: left;
        line-height: 2;

    }



    /* --------観光スポット-------- */
    /* 観光スポ：TOP */
    .kankou4_kankouspot {
        width: 100%;
        height: auto;
        margin-top: 300px;
    }

    /* 観光スポ：写真と文章は自然と一緒 */

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

}




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

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

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

    }

    .br-sp {
        display: none;
    }

    .k_container {
        padding-left: 20px;
        padding-right: 20px;
    }

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

    .kankou1_fv img {
        width: 100%;
    }

    /* --------観光上部ポエム-------- */

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

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

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

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

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



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

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

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

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

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

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




    /* --------自然-------- */
    /* 自然：TOP */
    .kankou2_sizen {
        width: 100%;
        height: auto;
    }

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

    /* 自然：写真と文章 */


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

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

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

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

    .kankou2_p {
        width: 100%;
    }

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

    .kankou-txt {
        display: flex;
        justify-content: center;
        margin-top: 15px;
        line-height: 2;
    }

    .kankou2_p p {
        font-size: 1rem;
        max-width: 30em;
        margin: 0 0;
    }

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


    /* --------パワースポット-------- */
    /* パワスポ：TOP */
    .kankou3_powerspot {
        width: 100%;
        height: auto;
        margin-top: 100px;
    }

    /* パワスポ：写真と文章 */
    .kankou3_oya_taki {
        text-align: center;
    }

    .kankou3_oya_taki h3 {
        margin-top: 50px;
        font-size: 1.25rem;
    }

    .kankou3_taki {
        margin-top: 25px;
    }

    .kankou3_taki img {
        height: 300px;
        width: auto;
        object-fit: cover;
        align-items: center;
    }

    .kankou3_p {
        display: flex;
        justify-content: center;
        margin-top: 25px;
    }

    .kankou3_p p {
        font-size: 1rem;
        max-width: 30em;
        line-height: 2;
    }



    /* --------観光スポット-------- */
    /* 観光スポ：TOP */
    .kankou4_kankouspot {
        width: 100%;
        height: auto;
        margin-top: 100px;
    }

    /* 観光スポ：写真と文章は自然と一緒 */
    /* main下の空白 */
    .kankou4_kankouspot {
        margin-bottom: 100px;
    }


}