/*
Theme Name: Lightning Child Re.Boorn
Template: lightning
Version: 1.0.0
Description: 自律神経整体 Re.Boorn 用子テーマ
Author: ピシュカWeb制作所
*/

/* ===== カラー変数 ===== */
:root {
    --green-dark: #739656;
    --green-mid: #8aab6b;
    --green-light: #aac78d;
    --green-pale: #eef5e7;
    --green-bg: #f6faf1;
    --white: #FFFFFF;
    --text-dark: #252d1e;
    --text-mid: #4a5a3a;
    --text-light: #7a8f6a;
    --border: #cfe0bc;
    --gold: #9a7a2a;
}

/* ===== リセット・ベース ===== */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    /* Lightning親テーマの overflow-x:hidden を打ち消す。
       hidden はスクロールコンテキストを作り position:sticky を無効化するため、
       同等の効果を持ちつつ sticky を殺さない clip を使う */
    overflow-x: clip !important;
}

body {
    font-family: 'Noto Sans JP', sans-serif;
    color: var(--text-dark);
    background: var(--white);
    line-height: 1.8;
    overflow-x: clip !important;
}

/* ===== Lightningデフォルトの上書き ===== */
.entry-content,
.site-main,
#contents,
#main {
    max-width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
}

#site-header,
#site-footer,
.site-footer,
.header-unit {
    display: none !important;
}

/* ===== HEADER ===== */
#reboorn-header {
    position: sticky !important;
    top: 0 !important;
    z-index: 100;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(8px);
    border-bottom: 1px solid var(--border);
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo img {
    height: 50px;
}

#reboorn-nav {
    display: flex;
    align-items: center;
    gap: 28px;
}

#reboorn-nav a {
    text-decoration: none;
    font-size: 13px;
    color: var(--text-mid);
    font-weight: 500;
    transition: color 0.2s;
}

#reboorn-nav a:hover {
    color: var(--green-dark);
}

.btn-nav {
    background: var(--green-dark);
    color: var(--white) !important;
    padding: 10px 18px;
    border-radius: 6px;
    font-size: 13px !important;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: background 0.2s;
}

.btn-nav:hover {
    background: var(--green-mid) !important;
}

/* ===== HEADER TEL ===== */
.header-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    padding: 4px 0;
}

.header-tel-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.header-tel-body {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.header-tel-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark) !important;
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.header-tel-hours {
    font-size: 10px;
    color: var(--text-light);
    letter-spacing: 0.02em;
}

.header-tel:hover .header-tel-num {
    color: var(--green-mid) !important;
}

/* ドロワー内の電話番号 */
.drawer-tel {
    display: flex !important;
    flex-direction: column;
    gap: 2px;
    margin-top: 24px;
    padding: 16px !important;
    background: var(--green-pale);
    border: 1px solid var(--border);
    border-bottom: 1px solid var(--border) !important;
    border-radius: 8px;
    text-align: center;
    text-decoration: none;
}

.drawer-tel-label {
    font-size: 11px;
    color: var(--text-light);
}

.drawer-tel-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.03em;
}

.drawer-tel-hours {
    font-size: 10px;
    color: var(--text-light);
}

/* ===== HERO ===== */
.hero {
    display: grid;
    grid-template-columns: 2fr 3fr;
    align-items: center;
    gap: 60px;
    padding: 32px 80px 64px;
    background: linear-gradient(135deg, var(--white) 0%, var(--green-bg) 100%);
    min-height: calc(100vh - 72px);
}

.hero-eyebrow::before {
    content: '';
    width: 24px;
    height: 1px;
    background: var(--green-mid);
    display: block;
}

.hero h1 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 2.8vw, 38px);
    font-weight: 700;
    line-height: 1.6;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.hero h1 .catch-quote {
    font-size: clamp(14px, 1.5vw, 20px);
    color: var(--text-mid);
    font-weight: 400;
    display: block;
    margin-bottom: 8px;
}

.hero h1 .catch-main {
    color: var(--green-dark);
}

.hero-sub {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
    margin-bottom: 36px;
}

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.btn-primary {
    background: var(--green-dark);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}

.btn-primary:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

.btn-outline {
    border: 1.5px solid var(--green-dark);
    color: var(--green-dark);
    padding: 14px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: background 0.2s, transform 0.2s;
}

.btn-outline:hover {
    color: var(--green-dark);
    background: var(--green-pale);
    transform: translateY(-1px);
}

.icon-deco {
    height: 50px;
}

.hero-badges {
    display: flex;
    gap: 28px;
    align-items: center;
}

.badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.badge-laurel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.badge-laurel p {
    text-align: center;
    margin-bottom: 5px;
}

.icon-illust {
    height: 40px;
}

.fv-icon-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--border);
    padding: 10px;
    border-radius: 4px;
}

.badge-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.badge-unit {
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
}

