/* リザンシーパークホテル谷茶ベイ メインスタイル - 整理版 */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300&family=Noto+Serif+JP:wght@300&family=Quattrocento:wght@400&display=swap');

/* ========================================
   ベース・リセットスタイル
======================================== */

/* ベーススタイル */
:root {
    --card-height: 500px;
}

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

html {
    width: 100%;
    overflow-x: hidden;
    scroll-padding-top: 180px;
    scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }
}

body {
    font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', 'Meiryo', sans-serif;
    font-weight: 300;
    color: #474747;
    background: #f8f9fa;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    width: 100%;
}

h2 {
    color: #757575;
}

/* ========================================
   ユーティリティ
======================================== */
.u-text-white {
    color: #ffffff;
}

/* 白文字のH2にテキストシャドウを適用（インラインスタイル用） */
h2[style*="color: #fff"],
h2[style*="color: #ffffff"],
h2[style*="color:#fff"],
h2[style*="color:#ffffff"],
h2[style*="color: white"],
h2[style*="color:white"],
h2.white {
    text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
}

p {
    line-height: 1.5;
}

a {
    text-decoration: none;
}

/* Keep Font Awesome icons from being overridden by translate font styles */
.fa,
.fas,
.far,
.fal,
.fad,
.fab,
.fa-solid,
.fa-regular,
.fa-light,
.fa-duotone,
.fa-brands,
.fa::before,
.fas::before,
.far::before,
.fal::before,
.fad::before,
.fab::before,
.fa-solid::before,
.fa-regular::before,
.fa-light::before,
.fa-duotone::before,
.fa-brands::before {
    font-family: "Font Awesome 5 Free" !important;
}

.fas,
.fa-solid,
.fas::before,
.fa-solid::before {
    font-weight: 900 !important;
}

.far,
.fa-regular,
.far::before,
.fa-regular::before {
    font-weight: 400 !important;
}

.fab,
.fa-brands,
.fab::before,
.fa-brands::before {
    font-family: "Font Awesome 5 Brands" !important;
    font-weight: 400 !important;
}

.container {
    max-width: 75rem;
    width: 100%;
    margin: 0 auto;
    padding: 0 1em;
}

/* フォント設定 */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 400;
    color: #757575;
}

button,
.tab,
input,
label {
    font-family: 'Noto Sans JP', sans-serif;
    font-weight: 300;
}

/* 英字フォント設定 */
.english-text {
    font-family: 'Quattrocento', serif;
    font-weight: 400;
    font-size: 1em;
    letter-spacing: 0.05em;
}

/* 共通セクションスタイル */

/* ========================================
   動画モーダル
======================================== */

.video-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000000E6;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.video-modal.active {
    display: flex;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 1200px;
    padding-bottom: 56.25%;
    height: 0;
}

.video-modal-content iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: #ffffff;
    font-size: 2em;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s;
}

.video-modal-close:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .video-modal-content {
        width: 95%;
    }

    .video-modal-close {
        top: -35px;
        font-size: 1.5em;
    }
}


/* サブビジュアルセクション */
.sub-visual {
    height: 30vh;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #ffffff;
    position: relative;
}

.sv-overlay {
    position: absolute;
    top: 70%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 2;
    max-width: 600px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    text-align: center;
}

#sv-heading {
    font-family: 'Noto Serif JP', serif;
    font-weight: 300;
    font-size: clamp(16px, 4vw, 20px);
    text-shadow: 0px 0px 8px #000000B3;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.sv-logo {
    font-family: 'Quattrocento', serif;
    font-weight: 400;
    font-size: clamp(2em, 8vw, 3.2em);
    text-shadow: 2px 2px 4px #000000B3;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}

.sv-overlay img {
    max-width: 100%;
    height: 70px;
    object-fit: contain;
    display: block;
}

/* ========================================
   メインビジュアル共通（トップ系）
======================================== */

.main-visual {
    background-size: cover;
    background-position: center;
    height: 70vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    position: relative;
    padding-left: 5%;
    z-index: 1;
    overflow: hidden;
}

.main-visual .mv-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.main-visual .mv-fadeimg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.main-visual .mv-pc-video {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100vw;
    height: 56.25vw;
    min-height: 100%;
    min-width: 177.77vh;
    z-index: 2;
    border: none;
    pointer-events: none;
}

@media (max-width: 767px) {
    .main-visual .mv-pc-video {
        display: none;
    }

    .main-visual .mv-fadeimg {
        display: block;
    }
}

.main-visual .mv-overlay {
    position: absolute;
    left: 50%;
    z-index: 3;
    max-width: 600px;
    width: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.main-visual #mv-heading {
    font-weight: 300;
    color: #ffffff;
    text-align: center;
    margin: 0;
    line-height: 1.4;
}

.main-visual .mv-logo {
    font-family: 'Quattrocento', serif;
    font-weight: 400;
    font-size: clamp(2em, 8vw, 3.2em);
    text-shadow: 2px 2px 4px #000000B3;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}

.main-visual .mv-overlay img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
    display: block;
}

