/* =========================================================
 * 株式会社BTH コーポレートサイト style.css
 * 設計：素のHTML 3ページ共通スタイル
 * 配色：キー #A1B5C3（柔らかな青灰）／ ディープ #1F2E3A（文字・濃色背景用）／ ゴールド #B89968 / オフホワイト / チャコール
 * タイポ：Noto Sans JP（日本語）/ Inter（英数字）
 * ========================================================= */

/* -- Reset & Base ----------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { font-size: 16px; scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Yu Gothic', Meiryo, sans-serif;
  font-feature-settings: "palt";
  color: var(--c-text);
  background: var(--c-bg);
  line-height: 1.8;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img, svg, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.2s ease; }
a:hover { opacity: 0.7; }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { padding: 0; margin: 0; list-style: none; }
h1, h2, h3, h4, h5, h6 { margin: 0; font-weight: 700; letter-spacing: 0.05em; line-height: 1.5; }
p { margin: 0; }

/* -- Design Tokens ---------------------------------------- */
:root {
  /* Colors
     v3 (2026-05-11): キーカラーを #a1b5c3（柔らかな青灰）に変更。
     文字・見出しなど白背景で可読性が必要な場面では --c-navy-deep を使用。 */
  --c-navy: #A1B5C3;          /* ← KEY COLOR：柔らかな青灰（旧 #0F2A44 から差し替え） */
  --c-navy-dark: #7E96A6;     /* キー色の濃いめ派生（ボーダー・ホバー用） */
  --c-navy-light: #C4D2DC;    /* キー色の淡い派生（背景・面） */
  --c-navy-tint: #E8EEF2;     /* キー色のごく淡いウォッシュ（薄背景） */
  --c-navy-deep: #2D4356;     /* TEXT/HEADING/濃色背景用（旧 #1F2E3A から少し明るくし可読性を担保） */
  --c-navy-deeper: #1B2A38;   /* フッターなど最も深い箇所 */
  --c-gold: #B89968;
  --c-gold-light: #D4B98A;
  --c-gold-dark: #9A7E50;
  --c-white: #FFFFFF;
  --c-off-white: #F7F4EE;
  --c-cream: #FAF8F3;
  --c-charcoal: #2A2A2A;
  --c-text: #2A2A2A;
  --c-text-light: #5A5A5A;
  --c-text-muted: #8A8A8A;
  --c-border: rgba(31, 46, 58, 0.12);
  --c-border-strong: rgba(31, 46, 58, 0.24);
  --c-bg: #FAF8F3;
  --c-bg-alt: #FFFFFF;

  /* Spacing scale */
  --sp-1: 0.25rem; /* 4px */
  --sp-2: 0.5rem;
  --sp-3: 0.75rem;
  --sp-4: 1rem;
  --sp-5: 1.5rem;
  --sp-6: 2rem;
  --sp-7: 3rem;
  --sp-8: 4rem;
  --sp-9: 6rem;
  --sp-10: 8rem;

  /* Typography scale */
  --fs-xs: 0.75rem;
  --fs-sm: 0.875rem;
  --fs-base: 1rem;
  --fs-md: 1.125rem;
  --fs-lg: 1.375rem;
  --fs-xl: 1.75rem;
  --fs-2xl: 2.25rem;
  --fs-3xl: 3rem;
  --fs-4xl: 4rem;

  /* Container widths */
  --w-narrow: 720px;
  --w-base: 960px;
  --w-wide: 1200px;
  --w-full: 1440px;

  /* Header height */
  --h-header: 80px;

  /* Easings */
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(31, 46, 58, 0.06);
  --shadow-md: 0 6px 24px rgba(31, 46, 58, 0.08);
  --shadow-lg: 0 16px 48px rgba(31, 46, 58, 0.14);
  --shadow-gold: 0 12px 32px rgba(184, 153, 104, 0.18);

  /* Typefaces */
  --font-sans: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', 'Yu Gothic Medium', 'Yu Gothic', Meiryo, sans-serif;
  --font-serif: 'Noto Serif JP', 'Hiragino Mincho ProN', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho Pro', serif;
  --font-en: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', sans-serif;
}

/* -- Layout Utilities ------------------------------------- */
.container { width: 100%; max-width: var(--w-wide); margin: 0 auto; padding: 0 var(--sp-5); }
.container--narrow { max-width: var(--w-narrow); }
.container--base { max-width: var(--w-base); }
.container--full { max-width: var(--w-full); }

.section { padding: var(--sp-10) 0; position: relative; }
.section--compact { padding: var(--sp-9) 0; }
.section--alt { background: var(--c-bg-alt); }
.section--dark { background: var(--c-navy-deep); color: var(--c-white); }
.section--cream { background: var(--c-cream); }

@media (max-width: 768px) {
  .section { padding: var(--sp-8) 0; }
  .section--compact { padding: var(--sp-7) 0; }
}

/* -- Section Heading -------------------------------------- */
.eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--c-gold);
  margin-bottom: var(--sp-4);
  position: relative;
  padding-left: 0;
}
/* eyebrow 左の装飾線は削除（シンプル表記へ） */
.section--dark .eyebrow { color: var(--c-gold-light); }

.section-title {
  font-size: var(--fs-2xl);
  line-height: 1.4;
  margin-bottom: var(--sp-5);
  color: var(--c-navy-deep);
}
.section--dark .section-title { color: var(--c-white); }

.section-lead {
  font-size: var(--fs-md);
  line-height: 2.0;
  color: var(--c-text-light);
  max-width: 820px;
}
/* 中央寄せ用ユーティリティ：text-align:center だけだと block が左寄せのまま残るため
   margin-inline: auto と組み合わせて使用 */
.section-lead--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section--dark .section-lead { color: rgba(255, 255, 255, 0.85); }

@media (max-width: 768px) {
  .section-title { font-size: var(--fs-xl); }
  .section-lead { font-size: var(--fs-base); }
}

/* -- Buttons ---------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  padding: 0.95rem 2rem;
  font-size: var(--fs-sm);
  font-weight: 600;
  letter-spacing: 0.1em;
  border: 1.5px solid transparent;
  border-radius: 2px;
  transition: all 0.3s var(--ease-out);
  text-decoration: none;
  white-space: nowrap;
}
.btn--primary {
  background: var(--c-navy-deep);
  color: var(--c-white);
  border-color: var(--c-navy-deep);
}
.btn--primary:hover {
  background: var(--c-navy-dark);
  border-color: var(--c-navy-dark);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--gold {
  background: var(--c-gold);
  color: var(--c-white);
  border-color: var(--c-gold);
}
.btn--gold:hover {
  background: var(--c-gold-dark);
  border-color: var(--c-gold-dark);
  opacity: 1;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn--outline {
  background: transparent;
  color: var(--c-navy-deep);
  border-color: var(--c-navy-deep);
}
.btn--outline:hover {
  background: var(--c-navy-deep);
  color: var(--c-white);
  opacity: 1;
}
.section--dark .btn--outline,
.contact-cta .btn--outline,
.hero .btn--outline,
.recruit-hero .btn--outline,
.stats .btn--outline {
  color: var(--c-white);
  border-color: rgba(255, 255, 255, 0.7);
  background: transparent;
}
.section--dark .btn--outline:hover,
.contact-cta .btn--outline:hover,
.hero .btn--outline:hover,
.recruit-hero .btn--outline:hover,
.stats .btn--outline:hover {
  background: var(--c-white);
  color: var(--c-navy-deep);
  border-color: var(--c-white);
}
.btn__arrow { font-size: 1.1em; transition: transform 0.3s var(--ease-out); }
.btn:hover .btn__arrow { transform: translateX(4px); }

/* -- Header ----------------------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: saturate(180%) blur(12px);
  -webkit-backdrop-filter: saturate(180%) blur(12px);
  border-bottom: 1px solid var(--c-border);
  transition: all 0.3s var(--ease-out);
}
.site-header__inner {
  height: var(--h-header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--w-full);
  margin: 0 auto;
  padding: 0 var(--sp-6);
}
.site-header__logo {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}
.site-header__logo-mark {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.15em;
  color: var(--c-navy-deep);
}
.site-header__logo-sub {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  letter-spacing: 0.2em;
}
/* コーポレートロゴ画像（ヘッダー：淡背景 → 黒ロゴ） */
.site-header__logo-img {
  display: block;
  height: 44px;
  width: auto;
}
@media (max-width: 768px) {
  .site-header__logo-sub { display: none; }
  .site-header__logo-img { height: 38px; }
}
.site-header__nav {
  display: flex;
  align-items: center;
  gap: var(--sp-6);
}
.site-header__nav-list {
  display: flex;
  gap: var(--sp-6);
}
.site-header__nav-link {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--c-text);
  position: relative;
  padding: var(--sp-2) 0;
}
.site-header__nav-link::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--c-gold);
  transition: width 0.3s var(--ease-out);
}
.site-header__nav-link:hover { opacity: 1; }
.site-header__nav-link:hover::after { width: 100%; }
.site-header__tel {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-base);
  font-weight: 600;
  color: var(--c-navy-deep);
  letter-spacing: 0.05em;
}
.site-header__menu-btn {
  display: none;
  width: 40px; height: 40px;
  align-items: center;
  justify-content: center;
  position: relative;
}
.site-header__menu-btn span {
  position: absolute;
  left: 8px; right: 8px;
  height: 1.5px;
  background: var(--c-navy-deep);
  transition: all 0.3s var(--ease-out);
}
.site-header__menu-btn span:nth-child(1) { top: 14px; }
.site-header__menu-btn span:nth-child(2) { top: 19px; }
.site-header__menu-btn span:nth-child(3) { top: 24px; }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(1) { top: 19px; transform: rotate(45deg); }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.site-header__menu-btn[aria-expanded="true"] span:nth-child(3) { top: 19px; transform: rotate(-45deg); }

@media (max-width: 960px) {
  .site-header__nav-list, .site-header__tel { display: none; }
  .site-header__menu-btn { display: flex; }
  .site-header__nav.is-open .site-header__nav-list,
  .site-header__nav.is-open .site-header__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: var(--h-header);
    left: 0; right: 0;
    background: var(--c-white);
    padding: var(--sp-6);
    gap: var(--sp-5);
    border-bottom: 1px solid var(--c-border);
    box-shadow: var(--shadow-md);
  }
  .site-header__nav.is-open .site-header__tel { padding-top: 0; }
}

main { padding-top: var(--h-header); }

/* -- Hero ------------------------------------------------- */
.hero {
  position: relative;
  min-height: calc(100vh - var(--h-header));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--c-navy-deep);
  color: var(--c-white);
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--c-navy-deeper);
}
.hero__bg::before {
  /* 背景画像レイヤー：軽くぼかして彩度を落とし、テキストの主張を妨げないトーンに */
  content: "";
  position: absolute;
  inset: -20px; /* blurによる端のフェードを隠す */
  background-image: url('../img/hero-bg.jpg');
  background-size: cover;
  background-position: center;
  filter: blur(3px) saturate(0.78) brightness(0.92);
  transform: scale(1.03);
  z-index: 0;
}
.hero__bg::after {
  /* オーバーレイ：左側のテキスト下にうっすらだけ暗さを残し、
     画像本来の世界観を最大限活かす */
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse at 85% 85%, rgba(184, 153, 104, 0.08) 0%, transparent 55%),
    linear-gradient(90deg,
      rgba(20, 32, 44, 0.45) 0%,
      rgba(20, 32, 44, 0.28) 45%,
      rgba(20, 32, 44, 0.14) 80%,
      rgba(20, 32, 44, 0.06) 100%),
    linear-gradient(180deg,
      rgba(20, 32, 44, 0.06) 0%,
      rgba(20, 32, 44, 0.02) 35%,
      rgba(20, 32, 44, 0.12) 100%);
  z-index: 1;
  pointer-events: none;
}
.hero__inner {
  position: relative;
  z-index: 1;
  max-width: var(--w-wide);
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-5) var(--sp-9);
  width: 100%;
}
.hero__eyebrow {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.4em;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-5);
  padding-left: 56px;
  position: relative;
}
.hero__eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 40px; height: 1px;
  background: var(--c-gold-light);
}
.hero__title {
  font-size: var(--fs-3xl);
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: var(--sp-5);
  max-width: 920px;
}
.hero__title strong {
  font-weight: 700;
  color: var(--c-gold-light);
}
.hero__sub {
  font-size: var(--fs-md);
  line-height: 2.0;
  color: rgba(255, 255, 255, 0.85);
  max-width: 720px;
  margin-bottom: var(--sp-8);
}
.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  margin-bottom: var(--sp-9);
}
.hero__stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: var(--sp-6);
  max-width: 920px;
}
.hero__stat-item dt {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.2em;
  margin-bottom: var(--sp-2);
}
.hero__stat-item dd {
  margin: 0;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-white);
}
.hero__stat-item dd .unit { font-size: 0.5em; margin-left: 0.2em; color: var(--c-gold-light); }

