@charset "UTF-8";

/* ==============================
   Design Tokens — 和 Beige / Gray
   ============================== */
:root {
  --bg: #f0ebe3;
  --bg-warm: #e8e0d4;
  --bg-cool: #e4e2de;
  --ink: #333029;
  --ink-soft: #645c50;
  --ink-light: #b5ad9f;
  --line: #d4cdc0;
  --accent: #8c7851;
  --accent-light: #b8a67a;
  --cta: #6b6054;
  --cta-hover: #574d42;
  --white: #faf8f5;
  --charcoal: #3a362f;
  --font-mincho: "Zen Old Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --font-sans: "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  --font-en: "Cormorant Garamond", Georgia, serif;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--ink);
  background: var(--bg);
  line-height: 2;
  font-size: 13px;
  letter-spacing: 0.06em;
  -webkit-font-smoothing: antialiased;
  opacity: 0;
}
body.is-loaded { opacity: 1; transition: opacity 0.8s ease; }

img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { font-family: inherit; color: inherit; cursor: pointer; border: none; background: none; }

.section-inner { max-width: 1100px; margin: 0 auto; padding: 0 48px; }
section { padding: 140px 0; }

.sp-only { display: none; }
.sp-hide { display: inline; }
@media (max-width: 768px) {
  .sp-only { display: inline; }
  .sp-hide { display: none; }
}

/* Washi paper texture — enhanced */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg width='400' height='400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='a'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='6' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='400' height='400' filter='url(%23a)' opacity='0.09'/%3E%3C/svg%3E"),
    url("data:image/svg+xml,%3Csvg width='200' height='200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='b'%3E%3CfeTurbulence type='turbulence' baseFrequency='0.02' numOctaves='3' seed='5' stitchTiles='stitch'/%3E%3CfeColorMatrix type='matrix' values='0 0 0 0 0.55 0 0 0 0 0.47 0 0 0 0 0.38 0 0 0 0.06 0'/%3E%3C/filter%3E%3Crect width='200' height='200' filter='url(%23b)'/%3E%3C/svg%3E");
}

/* ==============================
   Section Label
   ============================== */
.section-label { margin-bottom: 72px; }
.section-label__line {
  display: block;
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin-bottom: 20px;
}
.section-label__en {
  display: block;
  font-family: var(--font-en);
  font-size: 32px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  line-height: 1.3;
}
.section-label__jp {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.25em;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ==============================
   Header
   ============================== */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transition: background 0.4s, box-shadow 0.4s;
}
.header__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 24px 48px;
  transition: padding 0.4s;
}
.header.is-scrolled {
  background: rgba(240, 235, 227, 0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.06);
}
.header.is-scrolled .header__inner { padding-top: 16px; padding-bottom: 16px; }
.header.menu-open { backdrop-filter: none; background: transparent; box-shadow: none; }

.header__logo { display: flex; align-items: center; }
.header__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  transition: filter 0.3s, height 0.3s;
}
.header.is-scrolled .header__logo-img { height: 40px; }
/* White logo on home hero — CSS brightness/invert to make dark logo white */
body.is-home .header:not(.is-scrolled) .header__logo-img {
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.gnav__list {
  display: flex;
  align-items: center;
  gap: 32px;
}
.gnav__link {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
  transition: color 0.3s;
}
body.is-home .header:not(.is-scrolled) .gnav__link:not(.gnav__cta) { color: rgba(250,248,245,0.85); }

.gnav__link:not(.gnav__cta)::after {
  content: "";
  position: absolute;
  left: 0; bottom: 0;
  width: 100%; height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s;
}
.gnav__link:not(.gnav__cta):hover::after { transform: scaleX(1); transform-origin: left; }

.gnav__cta {
  font-family: var(--font-sans) !important;
  font-size: 10px !important;
  font-weight: 500 !important;
  letter-spacing: 0.15em !important;
  background: var(--cta);
  color: var(--white) !important;
  padding: 10px 28px;
  transition: background 0.2s;
}
.gnav__cta:hover { background: var(--cta-hover); }

.gnav__lang {
  display: flex;
  align-items: center;
  gap: 2px;
  margin-left: 4px;
}
.gnav__lang-btn {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 2px 4px;
  transition: color 0.2s;
}
.gnav__lang-btn.is-active {
  color: var(--ink);
  font-weight: 600;
}
.gnav__lang-btn:hover { color: var(--ink); }
.gnav__lang-sep {
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--ink-light);
}
body.is-home .header:not(.is-scrolled) .gnav__lang-btn { color: rgba(250,248,245,0.5); }
body.is-home .header:not(.is-scrolled) .gnav__lang-btn.is-active { color: rgba(250,248,245,0.9); }
body.is-home .header:not(.is-scrolled) .gnav__lang-sep { color: rgba(250,248,245,0.35); }

