@charset "UTF-8";
/* 株式会社エーワンオフィス コーポレートサイト
   ------------------------------------------------------------------
   ブランドカラーは旧サイトの #004098 を継承。
   日本語はシステムフォントで表示するため Web フォントの読み込みはなし。 */

:root {
  --brand: #093E92;
  --brand-ink: #062c69;
  --navy: #05204b;
  --navy-2: #093E92;
  --accent: #ff7a45;          /* 濃色背景の上でのみ使用 */
  /* 【2026-08-27】トップ（案1b）と同じ値に揃えた。
     以前は地が純白（#fff）で、トップの生成り（#faf9f7）と行き来すると色が飛んだ */
  --ink: #12151c;
  --ink3: #6b7280;            /* 中見出しの分野名など、いちばん薄い文字 */
  --muted: #3d4552;
  --line: #e3e0da;
  --surface: #f2f0ec;
  --paper: #faf9f7;           /* 紙の地。body の背景 */
  --white: #fff;

  --sans: system-ui, -apple-system, "Hiragino Sans", "Hiragino Kaku Gothic ProN",
          "Yu Gothic", "Noto Sans JP", Meiryo, sans-serif;

  --wrap: 1160px;
  --pad: clamp(20px, 5vw, 40px);
  --sec: clamp(64px, 9vw, 120px);
  --radius: 14px;
  --shadow: 0 2px 4px rgba(16, 21, 28, .04), 0 12px 32px rgba(16, 21, 28, .07);
}

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

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.9;
  color: var(--ink);
  background: var(--paper);
  font-feature-settings: "palt" 1;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand); text-underline-offset: .18em; }
h1, h2, h3, h4 { line-height: 1.35; margin: 0; font-weight: 700; letter-spacing: .01em; }
p { margin: 0; }
ul { margin: 0; padding: 0; list-style: none; }

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

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.section { padding-block: var(--sec); }
.section--surface { background: var(--surface); }
.skip {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--white); color: var(--brand); padding: 12px 20px; font-weight: 700;
}
.skip:focus { left: 8px; top: 8px; }

/* ── 見出し ───────────────────────────────
   【2026-08-27】トップ（案1b）の見出しに、他ページも合わせた。
   トップだけ別の顔になっていて、行き来すると別サイトのように見えたため。
   見た目の原本は _試作/繋ぎ_1bから制作実績.html の .hL / .hM。
   ・大見出し：英字を大きく（Helvetica 800）→ 0.1mmの細い罫 → 游明朝で和文
   ・中見出し：Avenir 400。字間は詰めない（詰めると別書体の字面になる） */
.eyebrow {
  display: block;
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(46px, 7.6vw, 94px); font-weight: 800; line-height: 1.02;
  letter-spacing: -.005em; text-transform: uppercase;
  color: var(--ink); margin: 0;
}
.eyebrow::after {
  content: ""; display: block; border-top: .1mm solid var(--ink); margin: 0;
}
.section-title {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 2.3vw, 27px); font-weight: 500; letter-spacing: .14em;
  color: var(--muted); margin: 0 0 16px;
}
.section-lead { color: var(--muted); max-width: 62ch; font-size: 16px; }
.section-head { margin-bottom: clamp(32px, 5vw, 56px); }

/* 中見出し（EDITORIAL / ILLUSTRATION と同じ顔） */
.sub-head { margin: clamp(48px,6vw,72px) 0 14px; }
.sub-head b {
  display: block; font-family: Avenir, "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: clamp(22px, 3.4vw, 38px); font-weight: 400; letter-spacing: 0;
  line-height: 1.1; color: var(--ink);
}
.sub-head em {
  display: block; font-style: normal; font-size: 12.5px; letter-spacing: .14em;
  color: var(--ink3); margin-top: 2px; line-height: 1.5;
}

