/* ========================================================
   整体院 華 — Design System
   あたたかく、やさしい「和」の余白デザイン
   ======================================================== */

:root {
    /* Color — 明るく元気な整骨院/整体院トーン */
    --bg: #FFFFFF;
    --bg-soft: #FAF6EF;
    --surface: #FFFFFF;
    --surface-warm: #FFF9F1;
    --ink: #262320;
    --ink-soft: #4A453E;
    --ink-faint: #746D61;
    --border: #ECE4D6;
    --border-soft: #F3EDE2;

    --primary: #F5811E;
    --primary-dark: #D9690D;
    --primary-light: #FBBE85;
    --primary-tint: #FEEEDC;

    --secondary: #06C755;
    --secondary-dark: #049C43;
    --secondary-tint: #E1F9E9;

    --navy: #1E3A5F;
    --navy-dark: #142A46;
    --navy-tint: #E8EEF4;

    --gold: #E0A526;
    --gold-tint: #FBF0D8;

    --footer-bg: #221E1B;
    --footer-ink: #F3EAD9;

    /* Type */
    --font-head: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --font-body: "Zen Kaku Gothic New", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    --font-accent: "Shippori Mincho", "Hiragino Mincho ProN", serif;

    /* Shape */
    --r-sm: 8px;
    --r-md: 14px;
    --r-lg: 20px;
    --r-pill: 999px;

    /* Shadow */
    --shadow-sm: 0 2px 10px rgba(40, 30, 10, 0.08);
    --shadow-md: 0 10px 28px rgba(40, 30, 10, 0.12);
    --shadow-lg: 0 20px 48px rgba(40, 30, 10, 0.18);

    --ease: cubic-bezier(.4, 0, .2, 1);
}

/* ========================================================
   リセット & 全体設定
   ======================================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html, body {
    width: 100%;
    overflow-x: hidden;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    line-height: 1.85;
    color: var(--ink);
    background-color: var(--bg);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

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

iframe {
    max-width: 100%;
    border: none;
}

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

ul {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
}

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
    box-sizing: border-box;
    position: relative;
}

.section {
    padding: 60px 0;
}

h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    color: var(--ink);
}

.section-title {
    display: block;
    width: fit-content;
    font-size: 20px;
    font-weight: 900;
    text-align: center;
    margin: 0 auto 42px;
    padding: 15px 42px;
    color: #fff;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    border-radius: var(--r-sm);
    letter-spacing: 0.04em;
    box-shadow: var(--shadow-sm);
    position: relative;
}

/* ========================================================
   スクロールフェードインアニメーション
   ======================================================== */
.fade-in,
.fade-in-up,
.fade-in-left,
.fade-in-right {
    opacity: 0;
    transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
    will-change: opacity, transform;
}

.fade-in { transform: translateY(16px); }
.fade-in-up { transform: translateY(36px); }
.fade-in-left { transform: translateX(-36px); }
.fade-in-right { transform: translateX(36px); }

.fade-in.visible,
.fade-in-up.visible,
.fade-in-left.visible,
.fade-in-right.visible {
    opacity: 1;
    transform: translate(0, 0);
}

/* ========================================================
   共通ボタン & CTA
   ======================================================== */
.cta-text {
    text-align: center;
    font-size: 17px;
    color: var(--ink-soft);
    margin-bottom: 18px;
}

.cta-button,
.reservation-button,
.line-button,
.menu-button,
.view-all-button,
.contact-line-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 17px 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 15.5px;
    border: none;
    border-radius: var(--r-sm);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
    letter-spacing: 0.03em;
    white-space: nowrap;
}

.cta-button:hover,
.reservation-button:hover,
.line-button:hover,
.menu-button:hover,
.view-all-button:hover,
.contact-line-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

.line-button {
    background: linear-gradient(135deg, var(--secondary) 0%, var(--secondary-dark) 100%);
    margin-top: 6px;
}

.cta-button, .reservation-cta .reservation-button, .price-cta .cta-button {
    display: flex;
    width: fit-content;
    margin: 0 auto;
}

/* 管理画面ボタン（長文になっても円形に潰れないよう角丸長方形で統一） */
.admin-login-button,
.admin-submit-button,
.admin-cancel-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px 32px;
    font-weight: 700;
    font-size: 14.5px;
    border-radius: var(--r-md);
    text-align: center;
    line-height: 1.4;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease), background 0.25s var(--ease);
}

.admin-login-button,
.admin-submit-button {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    border: none;
    box-shadow: var(--shadow-sm);
}
.admin-login-button:hover,
.admin-submit-button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

.admin-cancel-button {
    background: var(--surface);
    color: var(--ink-soft);
    border: 1px solid var(--border);
}
.admin-cancel-button:hover { background: var(--bg-soft); }

