/* ============================================================================
   care.html 専用スタイル（v0.9.13j-fix121 で support.html → care.html リネーム）
   v0.9.13j-fix119（2026-06-01）: inline <style> 外部 CSS 化（R4 案 X 6 ページ目、堅牢性最優先）
   v0.9.13j-fix120（2026-06-01）: L752 「pricing/about/faq/blog」→「pricing/about/faq/media」へ blog→media リネーム反映
   v0.9.13j-fix121（2026-06-01）: support.html → care.html リネーム + support.css → care.css リネーム
   読込順: cookie-consent → variables → base → style → home → page-hero → care
   ============================================================================ */

/* care.html 固有スタイル — pricing.html / contact.html / index.html / style.css のトークン体系に準拠 */

/* LP 専用 scroll-snap-type を無効化 */
html { scroll-snap-type: none !important; }
section { scroll-snap-align: none !important; scroll-snap-stop: normal !important; }

/* 2026-06-17 平田氏指示: hero を about と統一。about は body padding-top 指定なし＝共有 0 のため、旧 desktop/tablet 80px を撤去し全幅で 0 に揃える（hero のヘッダークリアは page-hero.css の padding-top:124px が担う）。mobile は元々 0 で不変 */

/* HERO + breadcrumb は assets/css/page-hero.css の共通テンプレートに統一（v0.9.13c 2026-05-06） */

