:root {
    --red28: rgb(213, 46, 49);
    --deep-sea: rgb(0, 66, 99);
    --grax-green: rgb(0, 102, 75);
    --leisure-yellow: rgb(194, 104, 0);
    --base-light: rgb(241, 233, 201);
    --base-dark: rgb(30, 28, 28);
    --base-black: rgb(30, 28, 28);
    --base-brown: rgb(171, 147, 122);
    --text-gray: rgb(80, 80, 80);

    --font-jp: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    --font-serif: "Noto Sans JP", "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", serif;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-jp);
    color: var(--base-dark);
    line-height: 1.8;
    background: #fff;
    overflow-x: hidden;
    max-width: 100vw;
    width: 100%;
    position: relative;
}

a {
    text-decoration: none;
}

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

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 2rem 3rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.header.scrolled {
    background: var(--base-dark);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding: 1.5rem 3rem;
}

.hamburger {
    background: none;
    border: none;
    cursor: pointer;
    padding: 0;
    width: 30px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.hamburger:hover span {
    background: rgba(255, 255, 255, 0.7);
}

.header-nav {
    display: flex;
    gap: 2.5rem;
    align-items: center;
    margin-left: auto;
    margin-right: 2rem;
}

.header-nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.3rem 0;
}

.header-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: white;
    transition: width 0.3s ease;
}

.header-nav-link:hover {
    opacity: 0.8;
}

.header-nav-link:hover::after {
    width: 100%;
}

.header-reserve {
    background: transparent;
    color: white;
    text-decoration: none;
    padding: 0.5rem 1.8rem;
    font-weight: 500;
    font-size: 0.8rem;
    transition: all 0.3s ease;
    white-space: nowrap;
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 30px;
    letter-spacing: 0.1em;
}

.header-reserve:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: white;
}

.side-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 1002;
    pointer-events: none;
}

.side-menu.open {
    pointer-events: auto;
}

.side-menu-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    transition: background 0.4s ease;
}

.side-menu.open .side-menu-overlay {
    background: rgba(0, 0, 0, 0.5);
}

.side-menu-panel {
    position: absolute;
    top: 0;
    left: -400px;
    width: 400px;
    height: 100vh;
    background: var(--base-dark);
    transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
}

.side-menu.open .side-menu-panel {
    left: 0;
}

.side-menu-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    transition: transform 0.3s ease;
    font-size: 2rem;
    font-weight: 300;
    display: flex;
    align-items: center;
    justify-content: center;
}

.side-menu-close::before,
.side-menu-close::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: white;
    transition: all 0.3s ease;
}

.side-menu-close::before {
    transform: rotate(45deg);
}

.side-menu-close::after {
    transform: rotate(-45deg);
}

.side-menu-close:hover::before,
.side-menu-close:hover::after {
    width: 28px;
    background: rgba(255, 255, 255, 0.7);
}

.side-menu-close:hover {
    transform: rotate(90deg);
}

.side-menu-content {
    padding: 5rem 3rem 3rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.side-menu-section {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 1.5rem;
}

.side-menu-section:last-child {
    border-bottom: none;
}

.side-menu-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.side-menu-title:hover {
    opacity: 0.7;
}

.side-menu-heading {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    margin-bottom: 0.3rem;
}

.side-menu-section a {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    padding-left: 0.5rem;
}

.side-menu-section a:hover {
    color: white;
    padding-left: 1rem;
}

.side-menu-section p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 0.5rem;
}

.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    animation: heroImageFade 0.8s ease-out 0.3s forwards, heroZoom 12s ease-in-out 1.1s infinite alternate;
}

@keyframes heroImageFade {
    to {
        opacity: 1;
    }
}

@keyframes heroZoom {
    0% {
        transform: scale(1);
    }
    100% {
        transform: scale(1.15);
    }
}


.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    width: 100%;
}

.hero-logo {
    width: 700px;
    max-width: 85vw;
    margin: 0 auto;
    opacity: 0;
    animation: logoAppear 1s cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s forwards;
}

.hero-date {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 3rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1s forwards;
}

.hero-notice {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 400;
    letter-spacing: 0.08em;
    margin-top: 1rem;
    opacity: 0;
    animation: fadeInUp 1s ease-out 1.3s forwards;
}