/* ========================================================
   ヘッダー
   ======================================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--surface);
    box-shadow: var(--shadow-sm);
    z-index: 1000;
}

.top-ticker {
    background: var(--primary);
    padding: 7px 16px;
    text-align: center;
}

.top-ticker p {
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.03em;
}

.header-container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 14px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
}

.site-title {
    font-family: var(--font-accent);
    font-size: 22px;
    color: var(--primary);
    font-weight: 700;
    letter-spacing: 0.08em;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s;
    flex-shrink: 0;
}

.site-title::before {
    content: '';
    width: 12px;
    height: 12px;
    background: var(--secondary);
    border-radius: 60% 40% 55% 45% / 45% 55% 40% 60%;
    display: inline-block;
}

.site-title:hover { opacity: 0.75; }

.header-cta {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-left: auto;
}

.header-tel {
    display: flex;
    align-items: center;
    gap: 10px;
}

.header-tel-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.header-tel-icon svg { width: 18px; height: 18px; }

.header-tel-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.header-tel-text small {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink-faint);
}

.header-tel-number {
    font-size: 19px;
    font-weight: 800;
    color: var(--ink);
    letter-spacing: 0.01em;
}

.header-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 800;
    font-size: 13.5px;
    padding: 13px 24px;
    border-radius: var(--r-sm);
    white-space: nowrap;
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), filter 0.25s var(--ease);
}
.header-cta-button:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
    filter: brightness(1.05);
}

.nav-bar {
    background: var(--surface);
    border-top: 1px solid var(--border-soft);
}

.nav-list {
    max-width: 1180px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-item {
    border-right: 1px solid var(--border-soft);
}
.nav-item:first-child { border-left: 1px solid var(--border-soft); }

.nav-item a {
    display: block;
    font-weight: 700;
    font-size: 13px;
    padding: 15px 18px;
    color: var(--ink-soft);
    transition: color 0.25s var(--ease), background-color 0.25s var(--ease);
    white-space: nowrap;
}

.nav-item a:hover {
    color: var(--primary);
    background-color: var(--primary-tint);
}

/* ハンバーガーメニュー（メインナビ） */
.header-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: transparent;
    border: none;
    border-radius: var(--r-pill);
    z-index: 1001;
}

.header-hamburger .hamburger-line {
    display: block;
    width: 22px;
    height: 2px;
    background-color: var(--primary-dark);
    border-radius: var(--r-pill);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}

.header-hamburger.active .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.header-hamburger.active .hamburger-line:nth-child(2) {
    opacity: 0;
}
.header-hamburger.active .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 768px) {
    .header-cta,
    .nav-bar {
        display: none;
    }

    .header-hamburger {
        display: flex;
    }

    .nav {
        position: fixed;
        top: var(--header-h, 100px);
        left: 12px;
        right: 12px;
        max-height: 0;
        opacity: 0;
        overflow: hidden;
        pointer-events: none;
        background: var(--surface);
        border-radius: var(--r-md);
        box-shadow: var(--shadow-lg);
        transition: max-height 0.4s var(--ease), opacity 0.3s var(--ease);
    }

    .nav.mobile-active {
        max-height: 80vh;
        opacity: 1;
        pointer-events: auto;
        overflow-y: auto;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 2px;
        padding: 10px;
    }

    .nav-item {
        border-right: none;
    }
    .nav-item:first-child { border-left: none; }

    .nav-item a {
        display: block;
        width: 100%;
        text-align: right;
        padding: 15px 22px;
        border-radius: var(--r-sm);
    }

    .nav-item a:active {
        background-color: var(--primary-tint);
        color: var(--primary-dark);
    }

    .nav-item + .nav-item a {
        border-top: 1px solid var(--border-soft);
        border-radius: 0;
    }

    .nav-item:first-child a { border-radius: var(--r-sm) var(--r-sm) 0 0; }
    .nav-item:last-child a { border-radius: 0 0 var(--r-sm) var(--r-sm); }
}

/* ========================================================
   ヒーロー
   ======================================================== */
.hero {
    margin-top: var(--header-h, 140px);
    height: 78vh;
    min-height: 520px;
    background-image: url('../images/hero.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(43, 30, 19, 0.72) 0%, rgba(96, 53, 30, 0.78) 100%);
}

.hero::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -1px;
    height: 48px;
    background: var(--bg);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
    transform: scaleX(1.3);
}

.hero-content {
    max-width: 760px;
    padding: 46px 40px;
    position: relative;
    z-index: 1;
    background: rgba(43, 30, 19, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: var(--r-lg);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}

.hero-title {
    font-family: var(--font-head);
    font-size: 38px;
    line-height: 1.7;
    font-weight: 900;
    margin-bottom: 26px;
    color: #fff;
    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.35);
}

.hero-highlight {
    display: inline-block;
    background: var(--primary);
    color: #fff;
    padding: 2px 14px;
    border-radius: 8px;
    box-shadow: 0 3px 0 rgba(0, 0, 0, 0.18);
}

.hero-subtitle {
    font-size: 15.5px;
    line-height: 2;
    opacity: 0.96;
    font-weight: 500;
}

@media (max-width: 640px) {
    .hero-title { font-size: 26px; }
    .hero-subtitle { font-size: 14px; }
}

/* ========================================================
   キャンペーンセクション
   ======================================================== */
.campaign-section {
    padding: 76px 0 64px;
}

.campaign-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
    margin-top: 8px;
}