@media (max-width: 960px) {
  .hero__title { font-size: var(--fs-2xl); }
}
@media (max-width: 768px) {
  .hero { min-height: auto; }
  .hero__title { font-size: 1.5rem; line-height: 1.6; }
  .hero__inner { padding: var(--sp-9) var(--sp-5) var(--sp-7); }
  .hero__stats { grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); }
}

/* -- Scroll Indicator ------------------------------------- */
.scroll-indicator {
  position: absolute;
  left: 50%; bottom: var(--sp-5);
  transform: translateX(-50%);
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  color: rgba(255, 255, 255, 0.72);
  z-index: 1;
}
.scroll-indicator::after {
  content: '';
  display: block;
  width: 1px; height: 36px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5), transparent);
  margin: var(--sp-2) auto 0;
  animation: scroll-pulse 2s ease-out infinite;
}
@keyframes scroll-pulse {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  51% { transform: scaleY(1); transform-origin: bottom; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

/* -- About Lead ------------------------------------------- */
.about-lead {
  font-size: var(--fs-md);
  line-height: 2.2;
  color: var(--c-text-light);
}
.about-lead strong {
  color: var(--c-navy-deep);
  font-weight: 600;
}
.about-lead--center { text-align: center; max-width: 720px; margin: 0 auto; }

/* -- Brand Story (Bound to Happen) ------------------------ */
.brand-story {
  background: var(--c-navy-deep);
  color: var(--c-white);
  padding: var(--sp-10) 0;
  position: relative;
  overflow: hidden;
}
.brand-story::before {
  content: 'BOUND TO HAPPEN';
  position: absolute;
  right: -50px; bottom: -40px;
  font-family: 'Inter', sans-serif;
  font-size: 12rem;
  font-weight: 800;
  letter-spacing: -0.05em;
  color: rgba(184, 153, 104, 0.05);
  white-space: nowrap;
  pointer-events: none;
}
.brand-story__title {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-3xl);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-2);
}
.brand-story__title-jp {
  font-size: var(--fs-md);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-6);
}
.brand-story__body p {
  font-size: var(--fs-base);
  line-height: 2.2;
  color: rgba(255, 255, 255, 0.92);
  margin-bottom: var(--sp-4);
}
.brand-story__body p strong {
  color: var(--c-gold-light);
  font-weight: 600;
}
@media (max-width: 768px) {
  .brand-story::before { font-size: 5rem; }
  .brand-story__title { font-size: var(--fs-2xl); }
}

/* -- Philosophy / Vision ---------------------------------- */
.philo {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-9);
  max-width: var(--w-base);
  margin: 0 auto;
}
.philo__block {
  position: relative;
  padding-left: var(--sp-6);
  border-left: 2px solid var(--c-gold);
}
.philo__title {
  font-size: var(--fs-lg);
  color: var(--c-navy-deep);
  margin-bottom: var(--sp-4);
}
.philo__quote {
  font-size: var(--fs-xl);
  font-weight: 500;
  line-height: 1.8;
  color: var(--c-navy-deep);
  margin-bottom: var(--sp-4);
}
.philo__quote em {
  font-style: normal;
  background: linear-gradient(transparent 60%, rgba(184, 153, 104, 0.25) 60%);
  padding: 0 0.1em;
}
.philo__body {
  font-size: var(--fs-base);
  line-height: 2.0;
  color: var(--c-text-light);
}
.philo__body p + p { margin-top: var(--sp-4); }

/* -- "Hiraku" Decoder ------------------------------------- */
.hiraku {
  background: var(--c-cream);
  padding: var(--sp-10) 0;
}
.hiraku__intro {
  text-align: center;
  font-size: var(--fs-base);
  line-height: 2.0;
  color: var(--c-text-light);
  max-width: 640px;
  margin: 0 auto var(--sp-8);
}
.hiraku__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  max-width: var(--w-base);
  margin: 0 auto;
}
.hiraku__card {
  background: var(--c-white);
  padding: var(--sp-7) var(--sp-6);
  border-top: 3px solid var(--c-gold);
  position: relative;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.hiraku__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}
.hiraku__card-kanji {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  line-height: 1;
  margin-bottom: var(--sp-3);
  font-family: 'Yu Mincho', 'YuMincho', '游明朝', serif;
}
.hiraku__card-reading {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: var(--sp-5);
  text-transform: uppercase;
}
.hiraku__card-body {
  font-size: var(--fs-sm);
  line-height: 2.0;
  color: var(--c-text-light);
}
.hiraku__card-body + .hiraku__card-body {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px dashed rgba(184, 153, 104, 0.25);
}
.hiraku__outro {
  text-align: center;
  margin-top: var(--sp-7);
  font-size: var(--fs-md);
  line-height: 2.0;
  color: var(--c-navy-deep);
  font-weight: 500;
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
@media (max-width: 768px) {
  .hiraku__cards { grid-template-columns: 1fr; gap: var(--sp-4); }
  .hiraku__card-kanji { font-size: 3rem; }
}

/* -- Department VMV --------------------------------------- */
.dept {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-7);
}
.dept__card {
  background: var(--c-white);
  padding: var(--sp-7);
  border: 1px solid var(--c-border);
  position: relative;
}
.dept__card-header {
  border-bottom: 1px solid var(--c-border);
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
}
.dept__card-header--with-logo {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
}
.dept__card-titles {
  flex: 1 1 auto;
  min-width: 0;
}
.dept__card-logo {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  padding: 6px;
  background: var(--c-navy-tint);
  border-radius: 50%;
}
.dept__card-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}
@media (max-width: 480px) {
  .dept__card-logo {
    width: 52px;
    height: 52px;
  }
}
.dept__card-en {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
}
.dept__card-name {
  font-size: var(--fs-xl);
  color: var(--c-navy-deep);
}
.dept__row {
  margin-bottom: var(--sp-5);
}
.dept__row:last-child { margin-bottom: 0; }
.dept__row-label {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: var(--sp-2);
  text-transform: uppercase;
}
.dept__row-text {
  font-size: var(--fs-base);
  line-height: 1.9;
  color: var(--c-text);
  font-weight: 500;
}
.dept__row-text--vision {
  font-size: var(--fs-md);
  color: var(--c-navy-deep);
  font-weight: 600;
}
.dept__values {
  list-style: none;
  padding: 0;
}
.dept__values li {
  padding-left: var(--sp-5);
  position: relative;
  font-size: var(--fs-sm);
  line-height: 1.9;
  color: var(--c-text-light);
}
.dept__values li + li { margin-top: var(--sp-2); }
.dept__values li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85em;
  width: 12px; height: 1px;
  background: var(--c-gold);
}
.dept__brand-bridge {
  text-align: center;
  margin-top: var(--sp-7);
  padding: var(--sp-5);
  background: var(--c-navy-deep);
  color: var(--c-white);
  border-radius: 2px;
  font-size: var(--fs-sm);
  letter-spacing: 0.1em;
}
.dept__brand-bridge strong { color: var(--c-gold-light); font-weight: 600; }

@media (max-width: 768px) {
  .dept { grid-template-columns: 1fr; gap: var(--sp-5); }
  .dept__card { padding: var(--sp-6); }
}

/* -- Cycle Model SVG -------------------------------------- */
.cycle {
  background: var(--c-cream);
}
.cycle__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-7);
  max-width: var(--w-base);
  margin: 0 auto;
}
.cycle__text {
  max-width: var(--w-narrow);
  text-align: center;
}
.cycle__text p {
  font-size: var(--fs-base);
  line-height: 2.1;
  color: var(--c-text-light);
}
.cycle__text p + p { margin-top: var(--sp-4); }
.cycle__svg-wrap {
  position: relative;
  aspect-ratio: 1 / 1;
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cycle__svg-wrap { max-width: 420px; }
}

/* === 循環モデルSVG：外周チェブロンの初回回転 ===
   実体のアニメーションは JS で SVG の transform 属性を更新（中心 240,240 軸）。
   ここでは描画ヒントと reduced-motion 対応のみ。 */
.cycle__orbit {
  will-change: transform;
}

/* 中心円のやわらかな呼吸（軸の存在感） */
@keyframes cycle-pulse {
  0%, 100% { opacity: 1; }
  50%      { opacity: 0.92; }
}
.cycle__svg-wrap svg > circle[cx="240"][cy="240"][r="72"] {
  animation: cycle-pulse 5s ease-in-out infinite;
}

@media (prefers-reduced-motion: reduce) {
  .cycle__svg-wrap svg > circle[cx="240"][cy="240"][r="72"] {
    animation: none;
  }
}

/* -- Services (5 Cards) ----------------------------------- */
.services {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
.service-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: var(--sp-6);
  display: flex;
  flex-direction: column;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out), border-color 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--c-gold);
}
.service-card--coming {
  background: linear-gradient(180deg, var(--c-cream), var(--c-white));
}
.service-card__num {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--c-gold);
  margin-bottom: var(--sp-3);
}
.service-card__title {
  font-size: var(--fs-lg);
  color: var(--c-navy-deep);
  margin-bottom: var(--sp-2);
}
.service-card__sub {
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  color: var(--c-gold-dark);
  margin-bottom: var(--sp-4);
}
.service-card__lead {
  font-size: var(--fs-sm);
  line-height: 1.9;
  color: var(--c-navy-deep);
  font-weight: 500;
  margin-bottom: var(--sp-4);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-border);
}
.service-card__body {
  font-size: var(--fs-sm);
  line-height: 1.95;
  color: var(--c-text-light);
  flex: 1;
  margin-bottom: var(--sp-5);
}
.service-card__cta {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: var(--c-navy-deep);
  font-weight: 600;
  text-transform: uppercase;
  align-self: flex-start;
}
.service-card__cta::after {
  content: '→';
  transition: transform 0.3s var(--ease-out);
}
.service-card__cta:hover { opacity: 1; }
.service-card__cta:hover::after { transform: translateX(4px); }
.service-card__badge {
  display: inline-block;
  font-size: var(--fs-xs);
  padding: 0.2em 0.8em;
  background: var(--c-gold);
  color: var(--c-white);
  letter-spacing: 0.1em;
  margin-bottom: var(--sp-3);
}
@media (max-width: 960px) {
  .services { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .services { grid-template-columns: 1fr; }
}

/* -- 3 Promises ------------------------------------------- */
.promises {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--sp-7);
  max-width: var(--w-base);
  margin: 0 auto;
}
.promise {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: var(--sp-6);
  align-items: start;
}
.promise__num {
  font-family: 'Inter', sans-serif;
  font-size: 4rem;
  font-weight: 200;
  line-height: 1;
  color: var(--c-gold);
  letter-spacing: -0.02em;
}
.promise__title {
  font-size: var(--fs-xl);
  color: var(--c-navy-deep);
  margin-bottom: var(--sp-4);
  line-height: 1.5;
}
.promise__body {
  font-size: var(--fs-base);
  line-height: 2.1;
  color: var(--c-text-light);
}
.promise__body p + p { margin-top: var(--sp-4); }
@media (max-width: 768px) {
  .promise { grid-template-columns: 1fr; gap: var(--sp-3); }
  .promise__num { font-size: 3rem; }
  .promise__title { font-size: var(--fs-lg); }
}

/* -- Stats / Numbers -------------------------------------- */
.stats {
  background: var(--c-navy-deep);
  color: var(--c-white);
}
/* 暗背景セクション（stats / contact-cta / recruit-hero）の見出し・リードを白系に上書き
   var(--c-navy-deep) のままだと背景と同色になり読めない問題を修正 */