.header__lang {
  display: none;
  align-items: center;
  gap: 2px;
  margin-left: auto;
  margin-right: 10px;
  z-index: 110;
}
.header__lang .gnav__lang-btn {
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  padding: 2px 4px;
  transition: color 0.2s;
}
.header__lang .gnav__lang-btn.is-active { color: var(--ink); font-weight: 600; }
.header__lang .gnav__lang-btn:hover { color: var(--ink); }
.header__lang .gnav__lang-sep {
  font-family: var(--font-en);
  font-size: 10px;
  color: var(--ink-light);
}
body.is-home .header:not(.is-scrolled) .header__lang .gnav__lang-btn { color: #fff; text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.6); }
body.is-home .header:not(.is-scrolled) .header__lang .gnav__lang-btn.is-active { color: #fff; font-weight: 700; }
body.is-home .header:not(.is-scrolled) .header__lang .gnav__lang-sep { color: rgba(255,255,255,0.85); text-shadow: 0 1px 4px rgba(0,0,0,0.7), 0 0 2px rgba(0,0,0,0.6); }
.header.menu-open .header__lang { display: none; }

.hamburger { display: none; z-index: 110; width: 44px; height: 44px; position: relative; }
.hamburger span {
  position: absolute; left: 10px;
  width: 22px; height: 1px;
  background: var(--ink);
  transition: 0.3s;
}
body.is-home .header:not(.is-scrolled) .hamburger span { background: var(--white); }
.hamburger.is-open span { background: var(--ink) !important; }
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.is-open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.hamburger.is-open span:nth-child(2) { opacity: 0; }
.hamburger.is-open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* ==============================
   Hero — 3-split
   ============================== */
.hero {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  padding: 0;
}
.hero__grid {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 0;
}
.hero__cell { position: relative; overflow: hidden; }
.hero__cell--left { grid-row: 1 / 3; }

.hero__slide-wrap { position: relative; width: 100%; height: 100%; }
.hero__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 1.4s ease, transform 8s ease;
}
.hero__img.active {
  opacity: 1;
  transform: scale(1);
}

.hero__copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
}
.hero__copy-en {
  font-family: var(--font-en);
  font-size: clamp(14px, 2vw, 20px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: rgba(250,248,245,0.75);
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s ease 0.5s forwards;
}
.hero__copy-jp {
  font-family: var(--font-mincho);
  font-size: clamp(28px, 4.8vw, 52px);
  font-weight: 400;
  line-height: 1.7;
  letter-spacing: 0.18em;
  text-shadow: 0 2px 40px rgba(0,0,0,0.15);
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s ease 0.9s forwards;
}
.hero__cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 44px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--white);
  border: 1px solid rgba(250,248,245,0.4);
  padding: 14px 44px;
  transition: background 0.3s, border-color 0.3s;
  opacity: 0;
  transform: translateY(16px);
  animation: fadeUp 1s ease 1.3s forwards;
}
.hero__cta-btn:hover { background: rgba(250,248,245,0.1); border-color: rgba(250,248,245,0.7); }
.hero__cta-btn .arrow { font-size: 14px; transition: transform 0.2s; }
.hero__cta-btn:hover .arrow { transform: translateX(4px); }

@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll {
  position: absolute;
  right: 40px;
  bottom: 40px;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(250,248,245,0.5);
  font-family: var(--font-en);
  font-size: 9px;
  letter-spacing: 0.25em;
  writing-mode: vertical-rl;
}
.hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: rgba(250,248,245,0.4);
  animation: scrollLine 2s ease-in-out infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  45% { transform: scaleY(1); transform-origin: top; }
  55% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ==============================
   Philosophy
   ============================== */
.philosophy {
  background: transparent;
  position: relative;
}
.philosophy__content {
  display: flex;
  gap: 100px;
  align-items: flex-start;
}
.vertical-text {
  writing-mode: vertical-rl;
  font-family: var(--font-mincho);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.18em;
  color: var(--ink);
}
.philosophy__body { padding-top: 16px; }
.philosophy__body p {
  font-size: 14px;
  color: var(--ink);
  margin-bottom: 28px;
  line-height: 2.5;
}
.philosophy__body p:last-child { margin-bottom: 0; }

/* ==============================
   Reason
   ============================== */
.reason {
  background: var(--bg-warm);
  position: relative;
}

.reason__item {
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 140px;
  position: relative;
}
.reason__item:last-child { margin-bottom: 0; }
.reason__item--reverse { grid-template-columns: 1fr 380px; }
.reason__item--reverse .reason__text-side { order: 2; }
.reason__item--reverse .reason__img-side { order: 1; }

.reason__num-bg {
  position: absolute;
  top: -100px;
  left: -20px;
  font-family: var(--font-en);
  font-size: clamp(120px, 14vw, 180px);
  font-weight: 400;
  color: var(--ink);
  opacity: 0.06;
  line-height: 1;
  pointer-events: none;
  z-index: 1;
}
.reason__text-side { position: relative; z-index: 2; }
.reason__img-side { position: relative; z-index: 0; }
.reason__item--reverse .reason__num-bg {
  left: auto;
  right: 0;
}

