/* ============================================================
   BULK BUILD Inc. — Corporate Site
   Design tokens: 白 (paper) / 墨 (ink) / 朱 (seal red)
   Display: Shippori Mincho — Body: Zen Kaku Gothic New — EN: Inter
   ============================================================ */

:root {
  --paper: #fbfaf8;
  --ink: #16140f;
  --gray: #76716a;
  --hairline: #e6e2db;
  --seal: #1f6b4e;
  --white: #ffffff;

  --font-display: "Shippori Mincho", serif;
  --font-body: "Zen Kaku Gothic New", sans-serif;
  --font-en: "Inter", sans-serif;

  --w: 1120px;
  --pad: clamp(20px, 5vw, 48px);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  font-size: 15.5px;
  line-height: 2;
  letter-spacing: 0.04em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.wrap {
  max-width: var(--w);
  margin: 0 auto;
  padding-left: var(--pad);
  padding-right: var(--pad);
}

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 250, 248, 0.92);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid var(--hairline);
}

.header-inner {
  max-width: var(--w);
  margin: 0 auto;
  padding: 0 var(--pad);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0.14em;
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo .mark {
  width: 9px;
  height: 9px;
  background: var(--seal);
  display: inline-block;
}

.logo small {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  color: var(--gray);
}

.gnav { display: flex; gap: 34px; align-items: center; }

.gnav a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.12em;
  position: relative;
  padding: 6px 0;
}

.gnav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--ink);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}

.gnav a:hover::after,
.gnav a[aria-current="page"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.gnav .nav-cta {
  border: 1px solid var(--ink);
  padding: 9px 22px;
  transition: background 0.3s, color 0.3s;
}
.gnav .nav-cta::after { display: none; }
.gnav .nav-cta:hover { background: var(--ink); color: var(--paper); }

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: 0;
  width: 44px; height: 44px;
  cursor: pointer;
  position: relative;
}
.nav-toggle span {
  position: absolute;
  left: 10px;
  width: 24px; height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 25px; }
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(4px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { transform: translateY(-4px) rotate(-45deg); }

@media (max-width: 860px) {
  .nav-toggle { display: block; }
  .gnav {
    position: fixed;
    inset: 72px 0 auto 0;
    background: var(--paper);
    border-bottom: 1px solid var(--hairline);
    flex-direction: column;
    gap: 0;
    align-items: stretch;
    padding: 12px var(--pad) 28px;
    display: none;
  }
  .nav-open .gnav { display: flex; }
  .gnav a { padding: 14px 0; font-size: 14px; border-bottom: 1px solid var(--hairline); }
  .gnav a::after { display: none; }
  .gnav .nav-cta { margin-top: 18px; text-align: center; border-bottom: 1px solid var(--ink); }
}

/* ---------- Section grammar ---------- */
.section { padding: clamp(72px, 11vw, 140px) 0; }
.section + .section { border-top: 1px solid var(--hairline); }

.eyebrow {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 26px;
}
.eyebrow::before {
  content: "";
  width: 28px; height: 1px;
  background: var(--seal);
}

h2.heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(26px, 3.4vw, 38px);
  line-height: 1.6;
  letter-spacing: 0.06em;
  margin-bottom: 30px;
}

.lead { max-width: 620px; color: var(--ink); }
.lead p + p { margin-top: 1.4em; }
.muted { color: var(--gray); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 13.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  border: 1px solid var(--ink);
  padding: 16px 36px;
  transition: background 0.3s, color 0.3s;
}
.btn::after { content: "→"; transition: transform 0.3s; }
.btn:hover { background: var(--ink); color: var(--paper); }
.btn:hover::after { transform: translateX(5px); }
.btn--fill { background: var(--ink); color: var(--paper); }
.btn--fill:hover { background: var(--seal); border-color: var(--seal); }