.badge-label {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

.hero-note {
    font-size: 10px;
    color: var(--text-light);
    margin-top: 10px;
}

.hero-image {
    border-radius: 24px;
    overflow: hidden;
    aspect-ratio: 5/4;
    /*
    background: var(--green-pale);
    */
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 13px;
    text-align: center;
    line-height: 2;
}

.hero-image picture img {
    width: 85%;
}

/* ===== SECTION COMMON ===== */
.reboorn-section {
    padding: 80px;
}

.section-bg {
    background: var(--green-bg);
}

.section-header {
    text-align: center;
    margin-bottom: 52px;
}

.section-eyebrow {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 16px;
    color: var(--green-mid);
    letter-spacing: 0.18em;
    font-weight: 500;
    margin-bottom: 10px;
}

.icon-eyebrow {
    height: 30px;
}

.section-header h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(20px, 2.2vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
}

/* ===== CONCERNS ===== */
.concerns-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 20px;
}

.concern-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    border: 1px solid var(--border);
    transition: box-shadow 0.2s, transform 0.2s;
}

.concern-card:hover {
    box-shadow: 0 6px 20px rgba(115, 150, 86, 0.12);
    transform: translateY(-2px);
}

.concern-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 12px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.concern-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.concern-card h3 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 6px;
}

.concern-card p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
}

.concerns-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

/* ===== REASONS ===== */
.reasons-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reason-card {
    background: var(--green-bg);
    border-radius: 16px;
    padding: 40px 28px;
    text-align: center;
    border: 1px solid var(--border);
    position: relative;
}

.reason-num {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--green-dark);
    color: var(--white);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-size: 12px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reason-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 18px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--border);
}

.reason-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.reason-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.reason-tag {
    display: inline-block;
    font-size: 10px;
    color: var(--green-mid);
    border: 1px solid var(--green-light);
    border-radius: 4px;
    padding: 2px 8px;
    margin-bottom: 10px;
}

.reason-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
}

/* ===== FLOW ===== */
.flow-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.flow-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 16px;
    position: relative;
}

.flow-step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 24px;
    font-size: 18px;
    color: var(--green-light);
}

.flow-circle {
    width: 68px;
    height: 68px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--green-light);
    margin-bottom: 14px;
    position: relative;
}

.flow-circle img {
    width: 34px;
    height: 34px;
    object-fit: contain;
}

.flow-num {
    position: absolute;
    top: -8px;
    left: -8px;
    width: 22px;
    height: 22px;
    background: var(--green-dark);
    color: var(--white);
    border-radius: 50%;
    font-size: 10px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.flow-step h3 {
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 8px;
}

.flow-step p {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.7;
}

.flow-link {
    text-align: center;
    margin-top: 36px;
}

.btn-text {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--green-dark);
    font-size: 13px;
    font-weight: 500;
    text-decoration: none;
    border-bottom: 1px solid var(--green-light);
    padding-bottom: 2px;
}

.btn-text span.arrow {
    display: inline-block;
    transition: transform 0.2s ease;
}

.btn-text:hover {
    color: var(--green-dark);
}

.btn-text:hover span.arrow {
    transform: translateX(4px);
}

/* ===== VOICES ===== */
.voices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr) 200px;
    gap: 16px;
    align-items: start;
}

.voice-card {
    background: var(--green-bg);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    height: 100%;
}

.voice-stars {
    color: var(--gold);
    font-size: 13px;
    margin-bottom: 10px;
}

.voice-text {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 10px;
}

.voice-source {
    font-size: 10px;
    color: var(--text-light);
}

.voice-satisfaction {
    background: var(--green-dark);
    border-radius: 12px;
    padding: 24px 16px;
    text-align: center;
    color: var(--white);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.voice-satisfaction .archive-wrapper {
    display: flex;
    align-items: center;
}

.sat-label {
    font-size: 11px;
    opacity: 0.8;
}

.sat-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

.sat-unit {
    font-size: 18px;
    font-weight: 700;
}

.sat-note {
    font-size: 10px;
    opacity: 0.6;
    line-height: 1.6;
}

.voices-link {
    text-align: center;
    margin-top: 28px;
}

.voice-disclaimer {
    font-size: 10px;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
}

/* ===== TREATMENT ===== */
.treatment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.treatment-card {
    background: var(--white);
    border-radius: 12px;
    padding: 28px 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.treatment-icon {
    margin-bottom: 12px;
}

.treatment-icon img {
    width: 48px;
    height: 48px;
    object-fit: contain;
}

.treatment-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.treatment-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 4px;
}

.treatment-tax {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 14px;
}

.treatment-desc {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.8;
    text-align: left;
}

.treatment-link {
    text-align: center;
    margin-top: 28px;
}

/* ===== CTA ===== */
.reboorn-cta {
    background: var(--green-dark);
    padding: 80px;
}

.cta-inner {
    max-width: 960px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    align-items: center;
}

.cta-message h2 {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
    line-height: 1.6;
    padding-top: 0;
}

.cta-message p {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.9;
    margin-bottom: 0;
}

.cta-contacts {
    background-color: rgba(255, 255, 255, 0.97);
    display: flex;
    padding: 20px 40px;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
    border-radius: 12px;
}

.cta-contacts p {
    margin-bottom: 0;
}

.cta-tel-label {
    font-size: 11px;
    margin-bottom: 4px;
    color: var(--text-mid);
}

.cta-tel-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--green-dark);
}