.reason__num {
  display: none;
}
.reason__line-deco {
  display: none;
}
.reason__title { margin-bottom: 32px; position: relative; z-index: 1; }
.reason__title .vertical-text {
  font-size: clamp(17px, 1.8vw, 22px);
  line-height: 2;
  height: 240px;
}
.reason__desc {
  font-size: 13px;
  color: var(--ink);
  line-height: 2.3;
  max-width: 320px;
  position: relative;
  z-index: 1;
}

.reason__slider { position: relative; }
.reason__slider-track {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.reason__slider-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease;
}
.reason__slider-img.active { opacity: 1; }

.reason__slider-nav {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 16px;
}
.reason__slider-btn {
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  transition: border-color 0.2s;
}
.reason__slider-btn:hover { border-color: var(--ink); }
.reason__slider-btn svg { width: 14px; height: 14px; }
.reason__slider-counter {
  font-family: var(--font-en);
  font-size: 12px;
  letter-spacing: 0.15em;
  color: var(--ink);
  font-weight: 400;
}
.reason__slider-counter .divider { margin: 0 4px; color: var(--ink-soft); }

/* ==============================
   Works — Mosaic (top page)
   ============================== */
.works { background: transparent; }

body.is-home .works__grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 20px;
}
body.is-home .works__grid .work-card:nth-child(1) { grid-column: span 7; }
body.is-home .works__grid .work-card:nth-child(2) { grid-column: span 5; margin-top: 40px; }
body.is-home .works__grid .work-card:nth-child(3) { grid-column: span 5; }
body.is-home .works__grid .work-card:nth-child(4) { grid-column: span 7; }
body.is-home .works__grid .work-card:nth-child(5) { grid-column: span 4; }
body.is-home .works__grid .work-card:nth-child(6) { grid-column: span 8; }
body.is-home .works__grid .work-card:nth-child(1) .work-card__thumb,
body.is-home .works__grid .work-card:nth-child(4) .work-card__thumb,
body.is-home .works__grid .work-card:nth-child(6) .work-card__thumb {
  aspect-ratio: 16 / 10;
}
body.is-home .works__grid .work-card:nth-child(2) .work-card__thumb,
body.is-home .works__grid .work-card:nth-child(5) .work-card__thumb {
  aspect-ratio: 3 / 4;
}

/* Works — Uniform grid (works.html) */
.works__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.work-card {
  overflow: hidden;
  transition: transform 0.4s;
}
.work-card a { display: block; }
.work-card:hover { transform: translateY(-4px); }
.work-card__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}
.work-card__thumb img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.work-card:hover .work-card__thumb img { transform: scale(1.04); }
.work-card__cat {
  position: absolute;
  bottom: 0; left: 0;
  font-family: var(--font-en);
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  background: var(--white);
  padding: 5px 14px;
  color: var(--ink-soft);
}
.work-card__body { padding: 16px 4px 8px; }
.work-card__title {
  font-family: var(--font-mincho);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.8;
  margin-bottom: 4px;
}
.work-card__meta {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.05em;
}

.works__more { text-align: center; margin-top: 64px; }

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 400;
  letter-spacing: 0.18em;
  color: var(--ink);
  padding-bottom: 6px;
  border-bottom: 1px solid var(--ink);
  transition: color 0.2s, border-color 0.2s;
}
.btn-line:hover { color: var(--accent); border-color: var(--accent); }
.btn-line .arrow { font-size: 14px; transition: transform 0.2s; }
.btn-line:hover .arrow { transform: translateX(4px); }

/* ==============================
   Message Section
   ============================== */
.message-section {
  position: relative;
  padding: 160px 0;
  overflow: hidden;
  min-height: 560px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.message-section__images {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.message-section__img {
  position: absolute;
  overflow: hidden;
}
.message-section__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.message-section__img--1 { top: 0; left: 0; width: 24%; height: 55%; }
.message-section__img--2 { top: 0; right: 0; width: 20%; height: 50%; }
.message-section__img--3 { bottom: 0; left: 0; width: 22%; height: 45%; }
.message-section__img--4 { bottom: 0; right: 0; width: 26%; height: 48%; }
.message-section__img--5 { top: 20%; left: 26%; width: 12%; height: 30%; }
.message-section__img--6 { bottom: 10%; right: 28%; width: 10%; height: 25%; }

.message-section__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 580px;
  padding: 56px 48px;
  background: rgba(240, 235, 227, 0.88);
  backdrop-filter: blur(4px);
}
.message-section__en {
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 24px;
}
.message-section__heading {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.18em;
  line-height: 2;
  margin-bottom: 32px;
}
.message-section__body {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.6;
}

/* ==============================
   News (text list)
   ============================== */
.news { background: var(--bg-warm); }
.news__list { max-width: 800px; }
.news__item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.news__item:first-child { border-top: 1px solid var(--line); }
.news__date {
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--ink-light);
  flex-shrink: 0;
  min-width: 80px;
}
.news__cat {
  font-size: 10px;
  letter-spacing: 0.1em;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 2px 10px;
  flex-shrink: 0;
  min-width: 110px;
  text-align: center;
  display: inline-block;
  box-sizing: border-box;
}
.news__title {
  font-size: 13px;
  line-height: 1.8;
  transition: color 0.2s;
}
.news__title:hover { color: var(--accent); }
.news__more { margin-top: 48px; }

