@charset "UTF-8";

/* =========================================================
   マイブランディングサイト LP
   デザイントークン（色を変えたい時はここを編集）
   ========================================================= */
:root {
  --c-bg:        #ffffff;
  --c-surface:   #f5faf8;   /* セクション切替用のうっすら背景 */
  --c-deep:      #0A3D39;   /* 濃ティール：見出し・ヒーロー文字・フッター */
  --c-teal:      #14B8A6;   /* アクセント：ボタン・ライン */
  --c-teal-dk:   #0d8c80;
  --c-teal-tint: #E1F5EE;   /* 淡ティール：チップ等の背景 */
  --c-teal-ink:  #0F6E56;   /* 淡ティール上の文字 */
  --c-amber-tint:#FAEEDA;   /* i-grafx 担当タグ背景 */
  --c-amber-ink: #854F0B;
  --c-ink:       #243330;   /* 本文 */
  --c-mut:       #5f6f6c;   /* 補足文 */
  --c-line:      #e3eceb;

  --font-jp: "Noto Sans JP", system-ui, sans-serif;
  --font-en: "Outfit", "Noto Sans JP", sans-serif;

  --max-w: 1120px;
  --pad-x: clamp(20px, 5vw, 56px);
  --header-h: 68px;
  --radius: 12px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

/* ---------- reset / base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--font-jp);
  color: var(--c-ink);
  background: var(--c-bg);
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; }
a { color: inherit; text-decoration: none; }

/* ---------- buttons ---------- */
.btn {
  display: inline-block;
  font-weight: 700;
  line-height: 1;
  padding: 16px 28px;
  border-radius: 999px;
  border: 2px solid transparent;
  transition: transform .2s var(--ease), background-color .2s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.btn--primary {
  background: var(--c-deep);
  color: #fff;
  box-shadow: 0 10px 24px rgba(10,61,57,.22);
}
.btn--primary:hover { background: var(--c-teal); color: #04342C; transform: translateY(-2px); }
.btn--ghost {
  background: transparent;
  color: var(--c-deep);
  border-color: var(--c-line);
}
.btn--ghost:hover { border-color: var(--c-teal); color: var(--c-teal-dk); transform: translateY(-2px); }

/* =========================================================
   HEADER（固定・スクロールで背景が出る）
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  transition: background-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header__inner {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(255,255,255,.92);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: 0 1px 0 rgba(10,61,57,.08);
}

.brand { display: inline-flex; align-items: center; gap: 9px; }
.brand__dot { width: 11px; height: 11px; border-radius: 50%; background: var(--c-teal); }
.brand__name { font-weight: 700; color: var(--c-deep); letter-spacing: .01em; font-size: 17px; }

.nav { display: flex; align-items: center; gap: 26px; }
.nav a { font-size: 14px; font-weight: 500; color: var(--c-deep); transition: color .2s var(--ease); }
.nav a:hover { color: var(--c-teal); }
.nav__cta {
  background: var(--c-teal-tint);
  color: var(--c-teal-ink) !important;
  padding: 9px 16px;
  border-radius: 999px;
}
.nav__cta:hover { background: var(--c-teal); color: #04342C !important; }

.nav-toggle { display: none; }

/* =========================================================
   HERO
   ========================================================= */
.hero { position: relative; width: 100%; overflow: hidden; }
.hero__media { line-height: 0; }
.hero__img { width: 100%; height: auto; display: block; }

/* 文字オーバーレイ：画像に対する％で配置（オーバーレイ手法） */
.hero__copy {
  position: absolute;
  left: 50%;
  top: 22%;
  transform: translateX(-50%);
  width: min(900px, 88%);
  text-align: center;
  z-index: 2;
}
/* 文字を画像から浮かせる、ごく淡い白のにじみ */
.hero__copy::before {
  content: "";
  position: absolute;
  inset: -10% -8%;
  background: radial-gradient(62% 72% at 50% 42%, rgba(255,255,255,.66), rgba(255,255,255,0) 72%);
  z-index: -1;
}

.hero__kicker {
  font-family: var(--font-en);
  font-weight: 600;
  letter-spacing: .14em;
  color: var(--c-teal-ink);
  font-size: clamp(12px, 1.5vw, 15px);
  margin: 0 0 14px;
}
.hero__title {
  margin: 0;
  color: var(--c-deep);
  font-weight: 700;
  line-height: 1.34;
  font-size: clamp(26px, 4.6vw, 52px);
  letter-spacing: .01em;
  word-break: keep-all;
}
.hero__mark { box-shadow: inset 0 -.18em 0 rgba(20,184,166,.28); }
.hero__sub {
  margin: 18px 0 28px;
  color: var(--c-deep);
  font-weight: 500;
  font-size: clamp(13px, 2vw, 18px);
}

/* スクロール誘導 */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: 22px;
  transform: translateX(-50%);
  width: 26px; height: 42px;
  border: 2px solid rgba(10,61,57,.45);
  border-radius: 999px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute;
  left: 50%; top: 9px;
  width: 4px; height: 8px;
  margin-left: -2px;
  background: var(--c-deep);
  border-radius: 2px;
  animation: heroScroll 1.8s var(--ease) infinite;
}
@keyframes heroScroll {
  0% { opacity: 0; transform: translateY(0); }
  35% { opacity: 1; }
  70% { opacity: 0; transform: translateY(12px); }
  100% { opacity: 0; }
}

.hero__cta-sp { display: none; }

.sp-only { display: none; }

/* =========================================================
   ロード時の段階表示（ヒーロー）
   ========================================================= */
.hero__kicker, .hero__title, .hero__sub, .hero__copy .btn {
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
body.is-loaded .hero__kicker { opacity: 1; transform: none; transition-delay: .05s; }
body.is-loaded .hero__title  { opacity: 1; transform: none; transition-delay: .18s; }
body.is-loaded .hero__sub    { opacity: 1; transform: none; transition-delay: .32s; }
body.is-loaded .hero__copy .btn { opacity: 1; transform: none; transition-delay: .46s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 900px) {
  .hero__copy { top: 19%; }
}

@media (max-width: 640px) {
  :root { --header-h: 60px; }
  .nav {
    position: absolute;
    top: var(--header-h);
    right: 0;
    left: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    box-shadow: 0 12px 24px rgba(10,61,57,.10);
    padding: 8px 0;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px var(--pad-x); border-top: 1px solid var(--c-line); }
  .nav a:first-child { border-top: 0; }
  .nav__cta { margin: 8px var(--pad-x); text-align: center; }

  .nav-toggle {
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 40px; height: 40px;
    background: none; border: 0; cursor: pointer;
  }
  .nav-toggle span {
    display: block; height: 2px; width: 24px;
    background: var(--c-deep); border-radius: 2px;
    transition: transform .25s var(--ease), opacity .2s var(--ease);
  }
  .nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
  .nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* スマホ：横長画像を縦にカバー表示（縦画像が出来たら picture を有効化） */
  /* スマホ：縦画像のオーバーレイ（写真帯 39.4%〜82% を測定して配置） */
  .hero__img { height: auto; }
  .hero__copy {
    top: 0; left: 0; right: 0;
    width: 100%; height: 39.4%;
    transform: none;
    display: flex; flex-direction: column; justify-content: center;
    padding: var(--header-h) 7% 0;
  }
  .hero__copy::before { display: none; }
  .hero__copy .btn { display: none; }
  .hero__title { font-size: clamp(21px, 6vw, 27px); line-height: 1.32; }
  .hero__sub { margin: 12px 0 0; }
  .hero__cta-sp {
    display: flex; align-items: center; justify-content: center;
    position: absolute; left: 0; right: 0; top: 82%; bottom: 0;
    padding: 0 7%;
  }
  .hero__cta-sp .btn {
    width: min(86%, 360px); text-align: center;
    padding-left: 0; padding-right: 0;
  }
  .hero__scroll { display: none; }
  .sp-only { display: inline; }
}

/* ---------- a11y ---------- */
:focus-visible { outline: 3px solid var(--c-teal); outline-offset: 2px; border-radius: 4px; }

/* =========================================================
   SECTIONS（共通）
   ========================================================= */
.section { padding: clamp(56px, 9vw, 100px) 0; }
.section--surface { background: var(--c-surface); }
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--pad-x); }

.section__head { text-align: center; margin-bottom: clamp(36px, 5vw, 52px); }
.section__title {
  margin: 0;
  color: var(--c-deep);
  font-weight: 700;
  font-size: clamp(24px, 3.4vw, 36px);
  line-height: 1.5;
}
.section__title::after {
  content: "";
  display: block;
  width: 48px; height: 3px;
  margin: 16px auto 0;
  background: var(--c-teal);
  border-radius: 3px;
}
.section__lead {
  margin: 16px auto 0;
  max-width: 640px;
  color: var(--c-mut);
  font-size: clamp(14px, 1.8vw, 16px);
}

/* 02 こんな方に */
.who__grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}
.who__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 14px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 30px 20px;
}
.who__card:hover {
  border-color: var(--c-teal);
  box-shadow: 0 10px 24px rgba(10,61,57,.09);
  transition-delay: 0s;
}
.who__card p {
  margin: 0;
  font-weight: 500;
  color: var(--c-ink);
  font-size: clamp(14px, 1.8vw, 16px);
}
.who__icon {
  flex: none;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: var(--c-teal-tint);
  color: var(--c-teal-ink);
  display: flex; align-items: center; justify-content: center;
}
.who__icon svg { width: 28px; height: 28px; }

