/* newsバー */
.news-bar {
    background-color: #788768;
    height: 30px;
    text-align: center;
}

.news-bar__text {
    color: #fff;
    font-size: 0.85rem;
    margin: 0;
    letter-spacing: 0.05em;
}



/* メインビジュアル */
/* .background__image {
    background-image: url('../image/mv-bg.jpg');
    background-size: cover;

    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    display: block;
} */
/* ↑コメント化 */



/* メインビジュアル */
.background__image {
    background-image: url('../image/mv-bg.jpg');
    background-size: cover;

    background-position: top center;
    background-repeat: no-repeat;
    position: relative;
    z-index: 0;
    display: block;
}

.mv {
    background-color: transparent;
    position: relative;
    border-radius: 2%;
    width: 1370px;
    height: 100vh;
    height: 730px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 4;
}

.mv img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1);
    transition: opacity 1.5s ease, transform 10s ease;
}

.mv img.active {
    opacity: 1;
    transform: scale(1.05);
    /* ズームアップ */
}

.weather {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(0, 0, 0, 0.2);
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    gap: 10px;
}

.weather__text {
    text-align: left;
}

.weather__icon {
    font-size: 24px;
}

.weather__temp {
    font-size: 18px;
}

.mv__text {
    position: absolute;
    top: 20%;
    right: 10%;
    color: #fff;
    text-align: left;
    font-size: 42px;
    font-family: "Zen Kaku Gothic Antique", sans-serif;
    line-height: 1.5;
    font-weight: medium;
}

.mv__subtext {
    font-size: 16px;
    font-weight: medium;
    font-family: 'Noto Sans JP', sans-serif;
    display: block;
    margin-top: 12px;
}

.mv__subtext-phone {
    display: none;
}

.mv__container-phone {
    display: none;
}

@media (max-width: 768px) {
    .mv {
        width: 335px;
        height: 446px;
    }

    .mv img {
        height: 100%;
        object-fit: cover;
    }



    .mv__text {
        font-size: 24px;
        top: 18%;
        right: 20%;
    }

    .mv__subtext-phone {
        display: block;
        font-size: 12px;
    }

    .mv__subtext {
        display: none;
    }

    .mv__container-phone {
        padding: 20px;
        background: linear-gradient(to top, rgba(0, 0, 0, 0.6), transparent);
        position: absolute;
        bottom: 0;
        width: 100%;
        box-sizing: border-box;
    }


}





/* about セクション */
.about__heading {
    display: flex;
    flex-direction: column;
    /* 子要素の横位置中央寄せ */
    align-items: center;
    margin-top: 130px;

}

.about {
    position: relative;
    overflow: hidden;
}

.about__sub {
    font-family: "Oooh Baby", cursive;
    font-size: 18px;
    color: #4C5F3E;
    margin-bottom: 8px;
}

.about__title {
    font-size: 32px;
    font-weight: medium;
    margin-bottom: 16px;
}

.about__badges {
    display: flex;
    justify-content: center;
    gap: 130px;
    flex-wrap: wrap;
    padding: 40px 0;
}

.about__badge {
    width: 175px;
    height: 175px;
    border-radius: 50%;
    /* background: linear-gradient(135deg, #9bb481, #8aa05f); */
    background-image: url('../image/strength-bg.svg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
    line-height: 1.5;
    /* box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2); */
}


.about__badge-icon {
    width: 48px;
    height: 48px;
    margin-bottom: 7px;
}

.about__badge-text {
    margin: 0;
    font-size: 22px;
    padding-bottom: 8px;
}

.about__badge-texts {
    margin: 0;
    font-size: 24px;
    padding-bottom: 8px;
}

.about__container {
    margin-top: 100px;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
}

.about__images {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 16px;
}

.about__images-row.top {
    display: flex;
    gap: 16px;
    align-items: flex-end;
    margin-left: 35px;
}

.about__images-row.bottom {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-left: 103px;
}

.about__image {
    border-radius: 8px;
    object-fit: cover;
    display: block;
}

.about__image.small {
    width: 270px;
    height: 320px;
}

.about__image.large {
    width: 330px;
    height: 431px;
}


.about__text {
    margin-top: 79px;
    text-align: left;
    margin-left: 6%;
}

.about__title {
    line-height: 1.6;
    font-size: 28px;
    font-weight: 500;
    color: #4C5F3E;
}

.about__lead {
    line-height: 3.4;
    font-size: 18px;
}

.video-bg-container {
    position: absolute;
    right: 0;
    width: 30vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    overflow: hidden;
}

.video-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.2;
}


