/*
Theme Name: Lightning Child
Theme URI: 
Template: lightning
Description: 
Author: 
Tags: 
Version: 0.6.0
*/
/* ============================================================
   lynks-design-tokens.css
   リンクス保健師事務所 — デザイン抜粋スタイル
   抽出カテゴリ: font / color / card / background / 番号付きリスト
   ============================================================ */


/* ────────────────────────────────────────────────
   1. CSS変数（色・フォント共通定義）
   ──────────────────────────────────────────────── */
:root {
  /* Color */
  --background-color: #fff;
  --primary-color: #0181ff;
  --accent-color: #FD81B2;
  --text: #1a1a1a;
  --text-muted: #666;
  --surface: rgba(0, 0, 0, 0.03);
  --surface-hover: rgba(0, 0, 0, 0.05);
  --border: rgba(0, 0, 0, 0.09);
  --primary-glow: rgba(1, 129, 255, 0.15);
  --accent-glow: rgba(253, 129, 178, 0.15);

  /* Font */
  --font-ja: 'Noto Sans JP', '游ゴシック', 'Yu Gothic', 'YuGothic', sans-serif;
  --font-display: 'Shippori Mincho B1', '游明朝', 'Yu Mincho', serif;
}


/* ────────────────────────────────────────────────
   2. FONT — フォント関連
   ──────────────────────────────────────────────── */

/* 基本テキスト */
body {
  font-family: var(--font-ja);
  font-weight: 300;
  line-height: 1.8;
}

/* ナビゲーション */
.nav-logo {
  font-family: var(--font-display);
  font-size: 1.1rem;
  letter-spacing: .1em;
}

.nav-links {
  font-size: .82rem;
  letter-spacing: .12em;
}

.nav-cta {
  font-size: .8rem;
  letter-spacing: .1em;
}

/* ヒーロー */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;

  font-size: .78rem;
  letter-spacing: .25em;
}

.hero-eyebrow::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--primary-color);
}


.hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .04em;
}

.hero-sub {
  font-size: .95rem;
  line-height: 2;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp .8s .8s forwards;
}

/* ボタン */
.btn-primary {
  font-size: .9rem;
  letter-spacing: .1em;
}

.btn-outline {
  font-size: .85rem;
  letter-spacing: .1em;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255, 255, 255, .15), transparent);
}

/* セクション共通 */
.section-label {
  font-size: .75rem;
  letter-spacing: .3em;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: .04em;
}

.section-desc {
  font-size: .92rem;
  line-height: 2;
}

/* 実績数字カード */
.stat-card .num {
  font-family: var(--font-display);
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1;
}

.stat-card .label {
  font-size: .72rem;
  letter-spacing: .12em;
}

/* お悩みリスト */
.pain-item {
  font-size: .9rem;
  line-height: 1.7;
}

.pain-circle-text .num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.pain-circle-text .sub {
  font-size: .8rem;
  letter-spacing: .15em;
}

/* 強み */
.strength-num {
  font-family: var(--font-display);
  font-size: 4rem;
  font-weight: 800;
  line-height: 1;
}

.strength-title {
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: .03em;
}

.strength-desc {
  font-size: .85rem;
  line-height: 2;
}

/* サービス */
.service-num {
  font-family: var(--font-display);
  font-size: .78rem;
  letter-spacing: .2em;
}

.service-title {
  font-size: 1.08rem;
  font-weight: 500;
  line-height: 1.5;
}

.service-desc {
  font-size: .84rem;
  line-height: 2;
}

/* 代表あいさつ */
.profile-quote {
  font-size: .95rem;
  line-height: 2.1;
}

.s-word {
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .1em;
}

.s-word .s-tooltip {
  font-size: .72rem;
  letter-spacing: .12em;
}

.s-concept-phrase {
  font-size: .88rem;
  line-height: 1.9;
}

.s-heading {
  font-size: .75rem;
  letter-spacing: .25em;
}

.profile-greeting {
  font-size: .88rem;
  line-height: 2;
}

.profile-name {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
}

.profile-role {
  font-size: .78rem;
  letter-spacing: .15em;
}

.profile-item-label {
  font-size: .72rem;
  letter-spacing: .2em;
}

.profile-item-content {
  font-size: .85rem;
  line-height: 1.9;
}

.cert-badge {
  font-size: .74rem;
}

/* 対応エリア */
.area-card-title {
  font-size: .88rem;
  font-weight: 500;
}

.area-card-desc {
  font-size: .82rem;
  line-height: 1.9;
}

