/* =========================================================
   岩井 勇樹｜YouTube動画編集
   ========================================================= */

:root {
  --bg:        #0A0B0D;
  --bg-2:      #101216;
  --bg-3:      #15181D;
  --line:      rgba(255,255,255,.09);
  --line-2:    rgba(255,255,255,.16);
  --fg:        #EDEFF2;
  --fg-2:      #A7AEB8;
  --fg-3:      #6E7681;
  --accent:    #F0B23F;
  --accent-2:  #C9861A;
  --accent-dim: rgba(240,178,63,.14);

  --wrap: 1140px;
  --r: 14px;
  --r-lg: 22px;

  --f-jp: "Hiragino Kaku Gothic ProN", "Hiragino Sans", "Noto Sans JP",
          "Yu Gothic Medium", "Yu Gothic", Meiryo, system-ui, sans-serif;
  --f-num: "Helvetica Neue", Arial, var(--f-jp);

  --ease: cubic-bezier(.2,.7,.2,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  background: var(--bg);
  color: var(--fg);
  font-family: var(--f-jp);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: .02em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

h1, h2, h3 { line-height: 1.45; letter-spacing: .01em; margin: 0; font-weight: 700; }
p { margin: 0; }
ul, ol, dl { margin: 0; padding: 0; list-style: none; }
img { max-width: 100%; display: block; }
a { color: inherit; }

.wrap { width: min(100% - 40px, var(--wrap)); margin-inline: auto; }
.pc { display: inline; } .sp { display: none; }

.skip {
  position: absolute; left: -9999px; top: 0;
  background: var(--accent); color: #000; padding: 10px 18px; z-index: 999;
}
.skip:focus { left: 8px; top: 8px; }

::selection { background: var(--accent); color: #0A0B0D; }

:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- reveal ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.reveal.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  padding: 13px 26px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #14100A;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .04em;
  text-decoration: none;
  border: 0;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), filter .25s var(--ease);
  box-shadow: 0 8px 26px -12px rgba(240,178,63,.85);
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.06); box-shadow: 0 14px 32px -12px rgba(240,178,63,.95); }
.btn--sm { padding: 9px 18px; font-size: 13.5px; }
.btn--lg { padding: 17px 40px; font-size: 16.5px; }
.btn--block { width: 100%; }
.btn--ghost {
  background: transparent;
  color: var(--fg);
  border: 1px solid var(--line-2);
  box-shadow: none;
}
.btn--ghost:hover { border-color: var(--accent); color: var(--accent); box-shadow: none; }

/* =========================================================
   NAV
   ========================================================= */
.nav {
  position: fixed; inset: 0 0 auto 0; z-index: 100;
  transition: background .35s var(--ease), border-color .35s var(--ease), backdrop-filter .35s;
  border-bottom: 1px solid transparent;
}
.nav.is-stuck {
  background: rgba(10,11,13,.82);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom-color: var(--line);
}
.nav__inner {
  width: min(100% - 40px, 1240px); margin-inline: auto;
  height: 68px; display: flex; align-items: center; gap: 28px;
}
.nav__brand { display: flex; align-items: baseline; gap: 10px; text-decoration: none; margin-right: auto; }
.nav__mark {
  width: 9px; height: 9px; border-radius: 2px;
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  transform: translateY(-1px);
}
.nav__name { font-weight: 700; font-size: 16px; letter-spacing: .06em; }
.nav__role { font-size: 11.5px; color: var(--fg-3); letter-spacing: .12em; }
.nav__links { display: flex; gap: 26px; }
.nav__links a {
  font-size: 13.5px; color: var(--fg-2); text-decoration: none;
  transition: color .2s; position: relative;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: -6px; height: 1px;
  background: var(--accent); transition: right .3s var(--ease);
}
.nav__links a:hover { color: var(--fg); }
.nav__links a:hover::after { right: 0; }

@media (max-width: 960px) {
  .nav__links { display: none; }
}

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; padding: 168px 0 0; overflow: hidden; }
.hero__glow {
  position: absolute; top: -320px; left: 50%; transform: translateX(-50%);
  width: 1100px; height: 760px; pointer-events: none;
  background:
    radial-gradient(closest-side, rgba(240,178,63,.16), transparent 72%),
    radial-gradient(closest-side, rgba(240,178,63,.07), transparent 70%);
}
.hero::after {
  content: ""; position: absolute; inset: auto 0 0 0; height: 1px;
  background: linear-gradient(90deg, transparent, var(--line-2), transparent);
}
.hero__inner { position: relative; text-align: center; }

