@charset "utf-8";

/* ============================================================
   AKI PORTFOLIO — styles.css
   色を変えたいときは、すぐ下の :root を編集してください。
   ============================================================ */

:root {
  /* ---- 配色 ---- */
  --bg:        #F8F6F2;  /* 背景 */
  --bg-sub:    #EFEAE3;  /* サブ背景 */
  --white:     #FFFFFF;
  --text:      #30343A;  /* 本文 */
  --navy:      #26384A;  /* メインネイビー */
  --greige:    #A89680;  /* グレージュ */
  --gold:      #B69A6A;  /* 控えめなゴールド（罫線・飾り用） */

  /* 文字に使う色。上の2色は薄く、小さな文字だと読みにくいため、
     文字のときだけ濃いほうを使います（背景 #F8F6F2 上で 5.0:1 以上）。 */
  --gold-ink:   #7E663E;
  --greige-ink: #776752;

  /* ファーストビューのあしらいに使う水色。あきのブランド色（ペールブルー #B8D4E3）。
     濃さを変えたいときは、下の2つの数字だけ動かせば済む。 */
  --sky:      184, 212, 227;   /* 透明度を付けて使うためRGBで持つ */
  --sky-glow: .40;             /* 右上の光の濃さ */
  --sky-band: .30;             /* 水平の帯の濃さ（.38まで文字の読みやすさは保てる） */

  --text-mute: #5C6068;  /* 補足テキスト（背景 #F8F6F2 上で 6.2:1） */
  --line:      #DED6CA;  /* 罫線 */
  --line-soft: #E8E1D6;

  /* ---- 書体 ---- */
  --sans:  "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Hiragino Sans",
           "Yu Gothic", Meiryo, sans-serif;
  --serif: "Shippori Mincho", "Noto Serif JP", "Hiragino Mincho ProN",
           "Yu Mincho", serif;
  --en:    "Cormorant Garamond", "Times New Roman", var(--serif);

  /* ---- 余白のリズム ---- */
  --pad:      clamp(1.25rem, 5vw, 2.5rem);
  --wrap:     1180px;
  --wrap-narrow: 820px;
  --sec-y:    clamp(4.5rem, 11vw, 9rem);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ============================================================
   ベース
   ============================================================ */

*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 5.5rem;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--sans);
  font-size: 16px;
  font-weight: 400;
  line-height: 2;
  letter-spacing: .04em;
  overflow-x: hidden;             /* 横スクロール防止 */
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { max-width: 100%; height: auto; display: block; }

a { color: inherit; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.75;
  letter-spacing: .06em;
  margin: 0;
}

p { margin: 0; }
ul, ol { margin: 0; padding: 0; list-style: none; }

/* 日本語の改行を単語の途中で切らない */
.jp { word-break: auto-phrase; line-break: strict; overflow-wrap: anywhere; }

/* フォーカスリング（キーボード操作時にはっきり見せる） */
:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 3px;
  border-radius: 6px;
}

/* スキップリンク */
.skiplink {
  position: absolute;
  left: 1rem; top: -100px;
  z-index: 999;
  padding: .9rem 1.4rem;
  background: var(--navy);
  color: var(--white);
  font-size: .9rem;
  text-decoration: none;
  transition: top .2s var(--ease);
}
.skiplink:focus { top: 1rem; }

.wrap { width: min(100% - var(--pad) * 2, var(--wrap)); margin-inline: auto; }
.wrap-narrow { width: min(100% - var(--pad) * 2, var(--wrap-narrow)); margin-inline: auto; }

.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  margin: -1px; padding: 0; overflow: hidden;
  clip: rect(0 0 0 0); clip-path: inset(50%); white-space: nowrap;
}

/* ============================================================
   共通パーツ
   ============================================================ */

/* 英字の小見出し（Cormorant Garamond） */
.eyebrow {
  display: flex;
  align-items: center;
  gap: .8em;
  font-family: var(--en);
  font-size: clamp(.95rem, 2.4vw, 1.15rem);
  font-weight: 500;
  letter-spacing: .32em;
  line-height: 1;
  color: var(--gold-ink);
  text-transform: uppercase;
  margin: 0 0 1.4rem;
}
.eyebrow::after {
  content: "";
  flex: 1;
  max-width: 4.5rem;
  height: 1px;
  background: var(--gold);
  opacity: .55;
}
.eyebrow--center { justify-content: center; }
.eyebrow--center::before {
  content: "";
  flex: 1; max-width: 4.5rem; height: 1px;
  background: var(--gold); opacity: .55;
}

.sec-head { margin-bottom: clamp(2.5rem, 6vw, 4rem); }

.sec-title {
  font-size: clamp(1.6rem, 4.6vw, 2.35rem);
  line-height: 1.7;
  margin: 0;
}

.sec-lead {
  font-family: var(--serif);
  font-size: clamp(1.02rem, 2.6vw, 1.2rem);
  line-height: 2.05;
  color: var(--navy);
  margin-top: 1.2rem;
}

.sec-body {
  font-size: clamp(.9rem, 2.2vw, .97rem);
  line-height: 2.15;
  color: var(--text-mute);
  margin-top: 1rem;
  max-width: 46em;
}

/* ---- ボタン ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .7em;
  min-height: 56px;
  padding: .9rem 2.1rem;
  font-family: var(--sans);
  font-size: clamp(.92rem, 2.3vw, 1rem);
  font-weight: 500;
  letter-spacing: .08em;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  /* ごく浅い影で、少しだけ浮いて見えるようにする（押せることが伝わる程度） */
  box-shadow: 0 1px 2px rgba(38, 56, 74, .10), 0 4px 10px -4px rgba(38, 56, 74, .18);
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease),
              box-shadow .35s var(--ease);
}
.btn:hover {
  box-shadow: 0 2px 4px rgba(38, 56, 74, .12), 0 10px 20px -8px rgba(38, 56, 74, .28);
}
.btn:active {
  transform: translateY(1px);
  box-shadow: 0 1px 2px rgba(38, 56, 74, .12);
}

.btn--primary {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}
.btn--primary:hover { background: #1B2A38; transform: translateY(-2px); }

.btn--ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--greige);
}
.btn--ghost:hover { background: var(--white); border-color: var(--navy); }

.btn--light {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
  box-shadow: 0 2px 4px rgba(0, 0, 0, .18), 0 12px 24px -10px rgba(0, 0, 0, .35);
}
.btn--light:hover {
  box-shadow: 0 3px 6px rgba(0, 0, 0, .22), 0 16px 30px -12px rgba(0, 0, 0, .45);
}
.btn--light:hover { background: transparent; color: var(--white); border-color: var(--white); }