.area-map-label .prefecture {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 600;
}

.area-map-label .city {
  font-size: .8rem;
  letter-spacing: .3em;
}

/* フッター */
.footer-logo {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: .08em;
}

.footer-copy {
  font-size: .75rem;
  letter-spacing: .1em;
}


/* ────────────────────────────────────────────────
   3. COLOR — 色関連
   ──────────────────────────────────────────────── */

body {
  color: var(--text);
}

/* ナビ */
.nav-logo {
  color: #111;
}

.nav-links {
  color: var(--text-muted);
}

.nav-links a:hover {
  color: #111;
}

.nav-cta {
  color: #fff;
}

.nav-cta:hover {
  background: #1a90ff;
}

/* ヒーロー */
.hero-eyebrow {
  color: var(--primary-color);
}

.hero-title em {
  color: var(--accent-color);
}

.hero-sub {
  color: var(--text-muted);
}

.hero-sub strong {
  color: #aaa;
}

.btn-primary {
  color: #fff;
}

.btn-outline {
  color: var(--text-muted);
}

.btn-outline:hover {
  color: #111;
}

/* 実績数字カード */
.stat-card .num {
  color: var(--primary-color);
}

.stat-card .label {
  color: #888;
}

/* セクション共通 */
.section-label {
  color: var(--primary-color);
}

.section-desc {
  color: var(--text-muted);
}

/* お悩みリスト */
.pain-item::before {
  color: var(--accent-color);
}

.pain-circle-text .num {
  color: var(--accent-color);
}

.pain-circle-text .sub {
  color: var(--text-muted);
}

/* 強み */
.strength-num {
  color: rgba(1, 129, 255, .1);
}

.strength-card:hover .strength-num {
  color: rgba(1, 129, 255, .2);
}

.strength-title {
  color: #111;
}

.strength-desc {
  color: #777;
}

/* サービス */
.service-num {
  color: var(--primary-color);
}

.service-title {
  color: #111;
}

.service-desc {
  color: var(--text-muted);
}

/* 代表あいさつ */
.profile-quote {
  color: #444;
}

.s-word {
  color: var(--primary-color);
}

.s-word .s-tooltip {
  color: #fff;
  background: #111;
}

.s-concept-phrase {
  color: #555;
}

.s-heading {
  color: var(--primary-color);
}

.profile-greeting {
  color: #555;
}

.profile-name {
  color: #111;
}

.profile-role {
  color: var(--text-muted);
}

.profile-item-label {
  color: var(--primary-color);
}

.profile-item-content {
  color: #555;
}

.cert-badge {
  color: #444;
}

/* 料金・フロー */
.flow-num {
  color: var(--primary-color);
}

.flow-title {
  color: #111;
}

.flow-free {
  color: var(--accent-color);
}

.flow-desc {
  color: var(--text-muted);
}

/* FAQ */
.faq-q-text {
  color: #333;
}

.faq-q-text::before {
  color: var(--primary-color);
}

.faq-toggle {
  color: var(--text-muted);
}

.faq-item.open .faq-toggle {
  color: var(--primary-color);
}

.faq-a-inner {
  color: var(--text-muted);
}

/* 対応エリア */
.area-card-title {
  color: #111;
}

.area-card-desc {
  color: var(--text-muted);
}

.area-map-label .prefecture {
  color: #111;
}

.area-map-label .city {
  color: var(--primary-color);
}

/* お問合せ・フッター */
.contact-sub {
  color: var(--text-muted);
}

.footer-logo {
  color: #111;
}

.footer-copy {
  color: var(--text-muted);
}


/* ────────────────────────────────────────────────
   4. CARD — カード関連
   ──────────────────────────────────────────────── */

/* 実績カード（ヒーロー内） */
.stat-card {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid rgba(1, 129, 255, .15);
  border-radius: 16px;
  padding: 20px 28px;
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 24px rgba(1, 129, 255, .08);
  text-align: center;
}

/* お悩みアイテム（カード状） */
.pain-item {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 18px 22px;
  transition: all .25s;
}

.pain-item:hover {
  background: var(--surface-hover);
  border-color: rgba(253, 129, 178, .2);
}

/* 強みカード */
.strengths-grid {
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 20px;
  overflow: hidden;
}

.strength-card {
  background: #fff;
  padding: 3rem 2.5rem;
  transition: background .3s;
}

.strength-card:hover {
  background: #f5f9ff;
}

/* サービスカード */
.service-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 2.8rem 2.2rem;
  transition: all .3s;
}

