@charset "UTF-8";
/* ==========================================================
   株式会社Curiosity  Corporate Site
   配色：ディープグリーン × フォレストグリーン × アイボリー × シャンパンゴールド
   ゴールドは「細いライン・英字・ボタンの縁取り」のみに使用
   ========================================================== */

:root {
  --deep: #0f2a22;        /* ベース：ディープグリーン */
  --forest: #1b4332;      /* サブ：フォレストグリーン */
  --ivory: #f4f1ea;       /* 明るい背景 */
  --gold: #c6a969;        /* アクセント */
  --gold-line: rgba(198, 169, 105, .5);

  /* 写真に重ねる深緑のオーバーレイ */
  --photo-tint: rgba(15, 42, 34, .32);

  /* セクションごとに切り替わる文字色（初期値＝緑背景用） */
  --fg: #f4f1ea;
  --fg-80: rgba(244, 241, 234, .82);
  --fg-60: rgba(244, 241, 234, .62);
  --fg-40: rgba(244, 241, 234, .42);
  --line: rgba(244, 241, 234, .14);

  --f-en: "Cormorant Garamond", "Times New Roman", serif;
  --f-mincho: "Shippori Mincho", "Yu Mincho", "Hiragino Mincho ProN", serif;
  --f-body: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;

  --header-h: 96px;
  --container: 1240px;
  --gutter: clamp(24px, 5vw, 64px);
  --section-y: clamp(112px, 16vw, 220px);
  --ease: cubic-bezier(.65, 0, .35, 1);
  --ease-out: cubic-bezier(.16, 1, .3, 1);
}

/* ---------- Section themes ---------- */
.theme-deep { background: var(--deep); }
.theme-forest { background: var(--forest); }
.theme-ivory {
  background: var(--ivory);
  --fg: #0f2a22;
  --fg-80: rgba(15, 42, 34, .86);
  --fg-60: rgba(15, 42, 34, .68);
  --fg-40: rgba(15, 42, 34, .48);
  --line: rgba(15, 42, 34, .16);
  color: var(--fg-80);
}

/* ---------- Base ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--deep);
  color: var(--fg-80);
  font-family: var(--f-body);
  font-weight: 300;
  font-size: 15px;
  line-height: 2.2;
  letter-spacing: .1em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4, p, dl, dd, dt, figure { margin: 0; }
button { font: inherit; color: inherit; background: none; border: 0; padding: 0; cursor: pointer; }
::selection { background: var(--gold); color: var(--deep); }
:focus-visible { outline: 1px solid var(--gold); outline-offset: 4px; }
[id] { scroll-margin-top: var(--header-h); }

.container { width: min(100% - var(--gutter) * 2, var(--container)); margin-inline: auto; }
.container--narrow { max-width: 960px; }
.section { position: relative; padding: var(--section-y) 0; }
.sp-br { display: none; }

/* Lenis */
html.lenis, html.lenis body { height: auto; }
.lenis.lenis-smooth { scroll-behavior: auto !important; }
.lenis.lenis-stopped { overflow: hidden; }

/* ---------- Heading (EN large + JA small) ---------- */
.heading { margin-bottom: clamp(64px, 9vw, 120px); font-weight: inherit; }
.heading__en {
  display: block;
  font-family: var(--f-en); font-weight: 300;
  font-size: clamp(56px, 10vw, 148px); line-height: .95; letter-spacing: .04em;
  color: var(--fg);
}
.heading__ja {
  display: flex; align-items: center; gap: 24px; margin-top: 28px;
  font-family: var(--f-mincho); font-weight: 500; font-size: 14px; letter-spacing: .32em; color: var(--fg-60); line-height: 1.6;
}
.heading__line { display: block; flex-shrink: 0; width: 72px; height: 1px; background: var(--gold); transform-origin: left center; }
.heading--center { text-align: center; }
.heading--center .heading__ja { justify-content: center; }
.heading--center .heading__line { transform-origin: right center; }
.heading--center .heading__line--r { transform-origin: left center; }
.heading--sm { margin-bottom: clamp(40px, 5vw, 64px); }
.heading--sm .heading__en { font-size: clamp(48px, 7vw, 104px); }
.heading--long .heading__en { font-size: clamp(38px, 8.4vw, 104px); }

/* split text */
.char { display: inline-block; overflow: hidden; vertical-align: top; padding-bottom: .12em; margin-bottom: -.12em; }
.char__in { display: inline-block; will-change: transform; }
.word { display: inline-block; white-space: nowrap; }

/* ---------- Typography ---------- */
.eyebrow { font-family: var(--f-en); font-size: 14px; letter-spacing: .36em; color: var(--gold); text-transform: uppercase; }
.title-mincho {
  font-family: var(--f-mincho); font-weight: 500; color: var(--fg);
  font-size: clamp(24px, 3.2vw, 42px); line-height: 1.8; letter-spacing: .14em;
}
.text p + p { margin-top: 1.8em; }
.text { color: var(--fg-60); }
.lead { font-family: var(--f-mincho); font-size: clamp(16px, 1.6vw, 21px); line-height: 2.4; letter-spacing: .14em; color: var(--fg-80); }

/* ---------- Buttons（ゴールドは縁取りのみ） ---------- */
.btn-wrap { margin-top: clamp(48px, 6vw, 72px); }
.btn {
  position: relative; display: inline-flex; align-items: center; justify-content: space-between; gap: 40px;
  min-width: 280px; padding: 24px 32px 24px 40px;
  border: 1px solid var(--line); color: var(--fg);
  font-family: var(--f-mincho); font-size: 14px; letter-spacing: .24em; line-height: 1.4;
  overflow: hidden; transition: border-color .5s var(--ease);
}
.btn::before, .btn::after {
  content: ""; position: absolute; left: 0; width: 100%; height: 1px; background: var(--gold);
  transition: transform .7s var(--ease);
}
.btn::before { top: -1px; transform: translateX(-101%); }
.btn::after { bottom: -1px; transform: translateX(101%); transition-delay: .08s; }
.btn__arrow { position: relative; flex-shrink: 0; width: 36px; height: 1px; background: currentColor; transition: width .5s var(--ease); }
.btn__arrow::after {
  content: ""; position: absolute; right: 0; top: -3px; width: 7px; height: 7px;
  border-top: 1px solid currentColor; border-right: 1px solid currentColor; transform: rotate(45deg);
}
.btn__label, .btn__arrow { pointer-events: none; }
@media (hover: hover) {
  .btn:hover { border-color: var(--gold-line); }
  .btn:hover::before, .btn:hover::after { transform: translateX(0); }
  .btn:hover .btn__arrow { width: 48px; }
}
.btn--gold { border-color: var(--gold-line); }

.link-line { position: relative; display: inline-flex; align-items: center; gap: 16px; font-family: var(--f-en); font-size: 15px; letter-spacing: .24em; color: var(--gold); }
.link-line::after { content: ""; width: 40px; height: 1px; background: currentColor; transition: width .5s var(--ease); }
@media (hover: hover) { a:hover .link-line::after, .link-line:hover::after { width: 64px; } }

/* ==========================================================
   Opening / Page transition
   ========================================================== */
