/* =========================================================
   記帳サポーター ナオミ ポートフォリオサイト
   HTML + CSS のみ（ビルド不要）
   ========================================================= */

:root {
  --orange: #f89b1c;
  --orange-deep: #e8850a;
  --orange-soft: #ffd9a3;
  --cream: #fff6ea;
  --cream-deep: #ffeed9;
  --ink: #2f2620;
  --ink-soft: #6b5f56;
  --line: #f0e4d6;
  --white: #ffffff;

  --font-head: "Zen Maru Gothic", "Hiragino Maru Gothic ProN", "Yu Gothic", sans-serif;
  --font-body: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;

  --shadow-sm: 0 2px 10px rgba(90, 60, 20, .06);
  --shadow-md: 0 10px 30px rgba(90, 60, 20, .09);
  --shadow-lg: 0 22px 50px rgba(90, 60, 20, .13);

  --radius: 22px;
  --container: 1080px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.9;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.5; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

.container {
  width: min(100% - 2.5rem, var(--container));
  margin-inline: auto;
}

.pc-only { display: inline; }
.sp-only { display: none; }

/* ---------- ボタン ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5em;
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  padding: .85em 1.9em;
  border-radius: 999px;
  box-shadow: 0 8px 20px rgba(232, 133, 10, .32);
  transition: transform .25s ease, box-shadow .25s ease;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 28px rgba(232, 133, 10, .38);
}
.btn-sm { font-size: .9rem; padding: .6em 1.3em; box-shadow: 0 6px 14px rgba(232,133,10,.28); }
.btn-lg { font-size: clamp(1rem, 2.4vw, 1.15rem); padding: 1.05em 2.6em; }
.btn-white {
  color: var(--orange-deep);
  background: var(--white);
  box-shadow: 0 12px 30px rgba(0, 0, 0, .16);
}
.btn-white:hover { box-shadow: 0 18px 38px rgba(0, 0, 0, .22); }

.btn-text {
  font-family: var(--font-head);
  font-weight: 700;
  color: var(--ink-soft);
  border-bottom: 2px solid var(--orange-soft);
  padding-bottom: 2px;
  transition: color .2s ease, border-color .2s ease;
}
.btn-text:hover { color: var(--orange-deep); border-color: var(--orange); }

/* ---------- ヘッダー ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  min-height: 68px;
}
.brand { display: flex; align-items: center; gap: .65rem; margin-right: auto; }
.brand-icon {
  width: 40px; height: 40px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: var(--shadow-sm);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; }
.brand-name { font-family: var(--font-head); font-weight: 700; font-size: 1.02rem; }
.brand-role { font-size: .68rem; color: var(--ink-soft); letter-spacing: .12em; }

.header-nav { display: flex; gap: 1.6rem; font-size: .9rem; font-weight: 500; }
.header-nav a { position: relative; padding-bottom: 3px; }
.header-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 100%; height: 2px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.header-nav a:hover::after { transform: scaleX(1); }

/* ---------- 装飾（丸いぼかし） ---------- */
.blob {
  position: absolute;
  border-radius: 50%;
  filter: blur(10px);
  pointer-events: none;
}
.blob-a {
  width: 520px; height: 520px;
  top: -180px; right: -160px;
  background: radial-gradient(circle at 30% 30%, rgba(255, 190, 100, .85), rgba(255, 210, 150, .25) 70%);
}
.blob-b {
  width: 340px; height: 340px;
  bottom: -120px; left: -110px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 214, 160, .8), rgba(255, 232, 200, .2) 70%);
}
.blob-c {
  width: 380px; height: 380px;
  top: 8%; right: -170px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 220, 170, .55), rgba(255, 240, 220, .1) 70%);
}
.blob-d {
  width: 460px; height: 460px;
  top: -180px; left: -140px;
  background: radial-gradient(circle at 40% 40%, rgba(255, 255, 255, .35), rgba(255, 255, 255, 0) 70%);
}
.dots {
  position: absolute;
  left: 4%;
  top: 18%;
  width: 130px; height: 130px;
  background-image: radial-gradient(rgba(232, 133, 10, .35) 2px, transparent 2px);
  background-size: 16px 16px;
  opacity: .8;
  pointer-events: none;
}

