@charset "UTF-8";
/* ==========================================================================
   リンクス 展示会ツール専門サイト
   design/*.dc.html（Claude Design・方向性 2a）から実装したスタイルシート

   構成
     1. トークン
     2. ベース
     3. レイアウト
     4. ヘッダー / ナビ
     5. ヒーロー
     6. セクション見出し
     7. カード
     8. 商品カード
     8-2. 商品の詳細ダイアログ
     9. 事例
    10. ステップ / FAQ
    11. ボタン / CTA
    12. フォーム
    13. フッター
    14. プレースホルダ
    15. レスポンシブ

   色・寸法を変えるときは 1. トークン だけを触れば全体に効く。
   ========================================================================== */

/* 1. トークン ------------------------------------------------------------ */

:root {
  /* 本体サイト links-net.co.jp のデザイントークン実測値 */
  --red: #d73b20;
  --red-dark: #a82c17;
  --red-pale: #f7ece9;
  --black: #1a1a1a;
  --white: #ffffff;
  /* 文字専用の赤。--red は地 #f5f5f5 に対して 4.25:1 で、小さい文字の基準 4.5:1 に届かない。
     地に載る赤い小さい文字だけをこれにする（白 4.97 / 地 4.55 / --field 4.60）。
     ボタンの地・図形・罫線の赤は --red のまま。見分けがつかないからといって --red に戻さない */
  --red-text: #ce391f;

  /* 地と文字 */
  --ground: #f5f5f5;        /* 本体サイト links-net.co.jp の body 実測値 */
  --text: #1a1a1a;
  --text-body: #2a2a2a;
  --text-sub: #4a453f;
  --text-mute: #6b6560;
  --text-faint: #766f68;    /* 補足の小さい文字。白・地・--field のどれに載っても 4.5:1 以上（白 4.95 / 地 4.54 / --field 4.58）。旧 #8a827a は白に 3.78:1 */

  /* 罫線・面 */
  --line: #ecebe8;
  --field: #f7f6f4;
  --field-line: #e6e4e0;
  --field-edge: #8c8781;    /* 入力欄の枠。欄の地 --field に対し 3.3:1（WCAG 1.4.11 の 3:1） */
  --field-mark: #b9b4ae;
  --field-text: #736f6a;    /* 例文。欄の地に対し 4.6:1。入力した文字（--text）より明るく保つ */

  /* 影 */
  --shadow-card: 0 2px 8px rgba(0, 0, 0, .04);
  --shadow-head: 0 2px 10px rgba(0, 0, 0, .05);
  --shadow-cta: 0 2px 12px rgba(0, 0, 0, .05);
  --shadow-photo: 0 6px 24px rgba(0, 0, 0, .12);

  /* 角丸 */
  --r-card: 16px;
  --r-panel: 20px;
  --r-cta: 24px;
  --r-img: 10px;
  --r-field: 12px;
  --r-pill: 999px;
  --r-btn: 28px;          /* ボタン高さの半分。本体サイトは h36 に対し 18px */

  /* 間隔 */
  --pad-x: 48px;          /* ページ左右 */
  --gap-section: 80px;    /* セクション間 */
  --gap-block: 36px;      /* セクション内の塊 */
  --gap-card: 20px;       /* カード同士 */

  /* 文字 */
  --font-display: var(--font-body);
  --font-body: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Yu Gothic', sans-serif;
  /* ヘッダー・フッターは本体サイトと同じ Montserrat + Noto Sans JP を使う */
  --font-chrome: 'Montserrat', 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', sans-serif;
  --font-mono: ui-monospace, Menlo, Consolas, monospace;

  --fs-h1: 48px;
  --fs-h1-sub: 44px;      /* 下層ページの見出し */
  --fs-h2: 34px;
  --fs-h2-sub: 26px;
  --fs-h3: 19px;
  --fs-body: 16px;
  --fs-small: 14px;
  --fs-fine: 13px;

  --page-max: 1280px;
}

/* 2. ベース -------------------------------------------------------------- */

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

html { -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  background: var(--ground);
  color: var(--text);
  font-family: var(--font-body);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--red); text-decoration: none; }
a:hover { color: var(--red-dark); }

img { max-width: 100%; height: auto; }

h1, h2, h3 { font-family: var(--font-display); font-weight: 700; margin: 0; }
p { margin: 0; }

:focus-visible { outline: 3px solid var(--red); outline-offset: 2px; }

/* hidden 属性を display:flex の指定より優先する（.nav は PC で常時表示のため対象外。SP の切替は 15. レスポンシブ） */
.section[hidden], .notice[hidden], form[hidden] { display: none; }

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

/* 3. レイアウト ---------------------------------------------------------- */

.page {
  width: 100%;
  max-width: var(--page-max);
  margin: 0 auto;
  background: var(--ground);
  overflow: hidden;   /* 端に配置した装飾をページ内に収める */
}

.section {
  padding: var(--gap-section) var(--pad-x) 0;
  display: flex;
  flex-direction: column;
  gap: var(--gap-block);
}

.section--flush { padding-left: 0; padding-right: 0; }

.stack { display: flex; flex-direction: column; }
.stack--sm { gap: 12px; }
.stack--md { gap: 20px; }
.stack--lg { gap: 32px; }

.grid { display: grid; gap: var(--gap-card); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 14px; }
.grid--5 { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 18px; }

/* 4. ヘッダー / ナビ ----------------------------------------------------- */

.masthead { position: relative; }

/* 本体サイトの白いライン入りモチーフ。入力・読み上げの対象にはしない。 */
.masthead__motif {
  position: absolute;
  top: 0; right: 0;
  width: clamp(160px, 23vw, 280px);
  height: auto;
  pointer-events: none;
}

.masthead__bar { position: relative; z-index: 2; padding: 24px 28px 0; }

/* 本体サイト実測: 白カード radius 16px / padding 24px 32px 24px 48px / 影なし / 高さ84px */
.header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 32px 24px 48px;
  min-height: 84px;
  background: var(--white);
  border-radius: 16px;
  font-family: var(--font-chrome);
}