/* ---------- Hero (top) ---------- */
.hero {
  padding: clamp(80px, 12vw, 170px) 0 clamp(70px, 10vw, 130px);
  position: relative;
  overflow: hidden;
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(38px, 6.6vw, 76px);
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.hero .hero-sub {
  margin-top: 36px;
  max-width: 560px;
  color: var(--gray);
  font-size: 15px;
}

.hero .hero-en {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero .hero-en::before { content: ""; width: 36px; height: 1px; background: var(--seal); }

.hero-actions { margin-top: 48px; display: flex; gap: 16px; flex-wrap: wrap; }

/* Vertical philosophy mark on hero (signature) */
.hero .tate {
  position: absolute;
  top: clamp(80px, 12vw, 170px);
  right: var(--pad);
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-size: clamp(15px, 1.8vw, 21px);
  letter-spacing: 0.42em;
  color: var(--ink);
  display: flex;
  align-items: center;
  gap: 16px;
}
.hero .tate::after {
  content: "";
  width: 10px; height: 10px;
  background: var(--seal);
  margin-top: 6px;
}
@media (max-width: 720px) { .hero .tate { display: none; } }

/* reveal on load */
.reveal { opacity: 0; transform: translateY(18px); animation: rise 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards; }
.reveal.d1 { animation-delay: 0.12s; }
.reveal.d2 { animation-delay: 0.24s; }
.reveal.d3 { animation-delay: 0.36s; }
@keyframes rise { to { opacity: 1; transform: none; } }

/* scroll reveal */
.sr { opacity: 0; transform: translateY(22px); transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.22, 1, 0.36, 1); }
.sr.in { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  .reveal, .sr { opacity: 1 !important; transform: none !important; animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}

/* ---------- Philosophy block (vertical writing signature) ---------- */
.philosophy {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(40px, 7vw, 110px);
  align-items: start;
}

.philosophy .tate-main {
  writing-mode: vertical-rl;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(40px, 5.5vw, 64px);
  letter-spacing: 0.34em;
  line-height: 1.3;
  height: clamp(260px, 36vw, 420px);
  padding-top: 8px;
}

@media (max-width: 720px) {
  .philosophy { grid-template-columns: 1fr; }
  .philosophy .tate-main { height: 300px; margin: 0 auto; }
}

/* ---------- Business list ---------- */
.biz-list { border-top: 1px solid var(--hairline); margin-top: 50px; }

.biz-item {
  display: grid;
  grid-template-columns: 120px 1fr auto;
  gap: clamp(20px, 4vw, 60px);
  align-items: baseline;
  padding: 38px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
a.biz-item:hover { padding-left: 14px; }
a.biz-item:hover .biz-arrow { color: var(--seal); transform: translateX(4px); }

.biz-no {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gray);
}

.biz-item h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(18px, 2.2vw, 23px);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}

.biz-item p { color: var(--gray); font-size: 14px; max-width: 560px; }

.biz-arrow { font-size: 18px; color: var(--gray); transition: transform 0.3s, color 0.3s; }

@media (max-width: 720px) {
  .biz-item { grid-template-columns: 1fr; gap: 6px; }
  .biz-no { margin-bottom: 2px; }
  .biz-arrow { display: none; }
}

/* ---------- Stats strip ---------- */
.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
}
.stat {
  padding: 40px 28px;
  text-align: center;
}
.stat + .stat { border-left: 1px solid var(--hairline); }
.stat .num {
  font-family: var(--font-display);
  font-size: clamp(30px, 4vw, 44px);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.3;
}
.stat .num small { font-size: 0.45em; margin-left: 4px; }
.stat .label { font-size: 12.5px; color: var(--gray); letter-spacing: 0.14em; margin-top: 8px; }
@media (max-width: 640px) {
  .stats { grid-template-columns: 1fr; }
  .stat + .stat { border-left: 0; border-top: 1px solid var(--hairline); }
}