.eyebrow {
  display: inline-block;
  font-size: 12.5px; letter-spacing: .18em; color: var(--accent);
  padding: 7px 16px; border: 1px solid var(--accent-dim); border-radius: 999px;
  background: rgba(240,178,63,.06);
  margin-bottom: 30px;
}

.hero__title {
  font-size: clamp(25px, 5.4vw, 58px);
  line-height: 1.4;
  letter-spacing: .005em;
  margin-bottom: 28px;
}
.hero__title em {
  font-style: normal;
  background: linear-gradient(120deg, var(--accent) 20%, #FFD98A 60%, var(--accent-2));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.hero__lead { color: var(--fg-2); font-size: clamp(14.5px, 1.5vw, 16.5px); line-height: 2.05; }
.hero__lead strong { color: var(--fg); font-weight: 700; }
.hero__cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 40px; }
.hero__note { margin-top: 18px; font-size: 12.5px; color: var(--fg-3); }

/* ---------- stats ---------- */
.stats {
  display: grid; grid-template-columns: repeat(4, 1fr);
  margin: 84px 0 0;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,0));
  overflow: hidden;
}
.stats__item { padding: 30px 18px; text-align: center; border-right: 1px solid var(--line); }
.stats__item:last-child { border-right: 0; }
.stats__item dt { font-size: 12px; color: var(--fg-3); letter-spacing: .09em; margin-bottom: 6px; }
.stats__item dd { margin: 0; font-family: var(--f-num); }
.stats__item strong {
  font-size: clamp(28px, 3.6vw, 40px); font-weight: 700; letter-spacing: -.01em;
  background: linear-gradient(160deg, #fff, var(--accent));
  -webkit-background-clip: text; background-clip: text; color: transparent;
}
.stats__item span { font-size: 13px; color: var(--fg-2); margin-left: 4px; font-family: var(--f-jp); }

/* =========================================================
   SECTION base
   ========================================================= */
.sec { padding: 130px 0; position: relative; }
.sec__label {
  font-size: 12px; letter-spacing: .2em; color: var(--accent);
  margin-bottom: 16px; display: flex; align-items: center; gap: 10px;
}
.sec__label::before {
  content: ""; width: 22px; height: 1px; background: var(--accent); display: inline-block;
}
.sec__title { font-size: clamp(24px, 3.6vw, 38px); line-height: 1.45; margin-bottom: 22px; }
.sec__title em {
  font-style: normal; color: var(--accent);
}
.sec__lead { color: var(--fg-2); max-width: 720px; font-size: 15.5px; }

.sub-title {
  font-size: clamp(17px, 2.2vw, 21px); margin: 86px 0 8px;
  padding-left: 14px; border-left: 3px solid var(--accent);
}
.sub-lead { color: var(--fg-3); font-size: 13.5px; margin-bottom: 26px; padding-left: 17px; }

/* ---------- placeholders ---------- */
.ph__box {
  position: relative;
  aspect-ratio: 16 / 9;
  border-radius: 10px;
  border: 1px dashed rgba(240,178,63,.42);
  background:
    repeating-linear-gradient(135deg, rgba(240,178,63,.045) 0 12px, transparent 12px 24px),
    var(--bg-3);
  display: grid; place-items: center;
}
.ph__box::after {
  content: attr(data-ph);
  font-size: 12px; color: rgba(240,178,63,.75); letter-spacing: .08em; text-align: center;
  padding: 0 10px;
}
.ph__box--portrait { aspect-ratio: 4 / 5; }
.ph__box--wide { aspect-ratio: 16 / 9; }
.ph-inline {
  font-size: 11.5px; color: rgba(240,178,63,.8);
  border: 1px dashed rgba(240,178,63,.4); border-radius: 5px; padding: 1px 8px;
  letter-spacing: .04em;
}
.ph-text blockquote { color: var(--fg-2); }

/* =========================================================
   問題提起
   ========================================================= */
.sec--problem { background: var(--bg-2); border-block: 1px solid var(--line); }
.problems {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px; margin-top: 46px;
}
.problem {
  position: relative;
  padding: 30px 30px 30px 34px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: rgba(255,255,255,.02);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.problem:hover { border-color: var(--line-2); transform: translateY(-3px); }
.problem::before {
  content: ""; position: absolute; left: 0; top: 26px; bottom: 26px; width: 2px;
  background: linear-gradient(180deg, var(--accent), transparent);
  border-radius: 2px;
}
.problem__no {
  font-family: var(--f-num); font-size: 12px; letter-spacing: .16em;
  color: var(--fg-3); display: block; margin-bottom: 10px;
}
.problem h3 { font-size: 17px; margin-bottom: 10px; }
.problem p { color: var(--fg-2); font-size: 14.5px; line-height: 1.95; }

/* =========================================================
   アプローチ
   ========================================================= */
.curve {
  margin: 56px 0 70px;
  padding: 30px 30px 22px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.035), rgba(255,255,255,.008));
}
.curve__head {
  display: flex; align-items: baseline; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  margin-bottom: 14px;
}
.curve__head h3 { font-size: 15.5px; letter-spacing: .04em; }
.curve__legend { display: flex; gap: 18px; }
.lg { font-size: 12px; color: var(--fg-2); display: inline-flex; align-items: center; gap: 7px; }
.lg i { width: 16px; height: 2px; border-radius: 2px; display: inline-block; }
.lg--base i { background: var(--fg-3); }
.lg--tuned i { background: var(--accent); }