.opening {
  position: fixed; inset: 0; z-index: 1000; display: none;
  align-items: center; justify-content: center; flex-direction: column; gap: 24px;
  background: var(--deep);
}
.is-opening .opening { display: flex; }
.opening__logo { font-family: var(--f-en); font-weight: 400; font-size: clamp(44px, 7vw, 88px); letter-spacing: .12em; color: var(--gold); opacity: 0; line-height: 1; }
.opening__line { width: 120px; height: 1px; background: var(--gold); transform: scaleX(0); }

.page-fade {
  position: fixed; inset: 0; z-index: 990; background: var(--deep);
  opacity: 0; pointer-events: none; transition: opacity .6s var(--ease);
}
.is-anim .page-fade { opacity: 1; }
.is-anim.is-loaded .page-fade { opacity: 0; }
.is-anim.is-leaving .page-fade { opacity: 1; pointer-events: auto; transition-duration: .45s; }

/* Pre-animation states（GSAPが読み込めない場合は自動で解除） */
.is-anim [data-split]:not(.is-split) { visibility: hidden; }
.is-anim [data-fade] { opacity: 0; }
.is-anim .heading__line { transform: scaleX(0); }
.is-anim .reveal { clip-path: inset(0 50% 0 50%); }

/* ==========================================================
   Header / Menu
   ========================================================== */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 100; height: var(--header-h);
  border-bottom: 1px solid transparent; color: var(--ivory);
  transition: transform .6s var(--ease), background .5s var(--ease), border-color .5s var(--ease);
}
.header.is-scrolled {
  background: rgba(15, 42, 34, .62);
  -webkit-backdrop-filter: blur(16px); backdrop-filter: blur(16px);
  border-bottom-color: rgba(244, 241, 234, .12);
}
.header.is-hidden { transform: translateY(-100%); }
.header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; padding: 0 var(--gutter); }

.logo { display: inline-flex; align-items: baseline; gap: 8px; font-family: var(--f-en); font-weight: 400; font-size: 30px; letter-spacing: .1em; color: var(--ivory); line-height: 1; }
.logo__dot { width: 5px; height: 5px; background: var(--gold); border-radius: 50%; }

.gnav__list { display: flex; align-items: center; gap: clamp(28px, 3.4vw, 56px); }
.gnav__link { position: relative; font-family: var(--f-en); font-size: 15px; letter-spacing: .28em; color: rgba(244, 241, 234, .82); transition: color .4s; padding: 6px 0; }
.gnav__link::after { content: ""; position: absolute; left: 0; bottom: 0; width: 100%; height: 1px; background: var(--gold); transform: scaleX(0); transform-origin: right; transition: transform .6s var(--ease); }
.gnav__link[aria-current="page"], .gnav__link:hover { color: var(--gold); }
.gnav__link[aria-current="page"]::after, .gnav__link:hover::after { transform: scaleX(1); transform-origin: left; }
.gnav__link--contact { padding: 12px 28px; border: 1px solid var(--gold-line); color: var(--ivory); }
.gnav__link--contact::after { display: none; }
.gnav__link--contact:hover { border-color: var(--gold); color: var(--gold); }

.menu-btn { display: none; position: relative; width: 48px; height: 48px; margin-right: -10px; }
.menu-btn span { position: absolute; left: 10px; width: 28px; height: 1px; background: var(--ivory); transition: transform .5s var(--ease), top .5s var(--ease); }
.menu-btn span:nth-child(1) { top: 20px; }
.menu-btn span:nth-child(2) { top: 28px; }
.is-menu-open .menu-btn span:nth-child(1) { top: 24px; transform: rotate(20deg); }
.is-menu-open .menu-btn span:nth-child(2) { top: 24px; transform: rotate(-20deg); }

/* menu は header の外に置く（backdrop-filter の影響を受けないため） */
.menu {
  position: fixed; inset: 0; z-index: 90; display: none;
  flex-direction: column; justify-content: center; padding: var(--header-h) var(--gutter) 48px;
  background: var(--deep); opacity: 0; visibility: hidden; overflow-y: auto;
  transition: opacity .6s var(--ease), visibility .6s;
}
.is-menu-open .menu { opacity: 1; visibility: visible; }
.is-menu-open .header { transform: none; background: transparent; border-color: transparent; -webkit-backdrop-filter: none; backdrop-filter: none; }
.menu__list li { overflow: hidden; border-bottom: 1px solid var(--line); }
.menu__link { display: flex; align-items: baseline; justify-content: space-between; padding: 16px 0; transform: translateY(100%); transition: transform .8s var(--ease-out); }
.is-menu-open .menu__link { transform: none; transition-delay: calc(var(--i, 0) * 60ms + 150ms); }
.menu__en { font-family: var(--f-en); font-size: 34px; letter-spacing: .12em; color: var(--fg); line-height: 1.2; }
.menu__link[aria-current="page"] .menu__en { color: var(--gold); }
.menu__ja { font-family: var(--f-mincho); font-size: 11px; letter-spacing: .24em; color: var(--fg-60); }
.menu__info { margin-top: 40px; font-size: 12px; color: var(--fg-60); line-height: 2; }
.menu__info a { color: var(--fg); font-family: var(--f-en); font-size: 22px; letter-spacing: .12em; }

/* ==========================================================
   Photos：深緑のオーバーレイで統一感を出す
   ========================================================== */
.hero__bg::after, .page-hero__bg::after, .band__bg::after, .reveal::after { content: ""; position: absolute; inset: 0; pointer-events: none; }
.reveal::after { background: var(--photo-tint); }

/* ==========================================================
   Hero (TOP)
   ========================================================== */
.hero { position: relative; height: 100vh; height: 100svh; min-height: 620px; overflow: hidden; background: var(--deep); }
.hero__bg { position: absolute; inset: 0; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; transform-origin: 60% 50%; }
.hero__bg::after { background: linear-gradient(180deg, rgba(15,42,34,.55) 0%, rgba(15,42,34,.35) 50%, rgba(15,42,34,.92) 100%); }
.hero__inner {
  position: relative; z-index: 1; height: 100%;
  display: flex; flex-direction: column; justify-content: center;
  padding: var(--header-h) var(--gutter) 0;
  width: min(100%, calc(var(--container) + var(--gutter) * 2)); margin-inline: auto;
}
.hero__eyebrow { margin-bottom: 40px; }
.hero__catch {
  font-family: var(--f-mincho); font-weight: 500; color: var(--ivory);
  font-size: clamp(32px, 5.4vw, 80px); line-height: 1.7; letter-spacing: .18em;
}
.hero__scroll {
  position: absolute; z-index: 1; right: var(--gutter); bottom: 0;
  display: flex; align-items: center; gap: 16px;
  font-family: var(--f-en); font-size: 12px; letter-spacing: .3em; color: rgba(244,241,234,.62);
  writing-mode: vertical-rl;
}
.hero__scroll::after { content: ""; width: 1px; height: 96px; background: linear-gradient(var(--gold) 50%, transparent 50%) 0 0 / 100% 200%; animation: scrollLine 2.4s var(--ease) infinite; }
@keyframes scrollLine { from { background-position: 0 100%; } to { background-position: 0 -100%; } }