.brand { display: flex; align-items: center; gap: 16px; }
/* タップ領域 44px。上下の負の margin で行の高さへの寄与を 36px（CTA と同じ）に抑え、ヘッダーの高さを変えない */
.brand__logo { display: inline-flex; align-items: center; min-height: 44px; margin: -4px 0; }
.brand__logo img { display: block; width: 80px; height: 25px; }
/* 本体サイト実測: 12px / 500 / letter-spacing .06em */
.brand__tag { font-size: 12px; font-weight: 500; letter-spacing: .06em; color: #000; }

.header__actions { display: flex; align-items: center; gap: 32px; }

/* 本体サイト実測: nav gap 32px / リンク 14px / 700 / letter-spacing .06em / #000 */
.nav { display: flex; align-items: center; gap: 32px; }
.nav__link { font-size: 14px; font-weight: 700; letter-spacing: .06em; color: #000; }
.nav__link:hover { color: var(--red); }
.nav__link[aria-current="page"] { color: var(--red); }

.nav-cta { flex: none; }
.nav-cta > span { display: inline; }

.nav-toggle { display: none; }

/* 5. ヒーロー ------------------------------------------------------------ */

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 72px var(--pad-x) 56px;
  align-items: start;
}
.hero__title {
  font-size: var(--fs-h1);
  line-height: 1.5;
  letter-spacing: .04em;
}
.hero__title em { font-style: normal; color: var(--red); }
.hero__lead {
  font-size: var(--fs-body);
  line-height: 2.3;
  color: var(--text-body);
  text-wrap: pretty;
  max-width: 40em;
}
.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* 下層ページの見出し */
.pagehead {
  position: relative;
  z-index: 1;
  padding: 64px var(--pad-x) 48px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 760px;
}
.pagehead__title { font-size: var(--fs-h1-sub); letter-spacing: .04em; }
.pagehead__lead {
  font-size: var(--fs-body);
  line-height: 2.2;
  color: var(--text-body);
  text-wrap: pretty;
}

/* 6. セクション見出し ---------------------------------------------------- */

.sec-head { display: flex; flex-direction: column; gap: 14px; }

.sec-head__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 700;
  color: var(--red-text);   /* 地の上に載るため文字専用の赤（1. トークン） */
}
.sec-head__label::before {
  content: "";
  width: 8px; height: 8px;
  border-radius: 50%;
  background: currentColor;
  flex: none;
}
.sec-head__title { font-size: var(--fs-h2); line-height: 1.5; letter-spacing: .03em; }
.sec-head__rule { width: 520px; max-width: 100%; height: 2px; background: var(--red); }

/* 下層ページ用（赤い上罫） */
.sub-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 3px solid var(--red);
  padding-top: 20px;
}
.sub-head__title { font-size: var(--fs-h2-sub); letter-spacing: .03em; }
.sub-head__note { font-size: var(--fs-fine); line-height: 1.8; color: var(--text-mute); }

/* 7. カード -------------------------------------------------------------- */

.card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: var(--white);
  border-radius: var(--r-card);
  padding: 32px 28px 36px;
  box-shadow: var(--shadow-card);
}
.card__title { font-size: var(--fs-h3); font-weight: 700; }
.card__text { font-size: var(--fs-small); line-height: 2; color: var(--text-sub); }
.card__num { font-size: var(--fs-fine); font-weight: 700; color: var(--red); }


