/* サイト共通 */
body {
    color: #333;
    font-weight: 400;
    font-style: normal;
    font-size: 15px;
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.75;
    background-color: transparent;
    position: relative;
    font-optical-sizing: auto;
    background-image: url('../image/mv-bg.jpg');
    background-size: contain;
    background-repeat: no-repeat;
}

/* 野村変更0730 */
@media (max-width: 768px) {
    body {
        background-image: url('../image/mv-bg_sp.png');
        background-size: contain;
        background-repeat: no-repeat;
    }
}

/* ここまで */

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

}

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

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

a {
    transition: opacity .3s;
}

a:hover {
    opacity: .7;
}

/* PC・スマホのみで表示 */
@media (min-width: 769px) {
    .pc-none {
        display: none;
    }
}

@media (max-width: 768px) {
    .sp-none {
        display: none;
    }

    .section__title {
        font-size: 24px;
    }


}


/* ヘッダー */
.header {
    position: sticky;
    top: 0;
    padding: 10px 0;
    background-image: url('../image/mv-bg.jpg');
    background-color: transparent;
    z-index: 5;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 30px;
}

.header__logo {
    width: 180px;
}

.header__nav-list {
    top: 0;
    display: flex;
    justify-content: center;
    column-gap: 80px;
    margin-top: 35px;
}

.header__nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 0.85rem;
    color: var(--color-text);
    transition: opacity 0.3s;
}

.header__nav-icon {
    width: 51px;
    height: 51px;
}

.is-nav-open .header__nav-list {
    display: flex;
    flex-direction: column;
}