.stats .section-title,
.contact-cta .section-title,
.recruit-hero .section-title,
.contact-cta__title {
  color: var(--c-white);
}
.stats .section-lead,
.contact-cta .section-lead,
.recruit-hero .section-lead,
.contact-cta__lead {
  color: rgba(255, 255, 255, 0.88);
}
.stats .section-lead p,
.contact-cta .section-lead p {
  color: rgba(255, 255, 255, 0.88);
}
.stats .eyebrow,
.contact-cta .eyebrow,
.recruit-hero .eyebrow {
  color: var(--c-gold-light);
}
.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
}
.stat {
  text-align: center;
  padding: var(--sp-5) var(--sp-3);
  border-right: 1px solid rgba(255, 255, 255, 0.1);
}
.stat:last-child { border-right: none; }
.stat__num {
  font-family: 'Inter', sans-serif;
  font-size: 3.5rem;
  font-weight: 600;
  color: var(--c-gold-light);
  line-height: 1;
  margin-bottom: var(--sp-3);
  letter-spacing: -0.02em;
}
.stat__num .unit { font-size: 0.4em; margin-left: 0.2em; color: rgba(255, 255, 255, 0.7); }
.stat__label {
  font-size: var(--fs-xs);
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.7);
  text-transform: uppercase;
}
@media (max-width: 768px) {
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat { border-right: none; border-bottom: 1px solid rgba(255, 255, 255, 0.1); padding-bottom: var(--sp-5); }
  .stat:nth-child(odd) { border-right: 1px solid rgba(255, 255, 255, 0.1); }
  .stat:last-child, .stat:nth-last-child(2) { border-bottom: none; }
  .stat__num { font-size: 2.5rem; }
}

/* -- Strategy (3 Phases) ---------------------------------- */
.strategy {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  position: relative;
}
.strategy::before {
  content: '';
  position: absolute;
  left: 5%; right: 5%;
  top: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--c-gold) 20%, var(--c-gold) 80%, transparent);
  z-index: 0;
}
.phase {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  padding: var(--sp-6);
  position: relative;
  z-index: 1;
}
.phase__layer {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  color: var(--c-gold);
  margin-bottom: var(--sp-3);
  text-transform: uppercase;
}
.phase__title {
  font-size: var(--fs-md);
  color: var(--c-navy-deep);
  margin-bottom: var(--sp-4);
  line-height: 1.6;
  /* 日本語カタカナ語が途中で改行されるのを防ぐ */
  word-break: keep-all;
  overflow-wrap: anywhere;
  text-wrap: balance;
}
.phase__body {
  font-size: var(--fs-sm);
  line-height: 2.0;
  color: var(--c-text-light);
}
@media (max-width: 768px) {
  .strategy { grid-template-columns: 1fr; }
  .strategy::before { display: none; }
}

/* -- Media / Press Section -------------------------------- */
.media-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  max-width: var(--w-base);
  margin: 0 auto;
  border-top: 1px solid var(--c-border);
}
.media-item {
  display: grid;
  grid-template-columns: 140px 120px 1fr;
  gap: var(--sp-5);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--c-border);
  align-items: baseline;
  transition: background 0.3s var(--ease-out);
}
.media-item:hover { background: rgba(184, 153, 104, 0.03); }
.media-item__date {
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-sm);
  color: var(--c-text-muted);
  letter-spacing: 0.05em;
}
.media-item__category {
  font-size: var(--fs-xs);
  letter-spacing: 0.15em;
  padding: 0.25em 0.8em;
  background: var(--c-cream);
  color: var(--c-navy-deep);
  border: 1px solid var(--c-border);
  text-align: center;
  border-radius: 2px;
  justify-self: start;
}
.media-item__title {
  font-size: var(--fs-base);
  color: var(--c-text);
  line-height: 1.7;
}
@media (max-width: 768px) {
  .media-item {
    grid-template-columns: 100px 1fr;
    grid-template-rows: auto auto;
  }
  .media-item__category { grid-column: 2; grid-row: 1; }
  .media-item__title { grid-column: 1 / -1; grid-row: 2; }
}

/* -- Instagram Embed -------------------------------------- */
.instagram-embed {
  background: var(--c-cream);
  text-align: center;
}
.instagram-embed__placeholder {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
  max-width: var(--w-base);
  margin: 0 auto;
}
.instagram-embed__cell {
  aspect-ratio: 1;
  background: var(--c-white);
  border: 1px solid var(--c-border);
  position: relative;
  overflow: hidden;
}
.instagram-embed__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: saturate(0.95);
  transition: transform 0.5s var(--ease-out), filter 0.5s var(--ease-out);
}
.instagram-embed__cell:hover img {
  transform: scale(1.05);
  filter: saturate(1.1);
}
.instagram-embed__note {
  margin-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
}
@media (max-width: 768px) {
  .instagram-embed__placeholder { grid-template-columns: repeat(2, 1fr); }
}

/* -- Voice CTA (Instagram link, recruit page) ------------- */
.voice-cta-section {
  background:
    radial-gradient(120% 80% at 50% 0%, rgba(184, 153, 104, 0.06) 0%, transparent 60%),
    linear-gradient(180deg, var(--c-navy-tint) 0%, var(--c-cream) 100%);
}
.voice-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--sp-3);
  margin-top: var(--sp-5);
}
.btn-insta {
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  padding: 1.05rem 1.6rem 1.05rem 1.25rem;
  min-width: 320px;
  max-width: 100%;
  background:
    linear-gradient(135deg,
      #F58529 0%,
      #DD2A7B 32%,
      #8134AF 68%,
      #515BD4 100%);
  color: var(--c-white);
  border: none;
  border-radius: 999px;
  box-shadow:
    0 12px 28px rgba(221, 42, 123, 0.28),
    0 4px 10px rgba(81, 91, 212, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
  font-family: var(--ff-sans);
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition:
    transform 0.35s var(--ease-out),
    box-shadow 0.35s var(--ease-out),
    filter 0.35s var(--ease-out);
  position: relative;
  overflow: hidden;
}
.btn-insta::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, transparent 40%, rgba(255, 255, 255, 0.25) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.7s var(--ease-out);
  pointer-events: none;
}
.btn-insta:hover {
  transform: translateY(-2px);
  box-shadow:
    0 18px 36px rgba(221, 42, 123, 0.35),
    0 6px 14px rgba(81, 91, 212, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.35);
  filter: saturate(1.05);
  color: var(--c-white);
}
.btn-insta:hover::before {
  transform: translateX(100%);
}
.btn-insta:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
}
.btn-insta__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--c-white);
  flex-shrink: 0;
}
.btn-insta__label {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.2;
  text-align: left;
}
.btn-insta__sub {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.85;
}
.btn-insta__handle {
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.btn-insta__arrow {
  margin-left: auto;
  font-size: 1.15rem;
  transition: transform 0.35s var(--ease-out);
}
.btn-insta:hover .btn-insta__arrow {
  transform: translateX(4px);
}
.voice-cta__note {
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  margin: 0;
}
@media (max-width: 540px) {
  .btn-insta {
    min-width: 0;
    width: 100%;
    padding: 0.95rem 1.2rem 0.95rem 1rem;
    gap: 0.7rem;
  }
  .btn-insta__icon {
    width: 36px;
    height: 36px;
  }
  .btn-insta__icon svg {
    width: 18px;
    height: 18px;
  }
  .btn-insta__handle {
    font-size: 0.95rem;
  }
}

/* -- Contact CTA ------------------------------------------ */
.contact-cta {
  background: var(--c-navy-deep);
  color: var(--c-white);
  text-align: center;
  /* セクション標準の var(--sp-9)（6rem）を少し縮めて、装飾バンドとの呼吸を整える */
  padding-top: var(--sp-8);
  padding-bottom: var(--sp-8);
}
.contact-cta__title {
  font-size: var(--fs-2xl);
  margin-bottom: var(--sp-4);
  color: var(--c-white);
}
.contact-cta__lead {
  font-size: var(--fs-md);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-6);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}
.contact-cta__buttons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: var(--sp-3);
}

/* -- Footer ----------------------------------------------- */
.site-footer {
  background: linear-gradient(180deg, var(--c-navy-deep) 0%, var(--c-navy-deeper) 100%);
  color: var(--c-white);
  padding: 0 0 var(--sp-5);
  position: relative;
}

/* 装飾バンド：聴診器→Libre→搬送車の線画を全幅でフッター上部に配置
   （株式会社つくし社の参考イメージに準拠） */
.site-footer__band {
  position: relative;
  padding: 2.25rem 0 1.75rem;
  background:
    radial-gradient(ellipse at center top, rgba(161, 181, 195, 0.16) 0%, transparent 65%),
    var(--c-navy-deep);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  overflow: hidden;
}
.site-footer__band::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, rgba(161, 181, 195, 0.6) 50%, transparent 100%);
}
.site-footer__band-inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 var(--sp-6);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.site-footer__band-art {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  filter: brightness(0) invert(1) opacity(0.82);
}
@media (max-width: 768px) {
  .site-footer__band { padding: 1.75rem 0 1.5rem; }
  .site-footer__band-art { max-width: 78%; }
}
.site-footer__band-caption {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.32em;
  color: var(--c-navy-light);
  text-transform: uppercase;
  opacity: 0.75;
  margin-top: 0.4rem;
}

/* 本体部分の余白調整（バンド追加分の余白を最適化） */
.site-footer__inner {
  max-width: var(--w-full);
  margin: 0 auto;
  padding: var(--sp-6) var(--sp-6) 0;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  padding-bottom: var(--sp-6);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}
.site-footer__brand-mark {
  font-family: 'Inter', sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--c-white);
  margin-bottom: var(--sp-3);
}
/* コーポレートロゴ画像（フッター：暗背景 → 白ロゴ） */
.site-footer__brand-img {
  display: block;
  width: auto;
  max-width: 220px;
  height: auto;
  margin-bottom: var(--sp-4);
}
@media (max-width: 768px) {
  .site-footer__brand-img { max-width: 180px; }
}
/* ロゴ画像（SVG）採用時の表示制御 */
.site-footer__brand-logo {
  display: block;
  width: 100%;
  max-width: 240px;
  height: auto;
  margin-bottom: var(--sp-4);
  /* 線画ロゴの色を白系に反転 */
  filter: brightness(0) invert(1) drop-shadow(0 0 0 var(--c-white));
  opacity: 0.95;
}
.site-footer__brand-logo svg {
  display: block;
  width: 100%;
  height: auto;
}
.site-footer__brand-name {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-4);
}
.site-footer__address {
  font-size: var(--fs-xs);
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.8);
  font-style: normal;
}
.site-footer__address strong {
  color: var(--c-gold-light);
  font-weight: 600;
  display: block;
  margin-top: var(--sp-3);
  margin-bottom: var(--sp-1);
}
.site-footer__col-title {
  font-size: var(--fs-xs);
  letter-spacing: 0.25em;
  color: var(--c-gold-light);
  margin-bottom: var(--sp-4);
  text-transform: uppercase;
}
.site-footer__list li {
  margin-bottom: var(--sp-2);
}
.site-footer__list a, .site-footer__list span {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.88);
  line-height: 1.7;
  transition: color 0.3s var(--ease-out);
}
.site-footer__list a:hover {
  color: var(--c-navy-light);
  opacity: 1;
}
.site-footer__tels li {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.88);
  margin-bottom: var(--sp-3);
  line-height: 1.5;
}
.site-footer__tels strong {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-base);
  color: var(--c-white);
  letter-spacing: 0.05em;
  font-weight: 600;
}
.site-footer__tels small {
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.72);
}
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--sp-3);
  padding-top: var(--sp-5);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.72);
  letter-spacing: 0.05em;
}
.site-footer__sns {
  display: flex;
  gap: var(--sp-3);
}
.site-footer__sns a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.05em;
  transition: all 0.3s var(--ease-out);
}
.site-footer__sns a:hover {
  background: var(--c-gold);
  border-color: var(--c-gold);
  color: var(--c-white);
  opacity: 1;
  transform: translateY(-2px);
}
@media (max-width: 960px) {
  .site-footer__top { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .site-footer__top { grid-template-columns: 1fr; gap: var(--sp-5); }
  .site-footer__bottom { justify-content: center; text-align: center; }
}

/* -- Recruit Page ----------------------------------------- */
.recruit-hero { background: linear-gradient(135deg, var(--c-navy-deep), var(--c-navy-deeper)); padding-top: calc(var(--h-header) + var(--sp-9)); padding-bottom: var(--sp-10); color: var(--c-white); }
.recruit-hero__title { font-size: var(--fs-3xl); line-height: 1.4; max-width: 760px; }
.recruit-hero__title em { font-style: normal; color: var(--c-gold-light); font-weight: 700; }
.recruit-hero__sub { font-size: var(--fs-md); line-height: 2.0; max-width: 720px; margin-top: var(--sp-5); color: rgba(255, 255, 255, 0.85); }

.charms { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-5); }
.charm-card { background: var(--c-white); padding: var(--sp-6); border-top: 3px solid var(--c-gold); transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out); }
.charm-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.charm-card__num { font-family: 'Inter', sans-serif; font-size: 2.5rem; font-weight: 200; color: var(--c-gold); line-height: 1; margin-bottom: var(--sp-3); }
.charm-card__title { font-size: var(--fs-lg); color: var(--c-navy-deep); margin-bottom: var(--sp-3); }
.charm-card__body { font-size: var(--fs-sm); line-height: 2.0; color: var(--c-text-light); }
@media (max-width: 768px) { .charms { grid-template-columns: 1fr; } .recruit-hero__title { font-size: var(--fs-2xl); } }