.panel {
  background: var(--white);
  border-radius: var(--r-panel);
  padding: 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.icon { flex: none; }

.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag {
  font-size: 12px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: var(--r-pill);
  background: var(--ground);
}
.tag--plain { font-weight: 500; background: var(--white); }

/* 仕組みの図解 */
/* 3項目で行を共有し、説明文の長さにかかわらず図形と文字をそろえる。 */
.formula {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
  grid-template-rows: 72px auto auto;
  gap: 8px 12px;
  align-items: start;
}
.formula__item {
  display: grid;
  grid-row: 1 / span 3;
  grid-template-rows: subgrid;
  justify-items: center;
  text-align: center;
  min-width: 0;
}
.formula__item:nth-child(1) { grid-column: 1; }
.formula__item:nth-child(3) { grid-column: 3; }
.formula__item:nth-child(5) { grid-column: 5; }
.formula__badge {
  width: 72px; height: 72px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.formula__badge--neutral { background: #eceae6; }
.formula__badge--pale { background: var(--red-pale); }
.formula__badge--red { background: var(--red); }
.formula__name { font-size: var(--fs-fine); font-weight: 700; line-height: 1.6; }
.formula__note { font-size: 12px; line-height: 1.6; color: var(--text-mute); }
.formula__op { grid-row: 1; align-self: center; font-size: 20px; font-weight: 700; color: var(--red); }
.formula__op:nth-child(2) { grid-column: 2; }
.formula__op:nth-child(4) { grid-column: 4; }

/* 8. 商品カード ---------------------------------------------------------- */

.product {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: var(--r-card);
  padding: 16px;
  box-shadow: var(--shadow-card);
}
.product__body { display: flex; flex: 1; flex-direction: column; gap: 6px; padding: 0 4px 8px; }
/* 同じ行のカードで見積依頼のリンクの高さをそろえる（カメレオンDP だけボタンがあり背が高い） */
.product__body > .link-under { margin-top: auto; }
.product__name { font-size: 16px; font-weight: 700; }
.product__alias { font-size: 12px; color: var(--text-faint); }
.product__use { font-size: var(--fs-fine); line-height: 1.8; color: var(--text-sub); }

/* 仕様の文字は 11px だとスマホで読めないため、見出し 12px・値 13px にしている。
   デスクトップの3列でも値の行幅は約300px あり、13px で1行18字ほど入るので同じ値にそろえる */
.product__spec {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-top: 1px solid var(--line);
  padding-top: 12px;
  margin-top: 4px;
}
.product__spec dl { display: grid; grid-template-columns: auto 1fr; align-items: baseline; gap: 5px 12px; margin: 0; }
.product__spec dt { font-size: 12px; font-weight: 700; line-height: 1.6; color: var(--text-mute); }
.product__spec dd { margin: 0; font-size: 13px; line-height: 1.6; }

/* 詳細ダイアログを開くボタン（カメレオンDP）。主導線の「見積を依頼する」より控えめにするため、
   白地に細い罫だけで描く。形はサイトのボタン（.btn）と同じく左上だけ角 */
.product__more {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  margin-top: 6px;
  padding: 0 16px 0 18px;
  border: 1px solid var(--field-line);
  border-radius: 0 22px 22px 22px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: var(--fs-fine);
  font-weight: 700;
  color: var(--text);
  cursor: pointer;
}
.product__more::after {
  content: "";
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--red);
  flex: none;
}
.product__more:hover { border-color: var(--text); }

.group { display: flex; flex-direction: column; gap: 16px; }
.group__title { font-size: 18px; font-weight: 700; }

/* 区分へのジャンプ。スマホでは16商品が縦に長く続くため、ページ上部から各区分へ飛べるようにする。
   追従（sticky）はしない。スマホでは 2×2 に折り返す（15章） */
.jump {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}
.jump__link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  height: 100%;
  min-height: 60px;
  padding: 10px 40px 10px 18px;
  border-radius: var(--r-field);
  background: var(--white);
  box-shadow: var(--shadow-card);
  color: var(--text);
}
/* 下向きの矢印 */
.jump__link::after {
  content: "";
  position: absolute;
  right: 18px; top: 50%;
  width: 8px; height: 8px;
  margin-top: -6px;
  border-right: 2px solid var(--red);
  border-bottom: 2px solid var(--red);
  transform: rotate(45deg);
}
.jump__link:hover { color: var(--red); }
.jump__kind { font-size: 12px; font-weight: 700; color: var(--red); }
.jump__name { font-size: var(--fs-small); font-weight: 700; line-height: 1.5; }

/* ジャンプの行き先。ヘッダーは追従しないので、見出しの上に少し余白を残すだけでよい。
   「ご注文の条件」は見出しの上に赤い罫と余白（.sub-head、計23px）があるため、その分を足す */
.jump-target { scroll-margin-top: 24px; }
.sub-head .jump-target { scroll-margin-top: 48px; }

/* 8-2. 商品の詳細ダイアログ ---------------------------------------------- */
/* カメレオンDP のサイズと構成。カタログの誌面を貼らず、サイトの部品で組み直している。
   デスクトップは中央の窓、768px 以下は全画面のシートにする（15章）。 */

.sheet {
  width: min(880px, calc(100vw - 48px));
  max-width: none;
  max-height: calc(100vh - 48px);
  max-height: calc(100dvh - 48px);
  padding: 0;
  border: 0;
  border-radius: var(--r-panel);
  background: var(--white);
  color: var(--text);
  box-shadow: 0 12px 48px rgba(0, 0, 0, .18);
  overflow: hidden;
}
.sheet[open] { display: flex; flex-direction: column; }
/* URL の #chameleon から開いたときは窓そのものにフォーカスが乗る。枠線は出さない */
.sheet:focus, .sheet:focus-visible { outline: none; }
.sheet::backdrop { background: rgba(26, 26, 26, .45); }
body:has(.sheet[open]) { overflow: hidden; }

.sheet__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px 18px 28px;
  border-bottom: 1px solid var(--line);
}
.sheet__kicker { font-size: 12px; font-weight: 700; color: var(--red); }
.sheet__title { margin: 2px 0 0; font-family: var(--font-display); font-size: 22px; font-weight: 700; }
.sheet__close {
  flex: none;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: var(--r-pill);
  background: var(--white);
  color: var(--text);
  cursor: pointer;
}
.sheet__close:hover { border-color: var(--text); }

.sheet__body {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 24px 28px 32px;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.sheet__lead { margin: 0; font-size: var(--fs-small); line-height: 1.9; color: var(--text-sub); }
.sheet__block { display: flex; flex-direction: column; gap: 12px; }
.sheet__h { display: flex; align-items: center; flex-wrap: wrap; gap: 4px 10px; margin: 0; font-size: 16px; font-weight: 700; }
.sheet__h span { font-size: 12px; font-weight: 400; color: var(--text-faint); }

/* 冒頭の組み立て図。部品の名前だけでは位置が伝わらないため、組み上げた姿に 1〜3 を振り、
   下の各節の見出しにも同じ番号を付けて対応させる */
.badge-num {
  flex: none;
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-chrome);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}
.sheet__h .badge-num { width: 22px; height: 22px; font-size: 12px; font-weight: 700; color: var(--white); }

.anatomy {
  display: grid;
  grid-template-columns: 280px 1fr;
  align-items: center;
  gap: 28px;
  padding: 20px 28px 20px 20px;
  border-radius: var(--r-card);
  background: var(--field);
}
.anatomy__art { display: flex; flex-direction: column; align-items: center; gap: 4px; margin: 0; }
.anatomy__art svg { width: 100%; height: auto; }
.anatomy__cap { font-size: 12px; color: var(--text-faint); }
.anatomy__steps { display: flex; flex-direction: column; gap: 18px; margin: 0; padding: 0; list-style: none; }
.anatomy__steps li { display: flex; align-items: flex-start; gap: 12px; }
.anatomy__steps strong { display: block; margin-bottom: 2px; font-size: 15px; font-weight: 700; }
.anatomy__text { font-size: 13px; line-height: 1.8; color: var(--text-sub); }