.main-visual .mv-play-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    padding: 12px 24px;
    background: #00B0D8E0;
    color: #ffffff;
    text-decoration: none;
    border: none;
    border-radius: 50px;
    font-size: 0.9em;
    font-weight: 400;
    letter-spacing: 1px;
    box-shadow: 0 0 5px #FFFFFFCC, 0 0 20px #FFFFFF99;
    transition: all 0.3s ease;
    text-shadow: none;
    cursor: pointer;
    font-family: 'Noto Sans JP', sans-serif;
    position: relative;
}

.main-visual .mv-play-button:hover {
    opacity: 0.9;
    transform: scale(1.05);
    box-shadow: 0 0 8px #FFFFFF, 0 0 25px #FFFFFFCC;
}

.main-visual .mv-play-button:active {
    opacity: 0.95;
    transform: scale(1.02);
}

.main-visual .mv-play-button::after {
    content: "";
    width: 0.4em;
    height: 0.4em;
    position: absolute;
    right: 0.7em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.main-visual .mv-play-text {
    font-size: 0.95em;
    display: inline-block;
    letter-spacing: 0.5px;
}

@media (min-width: 769px) {
    .main-visual .mv-play-button {
        display: none;
    }
}

/* ========================================
   トップページ共通（index / wedding）
======================================== */

:where(body.index) .experiences-slide-carousel {
    position: relative;
}

:where(body.index) .experiences-slide-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 600px;
}

:where(body.index) .experiences-slide-carousel .slide-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    object-fit: cover;
    object-position: center center;
}

:where(body.index) .experiences-slide-carousel .slide-image.active {
    opacity: 1;
    z-index: 1;
}

:where(body.index) .experiences-slide-carousel .carousel-indicators {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

:where(body.index) .experiences-slide-carousel .carousel-indicators .indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #FFFFFF80;
    cursor: pointer;
    transition: background 0.3s ease;
}

:where(body.index) .experiences-slide-carousel .carousel-indicators .indicator.active {
    background: #FFFFFF;
}

:where(body.index) .carousel-indicators {
    display: flex;
    justify-content: center;
    gap: 8px;
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

:where(body.index) .carousel-indicators .indicator {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s;
}

:where(body.index) .carousel-indicators .indicator.active {
    background: #1e3c72;
}

:where(body.index) .gallery-item {
    margin: 0;
    padding: 0;
    border-radius: 0;
    overflow: hidden;
    box-shadow: none;
    transition: transform 0.3s ease;
}

:where(body.index) .gallery-item a {
    margin: 0;
    padding: 0;
    display: block;
}

:where(body.index) .gallery-item:hover {
    transform: translateY(0);
    box-shadow: none;
}

:where(body.index) .gallery-grid img {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    transition: transform 0.3s ease;
    cursor: pointer;
    display: block;
    margin: 0;
    padding: 0;
}

:where(body.index) .gallery-item:hover img {
    transform: scale(1.05);
}

:where(body.index) .gallery-modal {
    display: none;
    position: fixed;
    z-index: 10003;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background-color: #000000E6;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

:where(body.index) .gallery-modal.active {
    display: flex;
    opacity: 1;
}

:where(body.index) .gallery-modal img {
    max-width: 90%;
    max-height: 90%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

:where(body.index) .gallery-modal-close {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 2.5em;
    color: #ffffff;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
    z-index: 10004;
}

:where(body.index) .gallery-modal-close:hover {
    opacity: 0.7;
}

:where(body.index) .gallery-modal-prev,
:where(body.index) .gallery-modal-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 20px;
    color: #000000;
    background-color: #FFFFFFE6;
    border-radius: 50%;
    padding: 0.5em;
    cursor: pointer;
    z-index: 10004;
    user-select: none;
    box-shadow: 0 1px 3px #00000033;
    transition: background 0.2s ease, color 0.2s ease;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

:where(body.index) .gallery-modal-prev {
    left: 20px;
}

:where(body.index) .gallery-modal-next {
    right: 20px;
}

:where(body.index) .gallery-modal-prev:hover,
:where(body.index) .gallery-modal-next:hover {
    background-color: #ffffff;
    color: #00b1d8;
}

:where(body.index) .gallery-modal-prev svg,
:where(body.index) .gallery-modal-next svg {
    display: block;
    width: 20px;
    height: 20px;
    color: #000000;
    transition: color 0.2s ease;
}

:where(body.index) .gallery-modal-prev:hover svg,
:where(body.index) .gallery-modal-next:hover svg {
    color: #00b1d8;
}

:where(body.index) .lead-section {
    padding: 0 0 40px 0;
    margin-top: 0;
    min-width: auto;
    position: relative;
}

:where(body.index) .lead-section .container {
    padding: 80px 10% 0 10%;
    position: relative;
}

:where(body.index) .lead-section .container>* {
    position: relative;
    z-index: 1;
}

:where(body.index) .lead-section .section-header p {
    max-width: 960px;
    padding-right: 260px;
    font-size: 16px;
    text-align: left;
}

:where(body.index) #experiences-heading {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #757575;
    font-weight: 400;
    position: relative;
    z-index: 10;
}

:where(body.index) #experiences-heading:not(.english-text) {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

:where(body.index) #experiences-heading .english-text {
    font-family: 'Quattrocento', serif;
    font-size: 45px;
    display: block;
}

:where(body.index) #experiences-heading p {
    position: relative;
    z-index: 10;
}

:where(body.index) .banner-card {
    background: white;
    overflow: hidden;
}

:where(body.index) .banner-card:hover {
    opacity: 0.7;
}