/* ---------- Recruit band ---------- */
.recruit-band {
  background: var(--ink);
  color: var(--paper);
  padding: clamp(70px, 10vw, 120px) 0;
}
.recruit-band .eyebrow { color: #a8a39b; }
.recruit-band h2.heading { color: var(--paper); }
.recruit-band .lead { color: #c9c5be; }
.recruit-band .btn { border-color: var(--paper); color: var(--paper); }
.recruit-band .btn:hover { background: var(--paper); color: var(--ink); }

/* ---------- Definition table (会社概要) ---------- */
.spec { border-top: 1px solid var(--hairline); margin-top: 40px; }
.spec-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--hairline);
}
.spec-row dt {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--gray);
  padding-top: 2px;
}
.spec-row dd { font-size: 14.5px; }
.spec-row dd ul li { padding-left: 1.1em; position: relative; }
.spec-row dd ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95em;
  width: 5px; height: 1.5px;
  background: var(--seal);
}
@media (max-width: 640px) {
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
}

/* ---------- Page hero (subpages) ---------- */
.page-hero {
  padding: clamp(64px, 9vw, 110px) 0 clamp(48px, 7vw, 80px);
  border-bottom: 1px solid var(--hairline);
  position: relative;
}
.page-hero .en {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gray);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.page-hero .en::before { content: ""; width: 28px; height: 1px; background: var(--seal); }
.page-hero h1 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(30px, 4.6vw, 50px);
  letter-spacing: 0.07em;
  line-height: 1.5;
}
.page-hero .desc { margin-top: 20px; max-width: 600px; color: var(--gray); font-size: 14.5px; }

/* ---------- Cards (values / positions) ---------- */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--hairline); border: 1px solid var(--hairline); }
.cell { background: var(--paper); padding: clamp(28px, 3.4vw, 44px); }
.cell .cell-en {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--seal);
  margin-bottom: 16px;
}
.cell h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.06em;
  margin-bottom: 12px;
}
.cell p { font-size: 14px; color: var(--gray); }
@media (max-width: 820px) { .grid-3 { grid-template-columns: 1fr; } }
@media (max-width: 640px) { .grid-2 { grid-template-columns: 1fr; } }

/* ---------- Photo placeholder ---------- */
.ph {
  background: repeating-linear-gradient(-45deg, #f1eee9, #f1eee9 10px, #ece8e2 10px, #ece8e2 20px);
  border: 1px solid var(--hairline);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 12px;
  letter-spacing: 0.18em;
  aspect-ratio: 16 / 9;
}

/* ---------- Photo grid ---------- */
.photos {
  display: grid;
  grid-template-columns: 2fr 1.2fr;
  gap: 14px;
  margin-top: 44px;
}
.photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}
.photos img + img { aspect-ratio: auto; }
@media (max-width: 640px) {
  .photos { grid-template-columns: 1fr; }
  .photos img + img { aspect-ratio: 3 / 2; }
}

/* ---------- Position list (recruit) ---------- */
.pos { border-top: 1px solid var(--hairline); margin-top: 44px; }
.pos-item { border-bottom: 1px solid var(--hairline); padding: 30px 0; }
.pos-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
}
.pos-item summary::-webkit-details-marker { display: none; }
.pos-item summary h3 {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.pos-item summary .open-mark {
  font-family: var(--font-en);
  font-size: 20px;
  color: var(--gray);
  transition: transform 0.3s;
}
.pos-item[open] summary .open-mark { transform: rotate(45deg); color: var(--seal); }
.pos-body { padding-top: 18px; font-size: 14px; color: var(--gray); max-width: 640px; }
.pos-body .tagline { color: var(--ink); margin-bottom: 10px; }

.pos-spec { margin-top: 18px; border-top: 1px solid var(--hairline); }
.pos-spec > div {
  display: grid;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--hairline);
}
.pos-spec dt {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--gray);
  padding-top: 2px;
}
.pos-spec dd { font-size: 13.5px; color: var(--ink); line-height: 1.9; }
.pos-spec dd .note { color: var(--gray); font-size: 12px; }
@media (max-width: 560px) {
  .pos-spec > div { grid-template-columns: 1fr; gap: 2px; }
}

