/* ============================================================
   salon-04-editorial
   雑誌誌面風 / トレンド系サロン
   bg #ffffff / ink #111111 / red #e63b2e / gray #f2f2f2
   ============================================================ */

:root {
  --bg: #ffffff;
  --ink: #111111;
  --ink-soft: #55524c;
  --red: #e63b2e;
  --gray: #f2f2f2;
  --line: #111111;
  --display: "Archivo", sans-serif;
  --cap: "Zen Kaku Gothic New", sans-serif;
  --sans: "Noto Sans JP", sans-serif;
}

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.01em;
  overflow-x: hidden;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 40px;
}

/* reveal */
[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}
[data-reveal].is-visible { opacity: 1; transform: none; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 2px solid var(--ink);
}

.header-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 18px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.site-nav ul {
  display: flex;
  align-items: center;
  gap: 30px;
}

.site-nav a {
  display: flex;
  align-items: baseline;
  gap: 6px;
  font-family: var(--display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.25s ease;
}

.site-nav .nav-no {
  font-size: 9px;
  color: var(--red);
}

.site-nav a:hover { color: var(--red); }

.nav-cta a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.08em;
  color: #fff;
  background: var(--red);
  padding: 8px 18px;
}

.nav-cta a:hover { color: #fff; background: var(--ink); }

.nav-toggle { display: none; }

/* ---------- Hero ---------- */
.hero {
  padding: 132px 40px 0;
  max-width: 1360px;
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  grid-template-rows: auto auto;
  gap: 0 48px;
  align-items: start;
}

.hero-head {
  grid-column: 1;
  grid-row: 1;
  padding-top: 8px;
}

.hero-issue {
  font-family: var(--display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  border-top: 2px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  padding: 8px 0;
  margin-bottom: 22px;
}
.hero-issue span { color: var(--ink); }

.hero-title { line-height: 0.9; }

.hero-title-en {
  display: block;
  font-family: var(--display);
  font-weight: 900;
  /* 最長単語が列内に収まるよう cqw/vw を控えめに。単語中改行は誌面の恥 */
  font-size: clamp(56px, 11.5vw, 240px);
  line-height: 0.86;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  overflow-wrap: normal;
  word-break: keep-all;
}

.hero-title-ja {
  display: block;
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(20px, 2.6vw, 34px);
  line-height: 1.4;
  letter-spacing: 0.04em;
  margin-top: 22px;
  padding-left: 4px;
}

.hero-sub {
  margin-top: 20px;
  padding-left: 4px;
  font-family: var(--cap);
  font-size: 14px;
  color: var(--ink-soft);
  letter-spacing: 0.04em;
}

.hero-photo { position: relative; }
.hero-photo img { width: 100%; object-fit: cover; display: block; }

.hero-photo-a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  border: 1px solid var(--ink);
  /* 誌面の貼り込み: 白フチ→黒枠のズレ */
  box-shadow: 6px 6px 0 -1px #fff, 6px 6px 0 var(--ink);
}
.hero-photo-a img { aspect-ratio: 3 / 4; }

.hero-photo-b {
  grid-column: 1;
  grid-row: 2;
  width: 62%;
  margin-top: 40px;
  margin-left: -40px;
  border: 1px solid var(--ink);
  background: #fff;
  box-shadow: -6px 6px 0 -1px #fff, -6px 6px 0 var(--ink);
}
.hero-photo-b img { aspect-ratio: 4 / 3; }

.hero-photo-b figcaption {
  position: absolute;
  right: -10px;
  bottom: -14px;
  background: var(--red);
  color: #fff;
  font-family: var(--cap);
  font-size: 11px;
  letter-spacing: 0.04em;
  padding: 4px 10px;
}

/* ---------- Typeband（静的タイポバンド / 実案件文法: marquee不使用） ---------- */
.typeband {
  width: 100%;
  border-top: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  margin-top: 72px;
  background: var(--bg);
  overflow: hidden;
}

.typeband-cta {
  margin-top: 0;
  border-bottom: none;
  background: var(--ink);
}

.typeband-text {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: clamp(14px, 2.2vw, 32px);
  padding: 12px 40px;
  white-space: nowrap;
  overflow: hidden;
}

.typeband-name,
.typeband-tag {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(24px, 4vw, 52px);
  line-height: 1.15;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

/* 和文タグラインは明朝格でなく実用ゴシックで — 折返し省略 */
.typeband-tag {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(15px, 2.2vw, 26px);
  letter-spacing: 0.04em;
  text-transform: none;
  overflow: hidden;
  text-overflow: ellipsis;
}

.typeband-dash {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(20px, 3vw, 40px);
  color: var(--red);
}

.typeband-cta .typeband-name,
.typeband-cta .typeband-tag { color: #fff; }
.typeband-cta .typeband-dash { color: var(--red); }

/* ---------- News ---------- */
.news {
  border-bottom: 2px solid var(--ink);
  background: var(--gray);
}

.news-inner {
  display: flex;
  gap: 48px;
  padding-top: 34px;
  padding-bottom: 34px;
}

.news-label .section-en {
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 4px;
  white-space: nowrap;
}

.news-list { flex: 1; }

.news-list li {
  display: flex;
  gap: 24px;
  padding: 7px 0;
  font-size: 14px;
}

.news-list time {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--red);
  flex-shrink: 0;
}

/* ---------- Index（誌面の目次） ---------- */
.mag-index {
  border-bottom: 2px solid var(--ink);
  background: var(--bg);
}

.mag-index-inner {
  padding-top: 40px;
  padding-bottom: 40px;
}

.mag-index-label {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 20px;
}
.mag-index-label span { color: var(--red); }

.mag-index-list {
  display: grid;
  gap: 0;
}

.mag-index-list a {
  display: grid;
  grid-template-columns: 60px minmax(160px, 1fr) 2fr auto;
  align-items: baseline;
  gap: 20px;
  padding: 16px 4px;
  border-top: 1px solid var(--ink);
  transition: background 0.3s ease, padding-left 0.3s ease;
}
.mag-index-list li:last-child a { border-bottom: 1px solid var(--ink); }

.mag-index-list a:hover {
  background: var(--gray);
  padding-left: 16px;
}

.mag-index-no {
  font-family: var(--display);
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: var(--red);
}

.mag-index-en {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(20px, 3vw, 34px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.mag-index-ja {
  font-family: var(--cap);
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.mag-index-pg {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink-soft);
  font-variant-numeric: tabular-nums;
  text-align: right;
}

/* ---------- Sections（共通） ---------- */
.section { padding: 120px 0 0; }

.section-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 56px;
}

.section-no {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(60px, 9vw, 120px);
  line-height: 0.8;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1px var(--red);
  margin-left: -6px;
}

.section-en {
  font-family: var(--display);
  font-weight: 900;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  padding-top: 10px;
}

.section-en::before {
  content: "";
  display: inline-block;
  width: 26px;
  height: 8px;
  background: var(--ink);
  vertical-align: middle;
  margin-right: 14px;
  transform: translateY(-6px);
}

.section-title {
  font-family: var(--sans);
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.6;
  letter-spacing: 0.02em;
  margin-bottom: 28px;
}

/* ---------- Concept ---------- */
.concept-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: start;
}

.concept-para {
  color: var(--ink-soft);
  line-height: 2.2;
  margin-bottom: 1.5em;
}

.concept-media { position: relative; }

.concept-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 2px solid var(--ink);
  display: block;
}

/* 縦書きキャプション — 誌面の縦組み。写真の左外に一筆で立てる */
.concept-caption-v {
  position: absolute;
  top: 8px;
  left: -34px;
  writing-mode: vertical-rl;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  letter-spacing: 0.24em;
  color: var(--ink);
  white-space: nowrap;
}

.concept-caption-en {
  margin-top: 10px;
  font-family: var(--cap);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

.concept-media::before {
  content: "";
  position: absolute;
  top: -18px; right: -18px;
  width: 88px; height: 88px;
  background: var(--ink);
  z-index: -1;
}

/* ---------- Menu ---------- */
.menu-groups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 48px;
}

.menu-category {
  font-family: var(--display);
  font-weight: 900;
  font-size: 24px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 10px;
  margin-bottom: 12px;
}

.menu-item {
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
}

.menu-item-main {
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.menu-name { font-size: 15px; font-weight: 500; }

.menu-dots {
  flex: 1;
  border-bottom: 1px dotted #b3b3b3;
  transform: translateY(-4px);
}

.menu-price {
  font-family: var(--display);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  font-variant-numeric: tabular-nums;
  color: var(--red);
}

.menu-note {
  margin-top: 6px;
  font-family: var(--cap);
  font-size: 12px;
  color: var(--ink-soft);
}

.menu-foot {
  margin-top: 40px;
  font-family: var(--cap);
  font-size: 12px;
  color: var(--ink-soft);
}

/* ---------- Works（masonry風 不揃いグリッド） ---------- */
.works-grid {
  columns: 3;
  column-gap: 24px;
}

.works-item {
  break-inside: avoid;
  margin-bottom: 40px;
}

.works-media {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--ink);
}

.works-media img {
  width: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(1) contrast(1.03);
  transition: filter 0.7s ease, transform 1.1s cubic-bezier(0.19, 1, 0.22, 1);
}

.works-item:nth-child(3n+1) .works-media img { aspect-ratio: 3 / 4; }
.works-item:nth-child(3n+2) .works-media img { aspect-ratio: 1 / 1; }
.works-item:nth-child(3n+3) .works-media img { aspect-ratio: 4 / 5; }

.works-item:hover .works-media img {
  filter: grayscale(0) contrast(1);
  transform: scale(1.04);
}

/* キャプションが下からスライドイン */
.works-caption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px 18px 16px;
  background: linear-gradient(to top, rgba(17, 17, 17, 0.86), rgba(17, 17, 17, 0));
  color: #fff;
  transform: translateY(101%);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.works-item:hover .works-caption,
.works-item:focus-within .works-caption { transform: translateY(0); }

.works-tag {
  display: inline-block;
  font-family: var(--display);
  font-weight: 600;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 3px 9px;
  margin-bottom: 10px;
}

.works-title {
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 700;
  color: #fff;
}

.works-desc {
  font-family: var(--cap);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.82);
  margin-top: 5px;
}

