@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;800;900&family=Shippori+Mincho:wght@400;700;800&display=swap');

:root {
    --bg-main: #F2F0EB;
    --text-main: #3B332E;
    --text-gold-base: #9C8C74;
    --text-sub: #756D63;
    --line-color: #D6D0C5;
    --font-head-en: 'Noto Sans JP', sans-serif;
    --font-head-jp: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
    /* --font-head-jp: 'Noto Sans JP', sans-serif; */
    --font-body: 'Noto Sans JP', sans-serif;
    --font-serif: 'Shippori Mincho', serif;
    --easing: cubic-bezier(0.19, 1, 0.22, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html.lenis {
    height: auto;
}

body {
    background-color: var(--bg-main);
    color: var(--text-main);
    font-family: var(--font-body);
    font-weight: 400;
    overflow-x: hidden;
    opacity: 0;
    transition: opacity 1s ease;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?q=80&w=2074&auto=format&fit=crop');
    background-size: cover;
    background-position: center;
    opacity: 0.08;
    mix-blend-mode: multiply;
    filter: sepia(0.3) contrast(0.8);
    z-index: -2;
    pointer-events: none;
}

body.loaded {
    opacity: 1;
}

html,
body {
    height: 100%;
    margin: 0;
    padding: 0;
}

img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}

a {
    text-decoration: none;
    color: inherit;
    cursor: pointer;
}

li {
    list-style: none;
}

.serif-en {
    font-family: var(--font-head-en);
    letter-spacing: 0.05em;
    color: var(--text-gold-base);
    font-weight: 700;
}

.serif-jp {
    font-family: var(--font-head-jp);
    font-weight: 800;
}

.container {
    width: 85%;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 10;
}

.section-padding {
    padding: 180px 0;
}

.sec-header {
    margin-bottom: 100px;
    padding-left: 5%;
    border-left: 1px solid var(--text-gold-base);
}

.sec-title-en {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 20px;
    color: var(--text-gold-base);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-family: var(--font-head-en);
    font-weight: 700;
}

.sec-title-jp {
    font-size: clamp(2.2rem, 5vw, 3rem);
    line-height: 1.3;
    color: var(--text-main);
    font-family: var(--font-head-jp) !important;
    font-weight: 500 !important;
    letter-spacing: 0.1em;
}

#komorebi-canvas {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: -1;
    pointer-events: none;
    mix-blend-mode: multiply;
    filter: blur(40px);
    opacity: 0.15;
}

/* nav-overlay ------------------------------------------- */

.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 51, 46, 0.98) !important;
    backdrop-filter: blur(10px);
    z-index: 150 !important;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.6s var(--easing);
}

.nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.nav-overlay.active .nav-link {
    transform: translateY(0);
}

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

.nav-item {
    margin: 20px 0;
    overflow: hidden;
}

.nav-link {
    display: block;
    font-size: 3rem;
    font-family: var(--font-head-en);
    font-weight: 700;
    color: #F2F0EB;
    transform: translateY(100%);
    transition: transform 0.8s var(--easing);
}

.nav-link:hover {
    color: var(--text-gold-base);
}

/* header ----------------------------------------------- */

header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 30px 60px;
    z-index: 20;
    display: flex;
    justify-content: space-between;
    align-items: center;
    mix-blend-mode: difference !important;
    color: #ffffff !important;
}

header {
    /* position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important; */
    z-index: 300 !important;
    background: transparent !important;
    mix-blend-mode: difference !important;
}

.logo {
    font-family: var(--font-head-en);
    font-weight: 800;
    font-size: 1.4rem;
    letter-spacing: 0.1em;
    color: #ffffff !important;
    position: relative;
    z-index: 301;
}

.menu-btn {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    position: relative;
    font-family: var(--font-head-en);
    font-weight: 700;
    color: #ffffff !important;
    position: relative;
    z-index: 301;
}

/* hero ------------------------------------------------- */

