body {
    background-color: #fff;
    font-size: 18px;
    font-family: 'Zen Kaku Gothic New', 'Prompt', sans-serif;
    font-weight: 500;
    color: #333;
    overflow-x: hidden;
}

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

.inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1080px;
    width: 75%;
}

.title__english {
    width: 164px;
    height: auto;
}

/* 英数字のフォント */
.number {
    font-family: "Prompt", sans-serif;
    font-weight: 400;
}

/* MV */
.mv {
    position: relative;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    background: url('../image/mv_img.jpg') no-repeat center center;
    background-size: cover;
    min-height: 870px;
}

.mv__title,
.mv p {
    position: absolute;
    left: 10%;
    color: #fff;
}

.mv__title {
    text-align: left;
    /* 文字を左揃えに */
    top: 20%;
    left: 13%;
    font-size: 35px;
    font-weight: 700;
    font-feature-settings: "palt";
    line-height: 1.5;
}

.mv p {
    text-align: left;
    /* 文字を左揃えに */
    top: 34%;
    left: 13%;
    font-size: 16px;
    font-weight: 500;
    line-height: 2;
}

/* セクションごとのタイトル */
.title {
    padding-top: 110px;
    text-align: center;
    font-size: 35px;
    line-height: 1.5;
    font-weight: 700;
}

.title h3 {
    margin-top: 15px;
}

.title__text {
    font-size: 18px;
    margin-top: 50px;
    display: flex;
    justify-content: center;
    text-align: center;
    line-height: 2;
    font-weight: 500;
}

/* セクションごとのタイトル レスポンシブ */
@media (max-width: 768px) {
    .title__english {
        width: 80px;
        height: auto;
    }

    .title {
        padding-top: 60px;
        font-size: 20px;
        line-height: 1.8;
    }

    .title h3 {
        margin-top: 10px;
    }

    .title__text {
        font-size: 15px;
        margin-top: 35px;
        line-height: 2;
        display: flex;
        justify-content: center;
        text-align: center;
    }

    .inner {
        width: 90%;
    }
}

/* ボタン */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 12px;
    /* 文字と矢印の間 */
    margin: 110px auto 0;
    width: 302px;
    height: 56px;
    background: #8AB262;
    color: #fff;
    border-radius: 35px;
    font-size: 18px;
    transition: background 0.3s, color 0.3s;
    border: 2px solid transparent;
    text-decoration: none;
}

.button__arrow {
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg);
    transition: border-color 0.3s;
}

.button:hover {
    background: #fff;
    color: #8AB262;
    border: 3px solid #8AB262;
}

.button:hover .button__arrow {
    border-top-color: #8AB262;
    border-right-color: #8AB262;
}

.button__width {
    font-weight: 700;
    font-size: 18px;
    line-height: 1.8;
}

/* ボタンレスポンシブ */
@media (max-width: 768px) {
    .button {
        margin-top: 40px;
    }
}

/* ヘッダー */
/* スクロール前 */
.header__container {
    position: fixed;
    top: 0;
    /* ← 通常位置 */
    left: 0;
    width: 100%;
    height: 80px;
    background-color: transparent;
    color: #fff;
    display: flex;
    align-items: center;
    transition: background-color 0.3s, color 0.3s, top 0.3s;
    z-index: 90;
    box-sizing: border-box;
}

/* スクロール後 */
.header__container.scrolled {
    top: -30px;
    /* ← 上に引っ込む */
    height: 160px;
    background-color: #fff;
    color: #333720;
}

/* スクロール前のリンク等の色 */
.header__nav a,
.header__nav-item,
.header__button span {
    color: #fff;
    transition: color 0.3s;
}

/* スクロール後のリンク等の色 */
.header__container.scrolled .header__nav-item,
.header__container.scrolled .header__nav a,
.header__container.scrolled {
    color: #333720;
}

.header__logo {
    margin-left: 3%;
}

.logo__pc {
    margin-top: 30px;
    vertical-align: middle;
    width: 252px;
    height: auto;
    display: inline-block;
}

.logo__sp {
    display: none;
}

.header__toggle {
    display: none;
}

.header__nav {
    display: flex;
    margin-left: auto;
    margin-top: 30px;
    color: #fff;
    font-size: 16px;
}

.header__nav-item {
    white-space: nowrap;
    color: #fff;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
    /* 下線のスペース確保 */
}

.header__nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

/* スクロール後のリンク文字色 */
.header__container.scrolled .header__nav-item {
    color: #333720;
}

/* スクロール後の下線色 */
.header__container.scrolled .header__nav-item::after {
    background-color: #8AB262;
}

.header__nav-item:hover::after {
    transform: scaleX(1);
}

.header__nav-list {
    display: flex;
    align-items: center;
    column-gap: 30px;
}

.header__insta-icon {
    width: 35px;
    height: auto;
    transition: filter 0.3s;
}

/* 予約ボタン追従 */
.header__button {
    margin-left: auto;
    border-bottom-left-radius: 81px;
    width: 185px;
    height: 131px;
    font-size: 20px;
    font-weight: 700;
    background-color: #8AB262;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    /* 動きをスムーズに */
    transition: transform 0.3s ease;
}