/* ── ボタン ─────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .6em;
  padding: 15px 30px; border-radius: 999px; border: 1.5px solid transparent;
  font-weight: 700; font-size: 15px; text-decoration: none; cursor: pointer;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn--primary { background: var(--brand); color: var(--white); }
.btn--primary:hover { background: var(--brand-ink); }
.btn--ghost { border-color: rgba(255, 255, 255, .5); color: var(--white); }
.btn--ghost:hover { background: rgba(255, 255, 255, .12); border-color: var(--white); }
.btn--outline { border-color: var(--line); color: var(--ink); background: var(--white); }
.btn--outline:hover { border-color: var(--brand); color: var(--brand); }
.btn--lg { padding: 18px 40px; font-size: 16px; }
@media (prefers-reduced-motion: reduce) { .btn:hover { transform: none; } }

/* ── ヘッダー ───────────────────────────── */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255, 255, 255, .88);
  backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid var(--line);
}
.header__inner {
  display: flex; align-items: center; gap: 24px;
  min-height: 72px; padding-block: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; color: var(--brand); margin-right: auto; }
.brand svg { width: 112px; height: auto; display: block; }
.brand__name { display: none; }
.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  padding: 10px 14px; border-radius: 8px; text-decoration: none;
  color: var(--ink); font-size: 15px; font-weight: 600;
}
.nav a:hover { background: var(--surface); color: var(--brand); }
/* 【2026-08-28】いま開いているページは、下のロゴのブロックと同じくグレーで押せなくする。
   以前は青くしていたが、押せるリンクと見分けが付かなかった */
.nav .here { padding: 10px 14px; font-size: 15px; font-weight: 600;
             color: #adb2ba; cursor: default; }
/* 【2026-08-28】制作実績は2階層あるので、帯でも2つ並べる。
   前が「制作実績」（実績の入口）、後ろが「編集制作物」（一覧） */
.nav-pair { display: inline-flex; align-items: center; }
.nav-pair i { font-style: normal; color: var(--line); font-size: 14px; padding: 0; }
/* 「/」の前後は詰める。左右の端だけ、他の項目と同じ余白を残す。
   ※ :first-of-type だと、片方が <span>（いま開いているページ）のとき
     もう片方の <a> が first でも last でもあることになり、両側に余白が付く */
.nav .nav-pair > a, .nav .nav-pair > .here { padding-inline: 0; }
.nav .nav-pair > :first-child { padding-left: 14px; }
.nav .nav-pair > :last-child { padding-right: 14px; }
@media (max-width: 899px) {
  .nav-pair { display: flex; border-bottom: 1px solid var(--line); }
  .nav-pair a { border-bottom: 0; }
  .nav-pair i { color: var(--line); }
}
.header__tel { display: none; text-align: right; line-height: 1.3; }
.header__tel span { display: block; font-size: 11px; color: var(--muted); letter-spacing: .08em; }
.header__tel a { font-size: 19px; font-weight: 700; color: var(--ink); text-decoration: none; font-variant-numeric: tabular-nums; }
.header .btn { padding: 11px 22px; font-size: 14px; }

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

@media (max-width: 899px) {
  .nav {
    position: fixed; inset: 72px 0 auto; flex-direction: column; align-items: stretch;
    gap: 0; background: var(--white); border-bottom: 1px solid var(--line);
    padding: 8px var(--pad) 24px; box-shadow: var(--shadow);
    transform: translateY(-8px); opacity: 0; visibility: hidden; transition: .2s ease;
  }
  .nav[data-open="true"] { transform: none; opacity: 1; visibility: visible; }
  .nav a, .nav .here { padding: 14px 4px; border-bottom: 1px solid var(--line); border-radius: 0; }
  .nav .btn { margin-top: 16px; justify-content: center; }
}
@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .header__tel { display: block; }
}

/* ── ヒーロー ───────────────────────────── */
.hero { position: relative; overflow: hidden; background: var(--navy); color: var(--white); }
.hero__collage {
  position: absolute; inset: 0; z-index: 0;
  display: grid; grid-template-columns: repeat(auto-fill, minmax(104px, 1fr));
  grid-auto-rows: 78px; gap: 6px; padding: 6px; opacity: .85;
}
.hero__collage img { width: 100%; height: 100%; object-fit: cover; border-radius: 3px; }
.hero::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background:
    radial-gradient(90% 80% at 12% 42%, rgba(5, 32, 75, .97) 30%, rgba(5, 32, 75, .78) 62%, rgba(5, 32, 75, .62) 100%),
    linear-gradient(180deg, rgba(5, 32, 75, .55) 0%, rgba(5, 32, 75, .72) 55%, rgba(5, 32, 75, .92) 100%);
}
.hero__inner { position: relative; z-index: 2; padding-block: clamp(76px, 12vw, 146px); max-width: 800px; }
.hero__tag {
  display: inline-block; font-size: 12px; font-weight: 700; letter-spacing: .2em;
  color: var(--accent); margin-bottom: 22px;
}
.hero h1 {
  font-size: clamp(30px, 5.6vw, 58px); line-height: 1.28; letter-spacing: .01em;
  margin-bottom: 26px; text-wrap: balance;
}
.hero h1 em { font-style: normal; color: var(--accent); }
.hero__lead { font-size: clamp(15px, 1.7vw, 18px); color: rgba(255, 255, 255, .86); max-width: 56ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 38px; }
@media (max-width: 719px) {
  .hero__collage { grid-template-columns: repeat(auto-fill, minmax(84px, 1fr)); grid-auto-rows: 63px; opacity: .5; }
  .hero::after { background: linear-gradient(180deg, rgba(5, 32, 75, .88) 0%, rgba(5, 32, 75, .94) 100%); }
}

