@charset "UTF-8";

/* ============================================================
   本多忠房 / tdfshnd.com
   骨格は tadah.tokyo と共通。違うのは色ひとつだけ。
   TaDah … 蛍光黄 #EBFF00
   HONDA LAB. … 蛍光橙 #FF5000
   ここ（個人）… 無彩色。ハブなので、自分では色を持たない。
                 リンクの色だけ、行き先から借りる。
   ============================================================ */

:root {
  --ink: #1A1A19;
  --ink-2: #4A4A47;
  --ink-3: #7A7A75;
  --rule: #E6E6E2;
  --neon: #1A1A19;          /* ハブは無彩色。アクセントは黒 */
  --c-tadah: #EBFF00;       /* 行き先の色：TaDah */
  --c-lab:   #FF5000;       /* 行き先の色：HONDA LAB. */
  --paper: #FFFFFF;
  --en: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  /* 和欧混植：欧文と数字は Helvetica、かなと漢字は游ゴシックに落ちる */
  --jp: 'Helvetica Neue', Helvetica, Arial, 'YuGothic', 'Yu Gothic', 'Hiragino Kaku Gothic ProN', 'Noto Sans JP', sans-serif;
  --gutter: clamp(20px, 4.5vw, 64px);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0; max-width: 100%;
  background: var(--paper); color: var(--ink);
  font-family: var(--jp);
  -webkit-font-smoothing: antialiased;
  line-height: 1.8;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
a:hover { text-decoration: underline; text-underline-offset: 6px; }
.en { font-family: var(--en); }

.skip { position: absolute; left: -9999px; top: 0; background: var(--ink); color: #fff; padding: 10px 16px; z-index: 100; }
.skip:focus { left: 0; }

/* ---------- first view ---------- */
.fv { position: relative; min-height: 60svh; display: flex; align-items: flex-end; overflow: hidden; background: #2A3A32; }
.fv-img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: 50% 42%; }
.fv::after { content: ""; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(10,10,9,.78) 0%, rgba(10,10,9,.3) 45%, rgba(10,10,9,0) 72%); }
.fv-body { position: relative; z-index: 1; padding: 0 var(--gutter) 8vh; color: #fff; }
.fv-sup { margin: 0 0 1em; font-size: clamp(11px, 2.2vw, 13px); letter-spacing: .2em; font-weight: 500; opacity: .92; }
.fv-name { margin: 0; font-size: clamp(34px, 7vw, 72px); font-weight: 700; letter-spacing: -0.01em; line-height: 1.1; }
.fv-role { margin: 1em 0 0; display: inline-block; font-size: clamp(12px, 2.4vw, 15px); letter-spacing: .1em;
  font-weight: 700; background: var(--neon); color: var(--ink); padding: .4em .85em; }

/* ---------- nav ---------- */
.nav { position: sticky; top: 0; z-index: 20;
  display: flex; flex-wrap: wrap; gap: clamp(14px, 3vw, 34px); justify-content: center;
  padding: 16px var(--gutter);
  background: rgba(255,255,255,.94); backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--rule);
  font-size: 13px; font-weight: 700; letter-spacing: .06em; }
.nav a { color: var(--ink-2); padding: 2px 0; border-bottom: 2px solid transparent; }
.nav a:hover { color: var(--ink); border-bottom-color: var(--neon); text-decoration: none; }

/* ---------- section：TaDah と同じ、英語が大きく日本語が小さい ---------- */
.sec { max-width: 1060px; margin: 0 auto; padding: clamp(56px, 8vw, 88px) var(--gutter); border-top: 1px solid var(--rule); }
.sec:first-of-type { border-top: 0; }
.sec-h { margin: 0 0 clamp(28px, 5vw, 48px); display: flex; align-items: baseline; gap: 20px; flex-wrap: wrap;
  font-weight: 700; line-height: 1; }
.sec-h .en { font-size: clamp(34px, 6vw, 64px); letter-spacing: -0.03em; }
.sec-h .jp { font-size: 16px; font-weight: 400; color: var(--ink-3); letter-spacing: 0; }

/* ---------- posts ---------- */
.posts { list-style: none; margin: 0; padding: 0; }
.post { display: grid; grid-template-columns: 9em minmax(0, 1fr); gap: clamp(12px, 3vw, 32px);
  padding: clamp(22px, 4vw, 30px) 0; border-top: 1px solid var(--rule); }
.post:first-child { border-top: 0; padding-top: 0; }
.post-date { margin: 0; padding-top: .3em; font-family: var(--en); font-size: 13px; color: var(--ink-3);
  font-variant-numeric: tabular-nums; }
.post-body > :first-child { margin-top: 0; }
.post-body > :last-child { margin-bottom: 0; }
.post-title { margin: 0 0 .7em; font-size: clamp(16px, 3vw, 18px); font-weight: 700; line-height: 1.65; }
.post-body p { margin: 0 0 .9em; font-size: 15px; color: var(--ink-2); }
.post-body a { color: var(--ink); border-bottom: 2px solid var(--neon); }
.post-body a:hover { text-decoration: none; background: var(--neon); color: var(--ink); }
.post-body img { margin: 1.5em 0; }
.post-body ul, .post-body ol { margin: 0 0 .9em; padding-left: 1.4em; font-size: 15px; color: var(--ink-2); }
.post-body iframe { max-width: 100%; }
.post-body figure { margin: 1.5em 0; }
.post-body figcaption { font-size: 12.5px; color: var(--ink-3); margin-top: .5em; }

/* これまでのお知らせ（折りたたみ） */
.more { margin-top: 32px; }
.more > summary { cursor: pointer; list-style: none; display: inline-flex; align-items: center; gap: .7em;
  padding: 12px 22px; border: 2px solid var(--ink); border-radius: 999px;
  font-size: 13px; font-weight: 700; letter-spacing: .04em; color: var(--ink);
  transition: background .2s, color .2s, border-color .2s; }
.more > summary::-webkit-details-marker { display: none; }
.more > summary::after { content: "＋"; font-size: 12px; }
.more[open] > summary::after { content: "－"; }
.more > summary:hover { background: var(--neon); border-color: var(--neon); color: var(--ink); }
.more .posts { margin-top: 24px; }
.more .post:first-child { border-top: 1px solid var(--rule); padding-top: clamp(22px, 4vw, 30px); }

/* ---------- prose ---------- */
.prose { max-width: 42em; }
.prose p { margin: 0 0 1.1em; font-size: 16px; color: var(--ink-2); }
.prose .lead { font-size: clamp(19px, 3.4vw, 26px); font-weight: 700; color: var(--ink);
  letter-spacing: -0.01em; line-height: 1.55; margin-bottom: 1.2em; }
.prose ul { margin: 0 0 1.2em; padding-left: 0; list-style: none; font-size: 16px; color: var(--ink-2); }
.prose li { margin-bottom: .5em; padding-left: 1.3em; position: relative; }
.prose li::before { content: ""; position: absolute; left: 0; top: .72em; width: 8px; height: 8px; background: var(--neon); }
.prose a { color: var(--ink); border-bottom: 2px solid var(--neon); }
.prose a:hover { text-decoration: none; background: var(--neon); color: var(--ink); }
.link-out { margin-top: 1.8em; font-size: 14px; font-weight: 700; }

.access { margin: 0; display: grid; grid-template-columns: 5.5em 1fr; gap: 12px 20px; font-size: 15px; }
.access dt { color: var(--ink-3); font-size: 13px; font-weight: 700; padding-top: .18em; }
.access dd { margin: 0; color: var(--ink-2); }

/* ---------- profile ---------- */
.profile { display: grid; grid-template-columns: minmax(0, 220px) minmax(0, 1fr); gap: clamp(20px, 4vw, 48px); align-items: start; }
.profile-fig img { width: 100%; aspect-ratio: 1/1; object-fit: cover; }

/* ---------- footer ---------- */
.foot { padding: clamp(40px, 7vw, 64px) var(--gutter); border-top: 4px solid var(--neon); text-align: center; }
.foot-name { margin: 0; font-size: 14px; font-weight: 700; letter-spacing: .08em; }
.foot-note { margin: 1.3em auto 0; max-width: 36em; font-size: 13px; line-height: 1.9; color: var(--ink-3); }

/* ---------- sp ---------- */
@media (max-width: 680px) {
  .post { grid-template-columns: 1fr; gap: 6px; }
  .post-date { padding-top: 0; }
  .profile { grid-template-columns: 1fr; }
  .profile-fig { max-width: 190px; }
  .access { grid-template-columns: 1fr; gap: 2px 0; }
  .access dd { margin-bottom: 14px; }
  .sec-h { gap: 8px; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }

/* ---------- hero：TaDah と同じ、大きなワードマーク ---------- */
.hero { padding: clamp(48px, 7vw, 80px) var(--gutter) clamp(56px, 8vw, 88px); display: flex; flex-direction: column; gap: clamp(32px, 5vw, 56px); }
.hero-logo { margin: 0; line-height: .8; }
.hero-logo .en {
  display: block;
  /* 1行組。TDFSHND = 7字。画面幅いっぱいに伸ばす */
  font-size: clamp(54px, 15vw, 250px);
  font-weight: 700; letter-spacing: -0.05em;
  white-space: nowrap;
  /* カーニングを効かせる。大きな文字ほど字間の粗が見えるので */
  font-kerning: normal;
  font-feature-settings: "kern" 1, "liga" 1;
  text-rendering: optimizeLegibility;
}
/* L と A のあいだは、字面の三角形どうしが向き合って大きく空く。詰める */
.hero-logo .k-la { margin-left: -.085em; }
/* B のあとのピリオドも、同じ理由で寄せる */
.hero-logo .dot { color: var(--neon); margin-left: -.045em; }
.hero-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: clamp(24px, 4vw, 64px); align-items: end; }
.hero-lead {
  margin: 0;
  font-size: clamp(20px, 2.1vw, 30px); font-weight: 700; line-height: 1.5; letter-spacing: -0.01em;
  word-break: keep-all; overflow-wrap: anywhere;
}
.hero-meta { text-align: right; }
.hero-org { margin: 0; font-size: 13px; line-height: 1.8; color: var(--ink-3); }
.hero-zemi { margin: .9em 0 0; display: inline-block; font-size: 13px; font-weight: 700; letter-spacing: .08em;
  background: var(--neon); color: var(--ink); padding: .4em .85em; }

/* ---------- ゼミの写真（カルーセル）----------
   自動では動かさない。勝手に動くものは、このゼミが研究している
   「嫌われる広告」そのものなので。指で送れて、止まっている。 */
/* 見出しは .sec の枠内、カルーセルだけ画面幅いっぱいに出す */
.gallery-sec { overflow: hidden; }
.carousel {
  list-style: none; margin: 0 calc(50% - 50vw); padding: 0 max(var(--gutter), calc(50vw - 530px + var(--gutter)));
  display: flex; gap: clamp(12px, 2vw, 24px);
  overflow-x: auto; overscroll-behavior-x: contain;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin; scrollbar-color: var(--rule) transparent;
}
.carousel::-webkit-scrollbar { height: 6px; }
.carousel::-webkit-scrollbar-thumb { background: var(--rule); border-radius: 3px; }
.carousel::-webkit-scrollbar-track { background: transparent; }
.carousel:focus-visible { outline: 3px solid var(--neon); outline-offset: 4px; }
.carousel > li { flex: 0 0 min(76vw, 620px); scroll-snap-align: center; }
.carousel figure { margin: 0; }
.carousel img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; background: var(--rule); }
.carousel figcaption {
  margin-top: .9em; font-size: 13px; font-weight: 700; color: var(--ink);
  display: flex; align-items: baseline; gap: .8em;
}
.carousel figcaption span { font-family: var(--en); font-size: 12px; font-weight: 400; color: var(--ink-3); }
/* 最後の1枚のあとにも余白を置いて、中央にスナップできるようにする */
.carousel::after { content: ""; flex: 0 0 calc(var(--gutter) - clamp(12px, 2vw, 24px)); }