/* ---------- ヒーロー ---------- */
.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(1200px 500px at 80% -10%, #ffe9c9 0%, rgba(255,233,201,0) 60%),
    linear-gradient(160deg, var(--cream) 0%, var(--cream-deep) 55%, #ffe4bd 100%);
  padding: clamp(3.5rem, 9vw, 6.5rem) 0 clamp(5rem, 10vw, 7.5rem);
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  align-items: center;
  gap: clamp(2rem, 5vw, 4rem);
}

.hero-eyebrow {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .82rem;
  letter-spacing: .16em;
  color: var(--orange-deep);
  background: rgba(255, 255, 255, .75);
  border: 1px solid rgba(232, 133, 10, .22);
  padding: .45em 1.2em;
  border-radius: 999px;
  margin-bottom: 1.4rem;
}

.hero-title {
  font-size: clamp(1.72rem, 5.6vw, 3.5rem);
  font-weight: 900;
  letter-spacing: .01em;
  line-height: 1.42;
  margin-bottom: 1.5rem;
}
/* 文節ごとにかたまりで折り返す（単語の途中で切れないように） */
.hero-title .ht { display: inline-block; }
.marker {
  position: relative;
  display: inline-block;
  color: var(--orange-deep);
}
.marker::after {
  content: "";
  position: absolute;
  left: -.06em; right: -.06em; bottom: .06em;
  height: .32em;
  background: linear-gradient(90deg, rgba(255, 200, 120, .75), rgba(255, 224, 175, .75));
  border-radius: 999px;
  z-index: -1;
}

.hero-lead {
  font-size: clamp(.98rem, 2.2vw, 1.1rem);
  color: var(--ink-soft);
  margin-bottom: 1.7rem;
}
.hero-lead strong { color: var(--ink); font-weight: 700; }

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: .6rem;
  margin-bottom: 2.2rem;
}
.hero-badges li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .84rem;
  background: var(--white);
  color: var(--ink);
  padding: .5em 1.1em;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.hero-visual { position: relative; display: grid; justify-items: center; }
.avatar-frame {
  position: relative;
  width: clamp(200px, 26vw, 300px);
  aspect-ratio: 1;
  border-radius: 50%;
  padding: 10px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
}
.avatar-frame::before {
  content: "";
  position: absolute;
  inset: -18px;
  border-radius: 50%;
  border: 2px dashed rgba(232, 133, 10, .35);
}
.avatar { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }

.avatar-caption {
  margin-top: 1.4rem;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .14em;
  color: var(--ink-soft);
}
.avatar-caption span {
  display: block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: .06em;
  color: var(--ink);
}

.hero-wave {
  position: absolute;
  left: 0; bottom: -1px;
  width: 100%;
  height: clamp(45px, 6vw, 90px);
  z-index: 1;
}