.button.about-button {
    justify-content: flex-start;
    margin-left: 0;
    margin-top: 308px;
}

.about__container-phone {
    display: none;
}

@media (max-width: 768px) {
    .about__badges {
        gap: 30px;
    }

    .about__badge {
        width: 84px;
        height: 84px;
    }

    .about__badge-icon {
        width: 26px;
        height: 26px;
        margin-bottom: 0;
    }

    .about__badge-texts {
        margin: 0;
        font-size: 13px;
    }

    .about__badge-text {
        margin: 0;
        font-size: 12px;
    }

    .about__container-phone {
        display: block;
    }

    .about__container {
        display: none;
    }

    .about__image {
        width: 429px;
        height: 265px;
        display: flex;
        justify-content: center;
    }

    .about__title {
        font-size: 22px;
    }

    .about__lead {
        font-size: 16px;
    }

    .button.about-button {
        margin-top: 70px;
        display: flex;
        justify-content: center;
    }
}

/* enjoy セクション */
.enjoy {
    background: url('../image/enjoy-bg.jpg') center/cover no-repeat;
    padding: 172px 20px;
    height: 1335px;
    text-align: center;
    margin-top: 100px;
}

.enjoy__sub {
    color: #4C5F3E;
    font-family: "Oooh Baby", cursive;
    font-size: 18px;
    margin-bottom: 0;

}

.enjoy__title {
    font-size: 32px;
    font-weight: medium;
    margin-bottom: 20px;
}

.enjoy__description {
    font-size: 16px;
    line-height: 2.0;
}

.enjoy__cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 70px;
    margin-top: 65px;
}

.enjoy__card {
    position: relative;
    width: 565px;
    height: 735px;
    border-radius: 16px;
    overflow: hidden;
    text-align: center;
    cursor: pointer;
    transition: transform 0.3s;
}

.enjoy__card:hover {
    transform: scale(1.02);
}

.enjoy__card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}

.enjoy__card-content {
    position: relative;
    z-index: 2;
    color: #fff;
}

.enjoy__card-title {
    font-size: 32px;
    font-weight: medium;
    line-height: 1.4;
    margin-top: 190px;
}

.enjoy__card-list {
    list-style: decimal inside;
    margin-top: 170px;
    display: block;
    width: fit-content;
    text-align: left;
    margin-left: auto;
    /* 追加 */
    margin-right: auto;
    /* 追加 */
}

.enjoy__card-wrapper {
    text-align: center;
}

.enjoy__card-list li::marker {
    font-size: 36px;
}

.enjoy__card-text {
    font-size: 18px;
    font-weight: medium;
    line-height: 1.5;
    margin-top: 16px;
}

.enjoy__cards-phone {
    display: none;
}

.enjoy__card-arrow {
    position: absolute;
    width: 44px;
    height: auto;
    right: 30px;
    bottom: -30px;
}

@media (max-width: 768px) {

    .enjoy {
        margin-top: 0;
    }

    .enjoy__title {
        font-size: 24px;
    }

    .enjoy__description {
        font-size: 14px;
        padding: 0;
        margin-top: 20px;
    }

    .enjoy__cards-phone {
        display: flex;
        flex-direction: column;
        margin: 0 auto;
    }

    .enjoy__cards {
        display: none;
    }

    .enjoy__card {
        position: relative;
        width: 335px;
        height: auto;
        margin-top: 40px;
        border-radius: 16px;
        overflow: hidden;
    }

    .enjoy__card-img-phone {
        position: relative;
        width: 100%;
        height: 210px;
        object-fit: cover;
        border-radius: 16px 16px 0 0;
        display: block;
    }

    .enjoy__card-list {
        list-style: decimal inside;
        margin-top: 26px;
        color: #333;
        padding-left: 0;
    }

    .enjoy__card-content {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 210px;
        z-index: 2;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        color: #fff;
        pointer-events: none;
    }

    .enjoy__card-title {
        position: absolute;
        top: -25%;
        left: 50%;
        transform: translate(-50%, -100%);
        font-size: 20px;
    }

    .enjoy__card-arrow {
        position: absolute;
        right: 16px;
        bottom: 16px;
        pointer-events: auto
    }


    .enjoy__card-list li::marker {
        font-size: 16px;
    }


    .enjoy__card-text {
        font-size: 16px;
        color: #333;
    }

    /* 編集部分 */

    /* 編集部分 */

}



