﻿@charset "UTF-8";
/*
Theme Name: smore
Theme URI: 
Author: 
Author URI: 
Description: smore theme
Version: 1.0.0
Text Domain: smore
*/

:root {
    --color-main: #c7af95;
    --color-main-dark: #b4a08b;

    --color-heading: #a18568;
    --color-text: #57574f;

    --color-black: #4a4a4a;
    --color-white: #fff;

    --color-bg: #fdfaf7;
    --color-bg-dark: #ede3d8;

    font-size: 14px;

    @media screen and (max-width: 768px) {
        font-size: 12px;
    }
}


/* ==================================================
   Modern CSS Reset
   ================================================== */
*,
*::before,
*::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

body {
    vertical-align: baseline;
    line-height: 1.5;
    -webkit-font-smoothing: antialiased;
    color: var(--color-text);
    font-feature-settings: "palt";
}

ul,
ol {
    list-style: none;
}

img,
picture,
svg,
video {
    display: block;
    max-width: 100%;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
    overflow-wrap: break-word;
}

a {
    color: inherit;
    text-decoration: none;

    &:hover {
        text-decoration: underline;
    }
}

.pc {
    display: block;

    @media screen and (max-width: 768px) {
        display: none;
    }
}

.sp {
    display: none;

    @media screen and (max-width: 768px) {
        display: block;
    }
}

.inner {
    margin: 0 auto;

    @media screen and (max-width: 768px) {
        width: 100%;
        padding: 0 20px;
    }

    &.__1000 {
        max-width: 1000px;
    }

    &.__1200 {
        max-width: 1200px;
    }

    &.__1400 {
        max-width: 1400px;
    }

    &.__1470 {
        max-width: 1470px;
    }
}

header {
    display: flex;
    height: 70px;
    margin: 0 auto;
    justify-content: space-between;
    position: fixed;
    width: 100%;
    top: 0;
    padding-left: 20px;
    z-index: 99;

    h1 {
        margin-top: 10px;
        max-width: 154px;

        @media screen and (max-width: 768px) {
            max-width: 90px;
        }
    }

    .global-nav {
        display: flex;

        ul {
            display: flex;

            @media screen and (max-width: 768px) {
                display: block;
                font-size: 2rem;
            }

            li {
                display: flex;

                a {
                    &::before {
                        content: "";
                        position: absolute;
                        top: 0;
                        left: 0;
                        width: 0%;
                        height: 100%;
                        border-bottom: 1px solid var(--color-text);
                        transition: all 0.3s ease;
                    }

                    &:hover {
                        text-decoration: none;

                        &::before {
                            width: 100%;
                        }
                    }
                }
            }
        }

        a {
            width: 140px;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 10px 20px;

            &.contact {
                background-color: var(--color-main);
                color: var(--color-white);
            }
        }

        /* --------------------------------
           スマホ用ナビゲーションメニュー
           -------------------------------- */
        @media screen and (max-width: 768px) {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background-color: var(--color-main);
            /* 半透明の白背景 */
            display: flex;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            opacity: 0;
            visibility: hidden;
            transition: opacity 0.3s, visibility 0.3s;
            z-index: 99;

            .contact {
                display: inline-block;
                margin-top: 20px;
                padding: 10px 30px;
                background-color: var(--color-main-dark);
                color: var(--color-white);
                border-radius: 4px;
                font-size: 1.286rem;
            }

            /* ハンバーガーボタンクリック時（開いた状態） */
            &.is-active {
                opacity: 1;
                visibility: visible;
            }
        }
    }

    /* --------------------------------
       ハンバーガーボタン
       -------------------------------- */
    .hamburger {
        display: none;

        @media screen and (max-width: 768px) {
            display: flex !important;
            flex-direction: column;
            justify-content: center;
            align-items: center;
            width: 60px;
            height: 60px;
            background-color: var(--color-main-dark);
            color: var(--color-white);
            cursor: pointer;
            position: fixed;
            top: 0;
            right: 0;
            z-index: 100;
            box-sizing: border-box;

            /* 三本線*/
            .hamburger__line {
                display: block;
                width: 28px;
                height: 2px;
                background-color: var(--color-white);
                margin-bottom: 5px;
                transition: transform 0.3s, opacity 0.3s;

                /* 3本目のマージンだけ詰める */
                &:nth-child(3) {
                    margin-bottom: 3px;
                }
            }

            /* MENU の文字*/
            .hamburger__text {
                font-size: 0.714rem;
                line-height: 1;
                font-family: sans-serif;
                font-weight: bold;
            }

            /* クリック時（開いた状態）の×印アニメーション */
            &.is-active {
                .hamburger__line {
                    &:nth-child(1) {
                        transform: translateY(7px) rotate(45deg);
                    }

                    &:nth-child(2) {
                        opacity: 0;
                    }

                    &:nth-child(3) {
                        transform: translateY(-7px) rotate(-45deg);
                    }
                }
            }
        }
    }
}

