/* ============================================================
   youroom. RECRUIT — style.css
   Design tokens & global styles
   ============================================================ */

:root {
  /* ベースカラー: youroom.のブランドピンク（指定色 #bd8f98）を中心に組み立て
     主軸＝#bd8f98（くすみローズ）／前後の濃淡で階層を作る */
  --c-bg:   #fbf6f7;   /* 微かにピンクを含むオフホワイト */
  --c-bg-2: #f5e9ec;   /* 薄いダスティローズ（セクション交互背景） */
  --c-bg-3: #eccfd5;   /* 中間ピンク（グラデーション用） */
  --c-ink:  #1f1c18;
  --c-ink-2: #4a443c;
  --c-ink-3: #8a8278;
  --c-line: #e8d3d8;
  --c-accent:   #bd8f98;  /* ★ テーマカラー（ブランドピンク） */
  --c-accent-2: #d8b3ba;  /* サブアクセント＝ライトローズ */
  --c-pink-deep: #8e6068; /* 文字向け濃ローズ（コントラスト確保） */
  --c-line-color: #06c755;

  --f-serif: "Noto Serif JP", "Cormorant Garamond", "Times New Roman", serif;
  --f-sans: "Noto Sans JP", -apple-system, "Helvetica Neue", Arial, sans-serif;
  --f-en: "Cormorant Garamond", "Noto Serif JP", serif;

  --w-max: 1180px;
  --w-narrow: 880px;

  --pad-section-y: clamp(80px, 12vw, 160px);
  --gap-section: clamp(60px, 8vw, 120px);

  --ease: cubic-bezier(.2, .65, .25, 1);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--c-bg);
  color: var(--c-ink);
  font-family: var(--f-sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.95;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity .3s var(--ease); }
a:hover { opacity: .65; }

em { font-style: normal; color: var(--c-accent); }
strong { font-weight: 600; }

.container {
  width: 100%;
  max-width: var(--w-max);
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}
.container--narrow { max-width: var(--w-narrow); }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 14px clamp(24px, 4vw, 48px);
  display: flex;
  justify-content: center;
  pointer-events: none;
  transition: background .4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 249, 245, 0.85);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--c-line);
}
.site-header__inner {
  width: 100%;
  max-width: var(--w-max);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  pointer-events: auto;
}
.logo { display: flex; align-items: center; gap: 16px; flex-shrink: 0; }
.logo__img {
  display: block;
  height: 52px;
  width: auto;
  object-fit: contain;
}
.logo__sub {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-ink-3);
  padding-left: 16px;
  border-left: 1px solid var(--c-line);
  line-height: 1;
}
@media (max-width: 600px) {
  .logo__img { height: 40px; }
  .logo__sub { display: none; }
}

/* ----- Site Nav ----- */
.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 28px);
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}
.site-nav a {
  position: relative;
  padding: 6px 0;
  color: var(--c-ink-2);
  transition: color .3s var(--ease);
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 0;
  height: 1px;
  background: var(--c-accent);
  transition: width .35s var(--ease), left .35s var(--ease);
}
.site-nav a:hover { color: var(--c-accent); opacity: 1; }
.site-nav a:hover::after { width: 100%; left: 0; }

.site-header__right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 22px;
  background: var(--c-ink);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: 0.18em;
  font-weight: 500;
  transition: transform .3s var(--ease), background .3s var(--ease);
}
.header-cta:hover { transform: translateY(-1px); background: var(--c-accent); opacity: 1; }
.header-cta__arrow { font-family: var(--f-en); }

/* ----- Hamburger toggle (mobile only) ----- */
.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--c-line);
  border-radius: 50%;
  padding: 0;
  cursor: pointer;
  position: relative;
  transition: background .3s var(--ease), border-color .3s var(--ease);
}
.nav-toggle:hover { background: rgba(255,255,255,.6); }
.nav-toggle span {
  position: absolute;
  left: 50%;
  width: 18px;
  height: 1px;
  background: var(--c-ink);
  transform: translateX(-50%);
  transition: transform .35s var(--ease), opacity .25s var(--ease), top .35s var(--ease);
}
.nav-toggle span:nth-child(1) { top: 17px; }
.nav-toggle span:nth-child(2) { top: 22px; }
.nav-toggle span:nth-child(3) { top: 27px; }
.nav-toggle.is-open span:nth-child(1) { top: 22px; transform: translateX(-50%) rotate(45deg); }
.nav-toggle.is-open span:nth-child(2) { opacity: 0; }
.nav-toggle.is-open span:nth-child(3) { top: 22px; transform: translateX(-50%) rotate(-45deg); }