.service-card:hover {
  border-color: rgba(1, 129, 255, .25);
  box-shadow: 0 20px 50px rgba(1, 129, 255, .1);
}

/* プロフィールカード */
.profile-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 24px;
  overflow: hidden;
}

.profile-card-header {
  background: linear-gradient(135deg, rgba(1, 129, 255, .08), rgba(253, 129, 178, .06));
  padding: 2.5rem;
  border-bottom: 1px solid var(--border);
  text-align: center;
}

.profile-avatar {
  background: linear-gradient(135deg, rgba(1, 129, 255, .15), rgba(253, 129, 178, .15));
  border: 2px solid var(--border);
  border-radius: 50%;
}

.profile-card-body {
  padding: 2rem 2.5rem;
}

.cert-badge {
  background: #f0f4ff;
  border: 1px solid rgba(1, 129, 255, .15);
  border-radius: 6px;
  padding: 4px 12px;
}

/* 料金メモカード */
.price-note {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 2rem;
}

/* 対応エリアカード */
.area-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.8rem 2rem;
}

.area-map-box {
  background: #f0f6ff;
  border: 1px solid rgba(1, 129, 255, .15);
  border-radius: 24px;
}


/* ────────────────────────────────────────────────
   5. BACKGROUND — 背景関連
   ──────────────────────────────────────────────── */

body {
  background: var(--background-color);
  /* #fff */
}

/* ナビ */
nav {
  background: rgba(255, 255, 255, 0.85);
}

/* ヒーロー */
.hero-bg {
  background:
    radial-gradient(ellipse 70% 60% at 70% 50%, rgba(1, 129, 255, .07) 0%, transparent 60%),
    radial-gradient(ellipse 50% 60% at 20% 80%, rgba(253, 129, 178, .05) 0%, transparent 50%),
    linear-gradient(170deg, #f8fbff 0%, #fff 50%, #fff 100%);
}

/* お悩みセクション */
.pain {
  background:
    radial-gradient(ellipse 60% 80% at 10% 50%, rgba(253, 129, 178, .06) 0%, transparent 60%),
    #f9f9f9;
}

/* サービスセクション */
.services {
  background: #f4f8ff;
}

/* フローセクション */
.flow {
  background: #f9f9f9;
}

/* 対応エリアセクション */
.area {
  background: #fff;
}

.area-map-bg {
  background: radial-gradient(ellipse 60% 60% at 40% 40%, rgba(1, 129, 255, .08) 0%, transparent 70%);
}

/* お問合せCTA */
.contact-cta {
  background:
    radial-gradient(ellipse 80% 100% at 50% 50%, rgba(1, 129, 255, .06) 0%, transparent 70%),
    #f4f8ff;
}

/* ボタン */
.btn-primary {
  background: var(--primary-color);
}

.nav-cta {
  background: var(--primary-color);
}

/* アイコン背景 */
.service-icon {
  background: rgba(1, 129, 255, .1);
}

.area-card-icon.visit {
  background: rgba(1, 129, 255, .1);
}

.area-card-icon.online {
  background: rgba(253, 129, 178, .1);
}

.pain-item::before {
  background: rgba(253, 129, 178, .12);
}


/* ────────────────────────────────────────────────
   6. 番号付きリスト — 契約の流れ（.flow-step）
   ──────────────────────────────────────────────── */

.flow-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.flow-step {
  display: flex;
  gap: 2rem;
  padding: 2rem 0;
  position: relative;
}

/* ステップ間の縦線 */
.flow-step:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 22px;
  top: 72px;
  bottom: -8px;
  width: 1px;
  background: linear-gradient(180deg, var(--primary-color), transparent);
  opacity: .3;
}

/* 番号バッジ */
.flow-num {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(1, 129, 255, .1);
  border: 1px solid rgba(1, 129, 255, .3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: .95rem;
  font-weight: 600;
  color: var(--primary-color);
}

/* テキスト */
.flow-content {
  padding-top: 10px;
}

.flow-title {
  font-size: 1rem;
  font-weight: 500;
  color: #111;
  margin-bottom: .4rem;
}

/* 「無料」バッジ */
.flow-free {
  display: inline-block;
  font-size: .7rem;
  padding: 2px 10px;
  border-radius: 100px;
  background: rgba(253, 129, 178, .15);
  color: var(--accent-color);
  border: 1px solid rgba(253, 129, 178, .2);
  margin-left: 8px;
  vertical-align: middle;
}

.flow-desc {
  font-size: .85rem;
  color: var(--text-muted);
  line-height: 1.8;
}