.hero {
    width: 100%;
    height: 100vh;
    background-image: url("images/hero.jpg");
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;

    @media screen and (max-width: 768px) {
        padding: 0 50px;
    }
}

/* ==================================================
   共通コンポーネント
   ================================================== */
.section-title {
    text-align: center;
    color: var(--color-text);
    margin-bottom: 60px;

    @media screen and (max-width: 768px) {
        margin-bottom: 30px;
    }

    /* 英語のサブタイトル ("Concept"など) */
    .section-title__en {
        display: block;
        font-family: sans-serif;
        font-size: 1.143rem;
        color: #999;
        /* 薄いグレー */
        letter-spacing: 0.1em;
        margin-bottom: 5px;
    }

    /* 日本語のメインタイトル */
    font-size: 2.286rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    position: relative;
    padding-bottom: 20px;

    &::after {
        content: "";
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        /* 中央寄せ */
        width: 100px;
        /* 線の長さ*/
        height: 1px;
        /* 線の太さ*/
        background-color: var(--color-main);
        /* 茶色 */
    }
}

section {
    padding: 60px 0;

    @media screen and (max-width: 768px) {
        padding: 14px 0;
    }
}

/* ==================================================
   Concept セクション
   ================================================== */
.concept {
    background-color: var(--color-bg);
    margin: 0 auto;
    padding-bottom: 0;

    /* inner01: メイン画像とテキストの横並び */
    .inner01 {
        display: flex;
        align-items: flex-start;
        gap: 60px;
        margin-bottom: 30px;

        @media screen and (max-width: 768px) {
            flex-direction: column;
            gap: 30px;
        }
    }

    .__1000 {
        display: flex;
        justify-content: space-between;

        @media screen and (max-width: 768px) {
            flex-direction: column;
            gap: 15px;
        }

        * {
            z-index: 2;
        }

        .video {
            a {
                display: block;
                position: relative;

                &::after {
                    content: "";
                    position: absolute;
                    top: calc(50% + 10px);
                    left: 50%;
                    transform: translate(-50%, -50%);
                    width: 84px;
                    height: 84px;
                    background-color: rgba(0, 0, 0, 0);
                    border: 6px solid #fff;
                    border-radius: 50%;
                    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M8 5v14l11-7z"/></svg>');
                    background-repeat: no-repeat;
                    background-position: center;
                    background-size: 50px;
                    transition: background-color 0.3s;
                    pointer-events: none;
                }

                &:hover::after {
                    background-color: var(--color-main);
                }
            }

            img {
                width: 100%;
                height: auto;
                border-radius: 4px;
                display: block;
                transition: opacity 0.3s;
            }

            a:hover img {
                opacity: 0.8;
            }
        }

        dl {
            padding-top: 25px;
            max-width: 520px;

            dt {
                font-size: 1.9rem;
                font-weight: bold;
                margin-bottom: 10px;
                color: var(--color-heading);
            }

            dd {
                font-size: 0.98rem;
                line-height: 1.6;
            }
        }
    }

    .border-mountain {
        position: relative;
        background-color: var(--color-bg-dark);
        margin-top: 60px;
        padding-bottom: 70px;

        @media screen and (max-width: 768px) {
            margin-top: 30px;
        }

        &:before {
            display: block;
            content: "";
            position: absolute;
            top: -114px;
            left: 0;
            width: 100%;
            height: 114px;
            background-image: url("images/index/mountain.svg");
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;

            @media screen and (max-width: 768px) {
                background-image: url("images/index/mountain_sp.svg");
                top: -57px;
                height: 57px;
            }
        }
    }

    /* 右側のテキストエリア */
    .concept__text-area {
        flex: 1 1 45%;
        display: flex;
        align-items: flex-start;
        gap: 15px;
    }

    .concept__number {
        font-family: serif;
        font-size: 4.286rem;
        line-height: 0.8;
        color: #d2b48c;
        /* 数字の色（要調整）*/
    }

    .concept__desc {
        .concept__sub-title {
            font-size: 1rem;
            color: #666;
            margin-bottom: 5px;
            letter-spacing: 0.05em;
        }

        .concept__main-title {
            font-size: 1.714rem;
            font-weight: bold;
            color: var(--color-heading);
            margin-bottom: 20px;
            line-height: 1.4;
            letter-spacing: 0.05em;
        }

        .concept__text {
            font-size: 1rem;
            line-height: 1.8;
            color: var(--color-text);
        }
    }

    .concept-layout {
        display: flex;
        gap: 100px;
        justify-content: flex-start;
        align-items: center;
        margin-bottom: 35px;

        &:nth-child(2n) {
            justify-content: flex-end;
        }

        @media screen and (max-width: 768px) {
            flex-direction: column;
            gap: 30px;
        }

        >div {
            max-width: 720px;
            display: flex;
            flex-direction: column;
            gap: 40px;

            &:has(.concept-layout__text) {
                max-width: 540px;
            }
        }

        .concept-layout__left {

            img {
                width: 100%;
                height: auto;
                border-radius: 4px;
            }
        }

        .concept-layout__text {
            display: flex;
            gap: 15px;

            .concept-layout__num {
                font-family: serif;
                font-size: 4.286rem;
                line-height: 0.8;
                color: var(--color-heading);
                float: left;
                margin-right: 15px;

                @media screen and (max-width: 768px) {
                    font-size: 3.5 rem;
                }
            }

            .concept-layout__desc {
                .concept-layout__sub {
                    font-size: 1rem;
                    color: #666;
                    margin-bottom: 5px;
                    letter-spacing: 0.05em;

                    @media screen and (max-width: 768px) {
                        display: none;
                    }
                }

                .concept-layout__title {
                    font-size: 1.75rem;
                    font-weight: bold;
                    margin-bottom: 20px;
                    line-height: 1.4;
                    letter-spacing: 0.05em;
                }

                .concept-layout__body {
                    font-size: 1.205rem;
                    line-height: 1.8;
                    color: var(--color-text);
                }
            }
        }

        .concept-layout__thumbs {
            display: flex;
            gap: 15px;

            img {
                width: calc(33.333% - 10px);
                height: auto;
                border-radius: 4px;
                cursor: pointer;
                transition: opacity 0.3s;

                &:hover {
                    opacity: 0.7;
                }
            }
        }
    }
}