.positions { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-4); max-width: var(--w-base); margin: 0 auto; }
.position { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: var(--sp-4); padding: var(--sp-5); background: var(--c-white); border: 1px solid var(--c-border); transition: border-color 0.3s, transform 0.3s; }
.position:hover { border-color: var(--c-gold); transform: translateX(4px); }
.position__title { font-size: var(--fs-base); color: var(--c-navy-deep); font-weight: 600; }
.position__sub { font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: var(--sp-1); letter-spacing: 0.1em; }
.position__arrow { color: var(--c-gold); font-size: var(--fs-md); }
@media (max-width: 600px) { .positions { grid-template-columns: 1fr; } }

/* -- Contact Page ----------------------------------------- */
.contact-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: var(--sp-5); max-width: var(--w-base); margin: 0 auto; }
.contact-card { background: var(--c-white); border: 1px solid var(--c-border); padding: var(--sp-6); display: flex; flex-direction: column; }
.contact-card__category { font-size: var(--fs-xs); letter-spacing: 0.25em; color: var(--c-gold); margin-bottom: var(--sp-3); text-transform: uppercase; }
.contact-card__title { font-size: var(--fs-md); color: var(--c-navy-deep); margin-bottom: var(--sp-4); line-height: 1.6; }
.contact-card__body { font-size: var(--fs-sm); line-height: 1.9; color: var(--c-text-light); margin-bottom: var(--sp-4); flex: 1; }
.contact-card__tel { font-family: 'Inter', sans-serif; font-size: var(--fs-xl); font-weight: 600; color: var(--c-navy-deep); letter-spacing: 0.05em; margin-bottom: var(--sp-2); display: block; }
.contact-card__tel small { font-size: var(--fs-xs); font-weight: 400; color: var(--c-text-muted); margin-left: var(--sp-2); letter-spacing: 0.1em; }
.contact-card__email { font-family: 'Inter', sans-serif; font-size: var(--fs-sm); color: var(--c-navy-deep); }
.contact-card__hours { font-size: var(--fs-xs); color: var(--c-text-muted); margin-top: var(--sp-2); letter-spacing: 0.1em; }
@media (max-width: 600px) { .contact-list { grid-template-columns: 1fr; } }

.access { display: grid; grid-template-columns: 1fr 1fr; gap: var(--sp-7); align-items: start; max-width: var(--w-base); margin: 0 auto; }
.access__map { aspect-ratio: 4 / 3; background: var(--c-cream); border: 1px solid var(--c-border); display: flex; align-items: center; justify-content: center; color: var(--c-text-muted); font-size: var(--fs-sm); }
.access__info dt { font-size: var(--fs-xs); letter-spacing: 0.2em; color: var(--c-gold); margin-bottom: var(--sp-2); margin-top: var(--sp-5); text-transform: uppercase; }
.access__info dt:first-child { margin-top: 0; }
.access__info dd { margin: 0; font-size: var(--fs-base); line-height: 1.9; color: var(--c-text); }
@media (max-width: 768px) { .access { grid-template-columns: 1fr; } }

/* -- Animations (IntersectionObserver targets) ------------ */
.bth-anim {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
  will-change: opacity, transform;
}
.bth-anim.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.bth-anim--fade {
  transform: translateY(0);
}
.bth-anim--left {
  transform: translateX(-40px);
}
.bth-anim--left.is-visible {
  transform: translateX(0);
}
.bth-anim--right {
  transform: translateX(40px);
}
.bth-anim--right.is-visible {
  transform: translateX(0);
}
.bth-anim[data-delay="100"] { transition-delay: 0.1s; }
.bth-anim[data-delay="200"] { transition-delay: 0.2s; }
.bth-anim[data-delay="300"] { transition-delay: 0.3s; }
.bth-anim[data-delay="400"] { transition-delay: 0.4s; }
.bth-anim[data-delay="500"] { transition-delay: 0.5s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; transition-duration: 0.01ms !important; scroll-behavior: auto !important; }
  .bth-anim, .bth-anim.is-visible {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

/* -- A11y Helpers ----------------------------------------- */
.visually-hidden {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* -- Print ------------------------------------------------ */
@media print {
  .site-header, .site-footer, .scroll-indicator, .contact-cta,
  .scroll-progress, .cursor-dot { display: none; }
  body { color: black; background: white; }
}

/* =========================================================
 * v1.1 ── Typography Refinement & Micro-interactions
 * 2026-05-07
 * ========================================================= */

/* -- Serif typography（"格"を出したい箇所に限定適用） ---------- */
/* メインHero見出し：宣言文として serif で組む。
   ワイド幅でも美しく折り返すよう max-width + text-wrap:balance。
   水彩画背景でも可読性を担保するため text-shadow を追加。 */
.hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.7;
  max-width: 22em;
  text-wrap: balance;
  text-shadow: 0 1px 8px rgba(14, 24, 32, 0.45), 0 0 2px rgba(14, 24, 32, 0.35);
}
.hero__title strong {
  font-weight: 600;
}
.hero__sub {
  text-shadow: 0 1px 6px rgba(14, 24, 32, 0.4);
}
.hero__eyebrow {
  text-shadow: 0 1px 4px rgba(14, 24, 32, 0.4);
}

/* Stats: 6項目フラットグリッド（v2） */
.stats__grid--6 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem 1.75rem;
}
@media (max-width: 980px) {
  .stats__grid--6 { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .stats__grid--6 { grid-template-columns: 1fr; }
}

/* stat カード（v2） */
.stats__grid--6 .stat {
  position: relative;
  padding: 2rem 1.5rem;
  border-top: 1px solid rgba(212, 185, 138, 0.25);
  text-align: left;
  display: flex;
  flex-direction: column;
  transition: transform 0.6s var(--ease-out);
}
.stats__grid--6 .stat::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  transition: width 1.6s var(--ease-out);
}
.stats__grid--6 .stat.is-counted::before { width: 100%; }
.stats__grid--6 .stat.is-counted {
  transform: translateY(-2px);
}

.stats__grid--6 .stat__num {
  font-family: var(--font-en);
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.05;
  color: var(--c-gold-light);
  margin-bottom: 0.85rem;
}
.stats__grid--6 .stat__num .unit {
  font-family: var(--font-sans);
  font-size: 0.42em;
  font-weight: 500;
  margin-left: 0.18em;
  letter-spacing: 0.04em;
  color: rgba(212, 185, 138, 0.85);
}
.stats__grid--6 .stat__label {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  color: var(--c-white);
  margin-bottom: 0.85rem;
}
.stats__grid--6 .stat__desc {
  font-size: 0.78rem;
  line-height: 1.95;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.04em;
}

@media (prefers-reduced-motion: reduce) {
  .stats__grid--6 .stat::before { display: none; }
  .stats__grid--6 .stat.is-counted { transform: none; }
}

/* マルチ段落リード文（philosophy.html の section-lead が div になった） */
.section-lead p + p,
.hiraku__intro p + p,
.dept__row-text p + p,
.phase__body p + p {
  margin-top: 1em;
}

/* philosophy.html の HIRAKU セクション末尾の結びの一文 */
.hiraku__close {
  margin-top: 4rem;
  text-align: center;
  font-family: var(--font-serif);
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  font-weight: 500;
  line-height: 2.05;
  letter-spacing: 0.06em;
  color: var(--c-navy-deep);
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
}
.hiraku__close strong {
  color: var(--c-gold-dark);
  font-weight: 600;
}

/* TRANSPORT DIVISION Vision 副題（〜 Bound for future 〜） */
.dept__row-text--vision small {
  display: inline-block;
  margin-top: 0.4em;
  font-family: var(--font-en);
  font-size: 0.7em;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--c-gold-dark);
  opacity: 0.9;
}

/* =========================================================
 * v4 ── キー色 #A1B5C3 をプロミネントに露出（2026-05-11）
 * ========================================================= */

/* セクション帯（section--alt）の背景を薄い青灰ウォッシュへ */
.section--alt {
  background:
    linear-gradient(180deg, var(--c-navy-tint) 0%, var(--c-bg-alt) 60%);
}

/* セクション上端の細い金色＋青灰のアクセント線 */
.section-eyebrow-line {
  display: block;
  width: 48px;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-navy) 100%);
  margin-bottom: 1rem;
}

/* サービスカード上端アクセントを「金 → 青灰」のグラデーションへ */
.service-card { border-top-color: transparent !important; }
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 50%, var(--c-navy) 100%);
  transform: scaleX(1) !important;
  transform-origin: left center;
}

/* Hiraku カード／部門カード／Charm カードのホバー：青灰ライン強調 */
.hiraku__card:hover, .dept__card:hover, .charm-card:hover {
  border-color: var(--c-navy) !important;
}

/* CTA ghostボタン（白背景）の標準色を青灰寄りに */
.btn--outline {
  border-color: var(--c-navy);
  color: var(--c-navy-deep);
}
.btn--outline:hover {
  background: var(--c-navy);
  color: var(--c-white);
  border-color: var(--c-navy);
  opacity: 1;
}

/* リクルートヒーロー：水彩画背景を使う構造に変更したため、背景の上書きは撤去
   （実体の背景は .recruit-hero__bg ::before / ::after で構成） */

/* Stats（数字で見るBTH）背景：純黒を避け青灰の微妙な光を入れる */
.stats {
  background:
    radial-gradient(ellipse at 20% 100%, rgba(161, 181, 195, 0.10) 0%, transparent 55%),
    linear-gradient(180deg, var(--c-navy-deep) 0%, var(--c-navy-deeper) 100%) !important;
}

/* contact-cta も同様の手入れ */
.contact-cta {
  background:
    radial-gradient(circle at 90% 50%, rgba(161, 181, 195, 0.14) 0%, transparent 50%),
    linear-gradient(135deg, var(--c-navy-deep) 0%, var(--c-navy-deeper) 100%) !important;
}

/* （旧）eyebrow 左端ドットは削除 ── 過剰装飾の除去 */

/* media-list 各項目の左端アクセントを青灰に */
.media-item {
  border-left: 2px solid transparent;
  padding-left: 1rem;
  transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
}
.media-item:hover {
  border-left-color: var(--c-navy);
}

/* =========================================================
 * recruit.html v2 — 募集要項テーブル、お祝い金、選考プロセス
 * ========================================================= */

/* =========================================================
 * サービス／BIZカード用のロゴ枠（統一サイズ 96×80）
 * 共通フットプリントで2つのロゴのアスペクト差を吸収する。
 * 訪問看護（≒正方形）と搬送（横長）の視覚的サイズを揃える。
 * ========================================================= */
.service-card__logo,
.biz-item__logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 80px;
  margin-bottom: 1.25rem;
  overflow: hidden;
}
.service-card__logo img,
.biz-item__logo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center center;
}
/* 訪問看護ロゴ用バリアント（共通サイズに統一済み・将来の個別調整用） */
.service-card__logo--square,
.biz-item__logo--square {
  width: 96px;
  height: 80px;
}