.hero {
    position: relative;
    overflow: hidden;
    background-color: var(--bg-main);
    z-index: 10;
    width: 100vw !important;
    max-width: 100% !important;
    height: 100dvh !important;
    padding: 0 !important;
    margin: 0 !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
}

@supports (-webkit-touch-callout: none) {
    .hero {
        height: -webkit-fill-available !important;
    }
}

.hero::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom,
            rgba(0, 0, 0, 0.1) 0%,
            rgba(0, 0, 0, 0.2) 50%,
            rgba(0, 0, 0, 0.1) 100%);
    z-index: 2;
    pointer-events: none;
}

. {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.slide1 {
    background-image: url('../img/mv-image06.jpg');
    z-index: 1;
}

.slide2 {
    background-image: url('../img/mv-image05.jpg');
    z-index: 2;
    animation:
        fadeAnimation 12s infinite ease-in-out;
}

@keyframes fadeAnimation {

    0%,
    45% {
        opacity: 0;
    }

    50%,
    95% {
        opacity: 1;
    }

    45%,
    50% {
        opacity: 1;
    }

    95%,
    100% {
        opacity: 0;
    }
}

/*----- hero-content-layer ----- */

.hero-content-layer {
    position: relative !important;
    z-index: 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 100% !important;
    max-width: 100vw !important;
    height: 100%;

    margin: 0 !important;

    color: #fff;
    text-align: center;
    background: rgba(0, 0, 0, 0.1);

    pointer-events: none;

    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/*----- hero-title ----- */

.hero-title {
    font-family: var(--font-head-jp) !important;
    font-weight: 500 !important;
    font-size: clamp(2.2rem, 5.5vw, 4rem) !important;
    letter-spacing: 0.3em !important;
    white-space: nowrap;
    color: #FFFFFF !important;
    -webkit-text-fill-color: #FFFFFF !important;
    background: none !important;
    text-shadow:
        0px 0px 2px rgba(0, 0, 0, 0.2),
        0px 4px 20px rgba(0, 0, 0, 0.3),
        0px 0px 40px rgba(0, 0, 0, 0.1) !important;
}


.sp-only {
    display: none;
}

@media screen and (max-width: 768px) {
    .sp-only {
        display: block;
    }
}

/*----- hero-sub ----- */

.hero-sub {
    font-family: var(--font-head-jp);
    font-weight: 700;
    font-size: clamp(0.85rem, 1.2vw, 1rem) !important;
    letter-spacing: 0.35em !important;
    margin-top: 15px !important;
    margin-bottom: 30px;
    color: #FFFFFF !important;
    opacity: 1 !important;
    text-shadow: 0px 2px 10px rgba(0, 0, 0, 0.4) !important;
}

.hero-date {
    font-family: var(--font-head-en);
    font-size: clamp(1.2rem, 1.8vw, 1.8rem) !important;
    font-weight: 500 !important;
    letter-spacing: 0.5em !important;
    margin-top: 30px !important;
    display: inline-block;
    text-transform: uppercase;
    background: linear-gradient(to right, #ffffff, #D6C6AF, #ffffff) !important;
    -webkit-background-clip: text !important;
    -webkit-text-fill-color: transparent !important;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.5)) !important;
    opacity: 0;
    animation: fadeInUp 1.5s ease 1s forwards;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* --- News ---------------------------------------------- */

.news {
    padding: 120px 0;
    position: relative;
    z-index: 10;
    background: rgba(242, 240, 235, 0.6);
    backdrop-filter: blur(8px);
}

.news-list {
    border-top: 1px solid var(--line-color);
}

.news-item {
    display: block;
    padding: 35px 0;
    border-bottom: 1px solid var(--line-color);
    transition: background 0.4s ease;
}

.news-item:hover {
    background: transparent !important;
}

.news-link {
    display: flex;
    align-items: center;
    width: 100%;
    pointer-events: none;
    cursor: default;
}

.news-meta {
    width: 200px;
    display: flex;
    align-items: center;
    gap: 20px;
    flex-shrink: 0;
}

.news-date {
    font-family: var(--font-head-en);
    font-weight: 700;
    color: var(--text-gold-base);
}

.news-tag {
    font-size: 0.7rem;
    border: 1px solid var(--line-color);
    padding: 5px 15px;
    color: var(--text-sub);
    font-family: var(--font-body);
    font-weight: 700;
}

.news-title {
    flex-grow: 1;
    font-size: 1rem;
    font-family: var(--font-head-jp);
    font-weight: 700;
    color: var(--text-main) !important;
    transition: none;
}

.news-arrow {
    display: none !important;
}

/* --- Concept ------------------------------------------ */

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

.concept .floating-wood {
    display: none !important;
}

.wood-1,
.wood-2 {
    display: none;
}

.concept-inner {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    min-height: 100vh;
}

.concept-img-wrapper {
    width: 50%;
    height: 80vh;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.js-parallax-img {
    width: 100%;
    height: 120%;
    object-fit: cover;
}

.concept-content-wrap {
    width: 40%;
    padding-right: 2%;
    position: relative;
    z-index: 2;
    padding-top: 10vh;
}

.concept-text {
    margin-top: 60px;
    line-height: 2.4;
    color: var(--text-sub);
    text-align: justify;
    font-weight: 400;
}

.concept-text strong {
    color: var(--text-main);
    font-family: var(--font-head-jp);
    font-weight: 800;
    border-bottom: 1px solid var(--text-gold-base);
}

/* h-gallery---------------------------------------------- */

.h-gallery {
    background-image: url('https://images.unsplash.com/photo-1542273917363-3b1817f69a2d?q=80&w=2074&auto=format&fit=crop');
    background-attachment: fixed;
    background-size: cover;
    background-color: #fcfbf7;
    position: relative;
    width: 100%;
    height: auto;
    padding: 120px 0;
    overflow: visible;
}

.h-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(59, 51, 46, 0.92);
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px 50px;
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.gallery-item {
    display: flex;
    flex-direction: column;
}

.g-img-box {
    width: 100%;
    aspect-ratio: 4 / 3;
    background-color: #e0e0e0;
    margin-bottom: 25px;
    overflow: hidden;
    position: relative;
}

.g-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

@media (hover: hover) {
    .g-img-box:hover .g-img {
        transform: scale(1.05);
    }
}

.g-meta {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.g-num {
    font-family: 'Cinzel', serif;
    font-size: 2.5rem;
    color: #d0d0d0;
    line-height: 1;
}

.g-text-wrap {
    padding-top: 6px;
}

.g-name {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 1.1rem;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    color: #fff !important;
}

.g-desc {
    font-size: 0.9rem;
    color: #777;
    margin: 0;
    line-height: 1.7;
    font-family: 'Shippori Mincho', serif;
}

/* features----------------------------------------------- */

.features {
    padding: 150px 0 200px;
    position: relative;
}

.f-accordion {
    display: flex;
    width: 100%;
    height: 60vh;
    overflow: hidden;
    border-top: 1px solid var(--line-color);
    border-bottom: 1px solid var(--line-color);
}

.f-item {
    position: relative;
    flex: 1;
    border-right: 1px solid var(--line-color);
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    cursor: pointer;
    overflow: hidden;
    background: #F2F0EB;
}

.f-item:last-child {
    border-right: none;
}

.f-item:hover {
    flex: 3;
}

.f-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55) grayscale(100%) !important;
    transform: scale(1) !important;
    transition: filter 0.6s ease, transform 1s var(--easing) !important;
}

.f-item:hover .f-bg {
    filter: brightness(1.05) grayscale(0%) !important;
    transform: scale(1.03) !important;
}

.f-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px;
    color: #fff;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(to top, rgba(59, 51, 46, 0.9) 0%, transparent 100%);
    opacity: 0;
    /* transform: translateY(30px); */
    transition: all 0.6s var(--easing);
}

.f-item:hover .f-content {
    transform: translateY(0);
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%) !important;
    opacity: 1 !important;
}