/* ==========================================================
   Page hero (sub pages)
   ========================================================== */
.page-hero { position: relative; height: 72vh; min-height: 520px; max-height: 820px; overflow: hidden; display: flex; align-items: flex-end; background: var(--deep); }
.page-hero--short { height: auto; min-height: 0; padding-top: calc(var(--header-h) + clamp(80px, 12vw, 160px)); }
.page-hero__bg { position: absolute; inset: 0; }
.page-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero__bg::after { background: linear-gradient(180deg, rgba(15,42,34,.45), rgba(15,42,34,.94)); }
.page-hero .container { position: relative; z-index: 1; padding-bottom: clamp(56px, 8vw, 104px); }
.page-hero .heading { margin-bottom: 0; }
.page-hero .heading__en { font-size: clamp(52px, 11vw, 168px); }

.breadcrumb { border-bottom: 1px solid var(--line); background: var(--deep); }
.breadcrumb ol { display: flex; flex-wrap: wrap; gap: 12px; padding: 20px 0; font-size: 12px; letter-spacing: .16em; color: var(--fg-40); }
.breadcrumb li + li::before { content: ""; display: inline-block; width: 16px; height: 1px; background: var(--gold-line); vertical-align: middle; margin-right: 12px; }
.breadcrumb a { color: var(--fg-60); transition: color .3s; }
.breadcrumb a:hover { color: var(--fg); }

/* ==========================================================
   Image reveal (curtain) + parallax
   ========================================================== */
.reveal { position: relative; overflow: hidden; background: var(--forest); }
.reveal img { position: absolute; left: 0; top: -8%; width: 100%; height: 116%; object-fit: cover; }
.ratio-portrait { aspect-ratio: 4 / 5; }
.ratio-land { aspect-ratio: 16 / 11; }

/* ==========================================================
   MISSION / VISION
   ========================================================== */
.mvv { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(56px, 8vw, 128px); align-items: center; }
.mvv--reverse .mvv__media { order: 2; }
.mvv__lead {
  position: relative;
  font-family: var(--f-mincho); font-weight: 500; color: var(--fg);
  font-size: clamp(20px, 2.1vw, 28px); line-height: 1.9; letter-spacing: .12em;
  padding-bottom: 32px; margin-bottom: 32px; border-bottom: 1px solid var(--line);
}
.mvv__lead::after { content: ""; position: absolute; left: 0; bottom: -1px; width: 72px; height: 1px; background: var(--gold); }
.mvv__body { color: var(--fg-60); line-height: 2.4; }

/* ==========================================================
   VALUE（01〜05）
   ========================================================== */
.values { border-top: 1px solid var(--line); }
.value-row { position: relative; display: grid; grid-template-columns: 72px minmax(0, 5fr) minmax(0, 6fr); gap: 32px; align-items: baseline; padding: clamp(32px, 4vw, 48px) 0; border-bottom: 1px solid var(--line); }
.value-row__line { position: absolute; left: 0; bottom: -1px; width: 100%; height: 1px; background: var(--gold); transform-origin: left center; }
.is-anim .value-row__line { transform: scaleX(0); }
.value-row__num { font-family: var(--f-en); font-size: 18px; letter-spacing: .2em; color: var(--gold); }
.value-row__word { font-family: var(--f-en); font-weight: 300; font-size: clamp(40px, 5.6vw, 84px); line-height: 1.05; letter-spacing: .06em; color: var(--fg); }
.value-row__ja { display: block; margin-top: 10px; font-family: var(--f-mincho); font-weight: 500; font-size: 15px; letter-spacing: .24em; color: var(--fg-60); line-height: 1.7; }
.value-row__body { color: var(--fg-60); line-height: 2.3; }
.value-row__body strong { display: block; margin-bottom: 12px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(17px, 1.6vw, 20px); color: var(--fg); letter-spacing: .12em; line-height: 1.8; }
/* TOPの簡易版（英単語＋一言） */
.values--compact .value-row { grid-template-columns: 72px 1fr auto; align-items: center; }
.values--compact .value-row__ja { margin-top: 0; }

/* ==========================================================
   Marquee
   ========================================================== */
.marquee { overflow: hidden; padding: clamp(24px, 4vw, 48px) 0; border-block: 1px solid var(--line); background: var(--deep); }
.marquee__track { display: flex; width: max-content; animation: marquee 48s linear infinite; }
.marquee__item {
  flex-shrink: 0; padding-right: .5em;
  font-family: var(--f-en); font-weight: 300; font-style: italic;
  font-size: clamp(88px, 15vw, 232px); line-height: 1; letter-spacing: .06em;
  color: rgba(244, 241, 234, .07);
}
.marquee__item::after { content: "—"; margin-left: .5em; color: rgba(198, 169, 105, .22); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ==========================================================
   Message
   ========================================================== */
.message__grid { display: grid; grid-template-columns: 5fr 6fr; gap: clamp(56px, 8vw, 128px); align-items: start; }
.message__title { margin-bottom: 48px; }
.sign { margin-top: 56px; display: flex; align-items: baseline; justify-content: flex-end; gap: 28px; }
.sign__role { font-size: 12px; letter-spacing: .24em; color: var(--fg-60); }
.sign__name { font-family: var(--f-mincho); font-size: 26px; letter-spacing: .3em; color: var(--fg); }

/* ==========================================================
   Service
   ========================================================== */
.service-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(40px, 5vw, 72px); }
.service-card { display: block; }
.service-card__body { padding-top: 40px; }
.service-card__num { font-family: var(--f-en); font-size: 20px; letter-spacing: .2em; color: var(--gold); display: flex; align-items: center; gap: 20px; }
.service-card__num::after { content: ""; flex: 1; height: 1px; background: var(--line); }
.service-card__title { margin-top: 20px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(24px, 2.4vw, 32px); letter-spacing: .16em; color: var(--fg); line-height: 1.6; }
.service-card__sub { margin-top: 6px; font-size: 13px; letter-spacing: .2em; color: var(--fg-60); }
.service-card__text { margin-top: 20px; color: var(--fg-60); }
.service-card .link-line { margin-top: 32px; }

.service-lead { max-width: 900px; }
.service-lead .eyebrow { margin-bottom: 32px; }
.service-block { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 112px); align-items: center; }
.service-block--reverse .service-block__media { order: 2; }
.service-block__num { font-family: var(--f-en); font-weight: 300; font-size: clamp(88px, 10vw, 150px); line-height: 1; color: transparent; -webkit-text-stroke: 1px var(--gold); letter-spacing: .04em; }
.service-block__title { margin-top: 24px; font-family: var(--f-mincho); font-weight: 500; color: var(--fg); font-size: clamp(28px, 3vw, 40px); letter-spacing: .16em; line-height: 1.5; }
.service-block__sub { margin: 10px 0 32px; font-size: 14px; letter-spacing: .22em; color: var(--fg-60); }
.tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 32px; }
.tags li { padding: 6px 18px; border: 1px solid var(--gold-line); font-size: 12px; letter-spacing: .16em; color: var(--fg-80); line-height: 1.8; }