.anat__top { fill: var(--white); }
.anat__front { fill: #eceae6; }
.anat__side { fill: #dcd9d4; }
.anat__tray > * { stroke: var(--text); stroke-width: 1.3; stroke-linejoin: round; }
.anat__pole rect { fill: var(--text); }
.anat__pole--rear rect { fill: var(--text-faint); }
.anat__leg rect { fill: var(--text-sub); }
.anat__leg circle { fill: var(--text); }
.anat__call line { stroke: var(--red); stroke-width: 1.2; }
.anat__dot, .anat__badge { fill: var(--red); }
.anat__call text { fill: var(--white); font-family: var(--font-chrome); font-size: 15px; font-weight: 700; text-anchor: middle; }
.sheet__sub { margin: 4px 0 0; font-size: 12px; font-weight: 700; color: var(--text-mute); }
.sheet__note { margin: 0; font-size: 12px; line-height: 1.8; color: var(--text-sub); }
.sheet__fine { margin: 0; font-size: 12px; line-height: 1.8; color: var(--text-faint); }
.sheet__foot { border-top: 1px solid var(--line); padding-top: 20px; }

.fig-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; }
.fig { display: flex; flex-direction: column; gap: 8px; margin: 0; }
.fig__art {
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  padding: 12px;
  border-radius: var(--r-img);
  background: var(--field);
  position: relative;
  overflow: hidden;
}
.fig__art > svg { width: 100%; height: 100%; }
/* 写真は縦横比がまちまちなので、枠（4:3）に合わせて内側に収める。
   グリッドの行に任せると写真の実寸で行が伸びるため、絶対配置で枠に固定する */
.fig__art > img {
  position: absolute;
  inset: 14px;
  width: calc(100% - 28px);
  height: calc(100% - 28px);
  object-fit: contain;
}
.fig figcaption { display: flex; flex-direction: column; gap: 2px; }
.fig__name { font-size: 13px; font-weight: 700; }
.fig__meta { font-size: 12px; line-height: 1.7; color: var(--text-sub); }
.fig__sub { font-size: 12px; color: var(--text-faint); }

/* 棚板の上面図。6種とも viewBox 840×630（1単位＝1mm）で描き、縮尺をそろえている */
.tray__outer { fill: var(--white); stroke: var(--text); stroke-width: 1.5; vector-effect: non-scaling-stroke; }
.tray__inner { fill: none; stroke: var(--field-mark); stroke-width: 1; stroke-dasharray: 4 3; vector-effect: non-scaling-stroke; }

/* 9. 事例 ---------------------------------------------------------------- */


.case__kicker { font-size: var(--fs-fine); font-weight: 700; color: var(--red-text); }
.case__text { font-size: 16px; line-height: 2; color: var(--text-body); text-wrap: pretty; }
.pagehead--cases { max-width: 1000px; padding-bottom: 12px; }
.pagehead--cases .pagehead__title { line-height: 1.55; }
.cases-index { padding-top: 28px; }
.case-nav { display: grid; grid-template-columns: repeat(3,minmax(0,1fr)); gap: 14px; }
.case-nav__link { display:flex; align-items:center; gap:14px; padding:20px; background:var(--white); border:1px solid var(--line); border-radius:12px; color:var(--text); min-height:96px; }
.case-nav__link > span:nth-child(2) { flex:1; }
.case-nav__link strong { display:block; font-size:14px; line-height:1.7; }
.case-nav__link span span { display:block; margin-top:5px; font-size:12px; color:var(--text-mute); }
.case-nav__number { color:var(--red-text); font-family:var(--font-chrome); font-size:18px; }
.case-nav__link:hover { border-color:var(--red); color:var(--red-dark); }
.stories { gap:76px; padding-top:56px; }
.story { scroll-margin-top:24px; border-top:2px solid var(--red); padding-top:28px; }
.story__head { display:flex; align-items:center; gap:20px; margin-bottom:28px; }
.story__number { font-family:var(--font-chrome); font-size:36px; color:var(--red-text); }
.story__name { font-size:28px; line-height:1.5; margin-top:6px; }
.story__layout { display:grid; grid-template-columns:1.05fr 1fr; gap:40px; align-items:start; }
.story__visual { display:flex; flex-direction:column; gap:24px; min-width:0; }
.story figure { margin:0; }
.story figure img { display:block; width:100%; height:auto; border-radius:12px; }
.story figcaption { margin-top:10px; font-size:13px; line-height:1.8; color:var(--text-mute); }
.story__body { display:flex; flex-direction:column; gap:20px; min-width:0; }
.story__title { font-size:24px; line-height:1.6; letter-spacing:.02em; }
.story__body > p { font-size:16px; line-height:2; color:var(--text-body); text-wrap:pretty; }
.story__parts { border-top:1px solid #d9d5d0; padding-top:20px; }
.story__parts h4 { margin:0 0 12px; font-size:14px; }
.story__parts ul { display:flex; flex-wrap:wrap; gap:8px; margin:0; padding:0; list-style:none; }
.story__parts a { display:inline-flex; align-items:center; min-height:44px; padding:8px 12px; background:var(--white); color:var(--text-sub); border:1px solid #ddd8d2; border-radius:6px; font-size:13px; line-height:1.6; }
.story__parts a:hover { border-color:var(--red); color:var(--red-dark); }
.story__note { font-size:13px; line-height:1.9; color:var(--text-mute); margin-top:12px; }
.story__body > .btn { align-self:flex-start; margin-top:4px; font-size:14px; padding:12px 24px; }
.case-scope { font-size:14px; line-height:1.9; color:var(--text-sub); padding:24px 28px; background:var(--white); border-radius:12px; }
.experience__image { width:100%; aspect-ratio:1; object-fit:contain; background:var(--white); }
.experience__title { font-size:19px; line-height:1.6; }
.experience-grid .product__body { flex:1; }
.experience-grid .link-under { align-self:flex-start; margin-top:auto; }
.case-preview__image img { display:block; width:100%; aspect-ratio:1; height:auto; }
.case-preview .product__body { flex:1; }
.case-preview .link-under { align-self:flex-start; margin-top:auto; }
.flow-list { list-style:none; margin:0; padding:0; }
.step__text { font-size:14px; line-height:1.9; color:var(--text-sub); }
.faq { background:var(--white); border-radius:12px; }
.faq summary { display:flex; align-items:center; gap:18px; padding:24px; min-height:64px; cursor:pointer; list-style:none; font-size:16px; font-weight:700; line-height:1.7; }
.faq summary::-webkit-details-marker { display:none; }
.faq summary > span:nth-child(2) { flex:1; }
.faq__icon { width:14px; height:14px; position:relative; flex:none; }
.faq__icon::before,.faq__icon::after { content:''; position:absolute; background:var(--red); top:6px; left:0; width:14px; height:2px; }
.faq__icon::after { transform:rotate(90deg); }
.faq[open] .faq__icon::after { display:none; }
.faq__answer { padding:0 56px 24px; font-size:16px; line-height:1.9; color:var(--text-sub); }
.inline-link { display:inline-flex; align-items:center; min-height:44px; color:var(--red-text); text-decoration:underline; text-underline-offset:4px; }
.skip-link { position:absolute; top:8px; left:8px; padding:12px 20px; transform:translateY(-160%); z-index:100; background:white; color:var(--text); }
.skip-link:focus { transform:translateY(0); }
.product[id] { scroll-margin-top:24px; }

/* 10. ステップ / FAQ ----------------------------------------------------- */

.step {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: var(--white);
  border-radius: var(--r-card);
  padding: 24px 20px 28px;
  box-shadow: var(--shadow-card);
}
.step__no { font-size: 12px; font-weight: 700; color: var(--red); }
.step__title { font-size: 16px; font-weight: 700; line-height: 1.6; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  display: flex;
  align-items: center;
  gap: 20px;
  background: var(--white);
  border-radius: 14px;
  padding: 22px 26px;
  min-height: 44px;
  box-shadow: var(--shadow-card);
}
.faq-item__q {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--red);
  flex: none;
}
.faq-item__text { font-size: 16px; font-weight: 700; flex: 1; }
.faq-item__a { font-size: 15px; color: var(--text-sub); flex: 1.2; line-height: 1.7; }

/* 仕様表 */
.spec-table {
  display: grid;
  grid-template-columns: 240px 1fr;
  border: 1px solid var(--line);
  border-radius: var(--r-img);
  overflow: hidden;
}
.spec-table__key {
  background: var(--ground);
  padding: 16px 20px;
  font-size: var(--fs-fine);
  font-weight: 700;
  border-right: 1px solid var(--line);
}
.spec-table__val { padding: 16px 20px; }
.spec-table__key:not(:first-of-type),
.spec-table__key:not(:first-of-type) + .spec-table__val { border-top: 1px solid var(--line); }

/* 11. ボタン / CTA ------------------------------------------------------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 56px;
  padding: 0 34px;
  /* 本体サイトのボタン形状: 左上だけ角、残り3隅は高さの半分 */
  border-radius: 0 var(--r-btn) var(--r-btn) var(--r-btn);
  font-family: var(--font-chrome);
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .06em;
  border: 0;
  cursor: pointer;
  text-align: center;
}
.btn::after {
  content: "";
  width: 7px; height: 7px;
  border-radius: 50%;
  flex: none;
}
.btn--red { background: var(--red); color: var(--white); }
.btn--red:hover { background: var(--red-dark); color: var(--white); }
.btn--red::after { background: var(--white); }
.btn--dark { background: var(--black); color: var(--white); }
.btn--dark:hover { color: var(--white); opacity: .88; }
.btn--dark::after { background: var(--red); }
.btn--lg { min-height: 60px; padding: 0 40px; font-size: 17px; --r-btn: 30px; }
/* ヘッダーの CTA。本体サイト実測: h36 / padding 0 14px 0 22px / gap 8px / dot 8px */
.btn--sm {
  min-height: 36px;
  padding: 0 14px 0 22px;
  gap: 8px;
  font-size: 14px;
  --r-btn: 18px;
}
.btn--sm::after { width: 8px; height: 8px; }
.btn[aria-disabled="true"] { opacity: .45; cursor: not-allowed; }

.link-under {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: var(--fs-small);
  font-weight: 700;
  color: var(--text);
  border-bottom: 2px solid var(--red);
}
.link-under:hover { color: var(--red-text); }

.cta { padding: var(--gap-section) var(--pad-x) 88px; }
.cta__inner {
  position: relative;
  background: var(--white);
  border-radius: var(--r-cta);
  padding: 64px 56px;
  box-shadow: var(--shadow-cta);
  overflow: hidden;
}
.cta__inner::after {
  content: "";
  position: absolute;
  top: 0; right: 0;
  width: 230px; height: 240px;
  background: url("img/brand/links-corner.svg") top right / contain no-repeat;
  pointer-events: none;
}
.cta__body {
  position: relative;
  z-index: 1;
  max-width: calc(100% - 206px);
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}
.cta__title { font-size: 36px; letter-spacing: .03em; }
.cta__text { font-size: 15px; line-height: 2; color: var(--text-sub); max-width: 620px; }

/* 赤地の帯（海外展示会） */
.band-red {
  background: var(--red);
  color: var(--white);
  padding: 64px var(--pad-x);
  display: flex;
  flex-direction: column;
  gap: var(--gap-block);
}
.band-red .sec-head__label { color: var(--white); }
.band-red .card { color: var(--text); }
/* 白の不透明度を下げると赤地に対して 4.5:1 を割る（.9 で 4.01:1）。白のまま置く（4.63:1） */
.band-red__note { font-size: 12px; line-height: 1.9; color: var(--white); }

/* 12. フォーム ----------------------------------------------------------- */

.form-section {
  background: var(--white);
  border-radius: var(--r-panel);
  padding: 36px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 28px;
  border: 0;
  margin: 0;
}
.req { font-size: 12px; font-weight: 700; color: var(--red); }

.field { display: flex; flex-direction: column; gap: 10px; }
.field__label { font-size: var(--fs-small); font-weight: 700; }
.field__label .optional { font-weight: 500; color: var(--text-faint); }

.input,
.textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 18px;
  background: var(--field);
  border: 1px solid var(--field-edge);
  border-radius: var(--r-field);
  font-family: var(--font-body);
  font-size: var(--fs-fine);
  color: var(--text);
}
.textarea { min-height: 140px; padding: 18px; line-height: 1.9; resize: vertical; }
.input::placeholder, .textarea::placeholder { color: var(--field-text); }

