@charset "UTF-8";

/* ===== リセット ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
html { overflow-x: hidden; width: 100%; }
body { width: 100%; overflow-x: clip; }
body {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 500;
    font-size: 16px;
    line-height: 1.9;
    color: #333;
    background: #fff;
    letter-spacing: 0.03em;
    -webkit-font-smoothing: antialiased;
    padding-bottom: 0;
}
img { max-width: 100%; height: auto; vertical-align: bottom; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
.sp-only { display: none; }
@media (max-width: 768px) { .sp-only { display: inline; } }

/* ===== 変数 ===== */
:root {
    --green: #1B6A18;
    --green-dark: #145212;
    --green-pale: #fff8e1;
    --orange: #e67e22;
    --orange-dark: #cf6d17;
    --warm: #1B6A18;
    --warm-light: #6eba32;
    --warm-pale: #fff8e1;
    --warm-bg: #fcefd0;
    --line-green: #06c755;
    --red: #e74c3c;
    --text: #000000;
    --text-sub: #666666;
    --bg-gray: #fdf6e8;
    --bg-white: #ffffff;
    --border: #e8dcc8;
}

/* ===== 共通 ===== */
.sec { padding: 70px 20px; position: relative; }
.sec-inner { max-width: 960px; margin: 0 auto; position: relative; z-index: 1; }
.bg-white { background: var(--bg-white); }
.bg-gray { background: var(--bg-gray); }
.bg-green-pale { background: var(--green-pale); }