/* ----- Drawer ----- */
.drawer {
  position: fixed;
  inset: 0;
  background: var(--c-bg);
  z-index: 95;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-12px);
  transition: opacity .5s var(--ease), transform .5s var(--ease), visibility .5s;
  overflow-y: auto;
}
.drawer.is-open {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.drawer__inner {
  min-height: 100vh;
  padding: 110px clamp(28px, 8vw, 60px) 60px;
  display: flex;
  flex-direction: column;
}
.drawer__eyebrow {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin: 0 0 32px;
  text-transform: uppercase;
}
.drawer__nav {
  display: flex;
  flex-direction: column;
  border-top: 1px solid var(--c-line);
}
.drawer__nav a {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 22px 4px;
  border-bottom: 1px solid var(--c-line);
  font-family: var(--f-serif);
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--c-ink);
}
.drawer__nav a span {
  font-family: var(--f-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  font-weight: 300;
}
.drawer__cta {
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 22px;
  background: var(--c-line-color);
  color: #fff;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.1em;
  margin-top: 40px;
  box-shadow: 0 12px 32px rgba(6, 199, 85, .2);
}

@media (max-width: 1024px) {
  .site-nav { display: none; }
  .nav-toggle { display: inline-block; }
}
@media (max-width: 600px) {
  .logo__sub { display: none; }
  .header-cta__label { display: none; }
  .header-cta { padding: 12px 16px; font-size: 14px; }
}

/* ============================================================
   Hero / FV
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  isolation: isolate;
  background: linear-gradient(180deg, #f6f1e7 0%, #ebe3d2 100%);
}
.hero__media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transform: scale(1.05);
  animation: heroBreath 16s var(--ease) infinite alternate;
}
.hero__overlay {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(251, 249, 245, .55) 0%, rgba(251, 249, 245, .82) 75%, rgba(244, 239, 231, .92) 100%),
    repeating-linear-gradient(90deg, rgba(255,255,255,0) 0 1px, transparent 1px 80px);
  z-index: -1;
  pointer-events: none;
}
@keyframes heroBreath {
  from { transform: scale(1.05) translateY(0); }
  to   { transform: scale(1.12) translateY(-12px); }
}
.hero__inner {
  position: relative;
  width: 100%;
  max-width: var(--w-max);
  padding: 160px clamp(24px, 5vw, 48px) 120px;
  text-align: center;
}
.hero__eyebrow {
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin: 0 0 36px;
  text-transform: uppercase;
}
.hero__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(34px, 6.5vw, 78px);
  line-height: 1.45;
  letter-spacing: 0.06em;
  margin: 0;
}
.hero__title span {
  display: block;
}
.hero__lead {
  margin: 48px 0 0;
  font-size: clamp(14px, 1.4vw, 16px);
  line-height: 2.2;
  color: var(--c-ink-2);
  letter-spacing: 0.12em;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-ink-3);
}
.hero__scroll i {
  display: block;
  width: 1px;
  height: 56px;
  background: linear-gradient(to bottom, var(--c-ink-3), transparent);
  animation: scrollLine 2.4s var(--ease) infinite;
  transform-origin: top;
}
@keyframes scrollLine {
  0%   { transform: scaleY(0); transform-origin: top; }
  50%  { transform: scaleY(1); transform-origin: top; }
  51%  { transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* ============================================================
   Section base
   ============================================================ */
.section {
  padding: var(--pad-section-y) 0;
  position: relative;
}
.section--brand     { background: var(--c-bg); }
.section--mission   { background: var(--c-bg-2); }
.section--philosophy{ background: var(--c-bg); }
.section--positions { background: var(--c-bg-2); }
.section--team      { background: var(--c-bg); }
.section--ceo       { background: linear-gradient(180deg, var(--c-bg-2) 0%, var(--c-bg-3) 100%); }
.section--day       { background: var(--c-bg); }
.section--req       { background: var(--c-bg-2); }
.section--flow      { background: var(--c-bg); }
.section--faq       { background: var(--c-bg-2); }

.section__head {
  text-align: center;
  margin: 0 0 clamp(48px, 7vw, 88px);
}
.section__no {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin: 0 0 18px;
}
.section__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(26px, 4vw, 44px);
  line-height: 1.55;
  letter-spacing: 0.06em;
  margin: 0;
}
.section__title--jp { line-height: 1.7; }
.section__title .nb { white-space: nowrap; }
.section__title--jp { font-size: clamp(21px, 2.9vw, 36px); }
.section__subtitle {
  margin: 16px 0 0;
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.32em;
  color: var(--c-ink-3);
  text-transform: uppercase;
}