.curve__svg { width: 100%; height: auto; overflow: visible; }
.curve__grid line { stroke: rgba(255,255,255,.07); stroke-width: 1; }
.curve__grid line.axis { stroke: rgba(255,255,255,.16); }
.curve__ylabel text, .curve__xlabel text { fill: var(--fg-3); font-size: 11px; font-family: var(--f-num); text-anchor: end; }
.curve__xlabel text { text-anchor: start; font-family: var(--f-jp); }
.curve__base {
  fill: none; stroke: var(--fg-3); stroke-width: 2; stroke-dasharray: 5 5; stroke-linecap: round;
}
.curve__tuned { fill: none; stroke: var(--accent); stroke-width: 2.6; stroke-linecap: round; }
.curve__marks line { stroke: rgba(240,178,63,.28); stroke-width: 1; stroke-dasharray: 3 4; }
.curve__tag text { fill: var(--accent); font-size: 11.5px; letter-spacing: .06em; }
.curve__note { margin-top: 10px; font-size: 11.5px; color: var(--fg-3); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.pillar {
  padding: 34px 28px;
  border: 1px solid var(--line);
  border-radius: var(--r);
  background: var(--bg-2);
  transition: border-color .3s var(--ease), transform .3s var(--ease), background .3s;
}
.pillar:hover { border-color: rgba(240,178,63,.4); transform: translateY(-4px); background: var(--bg-3); }
.pillar__no {
  font-family: var(--f-num); font-size: 13px; letter-spacing: .14em;
  color: var(--accent); margin-bottom: 14px;
}
.pillar h3 { font-size: 20px; margin-bottom: 4px; }
.pillar__sub { color: var(--fg-3); font-size: 12.5px; margin-bottom: 20px; letter-spacing: .05em; }
.pillar ul { display: grid; gap: 11px; }
.pillar li {
  position: relative; padding-left: 20px; font-size: 14px; color: var(--fg-2); line-height: 1.85;
}
.pillar li::before {
  content: ""; position: absolute; left: 2px; top: 11px;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--accent); opacity: .75;
}

/* =========================================================
   実績
   ========================================================= */
.sec--works { background: var(--bg-2); border-block: 1px solid var(--line); }

.showcase {
  display: grid; grid-template-columns: 1.35fr 1fr; gap: 34px; align-items: center;
  margin-top: 46px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: rgba(255,255,255,.025);
}
.showcase__player {
  aspect-ratio: 16 / 9; border-radius: 12px; overflow: hidden;
  background: #000; border: 1px solid var(--line);
  box-shadow: 0 20px 60px -28px rgba(0,0,0,.9);
}
.showcase__player iframe { width: 100%; height: 100%; border: 0; display: block; }
.tag {
  display: inline-block; font-size: 11.5px; letter-spacing: .14em; color: var(--accent);
  border: 1px solid var(--accent-dim); background: rgba(240,178,63,.07);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 14px;
}
.showcase__body h3 { font-size: 21px; margin-bottom: 12px; }
.showcase__body p { color: var(--fg-2); font-size: 14.5px; }
.showcase__meta {
  margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line);
  font-size: 13.5px !important;
}
.showcase__meta strong { color: var(--fg); }