/* ==========================================================
   Band (image background) / Contact band
   ========================================================== */
.band { position: relative; overflow: hidden; padding: clamp(140px, 18vw, 260px) 0; background: var(--deep); }
.band__bg { position: absolute; inset: -12% 0; }
.band__bg img { width: 100%; height: 100%; object-fit: cover; }
.band__bg::after { background: rgba(15, 42, 34, .72); }
.band .container { position: relative; z-index: 1; }
.band__catch { font-family: var(--f-mincho); font-weight: 500; color: var(--fg); font-size: clamp(28px, 4.4vw, 60px); line-height: 1.7; letter-spacing: .18em; }

.contact-band { text-align: center; }
.contact-band__frame { border: 1px solid var(--gold-line); padding: clamp(64px, 9vw, 120px) clamp(24px, 6vw, 80px); }
.contact-band .heading { margin-bottom: 48px; }

/* ==========================================================
   Company
   ========================================================== */
.info-table { border-top: 1px solid var(--line); }
.info-table__row { display: grid; grid-template-columns: 240px 1fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.info-table dt { font-family: var(--f-mincho); font-size: 14px; letter-spacing: .24em; color: var(--fg-60); }
.info-table dd { color: var(--fg); }
.info-table dd a { border-bottom: 1px solid transparent; transition: border-color .3s; }
.info-table dd a:hover { border-bottom-color: var(--gold); }

.map { position: relative; aspect-ratio: 16 / 7; border: 1px solid var(--gold-line); background: var(--deep); }
.map iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; filter: grayscale(1) invert(.9) sepia(.35) hue-rotate(95deg) saturate(1.3) contrast(.9) brightness(.85); }
.map-info { margin-top: 32px; display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }

/* ==========================================================
   Recruit page
   ========================================================== */