/* ── 数字 ───────────────────────────────── */
.stats {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
  border-radius: var(--radius); overflow: hidden;
  margin-top: calc(var(--sec) * -.5); position: relative; z-index: 2;
  box-shadow: var(--shadow);
}
.stats > div { background: var(--white); padding: 26px 22px; }
.stats dt { font-size: 12px; font-weight: 700; letter-spacing: .1em; color: var(--muted); margin-bottom: 6px; }
.stats dd {
  margin: 0; font-size: clamp(28px, 3.4vw, 38px); font-weight: 700;
  color: var(--brand); line-height: 1.15; font-variant-numeric: tabular-nums;
}
.stats dd small { font-size: 15px; font-weight: 700; margin-left: 3px; color: var(--ink); }
@media (min-width: 760px) { .stats { grid-template-columns: repeat(4, 1fr); } }

/* ── 事業内容 ───────────────────────────── */
.cards { display: grid; grid-template-columns: repeat(auto-fit, minmax(248px, 1fr)); gap: 20px; }
.card {
  background: var(--white); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 28px; transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
.card:hover { border-color: var(--brand); transform: translateY(-3px); box-shadow: var(--shadow); }
.card__en { font-size: 11px; font-weight: 700; letter-spacing: .2em; color: var(--brand); }
.card h3 { font-size: 20px; margin: 8px 0 12px; }
.card p { font-size: 14.5px; color: var(--muted); line-height: 1.8; }

/* ── 作品グリッド ───────────────────────── */
.works-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  gap: clamp(16px, 2.4vw, 28px);
}
.work { display: flex; flex-direction: column; gap: 10px; }
.work__cover {
  position: relative; aspect-ratio: 4 / 3; border-radius: 8px; overflow: hidden;
  background: linear-gradient(135deg, #dfe4ea, #eef1f5);
  border: 1px solid var(--line);
}
.work__cover img { width: 100%; height: 100%; object-fit: cover; transition: transform .35s ease; }
.work:hover .work__cover img { transform: scale(1.045); }
/* 旧サイトに写真が残っていない作品は、空枠を並べずテキストの一覧で見せる */
.works-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 0 32px; }
.works-list + .works-list, .works-grid + .works-list { margin-top: 26px; }
.work--text {
  display: flex; flex-wrap: wrap; align-items: baseline; gap: 2px 10px;
  padding: 11px 0 11px 16px; border-bottom: 1px solid var(--line); position: relative;
}
.work--text::before {
  content: ""; position: absolute; left: 0; top: 19px;
  width: 5px; height: 5px; border-radius: 50%; background: var(--brand); opacity: .55;
}
.work--text .work__title { font-size: 14.5px; font-weight: 700; line-height: 1.5; }
.work--text .work__meta { font-size: 12px; }
.work__title { font-size: 14px; font-weight: 700; line-height: 1.5; }
.work__meta { font-size: 12px; color: var(--muted); line-height: 1.6; }
@media (prefers-reduced-motion: reduce) { .work:hover .work__cover img { transform: none; } }

