/* ==========================================================
   MAIN VISUAL v4 (可読性重視・独自デザイン)
   ========================================================== */

.main-visual {
    position: relative;
    width: 100%;
    min-height: 72vh;
    overflow: hidden;
    background: var(--bg, #f7f4ef);
    display: flex;
    align-items: center;
    justify-content: flex-start;
}

.main-visual.no-image {
    min-height: 50vh;
    background: linear-gradient(135deg, var(--bg-soft, #f2ede6) 0%, var(--bg, #f7f4ef) 100%);
}

/* 背景画像レイヤー */
.main-visual .mv-bg {
    position: absolute;
    inset: 0;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    z-index: 1;
}

.main-visual .mv-bg-pc { display: block; }
.main-visual .mv-bg-sp { display: none; }

/* ハニカムオーバーレイ */
.main-visual .mv-honeycomb {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    opacity: 0.12;
    background-image:
        radial-gradient(circle at 10% 20%, transparent 18px, rgba(255,220,120,.5) 19px, transparent 20px),
        radial-gradient(circle at 30% 40%, transparent 14px, rgba(255,220,120,.4) 15px, transparent 16px),
        radial-gradient(circle at 70% 15%, transparent 20px, rgba(255,220,120,.5) 21px, transparent 22px),
        radial-gradient(circle at 85% 60%, transparent 16px, rgba(255,220,120,.4) 17px, transparent 18px);
    background-size: 200px 200px, 180px 180px, 220px 220px, 190px 190px;
}

/* 内側コンテンツ（フル背景のみ見せるシンプル方式。ロゴはヘッダーで表示済み） */
.main-visual .mv-inner {
    position: relative;
    z-index: 3;
    padding: 0;
    max-width: 100%;
}

/* SEO用の非表示h1 */
.visually-hidden {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* ロゴ */
.main-visual .mv-logo {
    max-width: 360px;
    width: 80%;
}
.main-visual .mv-logo img {
    width: 100%;
    height: auto;
    display: block;
    filter: drop-shadow(0 4px 20px rgba(0,0,0,.2));
}
.main-visual .mv-logo-text h1 {
    font-size: 44px;
    font-weight: 700;
    color: var(--text-strong, #3b302a);
    text-shadow: 0 2px 12px rgba(255,255,255,.6);
    margin: 0;
    letter-spacing: 0.06em;
}

/* キャッチコピー */
.main-visual .mv-catch {
    display: inline-block;
    font-size: 15px;
    color: var(--text-strong, #3b302a);
    font-weight: 500;
    letter-spacing: 0.1em;
    background: rgba(255,255,255,.72);
    padding: 8px 20px;
    border-radius: 24px;
    margin: 0;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border: 1px solid rgba(255,255,255,.6);
}

/* =========================================================
   情報バー（電話番号 + 営業時間）
   白背景固定、文字色も固定の濃い色にしてどのテーマでも必ず読めるように
   ========================================================= */
.mv-info-bar {
    background: #ffffff;
    border-top: 3px solid #2a1e18;
    padding: 20px 20px;
    box-shadow: 0 6px 24px rgba(34,29,26,.12);
    position: relative;
    z-index: 5;
}

.mv-info-inner {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.mv-info-tel {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: #1a1a1a !important; /* テーマに依存しない濃い固定色 */
    font-weight: 700;
    font-size: 26px;
    letter-spacing: 0.04em;
    transition: opacity .2s;
}
.mv-info-tel:hover { opacity: .7; }

.mv-info-tel-icon {
    display: inline-block;
    width: 36px;
    height: 36px;
    background: #2a1e18; /* テーマに依存しない濃い固定色 */
    border-radius: 50%;
    position: relative;
    flex-shrink: 0;
}
.mv-info-tel-icon::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23ffffff'><path d='M20 15.5c-1.25 0-2.45-.2-3.57-.57-.35-.11-.74-.03-1.02.24l-2.2 2.2c-2.83-1.44-5.15-3.75-6.59-6.58l2.2-2.21c.28-.27.36-.66.25-1.01C8.7 6.45 8.5 5.25 8.5 4c0-.55-.45-1-1-1H4c-.55 0-1 .45-1 1 0 9.39 7.61 17 17 17 .55 0 1-.45 1-1v-3.5c0-.55-.45-1-1-1z'/></svg>");
    background-repeat: no-repeat;
    background-position: center;
    background-size: 18px 18px;
}

.mv-info-tel-num {
    font-family: 'Georgia', 'Times New Roman', serif;
    color: #1a1a1a !important;
}

.mv-info-hours {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding-left: 30px;
    border-left: 1px solid #ddd;
}
.mv-info-hours-label {
    display: inline-block;
    background: #2a1e18; /* テーマに依存しない固定色 */
    color: #ffffff !important;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    padding: 4px 10px;
    border-radius: 4px;
}
.mv-info-hours-value {
    font-size: 18px;
    font-weight: 600;
    color: #1a1a1a !important; /* テーマに依存しない濃い固定色 */
    font-family: 'Georgia', 'Times New Roman', serif;
    letter-spacing: 0.03em;
}

/* 二次ヒーローセクション（テキストコンテンツ用） */
.hero-section-secondary {
    padding: 60px 20px 40px;
    background: var(--soft-section-bg, linear-gradient(180deg,rgba(255,255,255,.26) 0%,rgba(242,237,230,.65) 100%));
    text-align: center;
}
.hero-section-secondary .hero-kicker {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--muted, #6d6259);
    margin: 0 0 12px;
}
.hero-section-secondary .hero-title {
    font-size: 28px;
    color: var(--text-strong, #3b302a);
    margin: 0 0 24px;
    font-weight: 600;
}

/* ---------- タブレット ---------- */
@media (max-width: 900px) {
    .main-visual {
        min-height: 62vh;
    }
    .main-visual .mv-inner {
        padding: 30px 30px 50px;
        max-width: 100%;
        align-items: center;
        text-align: center;
    }
    .main-visual .mv-logo {
        max-width: 320px;
        width: 70%;
    }
    .mv-info-tel {
        font-size: 22px;
    }
}

/* ---------- スマホ ---------- */
@media (max-width: 640px) {
    .main-visual {
        min-height: 78vh;
        align-items: flex-start;
    }
    .main-visual .mv-bg-pc { display: none; }
    .main-visual .mv-bg-sp { display: block; }
    .main-visual:not(:has(.mv-bg-sp)) .mv-bg-pc { display: block; }

    .main-visual .mv-inner {
        padding: 40px 20px 40px;
        max-width: 100%;
        align-items: center;
        text-align: center;
        margin: 0 auto;
        width: 100%;
    }
    .main-visual .mv-logo {
        max-width: 240px;
        width: 65%;
    }
    .main-visual .mv-logo-text h1 {
        font-size: 30px;
    }
    .main-visual .mv-catch {
        font-size: 13px;
        padding: 6px 14px;
    }

    /* 情報バーはスマホでは縦積み */
    .mv-info-bar {
        padding: 16px 15px;
    }
    .mv-info-inner {
        gap: 12px;
        flex-direction: column;
    }
    .mv-info-tel {
        font-size: 22px;
        gap: 10px;
    }
    .mv-info-tel-icon {
        width: 32px;
        height: 32px;
    }
    .mv-info-tel-icon::before {
        background-size: 16px 16px;
    }
    .mv-info-hours {
        padding-left: 0;
        border-left: none;
    }
    .mv-info-hours-value {
        font-size: 16px;
    }
}

/* --- 濃色テーマ対応（ロゴテキストを明色化） --- */
body[data-theme="black-gold"] .main-visual .mv-logo-text h1,
body[data-theme="navy-luxe"] .main-visual .mv-logo-text h1,
body[data-theme="bordeaux"] .main-visual .mv-logo-text h1,
body[data-theme="emerald-luxe"] .main-visual .mv-logo-text h1,
body[data-theme="sapphire-dusk"] .main-visual .mv-logo-text h1 {
    color: #fff;
    text-shadow: 0 2px 20px rgba(0,0,0,.5);
}

/* ==========================================================
   本日の出勤情報セクション（TOPページ）
   ========================================================== */
.today-schedule-section {
    padding: 60px 0 80px;
}
.today-schedule-section .section-head {
    margin-bottom: 40px;
    text-align: center;
}
.today-schedule-section .section-label {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--muted, #6d6259);
    margin: 0 0 12px;
}
.today-schedule-section .section-title {
    font-size: 28px;
    color: var(--text-strong, #3b302a);
    margin: 0 0 12px;
    font-weight: 600;
}
.today-schedule-section .section-text {
    font-size: 14px;
    color: var(--muted, #6d6259);
    margin: 0;
}

/* グリッド（PC 5列 / タブ3列 / SP 2列） */
.today-therapist-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 32px;
}

.today-card {
    display: block;
    text-decoration: none;
    color: inherit;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 14px rgba(34,29,26,.08);
    transition: transform .2s, box-shadow .2s;
}
.today-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 22px rgba(34,29,26,.14);
}

.today-card-photo {
    position: relative;
    aspect-ratio: 3 / 4;
    background: #f2ede6;
    overflow: hidden;
}
.today-card-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}
.today-card-noimg {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: #bbb;
    font-size: 12px;
    letter-spacing: 0.1em;
}

/* バッジ */
.today-card-badges {
    position: absolute;
    top: 8px;
    right: 8px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-end;
}
.today-badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 3px;
    font-size: 11px;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 6px rgba(0,0,0,.15);
}
.today-badge.new { background: #4caf50; }
.today-badge.recommend { background: #ffb74d; color: #4a2f00; }
.today-badge.popular { background: #ec407a; }

/* 情報エリア */
.today-card-info {
    padding: 10px 12px 14px;
    text-align: center;
}
.today-card-name {
    font-size: 15px;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 4px;
    letter-spacing: 0.02em;
}
.today-card-spec {
    font-size: 12px;
    color: #666;
    margin: 0 0 6px;
}
.today-card-time {
    font-size: 13px;
    font-weight: 600;
    color: #2a1e18;
    margin: 0;
    padding-top: 6px;
    border-top: 1px solid #eee;
    letter-spacing: 0.02em;
}
.today-time-icon {
    display: inline-block;
    margin-right: 4px;
    color: var(--gold, #b59a6a);
    font-size: 10px;
    vertical-align: middle;
}

.section-cta.center {
    text-align: center;
}

/* タブレット */
@media (max-width: 900px) {
    .today-therapist-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* スマホ */
@media (max-width: 640px) {
    .today-schedule-section {
        padding: 40px 0 60px;
    }
    .today-schedule-section .section-title {
        font-size: 22px;
    }
    .today-therapist-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .today-card-info {
        padding: 8px 10px 12px;
    }
    .today-card-name {
        font-size: 13px;
    }
    .today-card-time {
        font-size: 12px;
    }
}

/* ==========================================================
   セラピスト/キャスト詳細ページ 拡張スタイル
   ========================================================== */

/* ページタイトル */
.td-page-title-section {
    padding: 50px 20px 30px;
    text-align: center;
}
.td-page-title-section .section-label {
    font-size: 12px;
    letter-spacing: 0.3em;
    color: var(--muted, #6d6259);
    margin: 0 0 10px;
}
.td-page-title {
    font-size: 28px;
    color: var(--text-strong, #3b302a);
    margin: 0;
    font-weight: 600;
    letter-spacing: 0.05em;
}

/* 写真タブ（Photo1/2/3） */
.td-photo-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 8px;
}
.td-photo-tab {
    flex: 1;
    padding: 10px 8px;
    background: #eee;
    border: none;
    color: #666;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.05em;
    cursor: pointer;
    transition: background .2s, color .2s;
    border-radius: 4px 4px 0 0;
}
.td-photo-tab:hover {
    background: #ddd;
}
.td-photo-tab.active {
    background: #2a1e18;
    color: #fff;
}

/* 写真エリアの親・子を強制矩長に */
.td-photos {
    width: 100% !important;
    max-width: 400px;
    display: block !important;
}
@media (max-width: 767px) {
    .td-photos {
        position: static !important;
        margin: 0 auto 20px;
        max-width: 100%;
    }
}

/* 写真本体：padding-topハックで確実に3:4を確保（全ブラウザ対応） */
.td-photo-main {
    position: relative;
    width: 100%;
    display: block;
    height: 0;
    padding-top: 133.33%; /* 3:4 (4/3 = 1.333) */
    background-color: #f2ede6;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
    border-radius: 4px;
    overflow: hidden;
    /* aspect-ratio を使うない（既存 mens_esthe.css の aspect-ratio: 3/4 と両方見えるよう、こちらを優先させる） */
}
.td-photo-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: rgba(255,255,255,.6);
    background: linear-gradient(135deg, #d4c3b3 0%, #9e8b78 100%);
}
.td-photo-placeholder span {
    font-weight: 300;
}

/* バッジ（写真上に浮遊表示） */
.tc-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    z-index: 2;
}
.tc-badge {
    display: inline-block;
    padding: 5px 12px;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(0,0,0,.2);
    /* ダイヤ型 */
    transform: rotate(0deg);
    border-radius: 3px;
}
.tc-badge-new { background: #4caf50; }
.tc-badge-recommend { background: #ffb74d; color: #4a2f00; }
.tc-badge-popular { background: #ec407a; }

/* プロフィール名前 */
.td-name-en {
    font-size: 11px;
    letter-spacing: 0.25em;
    color: var(--muted, #6d6259);
    margin: 0 0 8px;
    font-family: 'Georgia', serif;
}
.td-name {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-strong, #3b302a);
    margin: 0 0 12px;
    letter-spacing: 0.03em;
}
.td-catch {
    font-size: 15px;
    color: var(--muted, #6d6259);
    margin: 0 0 24px;
    padding: 10px 14px;
    background: #faf7f2;
    border-left: 3px solid var(--gold, #b59a6a);
    border-radius: 0 4px 4px 0;
}

/* スペック一覧（横罫線区切り） */
.td-specs-list {
    margin: 0 0 24px;
    padding: 0;
    border-top: 1px solid #e6dfd6;
}
.td-spec-row {
    display: flex;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid #e6dfd6;
    margin: 0;
}
.td-spec-row dt {
    flex: 0 0 110px;
    font-size: 13px;
    color: var(--muted, #6d6259);
    font-weight: 600;
    letter-spacing: 0.05em;
    margin: 0;
}
.td-spec-row dd {
    flex: 1;
    font-size: 15px;
    color: var(--text-strong, #3b302a);
    font-weight: 500;
    margin: 0;
}

/* SNSアイコン */
.td-sns {
    display: flex;
    gap: 10px;
    margin: 0 0 24px;
}
.td-sns-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #2a1e18;
    color: #fff !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    transition: opacity .2s;
}
.td-sns-icon:hover { opacity: .75; }
.td-sns-x { background: #000; }
.td-sns-ig { background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%); }
.td-sns-bs { background: #1185fe; }

/* セクションブロック（ショップコメント・特徴・週間スケジュール） */
.td-section {
    margin: 40px 0;
    padding-top: 32px;
    border-top: 1px solid #e6dfd6;
}
.td-section-title {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-strong, #3b302a);
    margin: 0 0 20px;
    padding-left: 16px;
    border-left: 4px solid var(--gold, #b59a6a);
    letter-spacing: 0.05em;
}
.td-section-title span {
    display: inline-block;
}
.td-section-body {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text, #221d1a);
}
.td-section-body p {
    margin: 0;
}

/* 週間スケジュール テーブル */
.td-week-table {
    border: 1px solid #d4c9be;
    border-radius: 4px;
    overflow: hidden;
}
.td-week-row {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
}
.td-week-head {
    background: #2a1e18;
    color: #fff;
}
.td-week-head .td-week-cell {
    padding: 12px 4px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    border-right: 1px solid rgba(255,255,255,.15);
    color: #fff;
}
.td-week-head .td-week-cell:last-child { border-right: none; }
/* 曜日色分け */
.td-week-head .td-week-cell.is-sat { color: #7fb8ff; }
.td-week-head .td-week-cell.is-sun { color: #ff8a80; }
.td-week-head .td-week-cell.is-today {
    background: var(--gold, #b59a6a);
    color: #fff !important;
    text-decoration: underline;
}
.td-week-body {
    background: #fff;
}
.td-week-body .td-week-cell {
    padding: 14px 4px;
    text-align: center;
    font-size: 13px;
    color: var(--text, #221d1a);
    border-right: 1px solid #ede7e0;
    font-weight: 500;
}
.td-week-body .td-week-cell:last-child { border-right: none; }
.td-week-body .td-week-cell.is-today {
    background: #fff8e6;
    color: #b8860b;
    font-weight: 700;
}

/* アクションボタン */
.td-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin: 40px 0 0;
    flex-wrap: wrap;
}

/* 下部CTAカード */
.td-bottom-cta {
    padding: 60px 20px;
    background: linear-gradient(180deg, transparent 0%, rgba(181,154,106,.06) 100%);
}
.td-cta-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.td-cta-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 30px 20px;
    background: #fff;
    border: 2px solid var(--gold, #b59a6a);
    border-radius: 6px;
    text-decoration: none;
    color: var(--text-strong, #3b302a);
    transition: transform .2s, box-shadow .2s, background .2s;
    text-align: center;
    min-height: 120px;
}
.td-cta-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(181,154,106,.25);
    background: #faf7f2;
}
.td-cta-en {
    font-size: 22px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-bottom: 6px;
    font-family: 'Georgia', serif;
    color: var(--text-strong, #3b302a);
}
.td-cta-jp {
    font-size: 12px;
    color: var(--muted, #6d6259);
    letter-spacing: 0.15em;
}

/* タブレット・スマホ */
@media (max-width: 900px) {
    .td-grid {
        grid-template-columns: 1fr !important;
        gap: 24px;
    }
    .td-photos {
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .td-page-title { font-size: 22px; }
    .td-name { font-size: 26px; }
    .td-section-title { font-size: 17px; }
    .td-week-head .td-week-cell,
    .td-week-body .td-week-cell {
        font-size: 11px;
        padding: 8px 2px;
    }
    .td-cta-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }
    .td-cta-card {
        padding: 20px 10px;
        min-height: 90px;
    }
    .td-cta-en { font-size: 17px; }
    .td-cta-jp { font-size: 10px; }
    .td-spec-row dt { flex: 0 0 90px; font-size: 12px; }
    .td-spec-row dd { font-size: 14px; }
}

/* ==========================================================
   ヘッダー：英字+日本語ルビ形式のリッチナビ
   ========================================================== */
.site-header .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 12px 20px;
}

/* ロゴ拡大 */
.site-brand img {
    max-height: 70px !important;
    width: auto;
}

/* リッチナビ */
.rich-nav {
    display: flex;
    align-items: center;
    gap: 0 !important;
    flex: 1;
    justify-content: flex-end;
    margin-right: 16px;
}
.rich-nav-item {
    display: flex !important;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 8px 12px !important;
    text-decoration: none;
    color: var(--text-strong, #3b302a) !important;
    line-height: 1.2;
    position: relative;
    min-width: 65px;
    transition: opacity .2s;
}
.rich-nav-item:hover { opacity: .7; }
.rich-nav-item .rn-en {
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 0.02em;
    font-family: 'Georgia', 'Times New Roman', serif;
    color: inherit;
}
.rich-nav-item .rn-jp {
    font-size: 10px;
    color: var(--muted, #6d6259);
    margin-top: 2px;
    letter-spacing: 0.05em;
}

/* ヘッダー右端アイコン */
.header-icons {
    display: flex;
    align-items: center;
    gap: 10px;
}
.header-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: var(--text-strong, #3b302a) !important;
    text-decoration: none;
    border-radius: 4px;
    transition: opacity .2s, background .2s;
}
.header-icon:hover { opacity: .7; background: rgba(0,0,0,.04); }
.header-icon svg { display: block; }

/* タブレット・スマホ */
@media (max-width: 900px) {
    .rich-nav-item {
        padding: 8px 8px !important;
        min-width: 55px;
    }
    .rich-nav-item .rn-en { font-size: 13px; }
    .rich-nav-item .rn-jp { font-size: 9px; }
    .header-icons { gap: 6px; }
    .header-icon { width: 32px; height: 32px; }
}

@media (max-width: 767px) {
    /* スマホではハンバーガーを押さない限りナビ非表示 */
    .rich-nav.site-nav {
        display: none;
        flex-direction: column;
        justify-content: flex-start;
        margin-right: 0;
        width: 100%;
        padding: 6px 0 4px;
        gap: 0;
        align-items: flex-start;
    }
    /* ハンバーガーを押したときだけ表示 */
    .site-header.menu-open .rich-nav.site-nav {
        display: flex;
    }
    .rich-nav-item {
        width: 100%;
        flex-direction: row !important;
        justify-content: flex-start;
        gap: 12px;
        padding: 14px 20px !important;
        border-bottom: 1px solid rgba(0,0,0,.05);
    }
    .rich-nav-item .rn-en { font-size: 15px; min-width: 90px; }
    .rich-nav-item .rn-jp { font-size: 11px; margin-top: 0; }
    .header-icons { order: -1; margin-left: auto; }
}

/* ==========================================================
   フッター：MITSUBACHI風リッチフッター
   ========================================================== */
.rich-footer {
    background: linear-gradient(180deg, var(--footer-bg, #f1ebe4) 0%, var(--bg-soft, #f2ede6) 100%);
    padding: 50px 20px 30px;
    margin-top: 60px;
    border-top: 1px solid var(--footer-border, rgba(221,211,200,.9));
}

.rich-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 30px;
}

/* リンクナビ */
.rich-footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 4px 0;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--footer-border, rgba(221,211,200,.9));
    width: 100%;
}
.rich-footer-nav a {
    padding: 6px 20px;
    color: var(--footer-text, #7d7168) !important;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    position: relative;
    letter-spacing: 0.03em;
    transition: color .2s;
}
.rich-footer-nav a:hover {
    color: var(--text-strong, #3b302a) !important;
}
.rich-footer-nav a:not(:last-child)::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 12px;
    background: var(--footer-border, rgba(221,211,200,.9));
}

/* 中央：ロゴ + 情報 */
.rich-footer-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.rich-footer-logo {
    max-width: 180px;
}
.rich-footer-logo img {
    width: 100%;
    height: auto;
    display: block;
}
.rich-footer-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-strong, #3b302a);
    margin: 0;
    letter-spacing: 0.05em;
}

.rich-footer-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    font-size: 14px;
    color: var(--footer-text, #7d7168);
    line-height: 1.7;
}
.rich-footer-info p {
    margin: 0;
}
.rf-info-label {
    display: inline-block;
    font-family: 'Georgia', serif;
    font-weight: 700;
    color: var(--text-strong, #3b302a);
    letter-spacing: 0.08em;
    margin-right: 8px;
    min-width: 80px;
    font-size: 13px;
}
.rich-footer-tel a {
    color: var(--text-strong, #3b302a) !important;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    font-family: 'Georgia', serif;
    letter-spacing: 0.05em;
}
.rich-footer-tel a:hover { opacity: .7; }

/* SNS */
.rich-footer-sns {
    display: flex;
    gap: 10px;
    margin-top: 8px;
}
.rich-footer-sns-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #000;
    color: #fff !important;
    text-decoration: none;
    transition: opacity .2s;
}
.rich-footer-sns-btn:hover { opacity: .75; }

/* コピーライト */
.rich-footer-copy {
    width: 100%;
    padding-top: 24px;
    border-top: 1px solid var(--footer-border, rgba(221,211,200,.9));
    text-align: center;
}
.rich-footer-copy p {
    margin: 0;
    font-size: 12px;
    color: var(--footer-text, #7d7168);
    letter-spacing: 0.05em;
}

/* スマホ */
@media (max-width: 640px) {
    .rich-footer {
        padding: 40px 15px 24px;
    }
    .rich-footer-nav a {
        padding: 6px 14px;
        font-size: 13px;
    }
    .rich-footer-logo { max-width: 140px; }
    .rich-footer-name { font-size: 17px; }
    .rich-footer-info { font-size: 13px; }
    .rich-footer-tel a { font-size: 15px; }
}

/* ==========================================================
   固定CTA（下部）ボタン数によるバランス調整
   ========================================================== */
.fixed-cta {
    display: flex;
    gap: 0;
    width: 100%;
}
/* ボタン1つ */
.fixed-cta.fixed-cta-count-1 a {
    flex: 1;
}
/* ボタン2つ */
.fixed-cta.fixed-cta-count-2 a {
    flex: 1;
}
/* ボタン3つ */
.fixed-cta.fixed-cta-count-3 a {
    flex: 1;
}

/* ==========================================
   v4_hotfix16: アクセスエリア＆リンクバナー
   ========================================== */

/* --- アクセスページ 複数エリア --- */
.access-block-title {
    text-align: center;
    font-size: 22px;
    letter-spacing: 3px;
    margin: 0 0 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid #d4af37;
    color: #2a1e18;
}
.access-area-card {
    padding: 24px;
    background: #fdfaf3;
    border: 1px solid #e6d9be;
    border-radius: 8px;
    margin-bottom: 24px;
}
.access-area-card:last-child { margin-bottom: 0; }
.access-area-name {
    margin: 0 0 12px;
    font-size: 18px;
    color: #6a4a10;
    border-left: 4px solid #d4af37;
    padding-left: 12px;
}
.access-area-desc {
    margin: 0 0 16px;
    line-height: 1.7;
    color: #555;
}
.info-table.info-table-sub th {
    background: #f5efd8;
    width: 100px;
    font-size: 13px;
}
.info-table.info-table-sub td { font-size: 13px; }
.access-area-card .map-frame {
    margin-top: 16px;
    border-radius: 6px;
    overflow: hidden;
}
.access-area-card .map-frame iframe {
    width: 100%;
    height: 300px;
    border: 0;
    display: block;
}

/* --- フッター上リンクバナー --- */
.footer-link-banners {
    background: #f5f0e6;
    padding: 24px 0;
    border-top: 1px solid #e0d5be;
}
.flb-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px 16px;
    align-items: center;
}
.flb-item {
    display: inline-flex;
    align-items: center;
}
.flb-item img {
    max-height: 45px;
    width: auto;
    height: auto;
    display: block;
    transition: opacity .2s;
    background: #fff;
    padding: 3px;
    border-radius: 3px;
}
.flb-item a:hover img { opacity: 0.75; }
.flb-text-link {
    display: inline-block;
    padding: 8px 16px;
    background: #fff;
    border: 1px solid #d4af37;
    border-radius: 4px;
    color: #6a4a10;
    text-decoration: none;
    font-size: 13px;
    transition: background .2s;
}
.flb-text-link:hover {
    background: #d4af37;
    color: #fff;
}
@media (max-width: 640px) {
    .footer-link-banners { padding: 16px 0; }
    .flb-list { gap: 8px 10px; }
    .flb-item img { max-height: 35px; }
}