/* 和紙テクスチャ */
.washi {
    position: relative;
}
.washi::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    opacity: 0.12;
    background-image:
        radial-gradient(ellipse 1px 2px at 15% 25%, #b8a070 50%, transparent 50%),
        radial-gradient(ellipse 2px 1px at 45% 10%, #c4a868 50%, transparent 50%),
        radial-gradient(ellipse 1px 3px at 70% 55%, #b09060 50%, transparent 50%),
        radial-gradient(ellipse 2px 1px at 30% 75%, #c8b078 50%, transparent 50%),
        radial-gradient(ellipse 1px 2px at 85% 40%, #b4a070 50%, transparent 50%),
        radial-gradient(ellipse 2px 1px at 10% 60%, #c0a868 50%, transparent 50%),
        radial-gradient(ellipse 1px 2px at 55% 85%, #b89860 50%, transparent 50%),
        radial-gradient(ellipse 2px 1px at 90% 15%, #c4b078 50%, transparent 50%),
        radial-gradient(ellipse 1px 3px at 25% 45%, #b0a068 50%, transparent 50%),
        radial-gradient(ellipse 2px 1px at 65% 30%, #c09060 50%, transparent 50%),
        radial-gradient(ellipse 1px 2px at 40% 95%, #b8a870 50%, transparent 50%),
        radial-gradient(ellipse 2px 1px at 80% 70%, #c4a060 50%, transparent 50%);
    background-size: 120px 100px;
}
@media (max-width: 768px) { .sec { padding: 50px 10px; } }

/* ===== ウェーブ区切り ===== */
.wave-top {
    padding-top: 100px;
}
.wave-top::before {
    content: "";
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 60px;
    background: inherit;
    z-index: 0;
}
.wave-top::after {
    content: "";
    position: absolute;
    top: -59px;
    left: 0;
    width: 100%;
    height: 60px;
    z-index: 2;
}
/* 白→クリーム */
.wave-from-white::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23fdf6e8' d='M0,60 L0,20 Q360,0 720,20 Q1080,40 1440,20 L1440,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
}
/* 白→ライトイエロー */
.wave-from-white-to-green::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23fff8e1' d='M0,60 L0,20 Q360,0 720,20 Q1080,40 1440,20 L1440,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
}
/* クリーム→白 */
.wave-from-gray::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,60 L0,25 Q360,50 720,25 Q1080,0 1440,25 L1440,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
}
/* ライトイエロー→白 */
.wave-from-green::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23ffffff' d='M0,60 L0,25 Q360,50 720,25 Q1080,0 1440,25 L1440,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
}
/* 白→ダーク */
.wave-from-white-to-dark::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23145212' d='M0,60 L0,20 Q360,0 720,20 Q1080,40 1440,20 L1440,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
}
/* クリーム→ライトイエロー */
.wave-from-gray-to-green::after {
    background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 60' preserveAspectRatio='none'%3E%3Cpath fill='%23fff8e1' d='M0,60 L0,25 Q360,50 720,25 Q1080,0 1440,25 L1440,60 Z'/%3E%3C/svg%3E") no-repeat bottom center;
    background-size: 100% 100%;
}
@media (max-width: 768px) {
    .wave-top { padding-top: 44px; }
    .wave-top::after { height: 40px; top: -39px; }
}

/* ===== 見出し ===== */
.heading {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.5;
    margin-bottom: 40px;
    letter-spacing: 0.06em;
    text-wrap: balance;
}
.heading-green {
    color: #1B6A18;
}
.heading::after {
    display: none;
}
.heading-num {
    font-size: 2.8rem;
    color: var(--orange);
    font-weight: 900;
    margin: 0 2px;
}
@media (max-width: 960px) {
    .heading { font-size: 2rem; }
    .heading-num { font-size: 2.4rem; }
}
@media (max-width: 768px) {
    .heading { font-size: 1.5rem; margin-bottom: 28px; letter-spacing: 0; padding: 0; text-wrap: auto; }
    .heading-num { font-size: 1.9rem; }
}
@media (max-width: 480px) {
    .heading { font-size: clamp(1.2rem, 5.5vw, 1.5rem); margin-bottom: 24px; padding: 0; letter-spacing: 0; }
    .heading-num { font-size: clamp(1.5rem, 7vw, 1.9rem); }
}

/* ===== ヘッダー ===== */
.header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 101;
    background: transparent;
}

/* --- メインヘッダー --- */
.header-main {
    padding: 10px 24px;
    background: transparent;
}
.header-main-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 0;
}
.header-logo {
    flex-shrink: 0;
    padding: 8px 20px 8px 0;
}
.header-logo img {
    height: 56px;
    width: auto;
}
.header-nav {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
    white-space: nowrap;
}
.header-nav a {
    display: flex;
    align-items: center;
    padding: 20px 16px;
    font-size: 0.9rem;
    font-weight: 700;
    color: #333;
    letter-spacing: 0.04em;
    position: relative;
    transition: color 0.2s;
    white-space: nowrap;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
}
.header-nav a::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--green);
    border-radius: 2px;
    transition: width 0.25s;
}
.header-nav a:hover {
    color: var(--green);
}
.header-nav a:hover::after {
    width: 70%;
}
.header-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    white-space: nowrap;
}
.header-cta-tel {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 900;
    color: #fff;
    background: var(--orange);
    padding: 10px 22px;
    border-radius: 8px;
    transition: opacity 0.2s;
}
.header-cta-tel i {
    color: #fff;
    font-size: 1rem;
}
.header-cta-tel:hover { opacity: 0.85; }
.header-cta-line {
    display: flex;
    align-items: center;
    gap: 6px;
    background: var(--line-green);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 800;
    padding: 10px 20px;
    border-radius: 6px;
    transition: opacity 0.2s;
}
.header-cta-line:hover { opacity: 0.85; }
.header-cta-ico {
    width: 22px;
    height: 22px;
}

/* --- スマホ用ヘッダー --- */
.header-sp {
    display: none;
    flex-direction: column;
}
/* SP トップ行 */
.header-sp-top {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    gap: 8px;
}
.header-sp-logo {
    flex-shrink: 0;
}
.header-sp-logo img {
    height: 40px;
    width: auto;
}
.header-sp-hours {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-sub);
}
.header-sp-hours i {
    margin-right: 2px;
    font-size: 0.65rem;
}
.header-sp-closed {
    background: var(--orange);
    color: #fff;
    font-size: 0.62rem;
    font-weight: 700;
    padding: 1px 6px;
    border-radius: 3px;
}
.header-sp-icon-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--orange);
    color: #fff;
    border-radius: 6px;
    font-size: 0.6rem;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
}
.header-sp-icon-btn.header-sp-icon-line {
    background: var(--line-green);
}
.header-sp-icon {
    font-size: 1.2rem;
    line-height: 1;
    margin-bottom: 1px;
}
/* SP ナビバー */
.header-sp-nav {
    display: none;
    background: var(--green);
}
.header-sp-nav a {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px 2px;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.3;
    border-right: 1px solid rgba(255,255,255,0.15);
    transition: background 0.2s;
}
.header-sp-nav a:last-child {
    border-right: none;
}
.header-sp-nav a:active {
    background: rgba(255,255,255,0.12);
}
.sp-nav-ico {
    font-size: 1.4rem;
    margin-bottom: 3px;
    line-height: 1;
    display: block;
}
.header-sp-nav a i {
    font-size: 1.2rem;
    margin-bottom: 3px;
    display: block;
}
.header-sp-icon-btn i {
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.header-sp-line-ico {
    width: 20px;
    height: 20px;
    margin-bottom: 2px;
}

/* --- レスポンシブ --- */
@media (max-width: 960px) {
    .header-logo img { height: 46px; }
    .header-logo { padding: 6px 12px 6px 0; }
    .header-nav a { padding: 16px 10px; font-size: 0.8rem; letter-spacing: 0; }
    .header-cta-tel { font-size: 1rem; padding: 6px 8px; }
    .header-cta-tel span { display: none; }
    .header-cta-tel i { font-size: 1.2rem; }
    .header-cta-line { font-size: 0.78rem; padding: 8px 12px; }
}
@media (max-width: 768px) {
    .header {
        position: relative;
        background: #fff;
    }
    .header-topbar { display: none; }
    .header-main { display: none; }
    .header-sp { display: flex; }
    .header-sp-nav {
        display: flex;
        position: sticky;
        top: 0;
        z-index: 100;
    }
}
@media (max-width: 380px) {
    .header-sp-logo img { height: 34px; }
    .header-sp-icon-btn { width: 40px; height: 40px; font-size: 0.55rem; }
    .header-sp-nav a { font-size: 0.55rem; padding: 6px 2px; }
}

/* ===== ヒーロー ===== */
.hero {
    line-height: 0;
    background: #000;
    position: relative;
    overflow: hidden;
}
.hero-img {
    position: relative;
}
.hero-img img {
    width: 100%;
    margin: 0 auto;
}
.hero-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(to top, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 100%);
    padding: 60px 20px 30px;
    line-height: 1.6;
}
.hero-overlay-inner {
    max-width: 960px;
    margin: 0 auto;
    text-align: center;
}
.hero-catch {
    font-size: 1.1rem;
    font-weight: 700;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.1em;
    margin-bottom: 4px;
}
.hero-catch strong {
    font-size: 1.5rem;
    font-weight: 900;
    color: #ffd54f;
}
.hero-sub {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.08em;
}
.hero-img .hero-img-sp { display: none !important; }
.hero-img .hero-img-pc { display: block; }
@media (max-width: 768px) {
    .hero-img .hero-img-pc { display: none !important; }
    .hero-img .hero-img-sp { display: block !important; }
    .hero-overlay { padding: 40px 16px 20px; }
    .hero-catch { font-size: 0.9rem; }
    .hero-catch strong { font-size: 1.2rem; }
    .hero-sub { font-size: 0.75rem; }
}

/* ===== ヒーロー下インフォバー ===== */
.hero-info-bar {
    background: none;
    padding: 20px 20px;
}
.hero-info-inner {
    max-width: 960px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;
}

/* 営業時間テーブル */
.hero-info-hours {
    flex-shrink: 0;
}
.hero-info-hours-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}
.hero-info-table {
    border-collapse: collapse;
    font-size: 1.05rem;
}
.hero-info-table th,
.hero-info-table td {
    padding: 6px 12px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid var(--border);
    color: var(--text);
}
.hero-info-table th {
    background: var(--warm-pale);
    font-weight: 700;
    font-size: 1.05rem;
}
.hero-info-time {
    font-size: 0.95rem;
    font-weight: 600;
    text-align: left !important;
    padding-right: 12px !important;
}
.mark-o {
    color: var(--green);
    font-size: 1.15rem;
}
.mark-x {
    color: var(--red);
    font-size: 1.15rem;
}