/* ── 取引先 ─────────────────────────────── */
.clients { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.clients li { background: var(--white); padding: 16px 20px; font-size: 14.5px; display: flex; flex-direction: column; justify-content: center; gap: 3px; }
.clients li b { font-weight: 600; line-height: 1.5; }
.clients li b i { font-style: normal; font-size: 11.5px; font-weight: 400; color: var(--muted); }
.clients li small { font-size: 12px; font-weight: 400; color: var(--muted); line-height: 1.5; }
.clients-note { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* ── 沿革 ───────────────────────────────── */
.timeline { position: relative; padding-left: 26px; }
.timeline::before { content: ""; position: absolute; left: 5px; top: 8px; bottom: 8px; width: 2px; background: var(--line); }
.timeline li { position: relative; padding-bottom: 26px; }
.timeline li::before {
  content: ""; position: absolute; left: -26px; top: 9px; width: 12px; height: 12px;
  border-radius: 50%; background: var(--white); border: 3px solid var(--brand);
}
.timeline time { display: block; font-size: 13px; font-weight: 700; color: var(--brand); letter-spacing: .04em; font-variant-numeric: tabular-nums; }
.timeline p { font-size: 15px; }

/* ── CTA 帯 ─────────────────────────────── */
.cta { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-2) 100%); color: var(--white); }
.cta h2 { font-size: clamp(24px, 3.4vw, 38px); margin-bottom: 16px; text-wrap: balance; }
.cta p { color: rgba(255, 255, 255, .84); max-width: 56ch; }
.cta__actions { display: flex; flex-wrap: wrap; gap: 14px; align-items: center; margin-top: 34px; }
.cta__tel { line-height: 1.4; }
.cta__tel span { display: block; font-size: 12px; color: rgba(255, 255, 255, .7); letter-spacing: .1em; }
.cta__tel a { font-size: 26px; font-weight: 700; color: var(--white); text-decoration: none; font-variant-numeric: tabular-nums; }

/* ── 沿革（10年ごとに畳む）─────────────────
   【2026-08-28】トップ（案1b）と同じ形にした。値の原本は build/gen.py の SEC_CSS。
   片方だけ直すと見た目がずれるので、変えるときは両方そろえること。 */
.era { border-bottom: 1px solid var(--line); }
.era summary { cursor: pointer; list-style: none; padding: 15px 2px;
  display: flex; align-items: center; gap: 16px; }
.era summary::-webkit-details-marker { display: none; }
.era summary::before { content: "＋"; color: var(--brand); width: 1em; flex: none; }
.era[open] summary::before { content: "−"; }
.era summary:hover { background: rgba(9, 62, 146, .03); }
.era__n { font-family: Avenir, "Avenir Next", "Helvetica Neue", sans-serif;
  font-size: 34px; font-weight: 300; color: var(--brand); line-height: 1;
  min-width: 74px; flex: none; }
.era__n i { font-style: normal; font-size: 14px; color: var(--ink3); margin-left: 3px; }
.era__span { font-size: 13.5px; font-weight: 600; flex: none; }
.era__lead { font-size: 13.5px; color: var(--ink3); }
.era .timeline { margin: 2px 0 24px; }
@media (max-width: 640px) {
  .era summary { flex-wrap: wrap; gap: 8px 12px; }
  .era__lead { width: 100%; padding-left: 90px; }
  .era__n { font-size: 28px; min-width: 60px; }
}

/* ── フッター ─────────────────────────────
   【2026-08-28 本人指示】トップ（案1b）のAONEロゴのブロックに全ページを揃えた。
   以前はここだけ濃紺で、ページを移るたびに一番下の色が変わっていた。
   見た目の原本は build/gen.py の FOOT_CSS。値を変えるときは両方そろえること。 */
.footer { background: var(--paper); border-top: 1px solid var(--line);
  padding: 56px 0 30px; color: var(--muted); font-size: 13.5px; }
