/* ========================================
   リセット & ベーススタイル
   ======================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    line-height: 1.8;
    color: #333;
    overflow-x: hidden;
    background: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.menu-open {
    overflow: hidden;
}

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

/* ========================================
   ハンバーガーメニュー
   ======================================== */
.hamburger-btn {
    position: fixed;
    top: 40px;
    right: 40px;
    z-index: 1000;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.hamburger-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.05);
}

.hamburger-line {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all 0.3s ease;
}

.hamburger-btn.active .hamburger-line:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
}

.hamburger-btn.active .hamburger-line:nth-child(2) {
    opacity: 0;
}

.hamburger-btn.active .hamburger-line:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
}

/* ========================================
   固定CTAボタン
   ======================================== */
.fixed-cta-container {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: flex;
    flex-direction: row;
    gap: 15px;
    width: max-content;
    /* スクロール時の表示制御 */
    opacity: 1;
    visibility: visible;
    transition: opacity 0.35s ease, visibility 0.35s ease, transform 0.35s ease;
    pointer-events: auto;
}

/* スクロール中は非表示（JSが .is-scrolling を付与） */
.fixed-cta-container.is-scrolling {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateX(-50%) translateY(20px);
}

.fixed-cta-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 150px;
    padding: 15px 24px;
    
    /* グラスモーフィズム（Glassmorphism） */
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    
    text-decoration: none !important;
    border-radius: 50px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    font-weight: 400;
    font-size: 0.95rem;
    letter-spacing: 0.1em;
    white-space: nowrap;
}

.fixed-cta-btn:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

/* フッター上（白背景）に乗ったときのスタイル */
.fixed-cta-container.in-footer .fixed-cta-btn {
    background: #fff !important;
    border: 1px solid #ccc !important;
    color: #333 !important;
    text-shadow: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08) !important;
}
.fixed-cta-container.in-footer .fixed-cta-btn:hover {
    background: #f8f8f8 !important;
    border: 1px solid #aaa !important;
    color: #000 !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.12) !important;
}
.fixed-cta-container.in-footer .fixed-cta-text {
    color: #333 !important;
}

.fixed-cta-icon {
    display: none; /* アイコンを非表示 */
}

.fixed-cta-text {
    font-family: 'Noto Sans JP', sans-serif;
}


/* ナビゲーションオーバーレイ */
.nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: linear-gradient(135deg, #1a1a1a 0%, #0a0a0a 100%);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-content {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 120px 60px 80px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}

/* 閉じるボタン */
.nav-close-btn {
    position: absolute;
    top: 40px;
    right: 40px;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-close-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: rotate(90deg);
}

.close-line {
    position: absolute;
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
}

.close-line:nth-child(1) {
    transform: rotate(45deg);
}

.close-line:nth-child(2) {
    transform: rotate(-45deg);
}

/* メニューコンテンツ */
.nav-menu {
    max-width: 1200px;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    gap: 40px;
    align-items: start;
    margin-top: 60px; /* 上部からのマージン */
}

/* 1列目：ロゴなど */
.nav-brand {
    grid-column: 1;
    grid-row: 1;
}

/* 2列目：メインリンク */
.nav-links {
    grid-column: 2;
    grid-row: 1 / 3;
    list-style: none;
    padding: 0;
    margin: 0;
}

/* 3列目上：サブリンク */
.nav-sublinks {
    grid-column: 3;
    grid-row: 1;
    display: flex;
    gap: 15px;
    flex-direction: column;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    align-items: flex-start;
}

/* 1列目下：CTA */
.nav-cta-group {
    grid-column: 1;
    grid-row: 2;
    margin-top: 40px;
}

/* 3列目下：Contact */
.nav-contact {
    grid-column: 3;
    grid-row: 2;
    margin-top: 40px;
}

.nav-brand h2 {
    font-family: 'Yu Mincho', 'YuMincho', 'Noto Serif JP', serif;
    font-size: 1.6rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    color: #fff;
    margin-bottom: 15px;
    line-height: 1.4;
    white-space: nowrap; /* 改行しない */
}

.nav-brand-sub {
    display: inline-block;
    margin-top: 6px;
    font-size: 1.4rem;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.85);
}

.nav-tagline {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.6);
    letter-spacing: 0.15em;
    line-height: 1.6;
}