.campaign-card {
    background: var(--surface-warm);
    border: 1px solid var(--border-soft);
    border-radius: var(--r-lg);
    padding: 38px 34px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.campaign-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.campaign-card-title {
    font-size: 18px;
    color: var(--primary-dark);
    margin-bottom: 16px;
}

.campaign-price {
    font-size: 15px;
    color: var(--ink-soft);
    margin-bottom: 14px;
    line-height: 1.8;
}

.campaign-highlight {
    font-family: var(--font-head);
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}

.campaign-description {
    font-size: 14px;
    color: var(--ink-soft);
    margin-bottom: 10px;
}

.campaign-note {
    font-size: 12.5px;
    color: var(--ink-faint);
}

@media (max-width: 720px) {
    .campaign-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   よくある痛みセクション
   ======================================================== */
.pain-section {
    padding: 64px 0;
}

.pain-description {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
    font-size: 14.5px;
    color: var(--ink-soft);
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 38px 34px;
    box-shadow: var(--shadow-sm);
}

.pain-links {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.pain-link {
    padding: 14px 30px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 14px;
    border: 1.5px solid var(--primary);
    color: var(--primary-dark);
    background: var(--surface);
    transition: all 0.25s var(--ease);
}

.pain-link:hover {
    background: var(--primary);
    color: #fff;
}

/* ========================================================
   院長紹介
   ======================================================== */
.about-section {
    padding: 72px 0;
}

.about-content {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 56px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image::before {
    content: '';
    position: absolute;
    top: -18px;
    left: -18px;
    right: 18px;
    bottom: 18px;
    background: var(--secondary-tint);
    border-radius: 58% 42% 50% 50% / 45% 50% 50% 55%;
    z-index: 0;
}

.profile-img {
    position: relative;
    z-index: 1;
    border-radius: 58% 42% 50% 50% / 45% 50% 50% 55%;
    object-fit: cover;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-md);
}

.about-name {
    font-size: 22px;
    color: var(--primary-dark);
    margin-bottom: 18px;
    position: relative;
    padding-bottom: 14px;
}

.about-name::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 40px;
    height: 3px;
    background: var(--primary);
    border-radius: var(--r-pill);
}

.about-description {
    font-size: 14.5px;
    color: var(--ink-soft);
}

@media (max-width: 820px) {
    .about-content { grid-template-columns: 1fr; gap: 60px 0; }
    .about-image { max-width: 280px; margin: 0 auto; }
}

/* ========================================================
   お客様の声（トップ）
   ======================================================== */
.voice-section {
    padding: 72px 0;
}

.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 26px;
}

.voice-card {
    background: var(--surface);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
    padding-bottom: 24px;
}

.voice-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.voice-image { aspect-ratio: 4 / 3; overflow: hidden; }
.voice-img { width: 100%; height: 100%; object-fit: cover; }

.voice-category {
    display: inline-block;
    margin: 18px 24px 0;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--secondary-dark);
    background: var(--secondary-tint);
    border-radius: var(--r-pill);
}

.voice-title {
    font-size: 17px;
    margin: 14px 24px 6px;
    color: var(--ink);
}

.voice-customer {
    font-size: 12.5px;
    color: var(--ink-faint);
    margin: 0 24px 10px;
}

.voice-content {
    font-size: 13.5px;
    color: var(--ink-soft);
    margin: 0 24px 12px;
}

.voice-date {
    font-size: 11.5px;
    color: var(--ink-faint);
    margin: 0 24px;
}

.voice-view-all {
    text-align: center;
    margin-top: 40px;
}

.view-all-button {
    background: var(--surface);
    border: 1.5px solid var(--primary);
    color: var(--primary-dark);
}
.view-all-button:hover {
    background: var(--primary);
    color: #fff;
}

@media (max-width: 900px) {
    .voice-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   アクセス・予約
   ======================================================== */
.access-reservation-section { padding: 72px 0; }

.access-reservation-content {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 30px;
    align-items: stretch;
}

.access-info {
    background: var(--surface-warm);
    border-radius: var(--r-lg);
    padding: 36px 34px;
    box-shadow: var(--shadow-sm);
}

.access-subtitle {
    font-size: 12.5px;
    color: var(--secondary-dark);
    letter-spacing: 0.08em;
    margin-top: 20px;
}
.access-subtitle:first-child { margin-top: 0; }

.access-address, .access-phone, .access-hours, .access-closed {
    font-size: 15px;
    margin-top: 6px;
    color: var(--ink);
}

.access-phone a { color: var(--primary-dark); font-weight: 700; }

.access-map {
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    min-height: 300px;
}
.access-map iframe { width: 100%; height: 100%; }

.reservation-cta {
    text-align: center;
    margin-top: 40px;
}

@media (max-width: 860px) {
    .access-reservation-content { grid-template-columns: 1fr; }
    .access-map { min-height: 320px; }
}

/* ========================================================
   LINEセクション
   ======================================================== */
.line-section { padding: 64px 0 88px; }

.contact-line {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    max-width: 720px;
    margin: 0 auto;
    background: var(--secondary-tint);
    border-radius: var(--r-lg);
    padding: 36px 42px;
    flex-wrap: wrap;
}

.contact-line-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 14px;
}

.contact-line-id { margin-bottom: 16px; }
.contact-line-label { font-size: 11.5px; color: var(--ink-faint); }
.contact-line-value { font-size: 16px; font-weight: 700; color: var(--ink); }

.contact-line-qr-wrapper {
    background: var(--surface);
    padding: 12px;
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}
.contact-line-qr { width: 120px; height: 120px; }

.contact-line-small {
    padding: 26px 28px;
}
.contact-line-small .contact-line-qr { width: 96px; height: 96px; }

@media (max-width: 560px) {
    .contact-line { justify-content: center; text-align: center; padding: 30px 24px; }
}

/* ========================================================
   フッター
   ======================================================== */
.footer {
    background: var(--footer-bg);
    color: var(--footer-ink);
    padding: 56px 0 30px;
    margin-top: 40px;
    border-radius: var(--r-lg) var(--r-lg) 0 0;
    text-align: center;
}

.footer-nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px 4px;
    margin-bottom: 30px;
}

.footer-nav-list a {
    display: inline-block;
    padding: 8px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--footer-ink);
    opacity: 0.85;
    border-radius: var(--r-pill);
    transition: all 0.25s var(--ease);
}
.footer-nav-list a:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.08);
}

.footer-info { margin-bottom: 18px; }
.footer-address, .footer-phone {
    font-size: 13px;
    opacity: 0.75;
    margin-bottom: 6px;
}
.footer-phone a { font-weight: 700; opacity: 1; }

.copyright {
    font-size: 11.5px;
    opacity: 0.5;
    letter-spacing: 0.04em;
}

/* ========================================================
   ページタイトル（下層ページ共通）
   ======================================================== */