.recruit-intro { text-align: center; }
.cols-3 { display: grid; grid-template-columns: repeat(3, 1fr); border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.col { padding: clamp(40px, 5vw, 64px) clamp(24px, 3vw, 48px); }
.col + .col { border-left: 1px solid var(--line); }
.col__num { font-family: var(--f-en); font-size: 18px; letter-spacing: .2em; color: var(--gold); }
.col__title { margin: 24px 0 20px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(19px, 1.8vw, 23px); letter-spacing: .14em; color: var(--fg); line-height: 1.7; }
.col__text { color: var(--fg-60); font-size: 14px; }

.member-subtitle { margin: calc(clamp(64px, 9vw, 120px) * -.5) 0 clamp(72px, 9vw, 112px); }
.member { display: grid; grid-template-columns: 4fr 7fr; gap: clamp(48px, 7vw, 112px); align-items: start; }
.member + .member { margin-top: clamp(96px, 12vw, 160px); padding-top: clamp(96px, 12vw, 160px); border-top: 1px solid var(--line); }
.member__role { font-size: 12px; letter-spacing: .28em; color: var(--fg-60); }
.member__name { margin: 12px 0 40px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(28px, 3vw, 38px); letter-spacing: .3em; color: var(--fg); line-height: 1.5; }
.qa__item + .qa__item { margin-top: 40px; }
.qa__q { display: flex; gap: 20px; font-family: var(--f-mincho); font-size: 17px; letter-spacing: .14em; color: var(--fg); line-height: 1.8; }
.qa__q::before { content: "Q."; font-family: var(--f-en); font-size: 22px; color: var(--gold); line-height: 1.4; }
.qa__a { margin-top: 12px; padding-left: 42px; color: var(--fg-60); }

/* ==========================================================
   Form
   ========================================================== */
.contact-tel { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 24px; padding: 40px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); margin: clamp(56px, 7vw, 80px) 0 clamp(80px, 10vw, 128px); }
.contact-tel__label { font-family: var(--f-mincho); font-size: 16px; letter-spacing: .16em; color: var(--fg); }
.form__row { display: grid; grid-template-columns: 260px 1fr; gap: 32px; padding: 32px 0; border-bottom: 1px solid var(--line); }
.form__row:first-of-type { border-top: 1px solid var(--line); }
.form__label { font-family: var(--f-mincho); font-size: 15px; letter-spacing: .16em; color: var(--fg); padding-top: 12px; display: flex; gap: 14px; align-items: center; flex-wrap: wrap; line-height: 1.8; }
.form__req, .form__opt { font-family: var(--f-body); font-size: 10px; letter-spacing: .16em; padding: 0 8px; line-height: 1.9; }
.form__req { border: 1px solid var(--gold-line); color: var(--fg); }
.form__opt { border: 1px solid var(--line); color: var(--fg-40); }
.form__input, .form__select, .form__textarea {
  width: 100%; padding: 12px 0; font: inherit; font-size: 16px; color: var(--fg); letter-spacing: .08em;
  background: transparent; border: 0; border-bottom: 1px solid var(--line); border-radius: 0;
  transition: border-color .4s var(--ease);
}
.form__input::placeholder, .form__textarea::placeholder { color: var(--fg-40); }
.form__input:focus, .form__select:focus, .form__textarea:focus { outline: none; border-bottom-color: var(--gold); }
.form__select { appearance: none; -webkit-appearance: none; padding-right: 32px; cursor: pointer;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c6a969' stroke-width='1'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E") right 4px center / 16px no-repeat; }
.form__select option { background: var(--deep); color: var(--ivory); }
.form__textarea { min-height: 200px; resize: vertical; line-height: 1.9; }
.form__error { display: none; margin-top: 10px; font-size: 12px; color: var(--fg); letter-spacing: .1em; }
.form__error::before { content: ""; display: inline-block; width: 14px; height: 1px; background: var(--gold); vertical-align: middle; margin-right: 10px; }
.form__field.is-error .form__error { display: block; }
.form__field.is-error .form__input, .form__field.is-error .form__textarea { border-bottom-color: var(--gold); }
.form__alert { display: none; margin-bottom: 32px; padding: 16px 20px; border: 1px solid var(--gold-line); color: var(--fg); font-size: 13px; }
.form__alert.is-show { display: block; }
.form__submit { margin-top: 64px; text-align: center; }
.form__submit .btn[disabled] { opacity: .5; pointer-events: none; }
.form__note { margin-top: 28px; font-size: 12px; color: var(--fg-40); text-align: center; }
.form__note a { color: var(--fg-80); border-bottom: 1px solid var(--gold-line); }
.thanks { display: none; text-align: center; padding: clamp(64px, 8vw, 104px) 24px; border: 1px solid var(--gold-line); }
.thanks.is-show { display: block; }
.thanks__title { font-family: var(--f-mincho); font-size: 24px; letter-spacing: .2em; color: var(--fg); margin: 16px 0 20px; }

/* ==========================================================
   Policy
   ========================================================== */
.policy h2 { margin: 64px 0 20px; font-family: var(--f-mincho); font-weight: 500; font-size: 19px; letter-spacing: .16em; color: var(--fg); display: flex; gap: 20px; align-items: center; line-height: 1.6; }
.policy h2::before { content: ""; width: 24px; height: 1px; background: var(--gold); flex-shrink: 0; }
.policy p, .policy li { color: var(--fg-60); }
.policy ul { margin-top: 12px; padding-left: 1.4em; list-style: disc; }
.policy li::marker { color: var(--gold); }

/* ==========================================================
   Footer
   ========================================================== */

/* ==========================================================
   Responsive
   ========================================================== */
@media (max-width: 1024px) {
  :root { --header-h: 76px; }
  .gnav { display: none; }
  .menu-btn { display: block; }
  .menu { display: flex; }
  .message__grid, .service-block, .member, .mvv { grid-template-columns: 1fr; }
  .service-block--reverse .service-block__media, .mvv--reverse .mvv__media { order: 0; }
  .message__photo, .mvv__media { max-width: 560px; }
  .member__photo { max-width: 400px; }
  .value-row { grid-template-columns: 56px 1fr; }
  .value-row__body { grid-column: 2; }
}

@media (max-width: 767px) {
  body { font-size: 14px; line-height: 2.1; letter-spacing: .08em; }
  .sp-br { display: inline; }
  .pc-br { display: none; }
  .logo { font-size: 26px; }
  .hero__catch { letter-spacing: .12em; }
  .hero__scroll::after { height: 64px; }
  .service-cards, .cols-3 { grid-template-columns: 1fr; }
  .col + .col { border-left: 0; border-top: 1px solid var(--line); }
  .info-table__row, .form__row { grid-template-columns: 1fr; gap: 8px; padding: 24px 0; }
  .form__label { padding-top: 0; }
  .btn { min-width: 0; width: 100%; }
  .map { aspect-ratio: 4 / 3; }
  .sign { justify-content: flex-start; flex-wrap: wrap; gap: 12px 20px; }
  .qa__a { padding-left: 0; }
  .marquee__track { animation-duration: 32s; }
  .mvv__body { letter-spacing: .04em; }
  .value-row, .values--compact .value-row { grid-template-columns: 1fr; gap: 8px; }
  .value-row__body { grid-column: auto; margin-top: 12px; letter-spacing: .04em; }
  .value-row__word { font-size: clamp(34px, 10.5vw, 48px); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation: none !important; transition-duration: .01ms !important; transition-delay: 0s !important; }
}

/* ==========================================================
   Service：営業支援 / セールスコンサルティング
   ========================================================== */
.service-block__catch { margin: 12px 0 28px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(17px, 1.7vw, 22px); letter-spacing: .14em; line-height: 1.8; color: var(--fg); }
.service-block__closing { margin-top: 32px; padding-top: 28px; border-top: 1px solid var(--line); font-family: var(--f-mincho); font-weight: 500; font-size: clamp(16px, 1.5vw, 19px); letter-spacing: .14em; line-height: 2; color: var(--fg); }
/* ■ 見出し：ゴールドの縁取りの小さな四角 */
.sq-title { display: flex; align-items: center; gap: 14px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(18px, 1.7vw, 22px); letter-spacing: .16em; color: var(--fg); line-height: 1.6; }
.sq-title::before { content: ""; flex-shrink: 0; width: 9px; height: 9px; border: 1px solid var(--gold); }

.sales-cards { display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(24px, 3vw, 40px); margin-top: clamp(64px, 8vw, 104px); }
.sales-card { padding: clamp(36px, 4vw, 56px) clamp(28px, 3.4vw, 48px); border: 1px solid var(--line); position: relative; }
.sales-card::before { content: ""; position: absolute; left: -1px; top: -1px; width: 48px; height: 1px; background: var(--gold); }
.sales-card__en { font-family: var(--f-en); font-size: 14px; letter-spacing: .3em; color: var(--gold); text-transform: uppercase; margin-bottom: 16px; }
.sales-card .text { margin-top: 20px; }

.support { margin-top: clamp(80px, 10vw, 128px); }
.support .sq-title { margin-bottom: 32px; }
.support-list .value-row { grid-template-columns: 72px minmax(0, 4fr) minmax(0, 7fr); }
.support-row__title { font-family: var(--f-mincho); font-weight: 500; font-size: clamp(20px, 2vw, 26px); letter-spacing: .14em; line-height: 1.6; }

@media (max-width: 1024px) {
  .support-list .value-row { grid-template-columns: 56px 1fr; }
}
@media (max-width: 767px) {
  .sales-cards { grid-template-columns: 1fr; }
  .support-list .value-row { grid-template-columns: 1fr; }
  .support-row__title { font-size: 20px; }
}

/* スマホ：ボタンの文字が途中で折り返さないように */
@media (max-width: 767px) {
  .btn { padding: 22px 24px; gap: 20px; }
  .btn__label { white-space: nowrap; letter-spacing: .16em; }
}

/* 配置 */
.contact-actions { display: flex; justify-content: center; align-items: center; flex-wrap: wrap; gap: 24px clamp(40px, 5vw, 72px); margin-top: 48px; }
.contact-tel { flex-direction: column; justify-content: center; align-items: center; gap: 20px; padding: clamp(48px, 6vw, 72px) 0; text-align: center; }
.contact-tel__label { font-size: 13px; letter-spacing: .24em; color: var(--fg-60); }

@media (max-width: 767px) {
  .contact-actions { flex-direction: column; gap: 32px; }
}

/* ==========================================================
   代表写真（縦横比そのまま・顔にはオーバーレイをかけない）
   ========================================================== */
.portrait { display: grid; grid-template-columns: minmax(0, 1fr) auto; gap: 44px; align-items: end; }
.portrait--nosign { grid-template-columns: minmax(0, 1fr); }
.portrait__inner { position: relative; margin: 0 18px 18px 0; }
/* ずらしたゴールドの枠線（写真の背面に置き、顔には線がかからない） */
.portrait__frame { position: absolute; inset: 18px -18px -18px 18px; border: 1px solid var(--gold); z-index: 0; pointer-events: none; }
.portrait__photo { z-index: 1; }
.reveal--natural { aspect-ratio: auto; }
.reveal--natural img { position: static; width: 100%; height: auto; }
/* 下部だけにうっすら深緑のグラデーション */
.portrait__photo::after { background: linear-gradient(0deg, rgba(15,42,34,.55) 0%, rgba(15,42,34,.18) 20%, rgba(15,42,34,0) 38%); }
/* 署名（PC：写真の横に縦書き） */
.portrait__sign { writing-mode: vertical-rl; display: flex; align-items: flex-start; gap: 22px; padding-bottom: 18px; font-family: var(--f-mincho); }
.portrait__role { font-size: 12px; letter-spacing: .32em; color: var(--fg-60); }
.portrait__name { font-size: 24px; letter-spacing: .42em; color: var(--fg); }
.is-anim .portrait__frame { opacity: 0; }

@media (max-width: 767px) {
  .portrait { grid-template-columns: minmax(0, 1fr); gap: 0; }
  .portrait__inner { margin: 0 14px 14px 0; }
  .portrait__frame { inset: 14px -14px -14px 14px; }
  .portrait__sign { writing-mode: horizontal-tb; flex-direction: row; align-items: baseline; gap: 18px; padding: 32px 0 0; }
  .portrait__name { font-size: 22px; letter-spacing: .3em; }
}

/* ==========================================================
   TOP Hero：東京タワー（Marek Okon / Unsplash）
   - オーバーレイは他の写真と同系の深緑。タワーの灯りが沈まないようやや弱め
   - 表示位置：PC＝タワー右寄り・左にコピー／スマホ＝タワーが切れない位置
   ========================================================== */
/* ズームの基点はタワー上部（尖塔が画面外に出ないように） */
.hero { --hero-pos: 70% 58%; --hero-pos-sp: 72% 50%; --hero-zoom-origin: 70% 18%; --hero-zoom-origin-sp: 72% 18%; }
.hero__bg img { object-position: var(--hero-pos); transform-origin: var(--hero-zoom-origin); }
.hero__bg::after { background: linear-gradient(180deg, rgba(15,42,34,.24) 0%, rgba(15,42,34,.24) 68%, rgba(15,42,34,.85) 100%); }
@media (max-width: 767px) {
  .hero__bg img { object-position: var(--hero-pos-sp); transform-origin: var(--hero-zoom-origin-sp); }
}

/* MISSION：雲海と朝日（Florian Delée / Unsplash）— 太陽と雲海が収まる位置 */
#mission .mvv__media img { object-position: 30% 50%; }
@media (max-width: 767px) {
  #mission .mvv__media .reveal { aspect-ratio: 4 / 3; }
  #mission .mvv__media img { object-position: 36% 55%; }
}

/* 代表写真：4:5 の枠に cover で表示し、顔が切れないよう上寄せ（仮の背景色なし） */
.portrait__photo.reveal--natural { aspect-ratio: 4 / 5; background: transparent; }
.portrait__photo.reveal--natural img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center 20%; }