.cta-tel-hours {
    font-size: 11px;
    margin-top: 4px;
    color: var(--text-mid);
}

.cta-btn-label {
    font-size: 11px;
}

.btn-cta {
    background: var(--green-dark);
    color: var(--white) !important;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: opacity 0.2s;
}

.btn-cta:hover {
    background: var(--green-mid) !important;
    opacity: 0.9;

}

/* ===== FOOTER ===== */
#reboorn-footer {
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 80px 36px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1.4fr;
    gap: 40px;
    margin-bottom: 48px;
}

.footer-logo-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 4px;
}

.footer-tagline {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.9;
}

.footer-col h4 {
    font-size: 12px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 14px;
    letter-spacing: 0.1em;
}

.footer-col ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-col ul li {
    margin: 0;
}

.footer-col ul li a {
    text-decoration: none;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

.footer-info p {
    padding-left: 24px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 2;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 24px;
    text-align: center;
    font-size: 11px;
    color: rgba(255, 255, 255, 0.3);
}

/* ===== HAMBURGER MENU ===== */
.hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 200;
}

.hamburger span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
    transform-origin: center;
}

.hamburger.is-open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.hamburger.is-open span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.nav-drawer {
    display: none;
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    z-index: 150;
    padding: 88px 32px 40px;
    box-shadow: -4px 0 24px rgba(0, 0, 0, 0.1);
    transition: right 0.3s ease;
    flex-direction: column;
    gap: 0;
}

.nav-drawer.is-open {
    right: 0;
}

.nav-drawer a {
    display: block;
    text-decoration: none;
    font-size: 15px;
    color: var(--text-mid);
    font-weight: 500;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
    transition: color 0.2s;
}

.nav-drawer a:hover {
    color: var(--green-dark);
}

.nav-drawer .btn-nav {
    display: block;
    text-align: center;
    margin-top: 24px;
    border-bottom: none;
    border-radius: 8px;
    padding: 14px 20px;
}

/* ★ Fix: pointer-events:none で dev-tools干渉を解消 */
.nav-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 140;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
}

.nav-overlay.is-open {
    opacity: 1;
    pointer-events: auto;
}

/* ===== Lightning上書き ===== */
h3:where(:not(.wp-block-post-title)):after {
    display: none;
}

h2:where(:not(.wp-block-post-title)) {
    border-top: none;
}

/* ===== RESPONSIVE: タブレット(768px〜1024px) ===== */

/* ===== RESPONSIVE: タブレット(〜1024px) ===== */

/* ===== PAGE HERO ===== */
.page-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-bg) 100%);
    padding: 80px 80px 64px;
    border-bottom: 1px solid var(--border);
}

.page-hero-inner {
    max-width: 800px;
}

.page-hero-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 3.5vw, 48px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
    margin-bottom: 16px;
}

.page-hero-sub {
    font-size: 16px;
    color: var(--text-light);
    line-height: 1.8;
}

/* ===== ABOUT HERO ===== */
.about-hero {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
    position: relative;
}

.about-hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    min-height: 340px;
}

.about-hero-content {
    padding: 64px 60px 64px 80px;
}

.about-breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 20px;
}

.about-breadcrumb a {
    color: var(--text-light);
    text-decoration: none;
    transition: color 0.2s;
}

.about-breadcrumb a:hover {
    color: var(--green-dark);
}

.about-breadcrumb span {
    color: var(--border);
}

.about-hero .page-hero-title {
    font-size: clamp(32px, 4vw, 52px);
    margin-bottom: 16px;
}

.about-hero-catch {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(14px, 1.6vw, 18px);
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.6;
}

.about-hero-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 2;
}

.about-hero-image {
    height: 100%;
    min-height: 340px;
    display: flex;
    align-items: stretch;
}

.about-hero-image-wrap {
    width: 100%;
    overflow: hidden;
}

.about-hero-image-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ===== HISTORY TIMELINE ===== */
.history-timeline {
    display: flex;
    flex-direction: column;
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}

.history-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 24px;
    bottom: 24px;
    width: 2px;
    background: var(--border);
}

.history-item {
    display: grid;
    grid-template-columns: 100px 1fr;
    gap: 32px;
    padding: 32px 0;
    border-bottom: 1px solid var(--border);
    position: relative;
}

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

.history-year {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
    text-align: right;
    padding-right: 24px;
    padding-top: 4px;
    line-height: 1.6;
}

.history-item::after {
    content: '';
    position: absolute;
    left: 96px;
    top: 36px;
    width: 10px;
    height: 10px;
    background: var(--green-dark);
    border-radius: 50%;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 2px var(--green-dark);
}

.history-content h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.history-content p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
}

.history-item--now .history-year {
    font-size: 15px;
}

.history-item--now::after {
    width: 14px;
    height: 14px;
    left: 94px;
}

.history-badges {
    display: flex;
    gap: 24px;
    margin-top: 20px;
    flex-wrap: wrap;
    align-items: center;
}

.history-badges .icon-deco {
    height: 40px;
}

.history-badges .icon-illust {
    height: 32px;
}

