/* ==========================================================
   なごみの森訪問マッサージ — style.css
   配色：リーフレット準拠（クリーム地 × 深緑 × オレンジ）
========================================================== */

:root {
    --green: #3e6356;
    --green-dark: #2e4f44;
    --green-light: #e7efe9;
    --orange: #e8833a;
    --orange-dark: #d06a22;
    --cream: #faf6ec;
    --cream-deep: #f2ebd9;
    --white: #ffffff;
    --text: #33413c;
    --text-light: #6b7a73;
    --line-green: #06c755;
    --radius: 14px;
    --shadow: 0 4px 18px rgba(62, 99, 86, 0.10);
    --font-head: "Zen Maru Gothic", "Noto Sans JP", sans-serif;
    --font-body: "Noto Sans JP", sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 86px;
}

body {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.9;
    color: var(--text);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
em { font-style: normal; }

.pc-only { display: inline; }

/* ==========================================================
   ヘッダー
========================================================== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(250, 246, 236, 0.95);
    backdrop-filter: blur(6px);
    transition: box-shadow .3s;
}
#site-header.scrolled { box-shadow: 0 2px 12px rgba(0,0,0,.08); }

.header-inner {
    max-width: 1180px;
    margin: 0 auto;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    gap: 18px;
}

.site-logo {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}
.logo-mark { font-size: 1.8rem; }
.logo-text { display: flex; flex-direction: column; line-height: 1.3; }
.logo-sub { font-size: 0.68rem; color: var(--text-light); letter-spacing: .05em; }
.logo-main {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--green-dark);
}

#global-nav { margin-left: auto; }
#global-nav ul {
    display: flex;
    list-style: none;
    gap: 4px;
}
#global-nav a {
    display: block;
    padding: 8px 9px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--green-dark);
    border-radius: 8px;
    transition: background .2s;
    white-space: nowrap;
}
#global-nav a:hover { background: var(--green-light); }

.header-tel {
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--orange);
    color: #fff;
    padding: 7px 16px;
    border-radius: 10px;
    line-height: 1.4;
    transition: background .2s;
}
.header-tel:hover { background: var(--orange-dark); }
.header-tel-label { font-size: 0.6rem; }
.header-tel-num { font-size: 1.05rem; font-weight: 700; letter-spacing: .03em; }

#menu-btn {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 46px; height: 46px;
    background: var(--green);
    border: none;
    border-radius: 10px;
    cursor: pointer;
    padding: 11px;
}
#menu-btn span {
    display: block;
    height: 3px;
    background: #fff;
    border-radius: 2px;
    transition: transform .3s, opacity .3s;
}
#menu-btn.open span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
#menu-btn.open span:nth-child(2) { opacity: 0; }
#menu-btn.open span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

/* ==========================================================
   ヒーロー
========================================================== */
#hero {
    background:
        radial-gradient(ellipse 90% 70% at 85% 15%, rgba(232, 131, 58, 0.10), transparent 60%),
        radial-gradient(ellipse 80% 80% at 10% 90%, rgba(62, 99, 86, 0.10), transparent 60%),
        var(--cream);
    padding: 130px 20px 70px;
    overflow: hidden;
}

.hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 50px;
    align-items: center;
}

.hero-badge {
    display: inline-block;
    background: var(--green);
    color: #fff;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: .06em;
    padding: 6px 18px;
    border-radius: 999px;
    margin-bottom: 22px;
}

.hero-h1 {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: clamp(2rem, 4.2vw, 3.1rem);
    line-height: 1.45;
    color: var(--green-dark);
    margin-bottom: 22px;
}

.hero-sub {
    font-size: 1.02rem;
    margin-bottom: 22px;
}
.hero-sub em {
    color: var(--orange-dark);
    font-weight: 700;
}

.hero-points {
    list-style: none;
    margin-bottom: 30px;
    font-size: 0.95rem;
    font-weight: 500;
}
.hero-points li { padding: 3px 0; }

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: stretch;
}