/* contact セクション */
.contact {
    min-height: 761px;
    background: url('../image/contact__image.jpg') center/cover no-repeat;
    width: 100%;
    text-align: center;
}

.contact__sub {
    padding-top: 150px;
    color: #4C5F3E;
    font-family: "Oooh Baby", cursive;
    font-size: 18px;
}

.contact__title {
    font-size: 32px;
    font-weight: medium;
}

.contact__cards {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 100px;
    margin-top: 50px;
}

.contact__card {
    /* background: linear-gradient(180deg, #5b7140, #6d8050); */
    background-image: url(../image/contact-btn-bg.svg);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    width: 245px;
    height: 275px;
    color: #fff;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s, opacity 0.3s;
}

.contact__card:hover {
    transform: translateY(-8px);
    opacity: 0.9;
}

.contact__icon {
    width: 46px;
    height: 45px;
    margin-bottom: 0;
}

.contact__text {
    font-size: 24px;
    font-weight: medium;
    margin-bottom: 20px;
}

.contact__arrow {
    font-size: 20px;
}

@media (max-width: 768px) {





    /* ここ修正しました！！！ */
    .contact {
        min-height: 612px;
        padding: 0;
        height: 100vh;
        background-size: cover;
    }






    .contact__sub {
        padding: 70px 0 0 0;
    }

    .contact__cards {
        flex-direction: column;
        align-items: center;
        margin-bottom: 120px;
        gap: 40px;
    }

    .contact__card {
        background-image: url(../image/contact-btn-bg_sp.svg);
        width: 335px;
        height: 78px;
        flex-direction: row;
        gap: 10px;
    }

    .contact__icon {
        width: 34px;
        height: auto;
    }

    .contact__text {
        font-size: 18px;
        margin-bottom: 0;
    }



}

/* campsite セクション */
.campsite {
    color: #fff;
}

.campsite__background {
    background-color: #788768;
    overflow: hidden;
}


.campsite__main {
    text-align: center;
}

.campsite__inner-small {
    grid-column: 1 / -1;
    max-width: 1039px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.campsite__sub {
    font-family: "Oooh Baby", cursive;
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 130px;
}


.campsite__title {
    font-size: 32px;
    font-weight: medium;
    display: flex;
    align-items: center;
    gap: 12px;
}

.camp__icon {
    width: 38px;
    height: auto;
}

.campsite__description {
    font-size: 16px;
    line-height: 2.0;
    margin-top: 20px;
}

.campsite__map {
    margin-top: 40px;
    position: relative;
    z-index: 2;
    text-align: center;
}

.camp__map {
    width: 100%;
    max-width: 960px;
    border-radius: 90px;
    height: auto;
    display: block;
    margin: 0 auto;
    margin-top: 40px;
    display: flex;
    text-align: center;
}

.campsite__white {
    background-color: #fff;
    padding: 80px 20px;
    border-top-left-radius: 80px;
    border-top-right-radius: 80px;
    z-index: 0;
    margin-top: -305px;
    position: relative;
}

.campsite__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 250px;
    background-color: #fff;
    padding: 4rem 1rem;
}


.camp__card {
    overflow: hidden;
    transition: transform 0.3s;
    /* border-radius: 20px; */
    padding: 12px;
    text-align: left;
}



.camp__card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #444;
    margin-bottom: 12px;
}



.camp__icon {
    width: 24px;
    height: auto;
    flex-shrink: 0;
}

.camp__image {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
}



.banner {
    display: flex;
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    max-width: 1200px;
    margin: 0 auto;
    transition: transform 0.3s;
    align-items: center;
    margin-top: 70px;
}

.banner:hover {
    opacity: 0.7;
}

.banner img {
    width: 100%;
    display: block;
}

/* .banner__text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #fff;
    font-size: 32px;
    font-weight: medium;
} */

.campsite__background::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 739px;
    height: 585px;
    background-image: url('../image/campsite-bg-leaf-shadow.png');
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 0;
    pointer-events: none;
}

.campsite__background {
    position: relative;
    /* ::before のために必要 */
    background-color: #788768;
    overflow: hidden;
}