/* ---------- セクション共通 ---------- */
.section {
  position: relative;
  overflow: hidden;
  padding: clamp(4rem, 9vw, 7rem) 0;
}
.section-tint { background: var(--cream); }
.section-story { background: linear-gradient(180deg, #fffaf3 0%, #ffffff 100%); }

.section-head { text-align: center; margin-bottom: clamp(2.5rem, 5vw, 3.6rem); }
.label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .78rem;
  letter-spacing: .28em;
  color: var(--orange-deep);
  text-transform: uppercase;
  margin-bottom: .6rem;
}
.label-light { color: rgba(255, 255, 255, .9); }
.section-head h2 {
  font-size: clamp(1.5rem, 4.2vw, 2.3rem);
  font-weight: 900;
}
.section-sub {
  margin-top: .9rem;
  color: var(--ink-soft);
  font-size: .95rem;
}

/* ---------- お悩み ---------- */
.worry-list {
  display: grid;
  gap: .9rem;
  max-width: 760px;
  margin-inline: auto;
}
.worry {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 1.05rem 1.4rem;
  box-shadow: var(--shadow-sm);
  font-size: clamp(.92rem, 2.2vw, 1rem);
  transition: transform .25s ease, box-shadow .25s ease;
}
.worry:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.check {
  flex: none;
  width: 26px; height: 26px;
  margin-top: .35em;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  position: relative;
}
.check::after {
  content: "";
  position: absolute;
  left: 9px; top: 6px;
  width: 6px; height: 11px;
  border-right: 2.5px solid #fff;
  border-bottom: 2.5px solid #fff;
  transform: rotate(45deg);
}

.worry-answer {
  margin-top: 2.4rem;
  text-align: center;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.02rem, 2.6vw, 1.3rem);
  line-height: 1.9;
}
.worry-answer strong { color: var(--orange-deep); }

/* ---------- 2つのサービス ---------- */
.plans {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin-bottom: clamp(3rem, 6vw, 4.5rem);
}
.plan {
  position: relative;
  background: var(--white);
  border-radius: clamp(22px, 3vw, 30px);
  padding: clamp(2rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.plan::before {
  content: "";
  position: absolute;
  inset: 0 0 auto 0;
  height: 6px;
  background: linear-gradient(90deg, var(--orange) 0%, var(--orange-soft) 100%);
}
.plan:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.plan-label {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .75rem;
  letter-spacing: .22em;
  color: var(--orange-deep);
  margin-bottom: .9rem;
}
.plan h3 {
  font-size: .95rem;
  font-weight: 500;
  color: var(--ink-soft);
  line-height: 1.6;
  margin-bottom: 1rem;
}
.plan h3 span {
  display: block;
  font-size: clamp(1.5rem, 4vw, 1.9rem);
  font-weight: 900;
  color: var(--ink);
  letter-spacing: .02em;
  margin-top: .2rem;
}
.plan-text {
  font-size: .93rem;
  color: var(--ink-soft);
  line-height: 1.9;
  padding-bottom: 1.3rem;
  border-bottom: 1px dashed var(--line);
}
.plan-price {
  margin-top: 1.2rem;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .95rem;
  color: var(--ink-soft);
}
.plan-price strong {
  font-size: clamp(1.5rem, 4vw, 1.8rem);
  font-weight: 900;
  color: var(--orange-deep);
  margin-left: .2em;
}

.sub-head {
  text-align: center;
  font-size: clamp(1.1rem, 2.8vw, 1.35rem);
  font-weight: 900;
  margin-bottom: 1.8rem;
  position: relative;
  padding-bottom: .9rem;
}
.sub-head::after {
  content: "";
  position: absolute;
  left: 50%; bottom: 0;
  transform: translateX(-50%);
  width: 46px; height: 3px;
  border-radius: 999px;
  background: var(--orange);
}

/* ---------- カード（できること） ---------- */
.cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.3rem;
}
.card {
  position: relative;
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.2rem 1.6rem 1.8rem;
  box-shadow: var(--shadow-sm);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.card-num {
  position: absolute;
  top: 1rem; right: 1.3rem;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 2.1rem;
  color: var(--orange-soft);
  opacity: .75;
  line-height: 1;
}
.card h3 {
  font-size: 1.06rem;
  font-weight: 700;
  margin-bottom: .6rem;
  padding-right: 2.4rem;
}
.card p { font-size: .9rem; color: var(--ink-soft); line-height: 1.85; }

.tools {
  margin-top: clamp(2.5rem, 5vw, 3.4rem);
  background: var(--white);
  border: 2px dashed var(--orange-soft);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 4vw, 2.2rem);
  text-align: center;
}
.tools-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: 1.1rem;
}
.tools-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
}
.tools-list li {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(.9rem, 2.2vw, 1rem);
  background: var(--cream);
  padding: .7em 1.5em;
  border-radius: 999px;
}