@media (max-width: 680px) {
  .hero-grid { grid-template-columns: 1fr; gap: 20px; }
  .hero-meta { text-align: left; }
}

/* ---------- 行き先（リンク先の色を借りる） ---------- */
.links { list-style: none; margin: 0; padding: 0; }
.links li { border-top: 1px solid var(--rule); }
.links li:last-child { border-bottom: 1px solid var(--rule); }
.links a {
  display: grid; grid-template-columns: minmax(0, 12em) minmax(0, 1fr) auto;
  gap: clamp(12px, 3vw, 28px); align-items: baseline;
  padding: clamp(20px, 3vw, 26px) 4px;
  text-decoration: none;
  transition: background .18s, padding-left .18s;
}
.links a:hover { text-decoration: none; padding-left: 14px; }
.link-name { font-size: clamp(17px, 3vw, 21px); font-weight: 700; letter-spacing: -0.01em; }
.link-note { font-size: 14px; color: var(--ink-3); }
.links a:hover .link-note { color: var(--ink-2); }
.link-go { font-family: var(--en); font-size: 13px; color: var(--ink-3); white-space: nowrap; }
.links a:hover .link-go { color: var(--ink); }
/* 行き先ごとの色 */
.links a[data-c="tadah"]:hover { background: var(--c-tadah); }
.links a[data-c="lab"]:hover   { background: var(--c-lab); color: #fff; }
.links a[data-c="lab"]:hover .link-note,
.links a[data-c="lab"]:hover .link-go { color: rgba(255,255,255,.85); }
.links a[data-c="plain"]:hover { background: #F2F2EF; }

@media (max-width: 680px) {
  .links a { grid-template-columns: 1fr auto; gap: 4px 12px; }
  .link-note { grid-column: 1 / -1; }
}

/* ---------- 経歴（矢印でつなぐ1本） ---------- */
.career { margin: 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: .5em 0; }
/* nowrap は矢印で切れないためだが、長い項目は画面を押し広げるので折り返しを許す */
.career li { font-family: var(--en); font-size: clamp(13px, 1.6vw, 15px); color: var(--ink-2); max-width: 100%; }
.career li + li::before { content: "→"; margin: 0 .55em; color: var(--ink-3); }
.career li:last-child { font-weight: 700; color: var(--ink); }

/* ---------- ハブ用の調整 ---------- */
.hero-lead { font-size: clamp(22px, 2.4vw, 34px); }
/* ============================================================
   連絡の入口。FV が TDFS／HND で開くので、ここは Say Hello. で閉じる。
   級数の出し方は FV と同じ＝画面幅から逆算して、常に横いっぱい。
   4.25 ＝「Say Hello.」の幅（Helvetica Bold・字間 -0.05em でブラウザ実測 4.24em）。
   文言を変えたら、ここも測り直す。
   ============================================================ */
.foot {
  border-top: 0; padding: clamp(48px, 7vw, 88px) var(--gutter) clamp(28px, 3.4vw, 40px);
  text-align: left; background: var(--ink); color: #fff;
}
.foot-h {
  margin: 0; line-height: .86; font-family: var(--en); font-weight: 700;
  letter-spacing: -0.05em; white-space: nowrap; font-kerning: normal;
  font-size: calc((100vw - var(--gutter) * 2) / 4.25);
}
.foot-h .dot { color: var(--c-tadah); }
.foot-sub { margin: clamp(22px, 3vw, 34px) 0 0; font-size: 14px; line-height: 1.9; color: #B4B4AE; }
.foot-sub .en-sub { color: #86867F; }
.foot-ways { list-style: none; margin: clamp(22px, 3vw, 36px) 0 0; padding: 0;
  display: flex; flex-wrap: wrap; gap: 0 clamp(28px, 4vw, 64px); }
.foot-ways a {
  display: flex; align-items: baseline; gap: .5em; padding: .35em 0;
  color: #fff; border-bottom: 2px solid transparent;
}
.foot-ways a:hover, .foot-ways a:focus-visible { text-decoration: none; border-bottom-color: var(--c-tadah); }
.w-name { font-size: clamp(20px, 2.6vw, 32px); font-weight: 700; letter-spacing: -0.01em; }
.w-id { font-size: 13px; color: #9A9A94; }
.foot-ways a:hover .w-id { color: #fff; }
.foot-meta {
  margin: clamp(34px, 4.5vw, 58px) 0 0; padding-top: 18px;
  border-top: 1px solid #333330; font-size: 12px; color: #86867F; letter-spacing: .04em;
}


/* 名前は小さく、ワードマークのすぐ下に */
.hero-name {
  margin: .9em 0 0;
  font-size: clamp(14px, 1.9vw, 19px); font-weight: 700;
  letter-spacing: .02em; color: var(--ink);
}
.hero-name .en { letter-spacing: .04em; }
.hero-lead:empty { display: none; }
.hero-grid { align-items: end; }

/* ============================================================
   行き先＝扉。ハブの仕事は送り出すことだけなので、
   このページでいちばん大きいのは「押す場所」。
   触れると、その行き先の色が画面に入ってくる。
   ============================================================ */
.go { border-top: 1px solid var(--rule); }
.doors { list-style: none; margin: 0; padding: 0; }
.doors li + li { border-top: 1px solid var(--rule); }
.doors a {
  display: block; position: relative;
  padding: clamp(34px, 5.5vw, 62px) var(--gutter);
  text-decoration: none;
  transition: background .22s cubic-bezier(.2,.8,.3,1), color .22s;
}
.doors a:hover, .doors a:focus-visible { text-decoration: none; }
.door-name {
  display: block;
  font-size: clamp(38px, 8.4vw, 124px);
  font-weight: 700; letter-spacing: -0.04em; line-height: 1;
}
.door-note {
  display: block; margin-top: .9em;
  font-size: clamp(13px, 1.5vw, 15px); line-height: 1.7; color: var(--ink-3);
  transition: color .22s;
}
.door-url {
  position: absolute; right: var(--gutter); bottom: clamp(34px, 5.5vw, 62px);
  font-size: 13px; color: var(--ink-3);
  transition: color .22s;
}
.door-url::after { content: " ↗"; }

/* 触れると、その行き先の色になる */
.doors a[data-c="tadah"]:hover, .doors a[data-c="tadah"]:focus-visible { background: var(--c-tadah); color: var(--ink); }
.doors a[data-c="lab"]:hover,   .doors a[data-c="lab"]:focus-visible   { background: var(--c-lab);   color: #fff; }
.doors a[data-c="x"]:hover,     .doors a[data-c="x"]:focus-visible     { background: var(--ink);     color: #fff; }
.doors a:hover .door-note, .doors a:hover .door-url,
.doors a:focus-visible .door-note, .doors a:focus-visible .door-url { color: inherit; opacity: .8; }

/* TaDah の「!」は、あちらのサイトと同じ黄色い角の上の黒 */
.door-name .bang { display: inline-block; background: var(--c-tadah); color: var(--ink); padding: 0 .06em; margin-left: .02em; }
.doors a[data-c="tadah"]:hover .bang { background: var(--ink); color: var(--c-tadah); }

@media (max-width: 680px) {
  .door-url { position: static; display: block; margin-top: .8em; }
}

/* ============================================================
   開いた瞬間に、3つの行き先が全部見えている。
   ハブは通過点なので、ファーストビューで足止めしない。
   ============================================================ */
.screen { min-height: 100svh; display: flex; flex-direction: column; }

/* ============================================================
   スクロールの合図。
   .screen の最初の子に置いて sticky で画面の下へ押し下げる。
   1画面目を抜けると .screen ごと流れて消えるので、消す処理が要らない。
   高さ 0 なので、上のレイアウトには一切さわらない。
   白地の上でも、黒いワードマークの上でも読めるよう、白地に黒罫の札にする。
   ============================================================ */
.cue {
  position: sticky; top: calc(100svh - 92px); z-index: 4;
  height: 0; flex: 0 0 0;
  display: flex; justify-content: center; align-items: flex-start;
}
.cue-btn {
  display: inline-flex; align-items: center; gap: .85em;
  padding: 13px 26px 13px 28px; border-radius: 999px;
  background: var(--paper); border: 1.5px solid var(--ink); color: var(--ink);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .1);
  transition: background .2s, color .2s;
}
.cue-btn:hover, .cue-btn:focus-visible {
  text-decoration: none; background: var(--ink); color: var(--paper);
}
.cue-label { font-family: var(--en); font-size: 12.5px; font-weight: 700; letter-spacing: .2em; }
.cue-arrow { font-size: 17px; line-height: 1; animation: cue-bob 1.5s cubic-bezier(.45, 0, .2, 1) infinite; }
@keyframes cue-bob {
  0%, 100% { transform: translateY(-2px); }
  50%      { transform: translateY(4px); }
}
@media (prefers-reduced-motion: reduce) {
  .cue-arrow { animation: none; }
}
/* 縦長の画面では、ワードマークの下に行き先がもう見えている。
   合図が要らないどころか中身に重なるので、そこでは出さない。 */
@media (max-aspect-ratio: 1 / 1) {
  .cue { display: none; }
}
}
.screen .hero { padding: clamp(28px, 4vw, 46px) var(--gutter) clamp(20px, 2.6vw, 30px); gap: 0; flex: 0 0 auto; }
/* 2行組。行ごとに級数を変えて、左右の余白いっぱいに両端を揃える。
   TDFS = 2.394em / HND = 2.073em（Helvetica Bold・字間 -0.05em。ブラウザで実測）。
   上限を置かない。どんな画面でも、常に横いっぱいの最大級数。
   横長の画面ではワードマークだけで1画面を使い切るので、
   3つの行き先はスクロールした先に出る。それでよい、という判断。 */
.screen .hero-logo .en { display: block; max-width: 100%; }
.screen .hero-logo .l1 { font-size: calc((100vw - var(--gutter) * 2) / 2.404); }
.screen .hero-logo .l2 { font-size: calc((100vw - var(--gutter) * 2) / 2.083); }
.screen .hero-name {
  margin: .8em 0 0; font-weight: 400; color: var(--ink-3);
  font-size: clamp(11.5px, 1.35vw, 14px); line-height: 1.7;
}
.screen .hero-name .en { font-weight: 700; color: var(--ink); }

.go { flex: 1 1 auto; display: flex; border-top: 1px solid var(--rule); }
.doors { flex: 1; display: flex; flex-direction: column; }
.doors li { flex: 1 1 0; display: flex; min-height: 118px; }
.doors a {
  flex: 1; display: flex; flex-direction: column; justify-content: center;
  padding: clamp(18px, 2.6vw, 30px) var(--gutter);
}
.door-name { font-size: clamp(30px, 6.4vw, 92px); }
.door-note { margin-top: .6em; }
.door-url { bottom: auto; top: 50%; transform: translateY(-50%); }

/* 小さいほうの行き先 */
.elsewhere { border-top: 1px solid var(--rule); padding: clamp(22px, 3vw, 30px) var(--gutter); }
.elsewhere ul { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .6em 1.8em; }
.elsewhere a {
  font-size: 13.5px; font-weight: 700; color: var(--ink-2);
  border-bottom: 2px solid transparent; padding-bottom: 2px;
}
.elsewhere a:hover { text-decoration: none; color: var(--ink); border-bottom-color: var(--ink); }
.elsewhere a::after { content: " ↗"; font-weight: 400; color: var(--ink-3); }

/* 狭い画面でも「開いた瞬間に3つ見える」は保つ。
   ただし高さの取り合いはやめて、扉は中身なりの高さで縦に積む。 */
@media (max-width: 680px) {
  .doors li { flex: 0 0 auto; min-height: 104px; }
  .door-url { position: static; transform: none; display: block; margin-top: .7em; }
}

/* 扉が画面幅を押し広げないように。
   いちばん長い「DHU HONDA LAB.」が収まる級数を、狭い画面では計算で出す。
   8.3 ＝ その文字列の幅（Helvetica Bold・字間 -0.04em でブラウザ実測 8.165em）＋余裕。
   扉の名前を長くしたら、ここも測り直す。 */
.doors li { min-width: 0; }
.doors a { min-width: 0; overflow: hidden; }
.door-name { max-width: 100%; }
@media (max-width: 680px) {
  .door-name { font-size: min(clamp(30px, 6.4vw, 92px), calc((100vw - var(--gutter) * 2) / 8.3)); }
}

.hero-logo { line-height: .8; }

/* ============================================================
   本文まわりは TaDah のハウスセッティングと同じ 90% 長体。
   左端を基準に横だけ 0.9 倍にして、器を 111.11% に広げて幅を戻す。
   ============================================================ */
.screen .hero-name .jp,
.door-note .jp,
.prose p.jp,
.prose li,
.career li {
  width: 111.11%; transform: scale(0.9, 1); transform-origin: left center;
}
/* 器が広がるぶん、親からはみ出さないように包む */
.screen .hero, .door-note, .prose, .career { overflow: hidden; }

/* ============================================================
   日英併記。日本語が主、英語はその下に一段落として置く。
   英文には長体を当てない（長体は日本語の組みの作法なので）。
   ============================================================ */
.hero-name .jp, .door-note .jp { display: block; }
.en-sub {
  display: block; font-family: var(--en); color: var(--ink-3);
  letter-spacing: .005em;
}
.screen .hero-name .en-sub { margin-top: .5em; font-size: .94em; }
.door-note .en-sub { margin-top: .5em; font-size: .92em; }
.doors a:hover .door-note .en-sub,
.doors a:focus-visible .door-note .en-sub { color: inherit; }
.en-block {
  margin-top: 1.9em; padding-top: 1.5em; border-top: 1px solid var(--rule);
  font-family: var(--en); color: var(--ink-2);
}
.en-block p { font-size: .95em; }
/* 右端揃えの要素は長体の基準も右にする */
.hero-meta .hero-org { transform-origin: right center; }