.page-title-section {
    margin-top: var(--header-h, 140px);
    padding: 56px 0 50px;
    text-align: center;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    position: relative;
    overflow: hidden;
}

.page-title-section::before {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 220px;
    height: 220px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
}

.page-title {
    font-size: 28px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
    position: relative;
}

.page-subtitle {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.9;
    position: relative;
}

/* ========================================================
   症状ページ
   ======================================================== */
.course-section { padding: 68px 0 90px; }

.course-nav {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 70px;
}

.course-nav-item { display: block; }

.course-nav-image {
    position: relative;
    border-radius: var(--r-md);
    overflow: hidden;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease);
}
.course-nav-item:hover .course-nav-image { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.course-nav-img { width: 100%; height: 100%; object-fit: cover; }

.course-nav-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(58, 41, 26, 0.75) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 16px;
}

.course-nav-label {
    color: #fff;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.05em;
}

.course-item {
    background: var(--surface);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 40px;
    scroll-margin-top: 100px;
}

.course-image-link { display: block; aspect-ratio: 16 / 6; overflow: hidden; }
.course-thumbnail { width: 100%; height: 100%; object-fit: cover; }

.course-title {
    font-size: 22px;
    color: var(--primary-dark);
    padding: 30px 34px 8px;
}

.course-content { padding: 6px 34px 34px; }

.course-detail {
    padding: 18px 0;
    border-top: 1px dashed var(--border);
}
.course-detail:first-child { border-top: none; }

.course-subtitle {
    font-size: 13px;
    font-weight: 700;
    color: var(--secondary-dark);
    margin-bottom: 8px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.course-subtitle::before {
    content: '';
    width: 8px;
    height: 8px;
    background: var(--secondary);
    border-radius: 50%;
    display: inline-block;
}

.course-description {
    font-size: 14px;
    color: var(--ink-soft);
}

.course-description.warning { color: var(--primary-dark); }
.course-description.effect { color: var(--secondary-dark); }

.course-cta {
    text-align: center;
    margin-top: 60px;
}

@media (max-width: 860px) {
    .course-nav { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .course-title, .course-content { padding-left: 22px; padding-right: 22px; }
}

/* ========================================================
   料金ページ
   ======================================================== */
.price-section { padding: 68px 0 90px; }

.course-menu { margin-bottom: 30px; }

.menu-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
    background: var(--surface);
    border-radius: var(--r-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.menu-table thead tr { background: var(--primary-tint); }

.menu-table th {
    padding: 18px 24px;
    text-align: left;
    font-size: 13px;
    color: var(--primary-dark);
    font-weight: 700;
    letter-spacing: 0.04em;
}

.menu-table td {
    padding: 24px;
    border-top: 1px solid var(--border-soft);
    vertical-align: middle;
    font-size: 14px;
}

.menu-table tbody tr { transition: background 0.2s; }
.menu-table tbody tr:hover { background: var(--surface-warm); }

.menu-name { font-weight: 700; color: var(--ink); font-size: 15px; }
.menu-price { font-family: var(--font-head); color: var(--primary); font-weight: 700; font-size: 17px; white-space: nowrap; }
.menu-description { color: var(--ink-soft); line-height: 1.8; }
.menu-note { display: block; font-size: 12px; color: var(--ink-faint); margin-top: 4px; }
.menu-button { padding: 10px 24px; font-size: 13px; white-space: nowrap; }

.price-cta { margin-top: 56px; text-align: center; }

@media (max-width: 760px) {
    .menu-table thead { display: none; }
    .menu-table, .menu-table tbody, .menu-table tr, .menu-table td { display: block; width: 100%; }
    .menu-table tr {
        margin-bottom: 18px;
        border-radius: var(--r-md);
        border: 1px solid var(--border-soft);
        overflow: hidden;
    }
    .menu-table td {
        border-top: none;
        border-bottom: 1px solid var(--border-soft);
        padding: 14px 20px;
    }
    .menu-table td:last-child { border-bottom: none; }
    .menu-table td::before {
        content: attr(data-label);
        display: block;
        font-size: 11px;
        color: var(--ink-faint);
        margin-bottom: 4px;
        letter-spacing: 0.05em;
    }
    .menu-action { text-align: center; padding: 18px !important; }
}

/* ========================================================
   お客様の声ページ
   ======================================================== */
.voice-page-section { padding: 68px 0 90px; }

.voice-page-item {
    background: var(--surface);
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
    margin-bottom: 30px;
}

.voice-page-content {
    display: grid;
    grid-template-columns: 300px 1fr;
}

.voice-page-image { overflow: hidden; }
.voice-page-img { width: 100%; height: 100%; object-fit: cover; min-height: 260px; }

.voice-page-details { padding: 30px 34px; }

.voice-page-ratings {
    background: var(--surface-warm);
    border-radius: var(--r-md);
    padding: 18px 22px;
    margin-bottom: 22px;
}

.rating-row {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 12.5px;
    padding: 4px 0;
}
.rating-label { width: 96px; color: var(--ink-soft); flex-shrink: 0; }
.rating-stars { color: var(--gold); letter-spacing: 1px; }
.rating-score { color: var(--ink-faint); }

.overall-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 10px;
    padding-top: 10px;
    border-top: 1px dashed var(--border);
    font-weight: 700;
}
.overall-label { width: 96px; color: var(--primary-dark); flex-shrink: 0; font-size: 12.5px; }
.overall-stars { color: var(--gold); letter-spacing: 1px; }
.overall-score { color: var(--primary-dark); }

.voice-page-title { font-size: 19px; margin: 10px 0 4px; color: var(--ink); }
.voice-page-text { font-size: 13.5px; color: var(--ink-soft); margin: 10px 0; }

.voice-page-cta { text-align: center; margin-top: 56px; }

@media (max-width: 760px) {
    .voice-page-content { grid-template-columns: 1fr; }
    .voice-page-img { min-height: 220px; }
}

/* ========================================================
   店舗情報ページ
   ======================================================== */
.info-section { padding: 68px 0 90px; }

.info-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 30px;
    margin-bottom: 40px;
}

.info-details {
    background: var(--surface-warm);
    border-radius: var(--r-lg);
    padding: 36px 34px;
    box-shadow: var(--shadow-sm);
}

.info-item { padding: 14px 0; border-top: 1px dashed var(--border); }
.info-item:first-child { border-top: none; padding-top: 0; }

.info-label { font-size: 12px; color: var(--secondary-dark); letter-spacing: 0.06em; margin-bottom: 6px; }
.info-value { font-size: 15px; color: var(--ink); line-height: 1.8; }
.info-value a { color: var(--primary-dark); font-weight: 700; }

.info-map { border-radius: var(--r-lg); overflow: hidden; box-shadow: var(--shadow-sm); min-height: 300px; }
.info-map iframe { width: 100%; height: 100%; }

.info-note {
    background: var(--secondary-tint);
    border-radius: var(--r-lg);
    padding: 30px 34px;
    margin-bottom: 40px;
}
.info-note-title { font-size: 16px; color: var(--secondary-dark); margin-bottom: 14px; }
.info-note-list li {
    font-size: 13.5px;
    color: var(--ink-soft);
    padding-left: 22px;
    position: relative;
    margin-bottom: 8px;
    line-height: 1.8;
}
.info-note-list li::before {
    content: '✿';
    position: absolute;
    left: 0;
    color: var(--secondary-dark);
    font-size: 12px;
}

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

@media (max-width: 860px) {
    .info-content { grid-template-columns: 1fr; }
    .info-map { min-height: 320px; }
}

/* ========================================================
   お問い合わせ／ご予約 共通
   ======================================================== */
.contact-section { padding: 68px 0 90px; }

.contact-layout {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 30px;
    align-items: start;
}

.contact-form {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 38px 36px;
    box-shadow: var(--shadow-sm);
}

.form-group { margin-bottom: 22px; }
.form-group label {
    display: block;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 8px;
}
.required {
    display: inline-block;
    font-size: 10.5px;
    color: #fff;
    background: var(--primary);
    padding: 2px 8px;
    border-radius: var(--r-pill);
    margin-left: 6px;
    font-weight: 700;
    vertical-align: middle;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 13px 16px;
    font-family: inherit;
    font-size: 14.5px;
    color: var(--ink);
    background: var(--surface-warm);
    border: 1.5px solid var(--border);
    border-radius: var(--r-sm);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-tint);
}
.form-group input.error,
.form-group select.error,
.form-group textarea.error {
    border-color: #C0392B;
}
.form-group textarea { resize: vertical; min-height: 100px; }