.thumbs { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
.thumb { margin: 0; }
.thumb__frame {
  position: relative; border-radius: 12px; overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: 0 20px 50px -30px rgba(0,0,0,.95);
  background: var(--bg-3);
}
.thumb__frame img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.thumb__ctr {
  display: inline-flex; align-items: baseline; gap: 5px;
  padding: 5px 13px; border-radius: 999px;
  background: rgba(240,178,63,.09);
  border: 1px solid rgba(240,178,63,.42);
  font-size: 11.5px; color: var(--fg-2); letter-spacing: .05em;
}
.thumb__ctr strong { font-family: var(--f-num); font-size: 17px; color: var(--accent); }
.thumb figcaption {
  display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap;
  font-size: 12.5px; color: var(--fg-3); margin-top: 13px; letter-spacing: .04em;
}

.ctr-note {
  margin-top: 26px; padding: 24px 28px;
  border: 1px solid var(--line); border-left: 3px solid var(--accent);
  border-radius: 4px var(--r) var(--r) 4px;
  background: rgba(255,255,255,.025);
}
.ctr-note h4 { font-size: 14.5px; margin-bottom: 9px; letter-spacing: .03em; }
.ctr-note p { font-size: 13.5px; color: var(--fg-2); line-height: 1.95; }
.ctr-note strong { color: var(--fg); }

.channels {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(238px, 1fr)); gap: 12px;
}
.channels li {
  display: flex; align-items: center; gap: 14px;
  padding: 17px 20px;
  border: 1px solid var(--line); border-radius: 10px;
  background: rgba(255,255,255,.02);
}
.channels__size {
  font-family: var(--f-num); font-size: 17px; font-weight: 700; color: var(--accent);
  min-width: 98px; white-space: nowrap;
}
.channels__genre { font-size: 14px; color: var(--fg-2); }
.channels__more {
  grid-column: 1 / -1;
  justify-content: center; color: var(--fg-3); font-size: 13px;
  border-style: dashed; background: transparent;
}

/* =========================================================
   成果
   ========================================================= */
.results { display: grid; grid-template-columns: 1.15fr 1fr; gap: 20px; margin-top: 48px; align-items: stretch; }
.result {
  display: flex; flex-direction: column;
  padding: 34px 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.01));
}
.result:first-child { border-color: rgba(240,178,63,.34); }
.result__head { padding-bottom: 20px; border-bottom: 1px solid var(--line); margin-bottom: 8px; }
.result__tag {
  display: inline-block; font-size: 11.5px; letter-spacing: .12em; color: var(--accent);
  border: 1px solid var(--accent-dim); background: rgba(240,178,63,.07);
  padding: 4px 12px; border-radius: 999px; margin-bottom: 12px;
}
.result__head h3 { font-size: 21px; }
.result__term { font-size: 12.5px; color: var(--fg-3); margin-top: 6px; }

.result__list { display: grid; }
.result__list li {
  display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 16px;
  padding: 17px 0; border-bottom: 1px solid var(--line);
}
.result__k { font-size: 13.5px; color: var(--fg-2); }
.result__v { display: inline-flex; align-items: baseline; gap: 10px; font-family: var(--f-num); white-space: nowrap; }
.result__v i { font-style: normal; font-size: 14px; color: var(--fg-3); text-decoration: line-through; text-decoration-color: rgba(255,255,255,.28); }
.result__v em { font-style: normal; font-size: 13px; color: var(--fg-3); }
.result__v b { font-size: 21px; color: var(--accent); letter-spacing: -.01em; }

.result__peak {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin-top: auto; padding-top: 24px;
}
.result__peak > div {
  padding: 18px 16px; border-radius: 12px; text-align: center;
  background: rgba(240,178,63,.08); border: 1px solid rgba(240,178,63,.22);
}
.result__peak span { display: block; font-size: 11.5px; color: var(--fg-2); margin-bottom: 4px; letter-spacing: .04em; }
.result__peak strong { font-family: var(--f-num); font-size: 30px; color: var(--accent); letter-spacing: -.02em; }
.result__peak small { font-family: var(--f-jp); font-size: 13px; margin-left: 2px; }