/* ==================================================
   NEWS セクション
   ================================================== */
.news {
    padding: 30px;

    .news__inner {
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        align-items: center;
        gap: 70px;

        @media screen and (max-width: 768px) {
            gap: 20px;
        }
    }

    .news__title {
        color: var(--color-heading);
        font-size: 1.714rem;
        font-weight: bold;
        line-height: 1;
        padding-right: 70px;
        border-right: 1px solid var(--color-text);
    }

    .news__content {
        display: flex;
        align-items: center;
    }

    .news__item {
        display: flex;
        align-items: center;
        gap: 15px;
        font-size: 1rem;
        color: var(--color-text);

        @media screen and (max-width: 768px) {
            flex-wrap: wrap;
        }
    }

    .news__date {
        font-family: sans-serif;
        /* お好みに合わせて調整 */
    }

    .news__category {
        background-color: var(--color-main-dark);
        color: var(--color-white);
        padding: 4px 12px;
        font-size: 0.857rem;
        line-height: 1;
    }

    .news__link {
        color: var(--color-text);
        text-decoration: underline;
        text-underline-offset: 4px;
        transition: opacity 0.3s;

        &:hover {
            text-decoration: none;
            opacity: 0.7;
        }
    }
}

footer {
    display: flex;
    flex-flow: column;
    background-color: var(--color-main);
    color: var(--color-white);
    text-align: center;
    padding-top: 60px;

    .logo {
        margin: 0 auto 30px;
        max-width: 300px;
    }

    .footer__info {
        margin-bottom: 40px;

        .site-name {
            font-size: 1.286rem;
            margin-bottom: 10px;
            letter-spacing: 0.1em;
        }
    }

    .address,
    .mail {
        font-size: 1.143rem;
        margin-bottom: 8px;
        letter-spacing: 0.1em;
    }

    .sns-icons {
        display: flex;
        justify-content: center;
        margin-bottom: 50px;
        font-size: 4.286rem;

        @media screen and (max-width: 768px) {
            font-size: 3.571rem;
            margin-bottom: 25px;
        }

        a {
            transition: opacity 0.3s;

            &:hover {
                opacity: 0.7;
            }
        }
    }

    .link {
        max-width: 600px;
        margin: 0 auto 50px;
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        gap: 15px;

        @media screen and (max-width: 768px) {
            padding: 0 20px;
        }

        li {
            flex: 1 1 45%;
            border: 1px solid var(--color-white);
            border-radius: 40px;
            overflow: hidden;

            @media screen and (max-width: 768px) {
                flex: 1 1 225px;
                width: 225px;
            }

            a {
                display: flex;
                align-items: center;
                justify-content: center;
                gap: 12px;
                padding: 10px 10px;
                transition: all 0.3s;
                position: relative;

                ion-icon {
                    font-size: 1.714rem;
                }

                &:hover {
                    background-color: var(--color-white);
                    color: var(--color-main);
                    text-decoration: none;
                }
            }

            &.reserve {
                background-color: var(--color-white);
                color: var(--color-main);

                a {
                    .chevron {
                        position: absolute;
                        right: 25px;
                        font-size: 1.286rem;
                    }

                    &:hover {
                        background-color: var(--color-main-dark);
                        color: var(--color-white);
                    }
                }
            }
        }
    }

    nav {
        width: 100%;
        max-width: 700px;
        margin: 0 auto;
        display: flex;
        justify-content: center;
        padding: 40px 20px 50px;
        border-top: 1px solid rgba(255, 255, 255, 0.4);

        @media screen and (max-width: 768px) {
            padding: 20px 0 30px;
        }

        ul {
            display: flex;
            gap: 40px;

            @media screen and (max-width: 768px) {
                gap: 20px;
            }
        }

        a {
            font-size: 1.143rem;
            letter-spacing: 0.05em;
            transition: opacity 0.3s;
            position: relative;

            &::before {
                display: none;
            }

            &:hover {
                text-decoration: none;
                opacity: 0.7;
            }
        }
    }

    .copyright {
        background-color: var(--color-main-dark);
        padding: 15px 0;
        font-size: 0.786rem;
        letter-spacing: 0.05em;
    }
}