.f-label {
    position: absolute;
    top: 50px;
    left: 50%;
    transform: translateX(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-family: var(--font-head-en);
    font-weight: 700;
    letter-spacing: 0.3em;
    font-size: 0.85rem;
    color: var(--text-main);
    transition: opacity 0.4s;
}

.f-item:hover .f-label {
    opacity: 0;
}

.f-title-en {
    display: block;
    margin-bottom: 15px;

    font-family: var(--font-head-en);
    font-size: 1.5rem !important;
    font-weight: 700 !important;

    letter-spacing: 0.15em !important;

    color: #F2F0EB !important;

    text-shadow:
        0 0 3px rgba(0, 0, 0, 0.9),
        0 2px 10px rgba(0, 0, 0, 0.5) !important;
}

.f-title-jp {
    font-family: var(--font-head-jp);

    font-size: 0.8rem !important;
    font-weight: 700 !important;

    color: #F2F0EB !important;
    opacity: 0.9;

    text-shadow: 0 0 3px rgba(0, 0, 0, 0.8) !important;
}

/* access--------------------------------------------------------------- */

.access {
    padding: 120px 0 140px;
    position: relative;
    z-index: 10;
    background: var(--bg-main);
    color: var(--text-main);
}

.access .container {
    max-width: 1200px;
}

.access .sec-header {
    margin-bottom: 70px;
    padding-left: 0;
    border-left: none;
}

.access .sec-title-en {
    color: var(--text-gold-base);
    margin-bottom: 12px;
}

.access .sec-title-jp {
    color: var(--text-main);
    font-size: clamp(2rem, 4vw, 2.8rem);
    line-height: 1.4;
    position: relative;
}

.access-route-flex {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.access-route-flex .access-route-block {
    flex: 1;
}

.access-route-block:first-of-type .access-route-visual img {
    max-width: 770px;
    max-height: 640px;
}

.access-route-block:last-child {
    margin-bottom: 0;
}

.access-route-visual {
    width: 100%;
    background: transparent;
    border: none;
    overflow: visible;
    display: flex;
    justify-content: center;
    align-items: flex-start;
}

.access-route-visual img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

.access-route-visual-local img {
    width: 100%;
    max-width: 1200px;
    height: auto;
}

.access-route-note {
    margin-top: 28px;
    font-size: 1rem;
    line-height: 2.1;
    color: var(--text-main);
    letter-spacing: 0.03em;
}

.access h2,
.access .sec-title-jp {
    color: var(--text-main);
}

.access-map-embed-block {
    margin-top: 90px;
}

.access-map-embed {
    width: 100%;
    aspect-ratio: 16 / 4;
    overflow: hidden;
    background: #ddd;
}

.access-map-embed iframe {
    display: block;
    width: 100%;
    height: 100%;
    border: 0;
}

.access-map-embed-note {
    max-width: 70%;
    /* ← マップと同じ幅に制限 */
    margin: 36px auto 0;
    /* ← 中央寄せ（これが重要） */
    padding: 0;
    /* 念のためリセット */
}

.access-map-embed-note p+p {
    margin-top: 8px;
}

.access-map-embed-btn-wrap {
    margin-top: 34px;
    display: flex;
    justify-content: center;
}

.access-map-embed-btn {
    min-width: 260px;
    min-height: 72px;
    padding: 0 34px;
    border: 1px solid var(--text-main);
    border-radius: 9999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: transparent;
    color: var(--text-main);
    font-family: var(--font-head-en);
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
}

.access-map-embed-btn:hover {
    background: var(--text-main);
    color: var(--bg-main);
}

.access-map-embed-btn-icon {
    font-size: 1.1rem;
    line-height: 1;
}

/* footer------------------------------------------------ */

footer {
    padding: 120px 0 60px;
    text-align: center;
    border-top: 1px solid var(--line-color);
    position: relative;
    z-index: 10;
}

.footer-msg {
    font-size: clamp(2.5rem, 6vw, 3rem);
    margin-bottom: 80px;
    line-height: 1.4;
    color: var(--text-main);
    font-family: var(--font-head-jp);
    font-weight: 800;
}

.cta-wrapper {
    margin-bottom: 150px;
}

.cta-btn {
    display: inline-block;
    padding: 25px 80px;
    border: 1px solid var(--text-main);
    color: var(--text-main);
    background: transparent;
    font-family: var(--font-head-en);
    font-weight: 700;
    letter-spacing: 0.1em;
    font-size: 0.9rem;
    transition: all 0.6s var(--easing);
    position: relative;
    overflow: hidden;
}

.cta-btn:hover {
    background: var(--text-main);
    color: var(--bg-main);
    box-shadow: 0 0 20px rgba(59, 51, 46, 0.2);
}

.footer-info {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding-top: 80px;
    border-top: 1px solid var(--line-color);
    width: 90%;
    margin: 0 auto;
    color: var(--text-sub);
}

/* banner------------------------------------------------- */

.fixed-reserve-banner {
    position: fixed;
    z-index: 1000;
    transition: transform 0.4s ease, opacity 0.4s ease;
    right: 40px;
    bottom: 40px;
    width: 380px;
    border-radius: 4px;
}

.fixed-reserve-banner:hover {
    transform: translateY(-5px);
}

.reserve-banner-link {
    display: block;
    text-decoration: none;
    background: #2c3e2d;
    color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    overflow: hidden;
    border-radius: 4px;
}

.banner-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 25px;
}

.banner-sub {
    display: block;
    font-size: 10px;
    letter-spacing: 0.1em;
    opacity: 0.8;
    margin-bottom: 2px;
}

.banner-main {
    font-size: 14px;
    margin: 0;
    letter-spacing: 0.05em;
}

.banner-btn {
    background: #b89d6d;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: 'Cinzel', serif;
    font-weight: 600;
    transition: background 0.3s ease;
    padding: 15px 25px;
    border-radius: 2px;
    margin-left: 20px;
}

.banner-btn svg {
    width: 16px;
    height: 16px;
}

.reserve-banner-link::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.18);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
    z-index: 5;
}

