@charset "UTF-8";

/* ============================================================
   KamiBito フランチャイズLP（FC募集LPリニューアル 2026）
   参考：買取大吉／お掃除本舗 系のダイレクトレスポンス型LP
   - 帯見出し・スラッシュキャッチ・お悩みチェック・数字強調・光沢CTA
   - 緑ブランドを維持
   - JS依存クラス（fade-in / carousel / faq / process / stars 等）維持
   ============================================================ */

:root {
    --green: #158a5e;
    --green-d: #0e6b4c;
    --green-dd: #0a5540;
    --green-l: #eaf7f1;
    --green-ll: #f4fbf8;
 
    --orange: #ff7a1a;
    --orange-d: #e2620a;
    --red: #e8352e;
    --yellow: #ffd21e;
    --gold: #f6b800;
 
    --ink: #23302a;
    --muted: #5c675f;
    --line: #e2e8e4;
    --paper: #ffffff;
    --gray: #f3f6f4;
 
    --sh-sm: 0 3px 10px rgba(15, 60, 45, .10);
    --sh-md: 0 8px 24px rgba(15, 60, 45, .14);
 
    --maxw: 1040px;
    --font: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Yu Gothic", "Meiryo", sans-serif;
}
 
* { box-sizing: border-box; }
 
html, body {
    margin: 0; padding: 0;
    overflow-x: hidden;
    font-family: var(--font);
    color: var(--ink);
    background: var(--paper);
    line-height: 1.8;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
.section { margin: 0; padding: 0; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 800; }
p { font-size: 16px; margin: 0; }
.highlight-red { color: var(--red); font-weight: 900; }
 
@media (max-width: 768px) { p { font-size: 14px; } }
 
.sp-br { display: none; }
@media (max-width: 600px) { .sp-br { display: inline; } }
 
/* fade-in */
.fade-in { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.fade-in.visible { opacity: 1; transform: translateY(0); }
 
/* ─────────── 大枠バナー画像（PC / SP 出し分け） ───────────
   ・トップ画像などの大きなバナーを差し込む用
   ・PC幅(769px以上)では .pc-image / .pc-image-strong を表示
   ・SP幅(768px以下)では .sp-image / .sp-image-strong を表示
   ------------------------------------------------------------ */
.pc-image, .sp-image, .pc-image-strong, .sp-image-strong {
    width: 100%;
    height: auto;
    margin: 0 auto;
    display: none;      /* 既定は非表示 → 下のメディアクエリで出し分け */
}
/* PC（769px以上）: PC用バナーのみ表示 */
@media screen and (min-width: 769px) {
    .pc-image, .pc-image-strong { display: block; }
    .sp-image, .sp-image-strong { display: none; }
}
/* SP（768px以下）: SP用バナーのみ表示 */
@media screen and (max-width: 768px) {
    .sp-image, .sp-image-strong { display: block; }
    .pc-image, .pc-image-strong { display: none; }
}
 
/* 汎用ラッパ */
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 20px; }
 
/* ─────────── 共通：スラッシュキャッチ ─────────── */
.slash {
    display: flex; align-items: center; justify-content: center; gap: 14px;
    font-size: 20px; font-weight: 800; color: var(--green-d); margin-bottom: 14px;
}
.slash::before, .slash::after {
    content: ""; width: 2px; height: 26px; background: var(--green);
    display: inline-block;
}
.slash::before { transform: rotate(-25deg); }
.slash::after { transform: rotate(25deg); }
.slash.on-green { color: #fff; }
.slash.on-green::before, .slash.on-green::after { background: var(--yellow); }
 
/* ─────────── 共通：帯見出し ─────────── */
.band {
    position: relative;
    background: var(--green);
    color: #fff;
    text-align: center;
    padding: 30px 20px 34px;
}
.band .tab {
    display: inline-block;
    background: var(--yellow);
    color: var(--green-dd);
    font-size: 14px; font-weight: 900;
    padding: 5px 22px; border-radius: 999px;
    margin-bottom: 14px; letter-spacing: .04em;
}
.band h2 { font-size: 30px; line-height: 1.4; letter-spacing: .01em; }
.band h2 .yellow { color: var(--yellow); }
.band::after {
    content: ""; position: absolute; left: 50%; bottom: -14px; transform: translateX(-50%);
    border-left: 16px solid transparent; border-right: 16px solid transparent;
    border-top: 14px solid var(--green);
}
@media (max-width: 768px) {
    .band h2 { font-size: 21px; }
    .slash { font-size: 15px; }
    .slash::before, .slash::after { height: 20px; }
}
 
/* ─────────── 共通：白見出し（本文内） ─────────── */
.head { text-align: center; margin-bottom: 34px; }
.head .kicker { color: var(--green); font-weight: 900; font-size: 15px; letter-spacing: .06em; margin-bottom: 6px; }
.head h2 { font-size: 30px; line-height: 1.45; color: var(--ink); }
.head h2 .mk { background: linear-gradient(transparent 60%, var(--yellow) 60%); padding: 0 3px; }
.head h2 .grn { color: var(--green); }
.head h2 .red { color: var(--red); }
.head .lead { color: var(--muted); font-size: 16px; margin-top: 14px; }
@media (max-width: 768px) {
    .head h2 { font-size: 21px; }
    .head .lead { font-size: 13px; }
}
 
/* ─────────── 共通：CTAボタン ─────────── */
.reservation-button,
.cta-btn {
    position: relative;
    display: inline-flex; flex-direction: column; align-items: center; justify-content: center;
    gap: 2px;
    background: linear-gradient(180deg, #ff8f3c, var(--orange));
    color: #fff; text-decoration: none;
    font-weight: 900; font-size: 20px;
    padding: 18px 56px 18px 48px;
    border-radius: 999px;
    box-shadow: 0 6px 0 var(--orange-d), 0 12px 22px rgba(226, 98, 10, .35);
    transition: transform .12s, box-shadow .12s, filter .12s;
    line-height: 1.3;
}
.reservation-button .sub,
.cta-btn .sub { font-size: 12px; font-weight: 700; opacity: .95; }
.reservation-button::after,
.cta-btn::after {
    content: "❯"; position: absolute; right: 24px; top: 50%; transform: translateY(-50%);
    font-size: 16px; font-weight: 900;
}
.reservation-button:hover,
.cta-btn:hover { filter: brightness(1.05); transform: translateY(2px); box-shadow: 0 3px 0 var(--orange-d), 0 8px 16px rgba(226, 98, 10, .3); }
.cta-free {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--red); color: #fff; font-size: 12px; font-weight: 900;
    padding: 3px 14px; border-radius: 999px; white-space: nowrap;
    box-shadow: 0 3px 8px rgba(232, 53, 46, .35);
}
.btn-wrapper { text-align: center; margin: 30px 0; position: relative; padding-top: 8px; }
 
.ghost-btn {
    display: inline-flex; align-items: center; gap: 8px;
    background: #fff; color: var(--green-d);
    border: 2px solid var(--green); border-radius: 999px;
    font-weight: 800; font-size: 15px; padding: 14px 30px; text-decoration: none;
    transition: background .15s;
}
.ghost-btn::after { content: "❯"; font-size: 13px; }
.ghost-btn:hover { background: var(--green-l); }
 
@media (max-width: 768px) {
    .reservation-button, .cta-btn { font-size: 17px; padding: 16px 44px 16px 34px; width: 100%; max-width: 400px; }
}


/* ════════════════════════════════════════
   2. ヒーロー
   ════════════════════════════════════════ */

.hero {
    background: #f4f4f4;
    padding: 30px 0;
    margin: 0;
    text-align: center;
}

.hero-content {
    padding: 20px;
    text-align: center;
}

/* ※ .hero-content 内に h1/h3 は現HTMLに存在しないが、
   将来の追加を想定しfont-sizeのみ基準スケールに統一（カラーは維持） */
.hero-content h1 {
    color: #e03c8a;
    font-weight: bold;
}

.hero-content p {
    line-height: 1.6;
    text-align: center;
    margin-bottom: 15px;
}

.hero-content h3 {
    color: #000000;
    padding-left: 10px;
    text-align: center;
}


@media screen and (max-width: 480px) {
    .hero {
        padding: 15px 0;
    }

    .hero-content {
        padding: 10px;
    }

    .hero-content p {
        margin-bottom: 7px;
    }
}
/* ════════════════════════════════════════
   ファーストビュー
   ════════════════════════════════════════ */
.hero {
    position: relative;
    background: linear-gradient(160deg, var(--green-d), var(--green));
    color: #fff; text-align: center;
    padding: 46px 20px 40px;
    overflow: hidden;
}
.hero::before {
    content: ""; position: absolute; inset: 0;
    background-image: radial-gradient(rgba(255,255,255,.06) 1.5px, transparent 1.5px);
    background-size: 22px 22px; opacity: .6;
}
.hero-inner { position: relative; z-index: 2; max-width: 900px; margin: 0 auto; }
.hero h1 {
    font-size: 40px; line-height: 1.35; font-weight: 900;
    text-shadow: 0 3px 14px rgba(0,0,0,.2);
}
.hero h1 .mk {
    background: var(--yellow); color: var(--green-dd);
    padding: 2px 10px; border-radius: 6px; display: inline-block;
    box-shadow: 0 4px 0 rgba(0,0,0,.12);
}
.hero h1 .big { font-size: 1.35em; color: var(--yellow); }
.hero .catch-sub { margin-top: 18px; font-size: 16px; line-height: 1.9; color: rgba(255,255,255,.95); max-width: 720px; margin-left:auto; margin-right:auto; }
.hero-cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; margin-top: 28px; }
 
/* 実績ナンバーバー */
.trust-bar {
    background: #fff; margin-top: 26px; border-radius: 16px;
    box-shadow: var(--sh-md); padding: 20px 10px;
    display: flex; flex-wrap: wrap; justify-content: center; gap: 6px;
    position: relative; z-index: 3;
}
.trust-item { flex: 1 1 130px; max-width: 200px; padding: 6px 8px; border-right: 1px dashed var(--line); }
.trust-item:last-child { border-right: none; }
.trust-item .t-label { font-size: 12px; font-weight: 800; color: var(--muted); }
.trust-item .t-num { font-size: 34px; font-weight: 900; color: var(--green); line-height: 1.1; }
.trust-item .t-num .u { font-size: 15px; margin-left: 1px; }
.trust-item:nth-child(2) .t-num { color: var(--orange); }
.trust-item:nth-child(3) .t-num { color: var(--red); }
@media (max-width: 768px) {
    .hero { padding: 34px 16px 30px; }
    .hero h1 { font-size: 27px; }
    .hero .catch-sub { font-size: 14px; }
    .trust-item { flex-basis: 45%; border-right: none; border-bottom: 1px dashed var(--line); padding: 10px; }
    .trust-item:nth-child(3), .trust-item:nth-child(4) { border-bottom: none; }
    .trust-item .t-num { font-size: 27px; }
}

/* ════════════════════════════════════════
   LINE
   ════════════════════════════════════════ */
.line-link-wrapper { padding: 40px 20px 6px; text-align: center; background: var(--gray); }
.line-link { width: 100%; max-width: 520px; margin: 0 auto; border-radius: 14px; box-shadow: var(--sh-sm); }

/* ════════════════════════════════════════
   お悩み
   ════════════════════════════════════════ */
.worry {
    background: var(--gray);
    padding: 40px 20px 60px;
    text-align: center;
}
.worry .slash { color: var(--red); }
.worry .slash::before, .worry .slash::after { background: var(--red); }
.worry h2 { font-size: 28px; line-height: 1.4; margin-bottom: 30px; }
.worry h2 .u { background: linear-gradient(transparent 60%, var(--yellow) 60%); }
.worry-list { max-width: 760px; margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.worry-item {
    background: #fff; border-radius: 14px; box-shadow: var(--sh-sm);
    padding: 22px 22px 22px 56px; text-align: left; position: relative;
    font-weight: 700; font-size: 16px; line-height: 1.6;
    border: 2px solid #fff;
}
.worry-item::before {
    content: "✓"; position: absolute; left: 18px; top: 20px;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--green); color: #fff; font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
}
.worry-bridge {
    max-width: 800px; margin: 40px auto 0; background: var(--green); color: #fff;
    border-radius: 16px; padding: 30px 24px; position: relative;
}
.worry-bridge::before {
    content: ""; position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
    border-left: 18px solid transparent; border-right: 18px solid transparent;
    border-bottom: 16px solid var(--green);
}
.worry-bridge p { font-size: 20px; font-weight: 800; line-height: 1.6; }
.worry-bridge .big { color: var(--yellow); font-size: 1.3em; font-weight: 900; }
@media (max-width: 768px) {
    .worry h2 { font-size: 20px; }
    .worry-list { grid-template-columns: 1fr; gap: 12px; }
    .worry-item { font-size: 14px; padding: 16px 16px 16px 48px; }
    .worry-item::before { top: 15px; left: 14px; }
    .worry-bridge p { font-size: 16px; }
}
/* ════════════════════════════════════════
   KamiBito紹介
   ════════════════════════════════════════ */
.about { padding-bottom: 20px; }
.about .body { padding: 40px 20px 10px; }
.intro-copy { max-width: 800px; margin: 0 auto; font-size: 16px; line-height: 2; }
.intro-copy p { margin-bottom: 16px; }
.note { font-size: 11px; color: #97a09a; margin-top: 10px; line-height: 1.6; }

.video-section { display: flex; justify-content: center; margin: 34px 0; padding: 0 20px; }
.video-container { width: 100%; max-width: 680px; }
.video-container iframe { width: 100%; aspect-ratio: 16/9; height: auto; border: none; border-radius: 12px; box-shadow: var(--sh-md); }

.graph-section { background: var(--green-ll); padding: 44px 20px; margin-top: 10px; }
.graph-container {
    display: flex; align-items: center; gap: 40px;
    max-width: var(--maxw); margin: 0 auto;
    background: #fff; border-radius: 16px; padding: 36px; box-shadow: var(--sh-sm);
    border-top: 5px solid var(--green);
}
.text-content { flex: 1; }
.image-content { flex: 1; text-align: center; }
.text-content h3 { font-size: 22px; line-height: 1.5; margin-bottom: 16px; color: var(--ink); }
.text-content h3 .grn { color: var(--green); }
.text-content p { line-height: 1.95; color: var(--muted); font-size: 15px; }
.graph-image { width: 100%; max-width: 440px; margin: 0 auto; border-radius: 8px; }
@media (max-width: 768px) {
    .graph-container { flex-direction: column; padding: 24px; gap: 22px; }
    .text-content h3 { font-size: 18px; }
}

/* ════════════════════════════════════════
   実績
   ════════════════════════════════════════ */
.main-content { padding: 50px 20px 60px; text-align: center; }

.achv-badge {
    display: inline-block; background: var(--red); color: #fff;
    font-size: 18px; font-weight: 900; padding: 8px 30px; border-radius: 999px;
    margin: 4px 0 26px; box-shadow: 0 4px 0 #b81f1a; position: relative;
}
.achv-badge::before { content: "＼ "; } .achv-badge::after { content: " ／"; }

.achievement-card {
    max-width: 760px; margin: 0 auto 36px; background: #fff;
    border: 3px solid var(--green); border-radius: 16px; box-shadow: var(--sh-md);
    padding: 28px; display: flex; gap: 26px; align-items: center;
}
.image-box { flex: 0 0 230px; }
.image-box img { width: 230px; height: 230px; object-fit: cover; border-radius: 12px; }
.achievement-text { flex: 1; text-align: left; }
.headline { font-size: 20px; font-weight: 900; line-height: 1.5; margin-bottom: 12px; }
.headline .highlight { color: var(--red); font-size: 30px; }
.shop-name { color: var(--green); font-size: 24px; font-weight: 900; margin-bottom: 16px; }
.info-block { display: flex; gap: 12px; align-items: center; margin-bottom: 9px; }
.label { background: var(--green); color: #fff; padding: 5px 14px; border-radius: 6px; font-weight: 800; font-size: 13px; min-width: 92px; text-align: center; }
.value { font-size: 15px; font-weight: 700; }

.profit-container {
    max-width: 880px; margin: 30px auto; background: #fff;
    border: 3px solid var(--green); border-radius: 18px;
    box-shadow: var(--sh-md); overflow: hidden;
}
.profit-head {
    background: var(--green); color: #fff; text-align: center;
    padding: 22px 20px; display: flex; flex-direction: column; align-items: center; gap: 8px;
}
.profit-tag {
    background: var(--yellow); color: var(--green-dd);
    font-size: 12px; font-weight: 900; padding: 4px 18px; border-radius: 999px; letter-spacing: .04em;
}
.profit-head h3 { font-size: 25px; line-height: 1.4; }
.profit-head h3 .yellow { color: var(--yellow); }
.profit-body { padding: 28px 32px 32px; }
.profit-body > p { color: var(--muted); text-align: center; font-size: 15px; line-height: 1.9; }
.profit-body .mini-note { font-size: 12px; color: #97a09a; }
.chart-frame {
    margin-top: 20px; background: var(--green-ll);
    border: 1px solid var(--line); border-radius: 12px; padding: 18px;
}
.Sales-chart { width: 100%; max-width: 600px; margin: 0 auto; display: block; }
@media (max-width: 768px) {
    .achievement-card { flex-direction: column; padding: 20px; }
    .achievement-text { text-align: left; width: 100%; }
    .headline, .shop-name { text-align: left; }
    .image-box { flex: 0 0 auto; width: 190px; margin: 0 auto; }
    .image-box img { width: 190px; height: 190px; }
    .info-block { justify-content: flex-start; }
    .headline .highlight { font-size: 24px; }
    .profit-head h3 { font-size: 19px; }
    .profit-body { padding: 20px 18px 24px; }
    .chart-frame { padding: 12px; }
}

/* ════════════════════════════════════════
   選ばれる理由（強み）
   ════════════════════════════════════════ */
.strength-wrap { background: var(--gray); padding: 50px 20px 60px; }
.strength-list { max-width: var(--maxw); margin: 0 auto; display: flex; flex-direction: column; gap: 26px; }
.strength-card {
    background: #fff; border-radius: 16px; box-shadow: var(--sh-sm);
    padding: 32px 34px; border: 1px solid var(--line);
}
.strength-head { display: flex; align-items: center; gap: 18px; margin-bottom: 16px; padding-bottom: 16px; border-bottom: 2px dashed var(--line); }
.strength-no {
    flex: 0 0 auto; width: 74px; height: 74px; border-radius: 12px;
    background: var(--green); color: #fff; text-align: center;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
}
.strength-no small { font-size: 10px; font-weight: 800; letter-spacing: .1em; }
.strength-no b { font-size: 34px; line-height: 1; }
.strength-head h3 { font-size: 23px; line-height: 1.4; }
.strength-head h3 .grn { color: var(--green); }
.strength-head h3 .red { color: var(--red); }
.strength-card > p { color: var(--muted); line-height: 1.9; font-size: 15px; }
.logos, .values, .support { display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 22px; margin-top: 22px; }
.logo { max-width: 140px; }
.values .value img { max-width: 140px; }
.support-item { display: flex; flex-wrap: wrap; justify-content: center; gap: 18px; }
.support-item-image { width: 44%; max-width: 320px; border-radius: 10px; }
@media (max-width: 768px) {
    .strength-card { padding: 22px 18px; }
    .strength-head { gap: 12px; }
    .strength-no { width: 58px; height: 58px; }
    .strength-no b { font-size: 26px; }
    .strength-head h3 { font-size: 18px; }
    .logo { max-width: 44%; }
    .values .value img { max-width: 100px; }
    .support-item { flex-direction: column; gap: 16px; }
    .support-item-image { width: 100%; max-width: 360px; }
}

/* ════════════════════════════════════════
   オーナーの声
   ════════════════════════════════════════ */
.real-voice-section {
    background: var(--green-d); color: #fff;
    padding: 50px 20px 60px; position: relative; overflow: hidden;
    display: flex; flex-direction: column; align-items: center;
}
.real-voice-section .container { text-align: center; width: 100%; max-width: var(--maxw); position: relative; z-index: 1; }
.real-voice-section h1 { font-size: 16px; font-weight: 800; color: var(--yellow); margin-bottom: 4px; }
.real-voice-section .subtitle { font-size: 30px; font-weight: 900; margin-bottom: 20px; }
.star-wrapper { position: relative; width: 100%; height: 160px; pointer-events: none; z-index: 0; margin-bottom: -160px; }
.stars { position: absolute; top: 0; left: 0; width: 100%; height: 150%; }
.star { position: absolute; width: 5px; height: 5px; background: var(--yellow); border-radius: 50%; animation: fall linear infinite; }
@keyframes fall { to { transform: translateY(100vh); opacity: 0; } }
 
.toggle-switch { display: inline-flex; background: rgba(255,255,255,.16); padding: 5px; border-radius: 999px; margin-bottom: 26px; }
.switch-btn { padding: 9px 32px; font-weight: 800; border-radius: 999px; cursor: pointer; color: rgba(255,255,255,.85); font-size: 14px; transition: all .2s; }
.switch-btn.active { background: #fff; color: var(--green-d); }
 
.carousel-container { max-width: var(--maxw); width: 100%; margin: auto; position: relative; z-index: 1; display: none; }
.carousel-container.active { display: block; }
 
.interview-block {
    display: flex; flex-wrap: wrap; gap: 34px; background: #fff; color: var(--ink);
    border-radius: 16px; padding: 28px; box-shadow: var(--sh-md);
    margin: 40px 0; position: relative; z-index: 2;
}
.interview-block:nth-child(even) { flex-direction: row-reverse; }
.interview-text { flex: 1 1 46%; min-width: 260px; text-align: left; }
.interview-video { flex: 1 1 46%; min-width: 260px; }
.interview-video iframe { width: 100%; aspect-ratio: 16/9; border: none; border-radius: 12px; box-shadow: var(--sh-sm); }
.tag { background: var(--orange); color: #fff; display: inline-block; padding: 5px 16px; border-radius: 6px; font-size: 13px; font-weight: 800; margin-bottom: 12px; }
.interview-title { font-size: 21px; font-weight: 900; line-height: 1.5; margin-bottom: 10px; }
.interview-description { font-size: 15px; line-height: 1.9; color: var(--muted); }
@media (max-width: 768px) {
    .real-voice-section .subtitle { font-size: 21px; }
    .interview-block { flex-direction: column !important; padding: 20px; gap: 18px; margin: 26px 0; }
    .interview-title { font-size: 18px; }
    .star-wrapper { height: 120px; margin-bottom: -120px; }
}
 
.carousel-viewport { overflow: hidden; border-radius: 16px; }
.carousel-track { display: flex; transition: transform .45s ease; }
.interview-card { flex: 0 0 100%; box-sizing: border-box; background: #fff; color: var(--ink); border-radius: 16px; padding: 32px; box-shadow: var(--sh-md); }
.interview-card > h3 { color: var(--green); font-size: 15px; margin-bottom: 16px; }
.profile-header { display: flex; background: var(--green-l); border-radius: 14px; padding: 24px 26px; align-items: center; gap: 24px; margin-bottom: 24px; }
.avatar-box { flex: 0 0 auto; }
.avatar-box img {
    width: 120px; height: 120px; border-radius: 50%;
    background: var(--green-l); object-fit: cover;
    border: 4px solid #fff; box-shadow: 0 6px 16px rgba(15, 60, 45, .18);
}
/* 画像が無いオーナーはシルエットアイコンで表示 */
.avatar-box img[src=""] {
    background: var(--green-l) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%231a9068'%3E%3Ccircle cx='12' cy='8' r='4.2'/%3E%3Cpath d='M3.6 20c0-4.2 4-6.3 8.4-6.3s8.4 2.1 8.4 6.3z'/%3E%3C/svg%3E") center 56%/64% no-repeat;
    font-size: 0; color: transparent; text-indent: -9999px; overflow: hidden;
}
.profile-meta { display: flex; flex-direction: column; gap: 5px; text-align: left; }
.shop-badge { background: var(--green); color: #fff; font-size: 12px; font-weight: 800; padding: 4px 14px; border-radius: 999px; width: fit-content; }
.owner-name { font-size: 19px; font-weight: 900; }
.open-date { font-size: 13px; color: var(--muted); }
.card-content { text-align: left; }
.card-content h5.main-copy { font-size: 17px; line-height: 1.6; font-weight: 900; margin: 0 0 20px; border-left: 5px solid var(--orange); padding-left: 14px; }
.card-content h6 { font-size: 14px; font-weight: 900; margin: 20px 0 7px; color: var(--green); }
.card-content p { line-height: 1.85; color: var(--muted); margin-bottom: 12px; font-size: 14px; }
.carousel-navigation { display: flex; justify-content: center; align-items: center; gap: 20px; margin-top: 22px; }
.nav-btn { background: #fff; color: var(--green-d); border: none; width: 44px; height: 44px; border-radius: 50%; font-size: 18px; font-weight: 900; cursor: pointer; box-shadow: var(--sh-sm); }
.nav-btn:hover { filter: brightness(.96); }
.dots-container { display: flex; gap: 11px; }
.dot { width: 11px; height: 11px; background: rgba(255,255,255,.4); border-radius: 50%; cursor: pointer; transition: all .3s; }
.dot.active { background: var(--yellow); transform: scale(1.2); }
@media (max-width: 768px) {
    .interview-card { padding: 20px 16px; }
    .profile-header { padding: 18px; gap: 16px; }
    .avatar-box img { width: 90px; height: 90px; border-width: 3px; }
    .card-content h5.main-copy { font-size: 15px; }
    .card-content h5.main-copy br { display: none; }
}
/* ════════════════════════════════════════
   説明会
   ════════════════════════════════════════ */
.info-section { padding: 50px 20px 56px; text-align: center; }
.info { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: 900px; margin: 30px auto 0; }
.info-box {
    width: calc(50% - 8px); text-align: left; background: #fff;
    border: 2px solid var(--green-l); border-radius: 12px; padding: 22px 24px;
}
.info-box h3 { color: var(--green); font-size: 18px; margin-bottom: 10px; padding-left: 34px; position: relative; line-height: 1.4; }
.info-box h3::before { content: "✓"; position: absolute; left: 0; top: 0; width: 24px; height: 24px; background: var(--green); color: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: 900; }
.info-box hr { border: none; border-top: 1px dashed var(--line); margin: 12px 0; }
.info-box p { color: var(--muted); font-size: 14px; line-height: 1.7; }
@media (max-width: 768px) {
    .info-box { width: 100%; }
    .info-box h3 { font-size: 16px; }
}

/* ════════════════════════════════════════
   開業の流れ
   ════════════════════════════════════════ */
.process-container {
    padding: 50px 20px 60px; background: var(--green-d); color: #fff;
    display: flex; flex-direction: column; align-items: center;
    counter-reset: step;
}
.process-container h2 { font-size: 30px; margin-bottom: 6px; }
.process-container .flow-lead { color: rgba(255,255,255,.85); font-weight: 700; margin-bottom: 28px; font-size: 15px; }
.process-step { display: flex; align-items: stretch; width: 100%; max-width: 820px; margin: 8px 0; position: relative; counter-increment: step; }
.step-title {
    flex: 0 0 32%; background: #fff; color: var(--green-d);
    font-size: 15px; font-weight: 900; padding: 16px 18px; border-radius: 10px;
    display: flex; align-items: center; justify-content: flex-start; gap: 12px;
    box-shadow: var(--sh-sm); position: relative; text-align: left;
}
.step-title::before {
    content: counter(step, decimal-leading-zero);
    flex: 0 0 auto; width: 30px; height: 30px; border-radius: 8px;
    background: var(--orange); color: #fff; font-size: 15px; font-weight: 900;
    display: flex; align-items: center; justify-content: center;
}
.step-title::after { content: "▼"; font-size: 13px; color: rgba(255,255,255,.6); position: absolute; bottom: -18px; left: 50%; transform: translateX(-50%); }
.process-step:last-child .step-title::after { content: none; }
.step-detail { flex: 1; background: rgba(255,255,255,.96); color: var(--ink); padding: 16px 20px; border-radius: 10px; margin-left: 12px; font-size: 14px; display: flex; align-items: center; box-shadow: var(--sh-sm); text-align: left; }
@media (max-width: 768px) {
    .process-container h2 { font-size: 21px; }
    .process-step { flex-direction: column; margin: 0 0 14px; }
    .step-title { flex-basis: auto; width: 100%; justify-content: flex-start; border-radius: 10px 10px 0 0; }
    .step-title::after { content: none !important; }
    /* SPでは全ステップの説明を常時表示（左揃え・カード連結） */
    .step-detail { display: flex !important; width: 100%; margin: 0; border-radius: 0 0 10px 10px; font-size: 13px; text-align: left; border-top: 2px dashed var(--green-l); }
}


/* ════════════════════════════════════════
   FAQ
   ════════════════════════════════════════ */
.faq-all { padding: 50px 20px 60px; background: var(--gray); }
.faq { display: flex; flex-wrap: wrap; justify-content: center; gap: 16px; max-width: var(--maxw); margin: 0 auto; }
.faq-item { background: #fff; padding: 22px 24px; border-radius: 12px; box-shadow: var(--sh-sm); max-width: 340px; width: 100%; text-align: left; }
.faq-item h5 { font-size: 15px; font-weight: 800; margin-bottom: 12px; display: flex; align-items: flex-start; gap: 10px; line-height: 1.5; }
.faq-item h5::before { content: "Q"; flex: 0 0 auto; width: 26px; height: 26px; background: var(--green); color: #fff; border-radius: 6px; display: flex; align-items: center; justify-content: center; font-weight: 900; font-size: 14px; }
.faq-item p { color: var(--muted); font-size: 14px; border-top: 1px dashed var(--line); padding-top: 12px; display: flex; gap: 10px; line-height: 1.75; }
.faq-item p::before { content: "A"; flex: 0 0 auto; color: var(--orange); font-weight: 900; }
.faq-toggle { margin-left: auto; font-size: 18px; font-weight: 900; color: var(--green); cursor: pointer; display: none; }
@media (max-width: 768px) {
    .faq-item p { display: none; }
    .faq-item p::before { display: inline; }
    .faq-toggle { display: inline-block; }
}

/* ════════════════════════════════════════
   クロージング
   ════════════════════════════════════════ */

.support-section {
    background: white;
    padding: 100px 20px;
    text-align: left;
}

.support-content {
    display: flex;
    padding-top: 50px;
    padding-bottom: 25px;
    justify-content: center;
    align-items: center;
    max-width: 100%;
    margin: 0;
    gap: 20px;
    text-align: left;
}

.support-text {
    max-width: 50%;
}

.support-content h3 {
    color: #1a8b64;
}

/* 強調spanは親h3に対する相対サイズで統一（全ブレイクポイントで1.2倍） */
.support-highlight {
    color: #1a8b64;
    font-size: 1.2em;
}

.support-text p {
    color: #666;
}

.support-image img {
    max-width: 200px;
}

@media screen and (max-width: 768px) {
    .support-section {
        padding: 50px 10px;
    }

    .support-content {
        flex-direction: column;
        align-items: center;
        max-width: 90%;
        gap: 15px;
    }

    .support-text {
        max-width: 80%;
    }

    .support-image img {
        max-width: 150px;
    }
}

@media screen and (max-width: 480px) {
    .support-section {
        padding: 40px 5px;
    }

    .support-text {
        max-width: 90%;
    }

    .support-image img {
        max-width: 120px;
    }
}

/* 最終CTAブロック */
.final-cta { background: linear-gradient(160deg, var(--green), var(--green-d)); color: #fff; text-align: center; padding: 50px 20px 60px; }
.final-cta h2 { font-size: 28px; line-height: 1.5; margin-bottom: 10px; }
.final-cta h2 .yellow { color: var(--yellow); }
.final-cta p { color: rgba(255,255,255,.92); margin-bottom: 26px; font-size: 15px; }
.final-cta .cta-row { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.final-cta .ghost-btn { background: transparent; color: #fff; border-color: #fff; }
.final-cta .ghost-btn:hover { background: rgba(255,255,255,.12); }
@media (max-width: 768px) { .final-cta h2 { font-size: 20px; } }
/* ════════════════════════════════════════
   下部追従バー（改善版）
   ════════════════════════════════════════ */
.fixed-bottom-buttons {
    position: fixed; bottom: 0; left: 0; width: 100%; z-index: 9998;
    background: rgba(255,255,255,.96); backdrop-filter: blur(6px);
    box-shadow: 0 -4px 16px rgba(0,0,0,.12);
    display: flex; gap: 12px; align-items: center; justify-content: center;
    padding: 10px 16px;
    border-top: 1px solid var(--line);
}
.fixed-bottom-buttons .fb-note { font-size: 12px; font-weight: 800; color: var(--green-d); display: none; }
.button-left, .button-right { display: inline-flex; flex-direction: column; align-items: center; justify-content: center; text-decoration: none; border-radius: 10px; font-weight: 900; line-height: 1.25; padding: 11px 22px; }
.button-left small, .button-right small { font-size: 10px; font-weight: 800; margin-bottom: 2px; opacity: .95; }
.button-left {
    background: #fff; color: var(--green-d); border: 2px solid var(--green);
    flex: 0 1 240px; font-size: 14px;
}
.button-left small { color: var(--orange); }
.button-right {
    background: linear-gradient(180deg, #ff8f3c, var(--orange)); color: #fff;
    box-shadow: 0 4px 0 var(--orange-d); flex: 0 1 300px; font-size: 16px;
    position: relative;
}
.button-right small { color: var(--yellow); }
.button-left:hover { background: var(--green-l); }
.button-right:hover { filter: brightness(1.05); }
@media (max-width: 768px) {
    .fixed-bottom-buttons { padding: 8px 10px; gap: 8px; }
    .button-left, .button-right { padding: 9px 10px; flex: 1 1 0; }
    .button-left { font-size: 12px; }
    .button-right { font-size: 14px; }
    .button-left small, .button-right small { font-size: 9px; }
}

/* ボディに追従バー分の余白 */
body { padding-bottom: 76px; }
@media (max-width: 768px) { body { padding-bottom: 66px; } }

/* ════════════════════════════════════════
   フッター
   ════════════════════════════════════════ */
.footer { background: var(--green-dd); color: #fff; text-align: center; padding: 34px 20px 40px; }
.footer-links { margin-bottom: 12px; }
.footer-links a { color: rgba(255,255,255,.9); text-decoration: none; margin: 0 14px; font-size: 14px; font-weight: 700; }
.footer-links a:hover { color: var(--yellow); }
.footer p { color: rgba(255,255,255,.6); font-size: 12px; }


/* ════════════════════════════════════════
   99. 未使用スタイル
   現HTMLに該当要素がないルール。JSからの動的参照や
   他ページでの流用がないことを確認できたら削除可。
   （※ .p は基準の p と重複するため削除済み）
   ════════════════════════════════════════ */

.header {
    background: #fff;
    padding: 0;
}

.button-icon {
    margin-right: 6px;
}

.badge {
    display: inline-block;
    background: #3ca471;
    color: white;
    padding: 8px 16px;
    border-radius: 30px;
    font-weight: bold;
    margin-bottom: 16px;
    font-size: 16px;
}

.results-section {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.shop-image {
    float: left;
    width: 25%;
    margin-right: 2%;
}

.sales-result {
    margin-left: 27%;
    text-align: left;
}

.sales-result h3 {
    font-size: 2vw;
    color: #c22;
    margin-bottom: 10px;
}

.shop-info {
    padding: 10px;
    margin: 10px 0;
    clear: both;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
}

.info-label {
    display: inline-block;
    background-color: #2b9d47;
    color: white;
    padding: 3px 10px;
    margin-right: 10px;
    border-radius: 3px;
    font-size: 1vw;
}

.chart {
    margin: 30px 0;
    text-align: center;
}

.chart img {
    max-width: 100%;
    height: auto;
}

.graph {
    margin: 0;
    text-align: center;
    background-color: #fff;
}

.pc-point_banner {
    width: 70%;
    height: auto;
    display: flex;
    margin: 0 auto;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.point-section {
    position: relative;
    margin: 30px 0;
    display: flex;
    align-items: flex-end;
    flex-wrap: nowrap;
    background-color: #fff;
}

.point-section p {
    text-align: left;
    font-size: 1.2vw;
}

.point-box {
    border: 2px solid #2b9d47;
    border-radius: 15px;
    padding: 2vw;
    position: relative;
    flex: 1;
    min-height: 100%;
}

.point-label {
    position: absolute;
    top: -1.5vw;
    left: 2vw;
    background-color: white;
    padding: 0 10px;
    font-weight: bold;
    color: #2b9d47;
}

.result-banner,
.point-banner {
    width: 100%;
    height: auto;
    display: block;
}

.bottom-image {
    text-align: center;
    margin: 20px 0;
}

.clearfix::after {
    content: "";
    clear: both;
    display: table;
}

.franchise-lp {
    width: 100%;
    height: auto;
    display: block;
    margin-top: 0;
}

.placeholder-img {
    background-color: #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #a0a0a0;
    font-size: 16px;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.voice-header {
    text-align: center;
    margin-bottom: 30px;
}

.voice-header h2 {
    font-size: 24px;
    color: #008744;
    margin-bottom: 15px;
}

.voice-header .sub-title {
    font-size: 20px;
    color: #333;
}

.section-title {
    font-size: 22px;
    color: #00c362;
    font-weight: bold;
}

.reserve-btn {
    display: inline-block;
    background: #e03c8a;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: bold;
    font-size: 18px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(224, 60, 138, 0.3);
    width: 100%;
    text-align: center;
    margin: 0;
}

.reserve-btn:hover {
    background: #d02a78;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(224, 60, 138, 0.4);
}

.arrow {
    display: inline-block;
    margin-left: 10px;
    animation: moveArrow 1.5s infinite;
}

@keyframes moveArrow {
    0% {
        transform: translateX(0);
    }

    50% {
        transform: translateX(5px);
    }

    100% {
        transform: translateX(0);
    }
}

footer.cta {
    margin: 10px;
    padding: 10px 20px;
    background: #fff;
    color: #1a8b64;
    border: none;
    font-weight: bold;
    cursor: pointer;
}

/* .faq は display:flex のため以下の grid 指定は無効（元CSSから退避） */
.faq-item:nth-child(1) { grid-column: 1 / 2; grid-row: 1 / 2; }
.faq-item:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.faq-item:nth-child(3) { grid-column: 1 / 2; grid-row: 2 / 3; }
.faq-item:nth-child(4) { grid-column: 2 / 3; grid-row: 2 / 3; }
.faq-item:nth-child(5) { grid-column: 1 / 3; grid-row: 3 / 4; }

@media screen and (max-width: 768px) {
    .results-section { padding: 15px; max-width: 95%; }
    .shop-image-container { float: none; width: 60%; margin: 0 auto 15px auto; }
    .sales-result { margin-left: 0; width: 100%; text-align: center; }
    .sales-result h3 { font-size: 24px; }
    .shop-info { flex-direction: column; align-items: flex-start; gap: 8px; }
    .info-item { flex-basis: 100%; justify-content: flex-start; }
    .info-label { font-size: 13px; }
    .point-section { padding: 15px; max-width: 95%; }
    .point-box { padding: 25px 15px 15px 15px; min-height: auto; flex-basis: 100%; }
    .point-label { font-size: 15px; left: 15px; top: -12px; }
    .point-section p { font-size: 14px; }
    .badge { font-size: 14px; padding: 6px 12px; }
    .interview-section-title { font-size: 24px; }
}

@media screen and (max-width: 480px) {
    .sales-result h3 { font-size: 20px; }
    .info-label { font-size: 12px; }
    .point-label { font-size: 14px; }
    .point-section p { font-size: 13px; }
    .interview-section-title { font-size: 22px; }
    .pc-point_banner { display: block; width: 100%; height: auto; overflow: hidden; image-rendering: auto; }
}