.footer a { color: var(--muted); text-decoration: none; }
.footer a:hover { color: var(--brand); text-decoration: none; }
.footer__top { display: flex; flex-wrap: wrap; gap: 32px; justify-content: space-between; }
/* ロゴは現サイトのトップと同じ #333366 で塗る。SVGの中の色に関わらず、まとめてこの色 */
.footer__brand svg { width: 132px; height: auto; display: block; margin-bottom: 14px; }
.footer__brand svg * { fill: #333366 !important; }
.footer__addr { font-style: normal; line-height: 1.9; }
.footer__nav { display: flex; flex-wrap: wrap; gap: 8px 22px; align-items: flex-start; }
.footer__nav a { color: var(--muted); text-decoration: none; font-weight: 500; }
.footer__nav a:hover { color: var(--brand); }
/* いま開いているページ。押せないことが見て分かるようにグレーにする */
.footer__nav .here { color: #adb2ba; font-weight: 500; cursor: default; }
.footer__nav .nav-pair { display: inline-flex; align-items: center; gap: 0; }
.footer__nav .nav-pair i { font-style: normal; color: var(--line); }
.footer__nav .nav-pair > a, .footer__nav .nav-pair > .here { padding-inline: 0; }
.footer__bottom { margin-top: 34px; padding-top: 18px; border-top: 1px solid var(--line);
  font-size: 11.5px; color: var(--ink3); }
@media (max-width: 719px) { .footer__top { gap: 28px; } }

/* カテゴリの見出しの下に置く集合写真（いまは「雑誌」だけ）。
   【2026-08-28 本人指示】出所は旧サイトの image/sakuhin_image/magazine.jpg。
   276×239px しかないので引き伸ばさず、原寸のまま左右中央に置く */
.cat-photo { margin: 0 0 30px; display: flex; justify-content: center; }
.cat-photo img { width: 276px; max-width: 100%; height: auto; border-radius: 4px; }

/* ── 下層ページ共通 ─────────────────────── */
/* ページの頭。【2026-08-27】トップの大見出しと同じ顔にした
   （英字を大きく → 0.1mmの罫 → 游明朝で和文）。
   以前はここだけゴシックの和文が主役で、トップと別サイトに見えた */
.page-head { background: var(--surface); border-bottom: 1px solid var(--line); padding-block: clamp(40px, 6vw, 72px); }
.page-head .page-en {
  font-family: "Helvetica Neue", Arial, sans-serif;
  font-size: clamp(46px, 7.6vw, 94px); font-weight: 800; line-height: 1.02;
  letter-spacing: -.005em; color: var(--ink); margin: 0;
}
.page-head .page-en::after {
  content: ""; display: block; border-top: .1mm solid var(--ink);
}
.page-head h1 {
  font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", serif;
  font-size: clamp(19px, 2.3vw, 27px); font-weight: 500; letter-spacing: .14em;
  color: var(--muted); margin: 0 0 12px;
}
.page-head p { color: var(--muted); max-width: 62ch; }
.breadcrumb { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0; padding: 0; }
.breadcrumb li + li::before { content: "/"; margin-right: 8px; color: #b6bfca; }
.breadcrumb a { color: var(--muted); }

/* ── 会社概要 ───────────────────────────── */
.spec { border-top: 1px solid var(--line); }
.spec div { display: grid; grid-template-columns: 190px 1fr; gap: 8px 28px; padding: 20px 4px; border-bottom: 1px solid var(--line); }
.spec dt { font-weight: 700; font-size: 14.5px; }
.spec dd { margin: 0; font-size: 15.5px; }
@media (max-width: 599px) { .spec div { grid-template-columns: 1fr; gap: 4px; } }

.orgchart { display: grid; gap: 14px; }
.org-row { display: grid; grid-template-columns: minmax(150px, 210px) 1fr; gap: 14px; align-items: center; }
.org-box {
  background: var(--brand); color: var(--white); border-radius: 10px;
  padding: 14px 18px; font-weight: 700; font-size: 15px; text-align: center;
}
.org-box--alt { background: var(--surface); color: var(--ink); border: 1px solid var(--line); }
.org-sub { display: flex; flex-wrap: wrap; gap: 10px; }
.org-sub span {
  background: var(--white); border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 16px; font-size: 13.5px; font-weight: 600;
}
@media (max-width: 599px) { .org-row { grid-template-columns: 1fr; gap: 8px; } }

/* ── 実績ページ ─────────────────────────── */
.filters {
  position: sticky; top: 72px; z-index: 20; background: rgba(255, 255, 255, .93);
  backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); padding-block: 16px;
}
.filters__inner { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }
.chiplist { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  border: 1px solid var(--line); background: var(--white); color: var(--ink);
  border-radius: 999px; padding: 9px 17px; font-size: 13.5px; font-weight: 600;
  cursor: pointer; font-family: inherit; white-space: nowrap;
  transition: background-color .15s ease, color .15s ease, border-color .15s ease;
}
.chip:hover { border-color: var(--brand); color: var(--brand); }
.chip[aria-pressed="true"] { background: var(--brand); border-color: var(--brand); color: var(--white); }
.chip small { font-weight: 600; opacity: .7; margin-left: 5px; }
.search { position: relative; margin-left: auto; flex: 1 1 240px; max-width: 320px; }
.search input {
  width: 100%; padding: 11px 16px 11px 40px; border: 1px solid var(--line);
  border-radius: 999px; font-size: 14px; font-family: inherit; background: var(--white); color: var(--ink);
}
.search svg { position: absolute; left: 14px; top: 50%; transform: translateY(-50%); width: 16px; height: 16px; color: var(--muted); }
.result-count { font-size: 13.5px; color: var(--muted); margin-bottom: 22px; }
.maker-group { margin-bottom: clamp(40px, 6vw, 64px); }
.maker-group > h3 {
  font-size: 17px; padding-bottom: 12px; margin-bottom: 22px;
  border-bottom: 2px solid var(--brand); display: flex; align-items: baseline; gap: 10px;
}
.maker-group > h3 small { font-size: 12.5px; font-weight: 600; color: var(--muted); }
.cat-block > h2 {
  font-size: clamp(21px, 2.8vw, 27px); margin-bottom: 28px;
  display: flex; align-items: baseline; gap: 12px;
}
.cat-block > h2 small { font-size: 13px; font-weight: 600; color: var(--muted); }
.empty-state { padding: 60px 0; text-align: center; color: var(--muted); }

/* ── フォーム ───────────────────────────── */
.form { display: grid; gap: 22px; max-width: 660px; }
.field { display: grid; gap: 8px; }
.field label { font-weight: 700; font-size: 14.5px; display: flex; align-items: center; gap: 10px; }
.req { background: #c8341c; color: var(--white); font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 4px; letter-spacing: .06em; }
.opt { background: var(--surface); color: var(--muted); font-size: 10.5px; font-weight: 700; padding: 3px 8px; border-radius: 4px; border: 1px solid var(--line); }
.field input, .field textarea, .field select {
  width: 100%; padding: 14px 16px; border: 1px solid #ccd3db; border-radius: 10px;
  font-size: 16px; font-family: inherit; background: var(--white); color: var(--ink);
}
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--brand); outline: none; box-shadow: 0 0 0 3px rgba(9, 62, 146, .16); }
.field textarea { min-height: 190px; resize: vertical; line-height: 1.8; }
.field small { font-size: 12.5px; color: var(--muted); }
.hp { position: absolute; left: -9999px; }
.form__note { font-size: 13px; color: var(--muted); }

.info-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(210px, 1fr)); gap: 20px; }
.info-card { border: 1px solid var(--line); border-radius: var(--radius); padding: 26px; background: var(--white); }
.info-card h3 { font-size: 15px; margin-bottom: 10px; }
.info-card a { font-size: 21px; font-weight: 700; text-decoration: none; font-variant-numeric: tabular-nums; }
.info-card p { font-size: 14px; color: var(--muted); }