.prose p {
  margin: 0 0 1.5em;
  color: var(--c-ink-2);
  font-size: 15px;
  line-height: 2.2;
  word-break: auto-phrase;
  text-wrap: pretty;
}
.prose p:last-child { margin-bottom: 0; }

/* ============================================================
   01 Brand grid
   ============================================================ */
.brand-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) {
  .brand-grid { grid-template-columns: 1fr; }
}
.brand-grid__text .section__no { text-align: left; }

.image-frame {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  background: var(--c-bg-3);
}
.image-frame--portrait { aspect-ratio: 4/5; }
.image-frame > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ============================================================
   02 Mission
   ============================================================ */
.mission-block {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 70px);
}
.mission-block__label {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin: 0 0 18px;
}
.mission-block__text {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(22px, 3.2vw, 34px);
  line-height: 1.75;
  letter-spacing: 0.08em;
  color: var(--c-ink);
  margin: 0;
}
.promise-grid {
  margin-top: clamp(60px, 8vw, 100px);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
@media (max-width: 880px) {
  .promise-grid { grid-template-columns: 1fr; }
}
.promise {
  position: relative;
  overflow: hidden;
  background: rgba(255,255,255,.55);
  border: 1px solid var(--c-line);
  padding: 40px 32px;
  text-align: center;
  transition: transform .5s var(--ease), background .5s var(--ease);
}
.promise:hover { transform: translateY(-4px); background: rgba(255,255,255,.85); }
.promise--accent {
  background: var(--c-ink);
  color: #f4eedc;
  border-color: var(--c-ink);
}
.promise__mark {
  position: absolute;
  right: -14%;
  bottom: -16%;
  width: 62%;
  max-width: 220px;
  height: auto;
  z-index: -1;
  pointer-events: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 2.5;
  color: var(--c-ink);
  opacity: .07;
}
.promise--accent .promise__mark { color: #f4eedc; opacity: .13; }
.promise--accent .promise__no { color: var(--c-accent-2); }
.promise--accent .promise__title,
.promise--accent .promise__text { color: #f4eedc; }
.promise__no {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin: 0 0 14px;
}
.promise__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 20px;
  letter-spacing: 0.1em;
  margin: 0 0 18px;
}
.promise__text {
  font-size: 13.5px;
  line-height: 2.0;
  color: var(--c-ink-2);
  margin: 0;
}

/* ============================================================
   03 Philosophy
   ============================================================ */
.philosophy-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}
.philosophy {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: clamp(24px, 4vw, 60px);
  padding: 44px 0;
  border-top: 1px solid var(--c-line);
  align-items: start;
}
.philosophy:last-child { border-bottom: 1px solid var(--c-line); }
@media (max-width: 720px) {
  .philosophy { grid-template-columns: 1fr; gap: 14px; padding: 36px 0; }
}
.philosophy__no {
  font-family: var(--f-en);
  font-size: 56px;
  font-weight: 300;
  font-style: italic;
  color: var(--c-accent);
  line-height: 1;
}
.philosophy__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 24px;
  letter-spacing: 0.12em;
  margin: 0 0 16px;
  display: flex;
  align-items: baseline;
  gap: 18px;
}
.philosophy__title span {
  font-family: var(--f-en);
  font-style: italic;
  font-weight: 300;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--c-ink-3);
}
.philosophy__text {
  margin: 0 0 14px;
  color: var(--c-ink-2);
  line-height: 2.0;
}
.philosophy__meet {
  margin: 0;
  font-size: 13px;
  color: var(--c-accent);
  letter-spacing: 0.06em;
  border-left: 2px solid var(--c-accent-2);
  padding-left: 14px;
}

/* ============================================================
   04 Positions
   ============================================================ */