/* バッジ */
.hero-info-badges {
    display: contents;
}
.hero-info-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 2px solid var(--warm);
    border-radius: 8px;
    padding: 16px 24px;
    min-width: 170px;
    text-align: center;
    background: var(--warm-pale);
}
.hero-info-badge-main {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    color: #1B6A18;
    letter-spacing: 0.1em;
    line-height: 1.3;
}
.hero-info-badge-sub {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-sub);
    margin-top: 6px;
    letter-spacing: 0.05em;
}

@media (max-width: 768px) {
    .hero-info-bar { padding: 14px 10px; }
    .hero-info-inner {
        flex-direction: column;
        gap: 10px;
    }
    .hero-info-hours { width: 100%; overflow-x: auto; -webkit-overflow-scrolling: touch; }
    .hero-info-table { font-size: 0.72rem; width: 100%; }
    .hero-info-table th { font-size: 0.72rem; }
    .hero-info-table th,
    .hero-info-table td { padding: 4px 5px; }
    .hero-info-time { font-size: 0.65rem; padding-right: 8px !important; }
    .hero-info-hours-title { font-size: 0.8rem; margin-bottom: 5px; }
    .mark-o { font-size: 0.85rem; }
    .mark-x { font-size: 0.85rem; }
    .hero-info-badges {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        width: 100%;
    }
    .hero-info-badge {
        flex-direction: column;
        gap: 2px;
        padding: 10px 8px;
        min-width: 0;
        border-radius: 6px;
    }
    .hero-info-badge-main { font-size: 1.15rem; }
    .hero-info-badge-sub { margin-top: 0; font-size: 0.7rem; }
}

/* ===== お客様写真バナー ===== */
.hero-customers {
    background: #fff;
    text-align: center;
}
.hero-customers-heading {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 2.4rem;
    font-weight: 800;
    color: #1B6A18;
    padding: 80px 20px 32px;
    letter-spacing: 0.06em;
    line-height: 1.5;
    text-wrap: balance;
}
.hero-customers img {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    display: block;
}
.hero-customers-voices {
    max-width: 1080px;
    margin: 0 auto;
    padding: 36px 20px 40px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}
@media (max-width: 960px) {
    .hero-customers-heading { font-size: 2rem; }
}
@media (max-width: 768px) {
    .hero-customers-heading {
        font-size: 1.3rem;
        padding: 40px 10px 20px;
        letter-spacing: 0;
        text-wrap: auto;
    }
    .hero-customers img { border-radius: 0; }
    .hero-customers-voices { padding: 24px 16px 30px; grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
    .hero-customers-heading {
        font-size: clamp(1rem, 5vw, 1.15rem);
        padding: 32px 10px 16px;
        letter-spacing: 0;
    }
}

/* (実績バー - 削除済み) */

/* ===== CTA共通 ===== */
.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-width: 420px;
    margin: 0 auto;
}
.btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 16px 20px;
    border-radius: 8px;
    color: #fff;
    font-weight: 700;
    text-align: center;
    line-height: 1.4;
    transition: opacity 0.2s, transform 0.1s;
    box-shadow: 0 4px 12px rgba(0,0,0,0.12);
}
.btn:hover { opacity: 0.9; }
.btn:active { transform: scale(0.98); }
.btn-orange { background: var(--orange); }
.btn-green { background: var(--line-green); }
.btn-lg { padding: 20px 20px; }
.btn-main {
    font-size: 1.15rem;
    display: flex;
    align-items: center;
    gap: 6px;
}
.btn-sub {
    font-size: 0.75rem;
    font-weight: 500;
    opacity: 0.9;
    margin-top: 2px;
}
.btn-ico { width: 22px; height: 22px; }
.cta-hint {
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-sub);
    margin-top: 10px;
}
@media (max-width: 768px) {
    .btn-main { font-size: 1.05rem; }
    .btn { padding: 14px 16px; }
    .btn-lg { padding: 16px 16px; }
}

/* ===== おすすめボックス（お悩みセクション内） ===== */
.heading-white {
    color: #fff !important;
}
.recommend-box {
    background: var(--green);
    border-radius: 8px;
    padding: 32px 36px;
    margin-bottom: 30px;
}
.recommend-box-title {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #fff;
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0.06em;
}
.recommend-list {
    max-width: 700px;
    margin: 0 auto;
}
.recommend-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1.6;
    color: #fff;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.recommend-item:last-child { border-bottom: none; }
.recommend-check {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border: 2px solid #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 900;
    color: #fff;
}
.recommend-text {
    flex: 1;
    min-width: 0;
}
.recommend-item strong {
    color: #ffe033;
    border-bottom: 2px solid rgba(255,224,51,0.6);
    padding-bottom: 1px;
}
@media (max-width: 768px) {
    .recommend-box { padding: 20px 16px; border-radius: 6px; }
    .recommend-box-title { font-size: 1.05rem; margin-bottom: 12px; }
    .recommend-item { font-size: 0.85rem; padding: 10px 0; gap: 8px; line-height: 1.5; }
    .recommend-check { width: 22px; height: 22px; font-size: 0.65rem; min-width: 22px; }
}
@media (max-width: 480px) {
    .recommend-box { padding: 16px 10px; }
    .recommend-box-title { font-size: 0.95rem; }
    .recommend-item { font-size: 0.78rem; gap: 6px; }
    .recommend-check { width: 20px; height: 20px; font-size: 0.6rem; min-width: 20px; border-width: 1.5px; }
}