.btn {
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 13px 30px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 1.25rem;
    line-height: 1.3;
    transition: transform .2s, box-shadow .2s, background .2s;
    text-align: center;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-small { font-size: 0.72rem; font-weight: 500; }
.btn-orange { background: var(--orange); color: #fff; }
.btn-orange:hover { background: var(--orange-dark); }
.btn-line { background: var(--line-green); color: #fff; font-size: 1.02rem; }
.btn-line:hover { background: #05b14c; }

.hero-img { position: relative; }
.hero-img img {
    border-radius: 24px;
    box-shadow: 0 10px 36px rgba(62, 99, 86, .18);
}
.hero-img-badge {
    position: absolute;
    bottom: -16px; left: -14px;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1rem;
    line-height: 1.5;
    text-align: center;
    padding: 16px 20px;
    border-radius: 50% 50% 50% 8px / 60% 60% 60% 8px;
    box-shadow: var(--shadow);
}

/* ==========================================================
   セクション共通
========================================================== */
.section { padding: 72px 20px; }
.section-cream { background: var(--cream); }
.section-green { background: var(--green-light); }
.section-pro {
    background: var(--green-dark);
    color: #f3f7f4;
}
.section-contact { background: var(--cream); }

.section-inner { max-width: 1060px; margin: 0 auto; }
.section-inner-narrow { max-width: 820px; }

.section-head { text-align: center; margin-bottom: 44px; }
.sec-en {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--orange);
    margin-bottom: 8px;
}
.sec-title {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.5rem, 3vw, 2.05rem);
    color: var(--green-dark);
    line-height: 1.5;
}
.section-pro .sec-title { color: #fff; }
.sec-title::after {
    content: "";
    display: block;
    width: 52px; height: 4px;
    border-radius: 2px;
    background: var(--orange);
    margin: 14px auto 0;
}
.sec-title-left {
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.4rem, 2.6vw, 1.8rem);
    color: var(--green-dark);
    margin-bottom: 18px;
}
.sec-desc { margin-top: 16px; color: var(--text-light); }
.section-pro .sec-desc { color: #d8e4dd; }

/* ふわっと表示 */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; transition: none; }
    html { scroll-behavior: auto; }
}

/* ==========================================================
   お悩み
========================================================== */
.nayami-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
    max-width: 820px;
    margin: 0 auto;
}
.nayami-card {
    background: #fff;
    border: 2px solid var(--cream-deep);
    border-radius: var(--radius);
    padding: 22px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: var(--shadow);
}
.nayami-icon { font-size: 2rem; flex-shrink: 0; }
.nayami-card strong { color: var(--green-dark); }

.nayami-arrow {
    text-align: center;
    color: var(--orange);
    font-size: 1.5rem;
    margin: 26px 0 10px;
}
.nayami-answer {
    text-align: center;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: clamp(1.2rem, 2.6vw, 1.6rem);
    color: var(--green-dark);
}
.nayami-answer em {
    color: var(--orange-dark);
    border-bottom: 4px solid rgba(232, 131, 58, .35);
}

/* ==========================================================
   軸
========================================================== */
.jiku-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
    margin-bottom: 34px;
}
.jiku-card {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 30px 30px 26px;
}
.jiku-card h3 {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: var(--green-dark);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.jiku-icon { font-size: 1.6rem; }

.jiku-effect {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius);
    padding: 36px 34px;
}
.jiku-effect-title {
    font-family: var(--font-head);
    font-size: 1.3rem;
    text-align: center;
    margin-bottom: 20px;
}
.jiku-effect-list {
    list-style: none;
    max-width: 560px;
    margin: 0 auto 8px;
    font-size: 1.05rem;
}
.jiku-effect-list li {
    padding: 8px 0;
    border-bottom: 1px dashed rgba(255,255,255,.3);
    display: flex;
    gap: 12px;
}
.jiku-effect-list li:last-child { border-bottom: none; }
.jiku-effect-list span { color: #ffd9b3; font-weight: 700; }
.jiku-effect-list strong { color: #ffe3c4; }

.jiku-photos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    margin-top: 26px;
    flex-wrap: wrap;
}
.jiku-photo-item { text-align: center; max-width: 230px; }
.jiku-photo-item img { border-radius: 10px; }
.jiku-photo-item figcaption {
    font-size: 0.85rem;
    margin-top: 8px;
    color: #ffe3c4;
    font-weight: 500;
}
.jiku-photo-arrow { font-size: 1.6rem; color: #ffd9b3; }

/* ==========================================================
   訪問マッサージとは
========================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 40px;
    align-items: center;
}
.about-list {
    list-style: none;
    margin-bottom: 24px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    background: #fff;
    border-radius: 12px;
    padding: 14px 20px;
    margin-bottom: 12px;
    font-size: 1.08rem;
    font-weight: 500;
    box-shadow: var(--shadow);
}
.about-num {
    flex-shrink: 0;
    width: 38px; height: 38px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.about-note {
    background: rgba(232, 131, 58, .12);
    border-left: 5px solid var(--orange);
    border-radius: 0 10px 10px 0;
    padding: 14px 18px;
    font-size: 0.95rem;
}
.about-img img { border-radius: var(--radius); box-shadow: var(--shadow); }

/* ==========================================================
   3つの強み
========================================================== */
.strength-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.strength-card {
    position: relative;
    background: var(--cream);
    border-radius: var(--radius);
    padding: 36px 26px 28px;
    text-align: center;
}
.strength-num {
    position: absolute;
    top: -14px; left: 50%;
    transform: translateX(-50%);
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow);
}
.strength-icon { display: block; font-size: 2.4rem; margin-bottom: 12px; }
.strength-card h3 {
    font-family: var(--font-head);
    font-size: 1.15rem;
    color: var(--green-dark);
    line-height: 1.6;
    margin-bottom: 12px;
}
.strength-card p { font-size: 0.93rem; text-align: left; }

/* ==========================================================
   対象となる方
========================================================== */
.target-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}
.target-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 22px;
    display: flex;
    gap: 14px;
    box-shadow: var(--shadow);
}
.target-icon { font-size: 1.9rem; flex-shrink: 0; }
.target-card h3 {
    font-family: var(--font-head);
    font-size: 1.05rem;
    color: var(--green-dark);
    margin-bottom: 6px;
}
.target-card p { font-size: 0.88rem; }