/* ==================================================
   Room セクション
   ================================================== */
.room {
    background-color: var(--color-bg);
    padding: 80px 0;
}

.room-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    @media screen and (max-width: 768px) {
        padding: 30px;
    }
}

.room-card__top {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
}

.room-card__gallery {
    flex: 1 1 50%;
    max-width: 500px;
}

.room-card__gallery .js-gallery-main-wrapper {
    margin-bottom: 15px;
}

.room-card__gallery .js-gallery-main-wrapper img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 4px;

    @media screen and (max-width: 768px) {
        height: 250px;
    }
}

.room-card__thumbs {
    display: flex;
    gap: 15px;
}

.room-card__thumbs img {
    width: calc(33.333% - 10px);
    height: 90px;
    object-fit: cover;
    border-radius: 4px;

    @media screen and (max-width: 768px) {
        height: 70px;
    }
}

.room-card__info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.room-card__title {
    color: var(--color-heading);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.room-card__desc {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 30px;

    @media screen and (max-width: 768px) {
        margin-bottom: 0;
    }
}

.room-card__eqpmnt {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    @media screen and (max-width: 768px) {
        display: none;
    }

    .room-card__eqpmnt-title {
        width: 100%;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--color-text);
    }

    dl {
        display: flex;
        justify-content: space-between;
        width: 40%;

        dt {
            font-weight: bold;
        }
    }

    p {
        font-size: 1.2rem;
    }
}