/* ---------- プロフィール ---------- */
.profile {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: clamp(22px, 4vw, 32px);
  padding: clamp(2rem, 5vw, 3.2rem);
  box-shadow: var(--shadow-md);
}
.profile-visual { text-align: center; }
.profile-avatar-frame {
  width: min(200px, 60vw);
  aspect-ratio: 1;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  padding: 8px;
  background: linear-gradient(135deg, var(--orange-soft), var(--cream));
  box-shadow: var(--shadow-md);
}
.profile-avatar-frame img { width: 100%; height: 100%; border-radius: 50%; object-fit: cover; }
.profile-name {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.5rem;
}
.profile-role {
  font-size: .8rem;
  letter-spacing: .14em;
  color: var(--orange-deep);
  font-weight: 700;
}

.profile-list { display: grid; gap: 1.1rem; }
.profile-list li {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  font-size: clamp(.93rem, 2.2vw, 1rem);
  padding-bottom: 1.1rem;
  border-bottom: 1px dashed var(--line);
}
.profile-list li:last-child { border-bottom: none; padding-bottom: 0; }
.profile-list strong { color: var(--orange-deep); font-weight: 700; }
.dot {
  flex: none;
  width: 10px; height: 10px;
  margin-top: .75em;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 4px rgba(248, 155, 28, .16);
}

.profile-extra {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.4rem;
  margin-top: 1.6rem;
}
.extra-card {
  background: var(--cream);
  border-radius: var(--radius);
  padding: clamp(1.6rem, 3.5vw, 2.1rem);
}
.extra-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--orange-deep);
  margin-bottom: 1.1rem;
  padding-left: .9rem;
  border-left: 4px solid var(--orange);
  line-height: 1.3;
}
.tag-list { display: grid; gap: .7rem; }
.tag-list li {
  position: relative;
  background: var(--white);
  border-radius: 12px;
  padding: .75rem 1rem .75rem 2.3rem;
  font-size: .9rem;
  line-height: 1.7;
  box-shadow: var(--shadow-sm);
}
.tag-list li::before {
  content: "";
  position: absolute;
  left: 1rem; top: 1.35em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange);
}

/* ---------- ストーリー ---------- */
.story {
  max-width: 740px;
  margin-inline: auto;
  display: grid;
  gap: 1.6rem;
  font-size: clamp(.95rem, 2.3vw, 1.05rem);
  color: var(--ink-soft);
  position: relative;
  z-index: 2;
}
.story-lead {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.15rem, 3.2vw, 1.55rem);
  color: var(--ink);
  line-height: 1.7;
}

.story-note { font-size: .88em; opacity: .8; }
.story-close {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  color: var(--ink);
  line-height: 1.9;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line);
}

.values-title {
  margin: clamp(3rem, 6vw, 4.2rem) 0 1.8rem;
  text-align: center;
  font-size: clamp(1.15rem, 3vw, 1.45rem);
  font-weight: 900;
  position: relative;
  z-index: 2;
}
.values {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.4rem;
  position: relative;
  z-index: 2;
}
.value {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.4rem 1.8rem 1.9rem;
  box-shadow: var(--shadow-md);
  position: relative;
}
.value-num {
  position: absolute;
  top: -22px; left: 1.8rem;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow: 0 8px 18px rgba(232, 133, 10, .32);
}
.value h4 { font-size: 1.12rem; font-weight: 700; margin-bottom: .7rem; }
.value p { font-size: .92rem; color: var(--ink-soft); }