.result__note {
  margin-top: auto; padding-top: 22px;
  font-size: 13px; color: var(--fg-2); line-height: 1.9;
}
.results__disclaimer { margin-top: 22px; font-size: 11.5px; color: var(--fg-3); }

/* =========================================================
   お客様の声
   ========================================================= */
.voices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 46px; }
.voices--2 { grid-template-columns: repeat(2, 1fr); }

.sec--voice { border-top: 1px solid var(--line); }
.voice {
  margin: 0; padding: 32px 28px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: var(--bg-2); position: relative;
}
.voice::before {
  content: "“"; position: absolute; top: 4px; left: 20px;
  font-family: Georgia, serif; font-size: 62px; color: rgba(240,178,63,.22); line-height: 1;
}
.voice blockquote {
  margin: 18px 0 20px; font-size: 14.5px; line-height: 1.95; color: var(--fg);
}
.voice figcaption {
  font-size: 13px; color: var(--fg-2);
  padding-top: 14px; border-top: 1px solid var(--line);
}
.voice figcaption span { display: block; font-size: 11.5px; color: var(--fg-3); margin-top: 2px; }

/* =========================================================
   対応内容
   ========================================================= */
.sec--services { background: var(--bg-2); border-block: 1px solid var(--line); }
.services { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; margin-top: 46px; }
.service {
  padding: 28px 26px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255,255,255,.02);
  transition: border-color .3s var(--ease), transform .3s var(--ease);
}
.service:hover { border-color: rgba(240,178,63,.35); transform: translateY(-3px); }
.service h3 { font-size: 16.5px; margin-bottom: 10px; }
.service p { color: var(--fg-2); font-size: 14px; }
.service--main {
  grid-column: span 3;
  background: linear-gradient(120deg, rgba(240,178,63,.09), rgba(255,255,255,.02) 55%);
  border-color: rgba(240,178,63,.3);
}
.service--main h3 { font-size: 21px; }
.service--main p { font-size: 15px; }

/* =========================================================
   料金
   ========================================================= */
.prices { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin: 46px 0 30px; align-items: stretch; }
.price {
  position: relative;
  padding: 36px 28px 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: var(--bg-2);
  display: flex; flex-direction: column;
}
.price--reco {
  border-color: rgba(240,178,63,.5);
  background: linear-gradient(180deg, rgba(240,178,63,.1), rgba(255,255,255,.02) 60%);
  box-shadow: 0 24px 60px -34px rgba(240,178,63,.6);
}
.price__badge {
  position: absolute; top: -12px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--accent), var(--accent-2));
  color: #14100A; font-size: 11.5px; font-weight: 700; letter-spacing: .1em;
  padding: 5px 16px; border-radius: 999px; white-space: nowrap;
}
.price h3 { font-size: 18px; margin-bottom: 8px; }
.price__desc { color: var(--fg-2); font-size: 13.5px; margin-bottom: auto; padding-bottom: 24px; }
.price__val { font-family: var(--f-num); display: flex; align-items: baseline; flex-wrap: wrap; gap: 4px; }
.price__from { font-family: var(--f-jp); font-size: 12.5px; color: var(--fg-3); width: 100%; letter-spacing: .06em; }
.price__val strong { font-size: 40px; font-weight: 700; letter-spacing: -.02em; color: var(--fg); }
.price--reco .price__val strong { color: var(--accent); }
.price__unit { font-family: var(--f-jp); font-size: 15px; color: var(--fg-2); }

.price-notes {
  display: grid; gap: 9px;
  padding: 26px 30px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255,255,255,.02);
}
.price-notes li {
  position: relative; padding-left: 18px; font-size: 13.5px; color: var(--fg-2); line-height: 1.85;
}
.price-notes li::before {
  content: ""; position: absolute; left: 2px; top: 11px; width: 5px; height: 5px;
  border-radius: 50%; background: var(--fg-3);
}
.price-notes strong { color: var(--accent); }

/* =========================================================
   進め方
   ========================================================= */