/* 矢印つきの控えめなリンク */
.arrowlink {
  display: inline-flex;
  align-items: center;
  gap: .65em;
  min-height: 44px;
  font-size: .94rem;
  font-weight: 500;
  letter-spacing: .08em;
  color: var(--navy);
  text-decoration: none;
  border-bottom: 1px solid var(--line);
  transition: border-color .3s var(--ease), color .3s var(--ease);
}
.arrowlink::after {
  content: "";
  width: 1.4em; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
.arrowlink:hover { border-color: var(--navy); }
.arrowlink:hover::after { width: 2.1em; }

.arrowlink--ext::after {
  content: "";
  width: .62em; height: .62em;
  background: none;
  border: 1px solid currentColor;
  border-left: 0; border-bottom: 0;
  transform: rotate(45deg);
}
.arrowlink--ext:hover::after { width: .62em; }

/* ---- タグ（対応範囲） ---- */
.tags { display: flex; flex-wrap: wrap; gap: .5rem .55rem; }
.tag {
  border-radius: 999px;
  font-size: .78rem;
  letter-spacing: .06em;
  line-height: 1.5;
  color: var(--text-mute);
  background: var(--white);
  border: 1px solid var(--line-soft);
  padding: .34rem .8rem;
  white-space: nowrap;
}
.tag--plain { background: transparent; }

.scope-label {
  font-family: var(--en);
  font-size: .92rem;
  letter-spacing: .22em;
  color: var(--greige-ink);
  margin-bottom: .7rem;
}

/* ---- 分類バッジ ---- */
.badge {
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: .6em;
  font-size: .76rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  padding: .38rem .85rem;
  border: 1px solid;
  white-space: nowrap;
}
.badge__en { font-family: var(--en); font-size: .95em; letter-spacing: .14em; }
.badge__sep { opacity: .45; }

/* 分類の色は、このサイトが持つ3色（ネイビー・グレージュ・ゴールド）から作る。
   架空案件は塗りをなくして、実案件よりも軽く見えるようにしている。 */
.badge--client  { color: var(--navy); border-color: #C3CDD8; background: #E9EDF2; }
.badge--own     { color: #5C4E3D;     border-color: #DCD1C0; background: #EFE9E0; }
.badge--concept { color: #6E5A34;     border-color: #D6C49B; background: transparent; }

/* ============================================================
   ヘッダー
   ============================================================ */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(248, 246, 242, .9);
  backdrop-filter: saturate(1.4) blur(10px);
  -webkit-backdrop-filter: saturate(1.4) blur(10px);
  border-bottom: 1px solid var(--line-soft);
}

.header__inner {
  width: min(100% - var(--pad) * 2, 1320px);
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  min-height: 4.6rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: .18rem;
  text-decoration: none;
  margin-right: auto;
  padding: .4rem 0;
}
.brand__name {
  font-family: var(--en);
  font-size: 1.32rem;
  font-weight: 600;
  letter-spacing: .24em;
  line-height: 1.1;
  color: var(--navy);
}
.brand__sub {
  font-family: var(--en);
  font-size: .63rem;
  letter-spacing: .2em;
  line-height: 1.3;
  color: var(--greige-ink);
}

.gnav ul { display: flex; align-items: center; gap: clamp(1.2rem, 2.6vw, 2.2rem); }
.gnav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--en);
  font-size: 1.02rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--text);
  text-decoration: none;
  position: relative;
}
.gnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: .55rem;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width .32s var(--ease);
}
.gnav a:hover::after { width: 100%; }

/* メニュー内のボタンは、上の .gnav a の文字色に負けないよう指定し直す
   （ネイビー背景に濃い文字が乗って読めなくなるため） */
.gnav .btn--primary { color: var(--white); }
.gnav .btn--primary:hover { color: var(--white); }

.header__cta {
  min-height: 46px;
  padding: .6rem 1.5rem;
  font-size: .87rem;
  letter-spacing: .06em;
}

/* ハンバーガー */
.navtoggle {
  display: none;
  width: 46px; height: 46px;
  padding: 0;
  background: none;
  border: 0;
  cursor: pointer;
  position: relative;
}
.navtoggle span {
  position: absolute;
  left: 11px;
  width: 24px; height: 1px;
  background: var(--navy);
  transition: transform .32s var(--ease), opacity .2s var(--ease);
}
.navtoggle span:nth-child(1) { top: 16px; }
.navtoggle span:nth-child(2) { top: 23px; }
.navtoggle span:nth-child(3) { top: 30px; }
.navtoggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.navtoggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.navtoggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 900px) {
  .navtoggle { display: block; }

  .gnav {
    position: fixed;
    inset: 4.6rem 0 auto;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    padding: 1rem var(--pad) 2rem;
    transform: translateY(-140%);
    visibility: hidden;
    transition: transform .38s var(--ease), visibility .38s;
    max-height: calc(100dvh - 4.6rem);
    overflow-y: auto;
  }
  .gnav[data-open="true"] { transform: translateY(0); visibility: visible; }

  .gnav ul { flex-direction: column; align-items: stretch; gap: 0; }
  .gnav li + li { border-top: 1px solid var(--line-soft); }
  .gnav a { min-height: 56px; font-size: 1.05rem; }
  .gnav a::after { display: none; }

  .gnav .btn { margin-top: 1.4rem; width: 100%; }

  .header__cta--desktop { display: none; }
}

@media (min-width: 901px) {
  .gnav .btn { display: none; }
}

/* JSが無効・未読込でもナビが使えるようにしておく */
.no-js .gnav { position: static; transform: none; visibility: visible; }

/* ============================================================
   ファーストビュー
   ============================================================ */

.hero {
  position: relative;
  padding: clamp(2.5rem, 7vw, 5rem) 0 clamp(3.5rem, 9vw, 6.5rem);
  overflow: hidden;
}
/* 右上の光。ベージュではなく水色にして、ブランド色を静かに効かせる */
.hero::before {
  content: "";
  position: absolute;
  top: -18%; right: -14%;
  width: min(70vw, 780px);
  aspect-ratio: 1;
  background: radial-gradient(circle at 50% 50%,
    rgba(var(--sky), var(--sky-glow)) 0%, rgba(var(--sky), 0) 70%);
  pointer-events: none;
  z-index: 0;
}

/* 水平の帯。地平線のように置いて、落ち着きと安定感を出す。
   上下を透明にしているので、境目に線は出ない。 */
.hero::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 12%;
  height: 42%;
  background: linear-gradient(180deg,
    rgba(var(--sky), 0) 0%,
    rgba(var(--sky), var(--sky-band)) 55%,
    rgba(var(--sky), 0) 100%);
  pointer-events: none;
  z-index: 0;
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.75rem, 6vw, 4rem);
  align-items: center;
}
@media (min-width: 1000px) {
  .hero__inner { grid-template-columns: minmax(0, 31.5rem) minmax(0, 1fr); gap: clamp(2.5rem, 4vw, 3.75rem); }
}

.hero__eyebrow {
  font-family: var(--en);
  font-size: clamp(.78rem, 2.4vw, .95rem);
  letter-spacing: .22em;
  color: var(--greige-ink);
  margin: 0 0 1.5rem;
}

.hero__title {
  font-size: clamp(1.5rem, 7.4vw, 2.7rem);
  line-height: 1.7;
  letter-spacing: .04em;
  color: var(--navy);
  margin: 0;
}
.hero__title span { display: block; }
.hero__title span + span { margin-top: .2em; }

.hero__rule {
  width: 5rem; height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, rgb(var(--sky)) 100%);
  margin: clamp(1.6rem, 3.6vw, 2.1rem) 0;
  border: 0;
}

.hero__body p {
  font-size: clamp(.92rem, 2.3vw, 1rem);
  line-height: 2.2;
  color: var(--text-mute);
}
.hero__body p + p { margin-top: .9rem; }

.hero__scope { margin-top: clamp(1.8rem, 4vw, 2.4rem); }

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  margin-top: clamp(1.9rem, 4vw, 2.5rem);
}
@media (max-width: 460px) {
  .hero__actions .btn { width: 100%; }
}

/* ---- ヒーローのモックアップ ---- */
.hero__mock {
  position: relative;
  min-width: 0;
}

.mockstack {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  align-items: start;
}

/* 奥に重なるPC画面（右上にのぞかせる） */
.mockstack__back {
  grid-column: 6 / 13;
  grid-row: 1;
  transform: translateY(clamp(-3.6rem, -3vw, -2rem));
  opacity: .78;
  z-index: 1;
}
/* 手前のPC画面 */
.mockstack__front {
  grid-column: 1 / 10;
  grid-row: 1;
  transform: translateY(clamp(.6rem, 1.6vw, 1.4rem));
  z-index: 2;
}
/* 手前に重ねるスマートフォン画面 */
.mockstack__phone {
  grid-column: 9 / 13;
  grid-row: 1;
  align-self: end;
  transform: translateY(clamp(1.6rem, 5vw, 3.2rem));
  z-index: 3;
}

@media (max-width: 999px) {
  .mockstack__back { transform: translateY(-1rem); }
  .mockstack__front { transform: none; }
  .mockstack__phone { transform: translateY(clamp(1.2rem, 4vw, 2.2rem)); }
  .hero__mock { margin-bottom: clamp(1.5rem, 6vw, 3rem); }
}

/* ============================================================
   モックアップ（ブラウザ枠 / スマートフォン枠）
   ============================================================ */