/* ==========================================================
   PARTNER（代理店募集バナー）
   ========================================================== */
.partner { text-align: center; padding: clamp(120px, 15vw, 200px) 0; }
.partner .band__bg::after { background: rgba(15, 42, 34, .78); }
.partner__en { font-family: var(--f-en); font-weight: 300; font-size: clamp(48px, 8vw, 112px); line-height: 1; letter-spacing: .12em; color: var(--gold); }
.partner__catch { margin-top: clamp(28px, 4vw, 44px); font-family: var(--f-mincho); font-weight: 500; font-size: clamp(24px, 3.6vw, 48px); line-height: 1.7; letter-spacing: .16em; color: var(--ivory); }
.partner__text { margin-top: 20px; color: var(--fg-80); }
.partner .btn-wrap { margin-top: clamp(40px, 5vw, 56px); }
@media (max-width: 767px) {
  .partner__catch { font-size: 20px; letter-spacing: .08em; }
}

/* ==========================================================
   Recruit：私たちの特徴（STRENGTH）
   ========================================================== */
.strength { overflow: hidden; }
.strength__lead { max-width: 820px; margin: calc(clamp(64px, 9vw, 120px) * -.4) 0 clamp(96px, 12vw, 160px); font-family: var(--f-mincho); font-size: clamp(16px, 1.6vw, 20px); line-height: 2.3; letter-spacing: .12em; color: var(--fg-80); }
.strength-item { position: relative; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(48px, 7vw, 112px); align-items: center; }
.strength-item + .strength-item { margin-top: clamp(120px, 15vw, 200px); }
.strength-item--reverse .strength-item__media { order: 2; }
.strength-item__media, .strength-item__body { position: relative; z-index: 1; }
/* 背景の大きな番号（ゴールドの細いアウトライン・薄く） */
.strength-item__bgnum {
  position: absolute; z-index: 0; top: -.5em; right: -.04em;
  font-family: var(--f-en); font-weight: 300; font-size: clamp(180px, 24vw, 360px); line-height: 1; letter-spacing: .02em;
  color: transparent; -webkit-text-stroke: 1px rgba(198, 169, 105, .2); pointer-events: none; user-select: none;
}
.strength-item--reverse .strength-item__bgnum { right: auto; left: -.04em; }
.strength-item__label { display: flex; align-items: center; gap: 16px; font-family: var(--f-en); font-size: 14px; letter-spacing: .34em; color: var(--gold); }
.strength-item__num { display: inline-flex; align-items: center; gap: 16px; }
.strength-item__num::after { content: ""; width: 32px; height: 1px; background: var(--gold); }
.strength-item__title { margin-top: 18px; font-family: var(--f-mincho); font-weight: 500; font-size: 15px; letter-spacing: .24em; color: var(--fg-60); }
.strength-item__catch { margin: 14px 0 32px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(22px, 2.2vw, 30px); line-height: 1.7; letter-spacing: .12em; color: var(--fg); }
.strength-item__text { color: var(--fg-60); line-height: 2.3; }
/* 箇条書き：ゴールドの細い線で区切り、スクロールで1行ずつ */
.strength-list { margin-top: 36px; border-top: 1px solid var(--gold-line); }
.strength-list li { position: relative; padding: 18px 0 18px 28px; border-bottom: 1px solid var(--gold-line); font-family: var(--f-mincho); font-size: 15px; letter-spacing: .12em; line-height: 1.8; color: var(--fg); }
.strength-list li::before { content: ""; position: absolute; left: 0; top: 50%; width: 12px; height: 1px; background: var(--gold); }
.is-anim .strength-list li { opacity: 0; }

@media (max-width: 1024px) {
  .strength-item { grid-template-columns: 1fr; gap: 40px; }
  .strength-item--reverse .strength-item__media { order: 0; }
  .strength-item__bgnum { top: auto; bottom: 30%; font-size: clamp(140px, 36vw, 240px); }
}
@media (max-width: 767px) {
  .strength__lead br { display: none; }
  .strength-item__text { letter-spacing: .04em; }
  .strength-list li { font-size: 14px; letter-spacing: .06em; padding-left: 24px; }
}
@media (max-width: 767px) {
  .strength-item__catch { font-size: 19px; letter-spacing: .04em; }
}
/* 背景番号は本文ブロックの右上に固定（写真・本文と重ならない位置） */
.strength-item__bgnum, .strength-item--reverse .strength-item__bgnum { top: -.5em; right: -.04em; left: auto; bottom: auto; z-index: -1; }
.strength-item__body { isolation: isolate; }
@media (max-width: 1024px) {
  .strength-item__bgnum, .strength-item--reverse .strength-item__bgnum { top: -.32em; right: 0; font-size: clamp(110px, 30vw, 200px); }
}

/* ==========================================================
   電話番号：本文と同じ Noto Sans JP で読みやすく
   （TEL表記・縦線・ホバー下線なし／タップで発信）
   ========================================================== */
.tel-link {
  display: inline-block; color: var(--fg);
  font-family: var(--f-body); font-weight: 500; line-height: 1.4;
  letter-spacing: .05em; font-variant-numeric: lining-nums tabular-nums;
}
.tel-link--lg { font-size: 24px; }
.tel-link--md { font-size: 20px; }
.tel-link--sm { font-size: 15px; font-weight: 400; }
.menu__info .tel-link { font-family: var(--f-body); font-size: 17px; letter-spacing: .05em; color: var(--fg); }
@media (max-width: 767px) {
  .tel-link--lg { font-size: 22px; }
  .tel-link--md { font-size: 19px; }
}