@keyframes logoAppear {
    0% {
        opacity: 0;
        transform: scale(0.5) translateY(50px);
    }
    100% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.concept-bold {
    padding: 12rem 2rem;
    text-align: center;
    background: var(--base-light);
    position: relative;
    overflow: hidden;
}

.concept-bold::before {
    display: none;
}


.concept-bold h2 {
    position: relative;
    z-index: 1;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.3;
    color: #DC5547;
    margin: auto;
    font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
    font-feature-settings: "palt";
}

@media (min-width: 1200px) {
    .concept-bold h2 {
        font-size: clamp(3.5rem, 7vw, 6rem);
    }
}

.concept-bold h2 br {
    display: block;
}

.concept-bold h2 {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1.5s cubic-bezier(0.34, 1.56, 0.64, 1), transform 1.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.concept-bold h2.animate {
    opacity: 1;
    transform: translateY(0);
    animation: conceptFloat 4s ease-in-out 1.5s infinite;
}

@keyframes conceptFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-15px);
    }
}

.section-connector {
    width: calc(100% + 2px);
    height: 200px;
    display: block;
    margin: -50px 0 -50px -1px;
    position: relative;
    z-index: 1;
}

.connector-path {
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
    opacity: 1;
}

.connector-path.animate {
    animation: drawLine 5.2s ease-out forwards, pathFlow 10.4s ease-in-out 5.2s infinite;
}

@keyframes drawLine {
    to {
        stroke-dashoffset: 0;
    }
}

@keyframes pathFlow {
    0%, 100% { 
        transform: translateY(0);
    }
    50% { 
        transform: translateY(-3px);
    }
}


.connector-particle {
    opacity: 0;
}

.connector-particle.animate {
    opacity: 1;
}

.room-gallery {
    background: white;
    padding: 8rem 2rem;
}

.room-gallery-content {
    max-width: 1400px;
    margin: 0 auto;
}

.room-gallery-text {
    text-align: center;
    margin-bottom: 4rem;
}

.room-gallery-text h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #DC5547;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(-30px);
    transition: all 0.8s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.room-gallery-text h3.animate {
    opacity: 1;
    transform: translateY(0);
}

.room-gallery-text p {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 2.2;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
    color: var(--text-gray);
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease 0.3s;
}

.room-gallery-text h3.animate ~ p {
    opacity: 1;
    transform: translateY(0);
}

.facility-info {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
}

.room-info {
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.info-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    text-align: center;
}

.info-time {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: #DC5547;
    font-weight: 700;
    letter-spacing: 0.02em;
    line-height: 1;
}

.info-desc {
    font-family: var(--font-serif);
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: rgba(80, 80, 80, 0.35);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.price-item .info-time {
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
}


/*ルーム画像配置更新前
.room-gallery-images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: start;
}*/

/*ルーム画像配置*/
.room-gallery-images {
    display: grid;
    grid-template-columns: 2fr 1fr; /* 左大きく / 右小さく */
    grid-template-rows: 1fr 1fr;    /* 右を上下に2つ並べる */
    gap: 2rem;
    align-items: start;
}

/* 左側：大きい画像は縦に2段ぶち抜き */
.room-image-large {
    grid-column: 1;
    grid-row: 1 / span 2; /* ←ここで全高さを占有 */
}

/* 右側：小さい画像2枚を上段・下段に配置 */
.room-image-small:nth-of-type(2) {
    grid-column: 2;
    grid-row: 1; /* 上段 */
}

.room-image-small:nth-of-type(3) {
    grid-column: 2;
    grid-row: 2; /* 下段 */
}



/* ===== TABLET STYLES (769px - 1199px) ===== */
@media (min-width: 769px) and (max-width: 1199px) {
    /* Keep initial rotation, remove hover animation (no hover on touch devices) */
    .room-gallery:hover .room-image-large {
        transform: rotate(-1deg) !important;
    }
    
    .room-gallery:hover .room-image-small {
        transform: rotate(2deg) translateY(3rem) !important;
    }
}


.room-image-large,
.room-image-small {
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transition: all 0.5s ease;
    position: relative;
}

.room-label {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    color: white;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    padding: 0.8rem 1.5rem;
    border-radius: 6px;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
    z-index: 2;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.room-title {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.room-details {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 400;
    letter-spacing: 0.05em;
    opacity: 0.9;
}

.room-capacity-label {
    font-size: clamp(0.75rem, 1.2vw, 0.9rem);
    font-weight: 500;
    opacity: 0.9;
}

.room-image-large:hover .room-label {
    background: rgba(220, 192, 98, 0.95);
    transform: translateX(5px);
}

.room-image-small:hover .room-label {
    background: #596D74;
    transform: translateX(5px);
}


.room-image-large {
    transform: rotate(-1deg);
}

.room-image-small {
    transform: rotate(2deg) translateY(3rem);
}

.room-gallery:hover .room-image-large {
    transform: rotate(0deg) scale(1.02);
}

.room-gallery:hover .room-image-small {
    transform: rotate(0deg) translateY(3rem) scale(1.02);
}

.room-image-large img,
.room-image-small img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    transition: transform 3s ease-in-out;
}

.room-image-large img {
    animation: zoomInOut 8s ease-in-out infinite;
}

.room-image-small img {
    animation: zoomOutIn 8s ease-in-out infinite;
}

@keyframes zoomInOut {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes zoomOutIn {
    0%, 100% { transform: scale(1.05); }
    50% { transform: scale(1); }
}

.diagonal-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: white;
    clip-path: polygon(0 5%, 100% 0, 100% 95%, 0 100%);
    margin: -5vh 0;
}

.diagonal-section.reverse {
    background: var(--base-light);
}


.diagonal-content {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 8rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.diagonal-section.reverse .diagonal-content {
    direction: rtl;
}

.diagonal-section.reverse .diagonal-text {
    direction: ltr;
}

/* GAME section: Right-aligned text on desktop */
@media (min-width: 1200px) {
    .diagonal-section.reverse .diagonal-text {
        padding: 2rem 8rem 2rem 2rem;
        text-align: right;
    }

    .diagonal-section.reverse .diagonal-text h3 {
        text-align: right;
    }

    .diagonal-section.reverse .diagonal-text p {
        text-align: right;
    }
}

.diagonal-image {
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2);
    transform: rotate(-2deg) scale(0.5) rotateY(90deg);
    opacity: 0;
    transition: all 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-style: preserve-3d;
    perspective: 1000px;
}

.diagonal-image.animate {
    transform: rotate(-2deg) scale(1) rotateY(0deg);
    opacity: 1;
}

.diagonal-section:hover .diagonal-image {
    transform: rotate(0deg) scale(1.02) rotateY(0deg);
}

.diagonal-image img {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    animation: subtleZoom 10s ease-in-out infinite;
}


@keyframes subtleZoom {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.08); }
}