.h-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
}

.h-badge-laurel {
    display: flex;
    align-items: center;
    gap: 8px;
}

.h-badge-laurel p {
    text-align: center;
    margin-bottom: 5px;
}

.h-badge-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.h-badge-unit {
    font-size: 13px;
    font-weight: 700;
    color: var(--green-dark);
}

.h-badge-label {
    font-size: 11px;
    color: var(--text-light);
    text-align: center;
    line-height: 1.4;
}

/* ===== STAFF ===== */
.staff-card {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 60px;
    align-items: start;
    max-width: 960px;
    margin: 0 auto;
}

.staff-photo-placeholder {
    aspect-ratio: 3/4;
    background: var(--green-pale);
    border-radius: 16px;
    overflow: hidden;
}

.staff-photo-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 16px;
}

.staff-role {
    font-size: 12px;
    color: var(--text-light);
    letter-spacing: 0.1em;
    margin-bottom: 6px;
}

.staff-name {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    margin-top: 0;
}

.staff-tags {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 24px;
    padding-left: 0;
}

.staff-tags li {
    font-size: 12px;
    color: var(--green-dark);
    display: flex;
    align-items: center;
    gap: 6px;
}

.staff-tags li::before {
    content: '—';
    color: var(--green-light);
}

.staff-quote {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    color: var(--green-dark);
    border-left: 3px solid var(--green-light);
    padding-left: 16px;
    margin: 0 0 24px;
    line-height: 1.8;
    font-style: normal;
}

.staff-message p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 14px;
}

.staff-message p:last-child {
    margin-bottom: 0;
}

/* ===== TECHNIQUES ===== */
.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}

.technique-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.technique-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.technique-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.technique-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.technique-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
}

.technique-staff {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 8px;
}

.techniques-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
}

/* ===== RESULTS ===== */
.results-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.results-card {
    background: var(--green-bg);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border);
}

.results-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.results-range {
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 12px;
}

.results-card>p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
}

.results-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding-left: 0;
    margin-bottom: 0;
}

.results-tags li {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 4px 12px;
    font-size: 12px;
    color: var(--text-mid);
    margin: 0;
}

.results-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
    padding-left: 0;
}

.results-list li {
    font-size: 13px;
    color: var(--text-mid);
    display: flex;
    align-items: flex-start;
    gap: 8px;
    line-height: 1.7;
    margin: 0;
}

.results-list li::before {
    content: '›';
    color: var(--green-dark);
    font-size: 16px;
    flex-shrink: 0;
}

.results-voice {
    font-size: 12px;
    color: var(--green-dark);
    background: var(--green-pale);
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.8;
}

/* ===== REASSURANCE ===== */
.reassurance-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.reassurance-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.reassurance-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 16px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.reassurance-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.reassurance-card h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-dark);
}

.reassurance-card p {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
}


/* ===== MENU PAGE ===== */
.menu-notice {
    display: inline-block;
    background: var(--green-dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 20px;
    margin-top: 12px;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    align-items: stretch;
}

.menu-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 24px;
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.menu-card-head {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 16px;
}

.menu-icon {
    width: 64px;
    height: 64px;
    margin-bottom: 12px;
    background: var(--green-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-icon img {
    width: 36px;
    height: 36px;
    object-fit: contain;
}

.menu-card-head h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    text-align: center;
    margin: 0;
}

.menu-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 16px;
}

.menu-symptoms {
    background: var(--green-bg);
    border-radius: 8px;
    padding: 14px 16px;
    margin-bottom: 20px;
    margin-top: auto;
}

.menu-symptoms-label {
    font-size: 11px;
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 6px;
}

.menu-symptoms-text {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

.menu-card-foot {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.menu-time {
    font-size: 12px;
    color: var(--text-light);
}

.menu-price {
    font-family: 'Noto Serif JP', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--green-dark);
    line-height: 1;
}

.menu-price-unit {
    font-size: 14px;
    margin-left: 2px;
}

/* ===== MENU FLOW ===== */
.menu-flow-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1100px;
    margin: 0 auto;
}

.menu-flow-step {
    background: var(--green-bg);
    border-radius: 12px;
    padding: 24px 20px;
    border: 1px solid var(--border);
}

.menu-flow-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 13px;
    font-weight: 700;
    color: var(--white);
    background: var(--green-dark);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
}

.menu-flow-step h3 {
    font-size: 14px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.menu-flow-step p {
    font-size: 12px;
    color: var(--text-mid);
    line-height: 1.8;
    margin: 0;
}

/* ===== SYMPTOMS ===== */
.symptoms-tags {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    padding-left: 0;
    margin: 0 auto 28px;
    max-width: 900px;
}

.symptoms-tags li {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 13px;
    color: var(--text-mid);
    margin: 0;
}

.symptoms-note {
    text-align: center;
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.9;
}

/* ===== FAQ ===== */
.faq-list {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    background: var(--green-bg);
    border-radius: 12px;
    padding: 24px 28px;
    border: 1px solid var(--border);
}

.faq-q {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
    margin-bottom: 10px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.faq-q::before {
    content: 'Q';
    font-size: 16px;
    color: var(--green-light);
    flex-shrink: 0;
}

.faq-a {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
    margin: 0;
    padding-left: 26px;
}

/* ===== INFO ===== */
.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.info-card {
    background: var(--white);
    border-radius: 12px;
    padding: 24px;
    border: 1px solid var(--border);
    text-align: center;
}

.info-card h3 {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.1em;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--border);
}

.info-card p {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.info-sub {
    font-size: 11px;
    color: var(--text-light);
}

.info-tel {
    font-family: 'Noto Serif JP', serif;
    font-size: 18px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.05em;
}


/* ===== ACCESS PAGE ===== */
.access-hero {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-bg) 100%);
    padding: 64px 80px;
    border-bottom: 1px solid var(--border);
}