.error-message {
    display: none;
    font-size: 12px;
    color: #C0392B;
    margin-top: 6px;
}
.error-message.show { display: block; }

.form-hint { display: block; font-size: 11.5px; color: var(--ink-faint); margin-top: 6px; }

.form-submit { margin-top: 8px; }
.submit-button {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 700;
    font-size: 15.5px;
    border: none;
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.submit-button:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.submit-button:disabled { opacity: 0.6; transform: none; cursor: not-allowed; }

.contact-info {
    background: var(--surface-warm);
    border-radius: var(--r-lg);
    padding: 34px 32px;
    box-shadow: var(--shadow-sm);
}
.contact-info-item { padding: 14px 0; border-top: 1px dashed var(--border); }
.contact-info-item:first-child { border-top: none; padding-top: 0; }
.contact-info-label { font-size: 12px; color: var(--secondary-dark); letter-spacing: 0.05em; margin-bottom: 6px; }
.contact-info-value { font-size: 15px; color: var(--ink); }
.contact-info-value a { color: var(--primary-dark); font-weight: 700; }
.contact-info-note { font-size: 12px; color: var(--ink-faint); margin-top: 4px; }

.contact-info .contact-line { margin: 22px 0; padding: 24px 26px; }
.contact-map { margin-top: 22px; border-radius: var(--r-md); overflow: hidden; box-shadow: var(--shadow-sm); }

@media (max-width: 900px) {
    .contact-layout { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
    .contact-form, .contact-info { padding: 28px 22px; }
}

/* ========================================================
   予約カレンダー
   ======================================================== */
.reservation-calendar { margin-bottom: 56px; }

.calendar-legend {
    display: flex;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 24px;
    font-size: 13px;
    color: var(--ink-soft);
}
.legend-item { display: inline-flex; align-items: center; gap: 6px; }
.legend-circle { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }
.legend-circle.available { background: var(--secondary); }
.legend-circle.partial { background: var(--gold); }
.legend-circle.full { background: var(--primary); }

.calendar-container {
    max-width: 640px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 28px;
    box-shadow: var(--shadow-sm);
}

.calendar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.calendar-title { font-size: 18px; color: var(--primary-dark); }
.calendar-nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid var(--border);
    background: var(--surface-warm);
    color: var(--primary-dark);
    font-size: 16px;
    transition: background 0.2s;
}
.calendar-nav:hover { background: var(--primary-tint); }

.calendar-weekdays, .calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 6px;
}
.calendar-weekday {
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--ink-faint);
    padding-bottom: 8px;
}