/* News Article Detail */
.news-article__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 24px;
}
.news-article__title {
  font-family: var(--font-mincho);
  font-size: clamp(18px, 3vw, 24px);
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.08em;
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.news-article__body {
  font-size: 13px;
  line-height: 2.2;
  max-width: 780px;
}
.news-article__body p { margin-bottom: 24px; }
.news-article__body strong { font-weight: 500; }
.news-article__back {
  margin-top: 64px;
  text-align: center;
}

/* ==============================
   Link Banners (Company + Recruit)
   ============================== */
.link-banners {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.link-banner {
  position: relative;
  height: clamp(260px, 30vw, 360px);
  overflow: hidden;
}
.link-banner img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s;
}
.link-banner:hover img { transform: scale(1.04); }
.link-banner__overlay {
  position: absolute;
  inset: 0;
  background: rgba(58, 54, 47, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--white);
  transition: background 0.3s;
}
.link-banner:hover .link-banner__overlay { background: rgba(58, 54, 47, 0.45); }
.link-banner__en {
  font-family: var(--font-en);
  font-size: clamp(11px, 1.4vw, 14px);
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  opacity: 0.7;
  margin-bottom: 10px;
}
.link-banner__title {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 2.6vw, 28px);
  font-weight: 400;
  letter-spacing: 0.22em;
}
.link-banner__arrow {
  margin-top: 20px;
  font-family: var(--font-en);
  font-size: 11px;
  letter-spacing: 0.15em;
  opacity: 0.5;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: opacity 0.2s;
}
.link-banner:hover .link-banner__arrow { opacity: 0.9; }

/* ==============================
   CTA Band — redesigned
   ============================== */
.cta-band {
  position: relative;
  padding: 100px 24px;
  overflow: hidden;
  background: var(--bg-cool);
}
.cta-band__inner {
  position: relative;
  z-index: 1;
  max-width: 1100px;
  margin: 0 auto;
}
.cta-band__top {
  text-align: center;
  margin-bottom: 56px;
}
.cta-band__en {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  margin-bottom: 14px;
}
.cta-band__heading {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 3.2vw, 32px);
  font-weight: 400;
  letter-spacing: 0.2em;
  color: var(--ink);
  margin-bottom: 12px;
}
.cta-band__sub {
  font-size: 12px;
  color: var(--ink-soft);
  letter-spacing: 0.08em;
}
.cta-band__cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.cta-band__col {
  background: var(--white);
  padding: 48px 32px;
  text-align: center;
}
.cta-band__col-label {
  font-size: 11px;
  color: var(--ink-soft);
  letter-spacing: 0.12em;
  margin-bottom: 20px;
}
.cta-band__col .btn-primary {
  background: var(--cta);
  color: var(--white);
}
.cta-band__phone {
  font-family: var(--font-mincho);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 8px;
}
.cta-band__phone-icon { flex-shrink: 0; opacity: 0.6; }
.cta-band__phone-note {
  font-size: 10px;
  color: var(--ink-light);
  letter-spacing: 0.08em;
}
.cta-band__line {
  width: 40px;
  height: 1px;
  background: var(--line);
  margin: 0 auto 20px;
}

/* ==============================
   Footer
   ============================== */