.access-hero-inner {
    max-width: 760px;
}

.access-hero-catch {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(14px, 1.6vw, 18px);
    color: var(--green-dark);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.7;
}

.access-hero-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 2;
    margin: 0;
}

/* --- 住所・地図 --- */
.access-layout {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
    max-width: 1100px;
    margin: 0 auto;
}

.access-dl {
    margin: 0 0 28px;
    border-top: 1px solid var(--border);
}

.access-dl-row {
    display: grid;
    grid-template-columns: 90px 1fr;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--border);
}

.access-dl-row dt {
    font-size: 12px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.08em;
    padding-top: 2px;
}

.access-dl-row dd {
    font-size: 14px;
    color: var(--text-dark);
    line-height: 1.8;
    margin: 0;
}

.access-note {
    font-size: 11px;
    color: var(--text-light);
    line-height: 12px;
}

.access-note-warning {
    margin-top: 12px;
}

.access-note p {
    margin-bottom: 4px;
}

.access-tel {
    font-family: 'Noto Serif JP', serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.05em;
    text-decoration: none;
}

.access-tel:hover {
    color: var(--green-mid);
}

.access-buttons {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* --- 地図 --- */
.access-map-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
}

.access-map-wrap iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.access-map-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(115, 150, 86, 0.16);
    pointer-events: none;
}

/* --- アクセス方法 --- */
.route-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.route-card {
    background: var(--white);
    border-radius: 16px;
    padding: 32px 28px;
    border: 1px solid var(--border);
}

.route-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 17px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--border);
}

.route-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-left: 0;
    margin-bottom: 18px;
}

.route-list li {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.8;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}

.route-list li::before {
    content: '›';
    color: var(--green-dark);
    font-size: 16px;
    flex-shrink: 0;
    line-height: 1.4;
}

.route-highlight {
    font-size: 12px;
    color: var(--green-dark);
    background: var(--green-pale);
    border-radius: 8px;
    padding: 12px 14px;
    line-height: 1.8;
    margin: 0;
}

.route-caution {
    font-size: 12px;
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
}

/* ===== RESPONSIVE: 小型PC(〜1200px) ===== */

/* ===== CONTACT PAGE ===== */
.contact-method-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}

.contact-method-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
}

.contact-method-card--accent {
    background: var(--green-bg);
}

.contact-method-head {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--border);
}

.contact-method-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.contact-method-head h3 {
    font-family: 'Noto Serif JP', serif;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.contact-method-tel {
    font-family: 'Noto Serif JP', serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.03em;
    text-decoration: none;
    line-height: 1.2;
    transition: color 0.2s;
}

.contact-method-tel:hover {
    color: var(--green-mid);
}

.contact-method-note {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.7;
    margin: 8px 0 16px;
}

.contact-method-badge {
    display: inline-block;
    align-self: flex-start;
    background: var(--green-dark);
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
    padding: 6px 18px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.contact-line-btn {
    justify-content: center;
}

.contact-method-desc {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
    margin: 0;
    margin-top: auto;
}

.contact-method-caution {
    font-size: 11px;
    color: var(--text-light);
}

/* --- フォーム枠 --- */
.contact-form-wrap {
    max-width: 720px;
    margin: 0 auto;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 40px;
}

.contact-form-lead {
    font-size: 12px;
    color: var(--text-light);
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
}

.req-mark {
    display: inline-block;
    background: var(--green-dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 3px;
    margin-right: 2px;
}

.contact-privacy {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.8;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
}

/* ===== Contact Form 7 上書き ===== */
.wpcf7 {
    margin: 0;
}

.wpcf7 form .wpcf7-response-output {
    margin: 24px 0 0;
    padding: 14px 18px;
    border-radius: 8px;
    border-width: 1px;
    font-size: 13px;
    line-height: 1.8;
}

/* 入力行 */
.cf-row {
    margin-bottom: 24px;
}

.cf-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 8px;
}

.cf-note {
    font-size: 11px;
    color: var(--text-light);
    margin-bottom: 8px;
    line-height: 1.7;
}

/* 入力欄の共通スタイル */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="date"],
.wpcf7 input[type="number"],
.wpcf7 select,
.wpcf7 textarea {
    width: 100%;
    padding: 12px 14px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 14px;
    color: var(--text-dark);
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    line-height: 1.7;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="date"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
    outline: none;
    border-color: var(--green-dark);
    box-shadow: 0 0 0 3px rgba(115, 150, 86, 0.12);
}

.wpcf7 textarea {
    min-height: 160px;
    resize: vertical;
}

.wpcf7 ::placeholder {
    color: #b8c4ae;
}

/* ラジオ・チェックボックス */
.wpcf7 .wpcf7-radio,
.wpcf7 .wpcf7-checkbox {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 20px;
}

.wpcf7 .wpcf7-list-item {
    margin: 0;
}

.wpcf7 .wpcf7-list-item label {
    display: flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    font-size: 13px;
    color: var(--text-mid);
}

.wpcf7 input[type="radio"],
.wpcf7 input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--green-dark);
    cursor: pointer;
}