/* ---------- Contact form ---------- */
.form { max-width: 640px; margin-top: 48px; }
.form .field { margin-bottom: 26px; }
.form label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  margin-bottom: 10px;
}
.form label .req {
  color: var(--seal);
  font-size: 11px;
  margin-left: 8px;
  font-weight: 500;
}
.form input[type="text"],
.form input[type="email"],
.form select,
.form textarea {
  width: 100%;
  border: 1px solid var(--hairline);
  background: var(--white);
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--ink);
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color 0.3s;
}
.form select {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%2376716a'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
}
.form textarea { min-height: 180px; resize: vertical; }
.form input:focus, .form select:focus, .form textarea:focus {
  outline: none;
  border-color: var(--ink);
}
.form .privacy { font-size: 12.5px; color: var(--gray); margin: 28px 0; }
.form button.btn {
  background: var(--ink);
  color: var(--paper);
  font-family: var(--font-body);
  cursor: pointer;
  border: 1px solid var(--ink);
}
.form button.btn:hover { background: var(--seal); border-color: var(--seal); }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--hairline);
  padding: 64px 0 40px;
}
.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.footer .addr { font-size: 13px; color: var(--gray); margin-top: 18px; line-height: 2.1; }
.footer-nav { display: flex; gap: 30px; flex-wrap: wrap; }
.footer-nav a { font-size: 12.5px; letter-spacing: 0.12em; color: var(--gray); transition: color 0.3s; }
.footer-nav a:hover { color: var(--ink); }
.copyright {
  margin-top: 56px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.16em;
  color: var(--gray);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
}

/* focus visibility */
a:focus-visible, button:focus-visible, summary:focus-visible {
  outline: 2px solid var(--seal);
  outline-offset: 3px;
}

/* ---------- Interview (recruit) ---------- */
.iv-list { margin-top: 56px; display: grid; gap: clamp(56px, 8vw, 96px); }

.iv-item {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(28px, 5vw, 64px);
  align-items: start;
}
.iv-item:nth-child(even) .iv-photo { order: 2; }

.iv-photo img,
.iv-photo .ph {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.iv-no {
  font-family: var(--font-en);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--seal);
  margin-bottom: 18px;
}

.iv-quote {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(20px, 2.6vw, 27px);
  line-height: 1.7;
  letter-spacing: 0.05em;
  margin-bottom: 16px;
}

.iv-meta {
  font-size: 12.5px;
  color: var(--gray);
  letter-spacing: 0.1em;
  padding-bottom: 22px;
  margin-bottom: 26px;
  border-bottom: 1px solid var(--hairline);
}
.iv-meta strong { color: var(--ink); font-size: 14px; letter-spacing: 0.14em; margin-right: 10px; }

.iv-qa > div + div { margin-top: 24px; }
.iv-qa dt {
  font-size: 13.5px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
  display: flex;
  gap: 10px;
}
.iv-qa dt::before {
  content: "Q";
  font-family: var(--font-en);
  color: var(--seal);
  font-weight: 600;
}
.iv-qa dd { font-size: 14px; color: var(--gray); line-height: 2; }

@media (max-width: 760px) {
  .iv-item { grid-template-columns: 1fr; }
  .iv-item:nth-child(even) .iv-photo { order: 0; }
  .iv-photo img, .iv-photo .ph { aspect-ratio: 3 / 2; }
}