.room-card__btn-wrap {
    margin-top: auto;
    text-align: center;
}

.room-card__btn-wrap.is-pc {
    display: block;

    @media screen and (max-width: 768px) {
        display: none;
    }
}

.room-card__btn-wrap.is-sp {
    display: none;
    margin-top: 40px;
    text-align: center;

    @media screen and (max-width: 768px) {
        display: block;
    }
}

.room-card__point {
    background-color: #f7f5f2;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    margin-top: 50px;

    @media screen and (max-width: 768px) {
        padding: 30px 20px;
        margin-top: 0px;
        border-radius: 0 0 8px 8px;
    }
}

.room-card__point-header {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-main-dark);
    color: var(--color-white);
    padding: 8px 40px;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 0.1em;

    @media screen and (max-width: 768px) {
        position: static;
        transform: none;
        display: block;
        text-align: center;
        border-radius: 8px 8px 0 0;
        margin: -30px -20px 30px -20px;
        padding: 12px;
    }
}

.room-card__point-content {
    display: flex;
    gap: 30px;
    align-items: center;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        text-align: center;
    }
}

.room-card__point-images {
    display: flex;
    gap: 10px;
    flex: 1 1 50%;
}

.room-card__point-images img {
    width: calc(50% - 5px);
    border-radius: 4px;
    object-fit: cover;
    height: 160px;

    @media screen and (max-width: 768px) {
        height: 120px;
    }
}

.room-card__point-info {
    flex: 1 1 50%;
}