/* 03 マイブラ・サイトとは */
.feature__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}
.feature__card {
  display: flex;
  gap: 18px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 26px;
}
.feature__card:hover {
  border-color: var(--c-teal);
  box-shadow: 0 10px 24px rgba(10,61,57,.09);
  transition-delay: 0s;
}
.feature__icon {
  flex: none;
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--c-teal-tint);
  color: var(--c-teal-ink);
  display: flex; align-items: center; justify-content: center;
}
.feature__icon svg { width: 28px; height: 28px; }
.feature__body h3 {
  margin: 0 0 6px;
  font-size: 17px;
  font-weight: 700;
  color: var(--c-deep);
}
.feature__body p {
  margin: 0;
  color: var(--c-mut);
  font-size: 14.5px;
  line-height: 1.75;
}
.feature__card:nth-child(2) { transition-delay: .08s; }
.feature__card:nth-child(3) { transition-delay: .16s; }
.feature__card:nth-child(4) { transition-delay: .24s; }

/* 04 低コストの秘密 */
.secret__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  max-width: 940px;
  margin: 0 auto;
}
.secret__card {
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 32px;
}
.secret__card:hover {
  border-color: var(--c-teal);
  box-shadow: 0 10px 24px rgba(10,61,57,.09);
  transition-delay: 0s;
}
.secret__head {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.secret__num {
  flex: none;
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--c-deep);
  color: var(--c-teal-tint);
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  display: flex; align-items: center; justify-content: center;
}
.secret__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-deep);
}
.secret__card p {
  margin: 0;
  color: var(--c-mut);
  line-height: 1.85;
  font-size: 15px;
}
.secret__card:nth-child(2) { transition-delay: .08s; }
.secret__cta {
  text-align: center;
  margin-top: clamp(32px, 4vw, 44px);
}
.secret__cta p {
  margin: 0 0 18px;
  color: var(--c-deep);
  font-weight: 500;
  font-size: clamp(15px, 2vw, 18px);
}

