/* =========================================================================
   EDITPRO ── 企業向け動画スクール LP
   SKMT株式会社
   デザイン: エディトリアル / 白基調 × 紫アクセント × 墨黒
   実写主体・余白とタイポで見せる、映像制作会社らしい品格
   ========================================================================= */

/* ---------- Tokens ---------- */
:root {
  --white:   #ffffff;
  --paper:   #f5f4f8;   /* 薄いグレー */
  --paper-2: #efedf4;
  --ink:     #181520;   /* 墨黒（やや温かみ） */
  --ink-2:   #3a3646;
  --muted:   #6f6b7a;
  --faint:   #9b97a6;
  --line:    #e6e4ec;
  --line-2:  #d9d6e2;

  --purple:  #5a31c4;   /* 基調アクセント（落ち着いた紫） */
  --purple-d:#3d2192;   /* 濃紫 */
  --purple-l:#8b6df0;
  --wash:    #f2eefb;   /* 紫の極薄ウォッシュ */
  --nightbg: #161020;   /* 暗い紫みの黒 */

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

  --maxw: 1180px;
  --gutter: clamp(20px, 5vw, 60px);
  --r: 8px;          /* 角丸は控えめ */
  --r-lg: 12px;
  --header-h: 66px;
  --ease: cubic-bezier(.22,.61,.36,1);
}

*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-jp);
  color: var(--ink);
  background: var(--white);
  line-height: 1.85;
  font-size: 15px;
  letter-spacing: .015em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }
::selection { background: var(--purple); color: #fff; }
:focus-visible { outline: 2px solid var(--purple); outline-offset: 2px; }

/* ---------- Layout ---------- */
.container { width: 100%; max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(60px, 9vw, 116px); position: relative; }
.section--paper { background: var(--paper); }
.section--wash { background: var(--wash); }
.section--dark { background: var(--nightbg); color: #fff; }

/* section head：左寄せのエディトリアル見出し */
.head { max-width: 720px; margin-bottom: clamp(34px,5vw,54px); }
.head--center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-en); font-weight: 600; font-size: 12px;
  letter-spacing: .2em; text-transform: uppercase; color: var(--purple);
  margin-bottom: 16px;
}
.eyebrow::before { content: ""; width: 24px; height: 1px; background: var(--purple); }
.head--center .eyebrow::before { display: none; }
.section--dark .eyebrow { color: var(--purple-l); }
.title {
  font-size: clamp(24px, 4vw, 39px); font-weight: 800; line-height: 1.42;
  letter-spacing: .005em; color: var(--ink);
}
.section--dark .title { color: #fff; }
.title .pp { color: var(--purple); }
.section--dark .title .pp { color: var(--purple-l); }
.lead { color: var(--muted); margin-top: 18px; font-size: clamp(14px,2.4vw,16px); line-height: 1.95; }
.section--dark .lead { color: rgba(255,255,255,.78); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  font-weight: 700; font-size: 15px; letter-spacing: .01em;
  padding: 15px 26px; border-radius: 6px; transition: background .2s, color .2s, border-color .2s, transform .2s var(--ease);
}
.btn__arrow { transition: transform .2s var(--ease); }
.btn:hover .btn__arrow { transform: translateX(3px); }
.btn--primary { background: var(--purple); color: #fff; }
.btn--primary:hover { background: var(--purple-d); }
.btn--ghost { background: transparent; color: var(--ink); border: 1px solid var(--line-2); }
.btn--ghost:hover { border-color: var(--ink); }
.btn--lg { padding: 17px 32px; font-size: 16px; }
.btn--block { width: 100%; }
.section--dark .btn--ghost, .hero .btn--ghost { color: #fff; border-color: rgba(255,255,255,.4); }
.section--dark .btn--ghost:hover, .hero .btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,.08); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; inset: 0 0 auto 0; height: var(--header-h); z-index: 100;
  display: flex; align-items: center; transition: background .3s, border-color .3s;
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled { background: rgba(255,255,255,.9); backdrop-filter: saturate(150%) blur(10px); border-bottom-color: var(--line); }
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 16px; }
.brand { display: flex; align-items: baseline; gap: 9px; }
.brand__name { font-family: var(--font-en); font-size: 20px; font-weight: 800; letter-spacing: .06em; color: var(--ink); }
.brand__by { font-size: 10px; color: var(--muted); letter-spacing: .08em; display: none; }
/* ヒーロー先頭の透明ヘッダー時は白文字 */
.site-header:not(.is-scrolled) .brand__name { color: #fff; }
.site-header:not(.is-scrolled) .hnav a { color: rgba(255,255,255,.86); }
.site-header:not(.is-scrolled) .brand__by { color: rgba(255,255,255,.6); }
.hnav { display: none; align-items: center; gap: 26px; }
.hnav a { font-size: 13px; color: var(--ink-2); font-weight: 500; transition: color .2s; }
.hnav a:hover { color: var(--purple); }
.hnav__cta { font-size: 13px; padding: 9px 18px; border: 1px solid var(--purple); border-radius: 5px; color: var(--purple) !important; font-weight: 700; }
.site-header:not(.is-scrolled) .hnav__cta { color: #fff !important; border-color: rgba(255,255,255,.6); }
.hnav__cta:hover { background: var(--purple); color: #fff !important; border-color: var(--purple); }
.burger { display: inline-flex; flex-direction: column; gap: 5px; padding: 10px; }
.burger span { width: 22px; height: 2px; background: var(--ink); transition: transform .3s var(--ease), opacity .2s; }
.site-header:not(.is-scrolled) .burger span { background: #fff; }
.burger.is-open span { background: var(--ink); }
.burger.is-open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.burger.is-open span:nth-child(2){ opacity: 0; }
.burger.is-open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }
.drawer {
  position: fixed; inset: var(--header-h) 0 auto 0; z-index: 99;
  background: #fff; border-bottom: 1px solid var(--line);
  padding: 10px var(--gutter) 22px; display: flex; flex-direction: column;
  transform: translateY(-12px); opacity: 0; visibility: hidden; transition: all .28s var(--ease);
}
.drawer.is-open { transform: none; opacity: 1; visibility: visible; }
.drawer a { padding: 13px 2px; border-bottom: 1px solid var(--line); font-weight: 500; font-size: 15px; }
.drawer .btn { margin-top: 16px; }

/* ---------- HERO（実写・フルブリード）---------- */
.hero { position: relative; min-height: clamp(560px, 92vh, 860px); display: flex; align-items: flex-end; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(15,10,28,.55) 0%, rgba(15,10,28,.30) 35%, rgba(15,10,28,.86) 100%),
    linear-gradient(90deg, rgba(36,20,82,.55), transparent 55%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding-block: clamp(40px,7vw,86px); padding-top: calc(var(--header-h) + 30px); }
.hero__tag {
  display: inline-flex; align-items: center; gap: 9px; font-size: 12.5px; font-weight: 600;
  letter-spacing: .04em; color: #fff; border: 1px solid rgba(255,255,255,.35);
  padding: 7px 15px; border-radius: 4px; backdrop-filter: blur(4px);
}
.hero__copy { font-size: clamp(30px, 6.6vw, 60px); font-weight: 800; line-height: 1.28; letter-spacing: .01em; margin-top: 22px; max-width: 17em; text-shadow: 0 2px 30px rgba(0,0,0,.35); }
.hero__copy .pp { color: var(--purple-l); }
.hero__sub { margin-top: 22px; color: rgba(255,255,255,.9); font-size: clamp(14px,2.7vw,17px); line-height: 1.95; max-width: 36em; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.hero__chip { font-size: 12.5px; font-weight: 600; color: #fff; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.22); border-radius: 4px; padding: 7px 13px; backdrop-filter: blur(4px); }
.hero__chip b { color: var(--purple-l); font-family: var(--font-en); font-weight: 700; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 30px; }
.hero__note { margin-top: 16px; font-size: 12px; color: rgba(255,255,255,.7); }

/* ---------- 課題提起 / 3つの壁 ---------- */
.walls { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-top: 6px; }
.wall { background: #fff; padding: clamp(26px,4vw,38px); position: relative; transition: background .25s; }
.wall:hover { background: var(--paper); }
.wall__no { font-family: var(--font-en); font-size: 40px; font-weight: 800; color: var(--line-2); line-height: 1; letter-spacing: 0; }
.wall__title { font-size: clamp(18px,3.2vw,22px); font-weight: 800; margin: 12px 0 8px; }
.wall__title .em { color: var(--purple); }
.wall__sub { font-weight: 700; color: var(--ink-2); font-size: 14px; margin-bottom: 8px; }
.wall__desc { color: var(--muted); font-size: 14px; line-height: 1.9; }
.walls-foot { margin-top: 28px; font-size: clamp(15px,2.6vw,18px); font-weight: 700; line-height: 1.8; }
.walls-foot span { color: var(--purple); }

/* ---------- 動画PRの必要性 ---------- */
.power { display: grid; gap: clamp(28px,4vw,52px); align-items: center; }
.power__media { position: relative; }
.power__media img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; }
.power__body p { color: var(--ink-2); font-size: clamp(14px,2.6vw,16px); line-height: 2; }
.power__body p + p { margin-top: 16px; }
.stat-card { margin-top: 26px; border-left: 3px solid var(--purple); padding: 6px 0 6px 22px; }
.stat-card .lbl { font-size: 13px; color: var(--muted); font-weight: 700; }
.stat-card .big { font-family: var(--font-en); font-size: clamp(38px,7vw,60px); font-weight: 800; line-height: 1.02; margin: 4px 0 2px; color: var(--ink); letter-spacing: 0; }
.stat-card .big small { font-size: .34em; font-weight: 800; margin-left: 8px; color: var(--purple); font-family: var(--font-jp); }
.stat-card .sub { font-size: 13.5px; color: var(--muted); }
.stat-card .src { font-size: 11px; color: var(--faint); margin-top: 8px; }

/* ---------- EDITPROとは ---------- */
.about { display: grid; gap: clamp(28px,4vw,52px); align-items: center; }
.about__media img { width: 100%; height: auto; border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; }
.about__name { font-family: var(--font-en); font-size: clamp(30px,6vw,46px); font-weight: 800; color: var(--ink); letter-spacing: .01em; }
.about__name small { display: block; font-family: var(--font-jp); font-size: 13px; font-weight: 700; color: var(--purple); letter-spacing: .1em; margin-top: 4px; }
.about__body { color: var(--ink-2); font-size: clamp(14px,2.6vw,16px); line-height: 2.05; margin-top: 18px; }
.about__points { display: flex; flex-direction: column; gap: 0; margin-top: 22px; border-top: 1px solid var(--line); }
.about__points li { font-size: 14px; font-weight: 600; color: var(--ink); padding: 13px 0 13px 26px; border-bottom: 1px solid var(--line); position: relative; }
.about__points li::before { content: ""; position: absolute; left: 2px; top: 19px; width: 10px; height: 10px; background: var(--purple); border-radius: 2px; }

/* ---------- 3つの特徴 ---------- */
.features { display: grid; gap: 22px; }
.feature { padding: clamp(8px,2vw,14px) 0; }
.feature__icon { width: 50px; height: 50px; border: 1px solid var(--line-2); border-radius: 8px; display: grid; place-items: center; margin-bottom: 18px; }
.feature__icon svg { width: 26px; height: 26px; stroke: var(--purple); fill: none; stroke-width: 1.8; }
.feature__no { font-family: var(--font-en); font-size: 12px; font-weight: 700; color: var(--purple); letter-spacing: .14em; }
.feature__title { font-size: clamp(17px,3vw,20px); font-weight: 800; margin: 6px 0 10px; line-height: 1.5; }
.feature__desc { color: var(--muted); font-size: 14px; line-height: 1.95; }
.feature + .feature { border-top: 1px solid var(--line); }

/* ---------- カリキュラム ---------- */
.curriculum { display: grid; gap: 20px; }
.day { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.day__head { background: var(--ink); color: #fff; padding: 16px clamp(22px,3.5vw,28px); display: flex; align-items: baseline; gap: 14px; }
.day__label { font-family: var(--font-en); font-size: 20px; font-weight: 800; letter-spacing: .05em; }
.day__sub { font-size: 12.5px; color: rgba(255,255,255,.7); }
.day__body { padding: clamp(18px,3vw,26px) clamp(22px,3.5vw,28px); }
.coma { display: flex; gap: 14px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.coma:last-child { border-bottom: none; }
.coma__n { flex: none; width: 30px; height: 30px; border-radius: 6px; background: var(--wash); color: var(--purple); font-family: var(--font-en); font-weight: 800; font-size: 13px; display: grid; place-items: center; }
.coma__t { font-weight: 700; font-size: 15px; padding-top: 3px; }
.support-grid { display: grid; gap: 18px; margin-top: 20px; }
.support { border: 1px solid var(--line); background: #fff; border-radius: var(--r-lg); padding: clamp(22px,3.5vw,28px); }
.support--accent { background: var(--wash); border-color: var(--line-2); }
.support h4 { font-size: 15px; font-weight: 800; margin-bottom: 12px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.support--accent h4 { border-color: var(--line-2); }
.support ul li { position: relative; padding-left: 20px; font-size: 14px; color: var(--ink-2); margin: 9px 0; }
.support ul li::before { content: ""; position: absolute; left: 2px; top: 9px; width: 8px; height: 5px; border-left: 2px solid var(--purple); border-bottom: 2px solid var(--purple); transform: rotate(-45deg); }

/* ---------- 内製化メリット ---------- */
.merits { display: grid; gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; }
.merit { background: #fff; padding: clamp(22px,3vw,30px); transition: background .25s; }
.merit:hover { background: var(--paper); }
.merit__ic { font-family: var(--font-en); font-weight: 700; color: var(--purple); font-size: 12px; letter-spacing: .1em; }
.merit__t { font-size: 16px; font-weight: 800; margin: 8px 0 6px; }
.merit__d { font-size: 13.5px; color: var(--muted); }

/* ---------- なぜSKMT ---------- */
.reasons { display: grid; gap: 0; border-top: 1px solid rgba(255,255,255,.16); }
.reason { display: grid; gap: 8px; padding: clamp(26px,4vw,38px) 0; border-bottom: 1px solid rgba(255,255,255,.16); }
.reason__no { font-family: var(--font-en); font-size: clamp(30px,5vw,42px); font-weight: 800; color: var(--purple-l); line-height: 1; letter-spacing: 0; }
.reason__title { font-size: clamp(18px,3vw,23px); font-weight: 800; margin: 6px 0 8px; }
.reason__desc { color: rgba(255,255,255,.78); font-size: 14.5px; line-height: 1.95; max-width: 60ch; }

/* ---------- 競合比較 ---------- */
.compare-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; border: 1px solid var(--line); border-radius: var(--r-lg); }
.compare { width: 100%; min-width: 800px; border-collapse: collapse; background: #fff; font-size: 14px; }
.compare th, .compare td { padding: 16px 18px; text-align: left; border-bottom: 1px solid var(--line); border-right: 1px solid var(--line); vertical-align: top; word-break: keep-all; }
.compare tr th:last-child, .compare tr td:last-child { border-right: none; }
.compare thead th { background: var(--paper); font-weight: 700; color: var(--muted); font-size: 13px; }
.compare thead th.is-us { background: var(--purple); color: #fff; }
.compare tbody th { font-weight: 700; color: var(--ink); white-space: nowrap; background: #fbfafd; font-size: 13px; }
.compare td.is-us { background: var(--wash); font-weight: 600; color: var(--purple-d); }
.compare .tag-con { display: inline-block; font-size: 14px; color: var(--ink); margin-top: 4px; }
.compare .em { color: var(--purple); font-weight: 700; }

/* ---------- 導入イメージ（事例）---------- */
.disclaimer { display: flex; gap: 10px; align-items: flex-start; max-width: 760px; margin-bottom: clamp(28px,4vw,40px); background: var(--paper); border: 1px solid var(--line); border-radius: var(--r); padding: 14px 18px; font-size: 13px; color: var(--muted); }
.disclaimer b { color: var(--ink); }
.case { background: #fff; border: 1px solid var(--line); border-radius: var(--r-lg); overflow: hidden; margin-bottom: 26px; }
.case__top { display: grid; }
.case__media img { width: 100%; height: 100%; object-fit: cover; min-height: 220px; }
.case__head { padding: clamp(24px,3.5vw,34px); display: flex; flex-direction: column; justify-content: center; }
.case__label { display: inline-block; align-self: flex-start; font-size: 12px; font-weight: 700; color: var(--purple); border: 1px solid var(--line-2); padding: 4px 12px; border-radius: 4px; margin-bottom: 14px; letter-spacing: .04em; }
.case__title { font-size: clamp(18px,3vw,23px); font-weight: 800; line-height: 1.5; }
.ba { display: grid; border-top: 1px solid var(--line); }
.ba__col { padding: clamp(22px,3.5vw,30px); }
.ba__col + .ba__col { border-top: 1px solid var(--line); }
.ba__tag { font-family: var(--font-en); font-size: 12px; font-weight: 800; letter-spacing: .12em; padding: 4px 11px; border-radius: 4px; display: inline-block; margin-bottom: 14px; }
.ba__tag--b { background: var(--paper-2); color: var(--muted); }
.ba__tag--a { background: var(--purple); color: #fff; }
.ba__col ul li { position: relative; padding-left: 18px; font-size: 13.5px; color: var(--ink-2); margin: 8px 0; line-height: 1.85; }
.ba__col ul li::before { content: ""; position: absolute; left: 2px; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--line-2); }
.ba__col--after { background: var(--wash); }
.ba__metrics { display: flex; flex-wrap: wrap; gap: 12px; margin: 14px 0 4px; }
.ba__metric { background: #fff; border: 1px solid var(--line-2); border-radius: var(--r); padding: 12px 16px; min-width: 92px; }
.ba__metric .v { font-family: var(--font-en); font-size: 22px; font-weight: 800; color: var(--purple); line-height: 1; letter-spacing: 0; }
.ba__metric .k { font-size: 11.5px; color: var(--muted); margin-top: 5px; }
.case__quote { padding: 18px clamp(24px,3.5vw,34px); background: var(--ink); color: #fff; font-weight: 700; font-size: clamp(14px,2.6vw,16px); line-height: 1.7; }
.case__quote::before { content: ""; display: inline-block; width: 18px; height: 2px; background: var(--purple-l); vertical-align: middle; margin-right: 12px; }

/* ---------- 料金 ---------- */
.price-card { max-width: 720px; margin: 0 auto; background: #fff; border: 1px solid var(--line-2); border-radius: var(--r-lg); overflow: hidden; }
.price-card__head { background: var(--ink); color: #fff; text-align: center; padding: clamp(30px,4vw,44px) 24px; }
.price-card__pkg { font-size: 12.5px; font-weight: 600; letter-spacing: .14em; color: var(--purple-l); text-transform: uppercase; font-family: var(--font-en); }
.price-card__name { font-family: var(--font-en); font-size: clamp(26px,5vw,38px); font-weight: 800; margin: 6px 0 20px; letter-spacing: .04em; }
.price-card__price { display: flex; align-items: baseline; justify-content: center; gap: 4px; }
.price-card__price .num { font-family: var(--font-en); font-size: clamp(48px,10vw,76px); font-weight: 800; line-height: 1; letter-spacing: 0; }
.price-card__price .yen { font-size: 22px; font-weight: 800; }
.price-card__price .tax { font-size: 13px; color: rgba(255,255,255,.65); margin-left: 4px; }
.price-card__term { font-size: 13.5px; color: rgba(255,255,255,.78); margin-top: 12px; }
.price-card__body { padding: clamp(26px,4vw,40px); }
.price-card__body h4 { font-size: 13px; font-weight: 800; color: var(--muted); margin-bottom: 16px; letter-spacing: .04em; }
.price-card__list li { position: relative; padding-left: 28px; margin: 13px 0; font-size: 14.5px; color: var(--ink-2); }
.price-card__list li::before { content: ""; position: absolute; left: 3px; top: 8px; width: 15px; height: 9px; border-left: 2px solid var(--purple); border-bottom: 2px solid var(--purple); transform: rotate(-45deg); }
.price-card__note { margin-top: 20px; font-size: 12.5px; color: var(--muted); background: var(--paper); border-radius: var(--r); padding: 14px 16px; line-height: 1.8; }
.price-card__cta { margin-top: 22px; }

/* ---------- 導入の流れ ---------- */
.flow-intro { font-weight: 700; color: var(--ink); margin-bottom: clamp(28px,4vw,42px); font-size: clamp(14px,2.6vw,17px); max-width: 720px; }
.flow-intro span { color: var(--purple); }
.steps { display: grid; gap: 0; border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: auto 1fr; gap: 18px; padding: clamp(22px,3.5vw,30px) 0; border-bottom: 1px solid var(--line); }
.step__badge { display: flex; flex-direction: column; align-items: center; gap: 8px; }
.step__num { width: 46px; height: 46px; border-radius: 50%; border: 1.5px solid var(--purple); color: var(--purple); font-family: var(--font-en); font-weight: 800; font-size: 18px; display: grid; place-items: center; }
.step__when { font-size: 10.5px; color: var(--muted); font-weight: 700; white-space: nowrap; }
.step__title { font-size: clamp(16px,2.8vw,20px); font-weight: 800; }
.step__role { font-size: 13px; color: var(--purple); font-weight: 600; margin: 5px 0 12px; }
.step__list { display: flex; flex-wrap: wrap; gap: 8px; }
.step__list li { font-size: 12.5px; color: var(--ink-2); background: var(--paper); border-radius: 5px; padding: 6px 11px; }

/* ---------- 会社概要・代表 ---------- */
.company { display: grid; gap: clamp(28px,4vw,48px); }
.message { border-left: 3px solid var(--purple); padding-left: clamp(20px,3vw,30px); }
.message__copy { font-size: clamp(20px,3.8vw,28px); font-weight: 800; line-height: 1.55; color: var(--ink); }
.message__body { color: var(--ink-2); margin-top: 14px; font-size: 14.5px; line-height: 2; }
.message__sign { margin-top: 16px; font-size: 13px; color: var(--muted); }
.message__sign b { color: var(--ink); font-size: 15px; }
.origin { margin-top: 24px; }
.origin h4 { font-size: 12px; font-weight: 800; color: var(--purple); margin-bottom: 14px; letter-spacing: .12em; font-family: var(--font-en); text-transform: uppercase; }
.origin__item { margin: 14px 0; padding-bottom: 14px; border-bottom: 1px solid var(--line); }
.origin__item:last-child { border-bottom: none; }
.origin__item b { display: block; font-size: 14.5px; font-weight: 700; margin-bottom: 4px; }
.origin__item p { font-size: 13px; color: var(--muted); line-height: 1.85; }
.profile { display: grid; gap: 20px; }
.profile__media { position: relative; }
.profile__media img { width: 100%; border-radius: var(--r-lg); aspect-ratio: 4/3; object-fit: cover; }
.profile__cap { font-size: 11.5px; color: var(--faint); margin-top: 8px; }
.info-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.info-table th, .info-table td { text-align: left; padding: 14px 4px; border-bottom: 1px solid var(--line); vertical-align: top; }
.info-table th { width: 32%; color: var(--muted); font-weight: 700; font-size: 13px; }
.info-table td { color: var(--ink-2); }

/* ---------- CONTACT ---------- */
.contact { background: var(--nightbg); color: #fff; }
.contact__grid { display: grid; gap: clamp(28px,4vw,48px); }
.contact__title { font-size: clamp(24px,5vw,38px); font-weight: 800; line-height: 1.4; }
.contact__title .pp { color: var(--purple-l); }
.contact__lead { color: rgba(255,255,255,.8); margin-top: 16px; font-size: 15px; line-height: 1.95; }
.contact__direct { margin-top: 28px; display: grid; gap: 10px; }
.contact__direct a { display: flex; align-items: center; gap: 14px; font-size: 15px; padding: 14px 0; border-top: 1px solid rgba(255,255,255,.14); }
.contact__direct a:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }
.contact__direct .k { font-size: 10.5px; color: var(--purple-l); font-weight: 700; letter-spacing: .12em; display: block; margin-bottom: 2px; }
.contact__direct .ic { width: 38px; height: 38px; border: 1px solid rgba(255,255,255,.22); border-radius: 8px; display: grid; place-items: center; flex: none; }
.contact__direct .ic svg { width: 19px; height: 19px; stroke: #fff; fill: none; stroke-width: 1.8; }

.form { background: #fff; border-radius: var(--r-lg); padding: clamp(24px,4vw,34px); color: var(--ink); }
.form__row { margin-bottom: 16px; }
.form__row label { display: block; font-size: 13px; font-weight: 700; margin-bottom: 7px; }
.form__row label .req { color: #c0392b; font-size: 11px; margin-left: 6px; }
.form__row input, .form__row textarea, .form__row select {
  width: 100%; font-family: inherit; font-size: 15px; color: var(--ink);
  border: 1px solid var(--line-2); border-radius: 6px; padding: 12px 14px; background: #fff; transition: border-color .2s;
}
.form__row input:focus, .form__row textarea:focus, .form__row select:focus { outline: none; border-color: var(--purple); }
.form__row textarea { resize: vertical; min-height: 110px; }
.form__note { font-size: 12px; color: var(--muted); margin-top: 4px; }
.form__msg { display: none; margin-top: 14px; padding: 14px 16px; border-radius: 6px; background: var(--wash); color: var(--purple-d); font-size: 14px; font-weight: 600; }
.form__msg.is-show { display: block; }

/* ---------- Footer ---------- */
.site-footer { background: #100c19; color: rgba(255,255,255,.65); padding-block: clamp(36px,5vw,52px); }
.site-footer .container { display: grid; gap: 22px; }
.footer__brand { font-family: var(--font-en); font-size: 21px; font-weight: 800; color: #fff; letter-spacing: .05em; }
.footer__by { font-size: 12px; color: rgba(255,255,255,.5); margin-top: 6px; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 14px 22px; }
.footer__nav a { font-size: 13px; color: rgba(255,255,255,.65); transition: color .2s; }
.footer__nav a:hover { color: #fff; }
.footer__bottom { border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; font-size: 12px; color: rgba(255,255,255,.4); display: flex; flex-wrap: wrap; justify-content: space-between; gap: 8px; }

/* ---------- 固定CTA（モバイル）---------- */
.sticky-cta { position: fixed; left: 0; right: 0; bottom: 0; z-index: 90; background: rgba(255,255,255,.96); backdrop-filter: blur(8px); border-top: 1px solid var(--line); padding: 10px var(--gutter); display: flex; gap: 10px; transform: translateY(110%); transition: transform .3s var(--ease); }
.sticky-cta.is-show { transform: none; }
.sticky-cta .btn { flex: 1; padding: 13px 14px; font-size: 13.5px; }
.sticky-cta .btn--ghost { flex: 0 0 auto; padding-inline: 16px; }

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .6s var(--ease), transform .6s var(--ease); }
.reveal.in-view { opacity: 1; transform: none; }
.reveal-d1 { transition-delay: .07s; } .reveal-d2 { transition-delay: .14s; } .reveal-d3 { transition-delay: .2s; }

/* ===================== Responsive ===================== */
@media (min-width: 640px) {
  .walls { grid-template-columns: repeat(3, 1fr); }
  .merits { grid-template-columns: repeat(2, 1fr); }
  .support-grid { grid-template-columns: repeat(3, 1fr); }
  .curriculum { grid-template-columns: repeat(2, 1fr); }
  .case__top { grid-template-columns: 1.1fr 1fr; }
  .ba { grid-template-columns: 1fr 1fr; }
  .ba__col + .ba__col { border-top: none; border-left: 1px solid var(--line); }
  .step__badge { flex-direction: row; }
}
@media (min-width: 768px) {
  body { font-size: 16px; }
  .brand__by { display: inline; }
  .features { grid-template-columns: repeat(3, 1fr); gap: 30px; }
  .feature + .feature { border-top: none; }
  .power { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr 1.1fr; }
  .merits { grid-template-columns: repeat(3, 1fr); }
  .company { grid-template-columns: 1.15fr .85fr; align-items: start; }
  .contact__grid { grid-template-columns: 1fr 1fr; align-items: start; }
}
@media (min-width: 960px) {
  .hnav { display: flex; }
  .burger { display: none; }
  .sticky-cta { display: none; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}

/* =========================================================================
   改訂追加分（要望書0616）：ロゴ / 取引先 / こんなお悩み / FAQ ほか
   ========================================================================= */

/* --- ヘッダーロゴ（透明時=白／スクロール時=濃） --- */
.brand { align-items: center; }
.brand__logo { height: 24px; width: auto; display: block; }
@media (min-width: 768px){ .brand__logo { height: 26px; } }

/* --- ヒーローのロゴ・ラベル --- */
.hero__brand { display: flex; align-items: center; gap: 14px; margin-top: 18px; flex-wrap: wrap; }
.hero__logo { height: 30px; width: auto; }
.hero__brand-label { font-size: 13px; font-weight: 700; letter-spacing: .06em; color: rgba(255,255,255,.92); }

/* --- 取引先ロゴ（白背景・細め・枠なし・カラー表示） --- */
.section--clients { background: #fff; padding-block: clamp(38px,5.5vw,64px); }
.clients__lead { text-align: center; color: var(--muted); font-size: clamp(13px,2.4vw,15px); line-height: 1.9; max-width: 760px; margin: 0 auto clamp(22px,3.5vw,38px); }
.client-grid { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: clamp(22px,4vw,52px); }
.client-cell { display: flex; align-items: center; justify-content: center; height: clamp(28px,5vw,40px); flex: 0 0 auto; }
.client-cell img { max-height: 100%; max-width: 116px; width: auto; height: auto; object-fit: contain; filter: none; opacity: 1; transition: transform .25s ease; }
.client-cell img:hover { filter: none; opacity: 1; transform: translateY(-1px); }
.clients__note { text-align: center; color: var(--faint); font-size: 11.5px; margin-top: clamp(20px,3vw,30px); }

/* --- こんなお悩み、ありませんか？（ダーク） --- */
.worries .head { margin-bottom: clamp(28px,4vw,44px); }
.worry-grid { display: grid; grid-template-columns: 1fr; gap: 1px; background: rgba(255,255,255,.13); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r-lg); overflow: hidden; }
.worry { background: var(--nightbg); padding: clamp(24px,3.4vw,32px); display: flex; flex-direction: column; align-items: center; text-align: center; gap: 14px; transition: background .25s; }
.worry:hover { background: #1d1530; }
.worry__ic { width: 54px; height: 54px; border: 1px solid rgba(255,255,255,.22); border-radius: 10px; display: grid; place-items: center; }
.worry__ic svg { width: 26px; height: 26px; stroke: var(--purple-l); fill: none; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.worry__t { font-weight: 700; font-size: clamp(14px,2.4vw,15.5px); line-height: 1.6; color: #fff; }
.worries-foot { text-align: center; margin-top: clamp(28px,4vw,42px); font-size: clamp(17px,3.2vw,25px); font-weight: 800; line-height: 1.6; color: #fff; }
.worries-foot span { color: var(--purple-l); }

/* --- About 見出し追加 --- */
.about__title { font-size: clamp(19px,3.2vw,26px); font-weight: 800; line-height: 1.5; margin-top: 14px; color: var(--ink); }
.about__title + .about__body { margin-top: 14px; }

/* --- カリキュラム：コマのサブ項目 --- */
.coma { align-items: flex-start; }
.coma__b { display: flex; flex-direction: column; gap: 4px; }
.coma__t { font-weight: 700; font-size: 15px; padding-top: 2px; }
.coma__sub { font-size: 12.5px; color: var(--muted); line-height: 1.7; }
.curriculum__note { margin-top: 16px; font-size: 12.5px; color: var(--muted); }

/* --- メリット3列：説明文をやや読みやすく --- */
.merits--3 .merit__d { font-size: 13.5px; line-height: 1.9; }

/* --- FAQ（ダーク・ネイティブアコーディオン） --- */
.faq-list { max-width: 820px; margin: 0 auto; display: grid; gap: 12px; }
.faq-item { background: rgba(255,255,255,.045); border: 1px solid rgba(255,255,255,.13); border-radius: var(--r); overflow: hidden; }
.faq-item summary { list-style: none; cursor: pointer; padding: 18px 54px 18px 22px; font-weight: 700; font-size: clamp(14px,2.4vw,15.5px); color: #fff; position: relative; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::before { content: "Q"; font-family: var(--font-en); font-weight: 800; color: var(--purple-l); margin-right: 12px; }
.faq-item summary::after {
  content: ""; position: absolute; right: 22px; top: 50%; width: 14px; height: 14px; transform: translateY(-50%);
  background:
    linear-gradient(var(--purple-l),var(--purple-l)) center/14px 2px no-repeat,
    linear-gradient(var(--purple-l),var(--purple-l)) center/2px 14px no-repeat;
  transition: transform .25s var(--ease);
}
.faq-item[open] summary::after { transform: translateY(-50%) rotate(135deg); }
.faq-item summary:hover { background: rgba(255,255,255,.04); }
.faq-a { padding: 2px 22px 20px 22px; color: rgba(255,255,255,.78); font-size: 14px; line-height: 1.95; }

/* --- フッターロゴ --- */
.footer__logo { height: 24px; width: auto; display: block; }

/* --- 追加レスポンシブ --- */
@media (min-width: 560px) {
  .worry-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 900px) {
  .worry-grid { grid-template-columns: repeat(4, 1fr); }
}

/* =========================================================================
   20260622 追補：要望書0616反映 / 訴求力を上げる文字サイズ調整
   ========================================================================= */
body {
  font-size: 16px;
  line-height: 1.9;
  font-weight: 500;
}
.container { max-width: 1240px; }
.section { padding-block: clamp(72px, 9vw, 128px); }
.head { max-width: 820px; }
.eyebrow { font-size: 13px; font-weight: 800; letter-spacing: .22em; }
.title { font-size: clamp(30px, 4.6vw, 48px); line-height: 1.32; letter-spacing: 0; }
.lead,
.flow-intro { font-size: clamp(16px, 2.4vw, 18px); line-height: 2; }
.btn { font-size: 16px; font-weight: 800; padding: 16px 28px; }
.btn--lg { font-size: 17px; padding: 19px 34px; }
.hnav { gap: 18px; }
.hnav a { font-size: 13.5px; font-weight: 700; }
.hnav__cta { padding: 9px 15px; }
.hero { min-height: clamp(620px, 94vh, 900px); }
.hero__tag { font-size: 14px; font-weight: 800; }
.hero__copy { font-size: clamp(38px, 7.4vw, 76px); line-height: 1.16; max-width: 15.5em; }
.hero__brand { margin-top: 22px; }
.hero__logo { height: clamp(34px, 4.2vw, 46px); }
.hero__brand-label { font-size: 15px; font-weight: 800; }
.hero__sub { font-size: clamp(16px, 2.45vw, 20px); line-height: 2; max-width: 43em; font-weight: 600; }
.hero__chip { font-size: 14px; padding: 9px 15px; font-weight: 800; }
.hero__note { font-size: 13.5px; }
.section--clients .head { margin-bottom: 18px; }
.clients__lead { font-size: clamp(15px, 2.2vw, 18px); font-weight: 600; }
.client-cell { height: clamp(34px, 5vw, 48px); }
.client-cell img { max-width: 136px; }
.worry { padding: clamp(26px, 3.6vw, 38px); }
.worry__ic { width: 60px; height: 60px; }
.worry__ic svg { width: 29px; height: 29px; }
.worry__t { font-size: clamp(17px, 2.5vw, 20px); line-height: 1.55; }
.worry__d { font-size: 14.5px; line-height: 1.85; color: rgba(255,255,255,.68); max-width: 17em; }
.worries-foot { font-size: clamp(23px, 3.4vw, 34px); }
.about__name { font-size: clamp(36px, 6.3vw, 58px); }
.about__name small { font-size: 15px; }
.about__title { font-size: clamp(25px, 3.7vw, 36px); line-height: 1.42; }
.about__body { font-size: clamp(16px, 2.2vw, 18px); line-height: 2.08; }
.about__points li { font-size: 16px; padding-block: 15px; }
.feature__icon { width: 60px; height: 60px; }
.feature__icon svg { width: 30px; height: 30px; }
.feature__no { font-size: 13.5px; }
.feature__title { font-size: clamp(22px, 3.1vw, 28px); line-height: 1.42; margin-top: 8px; }
.feature__desc { font-size: 16px; line-height: 2; color: var(--ink-2); }
.feature__desc b { color: var(--purple-d); font-weight: 800; }
.coma__t { font-size: 17px; }
.coma__sub { font-size: 15px; line-height: 1.8; }
.curriculum__note { font-size: 14.5px; }
.support h4 { font-size: 17px; }
.support ul li { font-size: 15.5px; line-height: 1.85; }
.merit__ic { font-size: 13.5px; }
.merit__t { font-size: clamp(20px, 3vw, 26px); }
.merit__d,
.merits--3 .merit__d { font-size: 16px; line-height: 2; color: var(--ink-2); }
.compare { font-size: 16px; min-width: 960px; }
.compare th,
.compare td { padding: 19px 20px; }
.compare thead th,
.compare tbody th { font-size: 14.5px; }
.compare .tag-con { font-size: 16px; }
.disclaimer { font-size: 15px; line-height: 1.9; }
.case__label { font-size: 13.5px; font-weight: 800; }
.case__title { font-size: clamp(22px, 3.2vw, 30px); line-height: 1.42; }
.ba__tag { font-size: 13.5px; }
.ba__col ul li { font-size: 16px; line-height: 1.95; }
.ba__col--after p { font-size: 16px !important; line-height: 1.95; }
.ba__metric { min-width: 118px; padding: 16px 18px; }
.ba__metric .v { font-size: clamp(28px, 4vw, 38px); }
.ba__metric .k { font-size: 13px; }
.case__quote { font-size: clamp(17px, 2.5vw, 20px); line-height: 1.8; }
.price-card { max-width: 860px; }
.price-card__pkg { font-size: 14px; }
.price-card__name { font-size: clamp(34px, 5vw, 52px); }
.price-card__price .num { font-size: clamp(64px, 11vw, 100px); }
.price-card__price .yen { font-size: 30px; }
.price-card__price .tax { font-size: 15px; }
.price-card__term { font-size: 17px; }
.price-card__body h4 { font-size: 16px; }
.price-card__list li { font-size: 17px; line-height: 1.8; }
.price-card__note { font-size: 14.5px; }
.faq-list { max-width: 900px; }
.faq-item summary { font-size: clamp(16px, 2.3vw, 18px); padding: 21px 58px 21px 24px; }
.faq-a { font-size: 16px; line-height: 2; }
.step { gap: 22px; padding: clamp(26px, 4vw, 36px) 0; }
.step__num { width: 58px; height: 58px; font-size: 23px; }
.step__when { font-size: 12px; }
.step__title { font-size: clamp(21px, 3vw, 28px); line-height: 1.35; }
.step__role { font-size: 16px; line-height: 1.8; }
.step__list li { font-size: 14.5px; padding: 8px 13px; }
.message__copy { font-size: clamp(27px, 4.2vw, 44px); line-height: 1.35; }
.message__body { font-size: 17px; line-height: 2; }
.message__sign { font-size: 15px; }
.message__sign b { font-size: 18px; }
.origin h4 { font-size: 14px; }
.origin__item b { font-size: 17px; }
.origin__item p { font-size: 15.5px; line-height: 1.95; }
.profile__cap { font-size: 13.5px; }
.info-table { font-size: 16px; }
.info-table th { font-size: 14.5px; }
.contact__title { font-size: clamp(32px, 5vw, 54px); line-height: 1.25; }
.contact__lead { font-size: clamp(16px, 2.3vw, 18px); }
.contact__direct a { font-size: 16px; }
.form__row label { font-size: 14.5px; }
.form__row input,
.form__row textarea,
.form__row select { font-size: 16px; padding: 14px 16px; }
.form__note { font-size: 13px; }
.footer__nav a { font-size: 14px; }
.footer__bottom { font-size: 13px; }
@media (min-width: 768px) {
  body { font-size: 17px; }
  .features { gap: 38px; }
}
@media (max-width: 1080px) {
  .hnav { gap: 12px; }
  .hnav a { font-size: 12.5px; }
  .hnav__cta { padding: 8px 11px; }
}
@media (max-width: 760px) {
  body { font-size: 16px; }
  .section { padding-block: clamp(62px, 12vw, 86px); }
  .title { font-size: clamp(28px, 8vw, 38px); }
  .hero__copy { font-size: clamp(38px, 11vw, 54px); }
  .hero__sub { font-size: 16px; }
  .btn--lg { width: 100%; }
  .step { grid-template-columns: 1fr; gap: 12px; }
  .step__badge { align-items: flex-start; flex-direction: row; }
  .sticky-cta .btn { font-size: 14px; }
}

/* =========================================================================
   20260622 再修正：代表メッセージ削除 / メリット位置調整 / 平常本文サイズアップ
   ========================================================================= */
body {
  font-size: 17px;
}
.lead,
.flow-intro,
.clients__lead,
.about__body,
.feature__desc,
.merit__d,
.merits--3 .merit__d,
.support ul li,
.compare,
.disclaimer,
.ba__col ul li,
.ba__col--after p,
.case__quote,
.price-card__list li,
.price-card__note,
.faq-a,
.step__role,
.contact__lead,
.info-table,
.contact__direct a {
  font-size: clamp(17px, 2.2vw, 19px) !important;
}
.hero__sub {
  font-size: clamp(17px, 2.5vw, 21px);
}
.worry__d {
  font-size: 15.5px;
}
.coma__sub,
.step__list li,
.form__note,
.clients__note {
  font-size: 15.5px;
}
.hero__note,
.profile__cap,
.price-card__pkg,
.ba__metric .k,
.case__label,
.ba__tag {
  font-size: 14px;
}
.company {
  max-width: 920px;
  margin-inline: auto;
  display: block;
}
.profile--company-only {
  width: 100%;
}
#company .head {
  margin-inline: auto;
  text-align: center;
}
#company .eyebrow::before {
  display: none;
}
#company .info-table {
  width: 100%;
}
@media (min-width: 768px) {
  body {
    font-size: 18px;
  }
}
@media (max-width: 760px) {
  body {
    font-size: 17px;
  }
  .lead,
  .flow-intro,
  .clients__lead,
  .about__body,
  .feature__desc,
  .merit__d,
  .merits--3 .merit__d,
  .support ul li,
  .compare,
  .disclaimer,
  .ba__col ul li,
  .ba__col--after p,
  .case__quote,
  .price-card__list li,
  .price-card__note,
  .faq-a,
  .step__role,
  .contact__lead,
  .info-table,
  .contact__direct a {
    font-size: 17px !important;
  }
}

/* =========================================================================
   20260706 修正：画像差し替え / 講師紹介 / ロゴ・レイアウト微調整
   ========================================================================= */
body {
  font-size: 16px;
  line-height: 1.85;
  text-rendering: optimizeLegibility;
}

body,
body * {
  letter-spacing: 0 !important;
}

.sp-only {
  display: none;
}

.section {
  padding-block: clamp(60px, 8vw, 104px);
}

.title {
  font-size: clamp(28px, 4.1vw, 44px);
  line-height: 1.36;
}

.lead,
.flow-intro,
.clients__lead,
.about__body,
.feature__desc,
.merit__d,
.merits--3 .merit__d,
.support ul li,
.compare,
.disclaimer,
.ba__col ul li,
.ba__col--after p,
.case__quote,
.price-card__list li,
.price-card__note,
.faq-a,
.step__role,
.contact__lead,
.info-table,
.contact__direct a {
  font-size: clamp(15px, 1.7vw, 17px) !important;
  line-height: 1.9;
}

.site-header .brand {
  align-items: center;
  padding: 7px 10px;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(255,255,255,.68);
  border-radius: 6px;
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

.site-header.is-scrolled .brand {
  background: transparent;
  border-color: transparent;
  box-shadow: none;
}

.brand__logo {
  display: block !important;
  height: 24px;
}

.site-header:not(.is-scrolled) .brand__by {
  color: var(--muted);
}

.hero {
  min-height: clamp(600px, 92vh, 860px);
}

.hero__bg img {
  object-position: 58% center;
}

.hero__bg::after {
  background:
    linear-gradient(180deg, rgba(15,10,28,.46) 0%, rgba(15,10,28,.28) 36%, rgba(15,10,28,.84) 100%),
    linear-gradient(90deg, rgba(14,10,22,.86) 0%, rgba(28,17,58,.62) 38%, rgba(28,17,58,.12) 72%, rgba(14,10,22,.2) 100%);
}

.hero__copy {
  font-size: clamp(36px, 6.6vw, 66px);
  line-height: 1.18;
  max-width: 13.5em;
}

.hero__sub {
  font-size: clamp(16px, 2vw, 19px);
  max-width: 40em;
}

.hero__brand {
  align-items: center;
}

.hero__logo {
  height: clamp(28px, 3.6vw, 40px);
  max-width: min(290px, calc(100vw - 64px));
  padding: 8px 12px;
  background: rgba(255,255,255,.94);
  border-radius: 6px;
  box-shadow: 0 12px 34px rgba(0,0,0,.18);
}

.hero__brand-label {
  line-height: 1.5;
}

.hero__chip {
  line-height: 1.45;
}

.btn {
  min-height: 48px;
  text-align: center;
  line-height: 1.4;
}

.section--clients {
  padding-block: clamp(42px, 5vw, 68px);
}

.client-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(128px, 1fr));
  gap: 12px;
  max-width: 1080px;
  margin-inline: auto;
}

.client-cell {
  height: 76px;
  padding: 12px 16px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.client-cell img {
  width: 122px;
  height: 44px;
  max-width: 100%;
  max-height: 44px;
  object-fit: contain;
}

.about__media img {
  aspect-ratio: 1 / 1;
  object-position: center 30%;
}

.case__media img {
  min-height: 260px;
  object-position: center center;
}

.instructors .head {
  max-width: 820px;
}

.instructor-grid {
  display: grid;
  gap: 18px;
}

.instructor {
  display: grid;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
}

.instructor__media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center top;
}

.instructor__body {
  padding: clamp(22px, 3.2vw, 30px);
}

.instructor__no {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 800;
  color: var(--purple);
  margin-bottom: 8px;
}

.instructor__role {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--muted);
  line-height: 1.5;
  margin-bottom: 6px;
}

.instructor__name {
  font-size: clamp(20px, 2.5vw, 25px);
  font-weight: 800;
  line-height: 1.35;
  color: var(--ink);
}

.instructor__desc {
  margin-top: 10px;
  color: var(--ink-2);
  font-size: 15px;
  line-height: 1.85;
}

.instructors__link {
  margin-top: 24px;
}

.footer__logo {
  height: 24px;
  padding: 7px 10px;
  background: #fff;
  border-radius: 6px;
  box-sizing: content-box;
}

@media (min-width: 700px) {
  .instructor-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (min-width: 768px) {
  body {
    font-size: 17px;
  }

  .about__media img {
    aspect-ratio: 1 / 1;
  }
}

@media (max-width: 1120px) {
  .hnav {
    display: none;
  }

  .burger {
    display: inline-flex;
  }
}

@media (min-width: 1121px) {
  .hnav {
    display: flex;
  }

  .burger {
    display: none;
  }
}

@media (max-width: 760px) {
  .hero {
    min-height: 640px;
  }

  .hero__bg img {
    object-position: 54% center;
  }

  .hero__copy {
    font-size: clamp(28px, 8.4vw, 44px);
  }

  .sp-only {
    display: block;
  }

  .hero__tag {
    font-size: 12px;
    line-height: 1.5;
    padding: 7px 12px;
  }

  .hero__logo {
    height: 28px;
  }

  .client-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .client-cell {
    height: 70px;
    padding: 11px 12px;
  }

  .client-cell img {
    width: 116px;
    height: 42px;
    max-height: 42px;
  }

  .instructor__media img {
    aspect-ratio: 16 / 10;
  }
}