/* ナビゲーションリンク */
.nav-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-item {
    margin-bottom: 15px;
    opacity: 0;
    transform: translateX(-30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav-overlay.active .nav-item {
    opacity: 1;
    transform: translateX(0);
}

.nav-overlay.active .nav-item:nth-child(1) { transition-delay: 0.08s; }
.nav-overlay.active .nav-item:nth-child(2) { transition-delay: 0.16s; }
.nav-overlay.active .nav-item:nth-child(3) { transition-delay: 0.24s; }
.nav-overlay.active .nav-item:nth-child(4) { transition-delay: 0.32s; }
.nav-overlay.active .nav-item:nth-child(5) { transition-delay: 0.40s; }
.nav-overlay.active .nav-item:nth-child(6) { transition-delay: 0.48s; }
.nav-overlay.active .nav-item:nth-child(7) { transition-delay: 0.56s; }
.nav-overlay.active .nav-item:nth-child(8) { transition-delay: 0.64s; }

.nav-link {
    display: flex;
    align-items: baseline;
    gap: 18px;
    text-decoration: none;
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    position: relative;
    padding: 6px 0;
}

.nav-en {
    font-family: 'Futura', 'Century Gothic', 'Helvetica Neue', sans-serif;
    font-size: 1.5rem;
    font-weight: 300;
    letter-spacing: 0.18em;
    color: #fff;
    min-width: 7em;
}

.nav-ja {
    font-family: 'Yu Mincho', 'YuMincho', 'Noto Serif JP', serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.15em;
}

.nav-link:hover {
    color: rgba(255, 255, 255, 0.6);
    transform: translateX(10px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: rgba(255, 255, 255, 0.3);
    transition: width 0.4s ease;
}

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

.nav-number {
    font-family: 'Futura', 'Century Gothic', sans-serif;
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.nav-text {
    font-family: 'Futura', 'Century Gothic', sans-serif;
    font-weight: 200;
}



.nav-overlay.active .nav-sublinks {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.7s;
}

.nav-sublink {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    width: 200px;
    justify-content: flex-start;
}

.nav-sublink:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.4);
    color: #fff;
    transform: translateY(-2px);
}

.nav-sublink-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
}

/* CTAボタングループ */
.nav-cta-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav-overlay.active .nav-cta-group {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.55s;
}

.nav-cta-btn {
    display: block;
    padding: 14px 24px;
    text-align: center;
    text-decoration: none;
    color: #fff;
    font-family: 'Yu Mincho', 'YuMincho', 'Noto Serif JP', serif;
    font-size: 0.9rem;
    letter-spacing: 0.2em;
    border-radius: 2px;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.nav-cta-btn:hover {
    transform: translateY(-2px);
    opacity: 0.9;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
}

.nav-cta-entry {
    background: #928178;
}

.nav-cta-reserve {
    background: #a72426;
}

.nav-cta-limited {
    background: #525760;
}

/* コンタクトセクション */
.nav-contact {
    text-align: right;
    margin-top: 30px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav-overlay.active .nav-contact {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.6s;
}

.nav-contact-label {
    font-family: 'Futura', 'Century Gothic', sans-serif;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.4);
    letter-spacing: 0.3em;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.nav-contact-info {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
    margin-bottom: 20px;
}

.nav-contact-btn {
    display: inline-block;
    padding: 12px 35px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-size: 0.75rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.nav-contact-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.nav-contact-tel {
    font-family: 'Futura', 'Century Gothic', 'Helvetica Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 0.12em;
    color: #fff;
}

.nav-contact-hours {
    margin-top: 12px;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.12em;
    line-height: 1.7;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
    .nav-menu {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
        margin-top: 30px;
    }
    
    .nav-brand {
        grid-column: auto;
        grid-row: auto;
    }
    
    .nav-links {
        grid-column: auto;
        grid-row: auto;
    }
    
    .nav-sublinks {
        grid-column: auto;
        grid-row: auto;
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }
    
    .nav-cta-group {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
        align-items: center;
    }
    
    .nav-contact {
        grid-column: auto;
        grid-row: auto;
        margin-top: 0;
        text-align: center;
    }
    
    .nav-brand h2 {
        font-size: 1.6rem;
        white-space: normal;
    }
    
    .nav-brand-sub {
        font-size: 1.2rem;
    }
    
    .nav-link {
        justify-content: center;
    }
    
    .nav-en {
        font-size: 1.3rem;
        min-width: auto;
    }
    
    .nav-sublinks {
        flex-direction: column;
        gap: 15px;
        align-items: center;
        margin-top: 30px;
    }
    
    .nav-sublink {
        width: 220px;
        justify-content: center;
    }
    
    .nav-cta-group {
        align-items: center;
    }
    
    .nav-cta-btn {
        width: 260px;
    }
    
    .nav-contact {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .hamburger-btn {
        top: 68px;
        right: 30px;
        width: 45px;
        height: 45px;
    }
    
    .fixed-cta-container {
        bottom: 20px;
        gap: 8px;
        width: calc(100% - 40px);
        justify-content: center;
    }
    
    .fixed-cta-btn {
        padding: 12px 10px;
        min-width: 0;
        font-size: 0.78rem;
        flex: 1;
    }
    
    .fixed-cta-icon {
        display: none;
    }
    
    .nav-close-btn {
        top: 20px;
        right: 20px;
        width: 42px;
        height: 42px;
    }
    
    .close-line {
        width: 18px;
        height: 2px;
    }
    
    /* SP: 縦スクロール前提で上下に余白、左右は狭く */
    .nav-overlay-content {
        padding: 80px 24px 120px;
        align-items: flex-start;
        justify-content: flex-start;
    }
    
    .nav-menu {
        grid-template-columns: 1fr;
        gap: 28px;
        text-align: center;
        max-width: 360px;
        margin: 0 auto;
    }
    
    /* ブランド */
    .nav-brand {
        padding-bottom: 18px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .nav-brand h2 {
        font-size: 1.35rem;
        letter-spacing: 0.12em;
        margin-bottom: 10px;
    }
    
    .nav-brand-sub {
        font-size: 1.05rem;
        margin-top: 4px;
    }
    
    .nav-tagline {
        font-size: 0.7rem;
        line-height: 1.7;
    }
    
    /* ナビ項目 */
    .nav-item {
        margin-bottom: 6px;
    }
    
    .nav-link {
        flex-direction: column;
        align-items: center;
        gap: 4px;
        padding: 10px 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    }
    
    .nav-link:hover {
        transform: none;
    }
    
    .nav-en {
        font-size: 1.1rem;
        letter-spacing: 0.22em;
        min-width: auto;
    }
    
    .nav-ja {
        font-size: 0.7rem;
        letter-spacing: 0.2em;
    }
    
    /* サブリンク */
    .nav-sublinks {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        gap: 10px;
        margin-top: 8px;
    }
    
    .nav-sublink {
        width: auto;
        flex: 1 1 45%;
        max-width: 160px;
        font-size: 0.72rem;
        padding: 10px 12px;
        justify-content: center;
    }
    
    .nav-sublink-icon {
        width: 14px;
        height: 14px;
    }
    
    /* CTAボタン */
    .nav-cta-group {
        margin-top: 8px;
        gap: 8px;
        align-items: stretch;
    }
    
    .nav-cta-btn {
        width: 100%;
        max-width: none;
        padding: 14px 16px;
        font-size: 0.82rem;
        letter-spacing: 0.18em;
    }
    
    /* コンタクト */
    .nav-contact {
        text-align: center;
        margin-top: 10px;
        padding-top: 20px;
        border-top: 1px solid rgba(255, 255, 255, 0.12);
    }
    
    .nav-contact-label {
        font-size: 0.65rem;
        margin-bottom: 6px;
    }
    
    .nav-contact-info {
        font-size: 0.78rem;
        margin-bottom: 12px;
        line-height: 1.6;
    }
    
    .nav-contact-btn {
        display: inline-block;
        padding: 10px 24px;
    }
    
    .nav-contact-tel {
        font-size: 1.15rem;
    }
    
    .nav-contact-hours {
        font-size: 0.7rem;
        margin-top: 10px;
        line-height: 1.7;
    }
    
    /* モバイル: 画面いっぱいに表示（見切れを最小限にするため中央揃え） */
    .hero-bg-video {
        background-color: #000;
    }
    .hero-video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center center;
    }
}

@media (max-width: 480px) {
    .hamburger-btn {
        top: 68px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
    
    .fixed-cta-container {
        bottom: 15px;
        gap: 6px;
        width: calc(100% - 20px);
    }
    
    .fixed-cta-btn {
        padding: 10px 3px;
        font-size: 0.66rem;
        letter-spacing: 0.05em;
    }
    
    .fixed-cta-icon {
        display: none;
    }
    
    .nav-close-btn {
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
    }
    
    .hamburger-line {
        width: 20px;
    }
    
    .nav-overlay-content {
        padding: 70px 18px 110px;
    }
    
    .nav-menu {
        gap: 22px;
        max-width: 320px;
    }
    
    .nav-brand h2 {
        font-size: 1.2rem;
        letter-spacing: 0.1em;
    }
    
    .nav-brand-sub {
        font-size: 0.95rem;
    }
    
    .nav-tagline {
        font-size: 0.66rem;
    }
    
    .nav-link {
        padding: 8px 0;
    }
    
    .nav-en {
        font-size: 1rem;
        letter-spacing: 0.2em;
    }
    
    .nav-ja {
        font-size: 0.66rem;
    }
    
    .nav-sublinks {
        margin-top: 4px;
        gap: 8px;
    }
    
    .nav-sublink {
        flex: 1 1 100%;
        max-width: 240px;
        font-size: 0.7rem;
        padding: 9px 14px;
    }
    
    .nav-sublink-icon {
        width: 14px;
        height: 14px;
    }
    
    .nav-cta-group {
        gap: 7px;
    }
    
    .nav-cta-btn {
        padding: 12px 14px;
        font-size: 0.78rem;
        letter-spacing: 0.15em;
    }
    
    .nav-contact-info {
        font-size: 0.74rem;
    }
    
    .nav-contact-tel {
        font-size: 1.05rem;
    }
    
    .nav-contact-hours {
        font-size: 0.66rem;
    }
}

/* ========================================
   タイポグラフィ
   ======================================== */
h1, h2, h3 {
    font-weight: 300;
    letter-spacing: 0.1em;
}

/* ========================================
   共通レイアウト
   ======================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

section {
    position: relative;
    overflow: hidden;
}

/* ========================================
   公式ヘッダー（南成瀬デザイン準拠）
   ======================================== */
header.mincho .fixb {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 200;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

header.mincho .header {
    margin: 0 auto;
    position: relative;
    width: calc(100% - 40px);
    max-width: 1200px;
    padding: 0;
    height: 80px;
}

header.mincho .logo {
    position: relative;
    top: 10px;
    left: 0;
    width: 430px;
    line-height: 0;
    font-size: 0;
}

header.mincho .logo a {
    display: block;
}

header.mincho .logo img {
    width: 100%;
    height: auto;
}

header.mincho .headnavi {
    position: absolute;
    top: 22px;
    right: 0;
    font-size: 0;
    line-height: 0;
    display: flex;
    justify-content: flex-end;
    list-style: none;
    padding: 0;
    margin: 0;
}

header.mincho .headnavi li {
    margin-left: 10px;
    height: 40px;
}

header.mincho .headnavi li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: #000;
    line-height: 1;
    text-align: center;
    transition: all 0.5s ease-in-out;
    text-decoration: none;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", serif;
}

body:not(.mobile) header.mincho .headnavi li a:hover {
    opacity: 0.6;
    text-decoration: none;
}

.hn-icon {
    display: block;
    margin-left: 8px;
    width: 0;
    height: 0;
    border-top: solid 4px transparent;
    border-right: solid 6px transparent;
    border-bottom: solid 4px transparent;
    border-left: solid 6px #000000;
}

header.mincho .headnavi li.hn-entry { width: 150px; }
header.mincho .headnavi li.hn-entry a { background: #525760; color: #fff; border-radius: 3px; padding: 3px 5px; }
header.mincho .headnavi li.hn-res { width: 150px; }
header.mincho .headnavi li.hn-res a { background: #a72426; color: #fff; border-radius: 3px; padding: 3px 5px; }
header.mincho .headnavi li.hn-req { width: 150px; }
header.mincho .headnavi li.hn-req a { background: #928178; color: #fff; border-radius: 3px; padding: 3px 5px; }

header.mincho .sp_navi {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    width: 100%;
    z-index: 999999;
    background: #fff;
    padding: 0;
    margin: 0;
    display: none;
    list-style: none;
}

header.mincho .sp_navi li {
    width: calc(100% / 3);
    height: 100%;
    font-size: 0;
    line-height: 0;
    background: #525760;
}

header.mincho .sp_navi li:not(:last-child) { border-right: solid 1px #fff; }
header.mincho .sp_navi li.spn-res { background: #a72426; }
header.mincho .sp_navi li.spn-req { background: #928178; }

header.mincho .sp_navi li a {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 3px 1px;
    color: #fff;
    text-decoration: none;
}

header.mincho .sp_navi li a .spn-ja {
    font-size: 16px;
    font-size: calc(15vw / 3.9);
    line-height: 1.3;
    font-weight: 700;
    font-family: "游明朝", "Yu Mincho", YuMincho, serif;
}

header.mincho .gnavi_wrap {
    border-bottom: solid 1px #e8e8e8;
}

header.mincho .gnavi {
    width: calc(100% - 40px);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

header.mincho .gnavi li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 5px 2px;
    transition: 0.5s all ease-in-out 0s;
    height: 43px;
    text-decoration: none;
}

header.mincho .gnavi li a p {
    display: inline-block;
    font-size: 13px;
    color: #524517;
    font-weight: 900;
    line-height: 1;
    text-decoration: none;
    text-align: center;
    position: relative;
    width: 100%;
    font-family: "游明朝", "Yu Mincho", YuMincho, serif;
}

header.mincho .gnavi li a p .off {
    display: block;
    letter-spacing: 0.2em;
    position: relative;
    width: 100%;
    text-align: center;
    transition: 0.4s all ease-in-out 0s;
    opacity: 1;
}

header.mincho .gnavi li a p .on {
    font-size: 105%;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    text-align: center;
    transition: 0.4s all ease-in-out 0s;
    opacity: 0;
}

header.mincho .gnavi li a p .on span {
    display: inline-block;
    position: relative;
}

header.mincho .gnavi li a p .on span::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 3px;
    background: #c9c9ca;
    transition: 0.4s all ease-in-out 0s;
}

body:not(.mobile) header.mincho .gnavi li a:hover { text-decoration: none !important; }
body:not(.mobile) header.mincho .gnavi li a:hover p .off { opacity: 0; }
body:not(.mobile) header.mincho .gnavi li a:hover p .on { opacity: 1; }
body:not(.mobile) header.mincho .gnavi li a:hover p .on span::after { left: 0; width: 100%; }

@media screen and (max-width: 1180px) {
    header.mincho .logo { top: 18px; width: 360px; }
    header.mincho .headnavi li a { font-size: 13px; }
    header.mincho .headnavi li.hn-entry,
    header.mincho .headnavi li.hn-res,
    header.mincho .headnavi li.hn-req { width: 110px; }
}

@media screen and (max-width: 768px) {
    header.mincho .header { width: 100%; height: 50px; padding: 5px 10px; }
    header.mincho .logo { width: 300px; top: 1px; left: 5px; }
    header.mincho .headnavi { display: none; }
    header.mincho .sp_navi { display: flex; }
    header.mincho .gnavi_wrap { display: none; }
}

/* ========================================
   ヒーローセクション
   ======================================== */
.hero-background-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: -1;
}

body.footer-backdrop-active .hero-background-fixed,
body.footer-backdrop-active .hero-bg-slide,
body.footer-backdrop-active .hero-video {
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
}

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

.hero-background-slider {
    width: 100%;
    height: 100%;
}

.hero-bg-slide {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 2s ease-in-out, transform 0.8s ease-out;
    z-index: 0;
    transform: scale(1);
    will-change: transform, opacity;
}

.hero-bg-slide.active {
    opacity: 1;
}

.hero-bg-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.1) 0%, rgba(0, 0, 0, 0.2) 100%);
    pointer-events: none;
}

/* ヒーロー動画背景 */
.hero-bg-video {
    background-color: #000;
}

/* ヒーロー動画スタイル */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画面全体を覆うように戻しつつ、中心を合わせる */
    object-position: center center;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    transition: none;
    will-change: transform, opacity;
}

.hero-title {
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: clamp(3.5rem, 12vw, 6rem);
    font-weight: 300;
    color: #fff;
    letter-spacing: 0.35em;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3), 0 4px 60px rgba(0, 0, 0, 0.2);
    display: flex;
    justify-content: center;
}

.hero-title .letter {
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: letterFadeIn 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.hero-title .letter:nth-child(1) {
    animation-delay: 0.3s;
}

.hero-title .letter:nth-child(2) {
    animation-delay: 0.5s;
}

.hero-title .letter:nth-child(3) {
    animation-delay: 0.7s;
}

.hero-title .letter:nth-child(4) {
    animation-delay: 0.9s;
}

.hero-title .letter:nth-child(5) {
    animation-delay: 1.1s;
}

@keyframes letterFadeIn {
    0% {
        opacity: 0;
        transform: translateY(20px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

@keyframes fadeInScale {
    0% {
        opacity: 0;
        transform: scale(0.95);
    }
    100% {
        opacity: 1;
        transform: scale(1);
    }
}

/* ========================================
   RITMO Meaning セクション
   ======================================== */
.ritmo-meaning {
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 20px;
    position: relative;
    background: transparent;
}

.ritmo-meaning-content {
    text-align: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

.ritmo-name {
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: clamp(2.5rem, 8vw, 4rem);
    font-weight: 200;
    letter-spacing: 0.3em;
    color: #fff;
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.3), 0 4px 60px rgba(0, 0, 0, 0.2);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.5s ease, transform 1.5s ease;
}

.ritmo-name.visible {
    opacity: 1;
    transform: scale(1);
}

.ritmo-origin {
    font-size: clamp(1.5rem, 5vw, 2.5rem);
    font-weight: 300;
    letter-spacing: 0.2em;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 30px rgba(0, 0, 0, 0.4), 0 4px 60px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 1.5s ease, transform 1.5s ease;
    margin-top: 30px;
}

.ritmo-origin.visible {
    opacity: 1;
    transform: scale(1);
}

/* フェードインアニメーション */
.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease, transform 1s ease;
}

.fade-in-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-up-delay {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease 0.3s, transform 1s ease 0.3s;
}

.fade-in-up-delay.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ロケーションセクション（統合）
   ======================================== */
.location-combined {
    background: #c9bfb3;
    padding: 250px 0;
    position: relative;
    min-height: 150vh;
}

.location-border-left {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 1px;
    background: rgba(255, 255, 255, 0.3);
}

.location-content-center {
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 60px;
}

.location-text-block {
    display: inline-block;
    margin-bottom: 80px;
    padding-bottom: 80px;
    position: relative;
}

/* 罫線 */
.location-text-block::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
}

.location-line1 {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    line-height: 1;
}

.location-line2 {
    color: #fff;
    font-weight: 200;
    letter-spacing: 0.08em;
    line-height: 1;
    font-size: 1.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
    margin-top: 0;
    margin-bottom: 0;
}

.large-number {
    font-size: 9rem;
    font-weight: 100;
    color: #fff;
    line-height: 1;
    display: inline-block;
    vertical-align: baseline;
    margin: 0 6px 0 10px;
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    animation: numberPulse 3s ease-in-out infinite;
    position: relative;
}

/* 6分の強調アニメーション */
@keyframes numberPulse {
    0%, 100% {
        transform: scale(1);
        text-shadow: 0 0 20px rgba(255, 255, 255, 0.3);
    }
    50% {
        transform: scale(1.05);
        text-shadow: 0 0 30px rgba(255, 255, 255, 0.5),
                     0 0 60px rgba(255, 255, 255, 0.3);
    }
}

.unit {
    font-size: 1.5rem;
    font-weight: 200;
    vertical-align: baseline;
    letter-spacing: 0.08em;
}

.location-sale-schedule {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 18px;
    margin: 48px auto 0;
    color: #fff;
    font-weight: 300;
    line-height: 1;
    text-align: center;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.25), 0 1px 12px rgba(0, 0, 0, 0.16);
}

.location-sale-year,
.location-sale-label {
    font-size: 1.35rem;
    letter-spacing: 0.22em;
    white-space: nowrap;
}

.location-sale-main {
    display: inline-flex;
    align-items: baseline;
    gap: 6px;
}

.location-sale-month {
    display: inline-block;
    color: #fff;
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: 8rem;
    font-weight: 100;
    line-height: 0.9;
    letter-spacing: 0;
    animation: numberPulse 3s ease-in-out infinite;
}

.location-sale-month-unit {
    font-size: 1.65rem;
    font-weight: 200;
    letter-spacing: 0.12em;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .location-sale-schedule {
        gap: 14px;
        margin-top: 42px;
    }

    .location-sale-month {
        font-size: 7rem;
    }

    .location-sale-year,
    .location-sale-label {
        font-size: 1.18rem;
    }

    .location-sale-month-unit {
        font-size: 1.45rem;
    }
}

@media (max-width: 768px) {
    .location-sale-schedule {
        gap: 10px;
        margin-top: 36px;
    }

    .location-sale-month {
        font-size: 5.8rem;
    }

    .location-sale-year,
    .location-sale-label {
        font-size: 1rem;
        letter-spacing: 0.16em;
    }

    .location-sale-month-unit {
        font-size: 1.2rem;
    }
}

@media (max-width: 420px) {
    .location-sale-schedule {
        gap: 8px;
    }

    .location-sale-month {
        font-size: 4.7rem;
    }

    .location-sale-year,
    .location-sale-label {
        font-size: 0.86rem;
        letter-spacing: 0.1em;
    }

    .location-sale-month-unit {
        font-size: 1rem;
    }
}

/* 情報ブロック */
.location-info-block {
    display: inline-block;
    position: relative;
}

/* ロケーション パース画像 */
.location-perspective {
    margin: 60px 0;
    text-align: center;
}

.perspective-image {
    max-width: 800px;
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: transform 0.6s ease, box-shadow 0.6s ease;
}

.perspective-image:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.4);
}

.location-info-block > p {
    position: relative;
    padding: 20px 0;
}

.location-info-block > p:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
}

.location-brand {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 2;
}

.location-access {
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 0;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 2;
}

.location-zeh {
    font-size: 1.25rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.12em;
    line-height: 2;
    margin-bottom: 0;
}

.advance-notice {
    display: flex;
    align-items: center;
    gap: 18px;
    width: min(1120px, 100%);
    margin: 58px auto 0;
    padding: 14px 24px;
    background: rgba(239, 236, 222, 0.94);
    border-top: 3px solid #111;
    box-sizing: border-box;
    color: #2f2f2f;
    text-align: left;
    box-shadow: 0 10px 32px rgba(0, 0, 0, 0.08);
}

.advance-notice__label {
    display: grid;
    place-items: center;
    flex: 0 0 78px;
    min-height: 56px;
    margin: 0;
    border: 2px solid #7d7d7d;
    background: rgba(255, 255, 255, 0.42);
    color: #222;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    line-height: 1.25;
    text-align: center;
}

.advance-notice__body {
    flex: 1;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    line-height: 1.7;
    letter-spacing: 0.02em;
}

.advance-notice__body p {
    margin: 0;
}

.advance-notice__body strong {
    font-size: 0.95rem;
    font-weight: 700;
}

.advance-notice--header {
    width: 100%;
    margin: 0;
    padding: 14px clamp(16px, 3.8vw, 58px);
    background: #fff;
    border-top: 4px solid #111;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: none;
}

@media (max-width: 768px) {
    .advance-notice {
        display: block;
        margin-top: 42px;
        padding: 12px 14px 14px;
        border-top-width: 2px;
    }

    .advance-notice__label {
        width: 74px;
        min-height: 42px;
        margin: 0 0 10px;
        font-size: 0.78rem;
    }

    .advance-notice__body {
        font-size: 0.72rem;
        line-height: 1.65;
    }

    .advance-notice__body strong {
        display: inline-block;
        margin-bottom: 2px;
        font-size: 0.8rem;
    }

    .advance-notice--header {
        margin-top: 0;
        padding: 10px 14px 12px;
        border-top-width: 3px;
    }
}

/* ========================================
   パララックスセクション
   ======================================== */
.parallax-section {
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.parallax-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

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

/* ========================================
   コンセプト統合セクション
   ======================================== */
.concept-combined {
    position: relative;
    min-height: 250vh;
    overflow: hidden;
}

.concept-bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url('../img/concept-bg-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    will-change: opacity, visibility;
    transform: translateZ(0);
    -webkit-transform: translateZ(0);
}

.concept-bg-fixed::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.25);
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
}

.concept-content-wrapper {
    position: relative;
    z-index: 1;
}

/* 縦書きテキストエリア */
.concept-vertical-wrapper {
    min-height: 120vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 0;
}

.concept-vertical {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 50px;
}

.concept-vertical-title {
    display: flex;
    gap: 50px;
    justify-content: center;
    align-items: flex-start;
}

.vertical-text {
    writing-mode: vertical-rl;
    text-orientation: upright;
    font-size: 2rem;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.3em;
    line-height: 2.2;
    text-shadow: 0 3px 20px rgba(0, 0, 0, 0.5), 0 6px 40px rgba(0, 0, 0, 0.3);
}

/* 詳細テキストエリア */
.concept-detail-wrapper {
    min-height: 130vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 0;
}

.concept-detail {
    background: transparent;
    padding: 60px 50px;
    border-radius: 0;
    max-width: 700px;
    margin: 0 auto;
    box-shadow: none;
}

.concept-detail-text {
    font-size: 1.15rem;
    line-height: 2.2;
    color: #fff;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-align: left;
    white-space: normal;
    word-break: keep-all;
    overflow-wrap: break-word;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1.2s ease, transform 1.2s ease;
}

.concept-detail-text.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   ON/OFFセクション
   ======================================== */
.onoff-section {
    background: #fff;
    padding: 0;
    position: relative;
}

.onoff-item {
    display: flex;
    align-items: center;
    min-height: 50vh;
    position: relative;
    overflow: hidden;
    margin: 0;
}

.onoff-item + .onoff-item {
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* ONセクション - ダークテーマ */
.onoff-on .onoff-text {
    background: linear-gradient(135deg, #1a1a1a 0%, #2c2c2c 100%);
}

.onoff-on .onoff-title {
    color: #fff;
    text-shadow: 0 0 40px rgba(255, 255, 255, 0.3);
}

.onoff-on .onoff-description {
    color: rgba(255, 255, 255, 0.85);
}

/* OFFセクション - ライトテーマ */
.onoff-off .onoff-text {
    background: linear-gradient(135deg, #f5f5f5 0%, #ffffff 100%);
}

.onoff-off .onoff-title {
    color: #2c2c2c;
    text-shadow: 0 0 40px rgba(0, 0, 0, 0.1);
}

.onoff-off .onoff-description {
    color: #666;
}

.onoff-reverse {
    flex-direction: row-reverse;
}

.onoff-image-wrapper {
    flex: 1;
    height: 50vh;
    position: relative;
    overflow: hidden;
}

.onoff-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1);
    transition: transform 0.6s ease;
    opacity: 0;
    transform: scale(1.1);
}

.onoff-item.visible .onoff-image {
    animation: imageZoomIn 1.5s ease forwards;
}

@keyframes imageZoomIn {
    0% {
        transform: scale(1.2);
        opacity: 0;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.onoff-item:hover .onoff-image {
    transform: scale(1.05);
}

/* ----------------------------------------
   ON/OFF レスポンシブ（SP：横幅いっぱい）
   ---------------------------------------- */
@media (max-width: 767px) {
    .onoff-section {
        width: 100%;
        max-width: 100%;
        padding: 0;
        margin: 0;
        overflow: hidden;
    }

    .onoff-item,
    .onoff-item.onoff-reverse {
        display: block;
        flex-direction: column;
        width: 100%;
        max-width: 100%;
        min-height: 0;
        margin: 0;
        padding: 0;
    }

    .onoff-image-wrapper {
        width: 100%;
        max-width: 100%;
        height: auto;
        min-height: 56vw;
        flex: none;
        margin: 0;
        padding: 0;
    }

    .onoff-image {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: cover;
    }

    .onoff-text {
        width: 100%;
        max-width: 100%;
        flex: none;
        padding: 40px 24px;
        box-sizing: border-box;
    }

    .onoff-content {
        width: 100%;
        max-width: 100%;
        text-align: center;
    }
}

.onoff-text {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 60px;
    position: relative;
    transition: background 0.6s ease;
}

/* テキストエリアの装飾 */
.onoff-text::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 200px;
    height: 200px;
    border-radius: 50%;
    opacity: 0;
    transition: opacity 1s ease 0.8s, transform 1s ease 0.8s;
}

.onoff-on .onoff-text::before {
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
}

.onoff-off .onoff-text::before {
    background: radial-gradient(circle, rgba(0, 0, 0, 0.05) 0%, transparent 70%);
}

.onoff-item.visible .onoff-text::before {
    opacity: 1;
    transform: translate(-50%, -50%) scale(3);
}

.onoff-content {
    text-align: center;
    position: relative;
    z-index: 1;
}

.onoff-title {
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: clamp(4rem, 10vw, 8rem);
    font-weight: 200;
    letter-spacing: 0.2em;
    margin: 0 0 30px 0;
    opacity: 0;
    transform: scale(0.8) translateY(40px);
    transition: opacity 1.2s ease 0.6s, transform 1.2s ease 0.6s;
}

.onoff-item.visible .onoff-title {
    opacity: 1;
    transform: scale(1) translateY(0);
}

.onoff-description {
    font-family: 'Noto Sans JP', sans-serif;
    font-size: clamp(1rem, 2vw, 1.5rem);
    font-weight: 300;
    letter-spacing: 0.1em;
    margin: 0;
    line-height: 1.8;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 1s ease 1s, transform 1s ease 1s;
}

.onoff-item.visible .onoff-description {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   PLANセクション
   ======================================== */
.plan-section {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../img/plan-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.plan-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

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

.plan-content {
    text-align: left;
    color: #fff;
    max-width: 600px;
}

.plan-title {
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: clamp(2rem, 5.5vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 0.4em;
    margin-bottom: 35px;
    color: #fff;
    text-transform: uppercase;
}

.plan-description {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    line-height: 2.5;
    margin-bottom: 50px;
    font-weight: 200;
    letter-spacing: 0.15em;
}

.plan-more-button {
    display: inline-block;
    padding: 10px 45px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: lowercase;
    font-weight: 200;
    transition: all 0.3s ease;
}

.plan-more-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   LOCATIONセクション
   ======================================== */
.location-section {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../img/location-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.location-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

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

.location-content {
    text-align: left;
    color: #fff;
    max-width: 600px;
}

.location-section-title {
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: clamp(2rem, 5.5vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 0.4em;
    margin-bottom: 35px;
    color: #fff;
    text-transform: uppercase;
}

.location-section-description {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    line-height: 2.5;
    margin-bottom: 50px;
    font-weight: 200;
    letter-spacing: 0.15em;
}

.location-more-button {
    display: inline-block;
    padding: 10px 45px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: lowercase;
    font-weight: 200;
    transition: all 0.3s ease;
}

.location-more-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   ACCESSセクション（LOCATIONと同デザイン）
   ======================================== */
.access-section {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../img/access-bg.jpg?v=2');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #0a0e15;
    padding: 120px 0;
    overflow: hidden;
    margin: 0;
    border: 0;
}

/* 念のため、最下部の隙間（白ライン）を背景画像の続きで完全に埋める */
.access-section::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 2px;
    background: #0a0e15;
    z-index: 3;
    pointer-events: none;
}

.access-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.35);
    z-index: 1;
}

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

.access-content {
    text-align: left;
    color: #fff;
    max-width: 600px;
}

.access-section-title {
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: clamp(2rem, 5.5vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 0.4em;
    margin-bottom: 35px;
    color: #fff;
    text-transform: uppercase;
}

.access-section-description {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    line-height: 2.5;
    margin-bottom: 50px;
    font-weight: 200;
    letter-spacing: 0.15em;
}

.access-more-button {
    display: inline-block;
    padding: 10px 45px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: lowercase;
    font-weight: 200;
    transition: all 0.3s ease;
}

.access-more-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   QUALITYセクション
   ======================================== */
.quality-section {
    height: 100vh;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background-image: url('../img/quality-bg-new.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 0;
}

.quality-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(20, 40, 50, 0.75), rgba(0, 0, 0, 0.65));
    z-index: 1;
}

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

.quality-content {
    text-align: left;
    color: #fff;
    max-width: 600px;
}

.quality-section-title {
    font-family: 'Futura', 'Century Gothic', 'Avenir', sans-serif;
    font-size: clamp(2rem, 5.5vw, 2.8rem);
    font-weight: 200;
    letter-spacing: 0.4em;
    margin-bottom: 35px;
    color: #fff;
    text-transform: uppercase;
}

.quality-section-description {
    font-size: clamp(0.8rem, 2vw, 0.95rem);
    line-height: 2.5;
    margin-bottom: 50px;
    font-weight: 200;
    letter-spacing: 0.15em;
}

.quality-more-button {
    display: inline-block;
    padding: 10px 45px;
    border: 1px solid rgba(255, 255, 255, 0.65);
    color: #fff;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.4em;
    text-transform: lowercase;
    font-weight: 200;
    transition: all 0.3s ease;
}

.quality-more-button:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

/* ========================================
   アニメーション
   ======================================== */
.fade-in {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up {
    opacity: 0;
    transform: translateY(60px);
    transition: opacity 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94),
                transform 1.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-up-delayed {
    opacity: 0;
    transform: translateY(80px);
    transition: opacity 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s,
                transform 1.6s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.4s;
}

.slide-up-delayed.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   レスポンシブデザイン - タブレット
   ======================================== */
@media (max-width: 1024px) {
    .location-content-center {
        padding: 0 40px;
    }
    
    .location-line1 {
        font-size: 0.7rem;
    }
    
    .location-line2 {
        font-size: 1.3rem;
    }
    
    .large-number {
        font-size: 8rem;
        margin: 0 5px 0 8px;
    }
    
    .unit {
        font-size: 1.3rem;
    }
    
    .location-brand,
    .location-access {
        font-size: 1.15rem;
    }
    
    .location-zeh {
        font-size: 0.85rem;
    }
    
    .vertical-text {
        font-size: 1.6rem;
        gap: 40px;
    }
    
    .concept-vertical-title {
        gap: 40px;
    }
}

/* ========================================
   レスポンシブデザイン - モバイル
   ======================================== */
@media (max-width: 768px) {
    section {
        min-height: auto;
    }
    
    .hero {
        min-height: 100vh;
    }
    
    .hero-title {
        letter-spacing: 0.25em;
    }
    
    .ritmo-meaning {
        min-height: 100vh;
        padding: 80px 20px;
    }
    
    .ritmo-name {
        margin-bottom: 20px;
    }
    
    .location-combined {
        padding: 200px 0;
        min-height: 150vh;
    }
    
    .location-text-block {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    
    .location-perspective {
        margin: 40px 0;
    }
    
    .perspective-image {
        max-width: 100%;
        border-radius: 6px;
    }
    
    .location-info-block > p {
        padding: 15px 0;
    }
    
    .large-number {
        font-size: 7rem;
    }
    
    .location-content-center {
        padding: 0 30px;
    }
    
    .location-line1 {
        font-size: 0.7rem;
    }
    
    .location-line2 {
        font-size: 1.2rem;
    }
    
    .large-number {
        font-size: 7rem;
        margin: 0 4px 0 8px;
    }
    
    .unit {
        font-size: 1.2rem;
    }
    
    .location-brand,
    .location-access,
    .location-zeh {
        font-size: 1.1rem;
        margin-bottom: 25px;
        letter-spacing: 0.1em;
    }
    
    .concept-combined {
        min-height: 250vh;
    }
    
    .concept-bg-fixed {
        position: fixed;
        height: 100vh;
    }
    
    .concept-vertical-wrapper {
        padding: 80px 0;
        min-height: 120vh;
    }
    
    .concept-detail-wrapper {
        padding: 80px 0;
        min-height: 130vh;
    }
    
    .concept-vertical {
        gap: 30px;
    }
    
    .concept-vertical-title {
        gap: 30px;
    }
    
    .vertical-text {
        font-size: 1.4rem;
        letter-spacing: 0.2em;
    }
    
    .concept-detail {
        padding: 40px 30px;
        margin: 0 20px;
    }
    
    .concept-detail-text {
        font-size: 1rem;
        line-height: 2;
        white-space: pre-line;
        word-break: keep-all;
        overflow-wrap: normal;
        color: #fff;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
    }
    
    .onoff-item {
        flex-direction: column;
    }
    
    .onoff-image-wrapper {
        height: 25vh;
        width: 100%;
    }
    
    .onoff-text {
        padding: 20px;
        min-height: 25vh;
    }
    
    .onoff-title {
        font-size: clamp(2rem, 6vw, 3.5rem);
        margin-bottom: 10px;
    }
    
    .onoff-description {
        font-size: 0.9rem;
        line-height: 1.5;
    }
    
    .plan-section,
    .location-section,
    .access-section,
    .quality-section {
        padding: 80px 0;
        min-height: 80vh;
    }
    
    .plan-content,
    .location-content,
    .access-content,
    .quality-content {
        padding: 0 20px;
    }
    
    .plan-title,
    .location-section-title,
    .access-section-title,
    .quality-section-title {
        margin-bottom: 40px;
    }
    
    .plan-description,
    .location-section-description,
    .access-section-description,
    .quality-section-description {
        font-size: 1.05rem;
        margin-bottom: 50px;
        line-height: 2;
    }
    
    .plan-more-button,
    .location-more-button,
    .access-more-button,
    .quality-more-button {
        padding: 12px 50px;
        font-size: 0.85rem;
    }
    
    /* パララックスはモバイルでも有効 */
}

/* ========================================
   フッター
   ======================================== */
.footer {
    background: #2c2c2c;
    color: #fff;
    padding: 80px 0 40px;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

/* CTA セクション */
.footer-cta {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 80px;
    padding-bottom: 80px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-cta-item {
    background: rgba(255, 255, 255, 0.05);
    padding: 40px 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.footer-cta-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-5px);
}

.footer-cta-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    color: #fff;
}

.footer-cta-icon svg {
    width: 100%;
    height: 100%;
}

.footer-cta-content h3 {
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.footer-cta-content p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-phone {
    font-size: 1.8rem !important;
    font-weight: 500;
    color: #fff !important;
    letter-spacing: 0.05em;
    margin: 15px 0 !important;
}

.footer-hours {
    font-size: 0.85rem !important;
    margin-top: 10px !important;
}

.footer-cta-btn {
    display: inline-block;
    padding: 12px 30px;
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.footer-cta-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

.footer-cta-entry {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.3) 0%, rgba(26, 26, 26, 0.3) 100%);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.footer-cta-entry:hover {
    background: linear-gradient(135deg, rgba(44, 44, 44, 0.5) 0%, rgba(26, 26, 26, 0.5) 100%);
    border-color: rgba(255, 255, 255, 0.3);
}

.footer-cta-entry .footer-cta-btn {
    background: #2c2c2c;
    border-color: #2c2c2c;
}

.footer-cta-entry .footer-cta-btn:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
}
    border-color: #fff;
}

/* 情報セクション */
.footer-info {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    margin-bottom: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-info-section h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 0.1em;
}

.footer-info-section p {
    font-size: 0.85rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
}

/* フッターナビ */
.footer-nav {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.footer-nav a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.85rem;
    letter-spacing: 0.05em;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: #fff;
}

/* フッターボトム */
.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-family: 'Futura', 'Century Gothic', sans-serif;
    font-size: 1.2rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 15px;
}

.footer-copyright {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
}

/* ========================================
   SP固定フッター（768px以下のみ表示）
   ======================================== */
.sp-fixed-footer {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.08);
    border-top: 1px solid rgba(255, 255, 255, 0.5);
    z-index: 900;
    padding: 0;
}

.sp-footer-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 14px 10px;
    text-decoration: none;
    font-size: 0.7rem;
    letter-spacing: 0.08em;
    transition: all 0.3s ease;
    border: none;
    background: none;
    flex: 1;
    position: relative;
}

.sp-footer-btn::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 60%;
    background: rgba(0, 0, 0, 0.08);
}

.sp-footer-btn:last-child::after {
    display: none;
}

.sp-footer-btn svg {
    width: 22px;
    height: 22px;
    margin-bottom: 5px;
    stroke-width: 1.5;
}

.sp-footer-btn span {
    display: block;
    font-weight: 300;
}

/* 電話ボタン */
.sp-footer-phone {
    color: #2c2c2c;
}

.sp-footer-phone:active {
    background: rgba(201, 191, 179, 0.2);
}

/* 資料請求ボタン */
.sp-footer-document {
    color: #2c2c2c;
}

.sp-footer-document:active {
    background: rgba(201, 191, 179, 0.2);
}

/* 来場予約ボタン */
.sp-footer-visit {
    color: #2c2c2c;
}

.sp-footer-visit:active {
    background: rgba(201, 191, 179, 0.2);
}

/* レスポンシブ - タブレット */
@media (max-width: 1024px) {
    .footer-cta {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .footer-info {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* レスポンシブ - モバイル */
@media (max-width: 768px) {
    /* SP固定フッター表示 */
    .sp-fixed-footer {
        display: flex;
    }
    
    /* 通常のフッターに余白追加（固定フッターに隠れないように） */
    .footer {
        padding: 60px 0 80px;
    }
    
    body {
        padding-bottom: 60px;
    }
    
    .footer-container {
        padding: 0 30px;
    }
    
    .footer-cta {
        margin-bottom: 60px;
        padding-bottom: 60px;
    }
    
    .footer-cta-item {
        padding: 30px 20px;
    }
    
    .footer-phone {
        font-size: 1.5rem !important;
    }
    
    .footer-info {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .ritmo-meaning {
        min-height: 100vh;
        padding: 60px 15px;
    }
    
    .ritmo-name {
        margin-bottom: 15px;
    }
    
    .footer-container {
        padding: 0 20px;
    }
    
    .footer-cta-content h3 {
        font-size: 1rem;
    }
    
    .footer-phone {
        font-size: 1.3rem !important;
    }
    
    .footer-info-section h4 {
        font-size: 0.9rem;
    }
    
    .footer-info-section p {
        font-size: 0.8rem;
    }
}

/* ========================================
   小型モバイル
   ======================================== */
@media (max-width: 480px) {
    .location-combined {
        padding: 180px 0;
        min-height: 150vh;
    }
    
    .location-text-block {
        margin-bottom: 50px;
        padding-bottom: 50px;
    }
    
    .location-perspective {
        margin: 30px 0;
    }
    
    .perspective-image {
        border-radius: 4px;
    }
    
    .location-info-block > p {
        padding: 12px 0;
    }
    
    .large-number {
        font-size: 5.5rem;
    }
    
    .location-content-center {
        padding: 0 20px;
    }
    
    .location-line1 {
        font-size: 0.65rem;
        letter-spacing: 0.18em;
    }
    
    .location-line2 {
        font-size: 1.1rem;
    }
    
    .large-number {
        font-size: 5.5rem;
        margin: 0 3px 0 6px;
    }
    
    .unit {
        font-size: 1.1rem;
    }
    
    .location-brand,
    .location-access,
    .location-zeh {
        font-size: 1rem;
        margin-bottom: 20px;
        letter-spacing: 0.08em;
    }
    
    .vertical-text {
        font-size: 1.2rem;
    }
    
    .concept-vertical {
        gap: 20px;
    }
    
    .concept-vertical-title {
        gap: 20px;
    }
    
    .concept-detail {
        padding: 35px 25px;
        margin: 0 15px;
    }
    
    .concept-detail-text {
        font-size: 0.95rem;
        white-space: pre-line;
        word-break: keep-all;
        overflow-wrap: normal;
        color: #fff;
        text-shadow: 0 2px 20px rgba(0, 0, 0, 0.5), 0 4px 40px rgba(0, 0, 0, 0.3);
    }
    
    .plan-content {
        padding: 0 15px;
    }
    
    .plan-title {
        margin-bottom: 35px;
    }
    
    .plan-description {
        font-size: 1rem;
        margin-bottom: 45px;
    }
    
    .plan-more-button {
        padding: 12px 45px;
        font-size: 0.8rem;
    }
    
    .location-content,
    .quality-content {
        padding: 0 15px;
    }
    
    .location-section-title,
    .quality-section-title {
        margin-bottom: 35px;
    }
    
    .location-section-description,
    .quality-section-description {
        font-size: 1rem;
        margin-bottom: 45px;
    }
    
    .location-more-button,
    .quality-more-button {
        padding: 12px 45px;
        font-size: 0.8rem;
    }
}

/* ========================================
   公式フッター（南成瀬デザイン準拠）
   ======================================== */
footer.scroll-point {
    width: 100%;
    padding: 0 0 20px;
    background: #fff;
    font-family: 'EB Garamond', 'Noto Sans JP', serif;
}

/* フッターナビゲーション */
footer.scroll-point .fnavi_wrap {
    margin-bottom: 35px;
    border-bottom: solid 1px #838282;
}

footer.scroll-point .fnavi {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    list-style: none;
}

footer.scroll-point .fnavi li {
    flex: 1;
}

footer.scroll-point .fnavi li a {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 43px;
    padding: 5px 2px;
    text-align: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    color: #524517;
    letter-spacing: 0.2em;
    line-height: 1;
    transition: 0.5s all ease-in-out 0s;
    position: relative;
}

footer.scroll-point .fnavi li a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 3px;
    background: #c9c9ca;
    transition: 0.4s all ease-in-out 0s;
    transform: translateX(-50%);
}

footer.scroll-point .fnavi li a:hover::after {
    width: 80%;
}

footer.scroll-point .fnavi li a:hover {
    color: #333;
}

/* フッターコンテンツ（売主ロゴ + 電話） */
footer.scroll-point .footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* 売主ロゴ */
footer.scroll-point .flogo footer.scroll-point .flogo-label {
    font-size: 12px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 8px;
    font-family: 'Noto Sans JP', sans-serif;
}

footer.scroll-point .flogo footer.scroll-point .flogo-img img {
    max-width: 220px;
    height: auto;
}

/* 電話ボックス */
footer.scroll-point .tel_box footer.scroll-point .tel_box .tel1 {
    font-size: 12px;
    line-height: 1.2;
    color: #333;
    margin-bottom: 10px;
    font-family: 'Noto Sans JP', sans-serif;
}

footer.scroll-point .tel_box .box {
    display: flex;
    align-items: center;
}

.official-tel-number a {
    font-family: 'EB Garamond', serif;
    font-size: 28px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    letter-spacing: 0.05em;
    margin-right: 15px;
    pointer-events: none;
}

footer.scroll-point .tel_box .tel3 {
    font-size: 12px;
    line-height: 1.6;
    color: #333;
    font-family: 'Noto Sans JP', sans-serif;
}

/* レスポンシブ: タブレット */
@media (max-width: 768px) {
    footer.scroll-point .fnavi_wrap {
        display: none;
    }

    footer.scroll-point {
        padding: 30px 0 80px;
    }

    footer.scroll-point .footer {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        padding: 0 20px;
    }

    footer.scroll-point .flogo {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        margin: 30px auto 40px;
        width: 100%;
        gap: 8px;
    }
    
    footer.scroll-point .flogo .logo1 {
        margin-bottom: 0;
        text-align: center;
        width: 100%;
    }
    
    footer.scroll-point .flogo .logo2 {
        display: flex;
        justify-content: center;
        width: 100%;
    }

    footer.scroll-point .tel_box {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
    }

    footer.scroll-point .tel_box .tel1 {
        line-height: 1.6;
        text-align: center;
        margin-bottom: 15px;
        width: 100%;
    }

    footer.scroll-point .tel_box .box {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 10px;
        text-align: center;
        width: 100%;
    }

    footer.scroll-point .tel_box .tel2 {
        margin: 0;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .official-tel-number a {
        margin-right: 0;
        pointer-events: auto;
        font-size: 26px;
        text-align: center;
    }
    
    footer.scroll-point .tel_box .tel3 {
        text-align: center;
        width: 100%;
    }
}

/* レスポンシブ: スマホ */
@media (max-width: 480px) {
    footer.scroll-point {
        padding: 20px 0 100px;
    }
    footer.scroll-point .flogo img {
        max-width: 180px;
    }
    .official-tel-number a {
        font-size: 24px;
    }
    footer.scroll-point .tel_box .tel3 {
        font-size: 11px;
    }
}

/* レスポンシブ: スマートフォン */
@media (max-width: 480px) {
    footer.scroll-point {
        padding: 20px 0 80px;
    }

    footer.scroll-point .footer {
        padding: 0 15px;
    }

    footer.scroll-point .flogo {
        width: 180px;
        margin-bottom: 30px;
    }

    .official-tel-number a {
        font-size: 24px;
    }

    footer.scroll-point .tel_box .tel3 {
        font-size: 11px;
    }
}

/* ========================================
   アクセシビリティ
   ======================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* ========================================
   印刷用スタイル
   ======================================== */
@media print {
    .parallax-section {
        background-attachment: scroll;
    }
    
    .hero {
        background-attachment: scroll;
    }
}

/* ========================================
   公式フッター上書き（表示崩れ修正）
   ======================================== */
footer.scroll-point {
    width: 100%;
    padding: 0 0 20px;
    background: #fff !important;
    color: #333;
    position: relative;
    z-index: 2;
    isolation: isolate;
}

/* ----------------------------------------
   フッターナビ：本サイト（RITMO）のデザインに統一
   - 游明朝ベース／ミニマル＆エレガント
   - アクセントカラー：#928178（ブランド茶）／#a72426（深紅）
   ---------------------------------------- */
footer.scroll-point .fnavi_wrap {
    margin: 0 auto 50px;
    padding: 0 24px;
    border-top: 1px solid rgba(82, 87, 96, 0.18);
    border-bottom: 1px solid rgba(82, 87, 96, 0.18);
    background: linear-gradient(180deg, #fafaf8 0%, #fff 100%);
}

footer.scroll-point .fnavi {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

footer.scroll-point .fnavi li {
    flex: 1;
    position: relative;
}

/* 区切り線（縦線）：本サイトのミニマルなトーンで */
footer.scroll-point .fnavi li + li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    width: 1px;
    height: 22px;
    background: rgba(82, 87, 96, 0.14);
    transform: translateY(-50%);
}

footer.scroll-point .fnavi li a {
    width: 100%;
    height: 64px;
    padding: 8px 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: background 0.4s ease;
}

footer.scroll-point .fnavi li a p {
    display: inline-block;
    width: 100%;
    position: relative;
    text-align: center;
    line-height: 1;
}

/* OFF：英字表示（Futura系・上品な抜け感） */
footer.scroll-point .fnavi li a p .off {
    display: block;
    font-family: 'Futura', 'Century Gothic', 'Helvetica Neue', sans-serif;
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.28em;
    color: #525760;
    opacity: 1;
    transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ON：日本語表示（游明朝・ブランド茶） */
footer.scroll-point .fnavi li a p .on {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    opacity: 0;
    transform: translateY(6px);
    transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

footer.scroll-point .fnavi li a p .on span {
    display: inline-block;
    position: relative;
    font-family: "游明朝", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "Noto Serif JP", serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.18em;
    color: #928178;
    padding: 0 2px;
}

footer.scroll-point .fnavi li a p .on span::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -10px;
    width: 0;
    height: 1px;
    background: #928178;
    transition: 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ホバー時のクロスフェード切替 */
body:not(.mobile) footer.scroll-point .fnavi li a:hover {
    background: rgba(146, 129, 120, 0.04);
}

body:not(.mobile) footer.scroll-point .fnavi li a:hover p .off {
    opacity: 0;
    transform: translateY(-6px);
}

body:not(.mobile) footer.scroll-point .fnavi li a:hover p .on {
    opacity: 1;
    transform: translateY(0);
}

body:not(.mobile) footer.scroll-point .fnavi li a:hover p .on span::after {
    left: 0;
    width: 100%;
}

/* 現在ページ表示用（.cr クラス付与時） */
footer.scroll-point .fnavi li a.cr p .off {
    opacity: 0;
}

footer.scroll-point .fnavi li a.cr p .on {
    opacity: 1;
    transform: translateY(0);
}

footer.scroll-point .fnavi li a.cr p .on span::after {
    left: 0;
    width: 100%;
    background: #a72426;
}

footer.scroll-point .footer {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px !important;
    background: transparent !important;
    color: #333 !important;
    box-sizing: content-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

footer.scroll-point .flogo .logo1,
footer.scroll-point .tel_box .tel1,
footer.scroll-point .tel_box .tel3 {
    font-size: 12px;
    line-height: 1.6;
}

footer.scroll-point .flogo .logo1 {
    margin-bottom: 8px;
}

footer.scroll-point .flogo .logo2 img {
    max-width: 220px;
    height: auto;
}

footer.scroll-point .tel_box .box {
    display: flex;
    align-items: center;
}

footer.scroll-point .tel_box .tel2 {
    margin: 0 15px 0 0;
}

footer.scroll-point .tel_box .tel2 a,
footer.scroll-point .tel_box .tel2 a.sp_link {
    font-family: 'EB Garamond', serif;
    font-size: 34px;
    font-weight: 600;
    letter-spacing: 0.04em;
    color: #333;
    text-decoration: none;
    line-height: 1;
}

/* SPでのみ電話発信できるよう、PCではクリック無効（公式準拠） */
body:not(.mobile) footer.scroll-point .tel_box .tel2 a.sp_link {
    pointer-events: none;
    cursor: default;
}

/* anq アンカー（戻り導線用、視覚的には非表示） */
footer.scroll-point .footer .anq {
    display: block;
    position: relative;
    top: -80px;
    visibility: hidden;
    height: 0;
    width: 0;
}

@media (max-width: 768px) {
    footer.scroll-point {
        padding: 0 0 80px;
    }

    /* SPでは2列グリッドで本サイトのトーンを保ちながら表示 */
    footer.scroll-point .fnavi_wrap {
        margin: 0 auto 40px;
        padding: 0;
        background: #fafaf8;
        border-top: 1px solid rgba(82, 87, 96, 0.18);
        border-bottom: 1px solid rgba(82, 87, 96, 0.18);
    }

    footer.scroll-point .fnavi {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 0;
        max-width: none;
    }

    footer.scroll-point .fnavi li {
        flex: none;
        border-bottom: 1px solid rgba(82, 87, 96, 0.12);
    }

    footer.scroll-point .fnavi li:nth-child(odd) {
        border-right: 1px solid rgba(82, 87, 96, 0.12);
    }

    footer.scroll-point .fnavi li:nth-last-child(-n+2) {
        border-bottom: none;
    }

    /* SPでは縦線セパレーターは不要 */
    footer.scroll-point .fnavi li + li::before {
        display: none;
    }

    /* SPは英字のみ常時表示（タッチではホバー切替が機能しないため） */
    footer.scroll-point .fnavi li a {
        height: 56px;
        flex-direction: column;
        gap: 4px;
    }

    footer.scroll-point .fnavi li a p {
        position: static;
    }

    footer.scroll-point .fnavi li a p .off {
        font-size: 11px;
        letter-spacing: 0.22em;
        opacity: 1 !important;
        transform: none !important;
    }

    footer.scroll-point .fnavi li a p .on {
        position: static;
        opacity: 1 !important;
        transform: none !important;
        margin-top: 4px;
    }

    footer.scroll-point .fnavi li a p .on span {
        font-size: 11px;
        letter-spacing: 0.14em;
        color: #928178;
    }

    footer.scroll-point .fnavi li a p .on span::after {
        display: none;
    }

    footer.scroll-point .footer {
        display: block;
        padding: 0 20px !important;
        text-align: center;
    }

    footer.scroll-point .flogo {
        width: 220px;
        margin: 0 auto 50px;
    }

    footer.scroll-point .tel_box .box {
        display: block;
    }

    footer.scroll-point .tel_box .tel2 {
        margin: 10px 0;
    }

    footer.scroll-point .tel_box .tel2 a {
        font-size: 30px;
    }
}

@media (max-width: 480px) {
    footer.scroll-point .fnavi li a {
        height: 50px;
    }

    footer.scroll-point .fnavi li a p .off {
        font-size: 10px;
        letter-spacing: 0.18em;
    }

    footer.scroll-point .fnavi li a p .on span {
        font-size: 10px;
    }

    footer.scroll-point .flogo {
        width: 180px;
        margin-bottom: 36px;
    }

    footer.scroll-point .tel_box .tel2 a {
        font-size: 26px;
    }

    footer.scroll-point .tel_box .tel3 {
        font-size: 11px;
    }
}

@media (min-width: 769px) {
    footer.scroll-point .fnavi li a p .off,
    footer.scroll-point .fnavi li a.cr p .off,
    body:not(.mobile) footer.scroll-point .fnavi li a:hover p .off {
        display: inline-block !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
    }

    footer.scroll-point .fnavi li a p .on,
    footer.scroll-point .fnavi li a.cr p .on,
    body:not(.mobile) footer.scroll-point .fnavi li a:hover p .on {
        display: none !important;
        opacity: 0 !important;
        visibility: hidden !important;
        transform: none !important;
    }
}