/* 訪問看護用プレースホルダ（実ロゴ未到着のため点線枠） */
.service-card__logo--placeholder,
.biz-item__logo--placeholder {
  width: 120px;
  height: 60px;
  border: 1px dashed var(--c-navy-dark);
  background: linear-gradient(135deg, rgba(161, 181, 195, 0.12), rgba(184, 153, 104, 0.08));
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.65rem;
  color: var(--c-text-muted);
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1.4;
  margin-bottom: 1.25rem;
}

/* dd 内の箇条書きリスト（会社概要の許認可・取引銀行など） */
.dt-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}
.dt-list li {
  position: relative;
  padding-left: 1rem;
  line-height: 1.85;
}
.dt-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 1px;
  background: var(--c-gold);
}

/* 募集要項テーブル */
.conditions-table {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  overflow: hidden;
}
.conditions-table dl {
  display: flex;
  flex-direction: column;
}
.conditions-table dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 0;
  border-bottom: 1px solid var(--c-border);
}
.conditions-table dl > div:last-child {
  border-bottom: none;
}
.conditions-table dt {
  padding: 1.2rem 1.5rem;
  background: var(--c-cream);
  color: var(--c-navy-deep);
  font-weight: 600;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  border-right: 1px solid var(--c-border);
}
.conditions-table dd {
  padding: 1.2rem 1.75rem;
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.85;
  color: var(--c-text);
}
@media (max-width: 768px) {
  .conditions-table dl > div {
    grid-template-columns: 1fr;
  }
  .conditions-table dt {
    border-right: none;
    border-bottom: 1px solid var(--c-border);
    padding: 0.85rem 1.2rem;
  }
  .conditions-table dd {
    padding: 1rem 1.2rem;
  }
}

/* お祝い金（直接応募特典） */
.bonus {
  background: var(--c-cream);
  text-align: center;
}
.bonus .section-title {
  margin-top: 0.5rem;
}
.bonus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  max-width: 840px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .bonus-grid { grid-template-columns: 1fr; }
}
.bonus-card {
  background: var(--c-white);
  padding: 2.5rem 1.5rem;
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-gold);
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.bonus-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
}
.bonus-card__label {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  color: var(--c-text-light);
  margin-bottom: 0.75rem;
  font-weight: 600;
}
.bonus-card__amount {
  font-family: var(--font-en);
  font-size: 2.6rem;
  font-weight: 700;
  color: var(--c-gold-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
  letter-spacing: 0.02em;
}
.bonus-card__note {
  font-size: 0.75rem;
  letter-spacing: 0.06em;
  color: var(--c-text-muted);
}

/* 選考プロセス */
.process-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-5);
  list-style: none;
  padding: 0;
  margin: 0;
}
@media (max-width: 900px) {
  .process-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .process-list { grid-template-columns: 1fr; }
}
.process-list li {
  position: relative;
  background: var(--c-white);
  padding: 2rem 1.5rem;
  border: 1px solid var(--c-border);
  text-align: left;
  transition: border-color 0.4s var(--ease-out),
              transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.process-list li:hover {
  border-color: var(--c-gold);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.process-list li:not(:last-child)::after {
  content: "→";
  position: absolute;
  right: -1.1rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: var(--font-en);
  font-size: 1.4rem;
  color: var(--c-gold);
  font-weight: 300;
}
@media (max-width: 900px) {
  .process-list li:nth-child(2)::after,
  .process-list li:last-child::after {
    display: none;
  }
}
@media (max-width: 540px) {
  .process-list li::after { display: none !important; }
}
.process-step {
  font-family: var(--font-en);
  font-size: 0.75rem;
  letter-spacing: 0.24em;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.process-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  margin-bottom: 0.75rem;
}
.process-desc {
  font-size: 0.83rem;
  line-height: 1.85;
  color: var(--c-text-light);
}

/* 求める人物像（Hirakuカード再利用）の text-align 調整 */
.hiraku .hiraku__card .hiraku__card-kanji {
  letter-spacing: 0.04em;
}

/* recruit-hero の em（豊かに）スタイル */
.recruit-hero__title em {
  font-style: normal;
  color: var(--c-gold-light);
}

/* recruit-hero マルチ段落サブコピー */
.recruit-hero__sub p + p { margin-top: 1em; }

/* =========================================================
 * contact.html v2 — 4ブロック構造のお問い合わせ窓口
 * ========================================================= */
.contact-points {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.contact-point {
  background: var(--c-white);
  padding: 2.5rem 2rem;
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-gold);
  position: relative;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
}
.contact-point:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-top-color: var(--c-gold-dark);
}
.contact-point__num {
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.contact-point__title {
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  margin-bottom: 1.25rem;
  letter-spacing: 0.04em;
}
.contact-point__lead {
  font-size: 0.95rem;
  line-height: 2;
  color: var(--c-text);
  margin-bottom: 2rem;
}
.contact-point__lead p + p { margin-top: 0.8em; }
.contact-point__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--c-border);
}
@media (max-width: 768px) {
  .contact-point__body {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }
}
.contact-point__topics-label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 0.85rem;
}
.contact-point__topics ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-point__topics ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.45rem;
  font-size: 0.85rem;
  line-height: 1.85;
  color: var(--c-text);
}
.contact-point__topics ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85em;
  width: 6px;
  height: 1px;
  background: var(--c-gold);
}
.contact-point__channels dl {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin: 0;
}
.contact-point__channels dl > div {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 0.85rem;
  align-items: baseline;
  padding-bottom: 0.85rem;
  border-bottom: 1px dotted var(--c-border);
}
.contact-point__channels dl > div:last-child {
  border-bottom: none;
  padding-bottom: 0;
}
.contact-point__channels dt {
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  color: var(--c-text-muted);
  font-weight: 600;
}
.contact-point__channels dd {
  font-size: 0.92rem;
  margin: 0;
  color: var(--c-text);
}
.contact-point__channels dd small {
  display: block;
  margin-top: 0.2rem;
  color: var(--c-text-muted);
  font-size: 0.75rem;
}
.contact-point__tel {
  font-family: var(--font-en);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: color 0.3s var(--ease-out);
}
.contact-point__tel:hover {
  color: var(--c-gold-dark);
  opacity: 1;
}
.contact-point__global {
  margin-top: 1.5rem;
  padding: 1.25rem;
  background: var(--c-cream);
  border-left: 3px solid var(--c-gold);
}
.contact-point__global-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--c-gold-dark);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.contact-point__global-body {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--c-text-light);
  margin-bottom: 0.75rem;
}
.contact-point__tel--global {
  font-size: 1.15rem;
}

/* =========================================================
 * company.html — 事業一覧 / 拠点情報 / 所属
 * ========================================================= */
.biz-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 980px) {
  .biz-list { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .biz-list { grid-template-columns: 1fr; }
}
.biz-item {
  background: var(--c-white);
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-border);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out);
}
.biz-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}
.biz-item--coming {
  background: rgba(255, 255, 255, 0.65);
  border-style: dashed;
}
.biz-item__cat {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
}
.biz-item__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  margin-bottom: 0.75rem;
  line-height: 1.45;
}
.biz-item__body {
  font-size: 0.83rem;
  line-height: 1.95;
  color: var(--c-text-light);
  flex-grow: 1;
  margin-bottom: 1rem;
}
.biz-item__link {
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: var(--c-gold-dark);
  align-self: flex-start;
}
.biz-item__link:hover {
  color: var(--c-gold);
  opacity: 1;
}
.biz-item__badge {
  display: inline-block;
  padding: 4px 10px;
  background: var(--c-gold);
  color: var(--c-white);
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  border-radius: 2px;
  margin-bottom: 0.75rem;
  align-self: flex-start;
}

/* 拠点情報 */
.access-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 768px) {
  .access-grid { grid-template-columns: 1fr; }
}
.access-grid--single {
  grid-template-columns: 1fr;
  max-width: 720px;
  margin: 0 auto;
}
.access-card {
  background: var(--c-white);
  padding: 2rem;
  border: 1px solid var(--c-border);
  border-top: 3px solid var(--c-gold);
}
.access-card__label {
  font-family: var(--font-en);
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.access-card__name {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  margin-bottom: 1rem;
}
.access-card__address {
  font-size: 0.95rem;
  line-height: 1.85;
  font-style: normal;
  color: var(--c-text);
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid var(--c-border);
}
.access-card__detail {
  font-size: 0.82rem;
  line-height: 1.9;
  color: var(--c-text-light);
}
.access-card__detail p + p { margin-top: 0.8em; }
.access-card__detail strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
  font-weight: 600;
}
.access-card__map {
  margin-top: 1.5rem;
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  background: var(--c-cream);
  border: 1px solid var(--c-border);
  overflow: hidden;
  border-radius: 4px;
}
.access-card__map iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  filter: saturate(0.92);
  transition: filter 0.4s var(--ease-out);
}
.access-card__map:hover iframe {
  filter: saturate(1);
}
.access-card__map-link {
  margin-top: 0.85rem;
  font-size: 0.85rem;
  text-align: right;
}
.access-card__map-link a {
  color: var(--c-navy-deep);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease-out), color 0.3s var(--ease-out);
}
.access-card__map-link a:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
}
@media (max-width: 540px) {
  .access-card__map { aspect-ratio: 4 / 3; }
}

/* ============================================================
 * PHILOSOPHY PAGE BACKGROUNDS（思想ページ専用の背景画像）
 * ============================================================ */