/* ==========================================================
   料金
========================================================== */
.price-hero {
    background: var(--green);
    color: #fff;
    border-radius: var(--radius);
    text-align: center;
    padding: 36px 24px 30px;
    margin-bottom: 26px;
}
.price-label { font-size: 1.05rem; font-weight: 500; }
.price-num {
    font-family: var(--font-head);
    font-weight: 900;
    font-size: 1.6rem;
    line-height: 1.3;
    margin: 6px 0;
}
.price-num em {
    font-size: 3.4rem;
    color: #ffd9a8;
}
.price-num span { font-size: 0.95rem; font-weight: 500; }
.price-note { font-size: 0.88rem; color: #d8e4dd; }

.price-points {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 30px;
}
.price-point {
    background: var(--cream);
    border-radius: var(--radius);
    padding: 24px 22px;
}
.price-point h3 {
    font-family: var(--font-head);
    font-size: 1.02rem;
    color: var(--green-dark);
    margin-bottom: 8px;
}
.price-point p { font-size: 0.9rem; }
.price-point strong { color: var(--orange-dark); }

.info-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
}
.info-table th, .info-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--cream-deep);
    text-align: left;
    font-size: 0.95rem;
}
.info-table tr:last-child th, .info-table tr:last-child td { border-bottom: none; }
.info-table th {
    background: var(--green-light);
    color: var(--green-dark);
    width: 160px;
    font-weight: 700;
    white-space: nowrap;
}

/* ==========================================================
   ご利用の流れ
========================================================== */
.flow-list { max-width: 760px; margin: 0 auto; }
.flow-item {
    display: flex;
    gap: 22px;
    background: #fff;
    border-radius: var(--radius);
    padding: 24px 28px;
    margin-bottom: 18px;
    box-shadow: var(--shadow);
    position: relative;
}
.flow-item:not(:last-child)::after {
    content: "▼";
    position: absolute;
    bottom: -19px; left: 50%;
    transform: translateX(-50%);
    color: var(--orange);
    font-size: 0.9rem;
    z-index: 1;
}
.flow-num {
    flex-shrink: 0;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-weight: 700;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.flow-body h3 {
    font-family: var(--font-head);
    font-size: 1.12rem;
    color: var(--green-dark);
    margin-bottom: 4px;
}
.flow-body p { font-size: 0.93rem; }

/* ==========================================================
   想い
========================================================== */
.message-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 44px;
    align-items: center;
}
.message-img img { border-radius: var(--radius); box-shadow: var(--shadow); }
.message-img-caption {
    text-align: center;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--green-dark);
    margin-top: 10px;
}
.message-text p { margin-bottom: 16px; }

/* ==========================================================
   施術者紹介
========================================================== */
.profile-grid {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 44px;
    align-items: start;
}
.profile-img img {
    border-radius: var(--radius);
    box-shadow: var(--shadow);
}
.profile-name {
    font-family: var(--font-head);
    font-size: 1.7rem;
    color: var(--green-dark);
}
.profile-name span { font-size: 1rem; color: var(--text-light); }
.profile-role { color: var(--orange-dark); font-weight: 500; margin-bottom: 14px; }
.profile-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}
.profile-tags span {
    background: var(--green-light);
    color: var(--green-dark);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 5px 14px;
    border-radius: 999px;
}
.profile-body p { margin-bottom: 14px; }