/* ---------- 料金 ---------- */
.price-group-title {
  text-align: center;
  font-size: clamp(1.05rem, 2.8vw, 1.3rem);
  font-weight: 900;
  margin-bottom: 1.5rem;
}
.price-group-title + .price-wrap { margin-bottom: clamp(2.8rem, 6vw, 4rem); }
.price-wrap-single { max-width: 480px; margin-inline: auto; }
.price-card-talk { border-top-color: var(--orange-deep); }

.price-wrap {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.5rem;
  align-items: stretch;
}
.price-card {
  background: var(--white);
  border-radius: clamp(20px, 3vw, 28px);
  padding: clamp(2rem, 4vw, 2.6rem);
  box-shadow: var(--shadow-md);
  border-top: 6px solid var(--orange);
  text-align: center;
}
.price-card-sub { border-top-color: var(--orange-soft); }
.price-tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .85rem;
  letter-spacing: .1em;
  color: var(--orange-deep);
  background: var(--cream);
  padding: .4em 1.3em;
  border-radius: 999px;
  margin-bottom: 1.1rem;
}
.price-amount {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(2.6rem, 8vw, 3.6rem);
  line-height: 1.2;
  letter-spacing: .01em;
}
.price-amount-sm { font-size: clamp(1.8rem, 5vw, 2.4rem); }
.yen { font-size: .55em; margin-right: .1em; }
.price-note { font-size: .85rem; color: var(--ink-soft); margin-top: .3rem; }

.price-detail {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line);
  display: grid;
  gap: .8rem;
  text-align: left;
  font-size: .93rem;
}
.price-detail li { position: relative; padding-left: 1.4rem; }
.price-detail li::before {
  content: "";
  position: absolute;
  left: 0; top: .78em;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--orange-soft);
}
.price-detail strong { color: var(--orange-deep); }

.price-cta {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px dashed var(--line);
  font-size: .93rem;
  color: var(--ink-soft);
}

.count {
  margin-top: clamp(2.5rem, 5vw, 3.4rem);
  max-width: 620px;
  margin-inline: auto;
}
.count-title {
  text-align: center;
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 1.2rem;
}
.table-scroll { overflow-x: auto; }
.count-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  font-size: .95rem;
}
.count-table th, .count-table td {
  padding: 1rem 1.4rem;
  text-align: left;
  border-bottom: 1px solid var(--line);
}
.count-table thead th {
  background: var(--orange);
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 700;
  font-size: .9rem;
  border-bottom: none;
}
.count-table tbody tr:last-child td { border-bottom: none; }
.count-table td:last-child { font-weight: 700; color: var(--orange-deep); white-space: nowrap; }

/* ---------- 流れ ---------- */
.steps {
  max-width: 720px;
  margin-inline: auto;
  display: grid;
  gap: 0;
}
.step {
  position: relative;
  display: flex;
  gap: 1.4rem;
  padding-bottom: 2.2rem;
}
.step:last-child { padding-bottom: 0; }
.step::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 56px;
  bottom: 0;
  width: 2px;
  background: linear-gradient(180deg, var(--orange-soft), rgba(255, 217, 163, .25));
}
.step:last-child::before { display: none; }
.step-num {
  flex: none;
  width: 54px; height: 54px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 1.25rem;
  color: var(--white);
  background: linear-gradient(135deg, var(--orange) 0%, var(--orange-deep) 100%);
  box-shadow: 0 8px 18px rgba(232, 133, 10, .28);
  position: relative;
  z-index: 2;
}
.step-body { padding-top: .5rem; }
.step-body h3 { font-size: 1.08rem; font-weight: 700; margin-bottom: .4rem; }
.step-body p { font-size: .93rem; color: var(--ink-soft); }