.calendar-day {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-radius: var(--r-sm);
    background: var(--surface-warm);
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
    font-size: 12.5px;
}
.calendar-day:hover:not(.empty):not(.past-date) { background: var(--primary-tint); transform: scale(1.05); }
.calendar-day.empty { background: transparent; cursor: default; }
.calendar-day.past-date { color: var(--ink-faint); cursor: not-allowed; opacity: 0.45; }
.calendar-day-number { font-weight: 700; }
.calendar-day-status { font-size: 13px; margin-top: 2px; }
.calendar-day-status.available { color: var(--secondary); }
.calendar-day-status.partial { color: var(--gold); }
.calendar-day-status.full { color: var(--primary); }

/* ========================================================
   予約完了ポップアップ
   ======================================================== */
.reservation-popup {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(58, 41, 26, 0.55);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    z-index: 2000;
    padding: 20px;
}
.reservation-popup.show { display: flex; }

.popup-content {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 44px 38px;
    max-width: 420px;
    width: 100%;
    text-align: center;
    box-shadow: var(--shadow-lg);
    animation: popupIn 0.35s var(--ease);
}
@keyframes popupIn {
    from { opacity: 0; transform: translateY(20px) scale(0.97); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.popup-icon {
    width: 56px;
    height: 56px;
    line-height: 56px;
    margin: 0 auto 18px;
    background: var(--secondary-tint);
    color: var(--secondary-dark);
    font-size: 26px;
    font-weight: 700;
    border-radius: 50%;
}
.popup-title { font-size: 19px; color: var(--primary-dark); margin-bottom: 20px; }
.popup-details { text-align: left; background: var(--surface-warm); border-radius: var(--r-md); padding: 18px 20px; margin-bottom: 18px; }
.popup-detail { font-size: 13.5px; padding: 5px 0; display: flex; justify-content: space-between; gap: 12px; }
.popup-label { color: var(--ink-faint); }
.popup-value { color: var(--ink); font-weight: 700; }
.popup-message { font-size: 13px; color: var(--ink-soft); margin-bottom: 24px; line-height: 1.8; }
.popup-close-button {
    padding: 13px 40px;
    background: var(--primary);
    color: #fff;
    font-weight: 700;
    border: none;
    border-radius: var(--r-pill);
}
.popup-close-button:hover { background: var(--primary-dark); }

/* ========================================================
   お知らせ一覧ページ
   ======================================================== */
.news-section { padding: 68px 0 90px; }

.news-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    gap: 34px;
    align-items: start;
    position: relative;
}

/* サイドバー */
.sidebar-accordion {
    background: var(--surface);
    border-radius: var(--r-md);
    box-shadow: var(--shadow-sm);
    overflow: hidden;
}
.accordion-item { border-top: 1px solid var(--border-soft); }
.accordion-item:first-child { border-top: none; }

.accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 20px;
    background: transparent;
    border: none;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--ink);
    text-align: left;
}
.accordion-icon { font-size: 10px; color: var(--primary); transition: transform 0.3s var(--ease); }
.accordion-header.active .accordion-icon { transform: rotate(180deg); }

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease);
}
.accordion-header.active + .accordion-content {
    max-height: 400px;
}

.accordion-list { padding: 0 20px 16px; }
.accordion-list li { padding: 6px 0; }
.accordion-list a, .category-link, .month-link {
    font-size: 12.5px;
    color: var(--ink-soft);
    transition: color 0.2s;
}
.accordion-list a:hover, .category-link:hover, .month-link:hover { color: var(--primary-dark); }

/* 記事一覧 */
.news-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.news-card {
    display: block;
    background: var(--surface);
    border-radius: var(--r-md);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.news-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }

.news-card-image { aspect-ratio: 16 / 10; overflow: hidden; }
.news-card-img { width: 100%; height: 100%; object-fit: cover; }
.news-card-content { padding: 20px 22px; }
.news-card-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.news-card-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-dark);
    background: var(--secondary-tint);
    padding: 4px 12px;
    border-radius: var(--r-pill);
}
.news-card-date { font-size: 11.5px; color: var(--ink-faint); }
.news-card-title { font-size: 15.5px; color: var(--ink); margin-bottom: 8px; line-height: 1.6; }
.news-card-lead {
    font-size: 12.5px;
    color: var(--ink-soft);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card-link { font-size: 12px; font-weight: 700; color: var(--primary-dark); }
.news-card-link::after { content: ' →'; }

.no-news { text-align: center; color: var(--ink-faint); padding: 60px 0; grid-column: 1 / -1; }

.pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
    flex-wrap: wrap;
}
.pagination-button {
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    font-size: 13px;
    font-weight: 700;
}
.pagination-button:hover { border-color: var(--primary); color: var(--primary-dark); }
.pagination-button.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.pagination-button:disabled { opacity: 0.4; cursor: not-allowed; }

.news-cta { text-align: center; margin-top: 56px; }

/* モバイル絞り込みハンバーガー */
.hamburger-menu {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 46px;
    height: 46px;
    background: var(--surface);
    border: 1.5px solid var(--border);
    border-radius: var(--r-pill);
    box-shadow: var(--shadow-sm);
    margin-bottom: 20px;
}
.hamburger-menu .hamburger-line {
    width: 20px;
    height: 2px;
    background: var(--primary-dark);
    border-radius: var(--r-pill);
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
}
.hamburger-menu.active .hamburger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger-menu.active .hamburger-line:nth-child(2) { opacity: 0; }
.hamburger-menu.active .hamburger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.menu-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(58, 41, 26, 0.5);
    z-index: 900;
}
.menu-overlay.active { display: block; }