/* 01 PHILOSOPHY HERO — 光と始まり（sunburst） */
.recruit-hero--philo {
  position: relative;
  overflow: hidden;
}
.recruit-hero--philo > .container { position: relative; z-index: 2; }
.recruit-hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    /* テキスト読みやすく：左にやや強い暗オーバーレイ＋右はうっすら */
    linear-gradient(90deg,
      rgba(20, 32, 44, 0.78) 0%,
      rgba(20, 32, 44, 0.58) 45%,
      rgba(20, 32, 44, 0.40) 80%,
      rgba(20, 32, 44, 0.30) 100%),
    linear-gradient(180deg,
      rgba(20, 32, 44, 0.22) 0%,
      rgba(20, 32, 44, 0.08) 40%,
      rgba(20, 32, 44, 0.30) 100%),
    url('../img/philosophy/philosophy-hero-light.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 02 BRAND STORY — つながりの循環（infinity loop）
   ※ Brand Story は紺背景・白文字のダークテーマ。
     画像を screen 合成で淡く重ね、infinity が光のように浮かぶ演出 */
.brand-story--with-bg {
  position: relative;
  overflow: hidden;
}
.brand-story--with-bg > .container { position: relative; z-index: 2; }
.brand-story__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('../img/philosophy/philosophy-infinity.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  /* screen 合成：画像の明るい部分（infinity のライン）だけが紺背景に重なる */
  mix-blend-mode: screen;
  opacity: 0.45;
  filter: saturate(0.85);
  pointer-events: none;
}
/* "BOUND TO HAPPEN" 巨大背景文字を ::before で持っているので前面に保つ */
.brand-story--with-bg::before { z-index: 1; }

/* 07 HIRAKU — 思考の深まり（polygon／結節点） */
/* === HIRAKU カードの「両開き」扉モーション（philosophy.html限定 / クリック開閉） ===
   ユーザーがクリック/タップすると、左右の扉がヒンジから3D回転で外側へ開く。
   重厚な家具・観音開きの扉のような質感。 */
.hiraku--with-bg .hiraku__cards .hiraku__card.bth-anim {
  opacity: 1;
  transform: none;
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.hiraku--with-bg .hiraku__cards .hiraku__card {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  outline: none;
  /* 3D 透視（扉の奥行き感の決め手） */
  perspective: 1500px;
  perspective-origin: 50% 30%;
}
.hiraku--with-bg .hiraku__cards .hiraku__card.is-open {
  cursor: default;
}
.hiraku--with-bg .hiraku__cards .hiraku__card:focus-visible {
  outline: 2px solid var(--c-gold);
  outline-offset: 4px;
}

/* === 左扉・右扉（洋風フレンチドア） ===
   ・象牙色ベース＋微細な縦目（木目）テクスチャ
   ・中央に近い位置にブラスノブ（真鍮の取っ手）を radial-gradient で描画
   ・上下に細い水平ラインで「鏡板（panel）」のフレーム感を演出
   ・ヒンジ：外側の縦端（左扉=左、右扉=右）に小さな金色ドット2点
   ・観音開き：内側の縁から3D回転で外側にスイング */
.hiraku--with-bg .hiraku__cards .hiraku__card::before,
.hiraku--with-bg .hiraku__cards .hiraku__card::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.5%;
  z-index: 10;
  pointer-events: none;
  transform-style: preserve-3d;
  backface-visibility: hidden;
  transition:
    transform 1.7s cubic-bezier(0.55, 0, 0.18, 1),
    box-shadow 1.7s cubic-bezier(0.55, 0, 0.18, 1),
    filter 0.5s var(--ease-out);
}

/* === ミニマル＆エレガントな扉（サイトの和洋折衷トーンに合わせて再デザイン） ===
   ・象牙色のクリーム紙ベース（site のクリーム --c-cream に呼応）
   ・上下に細い金線で「額装フレーム」感
   ・中央寄りに縦長の金の細い装飾＋小さな金のドット ＝ 「引手」の現代的な抽象表現
   ・鍵穴やプレート等は省き、洗練さを優先 */

/* 左扉 */
.hiraku--with-bg .hiraku__cards .hiraku__card::before {
  left: 0;
  transform-origin: 0 50%;
  background:
    /* ① 引手ドット（小さな金のオーブ） */
    radial-gradient(circle at calc(100% - 28px) 50%,
      rgba(184, 153, 104, 0.95) 0 2.8px,
      rgba(184, 153, 104, 0.35) 2.8px 4px,
      transparent 5px),
    /* ② 微かな縦の紙目（和紙風） */
    repeating-linear-gradient(90deg,
      rgba(184, 153, 104, 0.015) 0px,
      rgba(184, 153, 104, 0.015) 1px,
      transparent 1px,
      transparent 8px),
    /* ③ メインの紙色：象牙＋やや暖か */
    linear-gradient(180deg,
      #FBF7EC 0%,
      #F4EFE0 50%,
      #EDE7D4 100%);
  background-repeat: no-repeat, repeat, no-repeat;
  box-shadow:
    inset 0 0 50px rgba(184, 153, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset -1px 0 4px rgba(184, 153, 104, 0.20);
}

/* 右扉 */
.hiraku--with-bg .hiraku__cards .hiraku__card::after {
  right: 0;
  transform-origin: 100% 50%;
  background:
    /* ① 引手ドット */
    radial-gradient(circle at 28px 50%,
      rgba(184, 153, 104, 0.95) 0 2.8px,
      rgba(184, 153, 104, 0.35) 2.8px 4px,
      transparent 5px),
    /* ② 縦の紙目 */
    repeating-linear-gradient(90deg,
      rgba(184, 153, 104, 0.015) 0px,
      rgba(184, 153, 104, 0.015) 1px,
      transparent 1px,
      transparent 8px),
    /* ③ メインの紙色 */
    linear-gradient(180deg,
      #FBF7EC 0%,
      #F4EFE0 50%,
      #EDE7D4 100%);
  background-repeat: no-repeat, repeat, no-repeat;
  box-shadow:
    inset 0 0 50px rgba(184, 153, 104, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 1px 0 4px rgba(184, 153, 104, 0.20);
}

/* === ホバー時：取っ手周辺がほんのり光る（押される予兆） === */
.hiraku--with-bg .hiraku__cards .hiraku__card:hover::before,
.hiraku--with-bg .hiraku__cards .hiraku__card:hover::after {
  filter: brightness(1.04) contrast(1.02);
}
.hiraku--with-bg .hiraku__cards .hiraku__card:hover::before {
  box-shadow:
    inset 0 0 80px rgba(120, 95, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset -2px 0 9px rgba(120, 95, 60, 0.28);
}
.hiraku--with-bg .hiraku__cards .hiraku__card:hover::after {
  box-shadow:
    inset 0 0 80px rgba(120, 95, 60, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.65),
    inset 2px 0 9px rgba(120, 95, 60, 0.28);
}

/* === 開いた状態：3D 回転で外側へスイング === */
.hiraku--with-bg .hiraku__cards .hiraku__card.is-open::before {
  transform: translateX(-2%) rotateY(-105deg);
  box-shadow:
    inset 0 0 100px rgba(0, 0, 0, 0.20),
    -8px 0 30px rgba(120, 95, 60, 0.28);
}
.hiraku--with-bg .hiraku__cards .hiraku__card.is-open::after {
  transform: translateX(2%) rotateY(105deg);
  box-shadow:
    inset 0 0 100px rgba(0, 0, 0, 0.20),
    8px 0 30px rgba(120, 95, 60, 0.28);
}

/* === 閉じた状態の扉面に表示するヒント === */
.hiraku__card-hint {
  position: absolute;
  inset: 0;
  z-index: 11;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  pointer-events: none;
  text-align: center;
  transition: opacity 0.5s var(--ease-out);
}
.hiraku__card-hint__arrow {
  /* 左右の矢印を分けて、各扉の水平中央に揃える */
  display: flex;
  align-items: center;
  justify-content: space-around;
  width: 100%;
  font-size: 1.7rem;
  color: var(--c-gold);
  font-weight: 300;
  text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
}
.hiraku__card-hint__arrow-l,
.hiraku__card-hint__arrow-r {
  /* それぞれを左扉中央／右扉中央に正確に配置するため、左右半分の領域でセンタリング */
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.5s var(--ease-out);
}
.hiraku--with-bg .hiraku__cards .hiraku__card:hover .hiraku__card-hint__arrow-l {
  transform: translateX(-4px);
}
.hiraku--with-bg .hiraku__cards .hiraku__card:hover .hiraku__card-hint__arrow-r {
  transform: translateX(4px);
}
.hiraku__card-hint__label {
  display: inline-flex;
  align-items: center;
  gap: 0.4em;
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  color: var(--c-gold-dark);
  text-transform: uppercase;
  opacity: 0.85;
}
.hiraku--with-bg .hiraku__cards .hiraku__card:hover .hiraku__card-hint__arrow {
  color: var(--c-gold-dark);
}
.hiraku--with-bg .hiraku__cards .hiraku__card.is-open .hiraku__card-hint {
  opacity: 0;
  transition-delay: 0.1s;
}

@media (prefers-reduced-motion: reduce) {
  .hiraku--with-bg .hiraku__cards .hiraku__card::before,
  .hiraku--with-bg .hiraku__cards .hiraku__card::after { display: none; }
  .hiraku__card-hint { display: none; }
}

.hiraku--with-bg {
  position: relative;
  overflow: hidden;
}
.hiraku--with-bg > .container { position: relative; z-index: 2; }
.hiraku__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    /* オーバーレイ薄め：ポリゴンと結節点がはっきり見える */
    linear-gradient(180deg,
      rgba(250, 248, 243, 0.48) 0%,
      rgba(250, 248, 243, 0.55) 50%,
      rgba(250, 248, 243, 0.65) 100%),
    url('../img/philosophy/philosophy-hiraku.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 09 MID-TO-LONG TERM — 未来の地平線（horizon／sunrise） */
.strategy-section {
  position: relative;
  overflow: hidden;
}
.strategy-section > .container { position: relative; z-index: 2; }
.strategy-section__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    /* 上は地平線・日の出をはっきり見せ、下はテキストエリアなので少し白める */
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.32) 0%,
      rgba(255, 255, 255, 0.55) 45%,
      rgba(255, 255, 255, 0.78) 100%),
    url('../img/philosophy/philosophy-horizon.jpg');
  background-size: cover;
  background-position: center 30%;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 04 PHILOSOPHY & VISION — 道のりと積み重ね（mountains）
   コンテンツ幅と画像幅のミスマッチを解消するため、
   ・横方向のヴィネット（左右を白でフェード）
   ・上下端の強いフェード（前後セクションとの境目を消す）
   を加え、画像が "コンテンツの周辺だけ" に集中して見えるように。 */
.philo-section {
  position: relative;
  overflow: hidden;
}
.philo-section > .container { position: relative; z-index: 2; }
.philo-section__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image:
    /* 横ヴィネット：左右を白でフェード（コンテンツ中央に画像を集中） */
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.92) 0%,
      rgba(255, 255, 255, 0.30) 22%,
      rgba(255, 255, 255, 0.20) 50%,
      rgba(255, 255, 255, 0.30) 78%,
      rgba(255, 255, 255, 0.92) 100%),
    /* 縦フェード：上下端をしっかり消して、前後セクションと馴染ませる */
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.40) 15%,
      rgba(255, 255, 255, 0.40) 70%,
      rgba(255, 255, 255, 0.85) 95%,
      rgba(255, 255, 255, 0.96) 100%),
    url('../img/philosophy/philosophy-journey.jpg');
  background-size: cover;
  background-position: center 50%;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* ============================================================
 * TOP PAGE — 下層セクションの背景画像（index.html）
 * 各セクションに <div class="top-bg__img"> を絶対配置で重ね、
 * オーバーレイで本文の可読性を確保する。
 * ============================================================ */
.top-bg {
  position: relative;
  overflow: hidden;
}
.top-bg > .container { position: relative; z-index: 2; }
.top-bg__img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* === セクション境目でのなじませ ===
   ABOUT + CYCLE は同じ背景画像（山並み）を共有してセクション境目を消す。
   その他は単独セクション用にヴィネット風グラデで上下を白くフェード。 */

/* ABOUT + CYCLE — ペアリング（山並み画像を共有）
   ABOUT は上端だけフェード、下端はフェードしない（次のCYCLEと連続）
   CYCLE は上端フェードしない、下端だけフェード（SERVICESとの境目を消す） */
.top-bg--about .top-bg__img,
.top-bg--cycle .top-bg__img {
  background-image:
    linear-gradient(180deg,
      var(--top-bg-fade-top, rgba(250, 248, 243, 0)) 0%,
      rgba(250, 248, 243, 0.32) 30%,
      rgba(250, 248, 243, 0.42) 65%,
      var(--top-bg-fade-bot, rgba(250, 248, 243, 0)) 100%),
    url('../img/top/02_circular_care_bg.jpg');
  background-position: center 35%;
}
.top-bg--about .top-bg__img {
  /* セクション上端＝Heroとの境目だけ強くフェード */
  --top-bg-fade-top: rgba(250, 248, 243, 0.98);
  --top-bg-fade-bot: rgba(250, 248, 243, 0.45); /* 下はCYCLEとつながるので軽めに */
}
.top-bg--cycle .top-bg__img {
  /* セクション上端は ABOUT とつながるので軽め、下端は SERVICES との境目で強くフェード */
  --top-bg-fade-top: rgba(250, 248, 243, 0.45);
  --top-bg-fade-bot: rgba(250, 248, 243, 0.94);
}

/* 03 SERVICES — 幾何メッシュ（清潔感／整理された印象） */
.top-bg--services .top-bg__img {
  background-image:
    linear-gradient(180deg,
      rgba(250, 248, 243, 0.98) 0%,
      rgba(250, 248, 243, 0.55) 12%,
      rgba(250, 248, 243, 0.32) 45%,
      rgba(250, 248, 243, 0.55) 80%,
      rgba(250, 248, 243, 0.94) 100%),
    url('../img/top/03_services_bg.jpg');
  background-position: center 40%;
}

/* 04 NUMBERS — 空・雲・光（軽やかさ）
   ※ stats は紺背景＋白文字。screen 合成 + 上下フェード */
.top-bg--numbers .top-bg__img {
  background-image:
    linear-gradient(180deg,
      rgba(20, 32, 44, 1) 0%,
      rgba(20, 32, 44, 0.20) 15%,
      rgba(20, 32, 44, 0) 50%,
      rgba(20, 32, 44, 0.20) 85%,
      rgba(20, 32, 44, 1) 100%),
    url('../img/top/04_numbers_bg.jpg');
  background-position: center;
  mix-blend-mode: screen;
  opacity: 0.45;
}

/* 05 CONTACT CTA — 葉と街（やわらかく前向き）
   ※ contact-cta も紺背景＋白文字。screen 合成 + 上下フェード */
.top-bg--contact-cta .top-bg__img {
  background-image:
    linear-gradient(180deg,
      rgba(20, 32, 44, 1) 0%,
      rgba(20, 32, 44, 0.20) 15%,
      rgba(20, 32, 44, 0) 50%,
      rgba(20, 32, 44, 0.20) 85%,
      rgba(20, 32, 44, 1) 100%),
    url('../img/top/05_contact_cta_bg.jpg');
  background-position: center 45%;
  mix-blend-mode: screen;
  opacity: 0.48;
}

/* ============================================================
 * LIGHT HERO（company.html / contact.html）
 * 紺背景・白文字 → 白背景・ネイビー文字 にテーマを反転
 * ============================================================ */
.recruit-hero--light {
  background: var(--c-cream) !important;
  color: var(--c-navy-deep) !important;
  position: relative;
  overflow: hidden;
}
.recruit-hero--light > .container { position: relative; z-index: 2; }

/* テキスト色をネイビーに上書き */
.recruit-hero--light .hero__eyebrow {
  color: var(--c-gold-dark);
}
.recruit-hero--light .recruit-hero__title {
  color: var(--c-navy-deep);
}
.recruit-hero--light .recruit-hero__title em {
  color: var(--c-gold-dark);
}
.recruit-hero--light .recruit-hero__sub,
.recruit-hero--light .recruit-hero__sub p {
  color: var(--c-text);
}
.recruit-hero--light .recruit-hero__sub strong {
  color: var(--c-navy-deep) !important;
  background: linear-gradient(transparent 68%, rgba(184, 153, 104, 0.22) 68%, rgba(184, 153, 104, 0.22) 92%, transparent 92%);
}

.recruit-hero__bg-img-light {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 01 COMPANY — 都市・空・光・流線（信頼感／実在感） */
.recruit-hero--company-bg .recruit-hero__bg-img-light {
  background-image:
    /* 左にやや強めの白、右に薄めで都市が見える */
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.88) 0%,
      rgba(255, 255, 255, 0.62) 50%,
      rgba(255, 255, 255, 0.28) 100%),
    url('../img/hero/company-hero-bg.jpg');
}