.positions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
}
@media (max-width: 880px) {
  .positions { grid-template-columns: 1fr; }
}
.position {
  background: #fff;
  border: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
}
.position__visual { width: 100%; aspect-ratio: 4/3; overflow: hidden; background: var(--c-bg-3); }
.position__visual > img { width: 100%; height: 100%; object-fit: cover; display: block; }
.position__body { padding: 36px clamp(24px, 3vw, 40px) 40px; }
.position__tag {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.position__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 26px;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
}
.position__dl {
  margin: 0 0 28px;
}
.position__dl dt {
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-accent);
  margin: 18px 0 8px;
  text-transform: uppercase;
  font-weight: 500;
}
.position__dl dt:first-of-type { margin-top: 0; }
.position__dl dd {
  margin: 0;
  font-size: 14px;
  line-height: 2.0;
  color: var(--c-ink-2);
}
.position__voice {
  margin: 24px 0 0;
  padding: 20px;
  background: var(--c-bg-2);
  font-size: 13px;
  line-height: 1.9;
  color: var(--c-ink-2);
  font-family: var(--f-serif);
  letter-spacing: 0.06em;
}

/* ============================================================
   05 Team
   ============================================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}
@media (max-width: 1024px) { .team-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px)  { .team-grid { grid-template-columns: repeat(2, 1fr); } }

.member {
  margin: 0;
  display: flex;
  flex-direction: column;
}
.member__photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  margin-bottom: 18px;
  background: var(--c-bg-3);
}
.member__photo > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .8s var(--ease);
}
.member:hover .member__photo > img { transform: scale(1.04); }
.member__name {
  font-family: var(--f-serif);
  font-size: 16px;
  letter-spacing: 0.08em;
  margin: 0 0 4px;
  font-weight: 500;
}
.member__role {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--c-accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.member__quote {
  font-size: 12.5px;
  line-height: 1.85;
  color: var(--c-ink-2);
  margin: 0;
  font-family: var(--f-serif);
  letter-spacing: 0.04em;
}

/* ============================================================
   06 CEO
   ============================================================ */
.ceo {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
@media (max-width: 880px) { .ceo { grid-template-columns: 1fr; } }

.ceo__body .section__no { text-align: left; }
.ceo__body .section__title { text-align: left; }

.prose--ceo p {
  font-size: 15px;
  line-height: 2.3;
  color: var(--c-ink);
}
.signature {
  margin-top: 32px !important;
  font-family: var(--f-serif);
  font-style: italic;
  letter-spacing: 0.08em;
  color: var(--c-ink-2);
  font-size: 14px !important;
}

/* ============================================================
   07 Day
   ============================================================ */
.day-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
@media (max-width: 880px) { .day-tabs { grid-template-columns: 1fr; } }

.day-card {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 36px 30px;
}
.day-card__label {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--c-accent);
  margin: 0 0 12px;
  text-transform: uppercase;
}
.day-card__title {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.08em;
  margin: 0 0 28px;
}
.day-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.day-card__list li {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 16px;
  padding: 12px 0;
  border-top: 1px solid var(--c-line);
  font-size: 13.5px;
  color: var(--c-ink-2);
  align-items: baseline;
}
.day-card__list li:last-child { border-bottom: 1px solid var(--c-line); }
.day-card__list li span {
  font-family: var(--f-en);
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--c-accent);
}

.day-honest {
  margin-top: 60px;
  padding: 36px clamp(24px, 4vw, 48px);
  background: rgba(255,255,255,.5);
  border-left: 3px solid var(--c-accent);
}
.day-honest__title {
  font-family: var(--f-serif);
  font-size: 15px;
  letter-spacing: 0.1em;
  color: var(--c-accent);
  margin: 0 0 14px;
}
.day-honest p {
  margin: 0;
  font-size: 14px;
  line-height: 2.0;
  color: var(--c-ink-2);
}

/* ============================================================
   08 Requirements table
   ============================================================ */
.req-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  border: 1px solid var(--c-line);
}
.req-table th, .req-table td {
  padding: 22px 28px;
  text-align: left;
  border-bottom: 1px solid var(--c-line);
  vertical-align: top;
  font-size: 14px;
  line-height: 1.85;
}
.req-table tr:last-child th, .req-table tr:last-child td { border-bottom: none; }
.req-table th {
  width: 200px;
  background: var(--c-bg);
  font-weight: 500;
  color: var(--c-ink);
  letter-spacing: 0.1em;
  font-family: var(--f-serif);
}
.req-table td { color: var(--c-ink-2); }
@media (max-width: 600px) {
  .req-table th, .req-table td { display: block; width: 100%; padding: 14px 20px; }
  .req-table th { padding-bottom: 4px; }
}