:where(body.index) .experiences-section {
    padding: 100px 0 80px;
    position: relative;
    background: #ffffff;
}

:where(body.index) .experiences-section::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 500px;
    background: linear-gradient(to bottom, #FFFFFF00, #FFFFFF);
    z-index: 2;
}

:where(body.index) .experiences-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 25px;
    color: #757575;
    position: relative;
    z-index: 10;
}

:where(body.index) .experiences-section .english-text {
    margin-bottom: 8px;
    display: block;
    position: relative;
    z-index: 10;
}

:where(body.index) .experiences-section .section-header {
    text-align: center;
    position: relative;
    z-index: 10;
    margin-bottom: 90px;
}

:where(body.index) .experiences-section .section-header p {
    text-align: center;
    margin: 0 auto 40px;
    font-size: 1em;
    line-height: 1.7;
    position: relative;
    z-index: 10;
}

:where(body.index) .experiences-slides-container {
    width: 100%;
    max-width: 1600px;
    margin: 40px auto;
    position: relative;
    z-index: 10;
}

:where(body.index) .experiences-slide-row {
    display: flex;
    align-items: stretch;
    margin-bottom: 60px;
    width: 100%;
}

:where(body.index) .experiences-slide-row:nth-child(odd) {
    flex-direction: row;
    justify-content: flex-start;
    padding-right: 10%;
}

:where(body.index) .experiences-slide-row:nth-child(even) {
    flex-direction: row-reverse;
    justify-content: flex-start;
    padding-left: 10%;
}

:where(body.index) .experiences-slide {
    position: relative;
    text-align: center;
    flex: 2;
    margin: 0 20px 0 0;
    overflow: hidden;
    max-height: 600px;
}

:where(body.index) .experiences-slide-row:nth-child(even) .experiences-slide {
    margin: 0 0 0 20px;
}

:where(body.index) .experiences-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
}

:where(body.index) .experiences-slide-row .experience-card {
    flex: 1;
    max-width: 360px;
}

:where(body.index) .experiences-slide-row:last-child {
    margin-bottom: 0;
}

:where(body.index) .experience-card {
    background: white;
    overflow: hidden;
    transition: transform 0.3s;
    display: flex;
    flex-direction: column;
    height: 100%;
}

:where(body.index) .experience-card .english-text {
    font-family: 'Quattrocento', serif;
    font-weight: 400;
    font-size: 30px;
    margin-bottom: 0;
    display: block;
}

:where(body.index) .experience-card p {
    padding: 0 0 20px;
    font-size: 0.95em;
    margin: 0;
}

:where(body.index) .experience-card h3 {
    padding: 8px 0;
    font-size: 16px;
    color: #757575;
    margin: 0 0 8px 0;
    border-bottom: 1px solid #ccc;
}

:where(body.index) .experience-card .btn-more {
    width: 100%;
    border: 1px solid transparent;
    margin-bottom: 1px;
}

:where(body.index) .banner-card h3 {
    font-size: 16px;
    color: #757575;
    margin: 8px 0;
    text-align: center;
}

:where(body.index) .banner-card p {
    color: #757575;
    font-size: 0.9em;
    line-height: 1.5;
    margin: 8px 0 0;
    text-align: center;
}

:where(body.index) .banner-card img {
    width: 100%;
}

:where(body.index) .facilities-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #757575;
    font-weight: 400;
}