.room-card__point-title {
    color: var(--color-heading);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.room-card__point-desc {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* ==================================================
   ボタン共通スタイル
   ================================================== */
.btn {
    display: inline-block;
    padding: 15px 40px;
    background-color: #4a4a4a;
    color: var(--color-white);
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.95rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    transition: background-color 0.3s, opacity 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #333;
    color: var(--color-white);
    opacity: 0.9;
}

.btn--room {
    width: 100%;
    max-width: 300px;
    position: relative;
}

.btn--room .arrow-right {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
}

/* ==================================================
   Meal セクション
   ================================================== */
.meal {}

.meal-card {
    display: flex;
    gap: 60px;
    align-items: flex-start;
    margin-top: 40px;

    @media screen and (max-width: 768px) {
        flex-direction: column-reverse;
        gap: 40px;
    }
}

.meal-card__info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.meal-card__label {
    display: inline-block;
    border: 1px solid #c2a68d;
    color: #c2a68d;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 20px;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    align-self: flex-start;
}

.meal-card__title {
    color: var(--color-heading);
    font-size: 1.9rem;
    font-weight: bold;
    line-height: 1.5;
    margin-bottom: 20px;
}

.meal-card__desc {
    color: var(--color-text);
    font-size: 1.3rem;
    line-height: 1.8;
    margin-bottom: 30px;
}

.meal-card__menu {
    background-color: #f7f7f7;
    padding: 30px;
    margin-bottom: 40px;
}

.meal-card__menu-title {
    font-weight: bold;
    font-size: 1.1rem;
    color: var(--color-heading);
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px solid #ccc;
}

.meal-card__menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.meal-card__menu-list li {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 2;
}

.meal-card__btn-wrap {
    text-align: left;

    @media screen and (max-width: 768px) {
        text-align: center;
    }
}

.meal-card__gallery {
    flex: 1 1 50%;
    width: 100%;
}

.meal-card__gallery .js-gallery-main-wrapper {
    margin-bottom: 15px;
}

.meal-card__gallery .js-gallery-main-wrapper img {
    width: 100%;
    height: 400px;
    object-fit: cover;

    @media screen and (max-width: 768px) {
        height: 250px;
    }
}

.meal-card__thumbs {
    display: flex;
    gap: 15px;
}

.meal-card__thumbs img {
    width: calc(50% - 7.5px);
    height: 100px;
    object-fit: cover;
    cursor: pointer;
    transition: opacity 0.3s;

    @media screen and (max-width: 768px) {
        height: 80px;
    }
}

.meal-card__thumbs img:hover {
    opacity: 0.7;
}

/* ==================================================
   Photo セクション
   ================================================== */
.photo {
    padding: 80px 0;

    @media screen and (max-width: 768px) {
        padding: 40px 0;
    }
}

.photo__wrap {
    position: relative;
    overflow: hidden;
}

.photo__list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;

    @media screen and (max-width: 768px) {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
}

.photo__item img {
    width: 100%;
    height: 250px;
    object-fit: cover;

    @media screen and (max-width: 768px) {
        height: 150px;
    }
}

.photo__fadeout {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 20px;

    @media screen and (max-width: 768px) {
        height: 120px;
        padding-bottom: 10px;
    }
}

.photo__btn {
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    color: var(--color-black);
    padding: 12px 40px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    display: inline-flex;
    align-items: center;
    border-radius: 4px;
    gap: 15px;
    font-family: inherit;
}

.photo__btn:hover {
    background-color: var(--color-black);
    color: var(--color-white);
}

.photo__btn:hover .arrow-down {
    border-color: var(--color-white);
}

.photo__btn .arrow-down {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-bottom: 2px solid var(--color-black);
    border-right: 2px solid var(--color-black);
    transform: rotate(45deg);
    transition: border-color 0.3s ease;
}

/* ==================================================
   Photo セクション (もっと見る開閉機能の追加スタイル)
   ================================================== */
.photo__wrap {
    /* 初期状態：高さを制限して隠す */
    max-height: 380px;
    /* PCの場合は約1.5行分隠れる高さ、デザインに応じて調整 */
    transition: max-height 0.8s ease;

    @media screen and (max-width: 768px) {
        max-height: 250px;
        /* SPの場合は約1.5行分隠れる高さ */
    }

    &.is-open {
        max-height: 2000px;
        /* 全ての画像が表示される十分な高さ */

        .photo__fadeout {
            /* 開いている時はフェードグラデーションを消し、ボタンだけをパディング付きで残す */
            background: transparent;
            height: auto;
            position: relative;
            padding-top: 40px;
            padding-bottom: 0;

            .arrow-down {
                transform: rotate(-135deg);
                /* 矢印を上向きに */
                margin-top: 4px;
            }
        }
    }
}

/* ==================================================
   Photo セクション (もっと見る開閉機能の追加スタイル)
   ================================================== */
.photo__wrap {
    max-height: 480px;
    transition: max-height 0.8s ease;
}

@media screen and (max-width: 768px) {
    .photo__wrap {
        max-height: 350px;
    }
}

.photo__wrap.is-open {
    max-height: 2000px;
}

.photo__wrap.is-open .photo__fadeout {
    background: transparent;
    height: auto;
    position: relative;
    padding-top: 40px;
    padding-bottom: 0;
}

.photo__wrap.is-open .photo__fadeout .arrow-down {
    transform: rotate(-135deg);
    margin-top: 4px;
}

/* ==================================================
   QA セクション
   ================================================== */
.qa {
    padding: 80px 0;
}

@media screen and (max-width: 768px) {
    .qa {
        padding: 40px 0;
    }
}

/* ==================================================
   汎用コンポーネント：2カラム分割ボックス (.split-box)
   ================================================== */
.split-box {
    display: flex;
    background-color: var(--color-main-dark);
}

@media screen and (max-width: 768px) {
    .split-box {
        flex-direction: column;
    }
}

.split-box__img {
    flex: 1 1 50%;
}

.split-box__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media screen and (max-width: 768px) {
    .split-box__img img {
        height: 250px;
    }
}

.split-box__content {
    flex: 1 1 50%;
    padding: 15px;
}

@media screen and (max-width: 768px) {
    .split-box__content {
        padding: 10px;
    }
}

.split-box__content-inner {
    border: 1px solid rgba(255, 255, 255, 0.8);
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px 40px;
    color: var(--color-white);
}

@media screen and (max-width: 768px) {
    .split-box__content-inner {
        padding: 40px 20px;
    }
}

.split-box__title {
    font-size: 2.2rem;
    letter-spacing: 0.15em;
    margin-bottom: 25px;
    font-weight: normal;
}

.split-box__desc {
    font-size: 1rem;
    line-height: 2;
    margin-bottom: 40px;
    text-align: left;
}

.split-box__desc a {
    color: var(--color-white);
    text-decoration: none;
    border-bottom: 1px solid var(--color-white);
    padding-bottom: 2px;
}

.split-box__desc a:hover {
    opacity: 0.8;
    text-decoration: none;
}

@media screen and (max-width: 768px) {
    .split-box__desc {
        font-size: 0.95rem;
        margin-bottom: 30px;
    }
}

/* ==================================================
   汎用コンポーネント：黒ベースボタン (.btn--dark)
   ================================================== */
.btn--dark {
    width: 100%;
    max-width: 300px;
    position: relative;
    padding: 18px 40px;
    background-color: var(--color-black);
    color: var(--color-white);
    border-radius: 4px;
}

.btn--dark .arrow-right {
    position: absolute;
    right: 25px;
    top: 50%;
    width: 8px;
    height: 8px;
    border-top: 2px solid var(--color-white);
    border-right: 2px solid var(--color-white);
    transform: translateY(-50%) rotate(45deg);
}

/* ==================================================
   Access セクション
   ================================================== */
.access {
    padding: 80px 0;
}

@media screen and (max-width: 768px) {
    .access {
        padding: 40px 0;
    }
}

.access__info {
    display: flex;
    gap: 40px;
    margin-bottom: 80px;
}

@media screen and (max-width: 768px) {
    .access__info {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 50px;
    }
}

.access__map {
    flex: 1 1 50%;
    min-height: 400px;
    background-color: #eee;
}

@media screen and (max-width: 768px) {
    .access__map {
        min-height: 300px;
    }
}

.access__text {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

@media screen and (max-width: 768px) {
    .access__text {
        gap: 20px;
    }
}

.access__block {
    display: flex;
    flex-direction: column;
}

.access__heading {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--color-heading);
    margin-bottom: 10px;
    letter-spacing: 0.1em;
}

.access__desc {
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.access__route {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.95rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.access__route dt {
    font-weight: normal;
    white-space: nowrap;
}

.access__block .btn--dark {
    max-width: none;
    /* 幅いっぱいに広げる場合 */
    width: 100%;
    text-align: center;
    padding: 15px 20px;
    font-size: 0.95rem;
    background-color: #555;
    /* ボタンの少し薄い黒 */
}

/* アイコン類 (仮でCSSで正方形のプレースホルダーとして作成するか、フォントアイコンを想定) */
.access__block .icon-pin,
.access__block .icon-train,
.access__block .icon-car {
    display: inline-block;
    width: 16px;
    height: 16px;
    background-color: var(--color-white);
    mask-size: contain;
    mask-repeat: no-repeat;
    mask-position: center;
    -webkit-mask-size: contain;
    -webkit-mask-repeat: no-repeat;
    -webkit-mask-position: center;
    margin-right: 5px;
    vertical-align: middle;
}

/* グループ施設見出し */
.access__group-title {
    text-align: center;
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--color-heading);
    margin-bottom: 30px;
    letter-spacing: 0.1em;
}

/* ==================================================
   下層ページ共通
   ================================================== */

.lower-hero {
    position: relative;
    width: 100%;
    max-width: 1200px;
    height: 400px;
    margin: 0 auto 60px;

    @media screen and (max-width: 768px) {
        height: 240px;
    }
}

.lower-hero__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    border-radius: 4px;
}

.lower {
    background-color: var(--color-bg);
    padding: 80px 0;
}

.lower-card {
    background-color: var(--color-white);
    border-radius: 8px;
    padding: 60px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);

    @media screen and (max-width: 768px) {
        padding: 30px;
    }
}

.lower-card__top {
    display: flex;
    gap: 50px;
    margin-bottom: 50px;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        gap: 30px;
        margin-bottom: 40px;
    }
}