.footer {
  background: var(--white);
  color: var(--ink);
  padding: 0;
  position: relative;
}
.footer__inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 48px;
}
.footer__top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 60px;
  padding: 80px 0 60px;
  border-top: 1px solid var(--line);
}
.footer__logo-img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer__addr { font-size: 11px; margin-top: 20px; line-height: 2.2; color: var(--ink-soft); }
.footer__sns {
  display: flex;
  gap: 18px;
  margin-top: 20px;
}
.footer__sns a {
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer__sns a:hover { color: var(--ink); }
.footer__sns svg { display: block; }
.footer__nav {
  display: flex;
  gap: 56px;
}
.footer__nav-col {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer__nav a {
  font-family: var(--font-sans);
  font-size: 12px;
  letter-spacing: 0.08em;
  color: var(--ink-soft);
  transition: color 0.2s;
}
.footer__nav a:hover { color: var(--ink); }
.footer__bottom {
  border-top: 1px solid var(--line);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__copy {
  font-size: 9px;
  color: var(--ink-light);
  letter-spacing: 0.1em;
}
.footer__note {
  font-size: 9px;
  color: var(--ink-light);
  opacity: 0.7;
}

/* ==============================
   Float CTA + SP Bar
   ============================== */
.float-cta {
  position: fixed;
  right: 32px;
  bottom: 32px;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--cta);
  color: var(--white);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding: 16px 28px;
  border: 1px solid rgba(250,248,245,0.2);
  box-shadow: 0 4px 24px rgba(58,54,47,0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.4s, transform 0.4s, background 0.2s, border-color 0.2s, box-shadow 0.2s;
}
.float-cta.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.float-cta:hover {
  background: var(--cta-hover);
  border-color: rgba(250,248,245,0.4);
  box-shadow: 0 6px 32px rgba(58,54,47,0.35);
}
.float-cta__icon { flex-shrink: 0; opacity: 0.7; }

.sp-bar {
  display: none;
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 95;
  transform: translateY(100%);
  transition: transform 0.35s ease;
}
.sp-bar.is-visible { transform: translateY(0); }
.sp-bar__btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 16px 8px;
}
.sp-bar__btn svg { flex-shrink: 0; }
.sp-bar__btn--tel {
  background: var(--white);
  color: var(--ink);
  border-top: 1px solid var(--line);
}
.sp-bar__btn--form {
  background: var(--cta);
  color: var(--white);
}

/* ==============================
   Hover circle animation for links
   ============================== */
.btn-line {
  position: relative;
  overflow: visible;
}
.btn-line .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 13px;
  transition: border-color 0.3s, background 0.3s, color 0.3s, transform 0.3s;
}
.btn-line:hover .arrow {
  border-color: var(--accent);
  background: var(--accent);
  color: var(--white);
  transform: none;
}
.hero__cta-btn .arrow,
.btn-primary .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 12px;
  opacity: 0.6;
  transition: opacity 0.3s, background 0.3s, border-color 0.3s, transform 0.3s;
}
.hero__cta-btn:hover .arrow,
.btn-primary:hover .arrow {
  opacity: 1;
  background: rgba(255,255,255,0.15);
  transform: none;
}
.form__submit-btn .arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border: 1px solid rgba(250,248,245,0.4);
  border-radius: 50%;
  font-size: 11px;
  transition: background 0.3s;
}
.form__submit-btn:hover .arrow { background: rgba(255,255,255,0.15); }

/* Hero copy — character stagger */
.hero__copy-jp .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(20px);
  animation: charUp 0.6s ease forwards;
}
@keyframes charUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ==============================
   Decorative elements
   ============================== */
/* (removed: section-label dot) */
.philosophy::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, var(--line), transparent);
}
.reason::before {
  content: "";
  position: absolute;
  top: 0;
  right: 48px;
  width: 80px;
  height: 80px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: 0.3;
}
/* (removed: message section top/bottom accent lines) */
.cta-band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 48px;
  background: var(--accent);
  opacity: 0.3;
}
/* (removed: footer top line) */
.page-header__en::after {
  content: "";
  display: block;
  width: 30px;
  height: 1px;
  background: var(--accent);
  margin-top: 12px;
  opacity: 0.6;
}
.link-banner__overlay::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(250,248,245,0.12);
  pointer-events: none;
  transition: inset 0.4s;
}
.link-banner:hover .link-banner__overlay::before { inset: 12px; }
.work-card__body::before {
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background: var(--accent-light);
  margin-bottom: 12px;
  opacity: 0.5;
}
.reason__slider-track::after {
  content: "";
  position: absolute;
  bottom: -6px;
  right: -6px;
  width: 40px;
  height: 40px;
  border-right: 1px solid var(--accent-light);
  border-bottom: 1px solid var(--accent-light);
  opacity: 0.4;
  pointer-events: none;
}
.hero__copy::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 200px;
  height: 200px;
  border: 1px solid rgba(250,248,245,0.08);
  border-radius: 50%;
  pointer-events: none;
}
/* White dot orbiting the hero circle */
.hero__copy::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  margin: -3px 0 0 -3px;
  border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 8px 2px rgba(250,248,245,0.6);
  pointer-events: none;
  z-index: 1;
  animation: heroOrbit 9s linear infinite;
}
@keyframes heroOrbit {
  from { transform: rotate(0deg) translateY(-100px); }
  to   { transform: rotate(360deg) translateY(-100px); }
}

/* ==============================
   Flowing curve decorations
   ============================== */