:where(body.index) .facilities-section h2:not(.english-text) {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

:where(body.index) .facilities-section h2 .english-text {
    font-family: 'Quattrocento', serif;
    font-size: 45px;
    display: block;
}

:where(body.index) .facilities-section .english-text {
    display: block;
}

:where(body.index) .facilities-description {
    color: #474747;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto 50px;
    font-size: 1em;
}

:where(body.index) .gallery-section {
    padding: 80px 0 0 0;
    background: #f8f9fa;
    width: 100%;
    position: relative;
}

:where(body.index) .gallery-section .container {
    width: 100%;
    max-width: 1200px;
    padding: 0 20px;
    margin: 0 auto;
}

:where(body.index) .gallery-section h2 {
    text-align: center;
    font-size: 2.8em;
    margin-bottom: 30px;
    color: #757575;
    font-weight: 400;
}

:where(body.index) .gallery-section h2:not(.english-text) {
    font-size: 16px;
    font-family: 'Noto Sans JP', sans-serif;
}

:where(body.index) .gallery-section .english-text {
    font-family: 'Quattrocento', serif;
    font-size: 45px;
    display: block;
}

:where(body.index) .gallery-section h3 {
    text-align: center;
    font-size: 1.6em;
    margin-bottom: 25px;
    color: #757575;
}

:where(body.index) .gallery-section h3 .english-text {
    display: block;
    font-size: 18px;
}

@media (max-width: 480px) {
    :where(body.index) .mv-logo {
        font-size: 1.8em;
        margin: 0;
    }

    :where(body.index) .section-header h2 {
        font-size: 2em;
    }

    :where(body.index) .section-header p br {
        display: none;
    }

    :where(body.index) .lead-section p {
        margin: 0px 0 60px 0;
    }

    :where(body.index) .experiences-section {
        padding: 60px 0;
    }

    :where(body.index) .experiences-section .section-header p {
        text-align: left;
    }

    :where(body.index) .experiences-section .section-header {
        margin-bottom: 0;
    }

    :where(body.index) .facilities-section h2:not(.english-text) {
        font-size: 12px;
        font-family: 'Noto Sans JP', sans-serif;
    }

    :where(body.index) .facilities-section h2 .english-text {
        font-family: 'Quattrocento', serif;
        font-size: 39px;
        display: block;
    }

    :where(body.index) .facilities-description {
        margin: 0 auto 30px;
    }

    :where(body.index) .experiences-slide-row {
        flex-direction: column;
        margin-bottom: 40px;
        min-height: auto;
        padding: 0 15px;
    }

    :where(body.index) .experiences-slide-row:last-child {
        margin-bottom: 0;
    }

    :where(body.index) .experiences-slide-row:nth-child(even) {
        flex-direction: column;
        padding: 0 15px;
    }

    :where(body.index) .experiences-slide {
        height: 200px;
        margin: 0 0 20px 0;
        flex: 1;
        max-width: 100%;
        aspect-ratio: 16/9;
        overflow: hidden;
    }

    :where(body.index) .experiences-slide-row:nth-child(even) .experiences-slide {
        margin: 0 0 20px 0;
    }

    :where(body.index) .experiences-slide-row .experience-card {
        margin: 0;
        max-width: 100%;
        flex: none;
    }

    :where(body.index) .experiences-slide img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }

    :where(body.index) .experience-card h3 {
        font-size: 1em;
        padding: 15px 15px 8px;
        margin: 0 0 0.5em 0;
    }

    :where(body.index) .experience-card p {
        padding: 0 15px 15px;
        font-size: 0.9em;
    }

    :where(body.index) .gallery-section {
        padding: 60px 0 0 0;
    }

    :where(body.index) .gallery-section .container {
        padding: 0 15px;
    }

    :where(body.index) .gallery-section h2 {
        margin-bottom: 15px;
    }

    :where(body.index) .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0;
        padding: 0;
    }

    :where(body.index) .gallery-grid img {
        height: auto;
        aspect-ratio: 1 / 1;
    }

    :where(body.index) .social-links {
        gap: 10px;
    }

    :where(body.index) .footer-middle .footer-social {
        gap: 30px;
    }

    :where(body.index) .footer-logo-img {
        width: 80%;
        height: auto;
    }

    :where(body.index) .footer .footer-logo-img {
        width: 80%;
        height: auto;
    }

    :where(body.index) .footer-top {
        gap: 0px;
    }

    :where(body.index) .footer-info {
        text-align: center;
        margin-bottom: 0;
        width: 100%;
    }

    :where(body.index) .footer-info p {
        margin: 0.5em 0;
        line-height: 1.4;
        text-align: center;
    }

    :where(body.index) .footer-nav-top {
        text-align: center;
        width: 100%;
    }

    :where(body.index) .footer-nav-top ul {
        display: flex;
        justify-content: center;
        flex-wrap: wrap;
        gap: 0.5em;
        margin: 0 auto;
        padding: 0;
        width: 100%;
        list-style: none;
    }

    :where(body.index) .footer-nav-top li {
        flex: 0 0 auto;
        min-width: 0;
        list-style: none;
    }

    :where(body.index) .footer-nav-top a {
        display: block;
        padding: 0.3em 0.5em;
        font-size: 0.9em;
        white-space: nowrap;
        text-align: center;
        color: #ffffff;
        text-decoration: none;
    }

    :where(body.index) .footer-nav-bottom {
        font-size: 0.75em;
    }

    :where(body.index) .footer-nav-bottom ul li a {
        font-size: 0.75em;
        color: #ffffff;
        text-decoration: none;
    }

    :where(body.index) .footer-bottom .footer-copyright {
        font-size: 0.7em;
        color: #ffffff;
        text-align: center;
    }

    :where(body.index) .banner-card h3 {
        font-size: 1.1em;
        padding: 15px;
    }
}

@media (max-width: 768px) {
    :where(body.index) .experiences-slides-container {
        margin: 24px auto 0;
    }

    :where(body.index) .experiences-slide-row,
    :where(body.index) .experiences-slide-row:nth-child(odd),
    :where(body.index) .experiences-slide-row:nth-child(even) {
        display: block;
        margin-bottom: 40px;
        padding: 0 15px;
    }

    :where(body.index) .experiences-slide-row:last-child {
        margin-bottom: 0;
    }

    :where(body.index) .experiences-slide {
        width: 100%;
        max-width: 100%;
        height: 200px;
        margin: 0 0 20px 0 !important;
        aspect-ratio: 16/9;
        overflow: hidden;
    }

    :where(body.index) .experiences-slide-row:nth-child(even) .experiences-slide {
        margin: 0 0 20px 0 !important;
    }

    :where(body.index) .experiences-slide-wrapper {
        width: 100%;
        height: 100%;
        min-height: 200px;
        max-height: none;
    }

    :where(body.index) .experiences-slide-row .experience-card {
        width: 100%;
        margin: 0;
        max-width: 100%;
    }
}

/* パンくずリスト */
.breadcrumb {
    background: #ffffff;
    padding: .5em 0;
    border-bottom: 1px;
    animation: fadeInUp 0.8s ease-out;
}

.breadcrumb .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.25rem;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 0.5em;
}