/* ---------- FETCHES compact strip (recruit) ---------- */
.fetches-strip {
  margin-top: 40px;
  border-top: 1px solid var(--hairline);
  display: grid;
  grid-template-columns: repeat(7, 1fr);
}
.fetches-strip li {
  border-bottom: 1px solid var(--hairline);
  border-right: 1px solid var(--hairline);
  padding: 22px 10px;
  text-align: center;
}
.fetches-strip li:first-child { border-left: 1px solid var(--hairline); }
.fetches-strip .f-letter {
  display: block;
  font-family: var(--font-en);
  font-size: 19px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--seal);
  margin-bottom: 10px;
}
.fetches-strip .f-word {
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--ink);
  line-height: 1.6;
}
@media (max-width: 860px) {
  .fetches-strip { grid-template-columns: repeat(4, 1fr); }
  .fetches-strip li:nth-child(5) { border-left: 1px solid var(--hairline); }
}
@media (max-width: 480px) {
  .fetches-strip { grid-template-columns: repeat(2, 1fr); }
  .fetches-strip li:nth-child(odd) { border-left: 1px solid var(--hairline); }
  .fetches-strip li:nth-child(5) { border-left: 0; }
  .fetches-strip li:nth-child(odd) { border-left: 1px solid var(--hairline); }
}

/* Numbered label for person cards (distinct from FETCHES letter cards) */
.cell .cell-no {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--gray);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.cell .cell-no::after { content: ""; width: 22px; height: 1px; background: var(--seal); }

/* ---------- News / Press release list (top) ---------- */
.news-list { border-top: 1px solid var(--hairline); margin-top: 48px; }
.news-item {
  display: grid;
  grid-template-columns: 110px 130px 1fr auto;
  gap: clamp(16px, 3vw, 40px);
  align-items: baseline;
  padding: 26px 0;
  border-bottom: 1px solid var(--hairline);
  transition: padding-left 0.35s cubic-bezier(0.22, 1, 0.36, 1);
}
a.news-item:hover { padding-left: 12px; }
a.news-item:hover .news-arrow { color: var(--seal); transform: translate(3px, -3px); }

.news-date {
  font-family: var(--font-en);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--gray);
}
.news-cat {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--seal);
  border: 1px solid currentColor;
  padding: 4px 10px;
  text-align: center;
  white-space: nowrap;
}
.news-title { font-size: 14.5px; letter-spacing: 0.04em; }
.news-arrow { font-size: 15px; color: var(--gray); transition: transform 0.3s, color 0.3s; }

@media (max-width: 680px) {
  .news-item { grid-template-columns: auto auto 1fr; row-gap: 8px; }
  .news-title { grid-column: 1 / -1; }
  .news-arrow { display: none; }
}

/* ---------- Policy page ---------- */
.policy { max-width: 720px; }
.policy h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 19px;
  letter-spacing: 0.06em;
  margin: 44px 0 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--hairline);
}
.policy h2:first-child { margin-top: 0; }
.policy p { font-size: 14.5px; color: var(--ink); }
.policy ul { margin: 10px 0; }
.policy ul li { padding-left: 1.2em; position: relative; font-size: 14.5px; }
.policy ul li::before {
  content: "";
  position: absolute;
  left: 0; top: 0.95em;
  width: 5px; height: 1.5px;
  background: var(--seal);
}
.policy-date { margin-top: 48px; color: var(--gray); font-size: 13px; }

/* Footer external link mark */
.footer-nav a .ext { font-size: 10px; margin-left: 3px; }

/* ---------- Stores ---------- */
.store-region { margin-top: 56px; }
.store-region:first-of-type { margin-top: 40px; }
.store-region > h3 {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--seal);
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.store-region > h3 span { color: var(--gray); letter-spacing: 0.14em; }
.store-region > h3::after { content: ""; flex: 1; height: 1px; background: var(--hairline); }

.store-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 760px) { .store-grid { grid-template-columns: 1fr; } }

.store-card {
  border: 1px solid var(--hairline);
  background: var(--white);
  padding: 24px 26px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.store-card h4 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.05em;
}
.store-card .addr2 { font-size: 13px; line-height: 1.9; }
.store-card .access { font-size: 12px; color: var(--gray); line-height: 1.8; }
.store-card .meta { font-size: 12px; color: var(--gray); letter-spacing: 0.06em; }
.store-card .store-link {
  margin-top: auto;
  padding-top: 12px;
  font-size: 12.5px;
  letter-spacing: 0.1em;
  color: var(--seal);
  align-self: flex-start;
  border-bottom: 1px solid currentColor;
}