/* ---------- Staff ---------- */
.staff-list {
  display: grid;
  gap: 80px;
}

.staff-item {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 56px;
  align-items: center;
}

.staff-item:nth-child(even) { grid-template-columns: 1fr 340px; }
.staff-item:nth-child(even) .staff-media { order: 2; }

.staff-media {
  border: 2px solid var(--ink);
}

.staff-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  display: block;
}

.staff-role {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
}

.staff-name {
  font-family: var(--sans);
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.02em;
  margin: 10px 0 20px;
}

.staff-bio {
  color: var(--ink-soft);
  line-height: 2.1;
  max-width: 34em;
}

/* ---------- Voices ---------- */
.voices-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voices-item {
  border: 2px solid var(--ink);
  padding: 32px 26px;
  background: #fff;
  position: relative;
}

.voices-item::before {
  content: "\201C";
  display: block;
  font-family: var(--display);
  font-weight: 900;
  font-size: 60px;
  line-height: 0.6;
  color: var(--ink);
  margin-bottom: 12px;
}

.voices-text {
  font-size: 14px;
  line-height: 2;
  color: var(--ink);
}

.voices-author {
  margin-top: 20px;
  font-family: var(--cap);
  font-size: 12px;
  letter-spacing: 0.04em;
  color: var(--ink-soft);
}