.flow-lines {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  overflow: hidden;
  z-index: 0;
}
.flow-lines svg {
  position: absolute;
  width: 120%;
  left: -10%;
}
.flow-lines path {
  fill: none;
  stroke: var(--line);
  stroke-width: 0.8;
  opacity: 0.35;
}
.philosophy { position: relative; }
.philosophy .flow-lines svg { top: -20%; height: 140%; }
.reason { position: relative; }
.reason .flow-lines svg { top: -10%; height: 120%; }
.message-section { position: relative; }
.message-section .flow-lines svg { top: 0; height: 100%; }
.cta-band { position: relative; }
.cta-band .flow-lines svg { top: -30%; height: 160%; }

body:not(.is-home) .page-header { position: relative; }
body:not(.is-home) .page-header .flow-lines svg { top: 0; height: 100%; }

/* ==============================
   Scroll reveal
   ============================== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.is-inview {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  body { opacity: 1; }
  .reveal { opacity: 1; transform: none; transition: none; }
  .hero__img { transition: opacity 0.3s; transform: none !important; }
  .hero__copy-en, .hero__copy-jp, .hero__cta-btn { animation: none; opacity: 1; transform: none; }
  .hero__copy::after { animation: none; display: none; }
  .hero__scroll-line { animation: none; }
}

/* ==============================
   Subpage — Page header with image
   ============================== */
.page-header {
  position: relative;
  padding: 180px 0 80px;
  overflow: hidden;
}
.page-header--img {
  background-size: cover;
  background-position: center;
}
.page-header--img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(240, 235, 227, 0.82);
  backdrop-filter: blur(2px);
}
.page-header .section-inner { position: relative; z-index: 1; }
.page-header__en {
  font-family: var(--font-en);
  font-size: 42px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--ink);
  margin-bottom: 6px;
}
.page-header__jp {
  font-size: 13px;
  letter-spacing: 0.25em;
  color: var(--ink);
  font-weight: 500;
}

/* Contact form (subpage) */
.contact-section { padding: 100px 0; }
.form {
  max-width: 560px;
  margin: 0 auto;
}
.form__group { margin-bottom: 28px; }
.form__label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.form__req { font-size: 9px; color: var(--accent); margin-left: 8px; }
.form__input {
  width: 100%;
  font-family: inherit;
  font-size: 14px;
  padding: 12px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  transition: border-color 0.2s;
  letter-spacing: 0.05em;
}
.form__input:focus {
  outline: none;
  border-color: var(--accent);
}
.form__textarea { min-height: 120px; resize: vertical; }
.form__submit { text-align: center; margin-top: 40px; }
.form__submit-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--cta);
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 16px 56px;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}
.form__submit-btn:hover { background: var(--cta-hover); }
.form__submit-btn .arrow { font-size: 14px; }
.form__privacy {
  font-size: 10px;
  color: var(--ink-light);
  margin-top: 14px;
  text-align: center;
}
.form__thanks {
  display: none;
  text-align: center;
  padding: 60px 0;
  font-family: var(--font-mincho);
  font-size: 18px;
  line-height: 2;
}
.form__thanks.is-visible { display: block; }
.form__checkboxes,
.form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 8px;
}
.form__checkbox,
.form__radio {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--ink);
  cursor: pointer;
  letter-spacing: 0.04em;
}
.form__checkbox input,
.form__radio input {
  accent-color: var(--cta);
  width: 16px;
  height: 16px;
  cursor: pointer;
}

/* Subpage works grid */
.works-page .works__grid { margin-bottom: 48px; }
.works-page .works__filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 48px;
}
.works__filter-btn {
  font-family: var(--font-en);
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 8px 20px;
  border: 1px solid var(--line);
  color: var(--ink-soft);
  transition: 0.2s;
}
.works__filter-btn:hover { border-color: var(--ink); color: var(--ink); }
.works__filter-btn.active {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* Recruit page */
.recruit-hero {
  position: relative;
  height: 50vh;
  min-height: 340px;
  overflow: hidden;
}
.recruit-hero img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.recruit-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--white);
}
.recruit-section { padding: 100px 0; }
.recruit-section h2 {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.recruit-section p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.4;
  margin-bottom: 20px;
}
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
}
.recruit-table tr:first-child th,
.recruit-table tr:first-child td { border-top: 1px solid var(--line); }
.recruit-table th,
.recruit-table td {
  text-align: left;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
  vertical-align: top;
}
.recruit-table th {
  font-weight: 500;
  color: var(--ink);
  width: 160px;
  background: var(--bg-warm);
}
.recruit-table td { color: var(--ink-soft); }

/* News subpage list */
.news-page .news__list { max-width: 100%; }

/* ==============================
   Company page
   ============================== */
.company-section { padding: 100px 0; }
.company-section h2 {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.company-table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 80px;
}
.company-table tr:first-child th,
.company-table tr:first-child td { border-top: 1px solid var(--line); }
.company-table th,
.company-table td {
  text-align: left;
  padding: 18px 24px;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.8;
  vertical-align: top;
}
.company-table th {
  font-weight: 500;
  color: var(--ink);
  width: 180px;
  background: var(--bg-warm);
}
.company-table td { color: var(--ink-soft); }