/* 02 CONTACT — 淡いブルー・葉モチーフ（清潔感／安心感） */
.recruit-hero--contact-bg .recruit-hero__bg-img-light {
  background-image:
    /* 全体的に強めの白オーバーレイ（フォーム動線の可読性優先） */
    linear-gradient(90deg,
      rgba(255, 255, 255, 0.90) 0%,
      rgba(255, 255, 255, 0.72) 55%,
      rgba(255, 255, 255, 0.45) 100%),
    url('../img/hero/contact-hero-bg.jpg');
}

/* ============================================================
 * RECRUIT PAGE BACKGROUNDS（採用ページ用の柔らかい背景画像）
 * ============================================================ */

/* Hero — 01_sunrise（夜明け／前向き／未来） */
.recruit-hero--bg {
  position: relative;
  overflow: hidden;
}
.recruit-hero--bg > .container { position: relative; z-index: 2; }
.recruit-hero__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  /* 紺ベースの上に夜明け画像を screen 合成で重ね、暖色の光をうっすら */
  background-image:
    /* 左にやや強めの紺オーバーレイ（テキスト可読性確保） */
    linear-gradient(90deg,
      rgba(20, 32, 44, 0.62) 0%,
      rgba(20, 32, 44, 0.42) 45%,
      rgba(20, 32, 44, 0.28) 80%,
      rgba(20, 32, 44, 0.18) 100%),
    linear-gradient(180deg,
      rgba(20, 32, 44, 0.12) 0%,
      rgba(20, 32, 44, 0.04) 35%,
      rgba(20, 32, 44, 0.18) 100%),
    url('../img/recruit/01_sunrise_hero.png');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* セクション共通の背景レイヤー基盤 */
.section--bg {
  position: relative;
  overflow: hidden;
}
.section--bg > .container { position: relative; z-index: 2; }
.section__bg-img {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-repeat: no-repeat;
  pointer-events: none;
}

/* 02 WORK PHILOSOPHY — 柔らかい波（調和／つながり） */
.section--bg-soft-wave .section__bg-img {
  background-image:
    /* 上は画像を見せ、本文エリア（下方）に向けて白を強める */
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.20) 0%,
      rgba(255, 255, 255, 0.50) 50%,
      rgba(255, 255, 255, 0.78) 100%),
    url('../img/recruit/02_soft_wave_hero.png');
  background-position: center 40%;
}

/* 03 9 REASONS — 幾何ライト（構造／成長／信頼感） */
.section--bg-geometric .section__bg-img {
  background-image:
    linear-gradient(180deg,
      rgba(250, 248, 243, 0.28) 0%,
      rgba(250, 248, 243, 0.58) 50%,
      rgba(250, 248, 243, 0.82) 100%),
    url('../img/recruit/03_geometric_light_hero.png');
  background-position: center 30%;
}

/* 04 EDUCATION — 前進・キャリアパス */
.section--bg-forward-path .section__bg-img {
  background-image:
    linear-gradient(180deg,
      rgba(250, 248, 243, 0.22) 0%,
      rgba(250, 248, 243, 0.55) 50%,
      rgba(250, 248, 243, 0.80) 100%),
    url('../img/recruit/04_forward_path_hero.png');
  background-position: center 45%;
}

/* 05 INTERVIEW — 植物／あたたかさ */
.section--bg-botanical .section__bg-img {
  background-image:
    linear-gradient(180deg,
      rgba(250, 248, 243, 0.18) 0%,
      rgba(250, 248, 243, 0.50) 55%,
      rgba(250, 248, 243, 0.78) 100%),
    url('../img/recruit/05_botanical_light_hero.png');
  background-position: center 50%;
}

/* ====== Email Card（メール窓口） ====== */
.email-card {
  margin-top: var(--sp-7);
  padding: var(--sp-7) var(--sp-7);
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: 4px;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.email-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
}
.email-card__head {
  text-align: center;
  padding-bottom: var(--sp-5);
  margin-bottom: var(--sp-5);
  border-bottom: 1px dashed var(--c-border);
}
.email-card__label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xs);
  letter-spacing: 0.3em;
  color: var(--c-gold);
  text-transform: uppercase;
  margin-bottom: var(--sp-3);
}
.email-card__addr {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: var(--fs-xl);
  font-weight: 600;
  color: var(--c-navy-deep);
  letter-spacing: 0.02em;
  border-bottom: 1px solid transparent;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.email-card__addr:hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-gold);
  opacity: 1;
}
.email-card__body { }
.email-card__hint-title {
  font-size: var(--fs-sm);
  font-weight: 600;
  color: var(--c-navy-deep);
  margin-bottom: var(--sp-3);
}
.email-card__hints {
  list-style: none;
  padding: 0;
  margin: 0;
}
.email-card__hints li {
  padding-left: var(--sp-5);
  position: relative;
  font-size: var(--fs-sm);
  line-height: 1.85;
  color: var(--c-text-light);
}
.email-card__hints li + li { margin-top: 0.3rem; }
.email-card__hints li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.85em;
  width: 12px; height: 1px;
  background: var(--c-gold);
}
.email-card__note {
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 1px dashed var(--c-border);
  font-size: var(--fs-xs);
  color: var(--c-text-muted);
  line-height: 1.8;
}
@media (max-width: 540px) {
  .email-card {
    padding: var(--sp-5) var(--sp-4);
  }
  .email-card__addr {
    font-size: var(--fs-md);
    word-break: break-all;
  }
}

/* ====== Google レビュー（静的バッジ） ====== */
.google-reviews {
  margin-top: 2rem;
  padding: 1.6rem 1.6rem 1.4rem;
  background: linear-gradient(180deg, var(--c-white) 0%, var(--c-cream) 100%);
  border: 1px solid var(--c-border);
  border-radius: 6px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 1.4rem 1.5rem;
  position: relative;
  overflow: hidden;
}
.google-reviews::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: linear-gradient(180deg, #4285F4 0%, #EA4335 33%, #FBBC05 66%, #34A853 100%);
}
.google-reviews__head {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding-left: 0.6rem;
}
.google-reviews__mark {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  line-height: 1;
}
.google-reviews__label {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--c-navy-deep);
  line-height: 1.45;
}
.google-reviews__label small {
  display: block;
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--c-text-muted);
  margin-top: 2px;
}
.google-reviews__rate {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  justify-content: center;
}
.google-reviews__score {
  font-family: 'Inter', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  line-height: 1;
}
.google-reviews__stars {
  display: inline-flex;
  gap: 2px;
}
.google-reviews__star {
  width: 20px;
  height: 20px;
  fill: var(--c-border);
}
.google-reviews__star--filled {
  fill: #FBBC05;
}
.google-reviews__count {
  margin: 0;
  font-size: 0.78rem;
  color: var(--c-text-muted);
  line-height: 1.4;
}
.google-reviews__count-num {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  color: var(--c-navy-deep);
  font-size: 0.95rem;
}
.google-reviews__cta {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.6rem 1rem;
  background: var(--c-white);
  border: 1px solid var(--c-navy);
  border-radius: 999px;
  color: var(--c-navy-deep);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  transition: background 0.3s var(--ease-out), color 0.3s var(--ease-out), border-color 0.3s var(--ease-out), transform 0.3s var(--ease-out);
  white-space: nowrap;
}
.google-reviews__cta:hover {
  background: var(--c-navy-deep);
  color: var(--c-white);
  border-color: var(--c-navy-deep);
  transform: translateY(-1px);
}
.google-reviews__arrow {
  transition: transform 0.3s var(--ease-out);
}
.google-reviews__cta:hover .google-reviews__arrow {
  transform: translateX(2px);
}
@media (max-width: 720px) {
  .google-reviews {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 1rem;
  }
  .google-reviews__rate {
    justify-content: flex-start;
  }
  .google-reviews__cta {
    justify-self: flex-start;
  }
}

/* 所属・パートナー */
.affiliations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 600px) {
  .affiliations-grid { grid-template-columns: 1fr; }
}
.affiliation-card {
  background: var(--c-white);
  padding: 1.5rem 1.5rem;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold);
}
.affiliation-card__label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  color: var(--c-gold);
  margin-bottom: 0.5rem;
  text-transform: uppercase;
}
.affiliation-card__value {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--c-text);
  font-weight: 500;
}

/* スタッフインタビュー */
.interview-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-5);
}
@media (max-width: 768px) {
  .interview-grid { grid-template-columns: 1fr; }
}
.interview-card {
  background: var(--c-white);
  padding: 2rem 1.75rem;
  border: 1px solid var(--c-border);
  border-left: 3px solid var(--c-gold);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: transform 0.4s var(--ease-out),
              box-shadow 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
}
.interview-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-left-color: var(--c-gold-dark);
}
.interview-card__head {
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--c-border);
}
.interview-card__name {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy-deep);
  line-height: 1.4;
}
.interview-card__role {
  font-size: 0.78rem;
  color: var(--c-text-muted);
  margin-top: 0.3rem;
  letter-spacing: 0.04em;
}
.interview-card__name-en {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  color: var(--c-gold);
  margin-top: 0.5rem;
  font-weight: 500;
}
.interview-card__quote {
  font-family: var(--font-serif);
  font-size: 0.95rem;
  line-height: 2;
  color: var(--c-text);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* recruit / contact / philosophy のサブヒーロー見出し */
.recruit-hero__title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.65;
}
.recruit-hero__title em {
  font-style: normal;
  font-weight: 600;
  background: linear-gradient(transparent 65%, rgba(184, 153, 104, 0.32) 65%, rgba(184, 153, 104, 0.32) 92%, transparent 92%);
  padding: 0 0.1em;
}

/* Bound to Happen の和訳見出し */
.brand-story__title-jp {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.08em;
}

/* 経営理念・ビジョンの引用文（最も格式が要る） */
.philo__quote {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.95;
  letter-spacing: 0.06em;
}
.philo__quote em {
  font-style: normal;
  font-weight: 600;
  color: var(--c-navy-deep);
  background: linear-gradient(transparent 70%, rgba(184, 153, 104, 0.28) 70%, rgba(184, 153, 104, 0.28) 92%, transparent 92%);
  padding: 0 0.12em;
}

/* 「ひらく」3カードの大文字（漢字を主役に） */
.hiraku__card-kanji {
  font-family: var(--font-serif);
  font-weight: 500;
}

/* 「ひらく」見出し */
.hiraku h2.section-title {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.65;
}