@media (max-width: 900px) {
    .news-layout { grid-template-columns: 1fr; }
    .hamburger-menu { display: flex; }
    .news-sidebar {
        position: fixed;
        top: 0;
        left: -300px;
        width: 280px;
        height: 100vh;
        overflow-y: auto;
        z-index: 950;
        transition: left 0.35s var(--ease);
        padding: 90px 16px 40px;
        background: var(--bg);
    }
    .news-sidebar.mobile-active.active { left: 0; box-shadow: var(--shadow-lg); }
    .news-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   お知らせ詳細ページ
   ======================================================== */
.news-detail-section { padding: 68px 0 90px; }

.news-detail-content {
    max-width: 800px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 40px 44px;
    box-shadow: var(--shadow-sm);
}

.news-detail-header { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.news-detail-category {
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-dark);
    background: var(--secondary-tint);
    padding: 5px 14px;
    border-radius: var(--r-pill);
}
.news-detail-date { font-size: 12.5px; color: var(--ink-faint); }
.news-detail-title { font-size: 24px; color: var(--ink); margin-bottom: 26px; line-height: 1.6; }
.news-detail-image { margin-bottom: 26px; border-radius: var(--r-md); overflow: hidden; }
.news-detail-img { width: 100%; margin-bottom: 12px; border-radius: var(--r-md); }
.news-detail-body { font-size: 15px; color: var(--ink-soft); line-height: 2; margin-bottom: 34px; }

.news-detail-actions { display: flex; gap: 14px; flex-wrap: wrap; justify-content: center; }
.back-button, .reservation-link {
    padding: 13px 30px;
    border-radius: var(--r-pill);
    font-weight: 700;
    font-size: 13.5px;
}
.back-button { border: 1.5px solid var(--border); color: var(--ink-soft); }
.back-button:hover { border-color: var(--primary); color: var(--primary-dark); }
.reservation-link { background: var(--primary); color: #fff; }
.reservation-link:hover { background: var(--primary-dark); }

@media (max-width: 560px) {
    .news-detail-content { padding: 30px 22px; }
}

/* ========================================================
   管理画面（内部ツール）
   ======================================================== */
.admin-login-section { padding: 60px 0 100px; }
.admin-login-card {
    max-width: 400px;
    margin: 0 auto;
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 40px 36px;
    box-shadow: var(--shadow-sm);
}
.admin-login-button { width: 100%; }

.admin-menu-section { padding: 40px 0 0; }
.admin-menu { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.admin-menu-button {
    padding: 12px 26px;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 13.5px;
}
.admin-menu-button.active { background: var(--primary); border-color: var(--primary); color: #fff; }
.admin-menu-button.logout { color: var(--primary-dark); border-color: var(--primary-light); margin-left: auto; }

.admin-news-section { padding: 40px 0 90px; }
.admin-news-layout { display: grid; grid-template-columns: 260px 1fr; gap: 30px; align-items: start; }
.admin-news-sidebar .sidebar-accordion { position: sticky; top: 90px; }

.admin-news-list { display: flex; flex-direction: column; gap: 14px; }
.admin-news-item {
    display: flex;
    align-items: center;
    gap: 18px;
    background: var(--surface);
    border-radius: var(--r-md);
    padding: 18px 22px;
    box-shadow: var(--shadow-sm);
    flex-wrap: wrap;
}
.admin-news-info { flex: 1; min-width: 220px; }
.admin-news-date { font-size: 11.5px; color: var(--ink-faint); }
.admin-news-category {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    color: var(--secondary-dark);
    background: var(--secondary-tint);
    padding: 3px 10px;
    border-radius: var(--r-pill);
    margin-left: 8px;
}
.admin-news-title { font-size: 15px; color: var(--ink); margin: 6px 0 4px; }
.admin-news-lead { font-size: 12.5px; color: var(--ink-soft); }
.admin-news-views { font-size: 11.5px; color: var(--ink-faint); margin-top: 4px; }
.admin-news-actions { display: flex; gap: 8px; }
.admin-edit-button, .admin-delete-button {
    padding: 9px 18px;
    border-radius: var(--r-pill);
    font-size: 12.5px;
    font-weight: 700;
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
}
.admin-edit-button:hover { border-color: var(--secondary); color: var(--secondary-dark); }
.admin-delete-button:hover { border-color: var(--primary); color: var(--primary-dark); }

.admin-news-form { background: var(--surface); border-radius: var(--r-lg); padding: 32px; box-shadow: var(--shadow-sm); }
.form-actions { display: flex; gap: 12px; margin-top: 10px; }

.image-drop-zone {
    border: 2px dashed var(--border);
    border-radius: var(--r-md);
    padding: 40px 20px;
    text-align: center;
    background: var(--surface-warm);
    transition: border-color 0.25s;
}
.image-drop-zone:hover { border-color: var(--primary); }
.image-drop-zone-text { font-size: 14px; color: var(--ink); font-weight: 700; }
.image-drop-zone-subtext { font-size: 12px; color: var(--ink-faint); margin-top: 6px; }
.image-preview { margin-top: 14px; display: flex; gap: 10px; flex-wrap: wrap; }
.image-preview img { width: 90px; height: 90px; object-fit: cover; border-radius: var(--r-sm); }

.settings-tabs { display: flex; gap: 8px; margin-bottom: 26px; flex-wrap: wrap; }
.settings-tab {
    padding: 10px 22px;
    border-radius: var(--r-pill);
    background: var(--surface);
    border: 1.5px solid var(--border);
    color: var(--ink-soft);
    font-weight: 700;
    font-size: 13px;
}
.settings-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.settings-tab-content { display: none; }
.settings-tab-content.active { display: block; }

.settings-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
.settings-form-container,
.settings-help-container { min-width: 0; }
.settings-help-container { background: var(--surface-warm); border-radius: var(--r-md); padding: 26px 28px; }
.settings-help .help-title { font-size: 14.5px; color: var(--primary-dark); margin-bottom: 12px; }
.help-steps { padding-left: 20px; font-size: 13px; color: var(--ink-soft); line-height: 2; max-width: 100%; }
.help-steps pre { max-width: 100%; overflow-x: auto; box-sizing: border-box; }
.help-sublist { padding-left: 18px; font-size: 12.5px; color: var(--ink-faint); }
.help-note { font-size: 12px; color: var(--ink-faint); margin-top: 14px; background: var(--secondary-tint); padding: 12px 16px; border-radius: var(--r-sm); }

@media (max-width: 900px) {
    .admin-news-layout, .settings-layout { grid-template-columns: 1fr; }
}

/* ========================================================
   特徴バッジ帯（営業時間・駐車場など）
   ======================================================== */
.feature-badge-strip {
    background: var(--primary);
    padding: 22px 0;
}

.feature-badge-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
}

.feature-badge {
    background: #fff;
    border-radius: var(--r-sm);
    padding: 14px 12px;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    font-size: 13px;
    color: var(--ink);
    line-height: 1.4;
    text-align: left;
}

.feature-badge-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.feature-badge-icon svg { width: 17px; height: 17px; }

@media (max-width: 760px) {
    .feature-badge-grid { grid-template-columns: repeat(2, 1fr); }
    .feature-badge { font-size: 12px; padding: 12px 10px; }
}

/* ========================================================
   お悩みチェックリスト
   ======================================================== */
.checklist-section {
    padding: 74px 0;
    background: var(--bg-soft);
}

.checklist-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 48px;
    align-items: center;
}

.checklist-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--surface);
    border-radius: var(--r-sm);
    margin-bottom: 10px;
    font-weight: 700;
    font-size: 14.5px;
    color: var(--ink);
    box-shadow: var(--shadow-sm);
}