/* 修正 */
@media (min-width: 768px) {
    .header {
        display: block;
        transition: all 2s ease;
    }

    /* デフォルト：縦並び */
    .header__inner {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .header__nav {
        margin-top: 35px;
    }

    /* スクロール後：横並びに変更 */
    .header.is-scrolled {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 15px 120px;
    }

    .header.is-scrolled .header__inner {
        flex-direction: row;
        justify-content: flex-start;
        gap: 20px;
        margin-top: 0;
    }

    .header.is-scrolled .header__nav {
        margin-top: 0;
    }

    .header__nav-list {
        display: flex;
        column-gap: 80px;
        margin: 0;
        flex-direction: row;
    }

    .mobile-nav-buttons {
        display: none;
    }

}

/* 越智編集 */

/* 追従ボタン */
.floating-buttons {
    position: fixed;
    right: 0px;
    top: 50%;
    bottom: -100px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 2;
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.6s ease-out, opacity 0.6s ease-out;
}

.floating-buttons.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-buttons a {
    position: relative;
    display: inline-block;
    width: 140px;
    display: inline-block;
    background-color: transparent;
    transition: background-color 0.3s ease, transform 0.3s ease;
    border: none;
    height: 109px;
}


.floating-buttons a img {
    width: 100%;
    height: auto;
    display: block;
}

.floating-buttons a .hover-img {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.floating-buttons a:hover .hover-img {
    opacity: 1;
}

.floating-buttons a:hover img:not(.hover-img) {
    opacity: 0;
}

.mobile-nav-buttons {
    display: none;
}

@media (max-width: 768px) {
    .floating-buttons {
        display: none;
    }
}

@media (max-width: 768px) {

    .is-nav-open .header__nav-list {
        display: flex;
    }

    .header {
        padding: 20px;
    }

    .header__inner {
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-top: 0;
    }

    .header__logo {
        width: 180px;
        height: 39px;
    }

    /* ナビの見た目を整える */
    .header__nav {
        position: fixed;
        top: 0;
        right: 0;
        z-index: 1;
        width: 100%;
        height: 100%;
        background-color: #788768;
        color: #fff;
    }


    .header__nav-list {
        flex-direction: column;
        align-items: flex-start;
        gap: 14px;
        margin-top: 120px;
        margin-left: 50px;
    }

    .header__nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 12px;
        font-size: 16px;
        color: #fff;
        fill: #fff;
    }

    .header__nav-icon {
        width: 51px;
        height: auto;
        filter: brightness(0) invert(1);
    }

    .header__button {
        position: relative;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        width: 24px;
        height: 6px;
        background-image: url(../image/hamburgermenu.svg);
        background-position: center;
        background-size: contain;
        background-repeat: no-repeat;
    }

    .header__nav {
        transition: transform .3s;
        transform: translateX(100%);

    }

    .is-nav-open .header__nav {
        transform: translateX(0);

    }

    /* 野村変更0730 */
    .header__button::before,
    .header__button::after {
        content: "";
        position: absolute;
        width: 100%;
        height: 2px;
        background-color: #fff;
        left: 0;
        top: 50%;
        transform-origin: center;
        opacity: 0;
        transition: 0.3s ease;
    }

    .is-nav-open .header__button {
        background-image: none;
    }

    .is-nav-open .header__button::before {
        transform: rotate(45deg) translateY(-50%);
        opacity: 1;
    }

    .is-nav-open .header__button::after {
        transform: rotate(-45deg) translateY(-50%);
        opacity: 1;
    }

    /* ここまで */


    .mobile-nav-buttons {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        gap: 33px;
        margin: 50px 0 30px 50px;
    }

    .img-button {
        position: relative;
        width: 275px;
        height: auto;
        display: block;
    }

    .img-button img {
        width: 100%;
        height: auto;
        display: block;
    }

    .img-button .hover-img {
        position: absolute;
        top: 0;
        left: 0;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .img-button:hover .hover-img {
        opacity: 1;
    }

    .img-button:hover .default-img {
        opacity: 0;
    }

    .insta-btn {
        width: 275px;

    }

    .reserve-btn {
        width: 275px;

    }

    /* メインビジュアル */
    .mv {
        width: 100%;
        height: 500px;
        border-radius: 0;
    }

}



/* フッター */
.footer {
    background-color: #788768;
    height: 542px;
    text-align: center;
    color: #fff;
}

.footer__logo-image {
    width: 180px;
    margin-top: 70px;
}

.footer__address-data {
    margin-top: 18px;
    font-size: 14px;
}

.footer__nav-list {
    display: flex;
    justify-content: center;
    column-gap: 80px;
    margin-top: 60px;
}

.footer__nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    font-size: 16px;
    color: var(--color-text);
    transition: opacity 0.3s;
}

.footer__nav-icon {
    width: 51px;
    height: 51px;
}

.footer__info {
    margin-top: 100px;
    display: flex;
    justify-content: center;
    gap: 40px;
    font-size: 18px;
}


.footer__legal-copyright {
    display: flex;
    justify-content: center;
    margin-top: 60px;
    width: 100%;
    font-size: 12px;
}

@media (max-width: 768px) {
    .footer {
        height: auto;
        padding: 46px 20px 30px;
        text-align: left;
    }

    .footer__logo-image {
        width: 180px;
        margin-top: 0;
    }

    .footer__address-data {
        font-size: 12px;
        margin-top: 12px;
        line-height: 1.5;
    }

    .footer__nav-list {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        margin-top: 60px;
        gap: 14px;
    }

    .footer__nav-link {
        display: flex;
        flex-direction: row;
        align-items: center;
        font-size: 16px;
        color: #fff;
        gap: 12px;
    }

    .footer__nav-icon {
        width: 51px;
        height: auto;
    }

    .footer__info {
        display: flex;
        flex-direction: column;
        gap: 6px;
        font-size: 14px;
        line-height: 1.5;

        border-top: 1px solid #ccc;
        padding-top: 50px;
        margin-top: 60px;
    }

    .footer__legal-link {
        font-size: 14px;
        color: #fff;
        text-decoration: none;
        margin-top: 0;
    }

    .footer__legal {
        margin-top: 10px;
    }

    .footer__legal-copyright {
        font-size: 10px;
        color: #fff;
        text-align: left;
    }
}



/* コンテンツ幅 */
.inner--big {
    width: 90%;
    max-width: 1416px;
    margin: 0 auto;
}

.inner {
    margin-right: auto;
    margin-left: auto;
    max-width: 1370px;
    width: 96%;
}

.inner--small {
    margin-right: auto;
    margin-left: auto;
    max-width: 1200px;
    width: 96%;
}

@media (max-width: 768px) {
    .inner {
        margin-right: auto;
        margin-left: auto;
        max-width: 335px;
        width: 100%;
    }
}

/* 汎用クラス */
.flex {
    display: flex;
    gap: 1em;
    flex-wrap: wrap;
}

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

/* ボタン */
.button {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 70px;
    width: 100%;
}

.button .more {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    font-size: 16px;
    font-weight: medium;
    line-height: 1.8;
    cursor: pointer;
    position: relative;
}

.button__text {
    margin-right: 12px;
    color: #333;
}

.button__icon {
    position: relative;
    width: 53px;
    height: 53px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.button__bg {
    position: absolute;
    top: 0;
    left: 50%;
    width: 49px;
    height: auto;
    z-index: 1;
}

.button__arrow {
    position: relative;
    z-index: 2;
    width: 54px;
    height: 8px;
}

/* セクションベース */
.section {
    padding: 4em 0;
    background-color: var(--color-bg);
}

.section--alt {
    background-color: #f6f6f6;
}