/* =========================================
   Life UP / ドクターズ・タイム  スタイル
   ========================================= */

:root {
  --navy:   #123a5e;
  --blue:   #1a6fb5;
  --blue-d: #155a93;
  --tint:   #f2f8fc;
  --tint-2: #eaf4fb;
  --ink:    #2c3e50;
  --ink-2:  #5b6b7a;
  --line:   #e4ebf1;
  --gold:   #c9a24a;
  --radius: 14px;
  --shadow: 0 10px 30px rgba(18, 58, 94, 0.08);
}

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

html { scroll-behavior: smooth; }

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: var(--ink);
  line-height: 1.9;
  background: #fff;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3 { font-family: "Noto Serif JP", "Yu Mincho", serif; line-height: 1.5; }

a { text-decoration: none; color: inherit; }

.container { width: 90%; max-width: 1080px; margin: 0 auto; }

.sp-only { display: none; }

strong { color: var(--blue-d); font-weight: 700; }

/* ===== ヘッダー ===== */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--line);
}
.header-inner { display: flex; justify-content: space-between; align-items: center; padding: 16px 0; }
.logo {
  font-family: "Noto Serif JP", serif;
  font-size: 22px; font-weight: 700; color: var(--navy); letter-spacing: .02em;
}
.logo span { font-size: 12px; color: var(--ink-2); margin-left: 6px; font-family: "Noto Sans JP", sans-serif; }
.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14.5px; color: var(--ink-2); transition: color .2s; }
.nav a:hover { color: var(--blue); }
.nav-cta {
  background: var(--blue); color: #fff !important; padding: 9px 20px; border-radius: 50px;
  font-weight: 500; transition: background .2s, transform .2s;
}
.nav-cta:hover { background: var(--blue-d); transform: translateY(-1px); }