.diagonal-text {
    padding: 2rem;
}

.diagonal-text h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #DC5547;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px) scale(0.95);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.diagonal-text h3.animate {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.diagonal-text p {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 2.2;
    font-weight: 400;
    color: var(--text-gray);
}

#meeting .diagonal-text p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.diagonal-text .facility-info {
    margin-top: 2.5rem;
}

/* Desktop only: Left align facility info */
@media (min-width: 769px) {
    .diagonal-text .facility-info {
        justify-content: flex-start;
    }

    .diagonal-text .info-item {
        align-items: flex-start;
        text-align: left;
    }

    /* LOUNGE section: Only move "LOUNGE" left, everything else stays aligned */
    .diagonal-section:not(.reverse) .diagonal-text h3 {
        margin-left: -0.15em;
    }

    .diagonal-section:not(.reverse) .diagonal-text h3 .section-subtitle {
        margin-left: 0.15em;
    }

    .diagonal-section:not(.reverse) .diagonal-text p {
        margin-left: -0.3em;
    }
}

/* GAME section: Only move "GAME" right on desktop, everything else stays aligned */
@media (min-width: 1200px) {
    .diagonal-section.reverse .diagonal-text h3 {
        margin-right: -0.05em;
    }

    .diagonal-section.reverse .diagonal-text h3 .section-subtitle {
        margin-right: 0.05em;
    }

    .diagonal-section.reverse .diagonal-text p {
        margin-right: -0.3em;
    }

    .diagonal-section.reverse .diagonal-text .facility-info {
        justify-content: flex-end;
    }

    .diagonal-section.reverse .diagonal-text .info-item {
        align-items: flex-end;
        text-align: right;
    }
}

.color-block {
    padding: 10rem 2rem;
    text-align: center;
    position: relative;
}

.color-block.green {
    background: linear-gradient(135deg, var(--grax-green) 0%, var(--deep-sea) 100%);
    color: white;
}


.color-block h3 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.15em;
    margin-bottom: 3rem;
}

.color-block p {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    line-height: 2.4;
    max-width: 900px;
    margin: 0 auto;
    font-weight: 400;
}


.final-cta {
    padding: 10rem 2rem 5rem 2rem;
    text-align: center;
    background: #DC5547;
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
}

.final-cta-logo {
    width: 350px;
    max-width: 60vw;
    animation: logoFloat 3s ease-in-out infinite;
}

@keyframes logoFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

.final-cta-catchphrase {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.5vw, 1.6rem);
    line-height: 1.6;
    font-weight: 500;
    max-width: 800px;
    letter-spacing: 0.05em;
    margin-top: 0;
}

.final-cta-button {
    display: inline-block;
    background: white;
    color: #DC5547;
    padding: 1.2rem 3.5rem;
    border-radius: 50px;
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    margin-top: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.final-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
}

.final-cta-contact {
    margin-top: 1.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}