.mock-pc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 7px;
  overflow: hidden;
  box-shadow: 0 18px 42px -22px rgba(38, 56, 74, .3),
              0 2px 8px -4px rgba(38, 56, 74, .12);
}
.mock-pc__bar {
  display: flex;
  align-items: center;
  gap: .35rem;
  padding: .55rem .7rem;
  background: var(--bg-sub);
  border-bottom: 1px solid var(--line-soft);
}
.mock-pc__bar i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--line);
  flex: none;
}
.mock-pc__url {
  flex: 1;
  margin-left: .45rem;
  height: 15px;
  border-radius: 8px;
  background: rgba(255, 255, 255, .8);
  border: 1px solid var(--line-soft);
}
.mock-pc__shot { display: block; width: 100%; aspect-ratio: 1440 / 900; object-fit: cover; object-position: top center; background: var(--bg-sub); }

.mock-sp {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 6px;
  overflow: hidden;
  box-shadow: 0 16px 34px -18px rgba(38, 56, 74, .38);
}
.mock-sp__screen {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--bg-sub);
}
.mock-sp__notch {
  position: absolute;
  top: 5px; left: 50%;
  transform: translateX(-50%);
  width: 30%; height: 5px;
  border-radius: 4px;
  background: rgba(48, 52, 58, .16);
  z-index: 2;
}
.mock-sp__shot { display: block; width: 100%; aspect-ratio: 390 / 720; object-fit: cover; object-position: top center; }

/* 画像がまだ無いときの上品なプレースホルダー */
.mock-ph {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  width: 100%;
  background:
    linear-gradient(135deg, rgba(255,255,255,.85) 0%, rgba(239,234,227,.9) 100%);
  color: var(--greige-ink);
  text-align: center;
  padding: 1.2rem;
}
.mock-ph__name {
  font-family: var(--en);
  font-size: clamp(.9rem, 2.4vw, 1.25rem);
  letter-spacing: .22em;
  line-height: 1.4;
  color: var(--navy);
}
.mock-ph__note {
  font-size: .72rem;
  letter-spacing: .1em;
  line-height: 1.6;
}
.mock-ph--pc { aspect-ratio: 1440 / 900; }
.mock-ph--sp { aspect-ratio: 390 / 720; }

/* スマートフォンの最初の画面に、作品モックの上端が入るように詰める。
   「ポートフォリオサイトだ」と早く伝わるようにするための調整。
   文章は削らず、余白と行間だけを縮めている。 */
@media (max-width: 640px) {
  .hero { padding-top: 1.5rem; }
  .hero__inner { gap: 1.5rem; }
  .hero__eyebrow { margin-bottom: .8rem; }
  .hero__title { line-height: 1.58; }
  .hero__title span + span { margin-top: .1em; }
  .hero__scope .tag { padding: .28rem .7rem; font-size: .75rem; }
  .hero__scope .tags { gap: .4rem .45rem; }
  .hero__rule { margin: 1rem 0; }
  .hero__body p { line-height: 1.95; }
  .hero__body p + p { margin-top: .7rem; }
  .hero__scope { margin-top: 1.3rem; }
  .hero__scope .scope-label { margin-bottom: .5rem; }
  .hero__actions { gap: .6rem; margin-top: 1.3rem; }
  .hero__actions .btn { min-height: 52px; }
}

/* ============================================================
   できること（Service）
   ============================================================ */

.section { padding: var(--sec-y) 0; }
.section--sub { background: var(--bg-sub); }

.services { border-top: 1px solid var(--line); }

.service {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .9rem 3rem;
  padding: clamp(2.1rem, 5vw, 3.1rem) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .service { grid-template-columns: 9rem minmax(0, 1fr) 15rem; align-items: start; }
}

.service__no {
  font-family: var(--en);
  font-size: clamp(2.1rem, 5vw, 2.9rem);
  font-weight: 500;
  line-height: 1;
  letter-spacing: .06em;
  color: var(--gold-ink);
}
.service__title {
  font-size: clamp(1.22rem, 3.2vw, 1.45rem);
  color: var(--navy);
  margin-bottom: .8rem;
}
@media (min-width: 800px) {
  .service__no { padding-top: .35rem; }
}
.service__body p {
  font-size: clamp(.9rem, 2.2vw, .97rem);
  line-height: 2.15;
  color: var(--text-mute);
}
.service__body p + p { margin-top: .55rem; }
.service__scope { padding-top: .3rem; }

/* ============================================================
   制作実績（Works）
   ============================================================ */

.worklist {
  display: flex;
  flex-direction: column;
  gap: clamp(3.5rem, 9vw, 6.5rem);
}

.work {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.6rem, 4vw, 2.5rem);
  align-items: center;
}
@media (min-width: 900px) {
  .work { grid-template-columns: minmax(0, 1.28fr) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem); }
  /* 偶数番目は左右を入れ替えて、均一なカードの並びに見えないようにする（幅も一緒に入れ替える） */
  .work:nth-child(even) { grid-template-columns: minmax(0, 1fr) minmax(0, 1.28fr); }
  .work:nth-child(even) .work__visual { order: 2; }
  .work:nth-child(even) .work__text   { order: 1; }
}

.work__visual { position: relative; min-width: 0; }

.work__mocks {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
}
.work__mocks .mock-pc { grid-column: 1 / 12; grid-row: 1; }
/* スマホ画面は小さく・低い位置に置き、PC画面のデザインを隠さないようにする。
   重なるのは右下だけで、PC画面の上半分と左側は必ず見えるようにしている。 */
.work__mocks .mock-sp {
  grid-column: 10 / 13;
  grid-row: 1;
  align-self: end;
  width: 92%;
  margin-left: auto;
  transform: translateY(clamp(1.8rem, 5vw, 3.2rem));
  z-index: 2;
}

.work__text { min-width: 0; }

.work__meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: .8rem;
  margin-bottom: 1.1rem;
}
.work__field { font-size: .78rem; letter-spacing: .08em; color: var(--text-mute); }

.work__title {
  font-size: clamp(1.45rem, 4vw, 1.95rem);
  line-height: 1.55;
  color: var(--navy);
  margin-bottom: 1rem;
}
.work__accent {
  width: 2.6rem; height: 2px;
  border: 0;
  margin: 0 0 1.2rem;
  background: var(--gold);
}
.work__lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.6vw, 1.12rem);
  line-height: 2;
  color: var(--text);
}
.work__body {
  font-size: clamp(.88rem, 2.2vw, .95rem);
  line-height: 2.15;
  color: var(--text-mute);
  margin-top: .9rem;
}
.work__tone {
  font-size: .84rem;
  line-height: 1.95;
  color: var(--text-mute);
  border-left: 2px solid var(--line);
  padding-left: .9rem;
  margin-top: 1.3rem;
}
.work__scope { margin-top: 1.5rem; }
.work__private {
  font-size: .84rem;
  line-height: 1.95;
  color: var(--text-mute);
  max-width: 30em;
}

.work__count {
  border-radius: 999px;
  display: inline-flex;
  align-items: baseline;
  gap: .4em;
  margin-top: 1.4rem;
  padding: .4rem .9rem;
  font-size: .8rem;
  letter-spacing: .06em;
  line-height: 1.5;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line-soft);
}
.work__count span {
  font-family: var(--en);
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1;
  color: var(--gold-ink);
}

.work__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem 1.8rem;
  margin-top: 1.8rem;
}

/* ============================================================
   Other Styles（主要実績よりカードを小さく）
   ============================================================ */