/* 送信ボタン */
.wpcf7 input[type="submit"] {
    display: block;
    width: 100%;
    max-width: 280px;
    margin: 32px auto 0;
    padding: 16px 24px;
    font-family: 'Noto Sans JP', sans-serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--white);
    background: var(--green-dark);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}

.wpcf7 input[type="submit"]:hover {
    background: var(--green-mid);
    transform: translateY(-1px);
}

.wpcf7 input[type="submit"]:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* バリデーションエラー */
.wpcf7 .wpcf7-not-valid {
    border-color: #c0563a !important;
}

.wpcf7 .wpcf7-not-valid-tip {
    font-size: 11px;
    color: #c0563a;
    margin-top: 6px;
}

/* 送信中スピナー */
.wpcf7 .wpcf7-spinner {
    margin: 12px auto 0;
    display: block;
}

/* --- アクセス簡易案内 --- */
.contact-access {
    max-width: 720px;
    margin: 0 auto;
}

.contact-access-link {
    text-align: center;
    margin-top: 28px;
}


/* ===== 404 PAGE ===== */
.nf-section {
    background: linear-gradient(135deg, var(--white) 0%, var(--green-bg) 100%);
    padding: 100px 80px;
    min-height: calc(100vh - 72px);
    display: flex;
    align-items: center;
    justify-content: center;
}

.nf-inner {
    max-width: 800px;
    width: 100%;
    text-align: center;
}

.nf-code {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(64px, 10vw, 120px);
    font-weight: 700;
    color: var(--green-light);
    line-height: 1;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.nf-title {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(20px, 2.6vw, 30px);
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.6;
    margin-bottom: 20px;
}

.nf-text {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 2;
    margin-bottom: 48px;
}

/* --- ページ一覧 --- */
.nf-links {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
}

.nf-link-card {
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 20px 24px;
    text-decoration: none;
    transition: box-shadow 0.2s, transform 0.2s, border-color 0.2s;
}

.nf-link-card:hover {
    border-color: var(--green-light);
    box-shadow: 0 6px 20px rgba(115, 150, 86, 0.12);
    transform: translateY(-2px);
}

.nf-link-title {
    font-family: 'Noto Serif JP', serif;
    font-size: 15px;
    font-weight: 700;
    color: var(--green-dark);
}

.nf-link-desc {
    font-size: 11px;
    color: var(--text-light);
    line-height: 1.7;
}

/* --- 問い合わせ導線 --- */
.nf-contact {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 32px;
}

.nf-contact-lead {
    font-size: 13px;
    color: var(--text-mid);
    line-height: 1.9;
    margin-bottom: 20px;
}

.nf-contact-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
}

.nf-tel {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nf-tel-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
}

.nf-tel-body {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
    text-align: left;
}

.nf-tel-num {
    font-family: 'Noto Serif JP', serif;
    font-size: 22px;
    font-weight: 700;
    color: var(--green-dark);
    letter-spacing: 0.03em;
    transition: color 0.2s;
}

.nf-tel:hover .nf-tel-num {
    color: var(--green-mid);
}

.nf-tel-hours {
    font-size: 10px;
    color: var(--text-light);
}

.nf-btn {
    padding: 14px 28px;
}

.nf-br-sp {
    display: none;
}

@media (max-width: 1200px) {
    #reboorn-header {
        padding: 0 24px;
    }

    #reboorn-nav {
        gap: 18px;
    }

    .header-tel-num {
        font-size: 17px;
    }

    .header-tel-hours {
        display: none;
    }

    .header-tel-icon {
        width: 17px;
        height: 17px;
    }
}