/* ===== 効果グリッド ===== */
.effect-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    max-width: 1080px;
    margin: 0 auto;
}
.effect-card {
    background: var(--green-pale);
    border-radius: 8px;
    padding: 28px 18px 24px;
    text-align: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.effect-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(27,106,24,0.1);
}
.effect-icon {
    font-size: 1.6rem;
    line-height: 1;
    color: var(--green);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 64px;
    height: 64px;
    background: #fff;
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.effect-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #1B6A18;
    margin-bottom: 8px;
    line-height: 1.4;
}
.effect-card p {
    font-size: 0.85rem;
    line-height: 1.7;
    color: var(--text-sub);
}
@media (max-width: 960px) {
    .effect-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 768px) {
    .effect-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .effect-card { padding: 22px 14px 20px; border-radius: 6px; }
    .effect-icon { font-size: 2.2rem; width: 54px; height: 54px; margin-bottom: 10px; }
    .effect-card h3 { font-size: 0.92rem; margin-bottom: 6px; }
    .effect-card p { font-size: 0.8rem; }
}
@media (max-width: 480px) {
    .effect-icon { font-size: 1.8rem; width: 48px; height: 48px; }
    .effect-card { padding: 18px 10px 16px; }
}

/* ===== お悩み ===== */
.problems-sub {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-sub);
    margin-bottom: 8px;
    letter-spacing: 0.1em;
}
.symptom-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 36px;
}
.symptom-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border-radius: 8px;
    padding: 32px 20px 28px;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    transition: box-shadow 0.3s, transform 0.3s;
    cursor: pointer;
    color: inherit;
    text-align: center;
}
.symptom-card:hover {
    box-shadow: 0 8px 28px rgba(45,138,110,0.15);
    transform: translateY(-4px);
}
.symptom-card:active {
    transform: translateY(0);
}
.symptom-img-wrap {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 20px;
    border: 4px solid var(--green-pale);
    flex-shrink: 0;
}
.symptom-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.symptom-title {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1B6A18;
    margin-bottom: 12px;
    line-height: 1.4;
}
.symptom-desc {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 20px;
    flex: 1;
}
.symptom-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--green);
    color: #fff;
    font-size: 0.9rem;
    font-weight: 700;
    padding: 10px 28px;
    border-radius: 30px;
    letter-spacing: 0.03em;
    transition: background 0.2s;
    margin-top: auto;
}
.symptom-arrow {
    font-size: 1.1rem;
    transition: transform 0.2s;
}
.symptom-card:hover .symptom-btn {
    background: var(--warm-light);
}
.symptom-card:hover .symptom-arrow {
    transform: translateX(3px);
}
.problems-cta {
    text-align: center;
    margin-top: 10px;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.7;
    text-wrap: balance;
}
.problems-strong {
    display: inline;
    font-size: 1.35rem;
    color: #1B6A18;
    background: linear-gradient(transparent 60%, #fce9a8 60%);
}
@media (max-width: 960px) {
    .symptom-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .symptom-img-wrap { width: 140px; height: 140px; }
}
@media (max-width: 768px) {
    .problems-sub { font-size: 0.95rem; margin-top: -36px; }
    .symptom-grid { grid-template-columns: repeat(2, 1fr); gap: 14px; }
    .symptom-card { padding: 24px 14px 22px; border-radius: 6px; }
    .symptom-img-wrap { width: 110px; height: 110px; margin-bottom: 14px; border-width: 3px; }
    .symptom-title { font-size: 1.05rem; margin-bottom: 8px; }
    .symptom-desc { font-size: 0.82rem; line-height: 1.7; margin-bottom: 14px; }
    .symptom-btn { font-size: 0.8rem; padding: 8px 20px; }
    .problems-cta { font-size: 1rem; }
    .problems-strong { font-size: 1.1rem; }
}
@media (max-width: 480px) {
    .symptom-img-wrap { width: 90px; height: 90px; margin-bottom: 12px; }
    .symptom-card { padding: 20px 10px 18px; }
    .symptom-title { font-size: 0.95rem; }
    .symptom-desc { font-size: 0.78rem; }
    .symptom-btn { font-size: 0.75rem; padding: 7px 16px; }
}

/* ===== 画像ブロック ===== */
.img-block {
    margin-bottom: 20px;
}
.img-block:last-of-type {
    margin-bottom: 0;
}
.img-block img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.06);
}
@media (max-width: 768px) {
    .img-block img { border-radius: 6px; }
}

/* --- BA メッセージ --- */
.ba-message {
    margin-top: 28px;
    text-align: center;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.8;
    background: var(--green);
    color: #fff;
    padding: 20px 28px;
    border-radius: 6px;
}
.ba-highlight {
    font-size: 2rem;
    font-weight: 900;
    color: #ffe033;
    letter-spacing: 0.02em;
}
@media (max-width: 768px) {
    .ba-message { font-size: 1.05rem; padding: 16px 18px; }
    .ba-highlight { font-size: 1.6rem; }
}

/* --- マーカー --- */
.voice-card-simple mark {
    background: linear-gradient(transparent 60%, #fff06a 60%);
    color: inherit;
    padding: 0 2px;
}

/* --- 口コミカード（シンプル白） --- */
.voice-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-top: 32px;
}
.voice-card-simple {
    background: #fff;
    padding: 28px 24px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.voice-card-simple h3 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 12px;
}
.voice-card-simple p {
    font-size: 0.92rem;
    color: var(--text-sub);
    line-height: 1.85;
    margin-bottom: 14px;
}
.voice-simple-bottom {
    display: flex;
    align-items: center;
    gap: 12px;
}
.voice-simple-bottom img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}
.voice-simple-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text);
}
@media (max-width: 768px) {
    .voice-grid { grid-template-columns: 1fr; gap: 16px; margin-top: 24px; }
    .voice-card-simple { padding: 22px 18px 16px; }
    .voice-card-simple h3 { font-size: 0.95rem; }
    .voice-card-simple p { font-size: 0.88rem; line-height: 1.8; }
    .voice-simple-bottom img { width: 44px; height: 44px; }
    .voice-simple-name { font-size: 0.8rem; }
}

/* (対応症状メニュー - 削除済み) */