@media (max-width: 768px) {
    .campsite__inner-small {
        gap: 0;
    }

    .inner {
        padding: 0;
    }

    .campsite__sub {
        margin-top: 79px;
    }

    .campsite__title {
        font-size: 24px;
    }

    .campsite__grid {
        grid-template-columns: repeat(1, 1fr);
        margin-top: 54px;
        padding: 0;
    }

    .camp__card {
        padding: 0;
    }

    .campsite__description {
        font-size: 14px;
    }

    .camp__map {
        max-width: 335px;
        border-radius: 30px;
    }

    .campsite__white {
        margin-top: -100px;
        border-top-left-radius: 0;
        border-top-right-radius: 0;
    }

    .banner {
        position: relative;
        border-radius: 10px;
        max-width: 335px;
    }

    .banner img {
        height: 119px;
    }

    /* 編集しました（矢壁↓） */
    .campsite__background::before {
        width: 226px;
        height: 179px;
    }

    .campsite__sub {
        margin-top: 25px;
    }

    /* 編集しました（矢壁↑） */
}

.banner__content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: row;
    /* ← 念のため明示 */
    align-items: center;
    gap: 20px;
}

.banner__text {
    color: #fff;
    font-size: 32px;
    font-weight: 500;
    white-space: nowrap;
    text-align: left;
    /* ← 中央にならないように */
}

.arrow-circle {
    width: 50px;
    height: 50px;
    border: 2px solid #fff;
    /* 枠線の太さと色 */
    background-color: transparent;
    /* 背景を透明に */
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.campsite__button-arrow {
    position: relative;
    left: -3px;
    width: 15px;
    height: 15px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    transition: border-color 0.3s;
}

/* バナー内矢印部分編集しました（矢壁↑） */
@media (max-width: 768px) {
    .arrow-circle {
        width: 22px;
        height: 22px;
    }

    .campsite__button-arrow {
        left: -1px;
        width: 7px;
        height: 7px;
        border-top: 2px solid #fff;
        border-right: 2px solid #fff;
    }

    .banner__text {
        font-size: 20px;
        white-space: nowrap;
    }
}

/* バナー矢印修正（矢壁）↑ */


/* facility セクション */
.facility {
    background: url('../image/facility-bg.jpg') center/cover no-repeat;
    padding: 70px 20px;
    text-align: center;
    color: #444;
    margin-top: 130px;
}

.facility__sub {
    font-family: "Oooh Baby", cursive;
    font-size: 18px;
    margin-bottom: 0;
    margin-top: 130px;
    color: #4C5F3E;
}

.facility__title {
    font-size: 32px;
    font-weight: medium;
}

.facility__description {
    font-size: 16px;
    line-height: 2.0;
    margin-top: 20px;
}

.facility__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin: 0 auto;
    margin-top: 65px;
}

.facility__card {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    padding: 16px;
    text-align: left;
}

.facility__card img {
    width: 100%;
    height: auto;
    border-radius: 8px;
}

.facility__card h3 {
    font-size: 1rem;
    margin-top: 12px;
    font-weight: bold;
    text-align: left;
}

.facility__card p {
    font-size: 0.9rem;
    color: #555;
    margin-top: 8px;
}

@media (max-width: 768px) {
    .facility__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
    }

    .facility {
        padding: 0px 20px;
        margin-top: 0;
    }

    .facility__sub {
        padding: 60px 0 0;
    }

    .facility__title {
        font-size: 24px;
    }

    .facility__description {
        font-size: 14px;
    }


    .sp-br {
        display: none;
    }

    .facility__text {
        display: none;
    }

    .facility__card {
        width: 160px;
        height: auto;
        margin: 0 auto;
        text-align: center;
    }

    .facility__card img {
        width: 132px;
        height: 125px;
        object-fit: cover;
    }

    .button .more {
        margin-bottom: 70px;
    }

    /* 編集しました（矢壁↓） */
    .facility__inner.inner--small {
        width: 100%;
    }

    .facility__grid {
        grid-template-columns: repeat(2, 1fr);
        margin-top: 40px;
        gap: 16px;
    }

    .facility__sub {
        margin-top: 0;
    }

    .facility {
        margin-top: 0;
    }
}


/* お客様の声 */
.voice {
    text-align: center;
    margin-top: 130px;
}

.voice__sub {
    color: #4C5F3E;
    font-family: "Oooh Baby", cursive;
    font-size: 18px;
    margin-bottom: 0;

}

.voice__title {
    font-size: 36px;
    font-weight: medium;
}


.voice__list {
    display: flex;
    justify-content: center;
    transform: none;
    transition: none;
}

.voice__item {
    width: 100%;
    max-width: 430px;
    text-align: center;
    margin-left: 40px;
    flex: 1 1 calc(33.333% - 16px);
}

.voice__img {
    width: 100%;
    border-radius: 12px;
    margin-top: 11px;
}