/* ---------- Flow ---------- */
.flow-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}

.flow-item {
  border-top: 2px solid var(--ink);
  padding-top: 16px;
}

.flow-step {
  font-family: var(--display);
  font-weight: 900;
  font-size: 44px;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--red);
  display: block;
  margin-bottom: 14px;
}

.flow-title {
  font-family: var(--sans);
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.flow-desc {
  font-family: var(--cap);
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.9;
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; }

.faq-item {
  padding: 26px 0;
  border-bottom: 1px solid var(--ink);
}
.faq-item:first-child { border-top: 2px solid var(--ink); }

.faq-q {
  font-size: 16px;
  font-weight: 700;
  display: flex;
  gap: 16px;
}

.faq-q::before {
  content: "Q";
  font-family: var(--display);
  font-weight: 900;
  color: var(--red);
  flex-shrink: 0;
}

.faq-a {
  margin-top: 12px;
  font-family: var(--cap);
  font-size: 14px;
  color: var(--ink-soft);
  display: flex;
  gap: 16px;
}

.faq-a::before {
  content: "A";
  font-family: var(--display);
  font-weight: 900;
  color: var(--ink);
  flex-shrink: 0;
}

/* ---------- Access ---------- */
.access-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}

.access-info div {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
}
.access-info div:first-child { border-top: 2px solid var(--ink); }