@media (max-width: 1024px) {

    /* Header */
    #reboorn-header {
        padding: 0 24px;
    }

    #reboorn-nav {
        display: none;
    }

    .hamburger {
        display: flex;
    }

    .nav-drawer {
        display: flex;
    }

    .nav-overlay {
        display: block;
    }

    /* Hero: オーバーレイ形式 */
    .hero {
        display: block;
        position: relative;
        padding: 0;
        min-height: auto;
        background: none;
    }

    .hero-image {
        aspect-ratio: 1006/933;
        border-radius: 0;
        width: 100%;
        background: none;
    }

    .hero-image img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .hero-image picture img {
        width: 100%;
    }

    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 32px 40px 36px;
        background: linear-gradient(to top, rgba(37, 45, 30, 0.88) 0%, rgba(37, 45, 30, 0.6) 60%, transparent 100%);
        z-index: 1;
    }

    .hero h1 {
        font-size: clamp(18px, 2.8vw, 30px);
        color: var(--white);
    }

    .hero h1 .catch-quote {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero h1 .catch-main {
        color: #c8dbb0;
    }

    .hero-sub {
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 24px;
    }

    .hero-buttons {
        margin-bottom: 24px;
    }

    .btn-outline {
        border-color: rgba(255, 255, 255, 0.7);
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-badges {
        gap: 16px;
    }

    .badge-label {
        color: rgba(255, 255, 255, 0.8);
    }

    .badge-num,
    .badge-unit {
        color: var(--white);
    }

    .fv-icon-wrap {
        border-color: rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
    }

    .fv-icon-wrap .badge-label {
        color: rgba(255, 255, 255, 0.8);
    }

    .hero-note {
        color: rgba(255, 255, 255, 0.5);
    }

    .icon-deco {
        height: 36px;
    }

    /* セクション */
    .reboorn-section {
        padding: 60px 40px;
    }

    .reboorn-cta {
        padding: 60px 40px;
    }

    #reboorn-footer {
        padding: 60px 40px 36px;
    }

    /* ★ Fix: 4列→2列 */
    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    /* ★ Fix: flowを2列×2行に */
    .flow-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .flow-step:not(:last-child)::after {
        display: none;
    }

    /* ★ Fix: voicesは3列+satisfactionを下に */
    .voices-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }

    .voice-satisfaction {
        grid-column: 1 / -1;
        flex-direction: row;
        gap: 24px;
        justify-content: center;
        padding: 20px 40px;
    }

    .sat-num {
        font-size: 36px;
    }

    /* footer */
    .footer-inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer-info p {
        padding-left: 21px;
    }

    /* ★ Fix: CTAを縦積み */
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 32px;
        text-align: center;
    }

    .cta-tel-num {
        justify-content: center;
    }

    .cta-contacts {
        flex-direction: column;
        padding: 24px;
        gap: 20px;
    }

    /* About */
    .page-hero {
        padding: 60px 40px 48px;
    }

    /* ★ Fix: staff-cardはそのまま横並び(240px 1fr) */
    .staff-card {
        grid-template-columns: 240px 1fr;
        gap: 40px;
    }

    /* ★ Fix: techniquesとreassuranceは2列、resultsは1列 */
    .techniques-grid,
    .reassurance-grid {
        grid-template-columns: 1fr 1fr;
    }

    .results-grid {
        grid-template-columns: 1fr;
    }

    /* About hero */
    .about-hero-content {
        padding: 48px 32px 48px 40px;
    }

    .about-hero-image {
        min-height: 280px;
    }

    /* Menu page */
    .menu-grid {
        grid-template-columns: 1fr 1fr;
    }

    .menu-flow-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    /* Menu hero: 切り抜き基準を右に寄せて被写体の見切れを防ぐ */
    .menu-hero .about-hero-image-wrap img {
        object-position: 70% center;
    }

    /* Access page */
    .access-hero {
        padding: 48px 40px;
    }

    .access-layout {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .access-map-wrap {
        aspect-ratio: 16/9;
    }

    /* Contact page */
    .contact-form-wrap {
        padding: 32px;
    }

    /* 404 page */
    .nf-section {
        padding: 80px 40px;
    }
}