/* 05 制作手順 */
.flow__legend {
  display: flex; flex-wrap: wrap; justify-content: center;
  gap: 10px 22px; margin-top: 18px;
}
.flow__legend-item {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13px; color: var(--c-mut);
}
.tag {
  display: inline-block;
  font-size: 12px; font-weight: 500;
  padding: 3px 11px; border-radius: 999px;
  white-space: nowrap;
}
.tag--n { background: var(--c-teal-tint); color: var(--c-teal-ink); }
.tag--i { background: var(--c-amber-tint); color: var(--c-amber-ink); }

.flow__list {
  list-style: none;
  max-width: none;
  margin: 0;
  padding: 0;
}
.flow__item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 20px;
  padding-bottom: 28px;
}
.flow__item::before {
  content: "";
  position: absolute;
  left: 25px; top: 0; height: 100%;
  width: 2px;
  background: var(--c-line);
}
.flow__item:last-child { padding-bottom: 0; }
.flow__item:last-child::before { display: none; }
.flow__num {
  position: relative;
  z-index: 1;
  width: 52px; height: 52px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-weight: 700; font-size: 19px;
}
.flow__num--n { background: var(--c-teal-tint); color: var(--c-teal-ink); }
.flow__num--i { background: var(--c-amber-tint); color: var(--c-amber-ink); }
.flow__content { padding-top: 5px; }
.flow__content h3 {
  margin: 0 0 8px;
  font-size: 16.5px; font-weight: 700; color: var(--c-deep);
}
.flow__item:nth-child(2) { transition-delay: .06s; }
.flow__item:nth-child(3) { transition-delay: .12s; }
.flow__item:nth-child(4) { transition-delay: .18s; }
.flow__item:nth-child(5) { transition-delay: .24s; }
.flow__closing {
  text-align: center;
  margin-top: clamp(28px, 4vw, 40px);
  color: var(--c-teal-ink);
  font-weight: 700;
  font-size: clamp(16px, 2.4vw, 20px);
}
.flow__layout {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(32px, 5vw, 56px);
  align-items: center;
}
.flow__panel {
  background: var(--c-deep);
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 40px);
  color: #fff;
}
.flow__panel h3 {
  margin: 0 0 12px;
  font-size: clamp(18px, 2.4vw, 22px);
  font-weight: 700;
  color: #fff;
}
.flow__panel > p {
  margin: 0 0 18px;
  color: var(--c-teal-tint);
  line-height: 1.9;
  font-size: 14.5px;
}
.flow__points { list-style: none; margin: 0; padding: 0; }
.flow__points li {
  display: flex; gap: 10px; align-items: flex-start;
  color: #E1F5EE; font-size: 14px; line-height: 1.7;
  padding: 5px 0;
}
.flow__points svg { width: 18px; height: 18px; color: #5DCAA5; flex: none; margin-top: 4px; }
.flow__closing-sub {
  text-align: center;
  margin: 8px 0 0;
  color: var(--c-mut);
  font-size: clamp(14px, 1.8vw, 16px);
}

/* 06 料金プラン */
.plans {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.plan {
  display: flex;
  flex-direction: column;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  overflow: hidden;
}
.plan--feature { border: 2px solid var(--c-teal); }
.plan__header { text-align: center; padding: 24px; position: relative; }
.plan--light .plan__header { background: var(--c-teal-tint); }
.plan--feature .plan__header { background: var(--c-deep); padding-top: 34px; }
.plan__badge {
  position: absolute; top: 12px; left: 50%; transform: translateX(-50%);
  background: var(--c-teal); color: #04342C;
  font-size: 11px; font-weight: 700; letter-spacing: .06em;
  padding: 3px 12px; border-radius: 999px;
}
.plan__name { margin: 0; font-size: 18px; font-weight: 700; letter-spacing: .02em; }
.plan--light .plan__name { color: var(--c-deep); }
.plan--feature .plan__name { color: #fff; }
.plan__label { margin: 12px 0 2px; font-size: 12px; letter-spacing: .06em; }
.plan--light .plan__label { color: var(--c-teal-ink); }
.plan--feature .plan__label { color: var(--c-teal-tint); }
.plan__price {
  margin: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(30px, 5vw, 42px);
  line-height: 1.05;
}
.plan--light .plan__price { color: var(--c-deep); }
.plan--feature .plan__price { color: #fff; }
.plan__price .from { font-size: .42em; font-weight: 500; margin-left: 2px; }
.plan--light .plan__price .from { color: var(--c-teal-ink); }
.plan--feature .plan__price .from { color: var(--c-teal-tint); }
.plan__body { padding: 24px 26px 28px; display: flex; flex-direction: column; flex: 1; }
.plan__for { margin: 0 0 18px; font-size: 13.5px; color: var(--c-mut); line-height: 1.75; }
.plan__incl-title { margin: 0 0 12px; font-size: 14px; font-weight: 700; color: var(--c-deep); }
.plan__incl { list-style: none; margin: 0 0 16px; padding: 0; }
.plan__incl li {
  display: flex; gap: 10px; align-items: flex-start;
  padding: 6px 0; font-size: 14px; color: var(--c-ink);
}
.plan__incl svg { width: 18px; height: 18px; color: var(--c-teal); flex: none; margin-top: 4px; }
.plan__exclude { margin: 0 0 18px; font-size: 12px; color: var(--c-mut); line-height: 1.75; }
.plan .btn { display: block; text-align: center; margin-top: auto; }

.opt__head { text-align: center; margin: clamp(44px, 6vw, 64px) 0 24px; }
.opt__head h3 {
  margin: 0 0 8px;
  font-size: clamp(18px, 2.6vw, 24px);
  color: var(--c-deep);
  font-weight: 700;
}
.opt__head p { margin: 0; color: var(--c-mut); font-size: 14.5px; }
.opt__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 12px;
  max-width: 940px;
  margin: 0 auto;
}
.opt__card {
  display: flex; align-items: center; gap: 12px;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  padding: 14px 18px;
}
.opt__plus {
  flex: none; width: 26px; height: 26px; border-radius: 50%;
  background: var(--c-teal-tint); color: var(--c-teal-ink);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 16px; line-height: 1;
}
.opt__name { flex: 1; font-size: 14px; color: var(--c-ink); font-weight: 500; }
.opt__price { font-size: 12px; color: var(--c-mut); white-space: nowrap; }
.opt__note { text-align: center; margin-top: 20px; font-size: 13px; color: var(--c-mut); }

/* 07 テンプレート活用事例 */
.case__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}
.case__card {
  display: block;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: var(--radius);
  overflow: hidden;
  color: inherit;
}
.case__card:hover {
  border-color: var(--c-teal);
  box-shadow: 0 10px 24px rgba(10,61,57,.09);
  transition-delay: 0s;
}
.case__thumb { aspect-ratio: 4 / 3; overflow: hidden; background: var(--c-teal-tint); }
.case__thumb img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .4s var(--ease);
}
.case__card:hover .case__thumb img { transform: scale(1.04); }
.case__info { padding: 16px 18px 18px; }
.case__cat {
  display: inline-block;
  font-size: 11.5px; color: var(--c-teal-ink);
  background: var(--c-teal-tint);
  padding: 2px 9px; border-radius: 999px;
  margin-bottom: 8px;
}
.case__title { margin: 0 0 6px; font-size: 15.5px; font-weight: 700; color: var(--c-deep); line-height: 1.5; }
.case__desc { margin: 0 0 12px; font-size: 13px; color: var(--c-mut); line-height: 1.7; }
.case__link { display: inline-flex; align-items: center; gap: 5px; font-size: 13px; color: var(--c-teal-ink); font-weight: 500; }
.case__link svg { width: 14px; height: 14px; }
.case__card:nth-child(2) { transition-delay: .06s; }
.case__card:nth-child(3) { transition-delay: .12s; }
.case__card:nth-child(4) { transition-delay: .18s; }
.case__card:nth-child(5) { transition-delay: .24s; }
.case__card:nth-child(6) { transition-delay: .30s; }

/* 08 代表プロフィール */
.profile {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(26px, 4vw, 46px);
  max-width: 880px;
  margin: 0 auto;
  align-items: start;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
}
.profile__photo { border-radius: 12px; overflow: hidden; aspect-ratio: 4 / 5; background: var(--c-teal-tint); }
.profile__photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.profile__role { margin: 0 0 4px; font-size: 13px; color: var(--c-teal-ink); font-weight: 500; }
.profile__name { margin: 0 0 14px; font-size: clamp(22px, 3vw, 28px); font-weight: 700; color: var(--c-deep); letter-spacing: .02em; }
.profile__badge {
  display: inline-block;
  font-size: 12.5px; font-weight: 700;
  color: var(--c-teal-ink); background: var(--c-teal-tint);
  padding: 5px 12px; border-radius: 999px;
}
.profile__bio { margin: 16px 0 20px; color: var(--c-ink); line-height: 1.9; font-size: 14.5px; }
.profile__creds { list-style: none; margin: 0; padding: 0; }
.profile__creds li {
  position: relative;
  padding: 5px 0 5px 18px;
  font-size: 13.5px; color: var(--c-mut); line-height: 1.7;
}
.profile__creds li::before {
  content: ""; position: absolute; left: 0; top: 12px;
  width: 7px; height: 7px; border-radius: 50%; background: var(--c-teal);
}

/* 09 お問い合わせ */
.cform {
  max-width: 620px;
  margin: 0 auto;
  background: var(--c-bg);
  border: 1px solid var(--c-line);
  border-radius: 16px;
  padding: clamp(24px, 4vw, 40px);
  box-shadow: 0 12px 34px rgba(10,61,57,.06);
}
.cform__row { margin-bottom: 18px; }
.cform__label { display: block; font-size: 13.5px; font-weight: 700; color: var(--c-deep); margin-bottom: 7px; }
.cform__label .req {
  font-size: 11px; font-weight: 700; color: var(--c-amber-ink);
  background: var(--c-amber-tint); padding: 1px 8px; border-radius: 999px;
  margin-left: 7px; vertical-align: middle;
}
.cform__label .opt { font-size: 11px; font-weight: 500; color: var(--c-mut); margin-left: 7px; }
.cform__input {
  width: 100%; font: inherit; font-size: 15px; color: var(--c-ink);
  background: var(--c-surface); border: 1px solid var(--c-line); border-radius: 10px;
  padding: 12px 14px; transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.cform__input::placeholder { color: #9fb0ac; }
.cform__input:focus { outline: none; border-color: var(--c-teal); box-shadow: 0 0 0 3px rgba(20,184,166,.15); }
textarea.cform__input { resize: vertical; min-height: 130px; line-height: 1.7; }
.cform__note { font-size: 12px; color: var(--c-mut); margin: 2px 0 18px; line-height: 1.7; }
.cform__submit { width: 100%; }

/* 10 フッター */
.footer { background: var(--c-deep); color: rgba(255,255,255,.82); }
.footer__inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  padding: clamp(40px, 6vw, 64px) var(--pad-x);
  max-width: var(--max-w);
  margin: 0 auto;
}
.footer__title { margin: 0 0 6px; font-size: 20px; font-weight: 800; color: #fff; letter-spacing: .01em; }
.footer__teams { margin: 0 0 16px; font-size: 13px; color: var(--c-teal-tint); letter-spacing: .04em; }
.footer__about { margin: 0; max-width: 480px; font-size: 13.5px; line-height: 1.95; color: rgba(255,255,255,.72); }
.footer__nav { display: flex; flex-direction: column; gap: 12px; }
.footer__nav a { color: rgba(255,255,255,.82); font-size: 14px; }
.footer__nav a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.12); }
.footer__bottom .container { padding-top: 16px; padding-bottom: 16px; }
.footer__bottom p { margin: 0; font-size: 12px; color: rgba(255,255,255,.55); }

/* スクロール表示 */
.js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s var(--ease), transform .6s var(--ease), border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.reveal.in { opacity: 1; transform: none; }
.who__card:nth-child(2) { transition-delay: .08s; }
.who__card:nth-child(3) { transition-delay: .16s; }
.who__card:nth-child(4) { transition-delay: .24s; }

@media (max-width: 900px) {
  .who__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .flow__layout { grid-template-columns: 1fr; gap: 32px; }
}
@media (max-width: 640px) {
  .who__grid { grid-template-columns: 1fr; }
  .who__card { flex-direction: row; align-items: center; text-align: left; gap: 16px; padding: 18px 22px; }
  .feature__grid { grid-template-columns: 1fr; }
  .secret__grid { grid-template-columns: 1fr; }
  .flow__item { grid-template-columns: 44px 1fr; gap: 16px; }
  .flow__num { width: 44px; height: 44px; font-size: 17px; }
  .flow__item::before { left: 21px; }
  .plans { grid-template-columns: 1fr; }
  .profile { grid-template-columns: 1fr; }
  .profile__photo { max-width: 220px; margin: 0 auto; }
  .profile__body { text-align: center; }
  .profile__creds { text-align: left; display: inline-block; }
  .footer__inner { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- a11y ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .hero__kicker, .hero__title, .hero__sub, .hero__copy .btn { opacity: 1; transform: none; }
  .js .reveal { opacity: 1; transform: none; }
}