.breadcrumb-list li {
    display: flex;
    align-items: center;
}

.breadcrumb-list a {
    text-decoration: none;
    font-size: 0.75em;
    transition: color 0.3s ease;
    color: #474747;
}

.breadcrumb-list a:visited {
    color: #474747;
}

.breadcrumb-list a:hover {
    color: #8b4513;
    text-decoration: underline;
}

.breadcrumb-list span {
    color: #474747;
    font-size: 0.75em;
}

.breadcrumb-list .breadcrumb-separator {
    color: #cccccc;
    font-size: 0.75em;
    margin: 0 0.25em;
}

.breadcrumb-list i.fa-home {
    margin-right: 0.25em;
}

@media (max-width: 768px) {
    .breadcrumb {
        padding: 0.75em 0;
    }

    .breadcrumb-list {
        gap: 0.375em;
    }

    .breadcrumb-list a,
    .breadcrumb-list span {
        font-size: 0.75em;
    }
}

/* 予約バー */
.booking-bar {
    background: #f8f9fa;
    padding: 1em;
    border-radius: 15px;
    position: relative;
    z-index: 10;
    width: 860px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
    margin-top: -2em;
    padding-left: 24px;
    padding-right: 24px;
    box-sizing: border-box;
}



.booking-content {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-end;
    width: auto;
    box-sizing: border-box;
    padding: 0;
    flex-wrap: nowrap;
    gap: .5em;
}

.booking-form {
    width: auto;
    max-width: none;
    min-width: 0;
    overflow: hidden;
    flex-shrink: 0;
}

.form-row {
    display: flex;
    gap: 3vw;
    align-items: end;
    flex-wrap: wrap;
    width: 100%;
    max-width: 100%;
    justify-content: flex-start;
}

/* フォームグループ */
.form-group {
    display: flex;
    flex-direction: column;
    gap: 3px;
    flex: 1;
    min-width: 100px;
    max-width: 150px;
}

/* チェックイン・チェックアウトの入力欄を％指定 */
.form-group:nth-child(1),
.form-group:nth-child(2) {
    flex: 0 1 24%;
    max-width: 24%;
    min-width: 0;
}

/* 人数と室数の入力欄を％指定 */
.form-group:nth-child(3),
.form-group:nth-child(4) {
    flex: 0 0 12%;
    max-width: 12%;
    min-width: 0;
}

/* Safari専用の調整 */
@media not all and (min-resolution: 0.001dpcm) {
    @supports (-webkit-appearance: none) {
        .form-row {
            gap: 1em;
            flex-wrap: nowrap;
        }

        .form-group:nth-child(1),
        .form-group:nth-child(2) {
            flex: 0 0 22%;
            max-width: 22%;
        }

        .form-group:nth-child(3),
        .form-group:nth-child(4) {
            flex: 0 0 11%;
            max-width: 11%;
        }
    }
}

.form-group label {
    font-size: clamp(0.6em, 2vw, 0.7em);
    font-weight: 400;
}

.form-group input,
.form-group select {
    padding: 8px 10px;
    border: 1px solid #cccccc;
    font-size: clamp(0.8em, 2.5vw, 0.85em);
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    background: white;
    color: #333;
    /* モバイルブラウザの見た目を統一 */
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    outline: none;
}