.note {
  border-left: 3px solid var(--accent); background: #fff8f4;
  padding: 16px 20px; border-radius: 0 10px 10px 0; font-size: 14px; color: #6b4staff;
  color: #6b4a3a;
}

/* ── 制作実績の「もっと見る」（2026-09-08 追加） ─────────────
   旧サイトにあった説明文を、キャプションの下に折りたたんで置く。
   作りは沿革（.era）と同じ <details>。JavaScriptは使わない。
   説明文があるのは604件中93件だけなので、無い作品には何も出ない。 */
.work__more { margin-top: -2px; }
.work__more summary {
  cursor: pointer; list-style: none; display: inline-flex; align-items: center;
  gap: 4px; font-size: 11.5px; color: var(--brand); line-height: 1.6;
  padding: 1px 0; user-select: none;
}
.work__more summary::-webkit-details-marker { display: none; }
.work__more summary::before { content: "＋"; font-size: 10px; }
.work__more[open] summary::before { content: "−"; }
.work__more summary:hover { text-decoration: underline; }
.work__more > p {
  margin: 5px 0 0; font-size: 12px; line-height: 1.75; color: var(--ink3);
  padding: 8px 10px; background: rgba(9, 62, 146, .035); border-radius: 4px;
}
/* 写真の無い一覧（work--text）では、行の中で改行して出す */
.work--text .work__more { display: block; margin-top: 2px; }