.check {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 52px;
  padding: 0 18px;
  background: var(--field);
  border: 1px solid var(--field-line);
  border-radius: var(--r-field);
  font-size: var(--fs-fine);
  font-weight: 500;
  cursor: pointer;
}
.check input { width: 18px; height: 18px; accent-color: var(--red); flex: none; margin: 0; }
.check:hover { border-color: var(--field-mark); }
/* 押せる行（label）だけ枠を入力欄と同じ濃さにする。入稿ガイドの span.check は操作できない見本なので淡い枠のまま */
label.check { border-color: var(--field-edge); }
label.check:hover { border-color: var(--text-mute); }
.check--bare {
  background: none;
  border: 0;
  padding: 0;
  min-height: 44px;
}
/* 同意文の中のリンクは本文と一緒に折り返す（inline-flex のままだと「（」で改行して縦に膨らむ） */
.check--bare .link-under { display: inline; min-height: 0; font-size: inherit; border-bottom-width: 1px; }

/* 商材と数量。チェックした商材の下に数量欄を出す（form.js）。JS が無いときは全商材の欄が出たまま */
.pick { display: flex; flex-direction: column; gap: 8px; }
.pick:has(input[name="items"]:checked) .check { border-color: var(--red); }
.pick__qty {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-left: 18px;
  font-size: var(--fs-fine);
  font-weight: 500;
  color: var(--text-sub);
}
.pick__qty[hidden] { display: none; }
.pick__qty .input { width: 96px; min-height: 44px; padding: 0 12px; }
/* 10点セットは商品ではなく、基本商品の一括選択として扱う。 */
.pick-group__head { display: flex; align-items: center; justify-content: space-between; gap: 12px 20px; flex-wrap: wrap; }
.pick-bulk { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; cursor: pointer; font-size: 14px; font-weight: 700; }
.pick-bulk[hidden] { display: none; }
.pick-bulk input { width: 18px; height: 18px; accent-color: var(--red); flex: none; }
.pick-bulk__count { font-size: 12px; font-weight: 400; color: var(--text-sub); }
.pick-group__hint { font-size: 13px; line-height: 1.8; color: var(--text-sub); }