/* ==========================================================
   数字で見るCuriosity（NUMBERS）
   ※CSSの初期値＝最終表示。アニメーション時のみJSで開始状態をセット
   ========================================================== */
.numbers { overflow: hidden; }
.numbers__bg {
  position: absolute; top: 50%; left: 0; transform: translateY(-50%); z-index: 0;
  font-family: var(--f-en); font-weight: 300; font-size: clamp(160px, 26vw, 420px); line-height: 1; letter-spacing: .04em;
  white-space: nowrap; color: rgba(244, 241, 234, .04); pointer-events: none; user-select: none; will-change: transform;
}
.numbers .container { position: relative; z-index: 1; }
.numbers__list { display: grid; grid-template-columns: repeat(3, 1fr); }
.num-item { display: flex; flex-direction: column; align-items: center; text-align: center; padding: 8px clamp(20px, 3vw, 48px); }
.num-item { position: relative; }
/* 項目間のゴールドの縦線（JSで上から下へ伸ばす） */
.num-item__divider { position: absolute; left: 0; top: 0; bottom: 0; width: 1px; background: var(--gold-line); transform-origin: top center; }
.num-item__label { display: flex; align-items: center; gap: 12px; font-size: 13px; letter-spacing: .2em; color: var(--fg-60); }
.num-item__no { font-family: var(--f-en); font-size: 14px; letter-spacing: .2em; color: var(--gold); }
.num-item__value {
  display: flex; align-items: baseline; justify-content: center; gap: 6px; margin-top: 28px;
  font-family: var(--f-body); font-weight: 400; line-height: 1; color: var(--ivory);
  font-variant-numeric: lining-nums tabular-nums; letter-spacing: .02em;
}
.num-item__count { font-size: clamp(64px, 7vw, 96px); }
.num-item__unit { font-family: var(--f-body); font-weight: 400; font-size: clamp(22px, 2.2vw, 30px); color: var(--gold); }
.num-item__copy { margin-top: 28px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(15px, 1.3vw, 17px); letter-spacing: .12em; line-height: 1.8; color: var(--fg); }

/* 02：ゴールドのリング（0→98%） */
.num-ring { position: relative; width: clamp(200px, 19vw, 250px); aspect-ratio: 1; margin-top: 20px; display: grid; place-items: center; }
.num-ring .num-item__value { margin-top: 0; }
.num-ring .num-item__count { font-size: clamp(56px, 5.6vw, 80px); }
.num-ring__svg { position: absolute; inset: 0; width: 100%; height: 100%; transform: rotate(-90deg); overflow: visible; }
.num-ring__track, .num-ring__bar { fill: none; stroke-width: 1; vector-effect: non-scaling-stroke; }
.num-ring__track { stroke: rgba(198, 169, 105, .18); }
.num-ring__bar { stroke: var(--gold); stroke-dasharray: 100; stroke-dashoffset: 2; }

/* 03：数字の下のゴールドの線 */
.num-item__line { display: block; width: 120px; height: 1px; margin-top: 18px; background: var(--gold); transform-origin: left center; }

/* 01・03 の高さをリング付きの 02 と揃える */
.num-item--age .num-item__value, .num-item--growth .num-item__value { min-height: 0; margin-top: auto; }
.num-item--age .num-item__copy { margin-top: auto; padding-top: 28px; }
.num-item--growth .num-item__copy { margin-top: auto; padding-top: 28px; }
.num-item--age .num-item__value { margin-bottom: 0; }

.numbers__note { margin-top: clamp(48px, 6vw, 72px); text-align: right; font-size: 12px; letter-spacing: .08em; color: var(--fg-40); }

@media (max-width: 767px) {
  .numbers__list { grid-template-columns: 1fr; }
  .num-item { padding: 40px 0; }
  .num-item:first-child { padding-top: 8px; }
  .num-item__divider { top: 0; left: 0; right: 0; bottom: auto; width: auto; height: 1px; transform-origin: left center; }
  .num-item__count { font-size: 72px; }
  .num-ring { width: 200px; }
  .num-ring .num-item__count { font-size: 64px; }
  .num-item--age .num-item__value, .num-item--growth .num-item__value { margin-top: 24px; }
  .num-item--age .num-item__copy, .num-item--growth .num-item__copy { padding-top: 0; margin-top: 24px; }
  .numbers__note { text-align: left; }
}

/* ==========================================================
   代表挨拶（MESSAGE）
   ========================================================== */