.checklist-check {
    width: 22px;
    height: 22px;
    border-radius: 6px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}
.checklist-check svg { width: 13px; height: 13px; }

.checklist-note {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 30px 28px;
    box-shadow: var(--shadow-sm);
    border-left: 5px solid var(--primary);
}
.checklist-note-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 12px;
}
.checklist-note-text {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.9;
}

@media (max-width: 820px) {
    .checklist-grid { grid-template-columns: 1fr; }
    .checklist-note { order: -1; }
}

/* ========================================================
   選ばれる理由（数字バッジ）
   ======================================================== */
.reasons-section { padding: 74px 0; }

.reasons-list {
    max-width: 840px;
    margin: 0 auto;
}

.reason-item {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 24px;
    padding: 26px 0;
    border-bottom: 1px dashed var(--border);
    align-items: start;
}
.reason-item:first-child { padding-top: 0; }
.reason-item:last-child { border-bottom: none; }

.reason-number {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #fff;
    font-weight: 900;
    font-size: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-sm);
}

.reason-title {
    font-size: 16.5px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 8px;
}

.reason-desc {
    font-size: 13.5px;
    color: var(--ink-soft);
    line-height: 1.85;
}

@media (max-width: 560px) {
    .reason-item { grid-template-columns: 48px 1fr; gap: 16px; }
    .reason-number { width: 44px; height: 44px; font-size: 18px; }
}

/* ========================================================
   施術の流れ（3ステップ）
   ======================================================== */
.process-section { padding: 74px 0; background: var(--bg-soft); }

.process-steps {
    display: flex;
    align-items: stretch;
    gap: 8px;
}

.process-step {
    flex: 1;
    background: var(--surface);
    border: 2px solid var(--primary-tint);
    border-radius: var(--r-lg);
    padding: 34px 22px;
    text-align: center;
}

.process-step-num {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--primary);
    color: #fff;
    font-weight: 900;
    font-size: 17px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.process-step-title {
    font-size: 15.5px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
}

.process-step-desc {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.8;
}

.process-arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 22px;
    font-weight: 900;
    flex-shrink: 0;
    width: 20px;
}

@media (max-width: 760px) {
    .process-steps { flex-direction: column; }
    .process-arrow { width: auto; transform: rotate(90deg); padding: 4px 0; }
}

/* ========================================================
   メニュー・料金 ティザーカード（トップページ）
   ======================================================== */
.menu-teaser-section { padding: 74px 0; }

.menu-teaser-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}

.menu-teaser-card {
    background: var(--surface);
    border-radius: var(--r-lg);
    padding: 32px 24px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border-top: 5px solid var(--primary);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.menu-teaser-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-md);
}

.menu-teaser-icon {
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: var(--primary-tint);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 18px;
}
.menu-teaser-icon svg { width: 28px; height: 28px; }

.menu-teaser-title {
    font-size: 16px;
    font-weight: 800;
    color: var(--ink);
    margin-bottom: 10px;
}

.menu-teaser-price {
    font-family: var(--font-head);
    color: var(--primary);
    font-weight: 900;
    font-size: 21px;
    margin-bottom: 10px;
}

.menu-teaser-desc {
    font-size: 12.5px;
    color: var(--ink-soft);
    line-height: 1.75;
}

.menu-teaser-cta { text-align: center; margin-top: 40px; }

@media (max-width: 820px) {
    .menu-teaser-grid { grid-template-columns: 1fr; }
}

/* ========================================================
   LINE予約ステップ
   ======================================================== */
.line-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin: 22px 0 26px;
}

.line-step { text-align: center; }

.line-step-num {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: var(--secondary);
    color: #fff;
    font-weight: 900;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 8px;
}

.line-step-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--ink-soft);
    line-height: 1.5;
}

@media (max-width: 560px) {
    .line-steps { grid-template-columns: repeat(2, 1fr); gap: 16px 10px; }
}