/* 商材の行。名前だけでは分からない商材があるため、画像と一言説明を添え、商品ページと同じ区分で並べる */
.pick-head { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 4px 16px; }
.pick-groups { display: flex; flex-direction: column; gap: 24px; }
.pick-group { display: flex; flex-direction: column; gap: 12px; }
.pick-group__title { margin: 0; font-size: var(--fs-fine); font-weight: 700; color: var(--text-sub); }
.check--item { min-height: 76px; padding: 10px 16px; gap: 12px; }
.check__img { flex: none; width: 56px; height: 56px; object-fit: contain; background: var(--white); border-radius: 8px; }
.check__text { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.check__name { font-size: var(--fs-small); font-weight: 700; line-height: 1.5; }
.check__use { font-size: 12px; font-weight: 500; line-height: 1.6; color: var(--text-mute); }

.dropzone {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
  justify-content: center;
  border: 2px dashed #d5d1cb;
  border-radius: var(--r-card);
  padding: 44px 24px;
  background: #faf9f7;
  text-align: center;
}
.dropzone__label { font-size: var(--fs-small); font-weight: 700; }

.notice {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--ground);
  border-radius: var(--r-field);
  padding: 16px 18px;
  font-size: var(--fs-fine);
  line-height: 1.8;
  color: var(--text-sub);
}
.notice--warn { background: var(--red-pale); color: var(--text); }

.thanks {
  background: var(--white);
  border-radius: var(--r-panel);
  padding: 64px 32px;
  box-shadow: var(--shadow-card);
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}
.thanks__mark {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--red-pale);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* タッチ端末では入力欄の文字を 16px にする。iOS Safari は 16px 未満の欄にフォーカスすると画面を拡大する。
   幅ではなく pointer で判定するのは、iPad（横向きの iPad Pro は 1366px）が幅の条件から漏れるため。
   マウスで操作する端末は 13px のまま */
@media (pointer: coarse) {
  .input, .textarea { font-size: 16px; }
}

/* 13. フッター ----------------------------------------------------------
   本体サイト links-net.co.jp 実測: 地は #f5f5f5（黒ではない）／
   inner max-width 1200px・padding 80px 0／タグライン12px・住所16px・
   ナビ項目14px、いずれも weight 500・letter-spacing .04em・色 #000 */

.footer {
  background: var(--ground);
  color: #000;
  font-family: var(--font-chrome);
  padding: 0 var(--pad-x);
  border-top: 1px solid rgba(0, 0, 0, .07);
}
.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 64px;
  align-items: start;
}

.footer__brand { display: flex; flex-direction: column; gap: 56px; }
.footer__identity { display: flex; flex-direction: column; align-items: flex-start; gap: 16px; }
.footer__logo { display: inline-flex; align-items: center; min-height: 45px; }
.footer__logo img { display: block; width: 144px; height: 45px; }
.footer__tag { font-size: 12px; font-weight: 500; letter-spacing: .06em; color: #000; }
.footer__address {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: .04em;
  color: #000;
}

.footer__cols { display: flex; gap: 56px; }
.footer__col { display: flex; flex-direction: column; }
.footer__col-title {
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  color: #000;
  margin-bottom: 8px;
}
/* リンクの高さはタップ領域の 44px に合わせる（本体サイトは 40px） */
.footer__col a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #000;
}
.footer__col a:hover { color: var(--red-text); }
/* 外部リンク（リンクス本体）の矢印。本体サイトのフッターと同じ記号 */
.footer__col a .ext, .footer__legal .ext { opacity: .55; flex: none; }
.footer__col a:hover .ext, .footer__legal:hover .ext { opacity: 1; }