/* 部門 Vision 文（最も大切な一行） */
.dept__row-text--vision {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* お問い合わせCTAタイトル */
.contact-cta__title {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: 0.06em;
}

/* About リード文（短い宣言） */
.about-lead {
  font-family: var(--font-serif);
  font-weight: 400;
  letter-spacing: 0.06em;
  line-height: 2;
}
.about-lead strong {
  font-family: var(--font-sans);
  font-weight: 700;
}

/* -- Japanese typography polish ---------------------------- */
.hero__title, .recruit-hero__title,
.philo__quote, .brand-story__title-jp,
.hiraku h2.section-title, .dept__row-text--vision,
.contact-cta__title, .about-lead {
  font-feature-settings: "palt", "pkna";
  text-spacing: ideograph-alpha ideograph-numeric;
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* =========================================================
 * READABILITY LAYER（日本語タイポグラフィ・読みやすさ強化）
 * - 本文：text-wrap: pretty（最終行のorphan単語を回避）
 * - 見出し：text-wrap: balance（複数行のバランス調整）
 * - 禁則処理：line-break: strict
 * - 句読点ハング：hanging-punctuation: allow-end
 * - .br-pc / .br-sp ユーティリティ（デバイス別の改行）
 * ========================================================= */

/* ◆ 本文・段落系：自然な折り返しと禁則処理 */
p,
.section-lead,
.section-lead p,
.charm-card__body,
.dept__row-text,
.dept__row-text p,
.hiraku__card-body,
.hiraku__intro,
.hiraku__outro,
.news-article__body,
.news-article__body p,
.news-article__body li,
.position__body,
.contact-card__body,
.about-lead,
.conditions-table dd,
.access-card__detail,
.access-card__detail p,
.philo__quote,
.media-item__title,
.contact-cta__lead,
.contact-cta__lead p,
.recruit-hero__sub,
.recruit-hero__sub p {
  text-wrap: pretty;
  line-break: strict;
  overflow-wrap: anywhere;
  hanging-punctuation: allow-end;
}

/* ◆ 見出し系：balance で行のばらけを抑える＋カタカナ語の途中改行を禁止 */
h1, h2, h3, h4,
.section-title,
.hero__title,
.recruit-hero__title,
.charm-card__title,
.phase__title,
.dept__card-name,
.hiraku__card-kanji,
.contact-cta__title,
.service-card__title,
.biz-item__name,
.position__title,
.access-card__name,
.affiliation-card__label,
.affiliation-card__value,
.contact-point__title,
.email-card__addr,
.media-item__title,
.charm-card__num + .charm-card__title,
.process-title {
  text-wrap: balance;
  line-break: strict;
  /* カタカナ語・英数字を途中で改行させない（メディカル / アシスタンスを分断防止）*/
  word-break: keep-all;
  overflow-wrap: anywhere;
}

/* ◆ 段落間に呼吸を持たせる（PC） */
.section-lead p + p,
.dept__row-text p + p,
.news-article__body p + p,
.charm-card__body + .charm-card__body,
.contact-cta__lead p + p {
  margin-top: 1.15em;
}

/* ◆ SP向け調整：行間・段落間・字間を最適化 */
@media (max-width: 768px) {
  body {
    line-height: 1.9;        /* PC 1.8 → SP 1.9 */
    letter-spacing: 0.02em;  /* 小画面では字間を少し詰めて行長を確保 */
  }

  /* SP の本文カード系：行間にさらにゆとり */
  .charm-card__body,
  .hiraku__card-body,
  .dept__row-text,
  .news-article__body p,
  .access-card__detail p {
    line-height: 1.95;
  }

  /* SP では段落間を広めに */
  .section-lead p + p,
  .dept__row-text p + p,
  .news-article__body p + p,
  .contact-cta__lead p + p {
    margin-top: 1.4em;
  }

  /* SP では本文ブロックの padding を少し増やして窮屈感を解消 */
  .charm-card,
  .hiraku__card,
  .dept__card,
  .position,
  .contact-card,
  .access-card {
    padding-left: 1.2rem;
    padding-right: 1.2rem;
  }

  /* SP の見出しは line-height を取って読みやすく */
  .section-title,
  .hero__title,
  .recruit-hero__title,
  .phase__title,
  .dept__card-name {
    line-height: 1.5;
  }

  /* SP で長い英文サブが画面に入らない問題を回避 */
  .dept__card-en,
  .position__id,
  .charm-card__kanji-reading,
  .hiraku__card-reading {
    letter-spacing: 0.15em;
    font-size: 0.7rem;
  }
}

/* ◆ デバイス別の <br> ユーティリティ
   <br class="br-pc"> ... PC でのみ改行（SPでは消える）
   <br class="br-sp"> ... SP でのみ改行（PCでは消える）
*/
.br-pc { display: inline; }
.br-sp { display: none; }
@media (max-width: 768px) {
  .br-pc { display: none; }
  .br-sp { display: inline; }
}

/* ◆ 本文中のインライン要素：強調と打ち消し線の可読性 */
p strong,
.section-lead strong,
.dept__row-text strong,
.news-article__body strong {
  color: var(--c-navy-deep);
  font-weight: 700;
  background: linear-gradient(transparent 68%, rgba(184, 153, 104, 0.18) 68%, rgba(184, 153, 104, 0.18) 92%, transparent 92%);
  padding: 0 0.05em;
}

/* ◆ 暗背景セクション内の <strong> は白文字＋金色のアンダーマーカーで可読性を担保
   （recruit-hero / hero / contact-cta / stats / section--dark 等）
   ※フッターの電話番号 (.site-footer__tels strong) は別スタイルなので除外 */
.recruit-hero strong,
.recruit-hero p strong,
.recruit-hero .section-lead strong,
.recruit-hero__sub strong,
.hero strong,
.hero p strong,
.contact-cta strong,
.contact-cta p strong,
.contact-cta__lead strong,
.stats strong,
.stats p strong,
.section--dark strong,
.section--dark p strong,
.dept__brand-bridge strong {
  color: var(--c-white) !important;
  background: linear-gradient(transparent 68%, rgba(212, 185, 138, 0.45) 68%, rgba(212, 185, 138, 0.45) 92%, transparent 92%);
}

/* ◆ 本文中のリンク：金線下線で可読性 */
.section-lead a:not(.btn):not(.btn-insta):not(.btn-insta__cta),
.dept__row-text a:not(.btn):not(.btn-insta),
.news-article__body a:not(.btn):not(.btn-insta),
.charm-card__body a:not(.btn):not(.btn-insta) {
  color: var(--c-navy-deep);
  border-bottom: 1px solid var(--c-gold);
  padding-bottom: 1px;
  transition: color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}
.section-lead a:not(.btn):not(.btn-insta):hover,
.dept__row-text a:not(.btn):not(.btn-insta):hover,
.news-article__body a:not(.btn):not(.btn-insta):hover,
.charm-card__body a:not(.btn):not(.btn-insta):hover {
  color: var(--c-gold);
  border-bottom-color: var(--c-navy-deep);
  opacity: 1;
}

/* ◆ 1行のテキストが長すぎないよう、本文ブロックには最大幅を確保 */
.news-article__body {
  max-width: 42em;
  margin-inline: auto;
}
@media (max-width: 768px) {
  .news-article__body {
    max-width: 100%;
  }
}

/* =========================================================
 * Toast notification（メアドコピー時の通知）
 * ========================================================= */
.bth-toast {
  position: fixed;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%) translateY(16px);
  background: var(--c-navy-deep);
  color: var(--c-white);
  padding: 14px 24px;
  border-radius: 999px;
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  box-shadow: 0 12px 32px rgba(15, 42, 68, 0.22), 0 0 0 1px rgba(184, 153, 104, 0.25);
  transition: opacity 0.35s var(--ease-out), transform 0.35s var(--ease-out);
  white-space: nowrap;
  max-width: calc(100vw - 40px);
  overflow: hidden;
  text-overflow: ellipsis;
}
.bth-toast.is-visible {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}
@media (max-width: 480px) {
  .bth-toast {
    bottom: 20px;
    font-size: 0.8rem;
    padding: 12px 18px;
  }
}

/* =========================================================
 * Micro-interaction: スクロール進捗バー
 * ========================================================= */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  z-index: 200;
  pointer-events: none;
  transition: width 0.08s linear;
  box-shadow: 0 0 8px rgba(184, 153, 104, 0.4);
}

@media (prefers-reduced-motion: reduce) {
  .scroll-progress { display: none; }
}

/* =========================================================
 * Micro-interaction: カーソル追従ドット（PC・hover環境のみ）
 * ========================================================= */
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--c-gold);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0;
  transform: translate(-50%, -50%);
  transition: opacity 0.2s ease, width 0.25s var(--ease-out), height 0.25s var(--ease-out), background 0.25s ease, border-color 0.25s ease;
  mix-blend-mode: multiply;
}
.cursor-dot.is-active {
  opacity: 1;
}
.cursor-dot.is-link {
  width: 36px;
  height: 36px;
  background: transparent;
  border: 1.5px solid var(--c-gold);
  mix-blend-mode: normal;
}

/* タッチデバイス・hover非対応では非表示 */
@media (hover: none), (pointer: coarse), (prefers-reduced-motion: reduce) {
  .cursor-dot { display: none !important; }
}

/* =========================================================
 * Micro-interaction: カードホバー精緻化
 * ========================================================= */

/* Service Card */
.service-card {
  position: relative;
  border: 1px solid var(--c-border);
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out);
  overflow: hidden;
}
.service-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 153, 104, 0.5);
}
.service-card:hover::before {
  transform: scaleX(1);
}
.service-card:hover .service-card__cta {
  color: var(--c-gold-dark);
}

/* Department Card */
.dept__card {
  position: relative;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out);
}
.dept__card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 153, 104, 0.4);
}

/* Hiraku Card — 漢字が浮き上がる演出 */
.hiraku__card {
  position: relative;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out);
}
.hiraku__card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 153, 104, 0.5);
}
.hiraku__card:hover .hiraku__card-kanji {
  color: var(--c-gold);
  transform: scale(1.04);
}
.hiraku__card-kanji {
  transition: color 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

/* Charm Card（採用ページの3つの魅力） */
.charm-card {
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out);
}
.charm-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 153, 104, 0.4);
}

/* Position Card（募集職種カード） */
.position {
  transition: background-color 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out),
              transform 0.4s var(--ease-out);
}
.position:hover {
  border-color: var(--c-gold);
  background: rgba(184, 153, 104, 0.04);
  transform: translateX(4px);
}
.position:hover .position__arrow {
  transform: translateX(4px);
  color: var(--c-gold);
}
.position__arrow {
  transition: transform 0.4s var(--ease-out), color 0.4s var(--ease-out);
}

/* Contact Card */
.contact-card {
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out);
}
.contact-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 153, 104, 0.4);
}

/* Phase Card（中長期戦略カード） */
.phase {
  position: relative;
  transition: transform 0.5s var(--ease-out),
              box-shadow 0.5s var(--ease-out),
              border-color 0.5s var(--ease-out);
}
.phase::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, var(--c-gold) 0%, var(--c-gold-light) 100%);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.6s var(--ease-out);
}
.phase:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-gold);
  border-color: rgba(184, 153, 104, 0.4);
}
.phase:hover::after {
  transform: scaleX(1);
}

/* Media item ホバー */
.media-item {
  transition: background-color 0.3s var(--ease-out),
              transform 0.3s var(--ease-out);
}
.media-item:hover {
  background: rgba(184, 153, 104, 0.06);
  transform: translateX(4px);
}

/* CTA Button：金色に色拡散 */
.btn--gold {
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.btn--gold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: var(--c-gold-dark);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s var(--ease-out), height 0.6s var(--ease-out);
  z-index: -1;
}
.btn--gold:hover::before {
  width: 320px;
  height: 320px;
}
.btn--gold:hover {
  opacity: 1;
}
.btn--outline {
  transition: background-color 0.4s var(--ease-out),
              color 0.4s var(--ease-out),
              border-color 0.4s var(--ease-out);
}
.btn--outline:hover {
  background: var(--c-navy-deep);
  color: var(--c-white);
  border-color: var(--c-navy-deep);
  opacity: 1;
}

/* Reduced motion: ホバー lift / scale を無効化 */
@media (prefers-reduced-motion: reduce) {
  .service-card:hover, .dept__card:hover, .hiraku__card:hover,
  .charm-card:hover, .contact-card:hover, .phase:hover,
  .position:hover, .media-item:hover {
    transform: none !important;
  }
  .hiraku__card:hover .hiraku__card-kanji {
    transform: none !important;
  }
  .btn--gold::before { display: none; }
}