/* ===== 施術の特徴（POINT） ===== */
.point-block {
    display: flex;
    align-items: center;
    max-width: 960px;
    margin: 0 auto 60px;
    padding: 0 20px;
    gap: 48px;
}
.point-block:last-of-type { margin-bottom: 0; }
.point-block-reverse { flex-direction: row-reverse; }
.point-photos {
    flex: 1;
    min-width: 0;
    position: relative;
}
.point-photo-main {
    width: 100%;
    border-radius: 8px;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.point-text {
    flex: 1;
    min-width: 0;
}
.point-label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-sub);
    letter-spacing: 0.15em;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 12px;
}
.point-label::after {
    content: "";
    flex: 1;
    height: 2px;
    background: var(--green);
}
.point-num {
    font-size: 2.2rem;
    font-weight: 900;
    color: var(--green);
    letter-spacing: 0;
}
.point-text h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: #1B6A18;
    margin-bottom: 16px;
    line-height: 1.5;
}
.point-text p {
    font-size: 1rem;
    color: var(--text);
    line-height: 2;
}
.point-text strong {
    color: #1B6A18;
    font-weight: 700;
}
@media (max-width: 768px) {
    .point-block, .point-block-reverse {
        flex-direction: column;
        gap: 20px;
        padding: 0 16px;
        margin-bottom: 40px;
    }
    .point-photo-main { border-radius: 6px; aspect-ratio: 16 / 10; }
    .point-num { font-size: 1.6rem; }
    .point-text h3 { font-size: 1.15rem; margin-bottom: 10px; }
    .point-text p { font-size: 0.92rem; line-height: 1.8; }
}

/* ===== 選ばれる理由 ===== */
#reason-sec .sec-inner {
    max-width: 1080px;
}
.reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.reason {
    background: none;
    border: none;
    border-radius: 0;
    padding: 0;
    text-align: center;
}
.reason-head {
    flex-direction: column;
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}
.reason-no {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--warm);
    color: #fff;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
}
.reason-head h3 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B6A18;
    line-height: 1.5;
    text-wrap: balance;
}
.reason-img {
    margin-bottom: 16px;
    border-radius: 8px;
    overflow: hidden;
}
.reason-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.reason p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.9;
    text-align: left;
}
.reason strong {
    color: var(--green-dark);
    font-weight: 700;
}
.reason-intro {
    text-align: center;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text);
    line-height: 1.8;
    margin-bottom: 36px;
    padding: 24px;
    background: var(--warm-pale);
    border-left: 5px solid var(--warm);
    border-radius: 0;
}
.reason-intro strong {
    color: var(--red);
    font-size: 1.5rem;
    font-weight: 900;
}
.reason-detail {
    margin-top: 36px;
    padding: 32px 0 0;
    background: none;
    border: none;
    border-top: 2px solid var(--warm);
    border-radius: 0;
    box-shadow: none;
    position: relative;
}
.reason-detail h3 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.3rem;
    font-weight: 800;
    color: #1B6A18;
    margin-bottom: 14px;
    padding-bottom: 0;
    border-bottom: none;
}
.reason-detail p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 2;
    margin-bottom: 6px;
}
.reason-detail strong {
    color: var(--warm);
    font-weight: 800;
}
.reason-detail-inner {
    display: flex;
    align-items: center;
    gap: 32px;
}
.reason-detail-text {
    flex: 1;
}
.reason-detail-circle {
    flex-shrink: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    border: 4px solid var(--warm);
    background: var(--warm);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}
.reason-detail-circle-label {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255,255,255,0.85);
    letter-spacing: 0.05em;
    line-height: 1;
    margin-bottom: 2px;
}
.reason-detail-circle-num {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 3.2rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}
.reason-detail-circle-numunit {
    display: flex;
    align-items: baseline;
    gap: 2px;
}
.reason-detail-circle-unit {
    font-size: 0.9rem;
    font-weight: 700;
    color: #fff;
    line-height: 1;
}
@media (max-width: 768px) {
    .reasons { grid-template-columns: 1fr; gap: 28px; }
    .reason { text-align: center; }
    .reason-head { gap: 8px; margin-bottom: 12px; }
    .reason-no { width: 44px; height: 44px; font-size: 1.05rem; }
    .reason-head h3 { font-size: 1.05rem; }
    .reason p { font-size: 0.9rem; }
    .reason-intro { font-size: 1rem; padding: 16px 14px; }
    .reason-intro strong { font-size: 1.2rem; }
    .reason-detail { padding: 32px 0 0; margin-top: 28px; }
    .reason-detail-inner { flex-direction: column; gap: 0; }
    .reason-detail-text { width: 100%; }
    .reason-detail h3 { font-size: 1.1rem; }
    .reason-detail p { font-size: 0.95rem; }
    .reason-detail-circle {
        position: absolute;
        top: -48px;
        right: 0;
        width: 96px;
        height: 96px;
        border: 3px solid var(--warm);
        z-index: 1;
    }
    .reason-detail-circle-label { font-size: 0.55rem; margin-bottom: 1px; }
    .reason-detail-circle-num { font-size: 2.2rem; }
    .reason-detail-circle-unit { font-size: 0.7rem; }
}

/* ===== お客様の声 ===== */
.voice-card {
    background: #fff;
    padding: 28px 28px 22px;
    border-radius: 8px;
    border-left: 5px solid var(--green);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
    position: relative;
}
.voice-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 18px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}
.voice-top img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--green-pale);
    flex-shrink: 0;
}
.voice-name {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--text);
}
.voice-tag {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--green);
    background: var(--green-pale);
    padding: 2px 10px;
    border-radius: 20px;
    margin-top: 4px;
    font-weight: 600;
}
.voice-card h3 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: #1B6A18;
    margin-bottom: 12px;
    line-height: 1.6;
}
.voice-card p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.9;
    margin-bottom: 16px;
}
.voice-note {
    display: block;
    font-size: 0.75rem;
    color: #bbb;
    text-align: right;
    margin-top: 8px;
}
@media (max-width: 768px) {
    .voice-card { padding: 22px 18px 18px; border-radius: 6px; border-left-width: 4px; }
    .voice-top { gap: 12px; margin-bottom: 14px; padding-bottom: 12px; }
    .voice-top img { width: 50px; height: 50px; }
    .voice-name { font-size: 0.85rem; }
    .voice-tag { font-size: 0.72rem; padding: 2px 8px; }
    .voice-card h3 { font-size: 1rem; margin-bottom: 10px; }
    .voice-card p { font-size: 0.9rem; line-height: 1.8; margin-bottom: 12px; }
}