.footer__bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 44px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .04em;
  color: #000;
}
.footer__legal:hover { color: var(--red-text); }
.footer__copy { font-size: 12px; font-weight: 500; letter-spacing: .04em; color: #000; }

/* 14. プレースホルダ ------------------------------------------------------
   料金・仕様・写真が未受領のため、値を作らず画面に出す。
   実データが入ったらこの2クラスを消す。 */

.ph {
  border-radius: var(--r-img);
  background: repeating-linear-gradient(45deg, #f4f2ee 0 10px, #eae7e1 10px 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--text-faint);
  text-align: center;
  padding: 0 12px;
  line-height: 1.6;
}
.ph--1-1 { aspect-ratio: 1 / 1; }
.ph:has(> img) { padding: 0; background: var(--white); }
.ph > img { width: 100%; height: 100%; object-fit: contain; border-radius: inherit; display: block; }
.ph--4-3 { aspect-ratio: 4 / 3; }
.ph--16-9 { aspect-ratio: 16 / 9; }
/* 15. レスポンシブ --------------------------------------------------------
   スマホの数値は design/MainSP.dc.html（TOP のスマホ版）から読み取った規則。
   TOP 以外の4ページはデザインが無く、同じ規則を適用した実装である。 */

@media (max-width: 1024px) {
  :root {
    --pad-x: 32px;
    --gap-section: 64px;
    --fs-h1: 40px;
    --fs-h2: 30px;
  }
  .grid--5 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--4 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .grid--3 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .cta__inner { padding: 48px 36px; }
  .cta__inner::after { width: 170px; height: 177px; }
  .cta__body { max-width: calc(100% - 144px); }
}

@media (max-width: 768px) {
  /* 質問と回答を横に並べると幅が足りず、両方が細く折り返される。回答は次の行へ送る。 */
  .faq-item { flex-wrap: wrap; }
  .faq-item__a { flex: 1 0 100%; }
  :root {
    --pad-x: 20px;
    --gap-section: 48px;
    --gap-block: 24px;
    --gap-card: 12px;
    --r-card: 14px;
    --r-panel: 16px;
    --r-cta: 20px;
    --fs-h1: 30px;
    --fs-h1-sub: 28px;
    --fs-h2: 23px;
    --fs-h2-sub: 21px;
    --fs-h3: 17px;
    --fs-body: 14px;
    --fs-small: 13.5px;
  }

  .masthead__motif { width: 132px; }

  .masthead__bar { padding: 12px 12px 0; }
  .header { padding: 12px 16px; min-height: 60px; border-radius: 14px; gap: 12px; }
  .brand { flex-direction: column; align-items: flex-start; gap: 3px; }
  .brand__logo { min-height: 44px; padding: 12px 0 2px; margin: -12px 0 -2px; }   /* タップ領域 44px。上はヘッダーの余白へ、下はタグラインの手前まで広げる。padding と margin を打ち消し合わせ、ロゴの位置は高さ 30px のときのまま */
  .brand__logo img { width: 68px; height: 21px; }
  .brand__tag { font-size: 11px; letter-spacing: .04em; }

  /* ナビはハンバーガーへ。開閉は assets/nav.js */
  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px; height: 44px;
    padding: 0 11px;
    background: none;
    border: 0;
    cursor: pointer;
  }
  .nav-toggle span { height: 2px; background: var(--text); border-radius: 2px; }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 16px 16px;
    background: var(--white);
    border-radius: 18px;
    box-shadow: var(--shadow-head);
    z-index: 20;
  }
  .nav[hidden] { display: none; }
  .nav__link { display: flex; align-items: center; min-height: 48px; }

  .header__actions { gap: 8px; }
  .nav-cta { min-height: 44px; padding: 0 16px; font-size: 12px; }
  .nav-cta__tail { display: none; }   /* 「見積・入稿はこちら」→「見積・入稿」 */

  .hero { grid-template-columns: 1fr; gap: 24px; padding: 40px var(--pad-x) 32px; }
  .hero__title { line-height: 1.55; letter-spacing: .02em; }
  .hero__lead { line-height: 2.1; }
  .hero__actions { flex-direction: column; align-items: stretch; gap: 16px; }
  .hero__actions .btn { width: 100%; }
  .hero__actions .link-under { align-self: flex-start; }

  .pagehead { padding: 40px var(--pad-x) 32px; gap: 16px; }

  .sec-head__label { font-size: 13px; }
  .sec-head__title { line-height: 1.6; letter-spacing: .02em; }
  .sec-head__rule { width: 120px; }
  .sub-head { padding-top: 16px; }

  .grid--2, .grid--3, .grid--4, .grid--5 { grid-template-columns: 1fr; }

  .card { padding: 22px 20px 24px; }
  .card--num { padding: 20px; }
  .panel { padding: 24px 20px; }

  /* 仕組みの図解は縦積みに */
  .formula { grid-template-columns: 1fr; grid-template-rows: none; gap: 16px; }
  .formula .formula__item {
    grid-column: 1;
    grid-row: auto;
    grid-template-columns: 56px minmax(0, 1fr);
    grid-template-rows: auto auto;
    gap: 4px 14px;
    justify-items: start;
    text-align: left;
  }
  .formula__badge { grid-column: 1; grid-row: 1 / span 2; width: 56px; height: 56px; }
  .formula__name { grid-column: 2; grid-row: 1; align-self: end; }
  .formula__note { grid-column: 2; grid-row: 2; align-self: start; }
  .formula__item:last-child .formula__name { grid-row: 1 / span 2; align-self: center; }
  .formula .formula__op { grid-column: 1; grid-row: auto; padding-left: 20px; font-size: 18px; }

  /* 商品カードは横並び（MainSP の様式） */
  .product { flex-direction: row; align-items: flex-start; gap: 14px; padding: 12px; }
  .product > .ph { width: 104px; height: 104px; flex: none; aspect-ratio: auto; font-size: 10.5px; padding: 0 8px; }
  .product__body { padding: 0; gap: 5px; }
  .product__name { font-size: 14px; }
  .product__spec { width: 100%; }

  .sheet { width: 100vw; height: 100vh; height: 100dvh; max-height: none; margin: 0; border-radius: 0; }
  .sheet__head { padding: 12px 12px 12px 16px; }
  .sheet__title { font-size: 19px; }
  .sheet__body { gap: 28px; padding: 20px 16px 40px; }
  .fig-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 10px; }
  .anatomy { grid-template-columns: 1fr; gap: 16px; padding: 16px; }
  .anatomy__art { width: 100%; max-width: 260px; margin: 0 auto; }

  /* 区分へのジャンプは 2×2。1行に4つは入らず、横スクロールにすると右の区分が見えなくなるため */
  .jump { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 8px; }
  .jump__link { min-height: 56px; padding: 8px 30px 8px 14px; }
  .jump__link::after { right: 14px; }
  .case { padding: 20px; }

  .spec-table { grid-template-columns: 1fr; }
  .spec-table__key { border-right: 0; border-top: 1px solid var(--line); }
  .spec-table__key:first-of-type { border-top: 0; }
  .spec-table__key + .spec-table__val { border-top: 0; }

  .faq-item { gap: 14px; padding: 18px 20px; border-radius: 12px; }
  .faq-item__text { font-size: 14.5px; }

  .band-red { padding: 40px var(--pad-x); }

  .cta { padding: var(--gap-section) var(--pad-x) 56px; }
  .cta__inner { padding: 36px 24px; }
  .cta__title { font-size: 25px; line-height: 1.55; }
  .cta__body .btn { width: 100%; }
  .cta__inner { padding-top: 104px; }
  .cta__inner::after { width: 94px; height: 98px; }
  .cta__body { max-width: none; }

  .form-section { padding: 24px 20px; gap: 24px; }
  /* 商材は画像と説明つきの行なので、スマホでは1列（.grid--3 の1列化に任せる）。区分の見出しで目で追えるようにしている */
  .check--item { padding: 10px 12px; }
  .check-grid .pick__qty { padding-left: 12px; }
  .footer__inner { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
  .footer__brand { gap: 32px; }
  .footer__address { font-size: 14px; }
  .footer__cols { flex-direction: column; gap: 24px; }
  .footer__bottom { padding-bottom: 32px; }
}