.lower-card__gallery {
    flex: 1 1 50%;
    max-width: 500px;
}

.lower-card__gallery .js-gallery-main-wrapper {
    margin-bottom: 15px;
}

.lower-card__gallery .js-gallery-main-wrapper img {
    width: 100%;
    height: 330px;
    object-fit: cover;
    border-radius: 4px;

    @media screen and (max-width: 768px) {
        height: 250px;
    }
}

.lower-card__thumbs {
    display: flex;
    gap: 15px;
}

.lower-card__thumbs img {
    width: calc(33.333% - 10px);
    height: 90px;
    object-fit: cover;
    border-radius: 4px;

    @media screen and (max-width: 768px) {
        height: 70px;
    }
}

.lower-card__info {
    flex: 1 1 50%;
    display: flex;
    flex-direction: column;
}

.lower-card__label {
    display: inline-block;
    border: 1px solid #c2a68d;
    color: #c2a68d;
    font-size: 0.8rem;
    font-weight: bold;
    padding: 6px 20px;
    letter-spacing: 0.1em;
    margin-bottom: 25px;
    align-self: flex-start;
}

.lower-card__title {
    color: var(--color-heading);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    line-height: 1.4;
}

.lower-card__desc {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.8;
    margin-bottom: 30px;

    @media screen and (max-width: 768px) {
        margin-bottom: 0;
    }
}