.sec--flow { background: var(--bg-2); border-block: 1px solid var(--line); }
.flow {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; margin-top: 46px;
  counter-reset: step;
}
.flow__step {
  position: relative; padding: 30px 24px;
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255,255,255,.02);
}
.flow__step:not(:last-child)::after {
  content: ""; position: absolute; right: -13px; top: 50%; transform: translateY(-50%);
  width: 8px; height: 8px; border-top: 1.5px solid var(--fg-3); border-right: 1.5px solid var(--fg-3);
  rotate: 45deg;
}
.flow__no {
  display: grid; place-items: center;
  width: 34px; height: 34px; border-radius: 50%;
  border: 1px solid rgba(240,178,63,.45); color: var(--accent);
  font-family: var(--f-num); font-size: 15px; font-weight: 700;
  margin-bottom: 16px;
}
.flow__step h3 { font-size: 16.5px; margin-bottom: 8px; }
.flow__step p { color: var(--fg-2); font-size: 13.5px; line-height: 1.9; }
.flow__hl { display: block; margin-top: 8px; color: var(--accent); font-size: 12.5px; }
.flow__sample {
  margin-top: 26px; padding: 22px 26px;
  border: 1px solid rgba(240,178,63,.28); border-radius: var(--r);
  background: rgba(240,178,63,.05);
  font-size: 14px; color: var(--fg-2);
}
.flow__sample strong { color: var(--fg); }

/* =========================================================
   プロフィール
   ========================================================= */
.profile { display: grid; grid-template-columns: 1fr 1.05fr; gap: 48px; align-items: center; }
.profile__photo { position: relative; }
.profile__photo::before {
  content: ""; position: absolute; inset: -12% -6% -18%;
  background: radial-gradient(closest-side, rgba(240,178,63,.16), transparent 72%);
  pointer-events: none;
}
.profile__photo img {
  position: relative;
  width: 100%; height: auto;
  filter: drop-shadow(0 26px 40px rgba(0,0,0,.6));
}
.profile__body p { color: var(--fg-2); font-size: 15px; margin-bottom: 18px; }
.profile__body strong { color: var(--fg); }
.profile__en {
  display: block; font-size: 12.5px; letter-spacing: .18em; color: var(--fg-3);
  font-weight: 400; font-family: var(--f-num); margin-top: 6px;
}
.profile__spec {
  margin-top: 30px; border-top: 1px solid var(--line);
}
.profile__spec > div {
  display: grid; grid-template-columns: 130px 1fr; gap: 12px;
  padding: 13px 0; border-bottom: 1px solid var(--line);
}
.profile__spec dt { font-size: 12.5px; color: var(--fg-3); letter-spacing: .08em; }
.profile__spec dd { margin: 0; font-size: 14px; color: var(--fg-2); }

/* =========================================================
   FAQ
   ========================================================= */
.sec--faq { background: var(--bg-2); border-block: 1px solid var(--line); }
.faqs { display: grid; gap: 12px; margin-top: 46px; }
.faq {
  border: 1px solid var(--line); border-radius: var(--r);
  background: rgba(255,255,255,.02);
  transition: border-color .3s var(--ease);
}
.faq[open] { border-color: rgba(240,178,63,.35); }
.faq summary {
  list-style: none; cursor: pointer;
  padding: 22px 56px 22px 26px; position: relative;
  font-size: 15.5px; font-weight: 700;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: ""; position: absolute; right: 26px; top: 50%;
  width: 9px; height: 9px; margin-top: -6px;
  border-right: 1.5px solid var(--accent); border-bottom: 1.5px solid var(--accent);
  rotate: 45deg; transition: rotate .3s var(--ease);
}
.faq[open] summary::after { rotate: -135deg; margin-top: -2px; }
.faq p {
  padding: 0 26px 24px; color: var(--fg-2); font-size: 14.5px; margin: 0;
}

/* =========================================================
   CONTACT
   ========================================================= */