.access-info dt {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
  padding-top: 3px;
}

.access-info dd a { border-bottom: 2px solid var(--red); }

.access-map {
  border: 2px solid var(--ink);
}

.access-map iframe {
  width: 100%;
  height: 100%;
  min-height: 340px;
  border: 0;
  display: block;
  filter: grayscale(1) contrast(1.05);
}

/* ---------- CTA ---------- */
.cta {
  margin-top: 130px;
  border-top: 2px solid var(--ink);
}

.cta-inner {
  padding-top: 88px;
  padding-bottom: 96px;
  text-align: center;
}

.cta-en {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
}

.cta-title {
  font-family: var(--sans);
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  letter-spacing: 0.03em;
  margin: 16px 0 14px;
}

.cta-text {
  font-family: var(--cap);
  font-size: 14px;
  color: var(--ink-soft);
  margin-bottom: 40px;
}

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 18px;
  flex-wrap: wrap;
}

.btn {
  display: inline-block;
  min-width: 240px;
  padding: 18px 32px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-align: center;
  border: 2px solid var(--ink);
  transition: all 0.25s ease;
}

.btn-primary {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
}

.btn-primary:hover { background: var(--ink); border-color: var(--ink); }

.btn-ghost {
  background: #fff;
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: 0.04em;
}