/* ===== LINE予約ガイド ===== */
.line-guide {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.line-guide-header {
    background: var(--warm-pale);
    padding: 32px 28px;
    text-align: center;
}
.line-guide-sub {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--warm);
    margin-bottom: 6px;
}
.line-guide-title {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--text);
    line-height: 1.5;
    text-wrap: balance;
}
.line-guide-title span {
    font-size: 2.8rem;
    color: var(--line-green);
    font-weight: 900;
}
.line-guide-steps-wrap {
    padding: 28px 24px;
    text-align: center;
}
.line-guide-steps-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 20px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--border);
}
.line-guide-steps-title span {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.8rem;
    font-weight: 900;
    color: var(--line-green);
    margin: 0 2px;
}
.line-guide-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.line-guide-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    min-width: 90px;
}
.line-guide-step-icon {
    font-size: 2.8rem;
    line-height: 1;
}
.line-guide-step-label {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    line-height: 1.4;
}
.line-guide-arrow {
    font-size: 1.2rem;
    color: #bbb;
    flex-shrink: 0;
}
.line-guide-action {
    padding: 0 28px 24px;
    text-align: center;
}
.line-guide-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--line-green);
    color: #fff;
    font-size: 1.3rem;
    font-weight: 800;
    padding: 16px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(6,199,85,0.3);
    transition: opacity 0.2s, transform 0.1s;
}
.line-guide-btn:hover { opacity: 0.9; }
.line-guide-btn:active { transform: scale(0.98); }
.line-guide-btn-ico {
    width: 30px;
    height: 30px;
}
.line-guide-note {
    text-align: center;
    font-size: 0.8rem;
    color: #999;
    padding: 0 24px 24px;
    line-height: 1.7;
}
@media (max-width: 768px) {
    .line-guide-header { padding: 22px 16px; }
    .line-guide-sub { font-size: 0.95rem; }
    .line-guide-title { font-size: 1.4rem; }
    .line-guide-title span { font-size: 2rem; }
    .line-guide-steps-wrap { padding: 20px 12px; }
    .line-guide-steps-title { font-size: 1.1rem; margin-bottom: 16px; }
    .line-guide-steps-title span { font-size: 1.5rem; }
    .line-guide-steps {
        flex-wrap: wrap;
        gap: 10px 4px;
        justify-content: center;
    }
    .line-guide-step { min-width: 55px; }
    .line-guide-step-icon { font-size: 1.8rem; }
    .line-guide-step-label { font-size: 0.75rem; }
    .line-guide-arrow { font-size: 0.9rem; }
    .line-guide-action { padding: 0 16px 20px; }
    .line-guide-btn { font-size: 1.05rem; padding: 14px 24px; width: 100%; justify-content: center; }
    .line-guide-note { font-size: 0.72rem; padding: 0 14px 20px; }
}

/* ===== 中間CTA ===== */
.sec-cta-mid {
    background: #145212;
    padding: 50px 20px;
    text-align: center;
    position: relative;
}
.sec-cta-mid-inner {
    max-width: 560px;
    margin: 0 auto;
    position: relative;
    z-index: 3;
}
.cta-mid-catch {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    margin-bottom: 12px;
    line-height: 1.5;
}
.cta-mid-text {
    font-size: 1.05rem;
    font-weight: 500;
    color: rgba(255,255,255,0.85);
    margin-bottom: 28px;
    line-height: 1.8;
}
@media (max-width: 768px) {
    .sec-cta-mid { padding: 36px 16px; }
    .cta-mid-catch { font-size: 1.25rem; margin-bottom: 10px; }
    .cta-mid-text { font-size: 0.95rem; margin-bottom: 20px; }
    .cta-buttons { max-width: 100%; }
    .btn { padding: 14px 16px; border-radius: 8px; }
    .btn-main { font-size: 1rem; }
}

/* ===== 院長 ===== */
.staff {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}
.staff-img {
    flex: 1;
    min-width: 0;
}
.staff-img img {
    width: 100%;
    border-radius: 8px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}
.staff-body { flex: 1; min-width: 0; }
.staff-body h3 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #1B6A18;
    margin-bottom: 8px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--border);
}
.staff-cert {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text);
    background: var(--warm-pale);
    display: inline-block;
    padding: 3px 10px;
    border-radius: 4px;
    margin-bottom: 14px;
}
.staff-body p {
    font-size: 1.05rem;
    color: var(--text);
    line-height: 2;
    margin-bottom: 8px;
}
@media (max-width: 768px) {
    .staff { flex-direction: column; gap: 20px; }
    .staff-img { width: 100%; max-width: 100%; margin: 0 auto; }
    .staff-img img { border-radius: 6px; }
    .staff-body h3 { font-size: 1.1rem; }
    .staff-cert { font-size: 0.75rem; }
    .staff-body p { font-size: 0.95rem; line-height: 1.9; }
}

/* ===== 施術の流れ ===== */
#flow-sec .sec-inner { max-width: 1080px; }
.flow-h {
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.flow-h-item {
    flex: 1;
    text-align: center;
    background: #fff;
    border-radius: 8px;
    padding: 28px 18px;
    border: 1px solid var(--border);
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}
.flow-h-no {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--warm);
    color: #fff;
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 14px;
}
.flow-h-img {
    margin-bottom: 14px;
    border-radius: 8px;
    overflow: hidden;
}
.flow-h-img img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
}
.flow-h-item h3 {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #1B6A18;
    margin-bottom: 10px;
    line-height: 1.5;
    text-wrap: balance;
}
.flow-h-item p {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    text-align: left;
}
.flow-h-arrow {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding: 0 10px;
    font-size: 1.4rem;
    color: #bbb;
    margin-top: 50px;
}
@media (max-width: 768px) {
    .flow-h {
        flex-direction: column;
        gap: 0;
    }
    .flow-h-arrow {
        margin-top: 0;
        align-self: center;
        transform: rotate(90deg);
        padding: 6px 0;
        font-size: 1.2rem;
    }
    .flow-h-item { padding: 20px 16px; border-radius: 6px; }
    .flow-h-no { width: 40px; height: 40px; font-size: 1.05rem; margin-bottom: 10px; }
    .flow-h-img { margin-bottom: 12px; }
    .flow-h-img img { aspect-ratio: 16 / 10; }
    .flow-h-item h3 { font-size: 1rem; margin-bottom: 8px; }
    .flow-h-item p { font-size: 0.9rem; line-height: 1.7; }
}