.sec--contact { padding-bottom: 120px; }
.contact {
  display: grid; grid-template-columns: 1fr 1.05fr; gap: 56px;
  padding: 52px;
  border: 1px solid rgba(240,178,63,.24); border-radius: 26px;
  background:
    radial-gradient(900px 380px at 12% 0%, rgba(240,178,63,.12), transparent 65%),
    var(--bg-2);
}
.contact__lead > p { color: var(--fg-2); font-size: 15px; }
.contact__direct { margin-top: 32px; display: grid; gap: 14px; }
.contact__direct li {
  display: flex; align-items: center; gap: 14px; flex-wrap: wrap;
  padding-bottom: 13px; border-bottom: 1px solid var(--line);
}
.contact__label {
  font-size: 11.5px; letter-spacing: .1em; color: var(--fg-3);
  min-width: 74px;
}
.contact__direct a { color: var(--accent); text-decoration: none; font-size: 14.5px; }
.contact__direct a:hover { text-decoration: underline; }
.contact__val { font-size: 14.5px; color: var(--fg-2); }
.contact__line { align-items: flex-start; }
.contact__qr {
  width: 122px; height: 122px; border-radius: 10px;
  background: #fff; padding: 6px;
}

.form {
  padding: 32px;
  border: 1px solid var(--line); border-radius: var(--r-lg);
  background: rgba(0,0,0,.28);
}
.form__note { font-size: 12.5px; color: var(--fg-3); margin-bottom: 20px; }
.field { margin-bottom: 16px; }
.field--half { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.field label {
  display: block; font-size: 12.5px; color: var(--fg-2); margin-bottom: 7px; letter-spacing: .06em;
}
.req {
  font-size: 10px; color: var(--accent); border: 1px solid var(--accent-dim);
  padding: 1px 6px; border-radius: 3px; margin-left: 6px; letter-spacing: .08em;
}
.field input, .field select, .field textarea {
  width: 100%; padding: 12px 14px;
  background: rgba(255,255,255,.04);
  border: 1px solid var(--line-2); border-radius: 9px;
  color: var(--fg); font-family: inherit; font-size: 14.5px;
  transition: border-color .25s, background .25s;
}
.field textarea { resize: vertical; line-height: 1.8; }
.field input::placeholder, .field textarea::placeholder { color: var(--fg-3); }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--accent); background: rgba(255,255,255,.06);
}
.field select { appearance: none; cursor: pointer; }
.field select option { background: var(--bg-3); color: var(--fg); }
.form__policy { margin-top: 14px; font-size: 11.5px; color: var(--fg-3); text-align: center; }
.form__status { margin-top: 12px; font-size: 12.5px; text-align: center; color: var(--fg-2); }
.form__status.is-ok { color: var(--accent); }
.form__status.is-err { color: #FF8B7A; }

/* =========================================================
   FOOTER
   ========================================================= */
.foot { border-top: 1px solid var(--line); padding: 34px 0; background: var(--bg-2); }
.foot__inner { display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap; }
.foot__brand { font-size: 13.5px; letter-spacing: .06em; }
.foot__copy { font-size: 12px; color: var(--fg-3); font-family: var(--f-num); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .sec { padding: 96px 0; }
  .hero { padding-top: 128px; }
  .problems, .pillars, .voices, .services, .prices, .flow, .thumbs { grid-template-columns: 1fr 1fr; }
  .service--main { grid-column: span 2; }
  .showcase, .profile, .contact, .results { grid-template-columns: 1fr; gap: 30px; }
  .contact { padding: 34px 26px; }
  .flow__step:not(:last-child)::after { display: none; }
  .profile__photo { max-width: 320px; }
}

@media (max-width: 620px) {
  body { font-size: 15px; }
  .pc { display: none; } .sp { display: inline; }
  .sec { padding: 76px 0; }
  .hero { padding-top: 110px; }
  .hero__cta .btn { width: 100%; }
  .eyebrow { font-size: 11.5px; letter-spacing: .12em; padding: 6px 14px; }
  .stats { grid-template-columns: 1fr 1fr; margin-top: 56px; }
  .stats__item:nth-child(2n) { border-right: 0; }
  .stats__item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .problems, .pillars, .voices, .services, .prices, .flow, .thumbs, .results, .field--half {
    grid-template-columns: 1fr;
  }
  .result { padding: 26px 20px; }
  .result__list li { grid-template-columns: 1fr; gap: 4px; }
  .result__v b { font-size: 19px; }
  .service--main { grid-column: span 1; }
  .sub-title { margin-top: 60px; }
  .curve { padding: 22px 16px 16px; }
  .curve__legend { gap: 12px; }
  .form { padding: 24px 20px; }
  .price--reco { margin-top: 14px; }
}