.ceo-message {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
  margin-bottom: 80px;
}
.ceo-message__img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bg-warm);
}
.ceo-message__img img {
  width: 100%; height: 100%; object-fit: cover;
}
.ceo-message__body h3 {
  font-family: var(--font-mincho);
  font-size: 18px;
  font-weight: 400;
  letter-spacing: 0.12em;
  margin-bottom: 8px;
}
.ceo-message__name {
  font-size: 12px;
  color: var(--ink-soft);
  margin-bottom: 32px;
}
.ceo-message__body p {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.4;
  margin-bottom: 20px;
}

.access-section {
  margin-top: 80px;
}
.access-section h2 {
  font-family: var(--font-mincho);
  font-size: 22px;
  font-weight: 400;
  letter-spacing: 0.15em;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.access-map {
  width: 100%;
  height: 360px;
  background: var(--bg-warm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-light);
  font-size: 12px;
  margin-bottom: 24px;
}
.access-info {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.4;
}

/* ==============================
   Work Detail page
   ============================== */
.work-detail { padding: 100px 0; }
.work-detail__header {
  margin-bottom: 56px;
}
.work-detail__cat {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid var(--accent);
  padding: 3px 12px;
  margin-bottom: 16px;
}
.work-detail__title {
  font-family: var(--font-mincho);
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 400;
  letter-spacing: 0.12em;
  line-height: 1.7;
  margin-bottom: 20px;
}
.work-detail__specs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 32px;
  font-size: 12px;
  color: var(--ink-soft);
}
.work-detail__specs dt {
  font-weight: 500;
  color: var(--ink);
}
.work-detail__specs dd { margin-bottom: 0; }
.work-detail__spec-item {
  display: flex;
  gap: 8px;
}
.work-detail__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-bottom: 56px;
}
.work-detail__gallery-main {
  grid-column: 1 / -1;
  aspect-ratio: 16 / 9;
  overflow: hidden;
}
.work-detail__gallery-main img,
.work-detail__gallery-sub img {
  width: 100%; height: 100%; object-fit: cover;
}
.work-detail__gallery-sub {
  aspect-ratio: 4 / 3;
  overflow: hidden;
}
.work-detail__desc {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 2.6;
  margin-bottom: 56px;
  max-width: 720px;
}
.work-detail__back {
  text-align: center;
  padding-top: 40px;
  border-top: 1px solid var(--line);
}

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--charcoal);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  padding: 16px 40px;
  transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-primary .arrow { font-size: 14px; transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(4px); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.08em;
  padding: 14px 40px;
  border: 1px solid rgba(250,248,245,0.3);
  color: var(--white);
  transition: border-color 0.2s;
}
.btn-ghost:hover { border-color: rgba(250,248,245,0.6); }

/* ==============================
   Responsive
   ============================== */
@media (max-width: 1024px) {
  .reason__item { grid-template-columns: 300px 1fr; gap: 40px; }
  .reason__item--reverse { grid-template-columns: 1fr 300px; }
  body.is-home .works__grid .work-card:nth-child(1) { grid-column: span 7; }
  body.is-home .works__grid .work-card:nth-child(2) { grid-column: span 5; margin-top: 20px; }
  body.is-home .works__grid .work-card:nth-child(3) { grid-column: span 5; }
  body.is-home .works__grid .work-card:nth-child(4) { grid-column: span 7; margin-top: 0; }
  body.is-home .works__grid .work-card:nth-child(5) { grid-column: span 6; }
  body.is-home .works__grid .work-card:nth-child(6) { grid-column: span 6; margin-top: 0; }
  .works__grid { grid-template-columns: repeat(2, 1fr); }
  .ceo-message { grid-template-columns: 1fr 1.2fr; gap: 40px; }
}

@media (max-width: 920px) {
  .header__inner { padding-left: 24px; padding-right: 24px; }
  .header__logo-img { height: 44px; }
  .header.is-scrolled .header__logo-img { height: 38px; }
  .header__lang { display: flex; }
  .hamburger { display: block; }
  .gnav__lang { display: flex; }
  .gnav {
    position: fixed;
    inset: 0;
    z-index: 105;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.28s ease;
    will-change: opacity;
  }
  .gnav.is-open { opacity: 1; pointer-events: auto; }
  .gnav__list {
    flex-direction: column;
    gap: 6px;
    text-align: center;
  }
  .gnav__link {
    font-size: 13px !important;
    letter-spacing: 0.25em !important;
    padding: 10px 0;
    color: var(--ink) !important;
  }
  .gnav__lang {
    justify-content: center;
    margin-top: 24px;
    margin-bottom: 24px;
    gap: 6px;
  }
  .gnav__lang .gnav__lang-btn {
    font-size: 13px;
    color: var(--ink-soft) !important;
    padding: 4px 8px;
  }
  .gnav__lang .gnav__lang-btn.is-active { color: var(--ink) !important; }
  .gnav__cta {
    margin-top: 0;
    padding: 14px 44px !important;
    color: var(--white) !important;
  }
}