/* 日付入力のカレンダーアイコンを統一 */
.form-group input[type="date"] {
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'/%3e%3cline x1='16' y1='2' x2='16' y2='6'/%3e%3cline x1='8' y1='2' x2='8' y2='6'/%3e%3cline x1='3' y1='10' x2='21' y2='10'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 10px center;
    background-size: 16px;
    padding-right: 34px;
    position: relative;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    opacity: 0;
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

/* フォーカス時のスタイル統一 */
.form-group input:focus,
.form-group select:focus {
    border-color: #1e3c72;
    -webkit-box-shadow: 0 0 0 2px #1A2A4A33;
    -moz-box-shadow: 0 0 0 2px #1A2A4A33;
    box-shadow: 0 0 0 2px #1A2A4A33;
    outline: none;
}

/* 人数・室数のselect要素を狭く */
.form-group:nth-child(3) select,
.form-group:nth-child(4) select {
    padding: 8px 4px;
    font-size: 0.85em;
    min-width: 60px;
    /* ドロップダウンマークを復活 */
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23666' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6,9 12,15 18,9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 8px center;
    background-size: 12px;
    padding-right: 24px;
}

.form-group select {
    width: 100%;
    min-width: 100px;
}

/* 検索ボタン */
.search-btn {
    background: #8b4513;
    color: #ffffff;
    border: 1px solid transparent;
    border-radius: 0;
    font-size: 0.9em;
    font-weight: 400;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    padding: 6px 25px;
    flex-shrink: 0;
}

.search-btn:hover {
    background: #ffffff;
    color: #8b4513;
    border: 1px solid #8b4513;
}

/* 予約セクションのセパレーター */
.booking-separator {
    width: 1px;
    height: 40px;
    background: #cccccc;
    margin: 0px 2px;
    flex-shrink: 0;
}

/* 予約リンク */
.booking-links {
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    flex-shrink: 0;
}

.booking-links a {
    color: #ffffff;
    text-decoration: none;
    font-size: 0.9em;
    border-radius: 0;
    padding: 12px 16px;
    background: #1e3c72;
    border: 1px solid #1e3c72;
    transition: all 0.3s;
    white-space: nowrap;
    display: flex;
    align-items: center;
    justify-content: center;
}

body:not(.index) .booking-links a:only-child {
    grid-column: 1 / -1;
    justify-self: center;
    margin-left: auto;
    margin-right: auto;
}

.booking-links a:hover {
    background: #ffffff;
    color: #1e3c72;
    border: 1px solid #1e3c72;
}

/* タブレット・スマホ表示時は固定幅を解除 */
@media (max-width: 1024px) {
    html {
        scroll-padding-top: 120px;
    }

    .lead-section {
        min-width: auto;
    }

    .main-header {
        min-width: auto;
    }
}

/* タブレット表示時（769px-1024px）のリードセクション調整 */
@media (min-width: 769px) and (max-width: 1024px) {
    .container {
        max-width: 100%;
        padding: 0 15px;
    }

    .lead-section .container {
        padding: 40px 15px 0 15px;
        background-position: calc(100% - 10px) top;
        background-size: 40%;
    }

    .lead-section p {
        margin: 0 0 40px 0;
    }

    /* 予約バー */
    .booking-content {
        flex-direction: column;
        gap: 0.5em;
        align-items: center;
        padding: 0;
        width: auto;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 0;
        padding: 0;
        justify-items: center;
    }

    .booking-cta-section .booking-cta-visual .booking-content,
    .booking-cta-section .booking-cta-visual .form-row {
        width: 100%;
    }

    .booking-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow: visible;
    }

    .form-group {
        flex: 1;
        width: 100%;
    }

    /* タブレット表示ではPCの幅制限を無効化 */
    .form-group:nth-child(1),
    .form-group:nth-child(2),
    .form-group:nth-child(3),
    .form-group:nth-child(4) {
        flex: 1;
        max-width: none;
        min-width: 0;
    }

    .booking-cta-section .booking-cta-visual .booking-bar {
        width: 100%;
        max-width: 90%;
        margin-left: auto;
        margin-right: auto;
        box-sizing: border-box;
    }

    .booking-cta-section .booking-cta-visual .booking-form {
        width: 100%;
        max-width: 100%;
        flex-shrink: 1;
    }

    .booking-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .search-btn {
        grid-column: 1 / -1;
        margin: 1em auto 0;
        width: 50%;
        max-width: 200px;
    }

    .booking-links a {
        padding: 10px 15px;
        font-size: 0.85em;
        background: #1e3c72;
        color: #ffffff;
    }

    .booking-separator {
        width: 100%;
        height: 1px;
        background: #ddd;
        margin: 10px 0;
    }

    /* 下層ページもTOPと同じ予約バーレイアウトに統一 */
    body:not(.index) .booking-bar,
    body:not(.index) .booking-cta-section .booking-cta-visual .booking-bar {
        width: 860px;
        max-width: 100%;
    }

    body:not(.index) .booking-content,
    body:not(.index) .booking-cta-section .booking-cta-visual .booking-content {
        flex-direction: row;
        align-items: flex-end;
        justify-content: center;
        flex-wrap: nowrap;
        gap: 10px;
        width: auto;
    }

    body:not(.index) .booking-form {
        flex: 1 1 auto;
        width: auto;
        max-width: none;
        min-width: 0;
    }

    body:not(.index) .form-row .form-group:nth-child(3),
    body:not(.index) .form-row .form-group:nth-child(4) {
        flex: 0 0 12%;
        max-width: 12%;
        width: auto;
        min-width: 0;
    }

    body:not(.index) .booking-separator,
    body:not(.index) .booking-cta-section .booking-cta-visual .booking-separator {
        width: 1px;
        height: 40px;
        margin: 0 2px;
        background: #cccccc;
        flex-shrink: 0;
        align-self: flex-end;
    }

    body:not(.index) .booking-links {
        display: flex;
        flex-wrap: nowrap;
        align-items: flex-end;
        gap: 10px;
        margin: 0;
    }

    body:not(.index) .booking-cta-section .booking-cta-visual .booking-links {
        align-self: flex-end;
    }

    body:not(.index) .booking-bar .search-btn,
    body:not(.index) .booking-links a {
        width: 142px;
        min-width: 142px;
        max-width: 142px;
        padding: 10px 8px;
        font-size: 0.9em;
        line-height: 1.2;
        box-sizing: border-box;
    }

    body:not(.index) .booking-links a:only-child {
        width: 142px;
        min-width: 142px;
        max-width: 142px;
    }

    body:not(.index) .booking-links a {
        padding: 10px 8px;
        font-size: 0.85em;
    }

    body:not(.index) .form-row .search-btn {
        margin: 0;
        justify-content: center;
    }

    .plans-info-panel {
        padding: 20px 15px;
        margin-bottom: 20px;
        position: absolute;
        width: 360px;
        height: 360px;
        font-size: 16px;
    }

    .plans-info-panel h2 {
        font-size: 20.8px;
        font-family: 'Noto Serif JP', serif;
        font-weight: 300;
        margin-bottom: 0;
        line-height: 1.2;
        text-align: center;
    }

    /* タブレット表示時にsection-header内のPタグのbrを無効化 */
    .section-header p br {
        display: none;
    }

    /* タブレット表示時にfacilities-cardsを3列に調整 */
    .facilities-cards {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .facilities-cards-container {
        padding: 0 15px;
    }
}

/* デスクトップ時のレイアウト */
@media (min-width: 769px) {
    .form-row {
        display: flex;
        gap: 12px;
        align-items: end;
        margin-bottom: 0;
        flex: 1;
        min-width: 0;
    }

    .booking-bar .search-btn {
        padding: 12px 10px;
        margin: 0;
        width: 16%;
        flex-shrink: 0;
    }

    body:not(.index) .booking-bar .search-btn,
    body:not(.index) .booking-links a {
        width: 142px;
        min-width: 142px;
        max-width: 142px;
        padding: 10px 8px;
        font-size: 0.9em;
        line-height: 1.2;
        box-sizing: border-box;
    }
}

@media (min-width: 1025px) {
    .booking-bar .form-group {
        min-width: 0;
        max-width: none;
    }

    .booking-bar .form-group select {
        min-width: 0;
    }

    .booking-links {
        flex-wrap: nowrap;
    }

    .booking-form {
        flex: 0 1 auto;
    }

    .form-row {
        width: 100%;
    }

    .form-group:nth-child(1),
    .form-group:nth-child(2) {
        flex: 1 1 0;
        max-width: none;
    }

    body:not(.index) .booking-content {
        gap: 10px;
    }

    body:not(.index) .form-row {
        gap: 12px;
    }

    body:not(.index) .booking-form {
        flex: 1 1 auto;
        min-width: 0;
    }

    body:not(.index) .form-row .form-group:nth-child(3),
    body:not(.index) .form-row .form-group:nth-child(4) {
        flex: 0 0 12%;
        max-width: 12%;
        min-width: 0;
    }

    body:not(.index) .booking-links {
        gap: 10px;
    }

    body:not(.index) .booking-links a {
        padding: 10px 8px;
        font-size: 0.85em;
    }
}

/* ========================================
   フッターセクション
======================================== */


/* ========================================
   セクションヘッダー共通
======================================== */

.section-header {
    background: none;
    text-align: left;
    padding: 0;
}

/* ========================================
   アニメーション
======================================== */

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

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

section {
    animation: fadeInUp 0.8s ease-out;
}

/* ホバーエフェクト */
button:not(.search-btn),
.tab {
    transition: all 0.3s ease;
}

/* ========================================
   コンテンツボックス共通
======================================== */

.content-box {
    max-width: 900px;
    margin: 0 auto;
    padding: 2em;
    line-height: 1.4;
    color: #474747;
    box-sizing: border-box;
    background-color: #ffffff;
    border: 1px solid #e0e0e0;
}

.content-box h3 {
    font-size: 1.17em;
    font-weight: 400;
    margin: 2em 0 1em 0;
    padding-bottom: 0.6em;

    border-bottom: 1px solid #a3a3a3;
}

.content-box h3:first-child {
    margin-top: 0;
}

/* ========================================
   背景セクション共通
======================================== */

.bg-section {
    padding: 60px 0;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    background-repeat: no-repeat;
    position: relative;
}

.bg-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 1) 50%);
    z-index: 1;
}