.voice__headline {
    font-size: 22px;
    font-weight: medium;
    color: #6a7b5e;
    margin-top: 65px;
    line-height: 1.7;
}

.voice__text {
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    margin-top: 20px;
}

.slider__prev {
    display: none;
}

.slider__next {
    display: none;
}

.voice__text-phone {
    display: none;
}

/* 修正 */
.slider__dots {
    display: none;
}

@media (max-width: 768px) {
    .voice__list {
        display: flex;
        justify-content: flex-start;
        transition: transform 0.5s ease;
        width: calc((275px + 40px) * 3);
    }

    .voice__title {
        font-size: 18px;
    }

    .voice__item {
        width: 275px;
        margin: 0;
        margin-right: 20px;
        margin-left: 20px;
        flex-shrink: 0;
    }

    .voice__text-phone {
        display: block;
        font-size: 14px;
        padding: 0 20px;
        line-height: 1.8;
        text-align: left;
        margin-top: 20px;
    }

    .voice__text {
        display: none;
    }

    .voice__headline {
        font-size: 18px;
    }


    .voice__slider {
        position: relative;
        overflow: hidden;
        width: 100%;
    }

    .slider__prev {
        left: 0;
    }

    .slider__next {
        right: 0;
    }

    /* 編集しました（矢壁↓） */
    .voice {
        margin-top: 70px;
    }

    .voice__title {
        font-size: 24px;
    }

    .voice__img {
        width: 95%;
    }

    .voice__headline {
        font-size: 18px;
        margin-top: 65px;
    }

    .slider__prev,
    .slider__next {
        display: block;
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        background: #4C5F3E;
        color: #fff;
        border: none;
        /* padding: 5px 5px; */
        width: 22px;
        height: 22px;
        font-size: 10px;
        border-radius: 50%;
        z-index: 10;
    }

    /* 編集しました（矢壁↑） */

    /* 修正 */
    .slider__dots {
        display: flex;
        justify-content: center;
        gap: 20px;
        margin-top: 20px;
    }

    .slider__dot {
        width: 10px;
        height: 10px;
        border-radius: 50%;
        background: #FFFFFF;
        border: 1.5px solid #4C5F3E;
        cursor: pointer;
        transition: background 0.3s;
    }

    .slider__dot.active {
        background: #4C5F3E;
    }

}

/* ここ修正しました！！！！！ */
/* access */
.access {
    min-height: 1402px;
    background: url('../image/access-bg.jpg') center/cover no-repeat;
    text-align: center;
    margin-top: 130px;
}

.onsen__icon {
    width: 51px;
    height: auto;
}

.memo__icon {
    width: 44px;
    height: auto;
}

.onsen-card {
    display: flex;
    align-items: center;
    gap: 50px;
    padding: 58px;
    border-radius: 16px;
    background: #F6F6F2;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    max-width: 1040px;
    margin: 0 auto;
    margin-top: 40px;
    flex-wrap: wrap;
}

.onsen-card__img {
    width: 343px;
    height: auto;
    border-radius: 12px;
    flex-shrink: 0;
}

.onsen__icon {
    width: 51px;
    height: auto;
}

.onsen-card__text {
    flex: 1;
    min-width: 517px;
}

.onsen-card__title {
    font-size: 30px;
    font-weight: medium;
    display: flex;
    align-items: center;
}

.onsen-card__icon {
    width: 51px;
    height: auto;
}

.onsen-card__desc {
    font-size: 16px;
    line-height: 2.2;
    text-align: left;
    margin-top: 31px;
}

.access__info-label {
    background: #fff;
    display: inline-block;
    padding: 10px;
    width: 410px;
    height: 59px;
    border-radius: 999px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.08);
    font-weight: medium;
    font-size: 26px;
    margin-top: 100px;
    margin-left: 15px;
}

.memo__icon {
    width: 44px;
    height: auto;
}






/* ここ修正しました！！！！！ */
.access__grid {
    max-width: 1370px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
    flex-wrap: wrap;
    margin-top: 50px;
    margin: 50px auto 95px;
    /* 上50px／左右auto（中央寄せ）／下95px */
    padding: 0 35px;
    /* 左右35pxの内側余白 */
    gap: 82px;
}






.map-box iframe {
    border-radius: 10px;
    margin-bottom: 0.5em;
}

.map-address {
    font-size: 16px;
    text-align: left;
    margin-top: 19px;
}