@media (max-width: 768px) {
  .section-inner { padding: 0 24px; }
  section { padding: 80px 0; }
  .section-label { margin-bottom: 48px; }
  .section-label__en { font-size: 26px; }

  .hero__grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
  }
  .hero__scroll { right: 16px; bottom: 20px; }

  .philosophy__content { flex-direction: column; gap: 32px; }
  .philosophy__heading { align-self: flex-start; }
  .vertical-text { font-size: 18px; }

  .reason__item,
  .reason__item--reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .reason__item--reverse .reason__text-side { order: 0; }
  .reason__item--reverse .reason__img-side { order: 0; }
  .reason__item { margin-bottom: 80px; }
  .reason__desc { max-width: none; }
  .reason__title .vertical-text { height: 180px; font-size: 17px; }
  .reason__num-bg { font-size: 80px; top: -50px; left: -8px; opacity: 0.05; }
  .reason__item--reverse .reason__num-bg { left: -8px; right: auto; }
  .reason__num { display: none; }
  .reason__line-deco { display: none; }

  body.is-home .works__grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  body.is-home .works__grid .work-card { grid-column: 1 !important; margin-top: 0 !important; }
  body.is-home .works__grid .work-card .work-card__thumb { aspect-ratio: 16 / 10 !important; }
  .works__grid { grid-template-columns: 1fr; }
  .works .section-label { margin-bottom: 32px; }

  .message-section {
    min-height: 400px;
    padding: 100px 0;
    background-image: url('../images/new-living.png');
    background-size: cover;
    background-position: center;
  }
  .message-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(58, 54, 47, 0.6);
  }
  .message-section__images { display: none; }
  .message-section__content {
    background: transparent;
    backdrop-filter: none;
    color: var(--white);
  }
  .message-section__en { color: rgba(250,248,245,0.7); }
  .message-section__heading { color: var(--white); }
  .message-section__body { color: rgba(250,248,245,0.92); text-align: left; }

  .link-banners { grid-template-columns: 1fr; }
  .link-banner { height: 200px; }

  .cta-band__cols { grid-template-columns: 1fr; }

  .news__item { flex-wrap: wrap; gap: 10px 12px; align-items: center; }
  .news__date { min-width: 0; }
  .news__title { flex-basis: 100%; width: 100%; }

  .float-cta { display: none; }
  .sp-bar { display: flex; }
  .footer__inner { padding: 0 24px; }
  .footer__top { flex-direction: column; gap: 40px; padding: 48px 0 40px; }
  .footer__nav { gap: 40px; }
  .footer__bottom { flex-direction: column; gap: 6px; padding: 20px 0 140px; text-align: center; }

  .page-header { padding: 140px 0 60px; }
  .page-header .section-inner { padding: 0 24px; }

  .recruit-table th { width: 100px; }

  .ceo-message { grid-template-columns: 1fr; gap: 32px; }
  .ceo-message__img { max-width: 280px; }

  .work-detail__gallery { grid-template-columns: 1fr; }
  .work-detail__gallery-main { aspect-ratio: 4 / 3; }

  /* Mobile CTA band text left-align */
  .cta-band__sub { text-align: left; }

  /* Mobile company/recruit table — clean stacked definition list */
  .company-table th,
  .company-table td,
  .recruit-table th,
  .recruit-table td {
    display: block;
    width: 100%;
    background: transparent;
    border-top: none;
  }
  .company-table th,
  .recruit-table th {
    padding: 18px 4px 6px;
    border-bottom: none;
    font-size: 11px;
    letter-spacing: 0.12em;
    color: var(--accent);
  }
  .company-table td,
  .recruit-table td {
    padding: 0 4px 18px;
    border-bottom: 1px solid var(--line);
  }
  .company-table tr:first-child th,
  .recruit-table tr:first-child th { border-top: none; }
  .company-table tr:first-child td,
  .recruit-table tr:first-child td { border-top: none; }

  /* Mobile work card — image left, title right */
  .work-card a { display: grid; grid-template-columns: 140px 1fr; gap: 16px; align-items: start; }
  .work-card__thumb { aspect-ratio: 4 / 3 !important; }
  .work-card__body { padding: 4px 0 0; }
  .work-card__body::before { display: none; }

  /* Hide decorative elements on mobile */
  .philosophy::after,
  .reason::before,
  .hero__copy::before, .hero__copy::after { display: none; }
  .reason__slider-track::after { display: none; }
  .reason .flow-lines { display: none; }
  .flow-lines path { stroke-width: 0.5; opacity: 0.2; }
}

@media (max-width: 480px) {
  .hero__grid {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr 1fr;
  }
  .hero__cell--left { grid-row: auto; }
}