.header__button:hover {
    animation: bounceDown 0.4s ease forwards;
}

@keyframes bounceDown {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(8px);
    }

    100% {
        transform: translateY(0);
    }
}

/* PCでは非表示 */
.header__button-sp {
    display: none;
}

@media (max-width: 768px) {
    .header__button-sp {
        display: flex;
        position: fixed;
        bottom: 25%;
        right: 20px;
        width: 100px;
        height: 100px;
        border-radius: 62.5px;
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        background-color: #8AB262;
        border: 3px solid #fff;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        z-index: 50;
        text-decoration: none;
        user-select: none;
    }

    /* ナビ内のボタンは非表示に */
    .header__nav .header__button {
        display: none;
    }
}

@media (max-width: 980px) {

    /* ロゴの切り替え */
    .logo__pc {
        display: none;
    }

    .logo__sp {
        display: inline-block;
    }

    .header__logo {
        margin-top: 10px;
    }
}

/* ヘッダーレスポンシブ */
@media (max-width: 768px) {

    .header__nav {
        display: none;
        flex-direction: column;
        position: fixed;
        right: 20px;
        width: 200px;
        padding: 10px;
        position: fixed;
        z-index: 100;
    }

    .header__nav.active {
        display: flex;
    }

    .header__button {
        display: flex;
    }

    .header__nav {
        width: 310px;
        height: 550px;
        top: -30px;
        right: 0;
        padding: 90px 65px;
        background-color: #8AB262;
        overflow-y: auto;
        border-bottom-left-radius: 40px;
        position: fixed;
    }

    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        margin: 0;
        padding: 0;
        row-gap: 20px;
        column-gap: 0;
        font-size: 18px;
        line-height: 2;
        position: fixed;
    }

    .header__insta-icon {
        display: none;
    }

    .header__nav.active .header__insta-icon {
        display: block;
        margin-top: 20px;
    }


    .header__toggle {
        position: fixed;
        right: 0;
        top: 0;
        width: 80px;
        height: 80px;
        background-color: #8AB262;
        border-bottom-left-radius: 81px;
        display: flex;
        flex-direction: column;
        justify-content: center;
        z-index: 105;
    }

    .header__toggle span {
        display: block;
        width: 30px;
        height: 3px;
        background-color: #fff;
        border-radius: 3px;
        transform: translateX(34px) translateY(-5px);
        margin: 4px 0;
    }

    .header__container.scrolled .header__toggle {
        background-color: #8AB262;
    }

    .header__toggle.active span:nth-child(1) {
        transform: translateX(25px) translateY(8px) rotate(45deg);
    }

    .header__toggle.active span:nth-child(2) {
        opacity: 0;
    }

    .header__toggle.active span:nth-child(3) {
        transform: translateX(25px) translateY(-13px) rotate(-45deg);
    }
}

/* お問い合わせ */
.contact__container {
    margin-top: 110px;
    position: relative;
    z-index: 1;
    background: url('../image/contact__img.jpg') no-repeat center center;
    background-size: cover;
    max-width: 1920px;
    min-height: 771px;
}

/* お問い合わせタイトル */
.contact__title {
    padding-top: 62px;
    text-align: center;
}

.contact__title h3 {
    color: #fff;
    font-size: 35px;
    font-weight: 700;
    line-height: 1.8;
}

/* お問い合わせボタン */
.contact__button-container {
    margin-top: 88px;
    gap: 90px;
    display: flex;
    justify-content: center;
}

.contact__button {
    font-weight: 700;
    width: 300px;
    height: 245px;
    background-color: #fff;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    transition: transform 0.3s ease;
    cursor: pointer;
}

/* ホバー時に縮小 */
.contact__button:hover {
    transform: scale(0.95);
}

/* クリック時にさらに軽く縮む */
.contact__button:active {
    transform: scale(0.92);
}

.contact__button-text {
    font-size: 25px;
    margin-top: 68px;
}

.contact__button-arrow {
    margin-top: 33px;
    position: relative;
    width: 49px;
    height: 49px;
    background-color: #8AB262;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact__button-arrow::before {
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: 3px solid #fff;
    border-right: 3px solid #fff;
    transform: rotate(45deg) translateX(-2px);
    transition: transform 0.3s ease;
}

/* フッター全体 */
.footer__container {
    margin-top: -145px;
    position: relative;
    z-index: 10;
    background: url('../image/footer_img.png') no-repeat center bottom;
    background-size: cover;
    width: 100%;
    max-width: 1920px;
    min-height: 553px;
    color: #fff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 60px 40px;
    box-sizing: border-box;
}

/* 左ブロック */
.footer__left {
    flex: 1;
    max-width: 50%;
    margin-top: 173px;
    margin-left: 114px;
    font-size: 16px;
}

/* 右ブロック */
.footer__right {
    flex: 1;
    max-width: 50%;
    margin-top: 173px;
    margin-right: 234px;
    font-size: 18px;
    text-align: right;
}