.req-note {
  margin-top: 32px;
  text-align: center;
  font-size: 13px;
  color: var(--c-ink-3);
  line-height: 2.0;
}

/* ============================================================
   09 Flow
   ============================================================ */
.flow {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 1024px) { .flow { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .flow { grid-template-columns: 1fr; } }

.flow__step {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 28px 24px;
  position: relative;
  transition: transform .5s var(--ease);
}
.flow__step:hover { transform: translateY(-3px); }
.flow__no {
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.35em;
  color: var(--c-accent);
  display: block;
  margin-bottom: 12px;
}
.flow__step h3 {
  font-family: var(--f-serif);
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.06em;
  margin: 0 0 10px;
  line-height: 1.6;
}
.flow__step p {
  margin: 0;
  font-size: 13px;
  color: var(--c-ink-2);
  line-height: 1.85;
}
.flow__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 14px;
  padding: 8px 14px;
  background: var(--c-line-color);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  transition: transform .25s var(--ease);
}
.flow__link:hover { transform: translateY(-1px); opacity: 1; }

/* ============================================================
   10 FAQ
   ============================================================ */
.faq-list { display: flex; flex-direction: column; gap: 8px; }
.faq {
  background: #fff;
  border: 1px solid var(--c-line);
  padding: 0;
  overflow: hidden;
}
.faq summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 28px;
  font-family: var(--f-serif);
  font-size: 16px;
  letter-spacing: 0.06em;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  transition: background .3s var(--ease);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  font-family: var(--f-en);
  font-size: 22px;
  color: var(--c-accent);
  transition: transform .3s var(--ease);
  flex-shrink: 0;
}
.faq[open] summary::after { transform: rotate(45deg); }
.faq summary:hover { background: var(--c-bg); }
.faq p {
  margin: 0;
  padding: 0 28px 24px;
  font-size: 14px;
  line-height: 2.0;
  color: var(--c-ink-2);
}

/* ============================================================
   CTA
   ============================================================ */
.cta {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(174, 147, 105, .35) 0%, transparent 60%),
    radial-gradient(ellipse at 10% 90%, rgba(110, 91, 61, .35) 0%, transparent 60%),
    linear-gradient(180deg, #1f1c18 0%, #2a251d 100%);
  color: #f4eedc;
  padding: clamp(100px, 15vw, 180px) 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta::before {
  content: "";
  position: absolute; inset: 0;
  background: repeating-linear-gradient(90deg, rgba(255,255,255,.02) 0 1px, transparent 1px 80px);
  pointer-events: none;
}
.cta__inner {
  position: relative;
  max-width: 760px;
  margin: 0 auto;
  padding: 0 clamp(24px, 5vw, 48px);
}
.cta__eyebrow {
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.4em;
  color: var(--c-accent-2);
  margin: 0 0 28px;
}
.cta__title {
  font-family: var(--f-serif);
  font-weight: 400;
  font-size: clamp(28px, 4.5vw, 44px);
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin: 0;
  color: #f4eedc;
}
.cta__title em { color: var(--c-accent-2); }
.cta__lead {
  margin: 36px 0 56px;
  font-size: 14.5px;
  line-height: 2.2;
  color: #c5b896;
  letter-spacing: 0.1em;
}
.cta__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
.cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  padding: 22px 40px;
  background: var(--c-line-color);
  color: #fff;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.1em;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  box-shadow: 0 12px 40px rgba(6, 199, 85, .25);
}
.cta__btn:hover {
  transform: translateY(-3px);
  opacity: 1;
  box-shadow: 0 18px 50px rgba(6, 199, 85, .4);
}
.cta__btn-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  background: #fff;
  color: var(--c-line-color);
  border-radius: 50%;
  font-weight: 700;
  font-size: 16px;
  font-family: var(--f-en);
}
.cta__btn-arrow { font-family: var(--f-en); font-size: 18px; }
.cta__qr {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.cta__qr-box {
  width: 130px; height: 130px;
  background: #fff;
  border: 8px solid #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.cta__qr-box img { width: 100%; height: 100%; display: block; object-fit: contain; }
.cta__qr p {
  margin: 0;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--c-accent-2);
}

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--c-ink);
  color: #c5b896;
  padding: 80px 0 50px;
}
.site-footer__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: end;
}
@media (max-width: 720px) {
  .site-footer__inner { grid-template-columns: 1fr; align-items: start; }
}
.site-footer__logo-img {
  display: block;
  height: 30px;
  width: auto;
  margin: 0 0 16px;
  filter: brightness(0) invert(0.92) sepia(0.18) saturate(0.6);
}
.site-footer__brand .site-footer__company {
  margin: 0 0 4px;
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--c-accent-2);
}
.site-footer__brand .site-footer__copy {
  margin: 0;
  font-family: var(--f-en);
  font-style: italic;
  font-size: 13px;
  letter-spacing: 0.2em;
  color: #8a7d62;
}
.site-footer__nav {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 22px;
  font-family: var(--f-en);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}