/* ==== Section 共通 ==== */
.care-section { padding: 80px 0; }
.care-section.alt-bg { background: var(--c-bg-mist, #F4F7F7); }
/* 2026-06-11: モバイル上下 padding を TOP の 30px に統一（従来 80px のままで TOP より広かった）。左右は container 経由で 40px インセット＝TOP と一致済み */
@media (max-width: 767px) { .care-section { padding-top: 30px; padding-bottom: 30px; } }
  /* v0.9.13j-fix116: セクション内 eyebrow override 削除（home.css base .eyebrow + body.pd-b10 override 統一規約に移譲） */
.care-section > .container > h2 {
  text-align: center;
  font-size: var(--fs-t7, clamp(24px, 4vw, 36px));
  font-weight: 500; margin: 0 0 16px;
  color: var(--c-text-sumi, #333); letter-spacing: 0.04em;
}
.care-section > .container > .section-lead {
  text-align: center;
  color: var(--muted, #555);
  font-size: var(--fs-t3, 14px);
  margin: 0 0 48px;
  max-width: 720px;
  margin-left: auto; margin-right: auto;
}
/* 2026-06-12: モバイルのセクション見出し（h2・リード）を about の左揃えに統一。desktop は中央寄せ凍結 */
@media (max-width: 767px) {
  .care-section > .container > h2,
  .care-section > .container > .section-lead { text-align: left; }
}

/* ==== 1. サービスに含まれるもの（左スマホ + 右 8 ボックス） ==== */
.includes-row {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 56px;
  max-width: none;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 1023px) { .includes-row { grid-template-columns: 1fr; gap: 40px; } }

/* スマホフレーム（CSS で描画、画面内に App UI モック） */
.includes-phone {
  position: relative;
  margin: 0 auto;
  width: 280px; height: 568px;
  background: #1a1a1a;
  border-radius: 36px;
  padding: 12px 10px;
  box-shadow:
    0 20px 60px rgba(47, 93, 98, 0.18),
    0 8px 20px rgba(0, 0, 0, 0.08),
    inset 0 0 0 2px rgba(255, 255, 255, 0.08);
}
.includes-phone::before {
  /* ノッチ */
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 96px; height: 22px;
  background: #1a1a1a;
  border-radius: 0 0 14px 14px;
  z-index: 2;
}
.includes-phone-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f5fafa 0%, var(--c-brand-white, #FAFAFA) 60%);
  border-radius: 26px;
  overflow: hidden;
  display: flex; flex-direction: column;
  padding: 36px 18px 18px;
}
.phone-app-header {
  display: flex; align-items: center; gap: 8px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--section-border, #e8eced);
}
.phone-app-logo {
  width: 28px; height: 28px;
  background: linear-gradient(135deg, var(--turquoise-400, #57C3C2), var(--ocean-500, #2F5D62));
  border-radius: 8px;
}
.phone-app-title {
  font-size: 11px; color: var(--c-sub-deep-ocean, #2F5D62);
  font-weight: 600; letter-spacing: 0.04em;
}
.phone-app-body {
  flex: 1; display: flex; flex-direction: column;
  gap: 10px; padding-top: 14px;
}
.phone-app-row {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 12px;
  background: rgba(87, 195, 194, 0.06);
  border-radius: 8px;
}
.phone-app-icon {
  width: 28px; height: 28px;
  background: rgba(87, 195, 194, 0.18);
  border-radius: 6px;
  display: flex; align-items: center; justify-content: center;
  color: var(--turquoise-400, #57C3C2);
}
.phone-app-icon svg { width: 14px; height: 14px; stroke-width: 1.8; }
.phone-app-text {
  flex: 1; display: flex; flex-direction: column; gap: 4px;
}
.phone-app-line {
  height: 6px; border-radius: 3px;
  background: linear-gradient(90deg, var(--turquoise-300, #88D6D6), var(--c-bg-mist, #F4F7F7));
}
.phone-app-line.short { width: 60%; }

/* 2026-06-11: mobile(≤767px) のみスマホ画面内に 8 項目を縦並び表示。
   desktop は左スマホ mock（.phone-mock）＋右グリッドのまま不変。.phone-app-list は既定で非表示。 */
.phone-app-list { display: none; }
.phone-app-item {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 11px;
  background: rgba(87, 195, 194, 0.08);
  border-radius: 8px;
}
.phone-app-item .pa-ic {
  width: 26px; height: 26px; flex-shrink: 0;
  display: flex; align-items: center; justify-content: center;
  background: rgba(87, 195, 194, 0.16);
  border-radius: 6px;
  color: var(--turquoise-400, #57C3C2);
}
.phone-app-item .pa-ic svg { width: 15px; height: 15px; stroke-width: 1.8; }
.phone-app-item .pa-nm {
  font-size: 12px; font-weight: 500;
  color: var(--c-sub-deep-ocean, #2F5D62);
  letter-spacing: 0.03em;
}

/* 右側 8 ボックス grid */
.includes-grid {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  text-align: left;
}
@media (max-width: 767px) {
  /* 2026-06-11 平田氏指示: mobile はスマホ画面内に 8 項目を表示。右グリッドと抽象モック4行を隠し、
     8 項目リスト（.phone-app-list）を表示。スマホ画面の余白も 8 項目用に調整。 */
  .includes-grid { display: none; }
  .phone-mock { display: none; }
  .phone-app-list { display: flex; flex: 1; flex-direction: column; gap: 7px; padding-top: 12px; }
  .includes-phone-screen { padding: 30px 14px 16px; }
}

.include-card {
  position: relative;
  padding: 22px 18px 20px;
  background: var(--c-brand-white, #FAFAFA);
  border: 1px solid var(--section-border, #e8eced);
  border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-sm, 0 2px 5px rgba(0, 0, 0, 0.05));
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.include-card::before {
  /* hover 時に下から turquoise グラデが立ち上がる */
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 0%, rgba(87, 195, 194, 0.08) 100%);
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}
.include-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-turquoise-soft, 0 6px 18px rgba(87, 195, 194, 0.25));
}
.include-card:hover::before { opacity: 1; }
.include-card:hover .include-icon { transform: scale(1.08); }
.include-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 40px; height: 40px;
  background: rgba(87, 195, 194, 0.12);
  border-radius: 50%;
  margin-bottom: 12px;
  color: var(--turquoise-400, #57C3C2);
  transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
  position: relative; z-index: 1;
}
.include-icon svg { width: 20px; height: 20px; stroke-width: 1.6; }
.include-name {
  position: relative; z-index: 1;
  font-family: var(--font-serif-jp);
  font-size: var(--fs-t3, 14px);
  font-weight: 500;
  color: var(--c-sub-deep-ocean, #2F5D62);
  letter-spacing: 0.04em;
  margin: 0;
  line-height: 1.5;
}

/* ==== 1.5 8 ボックス下: 体験トレーニング料金 + CTA（Sticky CTA 起点） ==== */
.includes-cta-block {
  margin: 64px auto 0;
  max-width: 720px;
  text-align: center;
  padding: 40px 28px;
  background: linear-gradient(135deg, var(--c-brand-white, #FAFAFA) 0%, var(--c-bg-mint, #E8F5F5) 100%);
  border: 1px solid var(--turquoise-400, #57C3C2);
  border-radius: var(--radius-card, 16px);
  box-shadow: var(--shadow-card-soft, 0 4px 16px rgba(47, 93, 98, 0.08));
}
.includes-cta-label {
  font-size: var(--fs-t3, 14px);
  color: var(--ocean-500, #2F5D62);
  letter-spacing: 0.06em;
  margin: 0 0 16px;
}
.includes-cta-price {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  margin-bottom: 24px;
}
.includes-cta-price .price-amount {
  font-family: var(--font-serif-en, 'Cormorant Garamond', serif);
  font-size: clamp(48px, 7vw, 64px);
  font-weight: 500;
  color: var(--ocean-500, #2F5D62);
  line-height: 1;
  letter-spacing: -0.02em;
}
.includes-cta-price .price-meta {
  font-size: var(--fs-t3, 14px);
  color: var(--c-text-gray, #555);
  letter-spacing: 0.04em;
}
.includes-cta-note {
  font-size: 11px;
  color: var(--muted, #555);
  margin: 16px 0 0;
}
.includes-cta-link {
  text-align: right;
  margin: 6px 0 0;
}
.includes-cta-link a {
  font-size: 12px;
  color: var(--c-sub-deep-ocean, #2F5D62);
  letter-spacing: 0.04em;
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: color 0.25s;
}
.includes-cta-link a:hover {
  color: var(--turquoise-400, #57C3C2);
}
@media (max-width: 767px) {
  .includes-cta-block { margin-top: 48px; padding: 32px 20px; }
}

/* ==== 2. サービスの利点（やる + やらない 対比構成） ==== */
.benefits-block-title {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-t5, 20px);
  font-weight: 500;
  text-align: center;
  margin: 0 0 28px;
  letter-spacing: 0.06em;
  position: relative;
  display: inline-block;
  padding: 0 20px;
}
.benefits-block-title-wrap {
  text-align: center;
  margin-bottom: 28px;
}
.benefits-block-title.do {
  color: var(--c-sub-deep-ocean, #2F5D62);
}
.benefits-block-title.do::before,
.benefits-block-title.do::after {
  content: '';
  position: absolute;
  top: 50%; width: 28px; height: 1px;
  background: var(--turquoise-400, #57C3C2);
}
.benefits-block-title.do::before { right: 100%; }
.benefits-block-title.do::after  { left: 100%; }

.benefits-block-title.dont {
  color: var(--copper-500, #C87A56);
}
.benefits-block-title.dont::before,
.benefits-block-title.dont::after {
  content: '';
  position: absolute;
  top: 50%; width: 28px; height: 1px;
  background: var(--copper-500, #C87A56);
  opacity: 0.5;
}
.benefits-block-title.dont::before { right: 100%; }
.benefits-block-title.dont::after  { left: 100%; }

.benefits-list {
  list-style: none; padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: none;
  margin: 0 auto;
  text-align: left;
}
@media (max-width: 1023px) { .benefits-list { grid-template-columns: 1fr; gap: 16px; } }

.benefits-divider {
  display: block;
  width: 60px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-border-color, #DEE2E6), transparent);
  margin: 64px auto 56px;
}

/* やる項目（do）= turquoise 系 */
.benefit-block.do {
  position: relative;
  padding: 36px 28px 28px;
  background: linear-gradient(180deg, var(--c-brand-white, #FAFAFA) 0%, var(--c-bg-mint, #E8F5F5) 100%);
  border-radius: var(--radius-md, 12px);
  border-top: 3px solid var(--turquoise-400, #57C3C2);
  box-shadow: var(--shadow-sm, 0 2px 5px rgba(0, 0, 0, 0.05));
  transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.benefit-block.do:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-glow-turquoise-soft, 0 6px 18px rgba(87, 195, 194, 0.25));
}
.benefit-block.do .benefit-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--turquoise-400, #57C3C2);
  color: #fff;
  border-radius: 50%;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
}
.benefit-block.do .benefit-mark svg { width: 18px; height: 18px; stroke-width: 2.5; }
.benefit-block.do h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-t5, 20px);
  color: var(--c-sub-deep-ocean, #2F5D62);
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.benefit-block.do p {
  font-size: var(--fs-t3, 14px);
  color: var(--c-text-body, #555);
  line-height: 1.8;
  margin: 0;
}

/* A#2 (2026-06-19): 利点の各説明 冒頭の「言い切り」一文（一言→説明）。do/dont 共通・ブランド黒 */
.benefit-block .benefit-lead {
  display: block;
  font-weight: 700;
  color: var(--c-brand-black, #333);
  margin: 0 0 6px;
}

/* やらない項目（dont）= copper 系 + 取り消し線アクセント */
.benefit-block.dont {
  position: relative;
  padding: 36px 28px 28px;
  background: var(--c-brand-white, #FAFAFA);
  border: 1px solid var(--section-border, #e8eced);
  border-top: 3px solid var(--copper-500, #C87A56);
  border-radius: var(--radius-md, 12px);
  box-shadow: var(--shadow-sm, 0 2px 5px rgba(0, 0, 0, 0.05));
  transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.benefit-block.dont:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 18px rgba(200, 122, 86, 0.18);
}
.benefit-block.dont .benefit-mark {
  display: inline-flex; align-items: center; justify-content: center;
  width: 36px; height: 36px;
  background: var(--copper-500, #C87A56);
  color: #fff;
  border-radius: 50%;
  margin: 0 0 14px;
  font-size: 18px;
  font-weight: 600;
}
.benefit-block.dont .benefit-mark svg { width: 18px; height: 18px; stroke-width: 2.5; }
.benefit-block.dont h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-t5, 20px);
  color: var(--copper-500, #C87A56);
  font-weight: 600;
  margin: 0 0 12px;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-decoration: line-through;
  text-decoration-color: rgba(200, 122, 86, 0.45);
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}
.benefit-block.dont p {
  font-size: var(--fs-t3, 14px);
  color: var(--c-text-body, #555);
  line-height: 1.8;
  margin: 0;
}

/* ==== 3. 機能紹介（縦並び 2 カード、性格診断 → 防災手帳、左右スプリット） ==== */
.features-grid {
  display: flex;
  flex-direction: column;
  gap: 32px;
  max-width: none;
  margin: 0 auto;
}

.feature-card {
  background: var(--c-brand-white, #FAFAFA);
  border: 1px solid var(--section-border, #e8eced);
  border-radius: var(--radius-md, 12px);
  padding: 0;
  display: grid;
  grid-template-columns: 5fr 6fr;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              box-shadow 0.4s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
@media (max-width: 767px) { .feature-card { grid-template-columns: 1fr; } }
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-glow-turquoise, 0 8px 24px rgba(87, 195, 194, 0.15));
}
.feature-card-visual {
  position: relative;
  min-height: 320px;
  background: linear-gradient(135deg, var(--c-bg-mint, #E8F5F5) 0%, var(--turquoise-50, #edf8f8) 100%);
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
}
@media (max-width: 767px) { .feature-card-visual { min-height: 260px; } }
.feature-card-body {
  padding: 36px 36px;
  display: flex; flex-direction: column;
  justify-content: center;
}
@media (max-width: 767px) {
  .feature-card-body { padding: 28px 24px; text-align: center; }
  .feature-card-body .feature-cta { margin-left: auto; margin-right: auto; }
}

/* 性格診断: 犬モザイク（4 枚タイル） + スマホ画面サンプル オーバーレイ */
.feature-dog-mosaic {
  position: absolute; inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 4px;
  padding: 4px;
}
.feature-dog-mosaic > div {
  background-size: cover; background-position: center;
  border-radius: 6px;
  filter: saturate(1.05);
}
.feature-dog-mosaic > div:nth-child(1) { background-image: url('https://placedog.net/640/640?id=12'); }
.feature-dog-mosaic > div:nth-child(2) { background-image: url('https://placedog.net/640/640?id=45'); }
.feature-dog-mosaic > div:nth-child(3) { background-image: url('https://placedog.net/640/640?id=87'); }
.feature-dog-mosaic > div:nth-child(4) { background-image: url('https://placedog.net/640/640?id=128'); }
.feature-dog-mosaic::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(47, 93, 98, 0.05) 0%, rgba(47, 93, 98, 0.35) 100%);
  pointer-events: none;
}

/* 性格診断: スマホ画面ミニ */
.feature-phone-mini {
  position: absolute;
  bottom: 16px; right: 20px;
  width: 90px; height: 160px;
  background: #1a1a1a;
  border-radius: 14px;
  padding: 5px 4px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.32);
  z-index: 2;
  transition: transform 0.5s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.feature-card:hover .feature-phone-mini { transform: translateY(-4px) rotate(-2deg); }
.feature-phone-mini-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, #f5fafa 0%, var(--c-brand-white, #FAFAFA) 50%);
  border-radius: 10px;
  padding: 14px 8px 8px;
  display: flex; flex-direction: column; gap: 4px;
}
.feature-phone-mini-bar {
  height: 5px; border-radius: 3px;
  background: linear-gradient(90deg, var(--turquoise-300, #88D6D6), var(--c-bg-mist, #F4F7F7));
}
.feature-phone-mini-bar.short { width: 60%; }
.feature-phone-mini-tag {
  margin-top: 6px;
  font-size: 7px;
  color: var(--turquoise-400, #57C3C2);
  background: rgba(87, 195, 194, 0.10);
  padding: 3px 6px;
  border-radius: 4px;
  letter-spacing: 0.04em;
  align-self: flex-start;
}

/* 防災手帳: スマホ画面が中央に大きく */
.feature-phone-large {
  width: 200px; height: 320px;
  background: #1a1a1a;
  border-radius: 24px;
  padding: 8px 6px;
  box-shadow: 0 18px 40px rgba(47, 93, 98, 0.18);
  z-index: 2;
  position: relative;
  transition: transform 0.5s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
.feature-card:hover .feature-phone-large { transform: translateY(-4px) scale(1.02); }
.feature-phone-large-screen {
  width: 100%; height: 100%;
  background: linear-gradient(180deg, var(--c-brand-white, #FAFAFA) 0%, #f5fafa 100%);
  border-radius: 18px;
  padding: 16px 12px 12px;
  display: flex; flex-direction: column; gap: 8px;
}
.feature-phone-large-header {
  display: flex; align-items: center; gap: 6px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--section-border, #e8eced);
}
.feature-phone-large-title {
  font-size: 9px;
  font-weight: 600;
  color: var(--copper-500, #C87A56);
  letter-spacing: 0.04em;
}
.feature-phone-large-row {
  display: flex; align-items: center; gap: 6px;
  padding: 6px 8px;
  background: rgba(200, 122, 86, 0.06);
  border-radius: 6px;
}
.feature-phone-large-row .row-label {
  font-size: 8px;
  color: var(--c-text-gray, #555);
  width: 50px;
}
.feature-phone-large-row .row-value {
  font-size: 9px;
  color: var(--c-text-sumi, #333);
  font-weight: 500;
  flex: 1;
}
.feature-card.featured {
  border-color: var(--turquoise-400, #57C3C2);
  border-width: 2px;
  box-shadow: var(--shadow-glow-turquoise, 0 8px 24px rgba(87, 195, 194, 0.15));
}
.feature-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 64px; height: 64px;
  background: rgba(87, 195, 194, 0.12);
  border-radius: 50%;
  color: var(--turquoise-400, #57C3C2);
  margin: 0 auto 18px;
}
.feature-icon svg { width: 30px; height: 30px; stroke-width: 1.6; }
.feature-card h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-t6, clamp(20px, 2.4vw, 26px));
  color: var(--c-sub-deep-ocean, #2F5D62);
  font-weight: 600;
  margin: 0 0 12px;
  letter-spacing: 0.04em;
}
.feature-lead {
  font-size: var(--fs-t3, 14px);
  color: var(--c-text-body, #555);
  line-height: 1.9; margin: 0 0 24px;
}
.feature-list { list-style: none; padding: 0; margin: 0 0 24px; text-align: left; }
.feature-list li {
  font-size: 13px; color: var(--c-text-sumi, #333);
  line-height: 1.8; padding: 7px 0 7px 24px;
  position: relative;
  border-bottom: 1px solid var(--c-border-light, #E9ECEF);
}
.feature-list li:last-child { border-bottom: 0; }
.feature-list li::before {
  content: '✓';
  position: absolute;
  left: 0; top: 7px;
  color: var(--turquoise-400, #57C3C2);
  font-weight: 600;
}
.feature-cta {
  margin: auto auto 0;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px;
  background: var(--c-brand-white, #FAFAFA);
  color: var(--ocean-500, #2F5D62);
  border: 1px solid var(--turquoise-400, #57C3C2);
  border-radius: var(--radius-pill, 999px);
  font-size: var(--fs-t3, 14px); letter-spacing: 0.08em;
  text-decoration: none;
  transition: background 0.25s, color 0.25s, box-shadow 0.25s;
}
.feature-cta:hover {
  background: var(--turquoise-400, #57C3C2);
  color: #fff;
  box-shadow: var(--shadow-glow-turquoise-soft, 0 6px 18px rgba(87, 195, 194, 0.25));
}
.feature-note {
  font-size: 11px; color: var(--muted, #555);
  line-height: 1.7; margin: 16px 0 0;
}

/* ==== 4. ご利用の流れ（pricing process-step パターン踏襲、5 ステップ横並び） ==== */
.flow-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  max-width: none;
  margin: 0 auto;
  position: relative;
}
.flow-steps::before {
  content: ""; position: absolute;
  top: 30px; left: 10%; right: 10%; height: 2px;
  background: var(--turquoise-400, #57C3C2);
  opacity: 0.4;
  z-index: 1;
}
@media (max-width: 1023px) {
  .flow-steps { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .flow-steps::before { display: none; }
}
@media (max-width: 767px) {
  .flow-steps { grid-template-columns: 1fr; overflow: hidden; }
  /* モバイル: 1→5 を貫く deep ocean⇔ターコイズの動く斜線（左上→右下）を 1 本だけ引き、不透明カードで目隠し。
     角度 --flow-angle は care.html の JS が「カード1左上→カード5右下」になるよう端末幅・テキスト折返し高に追従して自動計算（fallback -12.5deg ≒ 390px）。（desktop 不変） */
  .flow-steps::before {
    display: block;
    top: 30px; bottom: 30px; height: auto;
    left: 50%; right: auto; width: 3px;
    transform: translateX(-50%) rotate(var(--flow-angle, -12.5deg));
    transform-origin: center center;
    background: linear-gradient(180deg,
      var(--ocean-500, #2F5D62) 0%,
      var(--turquoise-400, #57C3C2) 50%,
      var(--ocean-500, #2F5D62) 100%);
    background-size: 100% 200%;
    border-radius: 2px;
    opacity: 0.95;
    z-index: 1;
    animation: flowGradientV 4s linear infinite;
  }
}
@keyframes flowGradientV {
  from { background-position: 50% 100%; }
  to   { background-position: 50% 0%; }
}
@media (prefers-reduced-motion: reduce) {
  .flow-steps::before { animation: none; }
}

.flow-step {
  background: var(--c-brand-white, #FAFAFA);
  border: 1px solid var(--section-border, #e8eced);
  border-radius: var(--radius-md, 12px);
  padding: 28px 18px 24px;
  text-align: center;
  position: relative;
  z-index: 2;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.flow-step:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md, 0 4px 10px rgba(0, 0, 0, 0.1));
}
.flow-num {
  width: 60px; height: 60px;
  background: var(--ocean-500, #2F5D62);
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif-en, serif);
  font-size: 22px; font-weight: 600;
  margin: 0 auto 14px;
  position: relative;
  z-index: 3;
}
.flow-body h3 {
  font-family: var(--font-serif-jp);
  font-size: var(--fs-t4, 16px);
  color: var(--ocean-500, #2F5D62);
  font-weight: 600;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.flow-body p {
  font-size: 12px; color: var(--c-text-body, #555);
  line-height: 1.8; margin: 0 0 8px;
}
.flow-meta {
  display: inline-block;
  font-size: 11px; color: var(--turquoise-400, #57C3C2);
  letter-spacing: 0.06em; font-weight: 500;
  margin-top: 4px;
}

/* ==== 5. フッター CTA: home.css `.home-cta-area` 共通クラスを使用（pricing/about/faq/media と同一、v0.9.13j-fix120 で blog→media リネーム反映）。
    独立した .care-cta CSS は v0.9.13j-fix2 で削除済、共通 CSS の伝搬を維持 ==== */

/* ==== A7 アクセシビリティ ==== */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* ==== 役割別レイアウト: 性格診断カード（CTA あり）= visual 右 ==== */
.feature-card.diagnosis {
  grid-template-columns: 6fr 5fr;
}
.feature-card.diagnosis .feature-card-visual { order: 2; }
.feature-card.diagnosis .feature-card-body { order: 1; }

@media (max-width: 767px) {
  .feature-card.diagnosis {
    grid-template-columns: 1fr;
  }
  .feature-card.diagnosis .feature-card-visual { order: 0; }
  .feature-card.diagnosis .feature-card-body { order: 1; }
}

/* ==== scroll-reveal（IntersectionObserver で is-revealed クラス付与） ==== */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1)),
              transform 0.9s var(--ease-out-expo, cubic-bezier(0.16, 1, 0.3, 1));
}
[data-reveal].is-revealed {
  opacity: 1;
  transform: translateY(0);
}
[data-reveal-delay="1"] { transition-delay: 0.1s; }
[data-reveal-delay="2"] { transition-delay: 0.2s; }
[data-reveal-delay="3"] { transition-delay: 0.3s; }
[data-reveal-delay="4"] { transition-delay: 0.4s; }
[data-reveal-delay="5"] { transition-delay: 0.5s; }
[data-reveal-delay="6"] { transition-delay: 0.6s; }
[data-reveal-delay="7"] { transition-delay: 0.7s; }
[data-reveal-delay="8"] { transition-delay: 0.8s; }
@media (prefers-reduced-motion: reduce) {
  [data-reveal] { opacity: 1 !important; transform: none !important; transition: none !important; }
  /* .home-cta-area::before の reduced-motion 制御は home.css 側で定義済 */
}

/* ===== 2026-06-17: tablet(768-1023px) 調整。TOP(index.html L708-718) の tablet 基準を再現＝本文セクションを flat 40px ガター＋上下 40px に統一（media/news と同型）。
   - .care-section .container を flat 40px（汎用 .container の home.css:1200 ≤1023 padding:0 32px + base max-width:90% を、.care-section .container=詳細度0,2,0 で上書き）。
   - .care-section 上下 padding を 40px（care.css:22 の 80px 0 を後勝ち上書き。mobile(≤767) は min-width:768 で除外＝care.css:25 の 30px が不変）。
   - HERO/breadcrumb の container は page-hero.css 共通＝既完了の about/contact と同じく shared 32px を据え置き。
   - 多列グリッド（includes-row/benefits-list/flow-steps）は既存 @media(≤1023) で 1 列化済（care.css:56/329/660）。eyebrow は home.css base で TOP 統一済。
   desktop(≥1024)・mobile(≤767) は一切不変。共有 home.css/style.css/page-hero.css は不変（care.css 内で完結）。 ===== */
@media (min-width: 768px) and (max-width: 1023px) {
  .care-section .container { max-width: none; padding: 0 40px; }
  .care-section { padding-top: 40px; padding-bottom: 40px; }

  /* 2026-06-17 平田氏指示: includes「サービスに含まれるもの」を tablet でも mobile 同様に（1台のスマホ内に実8項目）。
     care.css:159-166 の mobile ルールを tablet にも適用＝右8ボックス grid と抽象 mock を隠し、スマホ画面内の .phone-app-list（8項目）を表示。desktop は mock＋grid のまま不変 */
  .includes-grid { display: none; }
  .phone-mock { display: none; }
  .phone-app-list { display: flex; flex: 1; flex-direction: column; gap: 7px; padding-top: 12px; }
  .includes-phone-screen { padding: 30px 14px 16px; }

  /* 2026-06-17 平田氏指示: flow「ご利用の流れ」を tablet で mobile 同様の 1 列縦＋斜めコネクタ線に（旧 care.css:658-661 の 2 列＝2+2+1 でステップ5が孤立・線なしを是正）。
     コネクタは mobile と同じ斜線（カード1左上→カード5右下）。角度 --flow-angle は care.html の JS が実ジオメトリから算出（matchMedia を ≤1023 に拡張し tablet でも実行）。アニメは既存 @keyframes flowGradientV、reduced-motion は care.css:687 で停止済。flow-step は #FAFAFA 不透明＋z-index:2 で線を目隠し（mobile と同機構）。desktop は 5 列横並び不変 */
  .flow-steps { grid-template-columns: 1fr; }
  .flow-steps::before {
    display: block;
    top: 30px; bottom: 30px; height: auto;
    left: 50%; right: auto; width: 3px;
    transform: translateX(-50%) rotate(var(--flow-angle, -12.5deg));
    transform-origin: center center;
    background: linear-gradient(180deg,
      var(--ocean-500, #2F5D62) 0%,
      var(--turquoise-400, #57C3C2) 50%,
      var(--ocean-500, #2F5D62) 100%);
    background-size: 100% 200%;
    border-radius: 2px;
    opacity: 0.95;
    z-index: 1;
    animation: flowGradientV 4s linear infinite;
  }
}