.reserve-banner-link:hover::after {
    opacity: 1;
}

/* webgl-canvas ------------------------------------------ */

#webgl-canvas {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw !important;
    height: 100vh !important;
    object-fit: cover;
    z-index: 1;
    will-change: transform;
    transform: translateZ(0);
    backface-visibility: hidden;
}

/* --------------------------------------------------- */
/* --- Mobile Responsive ----------------------------- */
/* -------------------------------------------------- */

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

    /* ===== 共通 ===== */
    html,
    body {
        overflow-x: hidden !important;
        -webkit-overflow-scrolling: touch;
    }

    body {
        padding-bottom: 70px;
    }

    
    /* ===== nav-overlay ===== */
    .nav-link {
    font-size: 1.6rem !important;
    font-weight: 400 !important;
    letter-spacing: 0.15em !important;
    text-transform: uppercase;
    color: #F2F0EB !important;
    opacity: 0.9;
    }

    .nav-item {
        margin: 30px 0 !important;
    }

    /* ===== header ===== */
    header {
        padding: 20px;
    }
    

    /* ===== HERO ===== */
    .hero {
        height: 100vh !important;
        height: 100dvh !important;
        /* height: -webkit-fill-available !important; */
        position: relative !important;
        overflow: hidden !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
    }

    #webgl-canvas {
        position: absolute !important;
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) translateZ(0) !important;
        width: 100% !important;
        height: 110% !important;
        min-height: 110vh !important;
        pointer-events: none !important;
        will-change: transform;
        backface-visibility: hidden !important;
    }

    .hero-content-layer {
        position: relative !important;
        z-index: 5 !important;
        width: 100% !important;
        padding: 0 20px !important;
        transform: none !important;
        pointer-events: none;
        top: auto !important;
    }

    .hero-title {
        font-size: clamp(1.6rem, 8vw, 2.2rem) !important;
        line-height: 1.4 !important;
        letter-spacing: 0.2em !important;
        white-space: normal !important;
        word-break: keep-all !important;
    }

    .hero-date {
        font-size: 1.1rem !important;
        letter-spacing: 0.35em !important;
        margin-top: 20px !important;
        font-weight: 700 !important;
        background: none !important;
        -webkit-text-fill-color: #D6C6AF !important;
        color: #D6C6AF !important;
        text-shadow: 0px 2px 5px rgba(0, 0, 0, 0.8) !important;
    }

    .hero-sub {
        font-size: 0.75rem !important;
        letter-spacing: 0.2em !important;
        text-shadow: 0 0 10px rgba(242, 240, 235, 1) !important;
    }

    /* ===== NEWS ===== */
    .news-link {
        flex-direction: column;
        align-items: flex-start;
    }

    .news-meta {
        width: 100%;
        margin-bottom: 10px;
    }

    /* ===== CONCEPT ===== */
    .concept-inner {
        flex-direction: column;
        padding-top: 50px;
    }

    .concept-img-wrapper {
        width: 100%;
        height: 50vh;
        margin-bottom: 40px;
    }

    .concept-content-wrap {
        width: 100%;
        padding: 0;
    }

    /* ===== H-GALLERY ===== */
    .h-gallery {
        padding: 60px 0;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .g-img-box {
        aspect-ratio: 3 / 2;
    }

    /* ===== FEATURES ===== */
    .f-accordion {
        display: flex;
        flex-direction: column;
        height: auto !important;
    }

    .f-item {
        width: 100% !important;
        height: auto !important;
        aspect-ratio: 16 / 9;
        flex: none !important;
        overflow: hidden;
        border-right: none;
        border-bottom: 1px solid var(--line-color);
    }

    .f-bg {
        position: absolute !important;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center;
        filter: grayscale(0%) brightness(1);
    }

    .f-content {
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
        padding: 20px;
        box-sizing: border-box;
        opacity: 1 !important;
        background: linear-gradient(transparent, rgba(0, 0, 0, 0.6));
        z-index: 2;
    }

    .f-content h3.f-title-en {
        font-size: 1.3rem !important;
        margin-bottom: 0;
        margin-top: 10px;
        line-height: 1.2;
    }

    .f-content p.f-title-jp {
        margin-top: 2px;
    }

    .f-label {
        display: none;
    }

    /* ===== ACCESS ===== */
    .access {
        padding: 90px 0 110px;
    }

    .access .sec-header {
        margin-bottom: 50px;
    }

    .access-route-block {
        margin-bottom: 80px;
    }

    .access-route-flex {
        flex-direction: column;
        gap: 40px;
    }

    .access-route-block:first-of-type .access-route-visual img {
        width: 90%;
        max-width: 420px;
        margin: 0 auto;
        display: block;
    }

    .access-route-visual-local img {
        width: 100%;
        max-width: 100%;
    }

    .access-route-note {
        margin-top: 20px;
        font-size: 0.95rem;
        line-height: 1.95;
    }

    .access-map-embed-block {
        margin-top: 60px;
    }

    .access-map-embed {
        aspect-ratio: 16 / 8;
    }

    .access-map-embed-note {
        margin-top: 24px;
        font-size: 0.95rem;
        line-height: 1.95;
    }

    .access-map-embed-btn-wrap {
        margin-top: 26px;
    }

    .access-map-embed-btn {
        min-width: 220px;
        min-height: 60px;
        padding: 0 24px;
        font-size: 0.98rem;
    }

    /* ===== CTA ===== */
    .cta-wrapper {
        margin-bottom: 100px;
    }

    /* ===== FOOTER ===== */
    .footer-info {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        text-align: center;
    }

    /* ===== バナー ===== */
    .fixed-reserve-banner {
        left: 0;
        bottom: 0;
        width: 100%;
    }

    .banner-inner {
        padding: 12px 20px;
    }

    .banner-text {
        flex: 1;
        width: 40%;
    }

    .banner-main {
        font-size: 12px;
    }

    .banner-btn {
        padding: 12px 20px;
        font-size: 13px;
        width: 60%;
    }    
}