.site-footer__nav a { color: #c5b896; }
.site-footer__small {
  grid-column: 1 / -1;
  margin: 60px 0 0;
  font-family: var(--f-en);
  font-size: 11px;
  letter-spacing: 0.3em;
  color: #6a604a;
  border-top: 1px solid #2e2820;
  padding-top: 30px;
}

/* ============================================================
   Animations / utilities
   ============================================================ */
.fade-in {
  opacity: 0;
  animation: fadeIn 1.2s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  animation: fadeUp 1.2s var(--ease) forwards;
  animation-delay: var(--d, 0s);
}
@keyframes fadeIn { to { opacity: 1; } }
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity 1.1s var(--ease) var(--d, 0s),
    transform 1.1s var(--ease) var(--d, 0s);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .fade-in, .fade-up, .reveal { animation: none !important; transition: none !important; opacity: 1 !important; transform: none !important; }
  .hero__bg { animation: none !important; }
  .hero__scroll i { animation: none !important; }
}

/* ============================================================
   2026-05 修正: ミーティング反映分（オーバーライド集約）
   ① 「細かい文字」を明朝体（Noto Serif JP）に統一
   ② Last CTA に「お話」セカンダリボタンを追加
   ③ Hero/Header の文字色をブランドピンクに馴染ませる
   ============================================================ */

/* ① 細かい文字は明朝体に */
.member__quote,
.philosophy__meet,
.position__voice,
.req-note,
.day-honest p,
.signature,
.section__subtitle,
.faq summary,
.faq p,
.cta__softnote,
.day-card__list,
.flow__step p,
.site-footer__small {
  font-family: var(--f-serif);
  letter-spacing: 0.05em;
}

/* 細部のアクセント色をピンクに */
em { color: var(--c-pink-deep); }
.section__no,
.philosophy__no,
.flow__no { color: var(--c-pink-deep); }
.promise--accent .promise__no { color: var(--c-accent-2); }

/* ② Last CTA セカンダリボタン（公式LINEで「お話」） */
.cta__btn--secondary {
  background: #fff;
  color: var(--c-pink-deep);
  border: 1px solid var(--c-accent);
  box-shadow: none;
}
.cta__btn--secondary:hover {
  background: var(--c-bg-2);
  opacity: 1;
}
.cta__btn--secondary .cta__btn-icon {
  background: var(--c-accent);
  color: #fff;
}

.cta__softnote {
  margin-top: 24px;
  text-align: center;
  font-size: 13px;
  color: var(--c-ink-2);
  line-height: 1.9;
}

.cta__actions {
  flex-wrap: wrap;
  justify-content: center;
}

/* ③ Header CTA はピンク寄りのアクセントに */
.header-cta { background: var(--c-pink-deep); }
.header-cta:hover { background: var(--c-accent); }

/* Drawer CTA はLINEグリーンのまま（応募行動が明示的なため変更しない） */

/* Member名前は明朝体のまま強調をピンクで */
.member__name {
  font-family: var(--f-serif);
  color: var(--c-ink);
}
.member__role {
  color: var(--c-pink-deep);
}

/* 日本語の不自然な折り返し対策 */
.philosophy__text, .philosophy__meet, .promise__text, .position__dl dd, .req-note { word-break: auto-phrase; text-wrap: pretty; }