/* ===== 料金表 ===== */
.price-note {
    text-align: center;
    font-size: 0.9rem;
    color: var(--text-sub);
    margin-bottom: 24px;
}
.price-table-wrap {
    max-width: 700px;
    margin: 0 auto;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 1rem;
}
.price-table thead th {
    background: var(--green);
    color: #fff;
    padding: 12px 16px;
    font-weight: 700;
    font-size: 0.95rem;
}
.price-table thead th:last-child {
    width: 160px;
    text-align: center;
}
.price-table tbody td {
    padding: 16px;
    border-bottom: 1px solid var(--border);
    font-weight: 600;
}
.price-sub {
    display: block;
    font-size: 0.8rem;
    color: var(--text-sub);
    font-weight: 400;
    margin-top: 2px;
}
.price-val {
    text-align: center;
    white-space: nowrap;
}
.price-yen {
    font-size: 1.4rem;
    font-weight: 900;
    color: var(--warm);
}
.price-notice {
    text-align: center;
    font-size: 0.82rem;
    color: var(--text-sub);
    margin-top: 20px;
}
@media (max-width: 768px) {
    .price-table { font-size: 0.85rem; }
    .price-table thead th { padding: 10px 10px; font-size: 0.82rem; }
    .price-table thead th:last-child { width: 100px; }
    .price-table tbody td { padding: 10px; }
    .price-sub { font-size: 0.72rem; }
    .price-yen { font-size: 1.1rem; }
    .price-note { font-size: 0.82rem; }
    .price-notice { font-size: 0.75rem; }
}

/* ===== 実績 ===== */
.staff-record {
    background: var(--green-pale);
    border-left: 4px solid var(--green);
    padding: 10px 16px;
    margin: 12px 0 16px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text);
    border-radius: 4px;
}
.staff-record-num {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--warm);
}

/* ===== FAQ ===== */
.faq {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.faq-item {
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
}
.faq-item summary {
    padding: 16px 44px 16px 20px;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text);
    cursor: pointer;
    position: relative;
    list-style: none;
    background: var(--warm-pale);
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before {
    content: "Q.";
    color: var(--warm);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 8px;
}
.faq-item summary::after {
    content: "+";
    position: absolute;
    right: 18px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--warm);
    transition: transform 0.2s;
}
.faq-item[open] summary::after {
    content: "−";
}
.faq-item p {
    padding: 14px 20px 16px;
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.8;
    border-top: 1px solid var(--border);
}
.faq-item p::before {
    content: "A.";
    color: var(--orange);
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-weight: 800;
    font-size: 1.1rem;
    margin-right: 8px;
}
@media (max-width: 768px) {
    .faq { max-width: 100%; }
    .faq-item summary { padding: 14px 38px 14px 16px; font-size: 0.92rem; }
    .faq-item summary::before { font-size: 1rem; }
    .faq-item summary::after { right: 14px; font-size: 1.2rem; }
    .faq-item p { padding: 12px 16px 14px; font-size: 0.9rem; line-height: 1.7; }
    .faq-item p::before { font-size: 1rem; }
}

/* ===== アクセス ===== */
.access {
    display: flex;
    gap: 28px;
}
.access-info { flex: 1; }
.access-name {
    font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
    font-size: 1.2rem;
    font-weight: 700;
    color: #1B6A18;
    margin-bottom: 14px;
    line-height: 1.5;
}
.access-area {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--green);
    margin-bottom: 14px;
}
.access-table {
    width: 100%;
    margin-bottom: 18px;
    border-collapse: collapse;
}
.access-table th {
    width: 65px;
    padding: 8px 10px;
    font-weight: 700;
    font-size: 0.85rem;
    color: #fff;
    background: var(--warm);
    text-align: center;
    vertical-align: middle;
    border-bottom: 1px solid rgba(255,255,255,0.3);
}
.access-table td {
    padding: 8px 12px;
    font-size: 0.9rem;
    color: var(--text);
    border-bottom: 1px solid var(--border);
    line-height: 1.5;
}
.access-table td a {
    color: var(--green);
    font-weight: 700;
    font-size: 1.05rem;
}
.access-hours-wrap {
    overflow-x: hidden;
}
.hours-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9rem;
}
.hours-table th,
.hours-table td {
    border: 1px solid var(--border);
    padding: 8px 6px;
    text-align: center;
}
.hours-table th {
    background: var(--warm-pale);
    color: var(--text);
    font-weight: 700;
    font-size: 0.85rem;
}
.hours-table td { font-weight: 600; }
.access-photo {
    flex: 1;
}
.access-photo img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.access-photo-cap {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-sub);
    margin-top: 8px;
}
.access-map-full {
    margin-top: 28px;
    width: 100%;
    height: 350px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.06);
}
.access-map-full iframe { width: 100%; height: 100%; border: none; }
@media (max-width: 768px) {
    .access { flex-direction: column; gap: 20px; }
    .access-photo { order: -1; }
    .access-name { font-size: 1.05rem; }
    .access-table th { font-size: 0.8rem; width: 55px; padding: 7px 8px; }
    .access-table td { font-size: 0.85rem; padding: 7px 10px; }
    .access-table td a { font-size: 0.95rem; }
    .hours-table { font-size: 0.72rem; }
    .hours-table th, .hours-table td { padding: 6px 4px; }
    .access-map-full { height: 250px; margin-top: 20px; border-radius: 8px; }
}

/* (最終オファー - 削除済み) */

/* ===== フッター ===== */
.footer {
    background: #145212;
    color: rgba(255,255,255,0.8);
    text-align: center;
    padding: 28px 20px;
    font-size: 0.8rem;
    line-height: 1.8;
}
.footer-name {
    font-weight: 700;
    font-size: 0.9rem;
    color: #fff;
    margin-bottom: 4px;
}
.footer-addr { margin-bottom: 8px; }
.footer-copy { font-size: 0.7rem; color: rgba(255,255,255,0.5); }
@media (max-width: 768px) {
    .footer { padding: 24px 16px 100px; font-size: 0.75rem; }
    .footer-name { font-size: 0.85rem; }
}