.others {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 2.6rem);
}
@media (min-width: 620px) { .others { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 940px) { .others { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.other {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  min-width: 0;
}
.other__visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  margin-bottom: 1.3rem;
}
.other__visual .mock-pc { grid-column: 1 / 11; grid-row: 1; border-radius: 5px; }
/* 制作実績と同じ考え方。スマホ画面を小さく・低い位置に置いて、PC画面を隠さない */
.other__visual .mock-sp {
  --sp-drop: 1.6rem;
  grid-column: 10 / 13; grid-row: 1;
  align-self: end;
  width: 92%;
  margin-left: auto;
  transform: translateY(var(--sp-drop));
  border-radius: 13px;
  padding: 4px;
  z-index: 2;
}
.other__visual .mock-sp__screen { border-radius: 9px; }
.other__visual .mock-pc,
.other__visual .mock-sp { transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.other:hover .other__visual .mock-pc { transform: translateY(-5px); }
.other:hover .other__visual .mock-sp { transform: translateY(calc(var(--sp-drop) - 5px)); }

.other__body { padding-top: .5rem; }
.other__title {
  font-size: 1.15rem;
  line-height: 1.6;
  color: var(--navy);
  margin: .9rem 0 .55rem;
}
.other__lead { font-size: .88rem; line-height: 1.95; color: var(--text); }
.other__note { font-size: .82rem; line-height: 1.95; color: var(--text-mute); margin-top: .5rem; }
.other__link {
  display: inline-flex;
  align-items: center;
  gap: .55em;
  min-height: 44px;
  margin-top: .7rem;
  font-size: .85rem;
  letter-spacing: .08em;
  color: var(--navy);
}
.other__link::after {
  content: "";
  width: .55em; height: .55em;
  border: 1px solid currentColor;
  border-left: 0; border-bottom: 0;
  transform: rotate(45deg);
}

/* ============================================================
   制作で大切にしていること（Values）
   ============================================================ */

.values {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2.2rem, 5vw, 3rem);
}
@media (min-width: 860px) { .values { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(2rem, 4vw, 3.2rem); } }

.value { padding-top: 1.6rem; border-top: 1px solid var(--line); }
.value__no {
  font-family: var(--en);
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: .1em;
  color: var(--gold-ink);
}
.value__title {
  font-size: clamp(1.08rem, 2.8vw, 1.2rem);
  line-height: 1.8;
  color: var(--navy);
  margin: .9rem 0 1rem;
}
.value__body p { font-size: .89rem; line-height: 2.1; color: var(--text-mute); }
.value__body p + p { margin-top: .7rem; }

/* ============================================================
   制作の流れ（Flow）
   ============================================================ */

.flow { position: relative; }
.flow::before {
  content: "";
  position: absolute;
  left: 1.05rem; top: .8rem; bottom: 3.5rem;
  width: 1px;
  background: var(--line);
}
@media (min-width: 760px) { .flow::before { left: 1.35rem; } }

.step {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .55rem;
  padding: 0 0 clamp(2rem, 4.5vw, 2.8rem) clamp(3.1rem, 6vw, 4.6rem);
}
@media (min-width: 760px) {
  .step { grid-template-columns: 15rem minmax(0, 1fr); gap: .55rem 2.5rem; align-items: start; }
}

/* 番号は出さず、線の上の点で順番を示す。
   読み上げには <ol> の順序がそのまま伝わるので、意味は失われない。 */
.step__dot {
  position: absolute;
  left: .3rem; top: .55rem;
  width: .95rem; height: .95rem;
  background: var(--bg);
  border: 1px solid var(--gold);
  border-radius: 50%;
}
@media (min-width: 760px) { .step__dot { left: .6rem; } }
.section--sub .step__dot { background: var(--bg-sub); }

.step__title {
  font-size: clamp(1.05rem, 2.7vw, 1.18rem);
  line-height: 1.8;
  color: var(--navy);
  padding-top: .2rem;
}
.step__body p { font-size: .89rem; line-height: 2.1; color: var(--text-mute); }
.step__body p + p { margin-top: .55rem; }

.flow-note {
  margin-top: .5rem;
  padding: 1.2rem 1.4rem;
  background: var(--white);
  border-left: 2px solid var(--gold);
  font-size: .85rem;
  line-height: 2;
  color: var(--text-mute);
}

/* ============================================================
   プロフィール（About）
   ============================================================ */

.about {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 3.5rem);
  align-items: start;
}
@media (min-width: 880px) {
  .about { grid-template-columns: minmax(0, 21rem) minmax(0, 1fr); gap: clamp(2.5rem, 5vw, 4.5rem); }
}

.about__figure { margin: 0; }
.about__photo {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--bg-sub);
}
/* 写真が未設定のときの、人物を思わせない無地のプレースホルダー */
.about__placeholder {
  width: 100%;
  aspect-ratio: 4 / 5;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .6rem;
  background: linear-gradient(150deg, #FFFFFF 0%, var(--bg-sub) 55%, #E6DFD4 100%);
  border: 1px solid var(--line-soft);
}
.about__placeholder span {
  font-family: var(--en);
  font-size: 1.1rem;
  letter-spacing: .3em;
  color: var(--greige-ink);
}
.about__placeholder i {
  width: 2.4rem; height: 1px;
  background: var(--gold);
  opacity: .7;
}

.about__role {
  font-size: .85rem;
  letter-spacing: .12em;
  color: var(--greige-ink);
  margin-top: 1rem;
}

.about__title {
  font-size: clamp(1.5rem, 4vw, 2.05rem);
  line-height: 1.7;
  color: var(--navy);
  margin-bottom: 1.6rem;
}
.about__body p {
  font-size: clamp(.9rem, 2.2vw, .97rem);
  line-height: 2.25;
  color: var(--text-mute);
}
.about__body p + p { margin-top: 1.1rem; }

/* ============================================================
   最終CTA
   ============================================================ */

.cta {
  background: var(--navy);
  color: var(--white);
  padding: clamp(4rem, 10vw, 7rem) 0;
  text-align: center;
}
.cta .eyebrow { color: #D8C296; justify-content: center; }
.cta .eyebrow::after, .cta .eyebrow::before { background: #D8C296; }
.cta .eyebrow::before {
  content: ""; flex: 1; max-width: 4.5rem; height: 1px; opacity: .55;
}

.cta__title {
  font-size: clamp(1.4rem, 4.4vw, 2.1rem);
  line-height: 1.75;
  color: var(--white);
}
.cta__quotes {
  margin: clamp(2rem, 5vw, 2.8rem) auto 0;
  display: flex;
  flex-direction: column;
  gap: .7rem;
  max-width: 34em;
}
.cta__quotes li {
  border-radius: 10px;
  font-size: clamp(.88rem, 2.2vw, .96rem);
  line-height: 1.9;
  color: rgba(255, 255, 255, .9);
  padding: .75rem 1rem;
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
}
.cta__body { margin-top: clamp(1.8rem, 4vw, 2.4rem); }
.cta__body p {
  font-size: clamp(.9rem, 2.2vw, .97rem);
  line-height: 2.15;
  color: rgba(255, 255, 255, .85);
}
.cta__body p + p { margin-top: .5rem; }

.cta__action { margin-top: clamp(2.2rem, 5vw, 3rem); }
.cta__note {
  margin-top: 1.3rem;
  font-size: .83rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, .72);
}

/* ============================================================
   フッター
   ============================================================ */

.footer {
  background: var(--bg-sub);
  padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(2rem, 4vw, 2.5rem);
}
.footer__top {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 2rem;
  padding-bottom: 2.2rem;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 760px) {
  .footer__top { grid-template-columns: minmax(0, 1fr) auto; align-items: start; gap: 3rem; }
}
.footer__brandname {
  font-family: var(--en);
  font-size: 1.28rem;
  font-weight: 600;
  letter-spacing: .24em;
  color: var(--navy);
}
.footer__brandsub {
  font-family: var(--en);
  font-size: .66rem;
  letter-spacing: .2em;
  color: var(--greige-ink);
  margin-top: .3rem;
}

.footer__nav ul { display: flex; flex-wrap: wrap; gap: .2rem 1.8rem; }
.footer__nav a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-family: var(--en);
  font-size: .96rem;
  letter-spacing: .16em;
  color: var(--text);
  text-decoration: none;
}
.footer__nav a:hover { color: var(--gold-ink); }

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: .5rem 1.5rem;
  padding-top: 1.4rem;
}
.footer__bottom a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--text-mute);
  text-decoration: none;
}
.footer__bottom a:hover { color: var(--navy); }
.footer__copy {
  font-family: var(--en);
  font-size: .82rem;
  letter-spacing: .12em;
  color: var(--text-mute);
}

