body {
    /* font-family: "yu-mincho-pr6n", sans-serif; */
    font-family: "游ゴシック", sans-serif;

    width: 100%;
}


/* PCレスポンシブ */

.yazi {
    font-size: 16px;
    text-align: center;
    margin: auto;

}





@media screen and (max-width: 600px) {



    .banner-container {
        position: fixed;
        /* 画像を固定位置にする */
        bottom: 0;
        /* スマホの最下部に配置 */
        width: 100%;
        /* コンテナを画面幅いっぱいに広げる */
        display: flex;
        /* 画像を横に並べる */
        justify-content: space-between;
        /* 画像の間にスペースを入れない */
        align-items: center;
        /* 画像を垂直方向の中央に配置 */
        z-index: 1000;
        /* 一番最前面に表示する */
        overflow: hidden;
        /* 画像がはみ出ないようにする */
    }


    .banner-container a img {
        width: 100%;
        /* 画像の横幅を100%に指定 */
    }




    .fv {
        width: 100%;
        margin: auto;
        text-align: center;
    }

    .fv img {
        width: 100%;

        margin: auto;
        text-align: center;
    }

    .cta {
        width: 93%;
        margin: auto;
    }


    .cta img {
        width: 100%;

    }

    .pc {
        display: none;
    }


    .background1 {
        background-image: url(../img/back.jpg);
        background-size: contain;
        background-repeat: repeat;
    }


    .contents1 {
        width: 93%;
        margin: auto;
        color: #333333;
    }

    .contents1 img {
        width: 100%;
        margin: auto;
    }

    .contents1 h1 {
        margin-top: 7vh;
        margin-bottom: 15px;
        font-size: 24px;
        text-align: center;
        font-weight: bold;
        background-color: #474747;
        color: white;
        line-height: 1.6;
    }

    .contents1 h2 {
        font-size: 18px;
        text-align: left;
        font-weight: bold;
        display: inline-block;
        background-color: #f2e891;
        color: #577c8b;
        margin-bottom: 10px;
        padding: 0 10px;
    }


    .contents1 h3 {
        font-family: "游ゴシック", sans-serif;

        padding-top: 10px;

        padding-bottom: 30px;

        font-size: 16px;
        text-align: left;
    }


    .contents2 {
        width: 93％;
        margin: auto;
        color: #333333;
        margin: 10px;
    }


    .contents2 h1 {
        font-size: 24px;
        text-align: center;
        font-weight: bold;
        margin-top: 20px;
        line-height: 1.6;
        margin-bottom: 20px;
        color: White;
        background-color: #474747;
    }

    .contents2 h2 {
        margin: 10px;
        font-size: 18px;
        font-weight: bold;
        color: #474747;
        margin-bottom: 10px;
        text-align: center;
    }

    .contents2 h3 {
        margin: 10px;

        font-size: 16px;
        padding-bottom: 2vh;
    }

    .contents2 img {
        width: 100%;
        margin: auto;
    }


    .contents3 {
        width: 93%;
        margin: auto;
        color: #333333
    }

    .contents3 img {
        width: 100%;
        margin: auto;
        padding-bottom: 15px;
    }

    .contents3 h1 {
        font-size: 24px;
        text-align: center;
        font-weight: bold;
        margin-bottom: 20px;
        line-height: 1.6;
        background-color: #474747;
        color: white;
        margin-top: 7vh;

    }

    .contents3 h2 {
        font-size: 18px;
        text-align: center;
        font-weight: bold;
        color: white;
        margin-bottom: 10px;
    }

    .contents3 h3 {

        font-size: 16px;
        font-weight: bold;
        padding-bottom: 6px;
    }

    .contents3 h4 {

        font-size: 16px;
    }

    .natural-border {
        border: 1.5px solid #b6a496;
        /* 幅(2px), スタイル(solid), 色(#b6a496)を指定 */
        padding: 10px;
        margin-bottom: 40px;
        background-color: rgba(255, 255, 255, 0.65);

    }

    .modern-border {
        border: 1.5px solid #737374;
        ;
        /* 幅(2px), スタイル(solid), 色(#b6a496)を指定 */
        padding: 10px;
        margin-bottom: 40px;
        background-color: rgba(255, 255, 255, 0.65);

    }

    .cafe-border {
        border: 1.5px solid #c18f69;
        ;
        /* 幅(2px), スタイル(solid), 色(#b6a496)を指定 */
        padding: 10px;
        margin-bottom: 40px;
        background-color: rgba(255, 255, 255, 0.65);

    }



    .flex h5 {
        font-size: 16px;
        font-weight: bold;
    }

    .price {
        padding-left: 60px;
    }

    .flex {
        display: flex;
        gap: 20px;
    }

    /* アコーディオン */

    .accordion-005 {
        max-width: 600px;
    }

    .accordion-005:not([open]) {
        margin-bottom: 7px;
    }

    .accordion-005 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 1em 2em;
        border-left: 5px solid #169dfe;
        background-color: white;
        color: black;
        font-weight: 600;
        cursor: pointer;
        font-size: 16px;

    }

    .accordion-005 summary::-webkit-details-marker {
        display: none;
    }

    .accordion-005 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 7px;
        height: 7px;
        margin-left: 10px;
        border-bottom: 3px solid #c2c2c2;
        border-right: 3px solid #c2c2c2;
        content: '';
        transition: transform .3s;
    }

    .accordion-005[open] summary::after {
        transform: rotate(225deg);
    }

    .accordion-005 p {
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: 1em 2em 2em 2em;
        color: #333333;
        transition: transform .5s, opacity .5s;
        background-color: White;
        font-size: 16px;
    }

    .accordion-005[open] p {
        transform: none;
        opacity: 1;
    }

}