/* ===== ヒーロー ===== */
.hero {
  position: relative;
  background:
    radial-gradient(1200px 540px at 50% -10%, var(--tint-2) 0%, rgba(234,244,251,0) 62%),
    linear-gradient(160deg, #fbfdff 0%, var(--tint) 100%);
  padding: 128px 0 150px;
  text-align: center;
  overflow: hidden;
}
.hero-inner { max-width: 880px; }
.hero-eyebrow {
  display: inline-block;
  color: var(--blue-d); font-weight: 500; letter-spacing: .15em; font-size: 14px;
  border: 1px solid var(--blue); border-radius: 50px; padding: 5px 18px;
  margin-bottom: 28px; background: #fff;
}
.hero-title {
  font-size: 64px; color: var(--navy);
  margin-bottom: 34px; letter-spacing: .04em; line-height: 1.5;
  font-weight: 700;
}
.hero-lead { font-size: 18px; color: var(--ink); margin-bottom: 14px; font-weight: 500; }
.hero-sub { font-size: 15.5px; color: var(--ink-2); margin-bottom: 38px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; }
.hero-note { margin-top: 18px; font-size: 13.5px; color: var(--ink-2); }
.hero-wave {
  position: absolute; left: 0; right: 0; bottom: -1px; height: 60px;
  background: #fff;
  -webkit-mask: radial-gradient(80% 60px at 50% 0, transparent 99%, #000 100%);
          mask: radial-gradient(80% 60px at 50% 0, transparent 99%, #000 100%);
}

/* ===== 写真プレースホルダー（仮置き） ===== */
.ph {
  position: relative;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 12px;
  background:
    repeating-linear-gradient(45deg, #fff 0 14px, #f5fafe 14px 28px);
  border: 1.5px dashed #b9d4ea;
  border-radius: var(--radius);
  color: var(--blue);
  text-align: center;
  padding: 24px;
}
.ph-tall { aspect-ratio: 4 / 3.4; box-shadow: var(--shadow); }
.ph-wide { aspect-ratio: 4 / 3; }
.ph-icon {
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--tint-2);
  display: flex; align-items: center; justify-content: center;
}
.ph-icon svg { width: 28px; height: 28px; }
.ph-text { font-size: 14px; font-weight: 700; color: var(--blue-d); }
.ph-text small { display: block; font-size: 12px; font-weight: 400; color: var(--ink-2); margin-top: 4px; }

/* ===== 写真ギャラリー ===== */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }

/* ===== ボタン ===== */
.btn-primary, .btn-ghost {
  display: inline-block; padding: 15px 36px; border-radius: 50px;
  font-size: 16px; font-weight: 700; transition: all .2s;
}
.btn-primary {
  background: var(--blue); color: #fff;
  box-shadow: 0 8px 20px rgba(26, 111, 181, .28);
}
.btn-primary:hover { background: var(--blue-d); transform: translateY(-2px); box-shadow: 0 12px 26px rgba(26, 111, 181, .34); }
.btn-ghost { background: #fff; color: var(--blue-d); border: 1.5px solid #cfe0ee; }
.btn-ghost:hover { border-color: var(--blue); transform: translateY(-2px); }
.btn-lg { padding: 17px 48px; font-size: 17px; }

/* ===== セクション共通 ===== */
.section { padding: 96px 0; }
.section-tint { background: var(--tint); }
.section-eyebrow {
  text-align: center; color: var(--blue); letter-spacing: .25em;
  font-size: 13px; font-weight: 700; margin-bottom: 12px;
}
.section-title {
  font-size: 32px; text-align: center; color: var(--navy);
  margin-bottom: 22px; letter-spacing: .03em;
}
.section-title::after {
  content: ""; display: block; width: 46px; height: 3px;
  background: var(--gold); border-radius: 3px; margin: 18px auto 0;
}
.section-text { text-align: center; font-size: 16.5px; color: var(--ink-2); margin-bottom: 56px; }

/* ===== お悩みカード ===== */
.cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 24px; text-align: center; transition: transform .25s, box-shadow .25s;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.card-icon {
  width: 58px; height: 58px; margin: 0 auto 18px; border-radius: 50%;
  background: var(--tint-2); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
}
.card-icon svg { width: 28px; height: 28px; }
.card h3 { font-size: 17px; color: var(--navy); margin-bottom: 10px; }
.card p { font-size: 14px; color: var(--ink-2); line-height: 1.8; }

/* ===== 事業内容（会社トップ） ===== */
.biz { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.biz-card {
  display: flex; flex-direction: column;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: transform .25s, box-shadow .25s;
}
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.biz-no {
  display: inline-block; align-self: flex-start;
  font-size: 12px; font-weight: 700; letter-spacing: .08em; color: var(--blue);
  background: var(--tint-2); border-radius: 50px; padding: 5px 16px; margin-bottom: 16px;
}
.biz-card h3 { font-size: 20px; color: var(--navy); margin-bottom: 4px; }
.biz-sub { font-size: 13px; color: var(--blue-d); font-weight: 700; margin-bottom: 14px; }
.biz-card p { font-size: 14.5px; color: var(--ink-2); line-height: 1.85; }
.biz-link { margin-top: auto; align-self: flex-start; padding: 11px 26px; font-size: 14.5px; }
.biz-link.is-soon { color: #9fb0bd; border-color: #e0e7ee; cursor: default; }
.biz-link.is-soon:hover { transform: none; border-color: #e0e7ee; }

/* ===== サービス（特長リスト） ===== */
.feature-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.feature {
  display: flex; gap: 20px; align-items: flex-start;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 28px 30px; transition: box-shadow .25s, transform .25s;
}
.feature:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-num {
  font-family: "Noto Serif JP", serif; font-size: 28px; font-weight: 700;
  color: var(--blue); opacity: .55; line-height: 1; flex-shrink: 0;
}
.feature h3 { font-size: 18px; color: var(--navy); margin-bottom: 8px; }
.feature p { font-size: 14.5px; color: var(--ink-2); }

/* ===== 選ばれる理由 ===== */
.strength-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.strength {
  background: #fff; border-top: 4px solid var(--blue);
  border-radius: var(--radius); box-shadow: var(--shadow);
  padding: 38px 30px; text-align: center;
}
.strength-no {
  display: inline-block; font-size: 13px; font-weight: 700; color: var(--blue);
  background: var(--tint-2); border-radius: 50px; padding: 5px 18px; margin-bottom: 18px;
}
.strength h3 { font-size: 18px; color: var(--navy); margin-bottom: 12px; }
.strength p { font-size: 14.5px; color: var(--ink-2); }

/* ===== 数字で見る現状（ネイビー帯） ===== */
.stats-section {
  background: linear-gradient(135deg, var(--navy) 0%, #0d2b46 100%);
  color: #fff; padding: 92px 0;
}
.stats-section .section-eyebrow { color: #7fb0dd; }
.stats-section .section-title { color: #fff; }
.stats-section .section-title::after { background: var(--gold); }
.stats-section .section-text { color: #cfe0ee; }
/* 最も多い悩み（ヘッドライン） */
.rank-lead {
  display: flex; align-items: center; justify-content: center; gap: 24px;
  max-width: 720px; margin: 0 auto 44px; flex-wrap: wrap;
}
.rank-lead-num {
  font-family: "Noto Serif JP", serif; font-weight: 700;
  font-size: 72px; line-height: 1; color: var(--gold);
}
.rank-lead-num span { font-size: 32px; margin-left: 2px; }
.rank-lead-label { font-size: 17px; color: #e6eef6; line-height: 1.8; text-align: left; }
.rank-lead-label strong { color: #fff; font-weight: 700; }

/* 悩みランキング（棒グラフ） */
.bars { list-style: none; max-width: 760px; margin: 0 auto; }
.bars li {
  display: grid;
  grid-template-columns: 200px 1fr 58px;
  align-items: center; gap: 16px; padding: 9px 0;
}
.bar-label { font-size: 14px; color: #dde7f0; text-align: right; }
.bar-track { height: 14px; background: rgba(255, 255, 255, .1); border-radius: 7px; overflow: hidden; }
.bar-fill { display: block; height: 100%; background: #5d92c4; border-radius: 7px; }
.bar-fill.is-top { background: var(--gold); }
.bar-val { font-size: 14px; font-weight: 700; color: #fff; text-align: right; }

/* 現実の数字（補足ファクト3点） */
.bars-note {
  text-align: center; color: #cfe0ee; font-size: 15px;
  margin: 46px 0 24px; padding-top: 30px;
  border-top: 1px solid rgba(255, 255, 255, .12);
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 760px; margin: 0 auto; }
.stat {
  background: rgba(255, 255, 255, .06);
  border: 1px solid rgba(255, 255, 255, .14);
  border-radius: var(--radius); padding: 26px 18px; text-align: center;
}
.stat-num {
  font-family: "Noto Serif JP", serif; font-weight: 700;
  font-size: 44px; line-height: 1; color: #fff;
}
.stat-num span { font-size: 22px; margin-left: 2px; }
.stat-label { font-size: 13.5px; font-weight: 700; color: #fff; margin-top: 12px; line-height: 1.7; }
.stat-label small { display: block; font-size: 11.5px; font-weight: 400; color: #aebfd0; margin-top: 5px; }

/* 締めのブリッジ（時間のFACT→サービスへ） */
.stats-bridge {
  max-width: 720px; margin: 52px auto 0; padding-top: 38px;
  border-top: 1px solid rgba(255, 255, 255, .12); text-align: center;
}
.bridge-lead { color: #cfe0ee; font-size: 15px; margin-bottom: 16px; }
.bridge-fact { font-size: 19px; color: #fff; line-height: 1.7; margin-bottom: 24px; }
.bridge-num {
  font-family: "Noto Serif JP", serif; font-weight: 700;
  font-size: 50px; color: var(--gold); line-height: 1; vertical-align: -7px; margin-right: 4px;
}
.bridge-num span { font-size: 25px; margin-left: 1px; }
.bridge-msg { font-size: 18.5px; color: #fff; line-height: 1.95; }
.bridge-msg strong { color: var(--gold); font-weight: 700; }

.stats-source { font-size: 11.5px; color: #8ea2b5; text-align: center; margin-top: 34px; line-height: 1.8; }

/* ===== ご利用の流れ ===== */
.flow { list-style: none; max-width: 760px; margin: 0 auto; position: relative; }
.flow::before {
  content: ""; position: absolute; left: 27px; top: 10px; bottom: 10px;
  width: 2px; background: #cfe0ee;
}
.flow li { position: relative; padding: 0 0 34px 78px; }
.flow li:last-child { padding-bottom: 0; }
.flow-step {
  position: absolute; left: 0; top: 0;
  width: 56px; height: 56px; border-radius: 50%;
  background: var(--blue); color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-size: 11px; font-weight: 700; text-align: center; line-height: 1.2;
  box-shadow: 0 6px 16px rgba(26, 111, 181, .28);
}
.flow h3 { font-size: 18px; color: var(--navy); margin-bottom: 6px; padding-top: 6px; }
.flow p { font-size: 14.5px; color: var(--ink-2); }

/* ===== CTA ===== */
.cta {
  background: linear-gradient(135deg, var(--navy) 0%, var(--blue-d) 100%);
  color: #fff; text-align: center; padding: 84px 0;
}
.cta h2 { font-size: 28px; margin-bottom: 16px; color: #fff; }
.cta p { font-size: 16px; opacity: .9; margin-bottom: 34px; }
.cta .btn-primary { background: #fff; color: var(--blue-d); }
.cta .btn-primary:hover { background: #f0f6fc; }

/* ===== お問い合わせ ===== */
.contact-inner { max-width: 720px; }
.contact-box {
  background: var(--tint); border-radius: var(--radius);
  padding: 36px 40px; border: 1px solid var(--line);
}
.contact-box dl { display: grid; grid-template-columns: 130px 1fr; row-gap: 16px; }
.contact-box dt { font-weight: 700; color: var(--navy); }
.contact-box dd { color: var(--ink-2); }
.muted { color: #aab6c0; font-size: 13px; }

/* ===== フッター ===== */
.site-footer { background: var(--navy); color: #cdd9e4; padding: 48px 0 28px; }
.footer-inner { display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 20px; }
.logo-light { color: #fff; }
.logo-light span { color: #9fb4c7; }
.footer-brand p { font-size: 14px; margin-top: 10px; color: #9fb4c7; }
.copyright { font-size: 13px; color: #8499ab; }

/* ===== スマートフォン対応 ===== */
@media (max-width: 880px) {
  .cards { grid-template-columns: repeat(2, 1fr); }
  .feature-list, .strength-grid, .biz { grid-template-columns: 1fr; }
  .hero-title { font-size: 50px; }
  .gallery { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
}
@media (max-width: 700px) {
  .stats { grid-template-columns: 1fr; max-width: 340px; }
}
@media (max-width: 560px) {
  .bars li { grid-template-columns: 1fr auto; gap: 4px 10px; }
  .bar-label { text-align: left; grid-column: 1 / 2; }
  .bar-val { grid-column: 2 / 3; grid-row: 1; }
  .bar-track { grid-column: 1 / 3; }
  .rank-lead-num { font-size: 60px; }
  .rank-lead-label { text-align: center; }
}
@media (max-width: 600px) {
  .sp-only { display: inline; }
  .header-inner { flex-direction: column; gap: 12px; }
  .nav { gap: 14px; flex-wrap: wrap; justify-content: center; }
  .hero { padding: 88px 0 100px; }
  .hero-title { font-size: 38px; line-height: 1.5; }
  .hero-lead { font-size: 16px; }
  .hero-sub { font-size: 14px; }
  .section { padding: 64px 0; }
  .section-title { font-size: 26px; }
  .cards { grid-template-columns: 1fr; }
  .contact-box dl { grid-template-columns: 1fr; row-gap: 6px; }
  .contact-box dt { margin-top: 10px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}