.lower-card__list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.lower-card__list li {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 2;
}

.lower-card__eqpmnt {
    margin-bottom: 30px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;

    @media screen and (max-width: 768px) {
        display: none;
    }

    .lower-card__eqpmnt-title {
        width: 100%;
        font-size: 1.2rem;
        font-weight: bold;
        margin-bottom: 10px;
        border-bottom: 1px solid var(--color-text);
    }

    dl {
        display: flex;
        justify-content: space-between;
        width: 40%;

        dt {
            font-weight: bold;
        }
    }

    p {
        font-size: 1.2rem;
    }
}

.lower-card__btn-wrap {
    margin-top: auto;
    text-align: center;
}

.lower-card__btn-wrap.is-pc {
    display: block;

    @media screen and (max-width: 768px) {
        display: none;
    }
}

.lower-card__btn-wrap.is-sp {
    display: none;
    margin-top: 40px;
    text-align: center;

    @media screen and (max-width: 768px) {
        display: block;
    }
}

.lower-card__point {
    background-color: #f7f5f2;
    border-radius: 8px;
    padding: 40px;
    position: relative;
    margin-top: 50px;

    @media screen and (max-width: 768px) {
        padding: 30px 20px;
        margin-top: 0px;
        border-radius: 0 0 8px 8px;
    }
}

.lower-card__point-header {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: var(--color-main-dark);
    color: var(--color-white);
    padding: 8px 40px;
    border-radius: 30px;
    font-weight: bold;
    letter-spacing: 0.1em;

    @media screen and (max-width: 768px) {
        position: static;
        transform: none;
        display: block;
        text-align: center;
        border-radius: 8px 8px 0 0;
        margin: -30px -20px 30px -20px;
        padding: 12px;
    }
}

.lower-card__point-content {
    display: flex;
    gap: 30px;
    align-items: center;

    @media screen and (max-width: 768px) {
        flex-direction: column;
        text-align: center;
    }
}

.lower-card__point-images {
    display: flex;
    gap: 10px;
    flex: 1 1 50%;
}

.lower-card__point-images img {
    width: calc(50% - 5px);
    border-radius: 4px;
    object-fit: cover;
    height: 160px;

    @media screen and (max-width: 768px) {
        height: 120px;
    }
}

.lower-card__point-info {
    flex: 1 1 50%;
}

.lower-card__point-title {
    color: var(--color-heading);
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 15px;
}

.lower-card__point-desc {
    color: var(--color-text);
    font-size: 0.9rem;
    line-height: 1.6;
}

/* スライダー選択画像 */
.lower-card__gallery [id^="n2-ss-"] .n2-ss-slider-1,
.lower-card__gallery [id^="n2-ss-"] .n2-ss-canvas,
.lower-card__gallery [id^="n2-ss-"] .n2-ss-slide-background {
    border-radius: 4px !important;
    overflow: hidden !important;
    -webkit-mask-image: -webkit-radial-gradient(white, black);
    /* Safari対策 */
}

/* ==================================================
   食事ページ
   ================================================== */
.meal .lower-hero__img {
    object-position: 0% 46%;
}