/* ===== スマホ固定CTA ===== */
.fixed-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    display: flex;
    padding: 6px 16px 8px;
    background: transparent;
    box-shadow: none;
}
.fixed-cta-tel {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 8px 16px;
    color: #fff;
    background: var(--orange);
    border-radius: 8px;
    white-space: nowrap;
    transition: opacity 0.2s;
    box-shadow: 0 3px 10px rgba(230,126,34,0.35);
}
.fixed-cta-tel:active { opacity: 0.85; }
/* アイコン（左側） */
.fixed-cta-phone-ico {
    flex-shrink: 0;
    font-size: 1.4rem;
    line-height: 1;
}
/* テキスト部分 */
.fixed-cta-body {
    display: flex;
    flex-direction: column;
    min-width: 0;
}
.fixed-cta-label {
    font-size: 0.7rem;
    font-weight: 700;
    opacity: 0.9;
    line-height: 1.2;
}
.fixed-cta-num {
    font-size: 1.2rem;
    font-weight: 900;
    letter-spacing: 0.04em;
    line-height: 1.3;
}
@media (min-width: 769px) { .fixed-cta { display: none; } }
@media (max-width: 380px) {
    .fixed-cta { padding: 6px 10px; }
    .fixed-cta-tel { padding: 12px 14px; gap: 10px; }
    .fixed-cta-phone-ico { font-size: 1.4rem; }
    .fixed-cta-label { font-size: 0.85rem; }
    .fixed-cta-num { font-size: 1.45rem; }
}

/* ===== サブページ共通 ===== */
.sub-hero { position: relative; overflow: hidden; line-height: 0; }
.sub-hero-img img { width: 100%; height: 400px; object-fit: cover; display: block; }
.sub-hero-overlay { position: absolute; bottom: 0; left: 0; width: 100%; background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%); padding: 80px 20px 40px; text-align: center; line-height: 1.6; }
.sub-hero-label { display: inline-block; font-size: 0.8rem; font-weight: 700; color: #fff; background: var(--green); padding: 4px 16px; border-radius: 20px; margin-bottom: 12px; letter-spacing: 0.1em; }
.sub-hero-title { font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; font-size: 2.8rem; font-weight: 900; color: #fff; margin-bottom: 12px; letter-spacing: 0.08em; text-shadow: 0 2px 8px rgba(0,0,0,0.3); }
.sub-hero-catch { font-size: 1.1rem; font-weight: 600; color: rgba(255,255,255,0.9); letter-spacing: 0.06em; }
@media (max-width: 768px) { .sub-hero-img img { height: 280px; } .sub-hero-overlay { padding: 60px 16px 28px; } .sub-hero-label { font-size: 0.7rem; padding: 3px 12px; margin-bottom: 8px; } .sub-hero-title { font-size: 2rem; margin-bottom: 8px; } .sub-hero-catch { font-size: 0.9rem; } }
@media (max-width: 480px) { .sub-hero-img img { height: 220px; } .sub-hero-overlay { padding: 50px 14px 22px; } .sub-hero-title { font-size: 1.6rem; } .sub-hero-catch { font-size: 0.8rem; } }

.check-list-box { background: #fff; border-radius: 14px; padding: 32px 36px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); margin-bottom: 24px; }
.check-list { list-style: none; max-width: 700px; margin: 0 auto; }
.check-list li { display: flex; align-items: center; gap: 14px; padding: 14px 0; font-size: 1.05rem; font-weight: 600; color: var(--text); border-bottom: 1px solid var(--border); line-height: 1.6; }
.check-list li:last-child { border-bottom: none; }
.check-icon { flex-shrink: 0; width: 32px; height: 32px; border-radius: 50%; background: var(--green); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.85rem; }
.check-list-msg { text-align: center; font-size: 1.15rem; font-weight: 700; color: var(--green); line-height: 1.7; }
@media (max-width: 768px) { .check-list-box { padding: 24px 20px; border-radius: 10px; } .check-list li { font-size: 0.92rem; padding: 12px 0; gap: 12px; } .check-icon { width: 28px; height: 28px; font-size: 0.75rem; } .check-list-msg { font-size: 1rem; } }

.cause-block { max-width: 800px; margin: 0 auto; }
.cause-text p { font-size: 1.05rem; color: var(--text); line-height: 2; margin-bottom: 16px; }
.cause-text p:last-child { margin-bottom: 0; }
.cause-text strong { color: var(--green); font-weight: 700; }
@media (max-width: 768px) { .cause-text p { font-size: 0.95rem; line-height: 1.9; margin-bottom: 12px; } }

.approach-steps { display: flex; gap: 24px; max-width: 960px; margin: 0 auto; }
.approach-step { flex: 1; background: #fff; border-radius: 14px; padding: 32px 24px; box-shadow: 0 2px 16px rgba(0,0,0,0.06); text-align: center; }
.approach-step-no { width: 48px; height: 48px; border-radius: 50%; background: var(--green); color: #fff; font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; font-size: 1.3rem; font-weight: 800; display: flex; align-items: center; justify-content: center; margin: 0 auto 16px; }
.approach-step h3 { font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif; font-size: 1.15rem; font-weight: 800; color: #1B6A18; margin-bottom: 12px; line-height: 1.5; }
.approach-step p { font-size: 0.95rem; color: var(--text); line-height: 1.8; text-align: left; }
.approach-step strong { color: #1B6A18; font-weight: 700; }
@media (max-width: 768px) { .approach-steps { flex-direction: column; gap: 16px; } .approach-step { padding: 24px 20px; border-radius: 10px; } .approach-step-no { width: 40px; height: 40px; font-size: 1.1rem; margin-bottom: 12px; } .approach-step h3 { font-size: 1.05rem; margin-bottom: 10px; } .approach-step p { font-size: 0.9rem; line-height: 1.7; } }