.btn-ghost:hover { background: var(--ink); color: #fff; }

.cta-sns {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  gap: 28px;
}

.cta-sns a {
  font-family: var(--display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 3px;
  transition: color 0.25s ease;
}

.cta-sns a:hover { color: var(--red); border-color: var(--red); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 44px 40px 40px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  border-top: 2px solid var(--ink);
}

.footer-logo {
  font-family: var(--display);
  font-weight: 900;
  font-size: 20px;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.footer-copy {
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.06em;
  color: var(--ink-soft);
}

/* ---------- Demo bar ---------- */
.demo-bar {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 10px 20px;
  background: var(--ink);
  color: #fff;
}

.demo-bar p {
  flex: 1;
  font-size: 12px;
  line-height: 1.6;
  color: #eee;
}

.demo-bar button.js-demo-close {
  flex-shrink: 0;
  font-family: var(--display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
  background: #fff;
  padding: 6px 14px;
  cursor: pointer;
}

/* ---------- Skin（店舗別差別化 / TEMPLATE_SPEC §9） ---------- */
/* altFont: 欧文ディスプレイ Archivo → Oswald（和文 --sans / --cap は維持） */
.u-alt-font { --display: "Oswald", sans-serif; }

body.u-btn-square .btn, body.u-btn-square .nav-cta a { border-radius: 0; }
body.u-btn-round .btn, body.u-btn-round .nav-cta a { border-radius: 8px; }
body.u-btn-pill .btn, body.u-btn-pill .nav-cta a { border-radius: 999px; }

/* ---------- Mobile ---------- */
@media (max-width: 1000px) {
  .menu-groups { grid-template-columns: repeat(2, 1fr); }
  .works-grid { columns: 2; }
  .voices-list { grid-template-columns: 1fr; }
  .flow-list { grid-template-columns: repeat(2, 1fr); }
  .access-grid { grid-template-columns: 1fr; gap: 36px; }

  .staff-item,
  .staff-item:nth-child(even) { grid-template-columns: 1fr; gap: 24px; }
  .staff-item:nth-child(even) .staff-media { order: 0; }
  .staff-media img { aspect-ratio: 16 / 11; }
}

@media (max-width: 760px) {
  .inner { padding: 0 20px; }

  .site-header { padding: 14px 20px; }

  .site-nav {
    position: fixed;
    inset: 0;
    background: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
  }

  body.nav-open .site-nav {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav ul {
    flex-direction: column;
    gap: 26px;
    text-align: center;
  }

  .site-nav a { font-size: 20px; justify-content: center; }
  .site-nav .nav-no { font-size: 11px; }

  .nav-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 7px;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 110;
  }

  .nav-toggle span {
    display: block;
    width: 26px;
    height: 2px;
    background: var(--ink);
    margin: 0 auto;
    transition: transform 0.35s ease;
  }

  body.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(20deg); }
  body.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-5px) rotate(-20deg); }

  /* Hero → 1カラム */
  .hero { padding: 108px 20px 0; }
  .hero-grid { grid-template-columns: 1fr; gap: 0; }
  .hero-head { grid-column: 1; grid-row: 1; }
  .hero-photo-a {
    grid-column: 1;
    grid-row: 2;
    margin-top: 32px;
  }
  .hero-photo-a img { aspect-ratio: 4 / 3; }
  .hero-photo-b {
    grid-column: 1;
    grid-row: 3;
    width: 72%;
    margin-left: 0;
    margin-top: -28px;
    align-self: flex-start;
  }
  .hero-title-en { font-size: clamp(48px, 19vw, 110px); }

  .typeband { margin-top: 48px; }
  .typeband-cta { margin-top: 0; }
  .typeband-text { padding: 12px 20px; gap: 12px; }

  /* 縦書きキャプションは1カラム化で写真外にはみ出るため画像内右上に寄せる */
  .concept-caption-v {
    left: auto;
    right: 12px;
    top: 14px;
    font-size: 13px;
    letter-spacing: 0.18em;
    color: #fff;
    text-shadow: 0 1px 10px rgba(0, 0, 0, 0.55);
  }

  .news-inner { flex-direction: column; gap: 12px; }
  .news-list li { flex-direction: column; gap: 2px; padding: 10px 0; border-bottom: 1px solid var(--ink); }

  .mag-index-list a {
    grid-template-columns: 42px 1fr auto;
    gap: 12px;
    padding: 14px 4px;
  }
  .mag-index-ja { display: none; }
  .mag-index-en { font-size: clamp(20px, 7vw, 30px); }
  .mag-index-list a:hover { padding-left: 8px; }

  .section { padding-top: 84px; }
  .section-head { margin-bottom: 40px; gap: 14px; }

  .concept-grid { grid-template-columns: 1fr; gap: 40px; }
  .concept-media::before { top: -12px; right: -12px; width: 60px; height: 60px; }

  .menu-groups { grid-template-columns: 1fr; gap: 32px; }
  .works-grid { columns: 1; }
  .works-item:nth-child(n) .works-media img { aspect-ratio: 4 / 5; }
  /* タッチ端末はhoverが無いのでキャプションと色を常時表示 */
  .works-media img { filter: grayscale(0) contrast(1); }
  .works-caption { transform: translateY(0); }
  .flow-list { grid-template-columns: 1fr; gap: 28px; }

  .cta { margin-top: 96px; }
  .cta-inner { padding-top: 64px; padding-bottom: 72px; }
  .btn { min-width: 100%; }
  .cta-actions { flex-direction: column; align-items: stretch; }

  .site-footer { flex-direction: column; gap: 12px; padding: 36px 20px; }
}