/* ---------- お問い合わせ ---------- */
.contact {
  position: relative;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  padding: clamp(4rem, 9vw, 6.5rem) 0;
  background: linear-gradient(135deg, #ffab33 0%, var(--orange) 45%, var(--orange-deep) 100%);
}
.contact-inner { position: relative; z-index: 2; }
.contact h2 {
  font-size: clamp(1.5rem, 4.4vw, 2.3rem);
  font-weight: 900;
  margin-bottom: 1.2rem;
}
.contact-lead {
  font-size: clamp(.94rem, 2.3vw, 1.03rem);
  margin-bottom: 2.2rem;
  color: rgba(255, 255, 255, .95);
}
.contact-notes {
  margin-top: 2rem;
  display: grid;
  gap: .5rem;
  font-size: .87rem;
  color: rgba(255, 255, 255, .95);
}

/* ---------- フッター ---------- */
.site-footer {
  background: #2f2620;
  color: rgba(255, 255, 255, .78);
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
  text-align: center;
}
.disclaimer {
  font-size: .8rem;
  line-height: 2;
  max-width: 720px;
  margin: 0 auto 1.6rem;
  color: rgba(255, 255, 255, .62);
}
.copyright {
  font-family: var(--font-head);
  font-size: .82rem;
  letter-spacing: .08em;
}

/* =========================================================
   動き（控えめ）
   ========================================================= */
@keyframes fade-up {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: none; }
}

@media (prefers-reduced-motion: no-preference) {
  .hero-eyebrow,
  .hero-title,
  .hero-lead,
  .hero-badges,
  .hero-actions,
  .hero-visual {
    animation: fade-up .8s cubic-bezier(.22, .8, .3, 1) both;
  }
  .hero-title    { animation-delay: .08s; }
  .hero-lead     { animation-delay: .16s; }
  .hero-badges   { animation-delay: .24s; }
  .hero-actions  { animation-delay: .32s; }
  .hero-visual   { animation-delay: .18s; }

  /* スクロールに合わせたふわっと表示（対応ブラウザのみ。
     非対応ブラウザでは最初から表示されるので崩れません） */
  @supports (animation-timeline: view()) {
    .reveal {
      animation: fade-up linear both;
      animation-timeline: view();
      animation-range: entry 0% entry 55%;
    }
  }
}

/* =========================================================
   スマホ・タブレット対応
   ========================================================= */
@media (max-width: 900px) {
  .hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
  }
  .hero-copy { order: 2; }
  .hero-visual { order: 1; margin-bottom: .5rem; }
  .hero-badges, .hero-actions { justify-content: center; }
  .dots { display: none; }

  .profile { grid-template-columns: 1fr; text-align: center; }
  .profile-list li { text-align: left; }
}

@media (max-width: 720px) {
  .header-nav { display: none; }
  .pc-only { display: none; }
  .sp-only { display: inline; }

  .hero { padding-top: 2.2rem; padding-bottom: 4rem; }
  .hero-title { line-height: 1.55; }
  .hero-actions { flex-direction: column; gap: 1.1rem; }
  .btn-lg { width: 100%; max-width: 340px; }

  /* 1画面目に見出しとボタンが入るように圧縮 */
  .avatar-frame { width: clamp(140px, 42vw, 190px); padding: 7px; }
  .avatar-frame::before { inset: -12px; }
  .avatar-caption { display: none; }
  .hero-inner { gap: 1.6rem; }
  .hero-eyebrow { margin-bottom: 1rem; font-size: .76rem; }
  .hero-lead { margin-bottom: 1.3rem; }
  .hero-badges { margin-bottom: 1.6rem; gap: .45rem; }
  .hero-badges li { font-size: .78rem; padding: .45em .95em; }

  .worry { align-items: flex-start; padding: 1rem 1.1rem; }
  .worry-answer { text-align: left; }

  .card { padding: 1.9rem 1.3rem 1.5rem; }

  .step { gap: 1rem; }
  .step-num { width: 46px; height: 46px; font-size: 1.1rem; }
  .step::before { left: 22px; top: 48px; }

  .price-amount { font-size: clamp(2.4rem, 13vw, 3rem); }
  .contact-notes { text-align: left; }
}

@media (max-width: 380px) {
  .brand-role { display: none; }
}