.bg-section .container {
    position: relative;
    z-index: 2;
}

/* ========================================
   リードセクション共通
======================================== */

.lead-section .container {
    padding: 80px 0 60px 0;
}

/* ========================================
   ページ見出し共通
======================================== */

#page-heading {
    text-align: center;
    font-size: 1em;
    margin-bottom: 30px;
    font-weight: 400;
}

#page-heading .english-text {
    margin-bottom: .1em;
    font-family: 'Quattrocento', serif;
    font-size: 2.8125em;
    display: block;
}

/* ========================================
   ボタンスタイル
======================================== */

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1e3c72;
    color: #ffffff;
    border: 1px solid transparent;
    padding: 10px 20px;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 0.8em;
    text-align: center;
    text-decoration: none;
    min-width: 180px;
}

.btn-primary:hover {
    background: #ffffff;
    color: #1e3c72;
    border: 1px solid #1e3c72;
    transform: none;
}

.btn-more {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    width: 50%;
    background: #1e3c72;
    color: #ffffff;
    border: 1px solid transparent;
    padding: 6px 12px;
    font-size: 0.9em;
    font-weight: 400;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 0 auto 15px auto;
    flex-shrink: 0;
    text-decoration: none;

}

.btn-more.-wide {
    min-width: 280px;
    padding: 6px 40px;
}

@media (min-width: 769px) {
    .lead-section .btn-more {
        width: 460px;
        max-width: 100%;
        padding: 6px 40px;
    }
}

.btn-more.is-gray {
    background: #9e9e9e;
    border: 1px solid #9e9e9e;
    color: #ffffff;
}

.btn-more.is-gray::after {
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
}

.btn-more.is-gray:hover {
    background: #b3b3b3;
    color: #ffffff;
    border: 1px solid #b3b3b3;
}