/* ============================================================
   下層ページ（ケーススタディ / プライバシーポリシー）
   ============================================================ */

.pagehead {
  background: var(--bg-sub);
  padding: clamp(2.5rem, 6vw, 4rem) 0 clamp(3rem, 7vw, 4.5rem);
}

.crumbs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  letter-spacing: .06em;
  color: var(--text-mute);
  margin-bottom: 1.8rem;
}
.crumbs a { display: inline-flex; align-items: center; min-height: 44px; color: var(--text-mute); text-decoration: none; }
.crumbs a:hover { color: var(--navy); }
.crumbs span[aria-current] { color: var(--navy); }
.crumbs i { font-style: normal; opacity: .5; }

.pagehead__title {
  font-size: clamp(1.75rem, 5.4vw, 2.7rem);
  line-height: 1.6;
  color: var(--navy);
  margin: 1rem 0 0;
}
.pagehead__lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.6vw, 1.15rem);
  line-height: 2;
  color: var(--text);
  margin-top: 1.4rem;
  max-width: 40em;
}

.case { padding: clamp(3rem, 7vw, 4.5rem) 0 clamp(1rem, 3vw, 2rem); }

.case__shots {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 2.2rem);
  align-items: start;
  margin-bottom: clamp(3rem, 7vw, 4.5rem);
}
@media (min-width: 820px) {
  .case__shots { grid-template-columns: minmax(0, 2.3fr) minmax(0, 1fr); gap: clamp(1.5rem, 3vw, 2.5rem); }
}
.case__shotcap {
  font-size: .78rem;
  letter-spacing: .1em;
  color: var(--text-mute);
  margin-top: .8rem;
  text-align: center;
}

.case__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.block {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: .7rem;
  padding: clamp(1.7rem, 4vw, 2.4rem) 0;
  border-bottom: 1px solid var(--line);
}
@media (min-width: 800px) {
  .block { grid-template-columns: 13rem minmax(0, 1fr); gap: 2.5rem; align-items: start; }
}
.block__label {
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.9;
  color: var(--navy);
}
.block__label small {
  display: block;
  font-family: var(--en);
  font-size: .95rem;
  font-weight: 500;
  letter-spacing: .18em;
  color: var(--greige-ink);
  margin-top: .1rem;
}
.block__body p,
.block__body li {
  font-size: clamp(.89rem, 2.2vw, .96rem);
  line-height: 2.15;
  color: var(--text-mute);
}
.block__body p + p { margin-top: .6rem; }
.block__body .bullets { display: flex; flex-direction: column; gap: .45rem; }
.block__body .bullets li { position: relative; padding-left: 1.1rem; }
.block__body .bullets li::before {
  content: "";
  position: absolute;
  left: 0; top: 1.02em;
  width: .42rem; height: 1px;
  background: var(--gold);
}
.block__body .tags { margin-top: .2rem; }

.flowchain {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem .35rem;
  align-items: center;
}
.flowchain + p { margin-top: 1rem; }
.flowchain li {
  border-radius: 999px;
  padding: .38rem .85rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  font-size: .8rem;
  line-height: 1.6;
  color: var(--text);
  white-space: nowrap;
}


.case__note {
  margin-top: clamp(2rem, 5vw, 2.8rem);
  padding: 1.2rem 1.4rem;
  background: var(--bg-sub);
  border-left: 2px solid var(--greige);
  font-size: .85rem;
  line-height: 2;
  color: var(--text-mute);
}

.case__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 3.5rem);
}

/* ---- お客様の声 ---- */

.voices-section { background: var(--bg-sub); }

.voice {
  margin: 0 0 clamp(2rem, 5vw, 3rem);
  padding: clamp(1.6rem, 4vw, 2.6rem) clamp(1.4rem, 4vw, 2.8rem);
  background: var(--white);
  border-radius: 14px;
  border: 1px solid var(--line-soft);
  box-shadow: 0 2px 4px rgba(38, 56, 74, .04), 0 16px 32px -22px rgba(38, 56, 74, .22);
}
.voice:last-child { margin-bottom: 0; }

.voice__quote { margin: 0; position: relative; }
.voice__quote::before {
  content: "";
  display: block;
  width: 2.2rem;
  height: 1px;
  background: var(--gold);
  margin-bottom: 1.2rem;
}

.voice__lead {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.8vw, 1.28rem);
  line-height: 1.95;
  color: var(--navy);
  margin-bottom: 1.4rem;
}

.voice__body p {
  font-size: clamp(.88rem, 2.2vw, .95rem);
  line-height: 2.15;
  color: var(--text-mute);
}
.voice__body p + p { margin-top: .85rem; }

.voice__note {
  margin-top: 1.1rem;
  font-size: .78rem;
  line-height: 1.9;
  color: var(--text-mute);
}

.voice__by {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: .3rem .9rem;
  margin-top: 1.6rem;
  padding-top: 1.1rem;
  border-top: 1px solid var(--line-soft);
  font-size: .85rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--navy);
}
.voice__meta { font-size: .78rem; font-weight: 400; color: var(--text-mute); }

/* ---- ブランドカラーの色見本 ---- */