/* ---------- Logo mark ---------- */
.logo .logomark {
  height: 30px;
  width: auto;
  display: inline-block;
  vertical-align: -8px;
  margin-right: 11px;
}
.footer .logo .logomark { filter: invert(1) brightness(1.6); }
@media (max-width: 760px) { .logo .logomark { height: 26px; vertical-align: -7px; margin-right: 9px; } }

/* ---------- Interview C-layout (featured + cards) ---------- */
.iv-featured { margin-top: 56px; }
.iv-featured .iv-tag {
  font-family: var(--font-en);
  font-size: 11.5px; font-weight: 600; letter-spacing: 0.3em;
  text-transform: uppercase; color: var(--seal); margin-bottom: 16px;
}
.iv-featured .iv-hero {
  width: 100%; aspect-ratio: 16 / 7; object-fit: cover; margin-bottom: 32px;
}
.iv-featured .iv-quote {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(23px, 3.2vw, 34px); line-height: 1.65;
  letter-spacing: 0.04em; margin-bottom: 18px;
}
.iv-featured .iv-meta {
  font-size: 13px; color: var(--gray); letter-spacing: 0.1em;
  padding-bottom: 26px; margin-bottom: 32px; border-bottom: 1px solid var(--hairline);
}
.iv-featured .iv-meta strong { color: var(--ink); font-size: 15px; letter-spacing: 0.14em; margin-right: 12px; }
.iv-featured .iv-body { max-width: 760px; }
.iv-featured .iv-body > div + div { margin-top: 30px; }
.iv-featured .iv-body dt {
  font-size: 15px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 10px;
  display: flex; gap: 12px;
}
.iv-featured .iv-body dt::before { content: "Q"; font-family: var(--font-en); color: var(--seal); font-weight: 600; }
.iv-featured .iv-body dd { font-size: 15px; color: #3c3a35; line-height: 2.05; }
.iv-featured .iv-msg {
  margin-top: 36px; padding: 28px 32px; background: var(--wash, #f4f2ec);
  border-left: 2px solid var(--seal); font-size: 14.5px; line-height: 2.05; color: #3c3a35;
}
.iv-featured .iv-msg .iv-msg-label {
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.24em; color: var(--seal); display: block; margin-bottom: 10px;
}

.iv-cards { margin-top: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(28px, 4vw, 44px); }
@media (max-width: 760px) { .iv-cards { grid-template-columns: 1fr; } }
.iv-card { border-top: 2px solid var(--ink); padding-top: 22px; }
.iv-card .iv-cphoto { width: 100%; aspect-ratio: 3 / 2; object-fit: cover; margin-bottom: 20px; }
.iv-card .iv-no { font-family: var(--font-en); font-size: 11px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--seal); margin-bottom: 12px; }
.iv-card h3 { font-family: var(--font-display); font-weight: 600; font-size: clamp(18px, 2.2vw, 22px); line-height: 1.6; letter-spacing: 0.04em; margin-bottom: 12px; }
.iv-card .iv-meta { font-size: 12.5px; color: var(--gray); letter-spacing: 0.1em; padding-bottom: 18px; margin-bottom: 20px; border-bottom: 1px solid var(--hairline); }
.iv-card .iv-meta strong { color: var(--ink); font-size: 13.5px; letter-spacing: 0.12em; margin-right: 10px; }
.iv-card dl > div + div { margin-top: 18px; }
.iv-card dt { font-size: 13px; font-weight: 700; letter-spacing: 0.06em; margin-bottom: 7px; }
.iv-card dd { font-size: 13.5px; color: var(--gray); line-height: 1.95; }

/* ---------- Interview monogram plates (方針2) ---------- */
.iv-mono {
  background: var(--ink);
  color: var(--paper, #fbfaf8);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.iv-mono::before {
  content: ""; position: absolute; inset: 14px;
  border: 1px solid rgba(251,250,248,0.22);
}
.iv-mono .mono-initials {
  font-family: var(--font-display); font-weight: 600;
  letter-spacing: 0.12em; line-height: 1; color: var(--paper, #fbfaf8);
}
.iv-mono .mono-role {
  font-family: var(--font-en); font-size: 10.5px; font-weight: 600;
  letter-spacing: 0.3em; text-transform: uppercase; color: var(--seal);
  margin-top: 16px;
}
.iv-mono .mono-seal {
  position: absolute; bottom: 22px; right: 24px;
  font-family: var(--font-en); font-size: 10px; letter-spacing: 0.22em;
  color: rgba(251,250,248,0.4);
}
/* featured hero plate */
.iv-featured .iv-hero.iv-mono { aspect-ratio: 16 / 7; margin-bottom: 32px; }
.iv-featured .iv-hero.iv-mono .mono-initials { font-size: clamp(54px, 10vw, 104px); }
/* card plate */
.iv-card .iv-cphoto.iv-mono { aspect-ratio: 3 / 2; margin-bottom: 20px; }
.iv-card .iv-cphoto.iv-mono .mono-initials { font-size: clamp(40px, 8vw, 60px); }

/* ---------- Interview word plates (代案B) ---------- */
.iv-word {
  background: var(--paper, #fbfaf8);
  border: 1px solid var(--hairline);
  position: relative; overflow: hidden;
  display: flex; flex-direction: column; justify-content: center;
  padding: clamp(28px, 4vw, 48px);
}
.iv-word .w-en {
  font-family: var(--font-en); font-size: 11px; font-weight: 600;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--seal);
  margin-bottom: 18px;
}
.iv-word .w-big {
  font-family: var(--font-display); font-weight: 600;
  line-height: 1.5; letter-spacing: 0.04em; color: var(--ink);
}
.iv-word .w-big .accent { color: var(--seal); }
.iv-word .w-name {
  margin-top: auto; padding-top: 22px;
  font-family: var(--font-en); font-size: 12px; letter-spacing: 0.18em; color: var(--gray);
}
.iv-word .w-quote-mark {
  position: absolute; top: -8px; right: 18px;
  font-family: var(--font-display); font-size: clamp(90px, 16vw, 160px);
  line-height: 1; color: rgba(31,107,78,0.07); pointer-events: none;
}
/* featured */
.iv-featured .iv-hero.iv-word { aspect-ratio: 16 / 7; margin-bottom: 32px; }
.iv-featured .iv-hero.iv-word .w-big { font-size: clamp(28px, 5vw, 52px); }
/* cards */
.iv-card .iv-cphoto.iv-word { aspect-ratio: 3 / 2; margin-bottom: 20px; }
.iv-card .iv-cphoto.iv-word .w-big { font-size: clamp(22px, 4vw, 30px); }
.iv-card .iv-cphoto.iv-word .w-name { padding-top: 14px; }

/* ---------- Word plate: mobile fixes (prevent text overflow) ---------- */
@media (max-width: 760px) {
  /* Let plates grow with their content instead of locking a wide aspect ratio */
  .iv-featured .iv-hero.iv-word,
  .iv-card .iv-cphoto.iv-word {
    aspect-ratio: auto;
    min-height: 200px;
    padding: 30px 24px;
  }
  .iv-featured .iv-hero.iv-word .w-big { font-size: clamp(21px, 6.4vw, 26px); line-height: 1.55; }
  .iv-card .iv-cphoto.iv-word .w-big { font-size: clamp(19px, 5.6vw, 23px); }
  .iv-word .w-quote-mark { font-size: 90px; top: -2px; right: 12px; }
}
@media (max-width: 420px) {
  .iv-featured .iv-hero.iv-word .w-big { font-size: 20px; }
  .iv-word .w-quote-mark { display: none; } /* avoid overlap with text on very narrow screens */
}