.btn-more::after {
    content: "";
    width: 0.4em;
    height: 0.4em;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    position: absolute;
    right: .7em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.btn-more:hover {
    background: #ffffff;
    color: #1e3c72;
    border: 1px solid #1e3c72;

}

@media (max-width: 768px) {
    .btn-more {
        margin: 0 auto 15px auto;
        padding: 6px 20px;
        font-size: 0.9em;
        width: 100%;
    }
}

.btn-news {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #1e3c72;
    color: #ffffff;
    border: 1px solid #1e3c72;
    padding: 6px 25px;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    font-size: 1em;
}

.btn-news::after {
    content: "";
    width: 0.4em;
    height: 0.4em;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    position: absolute;
    right: 0.7em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.btn-news:hover {
    background: #ffffff;
    color: #1e3c72;
    border: 1px solid #1e3c72;
    transform: none;
}

.btn-news:hover::after {
    border-top-color: #1e3c72;
    border-right-color: #1e3c72;
}

.notice-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 6px 40px;
    min-width: 280px;
    background-color: #1e3c72;
    color: #ffffff;
    text-decoration: none;
    border-radius: 0;
    transition: all 0.3s ease;
    font-size: 1em;
    border: 1px solid transparent;
}

.lead-section .notice-button-container .notice-button {
    min-width: 300px;
}

.notice-button::after {
    content: "";
    width: 0.4em;
    height: 0.4em;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    position: absolute;
    right: .5em;
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.notice-button:hover {
    background-color: #ffffff;
    color: #1e3c72;
    border: 1px solid #1e3c72;
}

.notice-button:hover::after {
    border-top-color: #1e3c72;
    border-right-color: #1e3c72;
}

@media (max-width: 768px) {
    .floormap-section .btn-more {
        width: 60%;
    }
}

/* ========================================
   レスポンシブデザイン
======================================== */

/* タブレット・スマホ対応（1024px以下） */

@media (max-width: 768px) {
    html {
        scroll-padding-top: 80px;
    }

    /* サブビジュアルの高さを統一 */
    .sub-visual {
        height: 40vh;
        min-height: 180px;
    }

    .lead-section .container {
        padding: 40px 1em 40px 1em;
    }

    .content-box {
        padding: 1em;
    }

    .content-box h3 {
        font-size: 1em;
    }

    /* 予約バー */
    .booking-bar {
        width: fit-content;
        max-width: 95%;
    }

    .booking-content {
        flex-direction: column;
        gap: 0.5em;
        align-items: center;
        padding: 0;
        width: auto;
    }

    .form-row {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-bottom: 0;
        padding: 0;
    }

    .booking-form {
        width: 100%;
        max-width: 100%;
        margin: 0;
        overflow: visible;
    }

    .form-group {
        flex: 1;
        width: 100%;
    }

    /* スマホ表示ではPCの幅制限を無効化 */
    .form-group:nth-child(1),
    .form-group:nth-child(2),
    .form-group:nth-child(3),
    .form-group:nth-child(4) {
        flex: 1;
        max-width: none;
        min-width: 0;
    }

    .booking-links {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .search-btn {
        grid-column: 1 / -1;
        margin: 1em auto 0;
        width: 50%;
        max-width: 200px;
    }

    .booking-links a {
        padding: 10px 15px;
        font-size: 0.85em;
        background: #1e3c72;
        color: #ffffff;
    }

    /* 下層ページはスマホでもTOPと同じボタン幅に統一 */
    body:not(.index) .booking-bar {
        width: auto;
        max-width: 90%;
    }

    body:not(.index) .booking-links {
        display: flex;
        justify-content: center;
        grid-template-columns: none;
    }

    body:not(.index) .search-btn {
        width: clamp(156px, 46vw, 188px);
        min-width: clamp(156px, 46vw, 188px);
        max-width: clamp(156px, 46vw, 188px);
        padding: 10px 8px;
        font-size: 0.9em;
    }

    body:not(.index) .booking-links a {
        width: clamp(156px, 46vw, 188px);
        min-width: clamp(156px, 46vw, 188px);
        max-width: clamp(156px, 46vw, 188px);
        padding: 10px 8px;
        font-size: 0.85em;
    }

    body:not(.index) .booking-links a:only-child {
        width: clamp(156px, 46vw, 188px);
        max-width: clamp(156px, 46vw, 188px);
    }

    .booking-separator {
        width: 100%;
        height: 1px;
        background: #ddd;
        margin: 10px 0;
    }
}

.note-section {
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

h2.color-white{
    text-shadow: 0 0 0.5em rgba(0, 0, 0, 0.2);
}

.section-padding{
    padding: 5rem 0;
}

.section-title{
    text-align: center;
    font-size: clamp(1.8em, 5vw, 2.8em);
    margin-bottom: 1.875rem;
    color: #757575;
    font-weight: 400;
}

.section-title:not(.english-text){
    font-size: 1rem;
    font-family: 'Noto Sans JP', sans-serif;
}

.section-title .english-text{
    font-family: 'Quattrocento', serif;
    font-size: clamp(1.8rem, 5vw, 2.8rem);
    display: block;
}

.rooms-section .section-header h2{
    background: none;
    color: #757575;
    font-size: 45px;
    margin-bottom: 25px;
    padding: 0;
    text-align: left;
}

@media (max-width: 1024px) {
    :where(body.index) .container {
        padding: 0 20px;
    }

    :where(body.index) .main-visual {
        height: 65vh;
        min-height: 450px;
    }
}

@media (min-width: 1200px) {
    :where(body.index) .lead-section .container {
        padding: 80px 120px 0 120px;
    }
}