/* 印刷 */
@media print {
  .nav-toggle, .hero__actions, .cta { display: none; }
  body { background: #fff; }
  .card, .panel, .product { box-shadow: none; border: 1px solid #ddd; }
}

@media (max-width: 1024px) {
  .story__layout { gap:28px; }
  .story__name { font-size:25px; }
  .story__title { font-size:22px; }
  .case-nav__link { padding:16px; gap:10px; }
}
@media (max-width: 768px) {
  .pagehead--cases { padding-bottom:8px; }
  .pagehead--cases .pagehead__title { font-size:28px; }
  .case-nav { grid-template-columns:1fr; gap:8px; }
  .case-nav__link { min-height:76px; padding:14px 18px; }
  .case-nav__link span span { margin-top:2px; }
  .stories { gap:48px; padding-top:36px; }
  .story { padding-top:20px; }
  .story__head { gap:14px; margin-bottom:20px; }
  .story__number { font-size:28px; }
  .story__name { font-size:21px; }
  .story__layout { grid-template-columns:1fr; gap:24px; }
  .story__body { gap:18px; }
  .story__title { font-size:23px; }
  .story__body > p { font-size:16px; line-height:1.95; }
  .story__body > .btn { width:100%; font-size:14px; }
  .story__parts a { font-size:13px; }
  .case-scope { padding:20px; }
  .experience-grid .product { flex-direction:column; }
  .experience__image { width:100%; }
  .case-preview { flex-direction:column; }
  .case-preview__image { width:100%; }
  .case-preview .product__body { padding:20px; }
  .case-preview .product__name { font-size:20px; }
  .case-preview .product__use { font-size:15px; }
  .faq summary { padding:18px; gap:12px; font-size:16px; }
  .faq__answer { padding:0 20px 22px; font-size:16px; }
}

/* TOP：採用したA案。全景画像とコピーを左右に配置する。 */
.hero--single { position: relative; grid-template-columns:minmax(0,.92fr) minmax(0,1.08fr); gap:42px; align-items:center; padding:42px var(--pad-x) 52px; }
.hero--single .hero__title { font-size:clamp(34px,3.6vw,52px); line-height:1.5; letter-spacing:.02em; }
.hero__eyebrow { color:var(--red-text); font-size:14px; font-weight:700; letter-spacing:.1em; margin:0 0 22px; }
.hero--single .hero__lead { margin-top:25px; font-size:16px; line-height:2; }
.hero--single .hero__actions { margin-top:32px; gap:24px; }
.hero__visual { margin:0; min-width:0; }
.hero__visual img { display:block; width:100%; height:auto; border-radius:18px; }
.hero__visual figcaption { font-size:12px; line-height:1.8; color:var(--text-sub); margin-top:10px; text-align:right; }
/* ヒーローの約束を、設営・収納・着せ替えの具体的な使い方へつなぐ。 */
.feature-section__intro { display:grid; grid-template-columns:1.15fr 1fr; gap:48px; align-items:end; }
.feature-section__lead { max-width:440px; font-size:16px; line-height:2; color:var(--text-sub); }
.feature-list { display:grid; grid-template-columns:repeat(3,minmax(0,1fr)); gap:32px; margin:0; padding:0; list-style:none; }
.feature-item { display:flex; flex-direction:column; align-items:flex-start; gap:20px; padding-top:26px; border-top:3px solid var(--red); }
.feature-item__number { font:500 36px/1 var(--font-chrome); color:var(--red-text); }
.feature-item__title { font-size:clamp(22px,1.75vw,26px); line-height:1.6; letter-spacing:.01em; }
.feature-item__text { font-size:16px; line-height:2; color:var(--text-sub); }
@media(max-width:900px) {
  .feature-section__intro { grid-template-columns:1fr; gap:20px; }
  .feature-section__lead { max-width:600px; }
  .feature-list { grid-template-columns:1fr; gap:32px; }
  .feature-item { display:grid; grid-template-columns:56px minmax(0,1fr); gap:16px 24px; padding-top:24px; }
  .feature-item__number { grid-row:1; padding-top:5px; font-size:32px; }
  .feature-item__title { grid-column:2; font-size:24px; }
  .feature-item__text { grid-column:2; }
}
@media(max-width:600px) {
  .feature-section__lead { font-size:15px; }
  .feature-item { grid-template-columns:40px minmax(0,1fr); gap:18px 16px; }
  .feature-item__number { font-size:28px; }
  .feature-item__title { font-size:clamp(20px,5.7vw,22px); }
  .feature-item__text { grid-column:1 / -1; }
}
@media(min-width:701px) and (max-width:1100px) {
  .hero--single { padding-left:32px; padding-right:32px; gap:22px; }
  .hero--single .hero__title { font-size:clamp(29px,3.7vw,40px); }
  .hero--single .hero__lead { font-size:15px; }
  .hero--single .hero__actions { flex-direction:row; align-items:center; gap:20px; }
  .hero--single .hero__actions .btn { width:auto; font-size:14px; min-height:52px; }
}
@media(max-width:700px) {
  .hero--single { position: relative; grid-template-columns:1fr; padding:30px 20px 26px; gap:27px; }
  .hero__eyebrow { font-size:12px; margin-bottom:15px; }
  .hero--single .hero__title { font-size:clamp(29px,8.2vw,40px); }
  .hero--single .hero__lead { margin-top:16px; font-size:14px; line-height:1.9; }
  .hero__desktop-break { display:none; }
  .hero--single .hero__actions { margin-top:24px; flex-direction:row; align-items:center; gap:22px; }
  .hero--single .hero__actions .btn { width:auto; font-size:14px; min-height:48px; padding:12px 20px; }
  .hero--single .hero__actions .link-under { font-size:13px; align-self:center; }
  .hero__visual img { border-radius:12px; }
  .hero__visual figcaption { margin-top:7px; }
}