/* ロゴ */
.footer__logo {
    width: 252px;
    height: auto;
    display: inline-block;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.footer__logo:hover {
    animation: cuteBounce 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes cuteBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    40% {
        transform: translateY(-6px);
    }

    60% {
        transform: translateY(-3px);
    }

    80% {
        transform: translateY(-5px);
    }
}

/* 電話番号行 */
.footer__tel-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
}

/* 電話番号 */
.footer__tel-number {
    font-size: 25px;
    font-family: "Prompt", sans-serif;
}

/* 電話アイコン */
.footer__icon {
    width: 20px;
    height: auto;
}

/* 住所 */
.footer__address p {
    margin-top: 10px;
}

/* ナビゲーションリスト */
.footer__nav-list {
    line-height: 1.8;
    /* text-align: right; */
}

.footer__nav-list li {
    margin-top: 10px;
}

.footer__nav-item {
    white-space: nowrap;
    color: #fff;
    transition: color 0.3s;
    position: relative;
    padding-bottom: 4px;
}

.footer__nav-item::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #fff;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s ease;
}

.footer__nav-item:hover::after {
    transform: scaleX(1);
}

/* コピーライト */
.footer__copyright {
    flex-basis: 100%;
    text-align: center;
    margin-top: 76px;
    font-size: 12px;
    line-height: 1.8;
}

/* お問い合わせレスポンシブ */
@media (max-width: 768px) {
    .contact__container {
        margin-top: 70px;
        min-height: 750px;
        padding: 55px 0;
        background-position: center center;
        background-size: cover;
    }

    .contact__title h3 {
        font-size: 20px;
        line-height: 1.8;
    }

    @media (max-width: 768px) {
        .contact__button-container {
            flex-direction: column;
            align-items: center;
            gap: 35px;
            margin-top: 60px;
        }

        .contact__button {
            width: 270px;
            height: 106px;
            display: flex;
            flex-direction: row;
            /* ← 横並びに */
            justify-content: center;
            align-items: center;
            gap: 20px;
            /* ← テキストと矢印の間隔 */
        }

        .contact__button-text {
            margin-top: 0;
            /* ← 上マージン不要 */
            font-size: 18px;
        }

        .contact__button-arrow {
            margin-top: 0;
            /* ← 上マージン不要 */
            width: 33px;
            height: 33px;
        }

        .contact__button-arrow::before {
            top: 12px;
            left: 11px;
            width: 10px;
            height: 10px;
            border-top: 2px solid #fff;
            border-right: 2px solid #fff;
        }
    }
}

/* フッターレスポンシブ */
@media (max-width: 768px) {
    .footer__container {
        padding: 100px 35px 48px 35px;
        flex-direction: column;
        align-items: flex-start;
        text-align: left;
        min-height: auto;
    }

    .footer__left,
    .footer__right {
        max-width: 100%;
        font-size: 12px;
        line-height: 1.8;
    }

    .footer__left {
        margin-left: 0;
        margin-top: 90px;
    }

    .footer__right {
        width: 100%;
        margin-top: 20px;
    }

    .footer__tel-number {
        font-size: 15px;
        font-weight: 500;
    }

    .hide__on-mobile {
        display: none;
    }

    .footer__tel-row {
        margin-top: 12px;
    }

    .footer__nav-list {
        width: 100%;
        justify-items: start;
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .footer__nav-list li,
    .footer__nav-list a {
        text-align: left;
    }

    .footer__copyright {
        margin-top: 70px;
        font-size: 10px;
        text-align: center;
        width: 100%;
    }

    .footer__logo {
        width: 228px;
        height: 49px;
    }

}

/* 下層ページ共通 */

.page__mv {
    min-height: 422px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.page__title {
    color: #fff;
    font-size: 40px;
    font-weight: 700;
}

@media (max-width: 768px) {
    .page__title {
        font-size: 30px;
    }
}

.page-nav__box {
    display: flex;
    justify-content: center;
    padding-top: 95px;
    padding-bottom: 80px;
    flex-wrap: wrap;
    gap: 63px;
}

@media (max-width: 768px) {
    .page-nav__box {
        padding-top: 50px;
        padding-bottom: 40px;
        flex-direction: column;
        align-items: center;
        gap: 33px;
    }
}

.page-nav {
    padding: 10px 20px;
    width: 318px;
    height: 96px;
    color: #8AB262;
    border: 2px solid #8AB262;
    border-color: #8AB262;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.5;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.page-nav:hover {
    background-color: #8AB262;
    color: #fff;
}

.page-nav__title {
    font-size: 20px;
    padding-right: 25px;
}

.page-nav__button-arrow {
    width: 14px;
    height: 14px;
    border-top: 3px solid #8AB262;
    border-right: 3px solid #8AB262;
    transform: translateY(-25%) rotate(135deg);
}

.page-nav__button-arrow:hover {
    border-top: 3px solid #FFFFFF;
    border-right: 3px solid #FFFFFF;
}

.page-nav:hover .page-nav__button-arrow {
    border-top-color: #FFFFFF;
    border-right-color: #FFFFFF;
}

/* スクロールをゆっくり */
html {
    scroll-behavior: smooth;
}