/* ==========================================================
   利用者の声
========================================================== */
.voice-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
}
.voice-card {
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
}
.voice-card img {
    border-radius: 10px;
    margin-bottom: 16px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    width: 100%;
}
.voice-text {
    font-size: 0.92rem;
    flex-grow: 1;
}
.voice-text::before {
    content: "“";
    font-family: var(--font-head);
    font-size: 2rem;
    color: var(--orange);
    line-height: 1;
    display: block;
}
.voice-from {
    margin-top: 14px;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--green-dark);
    text-align: right;
}

/* ==========================================================
   関係者の方へ
========================================================== */
.section-pro .sec-en { color: #f5b27c; }
.section-pro .sec-title::after { background: #f5b27c; }
.section-pro .sec-desc strong { color: #ffd9a8; }

.pro-sub-title {
    font-family: var(--font-head);
    font-size: 1.25rem;
    color: #ffd9a8;
    text-align: center;
    margin: 46px 0 22px;
}
.pro-sub-title:first-of-type { margin-top: 0; }

.pro-table-wrap { overflow-x: auto; }
.pro-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    color: var(--text);
    border-radius: var(--radius);
    overflow: hidden;
    font-size: 0.9rem;
    min-width: 640px;
}
.pro-table th, .pro-table td {
    padding: 14px 16px;
    border: 1px solid var(--cream-deep);
    text-align: left;
    vertical-align: top;
}
.pro-table thead th {
    background: var(--green-light);
    color: var(--green-dark);
    font-family: var(--font-head);
    text-align: center;
    font-size: 0.98rem;
}
.pro-table tbody th {
    background: var(--cream);
    color: var(--green-dark);
    white-space: nowrap;
    width: 140px;
}
.pro-table .pro-table-us { background: #fdf3e7; }
.pro-table thead .pro-table-us {
    background: var(--orange);
    color: #fff;
}

.pro-combo {
    background: rgba(255, 255, 255, .12);
    border: 1.5px dashed rgba(255, 217, 168, .6);
    border-radius: var(--radius);
    padding: 22px 26px;
    text-align: center;
    margin-top: 22px;
    font-size: 1.02rem;
}
.pro-combo strong { color: #ffd9a8; }

.pro-psych-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}
.pro-psych-card {
    background: #fff;
    color: var(--text);
    border-radius: var(--radius);
    padding: 28px 26px;
}
.pro-psych-card h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: var(--green-dark);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--orange);
}
.pro-psych-card p { font-size: 0.92rem; margin-bottom: 10px; }
.pro-psych-card ul {
    list-style: none;
    font-size: 0.92rem;
}
.pro-psych-card li {
    padding: 5px 0 5px 1.4em;
    position: relative;
}
.pro-psych-card li::before {
    content: "✔";
    position: absolute;
    left: 0;
    color: var(--orange);
    font-weight: 700;
}
.pro-psych-close {
    margin-top: 12px;
    font-weight: 700;
    color: var(--green-dark);
}

.pro-renkei {
    background: rgba(255, 255, 255, .1);
    border-radius: var(--radius);
    padding: 26px 30px;
    margin-top: 26px;
}
.pro-renkei h4 {
    font-family: var(--font-head);
    font-size: 1.1rem;
    color: #ffd9a8;
    margin-bottom: 8px;
}
.pro-renkei p { font-size: 0.95rem; color: #e9f1ec; }

/* ==========================================================
   FAQ
========================================================== */
.faq-item {
    background: #fff;
    border: 2px solid var(--cream-deep);
    border-radius: 12px;
    margin-bottom: 14px;
    overflow: hidden;
}
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 18px 52px 18px 56px;
    font-weight: 700;
    color: var(--green-dark);
    position: relative;
    font-size: 1rem;
    transition: background .2s;
}
.faq-item summary:hover { background: var(--cream); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: "Q";
    position: absolute;
    left: 18px; top: 50%;
    transform: translateY(-50%);
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--green);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.faq-item summary::after {
    content: "＋";
    position: absolute;
    right: 20px; top: 50%;
    transform: translateY(-50%);
    color: var(--orange);
    font-size: 1.3rem;
    font-weight: 700;
    transition: transform .3s;
}
.faq-item[open] summary::after { content: "−"; }
.faq-a {
    padding: 4px 24px 20px 56px;
    position: relative;
    font-size: 0.95rem;
}
.faq-a::before {
    content: "A";
    position: absolute;
    left: 18px; top: 2px;
    width: 28px; height: 28px;
    border-radius: 50%;
    background: var(--orange);
    color: #fff;
    font-family: var(--font-head);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ==========================================================
   お問い合わせ
========================================================== */
.contact-boxes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-bottom: 30px;
}
.contact-box {
    background: #fff;
    border-radius: var(--radius);
    padding: 30px 22px;
    text-align: center;
    box-shadow: var(--shadow);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    border: 2px solid transparent;
    transition: border-color .2s, transform .2s;
}
.contact-box:hover { border-color: var(--orange); transform: translateY(-3px); }
.contact-box-line:hover { border-color: var(--line-green); }
.contact-box-icon { font-size: 2.2rem; }
.line-qr { width: 96px; height: 96px; border-radius: 8px; }
.contact-box-label { font-size: 0.88rem; font-weight: 500; color: var(--text-light); }
.contact-box-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--green-dark);
    word-break: break-all;
    line-height: 1.4;
}
.contact-box-note { font-size: 0.78rem; color: var(--text-light); }