.access__accordion-area {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.accordion-item {
    background: #f6f5f0;
    border-radius: 20px;
    padding: 20px;
    transition: all 0.3s ease;

}

.accordion-btn {
    width: 648px;
    height: 118px;
    width: 100%;
    background: none;
    border: none;
    font-size: 20px;
    padding: 25px 30px;
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    font-weight: 500;

}

.accordion-icon {
    font-size: 28px;
    transition: transform 0.3s;
}






/* ここ修正しました！！！！！ */
.accordion-content {
    max-height: 0;
    overflow: hidden;
    font-size: 16px;
    line-height: 1.8;
    text-align: left;
    transition: all 0.4s ease;
    margin-top: 0;
    padding: 0;
}

/* ここ修正しました！！！！！ */
.accordion-item.active .accordion-content {
    max-height: 200px;
}







.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion {
    padding: 0 10px;
}


.access__note {
    margin-top: 28px;
    text-align: left;
}







/* ここ修正しました！！！！！ */
.access__note-title {
    font-size: 22px;
    line-height: 1.5;
}








.access__note-desc {
    display: block;
    margin-top: 13px;
    font-size: 16px;
    line-height: 1.8;
}

.access__note-desc-phone {
    display: none;
}

.onsen-card-pc {
    display: none;
}

.map-link {
    display: none;
}

/* 修正 */
.pc-br {
    display: block;
}

@media (max-width: 768px) {

    /* 修正 */
    .pc-br {
        display: none;
    }

    /* ここ修正しました！！！！！ */
    .access {
        padding-bottom: 20px;
        margin-top: 0;
    }





    .inner {
        padding: 51px 0;
    }

    .onsen-card {
        display: none;
    }

    .onsen-card-pc {
        display: flex;
        flex-direction: column;
        gap: 30px;
        padding: 30px;
        border-radius: 16px;
        background: #F6F6F2;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
        max-width: 335px;
        margin: 0 auto;
        margin-top: 50px;
        flex-wrap: wrap;
    }

    .onsen-card__img {
        width: 100%;
        max-width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .onsen-card__text {
        min-width: unset;
        width: 100%;
        text-align: left;
    }

    .onsen-card__title {
        font-size: 20px;
        justify-content: flex-start;
        gap: 10px;
    }

    .onsen-card__desc {
        font-size: 14px;
        line-height: 1.9;
        margin-top: 20px;
    }

    .onsen__icon {
        width: 36px;
        height: auto;
    }

    .memo__icon {
        width: 32px;
        height: auto;
    }

    .access__info-label {
        font-size: 20px;
        padding: 10px 20px;
        margin: 40px auto 0;
        gap: 3px;
        width: 275px;
        height: 42px;
        display: flex;
        align-items: center;
        justify-content: center;
    }





    /* ここ修正しました！！！！！ */
    .access__grid {
        padding: 0 20px;
        grid-template-columns: 1fr;
    }





    .map-box {
        justify-self: center;
        width: 335px;
    }

    .map-box iframe {
        width: 100%;
        height: auto;
        aspect-ratio: 4 / 3;
        margin-bottom: 0;
    }

    .map-address {
        font-size: 14px;
        text-align: left;
        margin-top: 16px;
    }

    .map-link {
        display: flex;
        margin-top: 16px;
        font-size: 13px;
        color: #333;
        text-decoration: none;
        position: relative;
    }

    .map-link::after {
        content: " ";
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 35%;
        height: 1px;
        background-color: #333;
    }

    .map-link:hover::after {
        transform: translateX(3px);
    }

    .access__accordion-area {
        gap: 20px;
        align-items: center;
    }

    .accordion-btn {
        width: 334px !important;
        height: 66px !important;
        display: flex;
        align-items: center;
        font-size: 17px;
    }

    .accordion-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease, padding 0.4s ease;
        padding-top: 0;
        padding-bottom: 0;
        margin-top: 0;
    }







    /* 追加してください！！！！ */
    .accordion-content p {
        font-size: 14px;
        line-height: 1.8;
        font-weight: 500;
        padding: 0 15px;
    }







    .accordion-item {
        padding: 0;
        width: 100%;
    }








    /* ここ修正しました！！！！！ */
    .accordion-item.active .accordion-content {
        max-height: 500px;
        padding-bottom: 16px;
    }








    .access__note {
        margin-top: 30px;
    }

    .access__note-title {
        font-size: 18px;
    }

    .access__note-desc-phone {
        display: block;
        font-size: 14px;
        margin-top: 13px;
    }

    .access__note-desc {
        display: none;
    }

}