.message__title { margin-bottom: clamp(36px, 4vw, 48px); font-family: var(--f-mincho); font-weight: 500; font-size: clamp(20px, 2.2vw, 30px); line-height: 1.7; letter-spacing: .06em; color: var(--fg); }
.message__text { font-size: 15px; line-height: 2.05; letter-spacing: .06em; color: var(--fg-80); }
.message__text p + p { margin-top: 1.9em; }
/* 太字部分はゴールドで強調（アイボリー背景では読みやすい濃いめのゴールド） */
.em-gold { font-weight: 400; color: var(--gold); }
.theme-ivory .em-gold { color: #8a6d2f; }
.message__closing { margin: clamp(56px, 7vw, 88px) 0; text-align: center; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(18px, 1.9vw, 24px); line-height: 2.3; letter-spacing: .16em; color: var(--fg); }
.message__closing li { display: block; }
.is-anim .message__closing li { opacity: 0; }
.message__last { font-size: 15px; line-height: 2.05; letter-spacing: .06em; color: var(--fg-80); }
.message__sign { margin-top: clamp(48px, 6vw, 72px); display: flex; flex-direction: column; align-items: flex-end; gap: 8px; text-align: right; }
.message__sign-company { font-size: 13px; letter-spacing: .2em; color: var(--fg-60); }
.message__sign-name { font-family: var(--f-mincho); font-weight: 500; font-size: 22px; letter-spacing: .16em; color: var(--fg); }
/* PC：読み進めても代表写真が本文の横に並ぶ（最後は署名と並ぶ） */
@media (min-width: 1025px) {
  .message__title { white-space: nowrap; }
  .message--full .message__photo { position: sticky; top: calc(var(--header-h) + 40px); }
}
@media (min-width: 768px) and (max-width: 1024px) {
  .message__title { font-size: 26px; }
}
@media (max-width: 767px) {
  .message__title { font-size: 22px; letter-spacing: .04em; }
  .message__text, .message__last { font-size: 14px; letter-spacing: .03em; }
  .message__closing { font-size: 17px; letter-spacing: .08em; }
  .message__sign-name { font-size: 20px; }
}

/* ==========================================================
   Instagram
   ========================================================== */
.ig-icon { display: block; width: 22px; height: 22px; flex-shrink: 0; }
.ig-link { display: inline-flex; align-items: center; gap: 12px; color: var(--gold); transition: color .35s var(--ease), filter .35s var(--ease); }
.ig-link span { font-family: var(--f-en); font-size: 15px; letter-spacing: .2em; color: var(--fg-80); transition: color .35s var(--ease); }
/* ホバー：アイコンが少し明るく */
@media (hover: hover) {
  .ig-link:hover { filter: brightness(1.25); }
  .ig-link:hover span { color: var(--fg); }
}
.menu__ig { margin-top: 28px; padding: 6px 0; }
.menu__ig .ig-icon { width: 28px; height: 28px; }

@media (max-width: 767px) {
}
.menu__ig { align-self: flex-start; }
.menu__ig { padding: 6px 8px; margin-left: -8px; }

/* ==========================================================
   Footer（ロゴ＋リンク4列／SNS／コピーライト＋Page top）
   ========================================================== */
.footer { background: #0a1f19; border-top: 1px solid rgba(198, 169, 105, .18); padding: clamp(80px, 10vw, 120px) 0 36px; }
.footer__top { display: grid; grid-template-columns: minmax(240px, 1fr) auto; gap: 56px clamp(48px, 6vw, 96px); }
.footer__logo { font-size: 40px; }
.footer__info { margin-top: 28px; font-size: 13px; line-height: 2; letter-spacing: .06em; color: var(--fg-60); }
.footer__tel { margin-top: 4px; }
.footer__tel .tel-link { color: var(--fg-80); }

.footer__nav { display: grid; grid-template-columns: repeat(4, auto); gap: 24px clamp(36px, 4.4vw, 72px); align-items: start; }
.footer__col > li + li { margin-top: 12px; }
.footer__nav a { font-family: var(--f-mincho); font-weight: 500; font-size: 14px; letter-spacing: .12em; line-height: 2; color: var(--fg); transition: color .3s var(--ease); }
@media (hover: hover) { .footer__nav a:hover { color: var(--gold); } }
.footer__sub { margin-top: 4px; }
.footer__sub a { position: relative; display: inline-block; padding-left: 22px; font-size: 13px; color: var(--fg-80); }
.footer__sub a::before { content: ""; position: absolute; left: 2px; top: 50%; width: 12px; height: 1px; background: var(--gold-line); }

/* SNS：アイコンを横に並べる（押せる範囲は44px） */
.footer__sns { display: flex; align-items: center; gap: 12px; margin-top: clamp(48px, 6vw, 72px); }
.sns-link { display: grid; place-items: center; width: 44px; height: 44px; margin-left: -6px; color: var(--gold); transition: filter .35s var(--ease), color .35s var(--ease); }
.sns-link .ig-icon { width: 32px; height: 32px; }
@media (hover: hover) { .sns-link:hover { filter: brightness(1.3); } }

.footer__bottom { display: flex; justify-content: space-between; align-items: center; gap: 20px; margin-top: 28px; padding-top: 28px; border-top: 1px solid rgba(198, 169, 105, .28); }
.footer__copy { font-family: var(--f-en); font-size: 13px; letter-spacing: .14em; color: var(--fg-40); }

.pagetop { display: inline-flex; align-items: center; gap: 14px; color: var(--gold); }
.pagetop__circle { display: grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--gold-line); border-radius: 50%; transition: border-color .35s var(--ease), transform .5s var(--ease); }
.pagetop__circle svg { width: 16px; height: 16px; }
.pagetop__label { font-family: var(--f-en); font-size: 13px; letter-spacing: .24em; color: var(--fg-80); transition: color .35s var(--ease); }
@media (hover: hover) {
  .pagetop:hover .pagetop__circle { border-color: var(--gold); transform: translateY(-3px); }
  .pagetop:hover .pagetop__label { color: var(--gold); }
}

@media (max-width: 1024px) {
  .footer__top { grid-template-columns: 1fr; }
  .footer__nav { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  .footer__logo { font-size: 34px; }
  .footer__nav { gap: 28px 20px; }
  .footer__nav a { font-size: 13px; letter-spacing: .08em; }
  .footer__sub a { font-size: 12px; padding-left: 16px; }
  .footer__sub a::before { width: 8px; }
  .footer__bottom { align-items: flex-end; }
  .footer__copy { font-size: 11px; letter-spacing: .08em; max-width: 60%; line-height: 1.8; }
  .pagetop { flex-direction: column; gap: 8px; }
  .pagetop__label { font-size: 11px; }
}
.footer__sub a::before { top: 1em; }
@media (max-width: 767px) {
  /* 長い項目（MISSION / VISION / VALUE・事業名）がある1列目だけ全幅、他は2列 */
  .footer__col:first-child { grid-column: 1 / -1; }
}

/* 採用ページ：Instagram（アイコンのみ） */
.ig-banner--icon { padding: clamp(44px, 5.5vw, 64px) 0; text-align: center; }
.ig-banner__icon {
  display: inline-grid; place-items: center; width: 72px; height: 72px; color: var(--gold);
  transition: filter .35s var(--ease), transform .45s var(--ease);
}
.ig-banner__icon .ig-icon { width: 56px; height: 56px; }
@media (hover: hover) { .ig-banner__icon:hover { filter: brightness(1.3); transform: translateY(-4px); } }
.ig-banner__icon:focus-visible { outline-offset: 2px; }
@media (max-width: 767px) { .ig-banner__icon .ig-icon { width: 48px; height: 48px; } }
/* Netlify Forms のスパム対策用（画面には表示しない） */
.form__hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }

/* ボタンを2つ並べる（採用特設サイトへの導線など） */
.btn-group { display: flex; flex-wrap: wrap; gap: 16px 20px; }
.btn-group--center { justify-content: center; }

/* TOPヒーロー：キャッチ「挑戦を、未来のスタンダードに。」（PC1行・スマホ2行）＋サブコピー */
.hero__catch { font-size: clamp(30px, 3.8vw, 52px); letter-spacing: .12em; line-height: 1.6; }
.hero__sub { margin-top: 24px; font-family: var(--f-mincho); font-weight: 500; font-size: clamp(14px, 1.4vw, 18px); line-height: 1.9; letter-spacing: .16em; color: rgba(244, 241, 234, .82); }
@media (max-width: 767px) {
  .hero__catch { font-size: clamp(22px, 7vw, 30px); letter-spacing: .08em; }
  .hero__sub { margin-top: 18px; font-size: 13px; letter-spacing: .08em; }
}

/* 幅の狭いスマホ（〜374px）：大きな英字見出しがはみ出さないように */
@media (max-width: 374px) {
  .heading__en { font-size: 44px; }
  .heading--long .heading__en { font-size: 32px; }
  .contact-band .heading__en { font-size: 40px; }
  .contact-band__frame { padding-left: 16px; padding-right: 16px; }
}

/* 募集要項：金額を少し大きくゴールドで強調／表の下の注記 */
.amount { font-style: normal; font-size: 1.15em; font-weight: 400; color: var(--gold); font-variant-numeric: lining-nums tabular-nums; letter-spacing: .03em; }
.theme-ivory .amount { color: #8a6d2f; }
.req-note { margin-top: 16px; font-size: 12px; line-height: 1.8; letter-spacing: .04em; color: var(--fg-60); }

/* ページ上部の画像エリア内のボタン（採用ページ：採用特設サイトへ） */
.page-hero__cta { margin-top: clamp(28px, 4vw, 44px); }