/* ===== RESPONSIVE: スマホ(〜767px) ===== */
@media (max-width: 767px) {

    /* Header */
    #reboorn-header {
        padding: 0 16px;
        height: 60px;
    }

    /* Hero: オーバーレイ形式(コンテンツは下部) */
    .hero {
        display: block;
        position: relative;
        padding: 0;
        min-height: auto;
        background: none;
        height: 560px;
    }

    .hero-image {
        height: 100%;
        border-radius: 0;
        width: 100%;
        background: none;
        aspect-ratio: auto;
    }

    .hero-image img,
    .hero-image picture,
    .hero-image picture img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 30%;
    }

    .hero-content {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        padding: 24px 20px 28px;
        background: linear-gradient(to top, rgba(37, 45, 30, 0.92) 0%, rgba(37, 45, 30, 0.7) 60%, transparent 100%);
        z-index: 1;
    }

    .hero h1 {
        font-size: clamp(16px, 5vw, 22px);
        color: var(--white);
        margin-bottom: 8px;
    }

    .hero h1 .catch-quote {
        font-size: clamp(11px, 3.5vw, 14px);
        color: rgba(255, 255, 255, 0.8);
    }

    .hero h1 .catch-main {
        color: #c8dbb0;
    }

    .hero-sub {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.8);
        margin-bottom: 16px;
    }

    .hero-buttons {
        margin-bottom: 16px;
        gap: 10px;
    }

    .btn-primary {
        font-size: 13px;
        padding: 12px 18px;
    }

    .btn-outline {
        font-size: 13px;
        padding: 12px 18px;
        border-color: rgba(255, 255, 255, 0.7);
        color: var(--white);
        background: rgba(255, 255, 255, 0.1);
    }

    .btn-outline:hover {
        background: rgba(255, 255, 255, 0.2);
        color: var(--white);
    }

    .hero-badges {
        gap: 6px;
        flex-wrap: nowrap;
        justify-content: space-between;
        width: 100%;
    }

    .fv-icon-wrap {
        padding: 8px 6px;
    }

    .icon-deco {
        height: 22px;
    }

    .badge-num {
        font-size: 20px;
    }

    .badge-label {
        color: rgba(255, 255, 255, 0.8);
    }

    .badge-unit {
        color: rgba(255, 255, 255, 0.9);
    }

    .fv-icon-wrap {
        border-color: rgba(255, 255, 255, 0.3);
        background: rgba(255, 255, 255, 0.1);
    }

    .hero-note {
        color: rgba(255, 255, 255, 0.5);
    }

    /* セクション */
    .reboorn-section {
        padding: 48px 20px;
    }

    .reboorn-cta {
        padding: 48px 20px;
    }

    #reboorn-footer {
        padding: 48px 20px 32px;
    }

    /* グリッド系 全て1列 */
    .concerns-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .reasons-grid {
        grid-template-columns: 1fr;
    }

    .flow-steps {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .flow-step:not(:last-child)::after {
        display: none;
    }

    .treatment-grid {
        grid-template-columns: 1fr;
    }

    /* ★ Fix: voicesを全て1列 */
    .voices-grid {
        grid-template-columns: 1fr;
    }

    .voice-satisfaction {
        grid-column: auto;
        flex-direction: column;
        padding: 24px 16px;
    }

    .sat-num {
        font-size: 44px;
    }

    /* CTA */
    .cta-inner {
        grid-template-columns: 1fr;
        gap: 24px;
        text-align: center;
    }

    .cta-tel-num {
        justify-content: center;
    }

    .cta-contacts {
        flex-direction: column;
        padding: 20px;
        gap: 16px;
    }

    /* Footer */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    /* About */
    .page-hero {
        padding: 48px 20px 40px;
    }

    .history-timeline::before {
        left: 72px;
    }

    .history-item {
        grid-template-columns: 72px 1fr;
        gap: 16px;
    }

    .history-item::after {
        left: 68px;
    }

    .history-year {
        font-size: 11px;
        padding-right: 16px;
    }

    .history-badges {
        gap: 16px;
    }

    /* ★ Fix: staff-cardを縦積み */
    .staff-card {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .staff-photo-placeholder {
        aspect-ratio: 4/3;
    }

    /* ★ Fix: techniques/results/reassuranceを1列 */
    .techniques-grid,
    .results-grid,
    .reassurance-grid {
        grid-template-columns: 1fr;
    }

    /* About hero */
    .about-hero-inner {
        grid-template-columns: 1fr;
        min-height: auto;
    }

    .about-hero-content {
        padding: 32px 20px;
        order: 2;
    }

    .about-hero-image {
        order: 1;
        min-height: 220px;
    }

    .techniques-grid,
    .results-grid,
    .reassurance-grid,
    .staff-card {
        grid-template-columns: 1fr;
    }

    /* Menu page */
    .menu-grid {
        grid-template-columns: 1fr;
    }

    .menu-flow-grid {
        grid-template-columns: 1fr;
    }

    .info-grid {
        grid-template-columns: 1fr 1fr;
    }

    .faq-item {
        padding: 20px;
    }

    .faq-q {
        font-size: 14px;
    }

    .symptoms-tags li {
        font-size: 12px;
        padding: 6px 14px;
    }

    /* Access page */
    .access-hero {
        padding: 40px 20px;
    }

    .access-layout {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .access-dl-row {
        grid-template-columns: 1fr;
        gap: 4px;
        padding: 14px 0;
    }

    .access-map-wrap {
        aspect-ratio: 4/3;
    }

    .access-buttons {
        flex-direction: column;
    }

    .access-buttons .btn-outline,
    .access-buttons .btn-primary {
        justify-content: center;
    }

    .route-grid {
        grid-template-columns: 1fr;
    }

    .route-card {
        padding: 24px 20px;
    }

    /* Contact page */
    .contact-method-grid {
        grid-template-columns: 1fr;
    }

    .contact-method-card {
        padding: 24px 20px;
    }

    .contact-method-tel {
        font-size: 24px;
    }

    .contact-form-wrap {
        padding: 24px 20px;
    }

    .wpcf7 .wpcf7-radio,
    .wpcf7 .wpcf7-checkbox {
        flex-direction: column;
        gap: 10px;
    }

    .wpcf7 input[type="submit"] {
        max-width: 100%;
    }

    /* 404 page */
    .nf-section {
        padding: 56px 20px;
        min-height: auto;
    }

    .nf-text {
        margin-bottom: 32px;
    }

    .nf-links {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 32px;
    }

    .nf-link-card {
        padding: 16px 20px;
    }

    .nf-contact {
        padding: 24px 20px;
    }

    .nf-contact-actions {
        flex-direction: column;
        gap: 20px;
    }

    .nf-btn {
        width: 100%;
        justify-content: center;
    }

    .nf-br-sp {
        display: inline;
    }
}