.final-cta-tel-label {
    font-size: clamp(0.85rem, 1.5vw, 1rem);
    opacity: 0.9;
    letter-spacing: 0.08em;
}

.final-cta-tel {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 700;
    letter-spacing: 0.1em;
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.final-cta-tel:hover {
    opacity: 0.8;
}

.final-cta-hours {
    font-size: clamp(0.8rem, 1.5vw, 0.95rem);
    opacity: 0.8;
    letter-spacing: 0.05em;
}

.access {
    width: 100%;
}

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

.common-width-m,
.common-width-b {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

footer {
    background-color: var(--base-dark);
    padding: 100px 0 14px 0;
    font-family: var(--font-serif);
    font-weight: 400;
}

small {
    font-size: 14px;
    color: white;
}

small p {
    text-align: center;
}

.footer-top {
    display: flex;
    justify-content: space-between;
}

.footer-top > div {
    padding: 0 30px;
    border-right: 1px solid white;
    border-left: 1px solid white;
}

.footer-top > div:nth-child(1) {
    padding: 0 30px 0 0;
    border: none;
}

.footer-top > div:nth-child(3) {
    border-left: none;
}

.footer-top > div:nth-child(4) {
    padding: 0 0 0 30px;
    border: none;
}

.footer-top p {
    color: white;
}

.footer-top a {
    color: white;
}

.f-title {
    font-size: 20px;
    font-weight: 500;
}

.footer-top-column {
    display: flex;
    flex-direction: column;
    gap: 7px;
}

.footer-top-column p {
    font-size: 17px;
    margin-bottom: 2px;
    font-weight: 500;
}

.footer-top-column a p {
    color: white;
    transition: opacity 0.3s ease;
}

.footer-top-column a:hover p {
    opacity: 0.7;
}

.footer-top-column a {
    font-size: 15px;
    font-weight: 400;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-top-column a:hover {
    opacity: 0.7;
}

.ft-flex {
    display: flex;
    gap: 25px;
}

.ft-flex-title {
    font-size: 20px;
    font-weight: 500;
}

.ft-flex-column {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.footer-bottom {
    border-top: 1px solid white;
    margin-top: 100px;
    margin-bottom: 40px;
    padding: 40px 0 0 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.fb-line {
    height: 120px;
    width: 1px;
    background-color: white;
}

.footer-bottom a {
    color: white;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.footer-bottom a:hover {
    opacity: 0.7;
}

.footer-bottom p {
    color: white;
}

.fb-tel-title {
    font-size: 22px;
    font-weight: 500;
}

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

.fb-tel a {
    font-size: 26px;
    font-weight: 500;
    text-decoration: none;
}

.fb-tel a span {
    font-size: 20px;
}

.fb-tel-info {
    font-size: 14px;
}

.fb-l-title {
    font-size: 22px;
    font-weight: 500;
}

.fb-plan div {
    display: flex;
    flex-direction: column;
    text-align: center;
}

.fb-plan p {
    font-size: 22px;
    font-weight: 500;
}

.fb-plan div a {
    display: flex;
    text-align: center;
    gap: 10px;
    font-size: 16px;
}

.fb-l-title {
    font-size: 22px;
    font-weight: 500;
}

/* ===== MEETING ROOM SECTION ===== */
#meeting .diagonal-text h3 {
    line-height: 0.9;
    margin-bottom: 1rem;
}

#meeting .diagonal-text h3 .section-subtitle {
    margin-top: 0.8rem;
    line-height: 1;
    display: block;
}

.meeting-slider {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

.meeting-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
    display: block;
}

.meeting-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.meeting-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.meeting-slide:first-child img {
    filter: sepia(0.3) saturate(1.2) hue-rotate(180deg) brightness(0.95);
}

.meeting-slider-indicators {
    position: absolute;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 0.5rem;
    z-index: 10;
}

.meeting-slider-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.meeting-slider-dot.active {
    background: white;
    width: 28px;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.meeting-info-list {
    margin-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.meeting-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.meeting-info-row {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.meeting-room-label {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: var(--base-dark);
}

.meeting-capacity-text {
    font-family: var(--font-serif);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-gray);
    font-weight: 500;
}

.meeting-price-row {
    display: flex;
    align-items: baseline;
    gap: 0.3rem;
}

.meeting-price-value {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    font-weight: 700;
    color: #DC5547;
}

.meeting-price-unit {
    font-family: var(--font-serif);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-gray);
    font-weight: 500;
}

/* ===== PRICING SECTION ===== */
.pricing-section-center {
    background: white;
    padding: 6rem 2rem 8rem 2rem;
    text-align: center;
}

@keyframes titleBounce {
    0% {
        opacity: 0;
        transform: translateY(-50px) scale(0.8);
    }
    50% {
        transform: translateY(10px) scale(1.05);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes subtitleSlide {
    0% {
        opacity: 0;
        transform: translateX(-30px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes textFadeIn {
    0% {
        opacity: 0;
        filter: blur(10px);
    }
    100% {
        opacity: 1;
        filter: blur(0);
    }
}

.pricing-section-center h2 {
    opacity: 0;
}

.pricing-section-center.animate h2 {
    animation: titleBounce 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

.pricing-section-center .pricing-subtitle {
    opacity: 0;
}

.pricing-section-center.animate .pricing-subtitle {
    animation: subtitleSlide 0.7s ease forwards 0.2s;
}

.pricing-section-center .pricing-info-text {
    opacity: 0;
}

.pricing-section-center.animate .pricing-info-text {
    animation: textFadeIn 0.8s ease forwards 0.4s;
}

.pricing-center-content {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    min-height: 720px;
}

.pricing-center-content h2 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.08em;
    color: #DC5547;
    margin-bottom: 0.5rem;
    line-height: 1;
}

.pricing-subtitle {
    font-size: clamp(1.2rem, 2vw, 1.4rem);
    font-weight: 700;
    color: var(--base-dark);
    margin-bottom: 2rem;
}

.pricing-info-text {
    font-family: var(--font-serif);
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    line-height: 2.2;
    font-weight: 400;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    text-align: center;
}

.check-time-mobile {
    display: none;
}

.room-specs-mobile {
    display: none;
}

.pricing-plans-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

@keyframes cardFlipIn {
    0% {
        opacity: 0;
        transform: perspective(1000px) rotateY(-90deg) translateY(50px);
    }
    50% {
        transform: perspective(1000px) rotateY(10deg) translateY(0);
    }
    100% {
        opacity: 1;
        transform: perspective(1000px) rotateY(0deg) translateY(0);
    }
}

.plan-card {
    background: linear-gradient(135deg, rgba(245, 235, 220, 1) 0%, rgba(245, 235, 220, 1) 100%);
    padding: 3rem 2.5rem;
    border-radius: 16px;
    text-align: left;
    opacity: 0;
    transform-style: preserve-3d;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
}

.pricing-section-center.animate .plan-card:hover {
    transform: perspective(1000px) rotateY(0deg) translateY(-10px) scale(1.02);
    background: linear-gradient(135deg, rgba(245, 235, 220, 1) 0%, rgba(235, 220, 200, 1) 100%);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-section-center.animate .plan-card:nth-child(1) {
    animation: cardFlipIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.6s;
}

.pricing-section-center.animate .plan-card:nth-child(2) {
    animation: cardFlipIn 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.75s;
}

.plan-card h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    font-weight: 700;
    color: var(--base-dark);
    margin-bottom: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.plan-badge-small {
    font-size: clamp(0.7rem, 1.3vw, 0.75rem);
    font-weight: 500;
    color: #DC5547;
    background: rgba(220, 85, 71, 0.1);
    padding: 0.3rem 0.8rem;
    border-radius: 4px;
    display: inline-block;
    width: fit-content;
}

.plan-prices {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.price-item-compact {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.price-item-compact:last-child {
    border-bottom: none;
}

.room-type-compact {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--base-dark);
}

.price-compact {
    font-family: var(--font-serif);
    font-size: clamp(1.2rem, 2.2vw, 1.4rem);
    font-weight: 700;
    color: #DC5547;
}

.plan-option-note {
    font-family: var(--font-serif);
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    color: var(--text-gray);
    margin-top: 1rem;
    text-align: center;
    font-weight: 500;
}

.room-detail-card {
    background: white;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-section-center.animate .room-detail-card {
    opacity: 1;
    transform: translateY(0);
}

.pricing-section-center.animate .room-detail-card:nth-child(1) {
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
}

.pricing-section-center.animate .room-detail-card:nth-child(2) {
    transition: opacity 0.6s ease 0.35s, transform 0.6s ease 0.35s;
}

.pricing-section-center.animate .room-detail-card:nth-child(3) {
    transition: opacity 0.6s ease 0.5s, transform 0.6s ease 0.5s;
}

.room-detail-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.room-title-header {
    font-family: var(--font-serif);
    font-size: clamp(1.3rem, 2vw, 1.5rem);
    font-weight: 700;
    color: var(--base-dark);
    margin-bottom: 1rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid rgba(220, 85, 71, 0.2);
}

.room-specs-text {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 0;
}

.room-price-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-top: 1.2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.room-nights {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 1.4vw, 0.95rem);
    color: var(--text-gray);
}

.room-price {
    font-family: var(--font-serif);
    font-size: clamp(1.4rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: #DC5547;
}

.pricing-option-note {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--text-gray);
    text-align: center;
    margin-bottom: 1.5rem;
    font-weight: 500;
}

/* Benefits Section */
.benefits-section {
    margin-top: 2.5rem;
    margin-bottom: 1.5rem;
    display: flex;
    justify-content: center;
}

.benefit-card {
    background: white;
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 3px solid #DC5547;
    max-width: 900px;
    width: 100%;
    opacity: 0;
    transform: translateY(50px) translateX(-30px) rotate(-5deg) scale(0.9);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.pricing-section-center.animate .benefit-card {
    animation: benefitPopDiagonal 0.9s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 0.3s;
}

@keyframes benefitPopDiagonal {
    0% {
        opacity: 0;
        transform: translateY(50px) translateX(-30px) rotate(-5deg) scale(0.9);
    }
    60% {
        opacity: 1;
        transform: translateY(-10px) translateX(5px) rotate(2deg) scale(1.03);
    }
    80% {
        transform: translateY(3px) translateX(-2px) rotate(-1deg) scale(0.99);
    }
    100% {
        opacity: 1;
        transform: translateY(0) translateX(0) rotate(0deg) scale(1);
    }
}

.benefit-card:hover {
    transform: translateY(-5px);
    border-color: #c94638;
}

.benefit-card-title {
    font-family: var(--font-serif);
    font-size: clamp(1rem, 2vw, 1.2rem);
    font-weight: 700;
    text-align: center;
    margin-bottom: 1rem;
    color: #DC5547;
    letter-spacing: 0.05em;
}

.benefit-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 0.5rem;
}

.benefit-item {
    font-family: var(--font-serif);
    font-size: clamp(0.8rem, 1.5vw, 0.9rem);
    color: var(--text-dark);
    line-height: 1.5;
    padding: 0.4rem 0.6rem;
    padding-left: 1.3rem;
    position: relative;
    border-radius: 6px;
    transition: all 0.3s ease;
    text-align: left;
}

.benefit-item::before {
    content: '✓';
    position: absolute;
    left: 0.2rem;
    top: 0.4rem;
    color: #DC5547;
    font-weight: 700;
    font-size: 1rem;
}

.benefit-item:hover {
    background: rgba(220, 85, 71, 0.05);
    transform: translateX(5px);
}

.benefit-br {
    display: none;
}

.pricing-cta-button {
    display: inline-block;
    background: #DC5547;
    color: white;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-size: clamp(1rem, 1.8vw, 1.2rem);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(220, 85, 71, 0.3);
    text-align: center;
    letter-spacing: 0.05em;
    margin-top: 2rem;
}

.pricing-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 85, 71, 0.4);
    background: #c94638;
}

.pricing-note-center {
    font-family: var(--font-serif);
    font-size: clamp(0.75rem, 1.4vw, 0.85rem);
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 3rem;
}

.onsen-images-grid {
    position: absolute;
    width: 65%;
    height: 400px;
    top: 520px;
    right: 0;
    z-index: 3;
}

@keyframes photoPopRight {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(2deg);
    }
    60% {
        transform: scale(1.08) rotate(2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(2deg);
    }
}

@keyframes photoPopLeft {
    0% {
        opacity: 0;
        transform: scale(0.3) rotate(-2deg);
    }
    60% {
        transform: scale(1.08) rotate(-2deg);
    }
    100% {
        opacity: 1;
        transform: scale(1) rotate(-2deg);
    }
}

@keyframes photoFloat {
    0%, 100% {
        transform: translateY(0) rotate(2deg);
    }
    50% {
        transform: translateY(-10px) rotate(2deg);
    }
}

@keyframes photoFloatLeft {
    0%, 100% {
        transform: translateY(0) rotate(-2deg);
    }
    50% {
        transform: translateY(-10px) rotate(-2deg);
    }
}

.cascade-photo {
    position: absolute;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    opacity: 0;
    transition: all 0.5s ease;
}

.cascade-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cascade-photo:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.25);
}

/* Photo 1 - 右側 */
.cascade-photo-1 {
    width: 45%;
    height: 280px;
    right: 0;
    bottom: 0;
    opacity: 0;
    transform: rotate(2deg);
}

.pricing-section-center.animate .cascade-photo-1 {
    animation: photoPopRight 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 1.8s,
               photoFloat 3s ease-in-out 2.4s infinite;
}

/* Photo 2 - 左側 */
.cascade-photo-2 {
    width: 45%;
    height: 280px;
    left: 0;
    bottom: 0;
    opacity: 0;
    transform: rotate(-2deg);
}

.pricing-section-center.animate .cascade-photo-2 {
    animation: photoPopLeft 0.6s cubic-bezier(0.34, 1.56, 0.64, 1) forwards 2.0s,
               photoFloatLeft 3s ease-in-out 2.6s infinite;
}

/* Old pricing section styles - keeping for reference but can be removed */
.pricing-section-old {
    background: var(--base-light);
    padding: 8rem 2rem;
}

.pricing-content h2 {
    font-size: clamp(3rem, 6vw, 5rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    color: #DC5547;
    margin-bottom: 3rem;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.pricing-content h2.animate {
    opacity: 1;
    transform: translateY(0);
}

.pricing-info-cards {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.info-card {
    background: white;
    padding: 1.5rem 2.5rem;
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.info-card.animate {
    opacity: 1;
    transform: translateY(0);
}

.info-card:nth-child(2).animate {
    transition-delay: 0.1s;
}

.info-card:nth-child(3).animate {
    transition-delay: 0.2s;
}

.info-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(220, 85, 71, 0.12);
}

.info-label {
    font-size: clamp(0.75rem, 1.5vw, 0.85rem);
    color: rgba(80, 80, 80, 0.5);
    letter-spacing: 0.08em;
}

.info-value {
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    font-weight: 700;
    color: #DC5547;
    letter-spacing: 0.05em;
}

.pricing-tables-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-bottom: 3rem;
}

.pricing-table-container {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(30px);
}

.pricing-table-container.animate {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 1s ease, transform 1s ease;
}

.pricing-table-container:nth-child(2).animate {
    transition-delay: 0.2s;
}

.pricing-table-container:hover {
    box-shadow: 0 12px 40px rgba(220, 85, 71, 0.15);
    transform: translateY(-4px);
}

.plan-title-bar {
    background: linear-gradient(135deg, #DC5547 0%, #c94638 100%);
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.plan-title-bar h3 {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 2.5vw, 1.8rem);
    font-weight: 700;
    color: white;
    margin: 0;
}

.plan-badge-mini {
    font-size: clamp(0.75rem, 1.3vw, 0.85rem);
    color: white;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    letter-spacing: 0.05em;
}

.breakfast-highlight {
    background: linear-gradient(135deg, rgba(220, 85, 71, 0.08) 0%, rgba(220, 85, 71, 0.03) 100%);
    padding: 1rem 2rem;
    border-bottom: 1px solid rgba(220, 85, 71, 0.1);
}

.breakfast-highlight p {
    font-family: var(--font-serif);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    font-weight: 600;
    color: #DC5547;
    margin: 0;
    text-align: center;
}

.pricing-table-compact {
    width: 100%;
    border-collapse: collapse;
}

.pricing-table-compact thead th {
    font-family: var(--font-serif);
    font-size: clamp(0.8rem, 1.4vw, 0.9rem);
    font-weight: 600;
    color: rgba(80, 80, 80, 0.6);
    padding: 1.2rem 1.5rem;
    text-align: left;
    background: rgba(220, 85, 71, 0.03);
    border-bottom: 2px solid rgba(220, 85, 71, 0.1);
}

.pricing-table-compact thead th:nth-child(2),
.pricing-table-compact thead th:nth-child(3) {
    text-align: center;
}

.pricing-table-compact tbody tr {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: background 0.2s ease;
}

.pricing-table-compact tbody tr:hover {
    background: rgba(220, 85, 71, 0.02);
}

.pricing-table-compact tbody tr:last-child {
    border-bottom: none;
}

.pricing-table-compact td {
    font-family: var(--font-serif);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    padding: 1.3rem 1.5rem;
    color: var(--base-dark);
}

.pricing-table-compact td:nth-child(2) {
    text-align: center;
    color: var(--text-gray);
    font-weight: 500;
}

.price-cell {
    text-align: center;
    font-weight: 700;
    color: #DC5547;
    font-size: clamp(1.1rem, 2vw, 1.3rem) !important;
    letter-spacing: 0.02em;
}

.contact-cell {
    text-align: center;
    color: var(--text-gray);
    font-weight: 600;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem) !important;
}

.onsen-info {
    background: white;
    padding: 2rem 2.5rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border-left: 4px solid #DC5547;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.onsen-info h4 {
    font-family: var(--font-serif);
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    font-weight: 700;
    color: #DC5547;
    margin-bottom: 0.8rem;
}

.onsen-info p {
    font-family: var(--font-serif);
    font-size: clamp(0.9rem, 1.6vw, 1rem);
    color: var(--text-gray);
    line-height: 1.8;
    margin: 0;
}

.pricing-notes-compact {
    text-align: center;
    padding: 1.5rem;
    background: rgba(220, 85, 71, 0.05);
    border-radius: 10px;
}

.pricing-notes-compact p {
    font-family: var(--font-serif);
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    color: var(--text-gray);
    font-weight: 600;
    margin: 0;
}

/* ===== MEETING ROOM SECTION (Updated with Images) ===== */
.meeting-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.meeting-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.meeting-images picture {
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.meeting-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 4/3;
    transition: transform 0.6s ease;
}

.meeting-images picture:hover img {
    transform: scale(1.05);
}

/* ===== FINAL CTA with diagonal clip-path ===== */
.final-cta {
    clip-path: polygon(0 3%, 100% 0, 100% 100%, 0 100%);
    margin-top: -3vh;
}

/* ===== SECTION SUBTITLE (Japanese name under English title) ===== */
.section-subtitle {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: var(--base-dark);
    letter-spacing: 0.05em;
    margin-top: -0.8rem;
    text-transform: none;
    line-height: 1;
}

.room-gallery-text h3 .section-subtitle {
    color: var(--base-dark);
}

.diagonal-text h3 .section-subtitle {
    color: var(--base-dark);
}

.meeting-content h2 .section-subtitle {
    color: var(--base-dark);
}
/* ===== ONSEN GALLERY SECTION ===== */
.onsen-gallery {
    background-color: #fff;
    padding: 4rem 0 4rem 0;
    overflow: hidden;
    position: relative;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
}

.onsen-gallery.animate {
    opacity: 1;
    transform: translateY(0);
}

.onsen-gallery-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3rem 4rem 3rem;
    text-align: center;
}

.onsen-gallery h2 {
    font-size: clamp(3rem, 5vw, 4rem);
    font-weight: 900;
    letter-spacing: 0.1em;
    margin-bottom: 0;
    color: #DC5547;
    line-height: 1;
}

.onsen-subtitle {
    display: block;
    font-size: clamp(1.4rem, 2.5vw, 1.6rem);
    font-weight: 700;
    color: #000000;
    margin-top: 0.5rem;
    margin-bottom: 2rem;
    letter-spacing: 0.05em;
    line-height: 1.4;
}

.onsen-description {
    font-size: 1.1rem;
    line-height: 1.9;
    color: var(--text-gray);
    margin-bottom: 0;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* 左端の切れ端を隠す */
.onsen-gallery::before {
    content: '';
    position: absolute;
    top: 0;
    left: -1px;
    width: 20px;
    height: 100%;
    background: #fff;
    pointer-events: none;
    z-index: 10;
}

/* 右端の余白（左端と対称に） */
.onsen-gallery::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 4px;
    height: calc(100% - 2rem);
    background: #fff;
    pointer-events: none;
    z-index: 2;
}

/* プログレスバー */
.onsen-gallery .gallery-progress {
    display: flex;
    position: relative;
    margin: 0.5rem auto 0;
    background-color: #b5b5b3;
    height: 0.05rem;
    width: calc(50% - 393px);
    min-width: 207px;
}

.onsen-gallery .progress-bar {
    display: block;
    width: 0;
    height: 100%;
    background-color: #DC5547;
    transition: width 0.1s linear;
}

.slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    z-index: 1;
}

.slider-track {
    display: flex;
}

.slide {
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
    background: #000;
}

.slide::after {
    content: '';
    display: block;
    padding-bottom: 100%;
}

.slide img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Swiperのスタイル調整 */
.onsen-gallery .swiper {
    max-width: 100%;
    margin: 0;
    overflow: hidden;
}

.onsen-gallery .swiper-wrapper {
    padding: 0;
    align-items: stretch;
}

.onsen-gallery .swiper-slide {
    height: auto;
}

/* ナビゲーションボタン */
.onsen-gallery .swiper-button-prev,
.onsen-gallery .swiper-button-next {
    width: 5rem;
    height: 5rem;
    background-color: transparent;
    color: rgba(30, 28, 28, 0.7);
    transition: all 0.3s ease;
    z-index: 100;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-top: 0;
}

.onsen-gallery .swiper-button-prev {
    left: 2rem;
}

.onsen-gallery .swiper-button-next {
    right: 2rem;
}

.onsen-gallery .swiper-button-prev:after,
.onsen-gallery .swiper-button-next:after {
    font-size: 3.5rem;
    font-weight: bold;
}

.onsen-gallery .swiper-button-prev:hover,
.onsen-gallery .swiper-button-next:hover {
    color: var(--base-dark);
    transform: translateY(-50%) scale(1.2);
}

.onsen-gallery .swiper-button-prev.swiper-button-disabled,
.onsen-gallery .swiper-button-next.swiper-button-disabled {
    opacity: 1;
    cursor: pointer;
}

.onsen-desc-mobile {
    display: none;
}

.onsen-desc-pc {
    display: inline;
}