.swatches {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.2rem;
}
@media (min-width: 560px) { .swatches { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.swatch { display: flex; flex-direction: column; gap: .2rem; }
.swatch::before { display: none; }

.swatch__chip {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 2;
  border-radius: 8px;
  border: 1px solid rgba(48, 52, 58, .1);
  margin-bottom: .5rem;
}
.swatch__name {
  font-size: .82rem;
  font-weight: 500;
  line-height: 1.5;
  color: var(--navy);
}
.swatch__role { font-size: .74rem; line-height: 1.5; color: var(--text-mute); }
.swatch__hex {
  font-family: var(--en);
  font-size: .82rem;
  letter-spacing: .08em;
  color: var(--greige-ink);
  margin-top: .1rem;
}

/* ---- このプロジェクトで制作したもの ---- */

.case--rest { padding-top: clamp(2.5rem, 6vw, 4rem); }

.delivers {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1.6rem, 4vw, 2.4rem) clamp(1rem, 3vw, 1.8rem);
}
@media (min-width: 620px) { .delivers { grid-template-columns: repeat(3, minmax(0, 1fr)); } }
@media (min-width: 900px) { .delivers { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

.deliver { min-width: 0; }

.deliver__body {
  display: flex;
  flex-direction: column;
  height: 100%;
  text-decoration: none;
  color: inherit;
}
.deliver__body .mock-sp {
  border-radius: 14px;
  padding: 4px;
  transition: transform .38s var(--ease), box-shadow .38s var(--ease);
}
.deliver__body .mock-sp__screen { border-radius: 10px; }
.deliver__body .mock-sp__shot { aspect-ratio: 390 / 700; }
a.deliver__body:hover .mock-sp {
  transform: translateY(-6px);
  box-shadow: 0 22px 40px -20px rgba(38, 56, 74, .45);
}

.deliver__kind {
  border-radius: 999px;
  display: inline-block;
  align-self: flex-start;
  margin-top: 1rem;
  padding: .22rem .6rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .1em;
  line-height: 1.5;
  color: var(--navy);
  background: var(--white);
  border: 1px solid var(--line-soft);
}

.deliver__title {
  font-size: clamp(.95rem, 2.4vw, 1.05rem);
  line-height: 1.65;
  color: var(--navy);
  margin: .6rem 0 .45rem;
}

.deliver__note {
  font-size: .8rem;
  line-height: 1.9;
  color: var(--text-mute);
}

.deliver__open {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  min-height: 44px;
  margin-top: auto;
  padding-top: .4rem;
  font-size: .8rem;
  letter-spacing: .08em;
  color: var(--navy);
}
.deliver__open::after {
  content: "";
  width: .5em; height: .5em;
  border: 1px solid currentColor;
  border-left: 0; border-bottom: 0;
  transform: rotate(45deg);
}

/* 配布資料（特典シートなど）は、スマホ枠ではなく紙面として見せる */
.deliver__sheet {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 390 / 700;
  padding: 1.1rem;
  background: linear-gradient(170deg, var(--white) 0%, var(--bg-sub) 100%);
  border: 1px solid var(--line-soft);
  border-radius: 3px;
}
.deliver__sheet img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  object-fit: contain;
  box-shadow: 0 12px 26px -14px rgba(38, 56, 74, .45);
}
.deliver__body .deliver__sheet { transition: transform .38s var(--ease); }
a.deliver__body:hover .deliver__sheet { transform: translateY(-6px); }

/* 公開ページを持たないもの（LINE・SNS導線など）のタイル */
.deliver__plain {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: .7rem;
  aspect-ratio: 390 / 700;
  padding: 1rem;
  text-align: center;
  background: linear-gradient(160deg, #FFFFFF 0%, var(--bg-sub) 60%, #E6DFD4 100%);
}
.deliver__plain span {
  font-size: .72rem;
  letter-spacing: .12em;
  color: var(--greige-ink);
}
.deliver__plain i { width: 1.8rem; height: 1px; background: var(--gold); opacity: .8; }
.deliver__plain b {
  font-family: var(--serif);
  font-size: .95rem;
  font-weight: 500;
  line-height: 1.6;
  color: var(--navy);
}

/* プライバシーポリシー本文 */
.legal { padding: clamp(3rem, 7vw, 4.5rem) 0; }
.legal__updated { font-size: .82rem; letter-spacing: .06em; color: var(--text-mute); }
.legal section { margin-top: clamp(2.2rem, 5vw, 3rem); }
.legal h2 {
  font-size: clamp(1.08rem, 2.8vw, 1.22rem);
  line-height: 1.8;
  color: var(--navy);
  padding-bottom: .7rem;
  border-bottom: 1px solid var(--line);
  margin-bottom: 1.1rem;
}
.legal p {
  font-size: clamp(.89rem, 2.2vw, .96rem);
  line-height: 2.2;
  color: var(--text-mute);
}
.legal p + p { margin-top: .8rem; }

/* ============================================================
   スクロール表示アニメーション
   JSが読み込まれる前・無効な環境では、常に表示されたままになります。
   ============================================================ */

.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.js .reveal.is-visible { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .js .reveal { opacity: 1 !important; transform: none !important; }
  .btn:hover, .other:hover .other__visual .mock-pc { transform: none !important; }
}

/* 印刷 */
@media print {
  .header, .cta, .footer, .skiplink { display: none; }
  body { background: #fff; }
}

/* ---- 段階ジャンプ（長い詳細ページ用。ファーストビューの直後に置く） ---- */
.stagenav {
  background: var(--bg-sub);
  border-top: 1px solid var(--line-soft);
  padding-bottom: clamp(1.8rem, 4vw, 2.6rem);
}

.stagenav__list {
  list-style: none;
  margin: 0;
  padding: clamp(1.6rem, 4vw, 2.2rem) 0 0;
  display: grid;
  gap: .75rem;
}
@media (min-width: 720px) {
  .stagenav__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
}

.stagenav__btn {
  display: flex;
  align-items: center;
  gap: .9rem;
  min-height: 56px;
  height: 100%;
  padding: .85rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
  text-decoration: none;
  color: var(--navy);
  box-shadow: 0 1px 2px rgba(38, 56, 74, .04), 0 10px 20px -16px rgba(38, 56, 74, .3);
  transition: transform .28s var(--ease), box-shadow .28s var(--ease), border-color .28s var(--ease);
}
.stagenav__btn:hover,
.stagenav__btn:focus-visible {
  transform: translateY(-2px);
  border-color: var(--navy);
  box-shadow: 0 2px 4px rgba(38, 56, 74, .06), 0 16px 26px -18px rgba(38, 56, 74, .42);
}

.stagenav__no {
  flex: none;
  font-family: var(--en);
  font-size: .95rem;
  letter-spacing: .1em;
  color: var(--gold-ink);
}

.stagenav__label {
  font-size: clamp(.88rem, 2.2vw, .96rem);
  line-height: 1.6;
  letter-spacing: .02em;
}

/* 段階ごとのセクション */
.stage__extra { margin-top: clamp(3rem, 7vw, 4.5rem); }
.stage__extra--narrow { max-width: 46rem; margin-inline: auto; }
.sec-head--sm { margin-bottom: clamp(1.8rem, 4vw, 2.4rem); }
.sec-head--sm .sec-title { font-size: clamp(1.3rem, 3.4vw, 1.6rem); }
.stage__note {
  margin-top: 1.4rem;
  font-size: clamp(.9rem, 2.2vw, .97rem);
  line-height: 2.1;
  color: var(--text-mute);
  max-width: 46em;
}

/* 制作物が1点だけの段階は、色見本を右に並べる */
.stage__split { display: grid; gap: clamp(2rem, 5vw, 3rem); }
.stage__split .delivers { grid-template-columns: minmax(0, 300px); }
.stage__split .stage__extra { margin-top: 0; }
@media (min-width: 900px) {
  .stage__split {
    grid-template-columns: minmax(0, 300px) minmax(0, 1fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
  }
}

.stagenav__lead {
  font-family: var(--serif);
  font-size: clamp(1rem, 2.5vw, 1.12rem);
  line-height: 2.05;
  color: var(--text);
  max-width: 44em;
  padding-top: clamp(1.8rem, 4vw, 2.4rem);
}
.stagenav__lead + nav .stagenav__list { padding-top: clamp(1.3rem, 3vw, 1.7rem); }

.nowrap { white-space: nowrap; }

/* 色に込めた想い */
.palette__quote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 2.8vw, 1.28rem);
  line-height: 2.1;
  color: var(--navy);
  max-width: 34em;
  margin-bottom: clamp(1.6rem, 4vw, 2.2rem);
  padding-left: 1.1rem;
  border-left: 2px solid var(--gold);
}

/* 声の短い抜粋 */
.vquotes {
  list-style: none;
  margin: 0 0 clamp(2.5rem, 6vw, 3.5rem);
  padding: 0;
  display: grid;
  gap: clamp(1rem, 2.5vw, 1.4rem);
}
@media (min-width: 640px) { .vquotes { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .vquotes { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.vquote {
  position: relative;
  padding: clamp(1.5rem, 3.5vw, 1.9rem) clamp(1.3rem, 3vw, 1.7rem) clamp(1.3rem, 3vw, 1.6rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(38, 56, 74, .04), 0 14px 26px -20px rgba(38, 56, 74, .28);
}
.vquote::before {
  content: "";
  position: absolute;
  top: 0; left: clamp(1.3rem, 3vw, 1.7rem);
  width: 2.2rem; height: 2px;
  background: var(--gold);
  opacity: .6;
}
.vquote p {
  font-size: clamp(.92rem, 2.3vw, .98rem);
  line-height: 2.05;
  color: var(--text);
}

/* 制作物タイルのPC画面（横長のほうが伝わるLP用） */
.deliver__body .mock-pc { border-radius: 8px; transition: transform .38s var(--ease); }
.deliver__body .mock-pc__shot { aspect-ratio: 1440 / 900; }
a.deliver__body:hover .mock-pc { transform: translateY(-6px); }
.stage__split--wide .delivers { grid-template-columns: minmax(0, 1fr); }
@media (min-width: 900px) {
  .stage__split--wide { grid-template-columns: minmax(0, 560px) minmax(0, 1fr); }
}

/* ---- 代表実績に添えるお客様の声 ---- */
.work__voice {
  margin: clamp(1.4rem, 3vw, 1.8rem) 0 0;
  padding: clamp(1.1rem, 2.6vw, 1.4rem) clamp(1.1rem, 2.6vw, 1.5rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-left: 2px solid var(--gold);
  border-radius: 10px;
}
.work__voicelabel {
  font-family: var(--en);
  font-size: .72rem;
  letter-spacing: .18em;
  color: var(--gold-ink);
  margin-bottom: .55rem;
}
.work__voice blockquote {
  margin: 0;
  font-size: clamp(.9rem, 2.2vw, .96rem);
  line-height: 2;
  color: var(--text);
}
.work__voice figcaption {
  margin-top: .7rem;
  font-size: .78rem;
  letter-spacing: .04em;
  color: var(--text-mute);
}
.work__voicelink {
  display: inline-block;
  margin-top: .5rem;
  font-size: .8rem;
  color: var(--navy);
  border-bottom: 1px solid var(--line);
  text-decoration: none;
}
.work__voicelink:hover { border-color: var(--navy); }

/* ---- そのほかの実績（小さいカードの一覧） ---- */
.worksmore { margin-top: clamp(3.5rem, 8vw, 5.5rem); }
.workminis {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: clamp(1.4rem, 3.5vw, 2rem);
}
@media (min-width: 620px) { .workminis { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 980px) { .workminis { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.workmini {
  display: block;
  height: 100%;
  padding: clamp(1rem, 2.4vw, 1.2rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 1px 3px rgba(38, 56, 74, .04), 0 14px 26px -22px rgba(38, 56, 74, .26);
  transition: transform .32s var(--ease), box-shadow .32s var(--ease), border-color .32s var(--ease);
}
a.workmini:hover, a.workmini:focus-visible {
  transform: translateY(-3px);
  border-color: var(--line);
  box-shadow: 0 2px 5px rgba(38, 56, 74, .06), 0 20px 32px -22px rgba(38, 56, 74, .4);
}
.workmini__visual .mock-pc { border-radius: 6px; }
.workmini__body { padding-top: 1rem; }
.workmini__title {
  font-size: clamp(1.02rem, 2.6vw, 1.12rem);
  line-height: 1.7;
  margin: .7rem 0 .5rem;
}
.workmini__lead {
  font-size: .86rem;
  line-height: 1.95;
  color: var(--text-mute);
}
.workmini__link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-top: .9rem;
  font-size: .84rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--navy);
}
.workmini__link::after {
  content: "";
  width: 1.2em; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
a.workmini:hover .workmini__link::after { width: 1.9em; }

/* ---- 相談ボタンの飛び先 ---- */
.hero__ctanote {
  margin-top: 1rem;
  font-size: .82rem;
  line-height: 1.9;
  color: var(--text-mute);
  max-width: 34em;
}

/* 画像の実寸で列が広がらないようにする（スマホの横はみ出し対策） */
.workminis > li, .workmini, .workmini__visual { min-width: 0; }

/* 小さいカードでは、分類バッジも折り返す */
.workmini .badge {
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
  border-radius: 12px;
  line-height: 1.7;
}

/* カードの高さが違っても、リンクの位置は揃える */
.workmini { display: flex; flex-direction: column; }
.workmini__body { display: flex; flex-direction: column; flex: 1; }
.workmini .badge { align-self: flex-start; }
.workmini__link { margin-top: auto; padding-top: .9rem; }

/* 実際のご依頼と架空案件のあいだの区切り */
.section--divide { border-top: 1px solid var(--line); }
.section--divide .sec-lead {
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  color: var(--text);
}

/* 分類バッジが2行になっても、カードの見出し位置を揃える */
.workmini__meta {
  display: flex;
  align-items: flex-start;
  min-height: 3.5rem;
}

/* ---- ご依頼について（料金・期間の目安） ---- */
.prices {
  display: grid;
  gap: clamp(1.4rem, 3.5vw, 1.8rem);
}
@media (min-width: 620px) { .prices { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 900px) { .prices { grid-template-columns: repeat(3, minmax(0, 1fr)); } }

.price {
  min-width: 0;
  padding: clamp(1.5rem, 3.5vw, 1.9rem) clamp(1.3rem, 3vw, 1.6rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(38, 56, 74, .04), 0 14px 26px -22px rgba(38, 56, 74, .24);
}
.price__label {
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .12em;
  color: var(--gold-ink);
  padding-bottom: .8rem;
  border-bottom: 1px solid var(--line-soft);
}
.price__value {
  font-family: var(--serif);
  font-size: clamp(1.45rem, 3.6vw, 1.75rem);
  line-height: 1.5;
  color: var(--navy);
  margin-top: 1rem;
}
.price__value span {
  display: block;
  font-family: var(--sans);
  font-size: .76rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: var(--text-mute);
  margin-top: .45rem;
}
.price__note {
  margin-top: 1rem;
  font-size: .85rem;
  line-height: 1.95;
  color: var(--text-mute);
}

/* 料金のすぐ下の相談ボタン */
.price__action {
  margin-top: clamp(2.2rem, 5vw, 3rem);
  text-align: center;
}
.price__actionnote {
  margin-top: 1rem;
  font-size: .84rem;
  line-height: 1.95;
  color: var(--text-mute);
}

/* 料金に含まれないもの */
.price__ex {
  margin-top: 1.1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line-soft);
}
.price__exlabel {
  font-size: .72rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--greige-ink);
  margin-bottom: .55rem;
}
.price__ex ul { list-style: none; margin: 0; padding: 0; }
.price__ex li {
  position: relative;
  padding-left: 1rem;
  font-size: .82rem;
  line-height: 1.9;
  color: var(--text-mute);
}
.price__ex li + li { margin-top: .4rem; }
.price__ex li::before {
  content: "";
  position: absolute;
  left: 0; top: .85em;
  width: .45rem; height: 1px;
  background: var(--greige);
}

/* titleLines を書いた制作物は、指定どおりの位置で改行する */
.deliver__title span { display: block; }

/* ---- 料金セクション：価格を主役にする ---- */
.section--tight { padding-top: clamp(2.6rem, 6vw, 4rem); }

.pricemain {
  display: grid;
  gap: clamp(1.8rem, 4vw, 2.6rem);
  padding: clamp(1.8rem, 4.5vw, 2.8rem) clamp(1.5rem, 4vw, 2.6rem);
  margin-bottom: clamp(1.4rem, 3.5vw, 1.8rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  box-shadow: 0 2px 5px rgba(38, 56, 74, .05), 0 20px 38px -26px rgba(38, 56, 74, .34);
}
@media (min-width: 900px) {
  .pricemain {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.55fr);
    gap: clamp(2.5rem, 5vw, 4rem);
    align-items: start;
  }
}

.pricemain__figure { min-width: 0; }
.pricemain__value {
  font-family: var(--serif);
  font-size: clamp(2.1rem, 5.6vw, 3rem);
  line-height: 1.35;
  letter-spacing: .01em;
  color: var(--navy);
  margin-top: 1.1rem;
}
/* 「（税込）」の途中で割れないよう、行ごとに区切って出す */
.pricemain__value span { display: block; white-space: nowrap; }
.pricemain__unit {
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--text-mute);
  margin-top: .7rem;
}
.pricemain__note {
  margin-top: 1.1rem;
  font-size: .85rem;
  line-height: 1.95;
  color: var(--text-mute);
}

.pricemain__lists { min-width: 0; display: grid; gap: clamp(1.3rem, 3vw, 1.7rem); }
.pricemain__listlabel {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--gold-ink);
  padding-bottom: .6rem;
  border-bottom: 1px solid var(--line-soft);
  margin-bottom: .8rem;
}
.pricemain__list:last-child .pricemain__listlabel { color: var(--greige-ink); }
.pricemain__list ul { list-style: none; margin: 0; padding: 0; }
.pricemain__list li {
  position: relative;
  padding-left: 1.1rem;
  font-size: .89rem;
  line-height: 1.95;
  color: var(--text);
}
.pricemain__list li + li { margin-top: .45rem; }
.pricemain__list li::before {
  content: "";
  position: absolute;
  left: 0; top: .88em;
  width: .5rem; height: 1px;
  background: var(--greige);
}
.pricemain__list:last-child li { color: var(--text-mute); }

/* 見積もり無料 ＋ 相談ボタン */
.pricequote {
  margin-top: clamp(2.4rem, 5vw, 3.2rem);
  text-align: center;
}
.pricequote__value {
  font-family: var(--serif);
  font-size: clamp(1.35rem, 3.6vw, 1.7rem);
  line-height: 1.6;
  color: var(--navy);
}
.pricequote__note {
  margin-top: .9rem;
  font-size: .88rem;
  line-height: 1.95;
  color: var(--text-mute);
}
.pricequote .price__action { margin-top: clamp(1.5rem, 3.5vw, 2rem); }

/* 小カードが4枚のときは、右端に1枚だけ余らせない */
@media (min-width: 620px) { .workminis--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 1100px) { .workminis--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }

/* デザインサンプル5枚は、広い画面では1行に。実績のカードより大きく見せない */
@media (min-width: 1100px) { .workminis--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); } }
/* 5枚並びのバッジは「架空案 / 件」のような割れ方をさせない */
@media (min-width: 1100px) { .workminis--5 .badge { word-break: keep-all; } }
.workmini__link { white-space: nowrap; }

/* ---- 実績詳細の冒頭サマリー ---- */
.casesum {
  background: var(--bg-sub);
  border-top: 1px solid var(--line-soft);
  padding: clamp(1.6rem, 4vw, 2.3rem) 0;
}
.casesum__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.2rem, 3vw, 1.6rem);
}
@media (min-width: 820px) {
  .casesum__list { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: clamp(1.6rem, 3.5vw, 2.6rem); }
}
.casesum__list > li { min-width: 0; }
@media (min-width: 820px) {
  .casesum__list > li + li { padding-left: clamp(1.6rem, 3.5vw, 2.6rem); border-left: 1px solid var(--line-soft); }
}
.casesum__label {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  color: var(--gold-ink);
  margin-bottom: .6rem;
}
.casesum__text {
  font-size: .88rem;
  line-height: 1.95;
  color: var(--text);
}

/* ---- 長いお客様の声の続き ---- */
.voice__more { margin-top: .9rem; }
.voice__more > summary {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  min-height: 44px;
  font-size: .86rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--navy);
  cursor: pointer;
  list-style: none;
}
.voice__more > summary::-webkit-details-marker { display: none; }
.voice__more > summary::after {
  content: "";
  width: .5em; height: .5em;
  border: 1px solid currentColor;
  border-left: 0; border-top: 0;
  transform: translateY(-2px) rotate(45deg);
  transition: transform .28s var(--ease);
}
.voice__more[open] > summary::after { transform: translateY(1px) rotate(-135deg); }
.voice__more > summary:hover { color: var(--gold-ink); }
.voice__more[open] > summary { margin-bottom: .4rem; }

/* 業種名が長い作品でも、狭い画面でバッジがはみ出さないようにする */
@media (max-width: 640px) {
  .badge {
    max-width: 100%;
    flex-wrap: wrap;
    white-space: normal;
    line-height: 1.75;
    border-radius: 16px;
  }
}

/* シート画像は、縦長でもタイルの高さを変えない
   （aspect-ratio で決まる高さは max-height:100% に効かないため、絶対配置で中に収める） */
.deliver__sheet { position: relative; padding: 0; }
.deliver__sheet img {
  position: absolute;
  inset: 1.1rem;
  margin: auto;
  width: auto;
  height: auto;
  max-width: calc(100% - 2.2rem);
  max-height: calc(100% - 2.2rem);
}

/* ===== 実績のリール ==========================================
   JavaScriptが無い／動きを減らす設定のときは、ただの横スクロール一覧。
   JSが動くときだけ .is-live が付き、縦スクロールに合わせて1枚ずつ前に出る。 */
.reel__track {
  list-style: none;
  margin: 0;
  padding: 0 max(1.2rem, calc(50% - min(64vw, 760px) / 2));
  display: flex;
  gap: clamp(1.2rem, 3vw, 2.2rem);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
}
.reelcard {
  flex: 0 0 auto;
  width: min(64vw, 760px);
  scroll-snap-align: center;
}
.reelcard__body {
  display: grid;
  gap: clamp(1.1rem, 3vw, 2rem);
  height: 100%;
  padding: clamp(1.2rem, 3vw, 1.8rem);
  background: var(--white);
  border: 1px solid var(--line-soft);
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
  box-shadow: 0 2px 5px rgba(38, 56, 74, .05), 0 22px 44px -28px rgba(38, 56, 74, .38);
}
@media (min-width: 900px) {
  .reelcard__body { grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr); align-items: center; }
}
.reelcard__shot { min-width: 0; }
.reelcard__text { min-width: 0; display: flex; flex-direction: column; align-items: flex-start; gap: .75rem; }
.reelcard__title { font-size: clamp(1.15rem, 3vw, 1.5rem); line-height: 1.6; }
.reelcard__lead { font-size: clamp(.88rem, 2.2vw, .95rem); line-height: 2; color: var(--text-mute); }
.reelcard__link {
  display: inline-flex;
  align-items: center;
  gap: .5em;
  margin-top: .3rem;
  font-size: .88rem;
  font-weight: 500;
  letter-spacing: .06em;
  color: var(--navy);
  white-space: nowrap;
}
.reelcard__link::after {
  content: "";
  width: 1.3em; height: 1px;
  background: currentColor;
  transition: width .3s var(--ease);
}
a.reelcard__body:hover .reelcard__link::after { width: 2rem; }
.reel__hint { display: none; }

/* ---- JSが動くとき ---- */
.reel.is-live { height: calc(100svh + (var(--reel-count) - 1) * 56svh); }
.reel.is-live .reel__sticky {
  position: sticky;
  top: 0;
  height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1.2rem;
  overflow: hidden;
}
.reel.is-live .reel__track {
  position: relative;
  display: block;
  padding: 0;
  overflow: visible;
  scroll-snap-type: none;
}
/* 端まで行ったら反対側から回り込ませるため、1枚ずつ中央からの位置で置く */
.reel.is-live .reelcard {
  position: absolute;
  top: 50%;
  left: 50%;
  margin: 0;
  transform:
    translate(-50%, -50%)
    translateX(var(--x, 0px))
    translateY(calc(var(--d, 2) * 10px))
    scale(calc(var(--fit, 1) * (1 - var(--d, 2) * .13)));
  filter: blur(calc(var(--d, 2) * 3.2px));
  opacity: calc(1 - var(--d, 2) * .3);
  will-change: transform, filter, opacity;
}
.reel.is-live .reelcard__text > *:not(.badge) {
  opacity: clamp(0, calc(1 - var(--d, 2) * 1.8), 1);
}
.reel.is-live .reel__hint {
  display: block;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--text-mute);
  opacity: calc(1 - var(--reel-p, 0));
}
@media (prefers-reduced-motion: reduce) {
  .reel.is-live { height: auto; }
  .reel.is-live .reel__sticky { position: static; height: auto; overflow: visible; }
  .reel.is-live .reel__track { padding: 0 max(1.2rem, calc(50% - min(64vw, 760px) / 2)); overflow-x: auto; transform: none; }
  .reel.is-live .reelcard { transform: none; filter: none; opacity: 1; }
  .reel.is-live .reelcard__text > * { opacity: 1; }
  .reel.is-live .reel__hint { display: none; }
}

/* リールの案内文：モードで出し分ける */
.reel__hint {
  display: block;
  text-align: center;
  font-size: .78rem;
  letter-spacing: .08em;
  color: var(--text-mute);
  margin-top: 1rem;
}
.reel__hint--scroll { display: none; }
.reel.is-live .reel__hint { margin-top: 0; }
.reel.is-live .reel__hint--swipe { display: none; }
.reel.is-live .reel__hint--scroll { display: inline; }
@media (prefers-reduced-motion: reduce) {
  .reel.is-live .reel__hint { display: block; margin-top: 1rem; }
  .reel.is-live .reel__hint--swipe { display: inline; }
  .reel.is-live .reel__hint--scroll { display: none; }
}

/* リールのカードでも、業種名が長いバッジは折り返す（カードからはみ出さないように） */
.reelcard .badge {
  max-width: 100%;
  flex-wrap: wrap;
  white-space: normal;
  line-height: 1.75;
  border-radius: 16px;
}
/* 2行目が「（」で始まると、括弧の余白のぶん右にずれて見えるので引き戻す */
.pricemain__value span + span { text-indent: -.42em; }