.contact-info {
    text-align: center;
    font-size: 0.95rem;
    background: #fff;
    border-radius: var(--radius);
    padding: 22px;
    box-shadow: var(--shadow);
}
.contact-info strong { color: var(--green-dark); }

/* ==========================================================
   フッター・固定CTA
========================================================== */
#site-footer {
    background: var(--green-dark);
    color: #d8e4dd;
    text-align: center;
    padding: 38px 20px 110px;
    font-size: 0.85rem;
    line-height: 2;
}
.footer-logo {
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
}
.footer-copy { margin-top: 10px; font-size: 0.75rem; color: #9db5aa; }

#fixed-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 90;
    display: none;
    gap: 0;
}
#fixed-cta a {
    flex: 1;
    text-align: center;
    padding: 15px 8px;
    font-weight: 700;
    font-size: 0.98rem;
    color: #fff;
}
.fixed-cta-tel { background: var(--orange); }
.fixed-cta-line { background: var(--line-green); }

/* ==========================================================
   レスポンシブ
========================================================== */
@media (max-width: 1080px) {
    #global-nav { display: none; }
    #menu-btn { display: flex; margin-left: auto; }
    .header-tel { margin-left: auto; }
    #menu-btn { margin-left: 0; }

    #global-nav.open {
        display: block;
        position: fixed;
        top: 66px; left: 0; right: 0;
        background: var(--cream);
        box-shadow: 0 10px 24px rgba(0,0,0,.12);
        padding: 14px 20px 22px;
        max-height: calc(100vh - 66px);
        overflow-y: auto;
    }
    #global-nav.open ul { flex-direction: column; gap: 0; }
    #global-nav.open a {
        padding: 14px 10px;
        font-size: 1rem;
        border-bottom: 1px solid var(--cream-deep);
        border-radius: 0;
    }
}

@media (max-width: 860px) {
    body { font-size: 16px; }
    .pc-only { display: none; }
    .section { padding: 56px 18px; }

    .header-tel-label { display: none; }
    .header-tel { padding: 9px 14px; border-radius: 50%; }
    .header-tel-num { font-size: 1rem; }

    .hero-inner { grid-template-columns: 1fr; gap: 36px; }
    #hero { padding: 110px 20px 60px; }
    .hero-img { max-width: 420px; margin: 0 auto; }

    .nayami-grid { grid-template-columns: 1fr; }
    .jiku-grid { grid-template-columns: 1fr; }
    .about-grid { grid-template-columns: 1fr; }
    .about-img { max-width: 440px; margin: 0 auto; }
    .strength-grid { grid-template-columns: 1fr; gap: 28px; }
    .target-grid { grid-template-columns: 1fr; }
    .price-points { grid-template-columns: 1fr; }
    .message-grid { grid-template-columns: 1fr; }
    .message-img { max-width: 400px; margin: 0 auto; }
    .profile-grid { grid-template-columns: 1fr; }
    .profile-img { max-width: 300px; margin: 0 auto; }
    .voice-grid { grid-template-columns: 1fr; }
    .pro-psych-grid { grid-template-columns: 1fr; }
    .contact-boxes { grid-template-columns: 1fr; }

    .info-table th { width: 110px; padding: 13px 14px; }
    .info-table td { padding: 13px 14px; }

    .flow-item { padding: 20px; gap: 16px; }

    #fixed-cta { display: flex; }
    .hero-btns .btn { width: 100%; }
}

@media (max-width: 480px) {
    .logo-main { font-size: 1rem; }
    .logo-sub { font-size: 0.6rem; }
    .header-tel-num { font-size: 0.9rem; }
    .price-num em { font-size: 2.7rem; }
    .jiku-photo-item { max-width: 46%; }
}
