/* 不二商栄株式会社 — コーポレートサイト */
:root {
  --navy: #0c3d5c;
  --navy-deep: #082a40;
  --blue: #3d9fd4;
  --blue-light: #7ec4e8;
  --sky: #e8f4fb;
  --cream: #faf9f6;
  --white: #ffffff;
  --text: #1a2b36;
  --text-muted: #5a6d7a;
  --line-green: #06c755;
  --shadow: 0 4px 24px rgba(12, 61, 92, 0.08);
  --shadow-lg: 0 12px 40px rgba(12, 61, 92, 0.12);
  --radius: 8px;
  --header-h: 72px;
  --font: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif;
  --font-en: "Oswald", "Arial Narrow", sans-serif;
  --industrial-orange: #e68a2e;
  --industrial-yellow: #f0c14b;
  /* ブランドハーモニー（ベース #082462） */
  --brand-base: #082462;
  --brand-analog-a: #106174;
  --brand-analog-b: #221074;
  --brand-light: #f2f4f9;
  --brand-light-soft: #e8edf5;
  --brand-deep: #051533;
  --brand-triad-b: #29660e;
  --brand-complement: #9f7619;
  --brand-complement-light: #edebe8;
  --brand-complement-dark: #3d3224;
  --brand-complement-mid: #5c4528;
  --brand-band-top: #083318;
  --brand-band-bottom: #051533;
  --brand-band-bg: linear-gradient(180deg, var(--brand-band-top) 0%, var(--brand-band-bottom) 100%);
  --brand-band-grid-image:
    linear-gradient(rgba(140, 200, 190, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(140, 200, 190, 0.04) 1px, transparent 1px);
  --brand-band-grid-size: 48px 48px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.75;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 60% at 15% 0%, rgba(12, 61, 92, 0.06), transparent 55%),
    radial-gradient(ellipse 70% 55% at 85% 15%, rgba(61, 159, 212, 0.06), transparent 60%),
    linear-gradient(180deg, rgba(244, 236, 219, 0.72) 0%, rgba(255, 255, 255, 1) 45%, rgba(244, 236, 219, 0.55) 100%);
}

img,
video {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--navy);
  text-decoration: none;
}

a:hover {
  color: var(--blue);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--header-h);
  overflow: visible;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(12, 61, 92, 0.08);
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: var(--shadow);
}

/* 下層ページ：トップと同じネイビーヘッダー */
body:not(.page-home) .site-header {
  background: var(--navy-deep);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

body:not(.page-home) .site-header .nav-main a:not(.header-cta) {
  color: rgba(255, 255, 255, 0.92);
}

body:not(.page-home) .site-header .nav-main a:not(.header-cta):hover {
  color: var(--blue-light);
}

body:not(.page-home) .site-header .menu-toggle span {
  background: var(--white);
}

body:not(.page-home) .site-header .header-cta {
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.5);
  color: var(--white) !important;
}

body:not(.page-home) .site-header .header-cta:hover {
  background: var(--white);
  color: var(--navy) !important;
}

body:not(.page-home) .logo-img--default {
  display: none;
}

body:not(.page-home) .logo-img--hero {
  display: block;
}

/* トップ：動画上の透明ヘッダー（三貴サイト風） */
.page-home .site-header--transparent:not(.is-scrolled) {
  background: transparent;
  border-bottom-color: transparent;
  backdrop-filter: none;
}

.page-home .site-header--transparent:not(.is-scrolled) .nav-main a:not(.header-cta) {
  color: var(--white);
}

.page-home .site-header--transparent:not(.is-scrolled) .nav-main a:not(.header-cta):hover {
  color: var(--blue-light);
}

.page-home .site-header--transparent:not(.is-scrolled) .menu-toggle span {
  background: var(--white);
}

.page-home .site-header--transparent:not(.is-scrolled) .header-cta {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.55);
}

.page-home .site-header--transparent:not(.is-scrolled) .header-cta:hover {
  background: var(--white);
  color: var(--navy) !important;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
  overflow: visible;
}

.logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.site-header .container {
  /* ヘッダーは画面いっぱいに広げ、左右の余白で端揃え（ロゴ＝左端／ナビ＝右端） */
  width: 100%;
  max-width: none;
  margin-inline: 0;
  padding: 0 2.5rem;
}

@media (min-width: 901px) {
  .site-header .logo {
    margin-left: 0;
  }

  .site-header .nav-main {
    margin-right: 0;
  }
}

.logo-img {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(240px, 36vw);
}

.logo-img--hero {
  display: none;
}

.page-home .site-header--transparent:not(.is-scrolled) .logo-img--default {
  display: none;
}

.page-home .site-header--transparent:not(.is-scrolled) .logo-img--hero {
  display: block;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.nav-main a {
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--text);
}

.nav-main a:hover {
  color: var(--blue);
}

.nav-main--compact {
  gap: 0.65rem 1.4rem;
}

.nav-main--compact a:not(.header-cta) {
  font-size: 0.82rem;
  letter-spacing: 0;
  line-height: 1.75;
}

.nav-main--compact .header-cta {
  margin-left: 0.5rem;
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  align-self: center;
}

.nav-dropdown__trigger {
  display: inline-flex;
  align-items: center;
  line-height: 1.75;
}

.nav-dropdown__menu {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 0;
  min-width: 12.5rem;
  margin: 0;
  padding: 0.2rem 0;
  background: rgba(5, 21, 51, 0.9);
  border: none;
  border-top: 3px solid var(--industrial-orange, #e68a2e);
  border-radius: 0;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(0.2rem);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
  z-index: 120;
}

.nav-dropdown__menu::before {
  content: "";
  position: absolute;
  top: -0.5rem;
  left: 0;
  right: 0;
  height: 0.5rem;
}

.nav-dropdown:hover .nav-dropdown__menu,
.nav-dropdown:focus-within .nav-dropdown__menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}

.nav-dropdown:hover .nav-dropdown__trigger,
.nav-dropdown:focus-within .nav-dropdown__trigger {
  color: var(--brand-analog-a, #106174);
}

body:not(.page-home) .nav-dropdown:hover .nav-dropdown__trigger,
body:not(.page-home) .nav-dropdown:focus-within .nav-dropdown__trigger {
  color: rgba(255, 255, 255, 1);
}

.page-home .site-header--transparent:not(.is-scrolled) .nav-dropdown:hover .nav-dropdown__trigger,
.page-home .site-header--transparent:not(.is-scrolled) .nav-dropdown:focus-within .nav-dropdown__trigger {
  color: rgba(255, 255, 255, 1);
}

.nav-dropdown__menu a {
  display: block;
  padding: 0.65rem 1rem;
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-dropdown__menu a:last-child {
  border-bottom: none;
}

.nav-dropdown__menu a:hover,
.nav-dropdown__menu a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

#about,
#strengths,
#services,
#works,
#area,
#consult,
#qa {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.stats-bar-label {
  margin: 0 0 1rem;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
}

.faq-page {
  max-width: 40rem;
  margin: 0 auto;
}

.faq-page.chat-faq {
  max-height: none;
  overflow: visible;
  background: var(--white);
  border-radius: 0;
  box-shadow: var(--shadow);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  padding: 0.65rem 1.25rem;
  background: var(--navy);
  color: var(--white) !important;
  font-size: 0.88rem;
  font-weight: 600;
  border-radius: 0;
  white-space: nowrap;
  transition: background 0.2s, transform 0.15s;
}

.header-cta:hover {
  background: var(--blue);
  color: var(--white) !important;
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  border-radius: 1px;
}

/* Hero（三貴 https://san-ki.jp/ 風：全画面動画＋中央キャッチ） */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 50%, #1a6b94 100%);
}

.hero-media canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0.92;
}

.hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hero-fallback {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 40%, var(--blue) 100%);
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 30, 48, 0.64) 0%, rgba(8, 30, 48, 0.34) 48%, rgba(8, 30, 48, 0.62) 100%),
    radial-gradient(ellipse 70% 60% at 50% 38%, rgba(61, 159, 212, 0.12), transparent 60%);
  z-index: 1;
}

.hero-copy {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 1.25rem;
  max-width: 900px;
}

/* ===== ヒーローキャッチ：フォント固定（編集禁止 / DO NOT CHANGE FONT） =====
   このブロックの font-family は仕様で確定済み。
   今後のフォント一括変更でも .hero-catch / .hero-catch-en の
   font-family は絶対に変更しないこと。 */
.hero-catch {
  margin: 0;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif !important;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0.06em;
}

.hero-catch-line {
  display: block;
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif !important;
  font-size: clamp(1.65rem, 4.8vw, 3.25rem);
  font-weight: 500;
}

.hero-em {
  font-family: "Noto Sans JP", "Hiragino Sans", "Yu Gothic", sans-serif !important;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.hero-catch-en {
  margin: 1.75rem 0 0;
  font-family: "Oswald", "Arial Narrow", sans-serif !important;
  font-size: clamp(0.85rem, 2vw, 1.05rem);
  font-weight: 400;
  letter-spacing: 0.35em;
  text-indent: 0.35em;
  opacity: 0.92;
}
/* ===== /ヒーローキャッチ フォント固定ここまで ===== */

/* ヒーロー：英字サブはキャッチ表示後にふわっと表示 */
@keyframes hero-float-up {
  from {
    opacity: 0;
    transform: translate3d(0, 18px, 0);
    filter: blur(2px);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
    filter: blur(0);
  }
}

@keyframes hero-line-reveal {
  from {
    opacity: 0;
    transform: translate3d(0, 110%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

/* ヒーロー・実績数字など共通の下からリビール */
@keyframes motion-reveal-up {
  from {
    opacity: 0;
    transform: translate3d(0, 110%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

.hero-catch-line-wrap {
  display: block;
  overflow: hidden;
}

.hero-catch-line-wrap .hero-catch-line {
  display: block;
  will-change: transform, opacity;
  animation: hero-line-reveal 1.25s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-catch-line-wrap:nth-child(1) .hero-catch-line {
  animation-delay: 200ms;
}

.hero-catch-line-wrap:nth-child(2) .hero-catch-line {
  animation-delay: 650ms;
}

.hero-copy .hero-catch-en {
  will-change: transform, opacity;
  animation: hero-float-up 1.75s cubic-bezier(0.2, 0.8, 0.2, 1) both;
  animation-delay: 1.5s;
}

@media (prefers-reduced-motion: reduce) {
  .hero-catch-line-wrap .hero-catch-line,
  .hero-copy .hero-catch-en {
    animation: none !important;
    opacity: 1;
    transform: none;
    filter: none;
  }
}

/* WordPress generic fixed-page fallback (privacy policy and future pages). */
.generic-page-section {
  padding: clamp(3rem, 7vw, 6rem) 0;
  background: #fff;
}

.generic-page-content {
  max-width: 900px;
  margin-inline: auto;
  color: var(--text, #1b2933);
  line-height: 1.9;
}

.generic-page-content > * + * {
  margin-top: 1.25em;
}

.generic-page-content :is(h2, h3, h4) {
  margin-top: 2em;
  color: var(--navy, #0c3d5c);
  line-height: 1.5;
}

.generic-page-content img {
  max-width: 100%;
  height: auto;
}

.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  color: var(--white);
  text-decoration: none;
  transition: opacity 0.2s;
}

.hero-scroll:hover {
  color: var(--white);
  opacity: 0.75;
}

.hero-scroll-label {
  font-family: var(--font-en);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-indent: 0.25em;
}

.hero-scroll-bar {
  display: block;
  width: 2px;
  height: 48px;
  background: rgba(201, 146, 96, 0.28);
  position: relative;
  overflow: hidden;
  border-radius: 1px;
}

.hero-scroll-bar::after {
  content: "";
  position: absolute;
  top: -38%;
  left: 0;
  width: 100%;
  height: 38%;
  background: #c99260;
  border-radius: 1px;
  animation: scroll-line-down 1.6s cubic-bezier(0.45, 0, 0.55, 1) infinite;
}

@keyframes scroll-line-down {
  0% {
    top: -38%;
    opacity: 0;
  }

  12% {
    opacity: 1;
  }

  88% {
    opacity: 1;
  }

  100% {
    top: 100%;
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-scroll-bar::after {
    animation: none;
    top: 0;
    height: 100%;
    opacity: 1;
  }
}

.btn-outline-dark {
  background: transparent;
  color: var(--navy);
  border-color: var(--navy);
}

.btn-outline-dark:hover {
  background: var(--sky);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.9rem 1.6rem;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s, transform 0.15s;
  font-family: inherit;
}

.btn-primary {
  background: var(--white);
  color: var(--navy);
  border-color: var(--white);
}

.btn-primary:hover {
  background: var(--sky);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.7);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
}

.btn-navy:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-line {
  background: var(--line-green);
  color: var(--white);
  border-color: var(--line-green);
}

.btn-line:hover {
  filter: brightness(1.05);
  color: var(--white);
  transform: translateY(-2px);
}

.microcopy {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.9;
}

/* Stats */
.stats-bar {
  background: var(--white);
  margin-top: 0;
  position: relative;
  z-index: 10;
  padding: 2.5rem 0 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(12, 61, 92, 0.06);
}

.stat-item {
  padding: 1.75rem 1.25rem;
  text-align: center;
  border-right: 1px solid rgba(12, 61, 92, 0.06);
}

.stat-item:last-child {
  border-right: none;
}

.stat-label {
  display: block;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-bottom: 0.35rem;
  font-weight: 500;
}

.stat-value {
  display: block;
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--navy);
  line-height: 1.2;
}

.stat-value small {
  font-size: 0.55em;
  font-weight: 600;
}

.stat-note {
  display: block;
  font-size: 0.7rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
}

.stat-placeholder {
  color: var(--blue);
}

/* Sections */
.section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--cream);
}

.section-sky {
  background: var(--sky);
}

.section-header {
  margin-bottom: 2.5rem;
}

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-header h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.5rem, 3vw, 1.85rem);
  font-weight: 700;
  color: var(--navy);
}

.section-header p {
  margin: 0;
  color: var(--text-muted);
  max-width: 40em;
}


/* ===== About（2カラム：写真 × 白カード） ===== */
:root {
  /* 紺×クリームのアクセントパレット */
  --navy-accent: #102f4e;        /* 深みのある洗練ネイビー */
  --navy-accent-hover: #1a5380;  /* ホバー用の明るめネイビー */
  --navy-soft: rgba(16, 47, 78, 0.08);
  --ivory: #f4ecdb;              /* 温かみのあるクリーム/アイボリー */
  --ivory-soft: #faf5ea;
}

.about-section {
  position: relative;
  padding: 7.5rem 0 6.5rem;
  background: var(--ivory);
  overflow: hidden;
  isolation: isolate;
}

.about-bg-block {
  position: absolute;
  top: 4rem;
  bottom: 4rem;
  left: 0;
  width: 42%;
  background: linear-gradient(160deg, var(--navy-accent) 0%, var(--navy-deep) 100%);
  z-index: -1;
}

.about-bg-block::after {
  content: "ABOUT";
  position: absolute;
  top: 50%;
  right: -0.4em;
  transform: translateY(-50%) rotate(180deg);
  writing-mode: vertical-rl;
  font-family: var(--font-en);
  font-size: clamp(7rem, 12vw, 11rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.07);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.about-container {
  position: relative;
  /* 既定の .container（min(1120px, 92vw)）を上書きしてワイドに */
  width: min(1400px, 94vw);
  max-width: none;
}

.about-grid {
  display: grid;
  /* 画像をやや控えめ・カードを広めにして「横長で開放感のある」バランス */
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 5rem;
  align-items: center;
}

/* --- 左：ビジュアル（aspect-ratio はフレーム側に持たせて画像崩れを防止） --- */
.about-visual {
  position: relative;
  margin: 0;
}

.about-visual-frame {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 5;
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  box-shadow:
    0 32px 72px rgba(8, 30, 48, 0.42),
    0 0 0 1px rgba(255, 255, 255, 0.06) inset;
  background: linear-gradient(135deg, #0f172a 0%, #1e3a8a 100%);
}

.about-visual-frame::before {
  content: "PHOTO COMING SOON";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.4em;
  text-indent: 0.4em;
  color: rgba(255, 255, 255, 0.35);
  z-index: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.about-visual-frame.is-ready::before {
  opacity: 0;
  visibility: hidden;
}

.about-visual-media {
  position: absolute;
  inset: -12% 0;
  z-index: 1;
  overflow: hidden;
  will-change: transform;
}

.about-visual-photo {
  display: block;
  width: 100%;
  height: 124%;
  object-fit: cover;
  object-position: 62% 46%;
  transform: translate3d(0, var(--about-parallax-y, 0), 0) scale(1.06);
  opacity: 0;
  transition: opacity 1.1s cubic-bezier(0.22, 1, 0.36, 1), transform 0.8s ease;
  font-size: 0;
  color: transparent;
}

.about-visual-frame.is-ready .about-visual-photo {
  opacity: 1;
}

.about-visual-scrim {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(15, 23, 42, 0.72) 0%,
      rgba(30, 58, 138, 0.38) 38%,
      rgba(8, 36, 98, 0.12) 68%,
      transparent 100%),
    linear-gradient(180deg,
      rgba(5, 21, 51, 0.45) 0%,
      transparent 42%,
      rgba(5, 21, 51, 0.55) 100%);
}

.about-visual:hover .about-visual-photo {
  transform: translate3d(0, var(--about-parallax-y, 0), 0) scale(1.08);
}

@keyframes about-photo-fade {
  from {
    opacity: 0;
    transform: translate3d(0, calc(var(--about-parallax-y, 0px) + 14px), 0) scale(1.04);
  }

  to {
    opacity: 1;
    transform: translate3d(0, var(--about-parallax-y, 0), 0) scale(1.06);
  }
}

.about-visual-frame.is-ready .about-visual-photo {
  animation: about-photo-fade 1.15s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.about-visual-accent {
  position: absolute;
  top: -22px;
  left: -22px;
  width: 45%;
  height: 38%;
  border: 3px solid var(--industrial-orange, #e68a2e);
  border-right: none;
  border-bottom: none;
  z-index: 0;
  opacity: 0.85;
}

.about-visual-badge {
  position: absolute;
  right: -1.25rem;
  bottom: -1.25rem;
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.2rem;
  width: 7.5rem;
  height: 7.5rem;
  background: var(--ivory-soft);
  border: 1px solid rgba(16, 47, 78, 0.12);
  border-radius: 50%;
  box-shadow: 0 14px 36px rgba(8, 30, 48, 0.25);
  color: var(--navy-accent);
}

.about-visual-badge-num {
  font-family: var(--font-en);
  font-size: 1.85rem;
  font-weight: 600;
  line-height: 1;
  color: var(--navy-accent);
}

.about-visual-badge-text {
  font-family: var(--font-en);
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  color: var(--text-muted);
}

/* --- 右：白カード --- */
.about-card {
  position: relative;
  background: var(--white);
  padding: 4.5rem 4.5rem 4rem;
  border-radius: 4px;
  box-shadow: 0 24px 60px rgba(8, 30, 48, 0.16);
}

.about-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4.5rem;
  height: 4px;
  background: var(--industrial-orange, #e68a2e);
}

.about-label {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-indent: 0.32em;
  color: var(--navy-accent);
  margin-bottom: 1.75rem;
}

.about-label-bar {
  display: inline-block;
  width: 2rem;
  height: 2px;
  background: var(--industrial-orange, #e68a2e);
  text-indent: 0;
}

.about-heading {
  margin: 0 0 2rem;
  font-size: clamp(1.4rem, 2.1vw, 1.8rem);
  font-weight: 700;
  line-height: 1.8;
  letter-spacing: 0.04em;
  color: var(--navy-accent);
}

.about-heading-em {
  position: relative;
  display: inline-block;
  background-image: linear-gradient(transparent 62%, rgba(230, 138, 46, 0.35) 62%);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 0 0.05em;
  color: var(--navy-accent);
}

.about-heading-em.reveal--left {
  transform: translate3d(-24px, 0, 0);
  transition-delay: 0.2s;
}

.about-heading-em.reveal--left.is-revealed {
  transform: translate3d(0, 0, 0);
}

.about-body p {
  margin: 0 0 1.6rem;
  font-size: 1.02rem;
  line-height: 2.3;
  color: var(--text);
  letter-spacing: 0.04em;
}

.about-body p:last-child {
  margin-bottom: 0;
}

.about-body strong {
  font-weight: 700;
  color: var(--navy-accent);
}

.about-note {
  margin: 2rem 0 2.5rem;
  padding-top: 1.75rem;
  border-top: 1px solid rgba(16, 47, 78, 0.12);
  font-size: 0.86rem;
  line-height: 1.95;
  color: var(--text-muted);
}

/* --- VIEW MORE ボタン（紺×クリーム） --- */
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.25rem;
  margin-top: 2.75rem;
  padding: 1.1rem 1.55rem 1.1rem 1.85rem;
  background: var(--navy-accent);
  color: var(--white) !important;
  border-radius: 2px;
  text-decoration: none;
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease, padding-right 0.25s ease;
  box-shadow: 0 8px 22px rgba(16, 47, 78, 0.28);
}

.about-cta:hover {
  background: var(--navy-accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 47, 78, 0.38);
  padding-right: 1.85rem;
}

.about-cta-text {
  display: inline-flex;
  flex-direction: column;
  gap: 0.15rem;
}

.about-cta-en {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
}

.about-cta-jp {
  font-family: var(--font);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0.85;
}

.about-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.about-cta:hover .about-cta-arrow {
  background: rgba(255, 255, 255, 0.24);
  transform: translateX(4px);
}

/* --- レスポンシブ --- */
@media (max-width: 960px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .about-bg-block {
    width: 100%;
    top: auto;
    bottom: 0;
    height: 55%;
  }

  .about-bg-block::after {
    font-size: clamp(5rem, 18vw, 8rem);
    right: auto;
    left: 50%;
    transform: translate(-50%, -50%) rotate(0);
    top: 6rem;
    writing-mode: horizontal-tb;
    opacity: 0.5;
  }

  .about-visual-badge {
    right: 1rem;
    bottom: 1rem;
    width: 6rem;
    height: 6rem;
  }

  .about-visual-badge-num {
    font-size: 1.5rem;
  }
}

@media (max-width: 640px) {
  .about-section {
    padding: 4.5rem 0 5rem;
  }

  .about-card {
    padding: 2.5rem 1.5rem 2rem;
  }

  .about-heading {
    font-size: 1.25rem;
    line-height: 1.8;
  }

  .about-cta {
    width: 100%;
    justify-content: space-between;
  }
}

/* Strengths bar（Aboutの直前に配置する独立セクション・紺×クリーム） */
.strengths-bar {
  position: relative;
  padding: clamp(4.5rem, 8vw, 5.5rem) 0 clamp(4rem, 7vw, 5rem);
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy-accent) 50%, #1a5380 100%);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.strengths-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(244, 236, 219, 0.18), transparent 55%),
    radial-gradient(ellipse at 85% 90%, rgba(0, 0, 0, 0.28), transparent 60%);
  pointer-events: none;
  z-index: -1;
}

.strengths-bar .container {
  position: relative;
}

.strengths-bar-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  margin: 0;
  text-align: center;
  font-family: var(--font-en);
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.32em;
  text-indent: 0.32em;
}

.strengths-bar__head {
  margin-bottom: 2.5rem;
}

.strengths-bar__lead {
  margin: 0.85rem 0 0;
  text-align: center;
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 600;
  line-height: 1.65;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.88);
}

.strengths-bar-label span {
  font-family: var(--font);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.16em;
  text-indent: 0.16em;
}

.strengths-bar .stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  background: transparent;
  box-shadow: none;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.strengths-bar .stat-item {
  --stat-inline-gap: clamp(1.15rem, 2.6vw, 1.85rem);
  display: flex;
  align-items: center;
  gap: var(--stat-inline-gap);
  padding: 0.5rem 1.75rem;
  text-align: left;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.strengths-bar .stat-item:last-child {
  border-right: none;
}

.strengths-bar a.stat-item {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
  transition: background 0.2s ease;
}

.strengths-bar a.stat-item:hover,
.strengths-bar a.stat-item:focus-visible {
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.strengths-bar .stat-head {
  display: flex;
  flex: 0 0 auto;
  flex-direction: column;
  justify-content: center;
  gap: 0.25rem;
  width: auto;
  max-width: 46%;
  min-width: 0;
  min-height: 3.35rem;
}

.strengths-bar .stat-label {
  display: block;
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.04em;
  line-height: 1.45;
  word-break: keep-all;
}

.strengths-bar .stat-sublabel {
  display: block;
  font-family: var(--font-en);
  font-size: 0.7rem;
  font-weight: 400;
  color: var(--ivory);
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  opacity: 0.85;
}

.strengths-bar .stat-sublabel--period {
  font-family: var(--font);
  font-size: 0.62rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  text-indent: 0;
  opacity: 0.9;
}

.strengths-bar .stat-item--reviews .stat-head {
  max-width: 54%;
  min-height: 4.1rem;
}

.strengths-bar .stat-award {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: flex-start;
  gap: 0.2rem;
  margin: 0 0 0.4rem;
  padding: 0.32rem 0 0.32rem 0.55rem;
  border-left: 2px solid #c99260;
  background: linear-gradient(90deg, rgba(201, 146, 96, 0.16) 0%, transparent 100%);
}

.strengths-bar .stat-award__text {
  font-size: clamp(0.58rem, 1.1vw, 0.66rem);
  font-weight: 500;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

.strengths-bar .stat-award__no {
  font-family: var(--font-en);
  font-size: clamp(0.68rem, 1.25vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: #c99260;
  text-shadow: 0 0 18px rgba(201, 146, 96, 0.35);
}

.strengths-bar .stat-value-wrap {
  display: flex;
  flex: 1 1 0;
  align-items: center;
  justify-content: flex-end;
  min-width: 0;
  min-height: clamp(2.75rem, 7vw, 4.6rem);
  padding-right: 0.1em;
  text-align: right;
}

.strengths-bar .stat-value-wrap:has(.stat-value__unit) {
  padding-right: 0.65em;
}

.strengths-bar .stat-value-wrap .stat-value {
  position: relative;
  display: inline-block;
  font-family: var(--font-en);
  font-size: clamp(2.75rem, 7vw, 4.6rem);
  font-weight: 500;
  color: var(--ivory-soft);
  line-height: 1;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.25);
  vertical-align: middle;
}

.strengths-bar .stat-value__number {
  display: block;
  font-variant-numeric: tabular-nums;
  font-feature-settings: "tnum" 1;
  min-width: 2.5ch;
  line-height: 1;
  transition: color 0.35s ease, text-shadow 0.35s ease;
}

.strengths-bar .stat-value--count.is-counting .stat-value__number {
  color: var(--white);
  text-shadow:
    0 0 20px rgba(244, 236, 219, 0.35),
    0 4px 18px rgba(0, 0, 0, 0.25);
}

.strengths-bar.is-stats-active .stat-value--count.is-counted .stat-value__number {
  color: var(--ivory-soft);
}

.strengths-bar .stat-value small,
.strengths-bar .stat-value__unit {
  position: absolute;
  left: 100%;
  right: auto;
  bottom: 0.12em;
  margin-left: 0.1em;
  font-family: var(--font);
  font-size: 0.38em;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0;
  white-space: nowrap;
  pointer-events: none;
}

.strengths-reviews {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.25rem, 4.5vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.strengths-reviews__title {
  margin: 0 0 clamp(1.15rem, 2.4vw, 1.5rem);
  font-size: clamp(1.15rem, 2.2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.06em;
  text-align: center;
  color: var(--white);
}

.strengths-reviews__shell {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 0.55rem;
  align-items: center;
}

.strengths-reviews__nav {
  flex-shrink: 0;
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  cursor: pointer;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.strengths-reviews__nav:hover,
.strengths-reviews__nav:focus-visible {
  background: var(--industrial-orange, #e68a2e);
  border-color: var(--industrial-orange, #e68a2e);
  color: var(--white);
  outline: none;
}

.strengths-reviews__viewport {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.strengths-reviews__track {
  display: flex;
  width: max-content;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
  will-change: transform;
}

.strengths-review {
  flex: 0 0 clamp(15.5rem, 28vw, 18.5rem);
  display: flex;
  flex-direction: column;
  margin: 0;
  padding: clamp(1rem, 1.8vw, 1.25rem) clamp(1rem, 2vw, 1.3rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--industrial-orange, #e68a2e);
  color: var(--white);
  text-decoration: none;
  transition:
    background 0.2s ease,
    border-color 0.2s ease,
    transform 0.2s ease;
}

a.strengths-review:hover,
a.strengths-review:focus-visible {
  background: rgba(255, 255, 255, 0.11);
  border-color: rgba(230, 138, 46, 0.55);
  transform: translateY(-2px);
  outline: none;
}

.strengths-review__head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 0.65rem;
  align-items: center;
  margin-bottom: 0.55rem;
}

.strengths-review__avatar {
  display: grid;
  place-items: center;
  width: 2.35rem;
  height: 2.35rem;
  border-radius: 50%;
  background: var(--review-avatar, #1e8e3e);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
  line-height: 1;
}

.strengths-review__meta {
  min-width: 0;
}

.strengths-review__name {
  margin: 0;
  font-size: 0.92rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 0.18em;
}

a.strengths-review:hover .strengths-review__name,
a.strengths-review:focus-visible .strengths-review__name {
  text-decoration-color: var(--industrial-orange, #e68a2e);
}

.strengths-review__time {
  margin: 0.1rem 0 0;
  font-size: 0.72rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.55);
}

.strengths-review__google {
  display: grid;
  place-items: center;
  opacity: 0.95;
}

.strengths-review__stars {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin: 0 0 0.55rem;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  color: #f0c14b;
  line-height: 1;
}

.strengths-review__verified {
  display: inline-block;
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: #34a853;
  position: relative;
  flex-shrink: 0;
}

.strengths-review__verified::after {
  content: "";
  position: absolute;
  left: 0.22rem;
  top: 0.14rem;
  width: 0.28rem;
  height: 0.42rem;
  border: solid #fff;
  border-width: 0 1.5px 1.5px 0;
  transform: rotate(45deg);
}

.strengths-review__text {
  margin: 0;
  font-size: clamp(0.8rem, 1.2vw, 0.88rem);
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.78);
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
  line-clamp: 4;
  overflow: hidden;
}

.strengths-review__text.is-expanded {
  display: block;
  -webkit-line-clamp: unset;
  line-clamp: unset;
  overflow: visible;
}

.strengths-review__text--only {
  color: rgba(255, 255, 255, 0.55);
}

.strengths-review__more {
  margin-top: 0.35rem;
  padding: 0;
  border: 0;
  background: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  cursor: pointer;
  align-self: flex-start;
}

.strengths-review__more:hover,
.strengths-review__more:focus-visible {
  color: var(--industrial-orange, #e68a2e);
}

.strengths-reviews__footer {
  margin: 1rem 0 0;
  text-align: center;
}

.strengths-reviews__maps-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.86);
  text-decoration: underline;
  text-underline-offset: 0.18em;
}

.strengths-reviews__maps-link:hover,
.strengths-reviews__maps-link:focus-visible {
  color: var(--industrial-orange, #e68a2e);
}

.strengths-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: clamp(2.25rem, 4.5vw, 3rem);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}

.strengths-point {
  margin: 0;
  padding: clamp(1.15rem, 2.2vw, 1.5rem) clamp(1.2rem, 2.4vw, 1.6rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 3px solid var(--industrial-orange, #e68a2e);
}

.strengths-point__title {
  margin: 0 0 0.55rem;
  font-size: clamp(0.98rem, 1.6vw, 1.12rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--white);
}

.strengths-point__text {
  margin: 0;
  font-size: clamp(0.84rem, 1.3vw, 0.92rem);
  font-weight: 400;
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.br-sp {
  display: none;
}

@media (max-width: 640px) {
  .br-sp {
    display: inline;
  }
}

/* Services */
.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.75rem;
  border: 1px solid rgba(12, 61, 92, 0.08);
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: var(--shadow);
  transform: translateY(-3px);
}

.service-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.1rem;
  color: var(--navy);
}

.service-card p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.service-card .link-more {
  display: inline-block;
  margin-top: 1rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--blue);
}

/* Methods */
.method-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 2rem;
}

.method-tag {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid rgba(61, 159, 212, 0.35);
  border-radius: 999px;
  font-size: 0.85rem;
  color: var(--navy);
  font-weight: 500;
}

/* ===== Service section（2カラム・リスト型） ===== */
.services-section {
  position: relative;
  padding: clamp(3.25rem, 5.5vw, 4.75rem) 0 clamp(2.25rem, 4vw, 3.25rem);
  background: var(--cream, #faf9f6);
  overflow: hidden;
}

.services-section__container {
  position: relative;
  z-index: 1;
  width: min(1280px, 94vw);
  max-width: none;
  margin-inline: auto;
}

.services-section__layout {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: clamp(1.5rem, 3.5vw, 3rem);
}

/* 左：見出し */
.services-section__intro {
  flex: 0 0 min(100%, 22rem);
  max-width: 22rem;
}

.services-section__eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin: 0 0 clamp(0.75rem, 1.6vw, 1rem);
  font-size: clamp(0.92rem, 1.5vw, 1.05rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy-accent, #102f4e);
}

.services-section__eyebrow::before {
  content: "";
  flex-shrink: 0;
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 50%;
  background: var(--blue, #3d9fd4);
}

.services-section__display {
  margin: 0 0 clamp(0.85rem, 1.8vw, 1.25rem);
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: clamp(2.75rem, 6vw, 4.25rem);
  font-weight: 700;
  line-height: 0.9;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: transparent;
  background: linear-gradient(
    155deg,
    rgba(16, 47, 78, 0.22) 0%,
    rgba(61, 159, 212, 0.45) 42%,
    rgba(16, 47, 78, 0.28) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.services-section__lead {
  margin: 0;
  font-size: clamp(0.9rem, 1.45vw, 1rem);
  font-weight: 700;
  line-height: 1.65;
  color: rgba(16, 47, 78, 0.82);
}

/* 右：事業リスト */
.services-section__list {
  flex: 1 1 auto;
  min-width: 0;
  margin-top: clamp(1.5rem, 3.5vw, 2.75rem);
  border-top: 1px solid rgba(16, 47, 78, 0.18);
}

.services-section__row {
  position: relative;
  padding: clamp(0.85rem, 1.6vw, 1.15rem) 0;
  border-bottom: 1px solid rgba(16, 47, 78, 0.18);
  transition: background 0.3s ease;
}

.services-section__row:last-child {
  border-bottom: none;
}

.services-section__row:hover,
.services-section__row:focus-within {
  background: rgba(255, 255, 255, 0.55);
}

.services-section__row-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.4rem;
}

.services-section__row h3 {
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  line-height: 1.4;
}

.services-section__row h3 a {
  color: rgba(16, 47, 78, 0.35);
  text-decoration: none;
  transition: color 0.28s ease;
}

.services-section__row:hover h3 a,
.services-section__row:focus-within h3 a {
  color: var(--navy-accent, #102f4e);
}

.services-section__row-arrow {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid rgba(16, 47, 78, 0.2);
  background: var(--white);
  transition: transform 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.services-section__row-arrow::before {
  content: "";
  display: block;
  width: 0.45rem;
  height: 0.45rem;
  margin: 0.72rem auto 0;
  border-right: 2px solid var(--navy-accent, #102f4e);
  border-bottom: 2px solid var(--navy-accent, #102f4e);
  transform: rotate(-45deg);
  transition: transform 0.28s ease;
}

.services-section__row:hover .services-section__row-arrow,
.services-section__row:focus-within .services-section__row-arrow {
  border-color: var(--navy-accent, #102f4e);
  background: var(--navy-accent, #102f4e);
}

.services-section__row:hover .services-section__row-arrow::before,
.services-section__row:focus-within .services-section__row-arrow::before {
  border-color: var(--white);
  transform: rotate(-45deg) translate(1px, 1px);
}

.services-section__row p {
  margin: 0;
  max-width: 40em;
  font-size: clamp(0.86rem, 1.35vw, 0.94rem);
  line-height: 1.65;
  color: rgba(26, 43, 54, 0.72);
}

.services-section__row.reveal {
  transition:
    opacity 2s ease,
    transform 2.6s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.3s ease;
}

.services-section__row.reveal:nth-child(1) {
  transition-delay: 0.2s;
}

.services-section__row.reveal:nth-child(2) {
  transition-delay: 0.55s;
}

.services-section__row.reveal:nth-child(3) {
  transition-delay: 0.9s;
}

.services-section__row.reveal:nth-child(4) {
  transition-delay: 1.25s;
}

.services-section__row.reveal.is-revealed {
  transition: background 0.3s ease;
}

/* 下部 CTA */
.services-section .services-cta-wrap {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  text-align: center;
}

.services-section .services-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 2rem;
  background: var(--navy-accent, #102f4e);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(16, 47, 78, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.services-section .services-cta:hover,
.services-section .services-cta:focus-visible {
  background: var(--navy-accent-hover, #1a5380);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 47, 78, 0.3);
}

.services-section .services-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.services-section .services-cta:hover .services-cta-arrow,
.services-section .services-cta:focus-visible .services-cta-arrow {
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(4px);
}

@media (max-width: 960px) {
  .services-section__layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .services-section__intro {
    flex: none;
    max-width: none;
  }

  .services-section__list {
    width: 100%;
    margin-top: 0;
  }
}

/* ===== 不二商栄（ACT）— SANDOH ACT風 ===== */
.fuji-act {
  --fuji-act-teal: #1a7f82;
  --fuji-act-teal-hover: #229a9e;
  --fuji-act-black: #0a0a0a;
  background: var(--white);
}

/* ヒーロー帯 */
.fuji-act-hero {
  position: relative;
  padding: clamp(2rem, 4.5vw, 3rem) clamp(1.25rem, 4vw, 3rem) clamp(1.5rem, 3vw, 2.25rem);
  overflow: hidden;
}

.fuji-act-hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(8, 20, 28, 0.72) 0%, rgba(8, 20, 28, 0.82) 100%),
    url("../img/safety/city-background.jpg") center / cover no-repeat;
  filter: saturate(0.85);
}

.fuji-act-hero-inner {
  position: relative;
  z-index: 1;
  width: min(1180px, 94vw);
  margin-inline: auto;
}

.fuji-act-hero-title {
  display: block;
  margin: 0 0 clamp(1.25rem, 2.8vw, 2rem);
  font-family: var(--font, "Noto Sans JP", sans-serif);
  font-size: clamp(1.55rem, 3.8vw, 2.65rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.06em;
  text-align: center;
  color: rgba(255, 255, 255, 0.92);
}

.fuji-act-hero-word {
  letter-spacing: 0.1em;
}

.fuji-act-hero-word--act {
  margin-left: 0.24em;
  letter-spacing: 0.14em;
}

.fuji-act-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(200px, 260px);
  gap: clamp(0.75rem, 2vw, 1.25rem);
  align-items: stretch;
  max-width: 920px;
}

.fuji-act-spotlight {
  display: grid;
  grid-template-columns: minmax(0, 42%) minmax(0, 58%);
  background: var(--fuji-act-black);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
}

.fuji-act-spotlight-media {
  min-height: clamp(140px, 16vw, 180px);
  background:
    url("../img/safety/planning-team.jpg") center / cover no-repeat;
}

.fuji-act-spotlight-body {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-block: clamp(0.75rem, 1.5vw, 1.15rem);
  padding-inline: clamp(1rem, 2vw, 1.5rem);
  padding-bottom: clamp(1rem, 1.8vw, 1.35rem);
  color: var(--white);
  overflow: visible;
}

.fuji-act-spotlight-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  font-weight: 700;
  letter-spacing: 0.04em;
}

.fuji-act-spotlight-text {
  margin: 0;
  font-size: clamp(0.78rem, 1.35vw, 0.88rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.88);
}

.fuji-act-spotlight-body .fuji-act-btn {
  margin-top: 1.1rem;
}

.fuji-act-side {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: clamp(150px, 18vw, 210px);
  padding: 1.5rem 1rem;
  background: linear-gradient(180deg, #45c4c4 0%, #1a7f82 42%, #0d4f54 100%);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.28);
}

.fuji-act-side-text {
  margin: 0;
  font-size: clamp(1.35rem, 2.8vw, 2rem);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.12em;
  color: var(--white);
  writing-mode: vertical-rl;
  text-orientation: mixed;
}

.fuji-act-btn {
  display: inline-block;
  align-self: flex-start;
  flex-shrink: 0;
  margin-top: auto;
  padding: 0.5rem 1rem;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--white);
  text-decoration: none;
  background: var(--fuji-act-teal);
  border: none;
  transition: background 0.2s ease;
}

.fuji-act-btn:hover {
  background: var(--fuji-act-teal-hover);
  color: var(--white);
}

/* 4×2 モザイク */
.fuji-act-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(clamp(150px, 18vw, 210px), auto));
}

.fuji-act-cell--text {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  min-height: clamp(150px, 18vw, 210px);
  padding-block: clamp(0.85rem, 1.6vw, 1.25rem);
  padding-inline: clamp(1rem, 2vw, 1.65rem);
  padding-bottom: clamp(1rem, 1.8vw, 1.35rem);
  background: var(--fuji-act-black);
  color: var(--white);
  overflow: visible;
}

.fuji-act-cell-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.2rem, 2.1vw, 1.65rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.fuji-act-cell-text {
  margin: 0 0 0.85rem;
  flex: 0 1 auto;
  font-size: clamp(0.76rem, 1.25vw, 0.84rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.86);
}

.fuji-act-cell--media {
  background-color: #1a2b36;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}

.fuji-act-cell--media-1 {
  background-image: url("../img/safety/construction-site.jpg");
}

.fuji-act-cell--media-2 {
  background-image: url("../img/safety/monitoring-team.jpg");
}

.fuji-act-cell--media-3 {
  background-image:
    linear-gradient(135deg, rgba(8, 42, 64, 0.35), rgba(26, 127, 130, 0.25)),
    url("../img/safety/earth-at-night.jpg");
}

.fuji-act-cell--media-4 {
  background-image: url("../img/safety/field-team.jpg");
}

@media (max-width: 1024px) {
  .fuji-act-hero-layout {
    grid-template-columns: 1fr;
    max-width: 560px;
    margin-inline: auto;
  }

  .fuji-act-side {
    min-height: 100px;
  }

  .fuji-act-side-text {
    writing-mode: horizontal-tb;
    text-align: center;
  }

  .fuji-act-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: auto;
  }

  .fuji-act-cell--text,
  .fuji-act-cell--media {
    min-height: 150px;
  }
}

@media (max-width: 560px) {
  .fuji-act-spotlight {
    grid-template-columns: 1fr;
  }

  .fuji-act-spotlight-media {
    min-height: 120px;
  }

  .fuji-act-mosaic {
    grid-template-columns: 1fr;
  }
}

/* ===== Contact section（ダーク・グリッド・ACTと統一） ===== */
.contact-section {
  --contact-teal: #1a7f82;
  --contact-teal-hover: #229a9e;
  --contact-mail-line: #1a7f82;
  --contact-company-line: #3d7a9e;
  --contact-company-hover: #4f8fb3;
  --contact-download-line: #c99260;
  --contact-download-hover: #d9a574;
  --contact-line-green: rgba(6, 199, 85, 0.78);
  --contact-black: #0a0a0a;
  --contact-line: rgba(255, 255, 255, 0.14);
  background: var(--contact-black);
  color: var(--white);
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4.5rem, 8vw, 6.5rem);
}

.contact-section__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.contact-section__header {
  margin: 0;
}

.contact-section__label {
  display: block;
  margin: 0 0 0.65rem;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: var(--contact-teal);
}

.contact-section__header h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--white);
}

.contact-section__header p {
  margin: 0;
  max-width: none;
  white-space: nowrap;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

@media (max-width: 520px) {
  .contact-section__header p {
    white-space: normal;
    font-size: 0.8rem;
  }
}

.contact-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  align-items: stretch;
  width: min(1280px, 100%);
  margin-inline: auto;
  border: 1px solid var(--contact-line);
}

.contact-cell {
  display: flex;
  flex-direction: column;
  align-self: stretch;
  min-height: clamp(260px, 28vw, 320px);
  height: 100%;
  padding: clamp(1.35rem, 2.4vw, 1.85rem) clamp(1.15rem, 2vw, 1.65rem);
  background: var(--contact-black);
  border-top: 2px solid var(--contact-mail-line);
  border-left: 1px solid var(--contact-line);
  text-align: left;
  transition: background 0.25s ease;
}

.contact-cell:first-child,
.contact-cell--line {
  border-left: none;
  border-top-color: var(--contact-line-green);
}

.contact-cell:nth-child(2) {
  border-top-color: var(--contact-mail-line);
}

.contact-cell:nth-child(3) {
  border-top-color: var(--contact-company-line);
}

.contact-cell:nth-child(4) {
  border-top-color: var(--contact-download-line);
}

.contact-cell:hover {
  background: #111111;
}

.contact-cell__icon {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  height: auto;
  margin: 0 0 1.1rem;
  color: rgba(255, 255, 255, 0.88);
}

.contact-cell__icon img {
  display: block;
  width: 32px;
  height: 32px;
}

.contact-cell__icon svg {
  display: block;
}

.contact-cell__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.02rem, 1.8vw, 1.15rem);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.03em;
  color: var(--white);
}

.contact-cell__text {
  flex: 1 1 auto;
  margin: 0;
  font-size: clamp(0.8rem, 1.3vw, 0.88rem);
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.78);
}

.contact-cell__text p {
  margin: 0;
}

.contact-cell__text--follow {
  margin-top: 0.85rem;
}

.contact-cell__foot {
  position: relative;
  width: 100%;
  margin-top: auto;
  padding-top: 1.35rem;
  /* PDFサイズ行分を全セルで確保し、ボタン位置を揃える */
  padding-bottom: 1.35rem;
}

.contact-cell__foot .contact-cell__btn {
  width: 100%;
}

.contact-cell__foot .line-friend-add {
  width: 100%;
  box-sizing: border-box;
}

.contact-cell__foot .contact-cell__tel-btn,
.contact-cell__foot .contact-cell__mail-btn {
  width: 100%;
}

.contact-cell__tel-btn,
.contact-cell__mail-btn {
  gap: 0.45rem;
}

.contact-cell__tel-btn svg,
.contact-cell__mail-btn svg {
  flex-shrink: 0;
}

.contact-cell__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-height: 36px;
  padding: 0.55rem 1rem;
  font-size: clamp(0.76rem, 1.2vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  color: var(--white);
  border: none;
  border-radius: 0;
  transition: background 0.2s ease, color 0.2s ease;
}

.contact-cell__btn--teal {
  background: var(--contact-teal);
}

.contact-cell__btn--teal:hover,
.contact-cell__btn--teal:focus-visible {
  background: var(--contact-teal-hover);
  color: var(--white);
}

.contact-cell__btn--company {
  background: var(--contact-company-line);
}

.contact-cell__btn--company:hover,
.contact-cell__btn--company:focus-visible {
  background: var(--contact-company-hover);
  color: var(--white);
}

.contact-cell__btn--download {
  background: var(--contact-download-line);
}

.contact-cell__btn--download:hover,
.contact-cell__btn--download:focus-visible {
  background: var(--contact-download-hover);
  color: var(--white);
}

.contact-cell__btn--orange {
  background: var(--industrial-orange, #e68a2e);
}

.contact-cell__btn--orange:hover,
.contact-cell__btn--orange:focus-visible {
  background: #cf7a28;
  color: var(--white);
}

.contact-cell__btn--line {
  background: var(--line-green);
}

.contact-cell__btn--line:hover,
.contact-cell__btn--line:focus-visible {
  background: #05b34c;
  color: var(--white);
}

/* LINE友だち追加（テキストボタン・公式カラー） */
.line-friend-add {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 36px;
  padding: 0 1.1rem 0 0.85rem;
  background: var(--line-green);
  color: var(--white) !important;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  border-radius: 0;
  box-shadow: 0 2px 8px rgba(6, 199, 85, 0.32);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.line-friend-add__icon {
  display: block;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  filter: brightness(0) invert(1);
}

.line-friend-add:hover,
.line-friend-add:focus-visible {
  background: #05b34c;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
}

/* LINE友だち追加（カスタムボタン・旧） */
.line-add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 2.75rem;
  padding: 0.7rem 1.35rem;
  background: var(--line-green);
  color: var(--white) !important;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.35;
  text-align: center;
  text-decoration: none;
  border: none;
  border-radius: 6px;
  box-shadow: 0 4px 14px rgba(6, 199, 85, 0.35);
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
}

.line-add-btn:hover,
.line-add-btn:focus-visible {
  background: #05b34c;
  color: var(--white) !important;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.42);
}

.line-add-banner {
  display: inline-block;
  max-width: 100%;
  line-height: 0;
  text-decoration: none;
  border-radius: 6px;
  overflow: hidden;
  transition: opacity 0.2s ease, transform 0.15s ease;
}

.line-add-banner:hover,
.line-add-banner:focus-visible {
  opacity: 0.92;
  transform: translateY(-1px);
}

.line-add-banner img {
  display: block;
  width: min(100%, 320px);
  height: auto;
}

.contact-cell__meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  min-height: 1rem;
  margin: 0;
  font-size: 0.72rem;
  color: rgba(255, 255, 255, 0.45);
  line-height: 1.3;
}

@media (max-width: 1100px) {
  .contact-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .contact-cell {
    border-bottom: 1px solid var(--contact-line);
  }

  .contact-cell:nth-child(odd) {
    border-left: none;
  }

  .contact-cell:nth-child(n + 3) {
    border-bottom: none;
  }
}

@media (max-width: 620px) {
  .contact-mosaic {
    grid-template-columns: 1fr;
  }

  .contact-cell {
    border-left: none;
    border-bottom: 1px solid var(--contact-line);
    min-height: 0;
    height: auto;
  }

  .contact-cell:last-child {
    border-bottom: none;
  }
}

/* お問い合わせページ — 縦並びコンタクト */
.contact-section--page {
  padding-top: clamp(3rem, 6vw, 4.5rem);
}

.contact-mosaic--stack {
  display: flex;
  flex-direction: column;
  grid-template-columns: none;
  width: min(860px, calc(100% - 2.5rem));
}

.contact-mosaic--stack .contact-cell {
  min-height: 0;
  height: auto;
  border-left: none;
  border-bottom: 1px solid var(--contact-line);
}

.contact-mosaic--stack .contact-cell:last-child {
  border-bottom: none;
}

.contact-cell--form {
  border-top-color: var(--contact-mail-line);
}

.contact-cell--zoom {
  border-top-color: var(--contact-company-line);
}

.contact-cell--tel {
  border-top-color: var(--contact-teal);
}

.contact-cell--recruit {
  border-top-color: var(--contact-company-line);
}

.contact-cell--partner {
  border-top-color: var(--contact-download-line);
}

.contact-cell__body--form {
  margin-top: 0.5rem;
}

.contact-cell__body--form .contact-form.form-grid {
  max-width: 100%;
}

.contact-cell--form .form-group label {
  color: rgba(255, 255, 255, 0.92);
}

.contact-cell--form .form-group label span[aria-hidden="true"] {
  color: var(--industrial-orange, #e68a2e);
}

.contact-cell--form .form-group input,
.contact-cell--form .form-group select,
.contact-cell--form .form-group textarea {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.18);
  color: var(--white);
}

.contact-cell--form .form-group input::placeholder,
.contact-cell--form .form-group textarea::placeholder {
  color: rgba(255, 255, 255, 0.38);
}

.contact-cell--form .form-group select {
  color: rgba(255, 255, 255, 0.85);
}

.contact-cell--form .form-group select option {
  color: var(--contact-black);
  background: var(--white);
}

.contact-cell--form .form-group input:focus,
.contact-cell--form .form-group select:focus,
.contact-cell--form .form-group textarea:focus {
  outline: none;
  border-color: var(--contact-download-line);
  box-shadow: 0 0 0 2px rgba(201, 146, 96, 0.25);
}

.contact-cell--form .contact-form__submit {
  width: 100%;
  margin-top: 0.5rem;
  cursor: pointer;
  font-family: inherit;
}

.contact-cell__tel-link {
  font-size: clamp(1.35rem, 2.8vw, 1.75rem);
  font-weight: 700;
  color: var(--white);
  text-decoration: none;
}

.contact-cell__tel-link:hover,
.contact-cell__tel-link:focus-visible {
  color: var(--contact-download-line);
}

.contact-cell__text--tel a:not(.contact-cell__tel-link) {
  color: rgba(255, 255, 255, 0.88);
  text-decoration: none;
}

.contact-cell__text--tel a:not(.contact-cell__tel-link):hover,
.contact-cell__text--tel a:not(.contact-cell__tel-link):focus-visible {
  color: var(--contact-download-line);
}

.page-contact .contact-section--page {
  --contact-teal: var(--brand-analog-a, #106174);
  --contact-teal-hover: #138a96;
  --contact-mail-line: var(--brand-analog-a, #106174);
}

/* Consult cards（旧：会社概要などで使用） */
.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.4rem;
}

.contact-grid--four {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: stretch;
}

.contact-grid--four .contact-card {
  height: 100%;
}

.contact-grid--four .contact-card p {
  flex: 1 1 auto;
  margin-bottom: 0;
}

@media (max-width: 1100px) {
  .contact-grid--four {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 980px) {
  .contact-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

.contact-card {
  background: var(--white);
  border-radius: 18px;
  padding: 2rem 1.75rem 1.6rem;
  text-align: center;
  border: 1px solid rgba(12, 61, 92, 0.08);
  box-shadow: 0 10px 28px rgba(12, 61, 92, 0.08);
  transition: transform 0.2s, box-shadow 0.2s;
  display: flex;
  flex-direction: column;
}

.contact-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px rgba(12, 61, 92, 0.12);
}

.contact-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: rgba(12, 61, 92, 0.07);
}

.contact-icon img {
  width: 34px;
  height: 34px;
  display: block;
}

.contact-icon svg {
  width: 34px;
  height: 34px;
  display: block;
  color: var(--navy);
}

.contact-icon--line {
  background: rgba(6, 199, 85, 0.14);
}

.contact-card h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.contact-card p {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.8;
}

.contact-card-foot {
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  flex-shrink: 0;
}

.contact-card-foot .btn {
  width: 100%;
  min-height: 3.1rem;
  margin: 0;
  padding: 0.75rem 0.65rem;
  font-size: 0.88rem;
  line-height: 1.35;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-sizing: border-box;
  white-space: nowrap;
}

.contact-file-size {
  min-height: 1.15rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.15rem;
  display: block;
}

.contact-card--line {
  background: linear-gradient(135deg, #f0fdf4 0%, #e9fbf1 100%);
  border-color: rgba(6, 199, 85, 0.22);
}

/* Scroll reveal（右→左 / 左→右 / 下→上） */
.reveal {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  transition: opacity 700ms ease, transform 900ms cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal--left {
  transform: translate3d(-28px, 0, 0);
}

.reveal--right {
  transform: translate3d(28px, 0, 0);
}

.reveal--up {
  transform: translate3d(0, 18px, 0);
}

.reveal.is-revealed {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .reveal--left,
  .reveal--right,
  .reveal--up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }

  .works-section .work-card--reveal .work-card-media::before,
  .works-section .work-card--reveal .work-card-media::after {
    display: none;
  }

  .works-section .work-card--reveal .work-card-media img,
  .works-section .work-card--reveal .work-card-body {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}

/* ===== Works（施工事例）— トップ：ダーク・グリッド ===== */
.works-section {
  --works-teal: #1a7f82;
  --works-teal-hover: #229a9e;
  --works-black: #0a0a0a;
  --works-line: rgba(255, 255, 255, 0.14);
  position: relative;
  padding: clamp(4rem, 8vw, 6rem) 0 clamp(4.5rem, 8vw, 6.5rem);
  background: var(--works-black);
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}

.works-section::after {
  content: "WORKS";
  position: absolute;
  top: clamp(2rem, 5vw, 3.5rem);
  right: -1.5rem;
  font-family: var(--font-en);
  font-size: clamp(5rem, 10vw, 9rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.04);
  line-height: 1;
  pointer-events: none;
  user-select: none;
  z-index: 0;
}

.works-container {
  position: relative;
  width: min(1400px, 94vw);
  max-width: none;
  z-index: 1;
}

.works-section__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
  position: relative;
  z-index: 1;
}

.works-section__header {
  margin: 0;
}

.works-section__label {
  display: block;
  margin: 0 0 0.65rem;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
  text-transform: uppercase;
  color: var(--works-teal);
}

.works-section__header h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.55rem, 3.2vw, 2rem);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  color: var(--white);
}

.works-section__header p {
  margin: 0;
  max-width: 42em;
  font-size: clamp(0.88rem, 1.5vw, 0.98rem);
  font-weight: 500;
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.72);
}

.works-mosaic {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border: 1px solid var(--works-line);
}

.work-card-link {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.work-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.work-card-body h3 {
  min-height: calc(2 * 1.55em);
}

.work-card-meta {
  margin-top: auto;
  padding-top: 0.5rem;
}

.works-section .work-card {
  display: flex;
  flex-direction: column;
  margin: 0;
  background: var(--works-black);
  border-radius: 0;
  overflow: hidden;
  box-shadow: none;
  border-right: 1px solid var(--works-line);
  border-bottom: 1px solid var(--works-line);
  transition: background 0.25s ease;
}

.works-section .work-card:nth-child(4n) {
  border-right: none;
}

.works-section .work-card:nth-child(n + 5) {
  border-bottom: none;
}

.works-section .work-card:hover {
  transform: none;
  background: #111111;
}

.work-card-media {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: linear-gradient(135deg, #1a3a4a 0%, var(--navy-deep) 100%);
}

.work-card-media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  font-size: 0;
  color: transparent;
}

/* 施工事例写真：スクロールでカーテン＋ズームイン */
.works-section .work-card--reveal:nth-child(1) { --work-stagger: 0ms; }
.works-section .work-card--reveal:nth-child(2) { --work-stagger: 90ms; }
.works-section .work-card--reveal:nth-child(3) { --work-stagger: 180ms; }
.works-section .work-card--reveal:nth-child(4) { --work-stagger: 270ms; }
.works-section .work-card--reveal:nth-child(5) { --work-stagger: 120ms; }
.works-section .work-card--reveal:nth-child(6) { --work-stagger: 210ms; }
.works-section .work-card--reveal:nth-child(7) { --work-stagger: 300ms; }
.works-section .work-card--reveal:nth-child(8) { --work-stagger: 390ms; }

.works-section .work-card--reveal .work-card-media::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 3;
  width: 100%;
  height: 2px;
  background: var(--works-teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.7s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--work-stagger, 0ms) + 180ms);
  pointer-events: none;
}

.works-section .work-card--reveal .work-card-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(160deg, #0a0a0a 0%, #152a30 55%, #0d1214 100%);
  transform: translate3d(0, 0, 0);
  transition: transform 0.95s cubic-bezier(0.76, 0, 0.24, 1) var(--work-stagger, 0ms);
  pointer-events: none;
}

.works-section .work-card--reveal .work-card-media img {
  transform: scale(1.14);
  filter: brightness(0.72) saturate(0.88);
  transition:
    transform 1.15s cubic-bezier(0.22, 1, 0.36, 1) var(--work-stagger, 0ms),
    filter 0.85s ease var(--work-stagger, 0ms);
  will-change: transform, filter;
}

.works-section .work-card--reveal.is-revealed .work-card-media::after {
  transform: translate3d(0, -102%, 0);
}

.works-section .work-card--reveal.is-revealed .work-card-media::before {
  transform: scaleX(1);
}

.works-section .work-card--reveal.is-revealed .work-card-media img {
  transform: scale(1);
  filter: brightness(1) saturate(1);
}

.works-section .work-card--reveal .work-card-body {
  opacity: 0;
  transform: translate3d(0, 14px, 0);
  transition:
    opacity 0.55s ease calc(var(--work-stagger, 0ms) + 420ms),
    transform 0.55s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--work-stagger, 0ms) + 420ms);
}

.works-section .work-card--reveal.is-revealed .work-card-body {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.works-section .work-card:hover .work-card-media img {
  transition-duration: 0.55s, 0.55s;
}

.works-section .work-card--reveal.is-revealed:not(:is(.works-marquee *)):hover .work-card-media img {
  transform: scale(1.05);
}

.works-section .work-card-body {
  flex: 1;
  padding: clamp(0.85rem, 1.6vw, 1.05rem) clamp(0.9rem, 1.8vw, 1.15rem) clamp(1rem, 1.8vw, 1.2rem);
  background: var(--works-black);
  clip-path: none;
  transition: background 0.25s ease;
}

.works-section .work-card:hover .work-card-body {
  background: #111111;
}

.works-section .work-card-body h3 {
  margin: 0;
  font-size: clamp(0.72rem, 1.2vw, 0.8rem);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.02em;
  color: var(--white);
}

.works-section .work-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0;
  font-size: 0.68rem;
  color: rgba(255, 255, 255, 0.5);
}

.works-section .work-card-meta time {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.works-section .work-card-meta span {
  padding: 0.1rem 0.45rem;
  border-radius: 0;
  border: 1px solid var(--works-teal);
  background: transparent;
  font-weight: 600;
  color: var(--works-teal);
}

.works-section__foot {
  position: relative;
  z-index: 1;
  margin-top: clamp(2.25rem, 4.5vw, 3.25rem);
  text-align: center;
}

.works-section__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: min(100%, 22rem);
  padding: 0.85rem 2.25rem;
  background: var(--works-teal);
  color: var(--white) !important;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-decoration: none;
  border-radius: 0;
  box-shadow: none;
  transition: background 0.2s ease;
}

.works-section__cta::after {
  content: " »";
  margin-left: 0.15em;
  font-weight: 400;
}

.works-section__cta:hover,
.works-section__cta:focus-visible {
  color: var(--white) !important;
  background: var(--works-teal-hover);
  transform: none;
}

/* 一覧ページ用カード（ライト） */
.works-page-section .work-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border-radius: 0;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(8, 30, 48, 0.1);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.works-page-section .work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 36px rgba(8, 30, 48, 0.16);
}

.works-page-section .work-card-media img {
  transition: transform 0.6s ease;
}

.works-page-section .work-card:hover .work-card-media img {
  transform: scale(1.05);
}

.works-page-section .work-card-body {
  position: relative;
  flex: 1;
  padding: 1rem 1.1rem 1.15rem;
  background: var(--white);
  clip-path: none;
}

.works-page-section .work-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
  margin: 0;
  font-size: 0.68rem;
  color: rgba(16, 47, 78, 0.6);
}

.works-page-section .work-card-meta time {
  font-weight: 600;
  letter-spacing: 0.02em;
}

.works-page-section .work-card-meta > span:not(.work-card-meta__tags),
.works-page-section .work-card-meta__tags span {
  padding: 0.1rem 0.45rem;
  border-radius: 0;
  border: 1px solid rgba(230, 138, 46, 0.45);
  background: rgba(230, 138, 46, 0.08);
  font-weight: 700;
  color: var(--industrial-orange, #e68a2e);
}

.works-page-section .work-card-meta__tags {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}

.works-page-section .work-card-body h3 {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.55;
  color: var(--brand-base, #082462);
  letter-spacing: 0.02em;
}

/* ===== Works 一覧ページ ===== */
.page-hero--works {
  background: var(--brand-complement-light, #edebe8);
}

.page-hero-label {
  margin: 0 0 0.5rem;
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.35em;
  color: rgba(8, 36, 98, 0.5);
}

.works-page-section {
  padding: 3rem 0 5rem;
  background: var(--brand-complement-light, #edebe8);
}

.works-page-container {
  width: min(1200px, 94vw);
}

.works-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.works-filter-btn {
  padding: 0.65rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  font-family: inherit;
  letter-spacing: 0.06em;
  color: var(--navy-accent, #102f4e);
  background: var(--white);
  border: 1px solid rgba(16, 47, 78, 0.15);
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(16, 47, 78, 0.1);
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.works-filter-btn:hover {
  border-color: var(--navy-accent, #102f4e);
  box-shadow: 0 6px 18px rgba(16, 47, 78, 0.16);
}

.works-filter-btn.is-active {
  background: var(--navy-accent, #102f4e);
  color: var(--white);
  border-color: var(--navy-accent, #102f4e);
  box-shadow: 0 8px 22px rgba(16, 47, 78, 0.22);
}

.works-filter-count {
  margin: 0 0 1.5rem;
  font-size: 0.85rem;
  color: rgba(16, 47, 78, 0.65);
}

.works-page-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.works-page-card.is-filter-hidden,
.works-page-card.is-page-hidden,
.works-page-card[hidden] {
  display: none !important;
}

.works-filter-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 2.5rem 1rem;
  text-align: center;
  font-size: 0.9rem;
  color: rgba(16, 47, 78, 0.65);
  background: rgba(255, 255, 255, 0.65);
  border: 1px dashed rgba(16, 47, 78, 0.18);
}

.works-filter-empty[hidden] {
  display: none !important;
}

.works-page-card .work-card-body h3 {
  font-size: 0.82rem;
}

.works-page-cta {
  text-align: center;
}

.works-page-pagination {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

.works-page-pagination[hidden] {
  display: none !important;
}

.works-page-pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.45rem;
}

.page-works .works-page-pagination__num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  margin: 0;
  padding: 0 0.65rem;
  border: 1px solid rgba(8, 36, 98, 0.18);
  background: var(--white);
  color: var(--works-navy, #082462);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.page-works .works-page-pagination__num:hover,
.page-works .works-page-pagination__num:focus-visible {
  border-color: rgba(230, 138, 46, 0.55);
  color: var(--works-accent, #e68a2e);
}

.page-works .works-page-pagination__num.is-active {
  background: var(--works-navy, #082462);
  border-color: var(--works-navy, #082462);
  color: var(--white);
  cursor: default;
  pointer-events: none;
}

/* Works トップ レスポンシブ */
@media (max-width: 1100px) {
  .works-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .works-section .work-card:nth-child(4n) {
    border-right: 1px solid var(--works-line);
  }

  .works-section .work-card:nth-child(2n) {
    border-right: none;
  }

  .works-section .work-card:nth-child(n + 5) {
    border-bottom: 1px solid var(--works-line);
  }

  .works-section .work-card:nth-child(n + 7) {
    border-bottom: none;
  }
}

@media (max-width: 620px) {
  .works-mosaic {
    grid-template-columns: 1fr;
  }

  .works-section .work-card {
    border-right: none;
    border-bottom: 1px solid var(--works-line);
  }

  .works-section .work-card:nth-child(2n) {
    border-right: none;
  }

  .works-section .work-card:nth-child(n + 5),
  .works-section .work-card:nth-child(n + 7) {
    border-bottom: 1px solid var(--works-line);
  }

  .works-section .work-card:last-child {
    border-bottom: none;
  }

  .works-section::after {
    font-size: clamp(3.5rem, 18vw, 5.5rem);
    right: -0.5rem;
  }

  .works-section .work-card-body h3 {
    font-size: 0.85rem;
  }
}

/* Trust */
.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.trust-box {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(12, 61, 92, 0.08);
}

.trust-box h3 {
  margin: 0 0 1rem;
  font-size: 1rem;
  color: var(--navy);
}

.trust-box ul {
  margin: 0;
  padding-left: 1.2rem;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.trust-box li {
  margin-bottom: 0.4rem;
}

/* CTA band */
.cta-band {
  background: linear-gradient(135deg, var(--navy) 0%, #165a82 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.35rem, 3vw, 1.75rem);
}

.cta-band p {
  margin: 0 0 1.75rem;
  opacity: 0.92;
  max-width: 32em;
  margin-inline: auto;
}

.cta-band .microcopy-block {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  opacity: 0.88;
}

.cta-band .microcopy-block span {
  display: inline-block;
  margin: 0 0.5rem;
}

.cta-band .microcopy-block span::before {
  content: "✓ ";
  opacity: 0.8;
}

/* News & Topics（グレー・2段組） */
.news-section {
  --news-gray: #636363;
  --news-gray-dark: #4f4f4f;
  background: var(--news-gray);
  color: var(--white);
  padding: clamp(3.25rem, 7vw, 5.25rem) 0 clamp(3.75rem, 8vw, 5.75rem);
}

.news-section__inner {
  display: grid;
  grid-template-columns: minmax(10.5rem, 24%) minmax(0, 1fr);
  column-gap: clamp(1.75rem, 4.5vw, 3.75rem);
  align-items: start;
}

.news-section__header {
  margin: 0;
  padding-top: 0.15rem;
}

.news-section__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(2.65rem, 7vw, 4.85rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--white);
}

.news-section__subtitle {
  margin: 0.7rem 0 0;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--white);
}

.news-section__main {
  position: relative;
  min-height: 12rem;
  padding-bottom: 4.5rem;
}

.news-section__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.news-section__item {
  padding: clamp(1rem, 2vw, 1.2rem) 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.55);
}

.news-section__item:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.55);
}

.news-section__item time {
  display: block;
  margin: 0 0 0.35rem;
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  font-weight: 500;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.95);
}

.news-section__text {
  margin: 0;
  font-size: clamp(0.86rem, 1.5vw, 0.98rem);
  font-weight: 500;
  line-height: 1.65;
  color: var(--white);
}

.news-section__text a {
  color: inherit;
  text-decoration: none;
}

.news-section__text a:hover {
  text-decoration: underline;
  text-underline-offset: 3px;
}

.news-section__more {
  position: absolute;
  right: 0;
  bottom: 0;
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 2rem;
  background: var(--navy-accent, #102f4e);
  color: var(--white) !important;
  border-radius: 2px;
  font-family: var(--font-en);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(16, 47, 78, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.news-section__more:hover,
.news-section__more:focus-visible {
  background: var(--navy-accent-hover, #1a5380);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(16, 47, 78, 0.3);
}

.news-section__more-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.news-section__more:hover .news-section__more-arrow,
.news-section__more:focus-visible .news-section__more-arrow {
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .news-section__inner {
    grid-template-columns: 1fr;
    row-gap: 1.5rem;
  }

  .news-section__main {
    padding-bottom: 4rem;
  }
}

/* Footer */
.site-footer {
  position: relative;
  overflow: hidden;
  background: var(--brand-band-bg);
  color: rgba(255, 255, 255, 0.85);
  padding: 3.5rem 0 2rem;
  font-size: 0.9rem;
}

.site-footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--brand-band-grid-image);
  background-size: var(--brand-band-grid-size);
  pointer-events: none;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(220px, 1.05fr) minmax(320px, 1.35fr) minmax(260px, 0.85fr);
  gap: 3rem;
  margin-bottom: 2.5rem;
  align-items: start;
  position: relative;
  z-index: 1;
}

.footer-brand {
  position: relative;
  padding-right: 1.5rem;
}

.footer-brand::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, transparent, rgba(255, 255, 255, 0.12) 35%, rgba(255, 255, 255, 0.12) 65%, transparent);
}

.footer-logo {
  display: inline-block;
  margin-bottom: 0.45rem;
  line-height: 0;
}

.footer-brand > p {
  margin: 0;
  line-height: 1.75;
}

.footer-logo:hover {
  opacity: 0.92;
}

.footer-logo-img {
  display: block;
  width: auto;
  height: 44px;
  max-width: min(100%, 260px);
  mix-blend-mode: lighten;
}

.site-footer h3 {
  color: var(--white);
  font-size: 1rem;
  margin: 0 0 1rem;
}

.site-footer a {
  color: rgba(255, 255, 255, 0.85);
}

.site-footer a:hover {
  color: var(--blue-light);
}

.footer-nav-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem 2.5rem;
}

.footer-nav-group__title {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 0 0 1.1rem;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--white);
}

.footer-nav-group__title::before {
  content: "";
  display: block;
  width: 3px;
  height: 1.05em;
  background: var(--industrial-orange, #e68a2e);
  flex-shrink: 0;
}

.footer-nav {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li {
  margin: 0;
}

.footer-nav a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0;
  font-size: 0.84rem;
  line-height: 1.45;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  transition: color 0.2s ease, padding-left 0.2s ease;
}

.footer-nav li:last-child a {
  border-bottom: none;
}

.footer-nav a::before {
  content: "";
  width: 0;
  height: 0;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  border-left: 4px solid var(--industrial-orange, #e68a2e);
  opacity: 0;
  flex-shrink: 0;
  transition: opacity 0.2s ease;
}

.footer-nav a:hover {
  color: var(--white);
  padding-left: 0.35rem;
}

.footer-nav a:hover::before {
  opacity: 1;
}

.footer-aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.footer-action-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-left: 3px solid var(--industrial-orange, #e68a2e);
  padding: 1.1rem 1.15rem;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.footer-action-card:hover {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.16);
}

.footer-action-card__head {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 0.55rem;
}

.footer-action-card__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(230, 138, 46, 0.15);
  color: var(--industrial-orange, #e68a2e);
}

.footer-action-card__title {
  margin: 0;
  padding-top: 0.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--white);
}

.footer-action-card__text {
  margin: 0 0 0.85rem;
  padding-left: calc(36px + 0.75rem);
  font-size: 0.78rem;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.62);
}

.footer-action-card__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-left: calc(36px + 0.75rem);
  padding: 0.5rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--white) !important;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 0;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.footer-action-card__btn:hover,
.footer-action-card__btn:focus-visible {
  background: var(--industrial-orange, #e68a2e);
  border-color: var(--industrial-orange, #e68a2e);
  color: var(--white) !important;
}

.footer-action-card--partner {
  border-left-color: var(--blue-light);
}

.footer-action-card--partner .footer-action-card__icon {
  background: rgba(126, 196, 232, 0.12);
  color: var(--blue-light);
}

.footer-action-card--partner .footer-action-card__btn:hover,
.footer-action-card--partner .footer-action-card__btn:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
}

.footer-bottom {
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.8rem;
  opacity: 0.7;
  text-align: center;
  position: relative;
  z-index: 1;
}

/* Floating CTA */
.float-cta {
  display: none;
  position: fixed;
  bottom: 1.25rem;
  right: 1.25rem;
  z-index: 999;
  flex-direction: column;
  gap: 0.5rem;
  align-items: flex-end;
}

.float-cta a {
  padding: 0.75rem 1.1rem;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 600;
  box-shadow: var(--shadow-lg);
  color: var(--white);
}

.float-cta .float-estimate {
  background: var(--navy);
}

.float-cta .float-line {
  background: var(--line-green);
}

/* Chatbot */
.chat-widget {
  position: fixed;
  bottom: 1.25rem;
  left: 1.25rem;
  z-index: 998;
}

.chat-widget__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.5rem;
  width: max-content;
  --chat-btn-height: 2.05rem;
}

.chat-line-link,
.chat-toggle {
  box-sizing: border-box;
  width: 100%;
  height: var(--chat-btn-height);
  padding: 0 0.5rem;
  border-radius: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow-lg);
  transition: transform 0.2s, background 0.2s;
}

.chat-line-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--line-green);
  color: var(--white);
  text-decoration: none;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  white-space: nowrap;
}

.chat-line-link__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
}

.chat-line-link__icon svg {
  display: block;
  width: 13px;
  height: 13px;
}

.chat-line-link__label {
  display: inline-block;
}

.chat-line-link:hover,
.chat-line-link:focus-visible {
  transform: translateY(-1px);
  background: #05b34c;
}

.chat-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.35rem;
  background: var(--navy);
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  white-space: nowrap;
}

.chat-toggle__icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  color: var(--white);
}

.chat-toggle__icon svg {
  display: block;
  width: 13px;
  height: 13px;
}

.chat-toggle__label {
  display: inline-block;
}

.chat-toggle:hover,
.chat-toggle:focus-visible {
  transform: translateY(-1px);
  background: var(--blue);
}

.chat-panel {
  display: none;
  position: absolute;
  bottom: calc(100% + 0.55rem);
  left: 0;
  width: min(320px, calc(100vw - 2.5rem));
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 1px solid rgba(12, 61, 92, 0.1);
  overflow: hidden;
}

.chat-panel.is-open {
  display: block;
}

.chat-panel-header {
  padding: 1rem 1.15rem;
  background: var(--navy);
  color: white;
  font-weight: 600;
  font-size: 0.95rem;
}

.chat-faq {
  margin: 0;
  padding: 0;
  list-style: none;
  max-height: 280px;
  overflow-y: auto;
}

.chat-faq button {
  width: 100%;
  text-align: left;
  padding: 0.85rem 1.15rem;
  border: none;
  border-bottom: 1px solid rgba(12, 61, 92, 0.06);
  background: none;
  font-family: inherit;
  font-size: 0.88rem;
  cursor: pointer;
  color: var(--text);
}

.chat-faq button:hover {
  background: var(--sky);
}

.chat-answer {
  display: none;
  padding: 1rem 1.15rem;
  font-size: 0.88rem;
  color: var(--text-muted);
  background: var(--cream);
  border-top: 1px solid rgba(12, 61, 92, 0.06);
}

.chat-answer.is-visible {
  display: block;
}

/* Site chatbot (bottom-right) */
.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;
}

.site-chatbot {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 1000;
}

.site-chatbot__panel {
  position: absolute;
  right: 0;
  bottom: calc(100% + 0.55rem);
  display: flex;
  flex-direction: column;
  width: min(360px, calc(100vw - 2.5rem));
  max-height: min(70vh, 560px);
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.12);
  border-radius: 0;
  box-shadow: 0 16px 40px rgba(5, 21, 51, 0.22);
  overflow: hidden;
}

.site-chatbot__panel[hidden] {
  display: none !important;
}

.site-chatbot__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  background: var(--navy);
  color: var(--white);
}

.site-chatbot__eyebrow {
  margin: 0 0 0.15rem;
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  opacity: 0.72;
}

.site-chatbot__title {
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-chatbot__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease;
}

.site-chatbot__close:hover,
.site-chatbot__close:focus-visible {
  background: rgba(255, 255, 255, 0.12);
}

.site-chatbot__messages {
  flex: 1 1 auto;
  min-height: 220px;
  max-height: 320px;
  overflow-y: auto;
  padding: 0.85rem 0.85rem 0.35rem;
  background: linear-gradient(180deg, #f7f9fc 0%, #f2f4f8 100%);
}

.site-chatbot__message {
  display: flex;
  margin-bottom: 0.65rem;
}

.site-chatbot__message--bot {
  justify-content: flex-start;
}

.site-chatbot__message--user {
  justify-content: flex-end;
}

.site-chatbot__bubble {
  max-width: 88%;
  padding: 0.65rem 0.75rem;
  font-size: 0.82rem;
  line-height: 1.65;
  border-radius: 0;
}

.site-chatbot__message--bot .site-chatbot__bubble {
  background: var(--white);
  color: var(--text);
  border: 1px solid rgba(8, 36, 98, 0.1);
  box-shadow: 0 2px 8px rgba(8, 36, 98, 0.05);
}

.site-chatbot__message--user .site-chatbot__bubble {
  background: var(--navy);
  color: var(--white);
}

.site-chatbot__bubble a {
  color: var(--industrial-orange, #e68a2e);
  font-weight: 600;
  text-decoration: underline;
}

.site-chatbot__message--user .site-chatbot__bubble a {
  color: #ffd9a8;
}

.site-chatbot__suggestions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  padding: 0.55rem 0.85rem 0.75rem;
  background: var(--white);
  border-top: 1px solid rgba(8, 36, 98, 0.08);
}

.site-chatbot__suggestion {
  padding: 0.28rem 0.5rem;
  border: 1px solid rgba(230, 138, 46, 0.45);
  border-radius: 0;
  background: rgba(230, 138, 46, 0.08);
  color: var(--industrial-orange, #e68a2e);
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  line-height: 1.35;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-chatbot__suggestion:hover,
.site-chatbot__suggestion:focus-visible {
  background: rgba(230, 138, 46, 0.16);
  transform: translateY(-1px);
}

.site-chatbot__form {
  display: flex;
  align-items: stretch;
  gap: 0.45rem;
  padding: 0.75rem 0.85rem 0.85rem;
  background: var(--white);
  border-top: 1px solid rgba(8, 36, 98, 0.08);
}

.site-chatbot__input {
  flex: 1 1 auto;
  min-width: 0;
  padding: 0.55rem 0.65rem;
  border: 1px solid rgba(8, 36, 98, 0.18);
  border-radius: 0;
  font-family: inherit;
  font-size: 0.82rem;
  color: var(--text);
  background: var(--white);
}

.site-chatbot__input:focus {
  outline: 2px solid rgba(230, 138, 46, 0.45);
  outline-offset: 1px;
}

.site-chatbot__send {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: var(--industrial-orange, #e68a2e);
  color: var(--white);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.site-chatbot__send:hover,
.site-chatbot__send:focus-visible {
  background: #d47a22;
  transform: translateY(-1px);
}

.site-chatbot__toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 2.05rem;
  padding: 0 0.75rem;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 0;
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  font-family: inherit;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1.25;
  white-space: nowrap;
  transition: transform 0.2s ease, background 0.2s ease;
}

.site-chatbot__toggle.is-open,
.site-chatbot__toggle:hover,
.site-chatbot__toggle:focus-visible {
  transform: translateY(-1px);
  background: var(--blue);
}

.site-chatbot__toggle-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-chatbot__toggle-icon svg {
  display: block;
  width: 14px;
  height: 14px;
}

/* Subpages */
.page-hero {
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  background: linear-gradient(160deg, var(--sky) 0%, var(--cream) 100%);
}

.page-hero h1 {
  margin: 0 0 0.5rem;
  font-size: clamp(1.5rem, 3vw, 2rem);
  color: var(--navy);
}

.page-hero p {
  margin: 0;
  color: var(--text-muted);
}

.content-block {
  padding: 3rem 0 5rem;
}

.content-block h2 {
  font-size: 1.25rem;
  color: var(--navy);
  margin: 2rem 0 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--sky);
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p,
.content-block li {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.form-grid {
  display: grid;
  gap: 1.25rem;
  max-width: 560px;
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.35rem;
}

.form-group label span[aria-hidden="true"] {
  color: var(--industrial-orange, #e68a2e);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(12, 61, 92, 0.2);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 1rem;
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1rem;
}

@media (max-width: 1280px) {
  .site-header .container {
    padding: 0 2rem;
  }

  .nav-main--compact {
    gap: 0.65rem 1.15rem;
  }
}

@media (max-width: 1100px) {
  .site-header .container {
    padding: 0 1.5rem;
  }

  .nav-main--compact a:not(.header-cta) {
    font-size: 0.76rem;
  }

  .nav-main--compact {
    gap: 0.5rem 0.9rem;
  }
}

/* Mobile nav */
@media (max-width: 900px) {
  .site-header .container {
    padding: 0 1.25rem;
  }

  .nav-main {
    position: fixed;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem;
    background: var(--white);
    border-bottom: 1px solid rgba(12, 61, 92, 0.1);
    box-shadow: var(--shadow);
    transform: translateY(-120%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s, opacity 0.25s;
  }

  .nav-main.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-main a {
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(12, 61, 92, 0.06);
  }

  .nav-main--compact a:not(.header-cta) {
    font-size: 0.95rem;
  }

  .nav-dropdown {
    display: flex;
    flex-direction: column;
  }

  .nav-dropdown__trigger {
    border-bottom: 1px solid rgba(12, 61, 92, 0.06);
  }

  .nav-dropdown__menu {
    position: static;
    min-width: 0;
    margin: 0.35rem 0 0.5rem;
    padding: 0;
    background: rgba(5, 21, 51, 0.92);
    border: none;
    border-top: 3px solid var(--industrial-orange, #e68a2e);
    border-radius: 0;
    box-shadow: none;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    backdrop-filter: none;
  }

  .nav-dropdown__menu::before {
    display: none;
  }

  .nav-dropdown__menu a {
    padding: 0.7rem 0.85rem;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-dropdown__menu a:hover,
  .nav-dropdown__menu a:focus-visible {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
  }

  .menu-toggle {
    display: flex;
  }

  .header-cta-desktop {
    display: none;
  }

  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-item:nth-child(2) {
    border-right: none;
  }

  .stat-item:nth-child(1),
  .stat-item:nth-child(2) {
    border-bottom: 1px solid rgba(12, 61, 92, 0.06);
  }

  .strengths-bar .stats-grid {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .strengths-bar .stat-item {
    --stat-inline-gap: 1.15rem;
    border-right: none !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
    padding: 1.25rem 1rem;
  }

  .strengths-bar .stat-head {
    max-width: 52%;
  }

  .strengths-bar .stat-item:last-child {
    border-bottom: none !important;
  }

  .trust-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    padding-right: 0;
  }

  .footer-brand::after {
    display: none;
  }

  .footer-nav-panel {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .float-cta {
    display: flex;
    bottom: calc(1.25rem + 2.55rem);
  }

  .site-chatbot {
    bottom: 1.25rem;
  }

  .chat-widget {
    bottom: calc(5.5rem + 2.55rem);
  }
}

@media (max-width: 520px) {
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stat-item {
    border-right: none !important;
    border-bottom: 1px solid rgba(12, 61, 92, 0.06);
  }

  .stat-item:last-child {
    border-bottom: none;
  }

  .strengths-bar {
    padding: 3.25rem 0 3rem;
  }

  .strengths-bar .stat-item {
    border-bottom: 1px solid rgba(255, 255, 255, 0.22) !important;
  }

  .strengths-bar .stat-item:last-child {
    border-bottom: none !important;
  }

  .strengths-bar .stat-value-wrap .stat-value {
    font-size: clamp(2.4rem, 14vw, 3.4rem);
  }

  .strengths-bar .stat-head {
    min-height: 2.85rem;
  }

  .strengths-points {
    grid-template-columns: 1fr;
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .strengths-reviews {
    margin-top: 2rem;
    padding-top: 2rem;
  }

  .strengths-reviews__shell {
    gap: 0.35rem;
  }

  .strengths-reviews__nav {
    width: 2.1rem;
    height: 2.1rem;
  }

  .strengths-review {
    flex-basis: min(16.5rem, 72vw);
  }

  .hero-scroll {
    bottom: 1.25rem;
  }

  .hero-catch-line {
    letter-spacing: 0.04em;
  }

  .hero-catch-en {
    letter-spacing: 0.2em;
    text-indent: 0.2em;
  }
}

/* ===== 事業内容ページ — デザインシステム ===== */
.page-svc {
  --svc-navy: var(--brand-deep, #051533);
  --svc-navy-mid: var(--brand-base, #082462);
  --svc-surface: var(--brand-light, #f2f4f9);
  --svc-surface-alt: var(--cream, #faf9f6);
  --svc-surface-white: #ffffff;
  --svc-text: var(--text, #1a2b36);
  --svc-text-muted: var(--text-muted, #5a6d7a);
  --svc-accent: var(--industrial-orange, #e68a2e);
  --svc-accent-hover: #cf7a28;
  --svc-space-section: clamp(4rem, 8vw, 6rem);
  --svc-space-inner: clamp(1.25rem, 2.5vw, 2rem);
}

.page-svc .site-header {
  background: var(--svc-navy);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-svc .site-header .header-cta {
  background: var(--svc-accent);
  border: 1px solid var(--svc-accent);
  color: var(--white) !important;
}

.page-svc .site-header .header-cta:hover,
.page-svc .site-header .header-cta:focus-visible {
  background: var(--svc-accent-hover);
  border-color: var(--svc-accent-hover);
  color: var(--white) !important;
}

.page-svc .svc-story {
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

.page-svc .svc-overview-hero {
  align-items: flex-end;
  min-height: 66.67vh;
  padding-block: calc(var(--header-h) + clamp(1.5rem, 3vw, 2.5rem)) clamp(2.5rem, 5vw, 4rem);
}

.page-svc .svc-overview-hero__content {
  gap: clamp(1.25rem, 2.2vw, 1.75rem);
}

/* 事業内容ページ（事業概要レイアウト） */
.svc-overview-hero {
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  min-height: clamp(38rem, 70vh, 52rem);
  padding: calc(var(--header-h) + 2.5rem) 0 clamp(5rem, 10vw, 8rem);
  background: var(--svc-navy, #051533);
  color: var(--white);
}

.svc-overview-hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  background: var(--svc-navy, #051533);
}

.svc-overview-hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  transform: scale(1.05);
  animation: svc-hero-kenburns 26s ease-in-out infinite alternate;
}

@keyframes svc-hero-kenburns {
  from {
    transform: scale(1.05);
  }

  to {
    transform: scale(1.1);
  }
}

.svc-overview-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 42%;
  opacity: 0;
  transition: opacity 0.8s ease;
}

.svc-overview-hero__video.is-ready {
  opacity: 1;
}

.svc-overview-hero__scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(90deg,
      rgba(5, 21, 51, 0.93) 0%,
      rgba(5, 21, 51, 0.82) 26%,
      rgba(8, 36, 98, 0.42) 50%,
      rgba(5, 21, 51, 0.18) 72%,
      rgba(5, 21, 51, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 21, 51, 0.42) 0%, transparent 48%, rgba(5, 21, 51, 0.52) 100%);
}

.svc-overview-hero .container {
  position: relative;
  z-index: 2;
  width: 100%;
  padding-left: clamp(2.5rem, 9vw, 7rem);
  padding-right: clamp(1.25rem, 4vw, 2.5rem);
}

.svc-overview-hero__content {
  max-width: min(42rem, 90vw);
  display: grid;
  gap: clamp(1.75rem, 3.5vw, 2.75rem);
}

.svc-overview-hero__head {
  display: grid;
  gap: 0.7rem;
}

.svc-overview-hero__eyebrow {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(0.72rem, 1.1vw, 0.84rem);
  font-weight: 500;
  letter-spacing: 0.34em;
  text-indent: 0.34em;
  text-transform: uppercase;
  color: var(--industrial-yellow, #f0c14b);
}

.svc-overview-hero__title {
  margin: 0;
  font-family: var(--font);
  font-size: clamp(2.25rem, 4.8vw, 3.5rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.22;
  color: var(--white);
}

.svc-overview-hero__rule {
  display: block;
  width: clamp(2.75rem, 6vw, 4.25rem);
  height: 3px;
  background: var(--industrial-orange, #e68a2e);
}

.svc-overview-intro {
  display: grid;
  gap: 1rem;
  padding-left: clamp(1rem, 2.5vw, 1.4rem);
  border-left: 3px solid var(--industrial-orange, #e68a2e);
}

.svc-overview-hero__lead {
  margin: 0;
  font-size: clamp(1.08rem, 1.95vw, 1.35rem);
  font-weight: 700;
  line-height: 1.65;
  letter-spacing: 0.03em;
  color: var(--white);
}

.svc-overview-hero__desc {
  margin: 0;
  max-width: 40rem;
  font-size: clamp(0.88rem, 1.4vw, 0.98rem);
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.84);
}

@media (prefers-reduced-motion: reduce) {
  .svc-overview-hero__photo {
    animation: none;
    transform: none;
  }

  .svc-overview-hero__video {
    display: none;
  }
}

.svc-overview-body {
  background: var(--svc-surface, #f2f4f9);
}

.svc-overview-body .container {
  width: min(1280px, 98vw);
}

/* Q&A・採用情報など下層ページ共通 */
.page-faq .svc-overview-hero__photo,
.page-recruit .svc-overview-hero__photo,
.page-contact .svc-overview-hero__photo {
  object-position: 55% center;
}

.page-faq .svc-overview-hero__photo {
  object-position: 68% 45%;
  filter: saturate(1.12) contrast(1.1) brightness(0.94);
}

.page-recruit .svc-overview-hero__photo {
  object-position: 72% 42%;
  filter: saturate(1.15) contrast(1.06) brightness(1.02);
}

.page-contact .svc-overview-hero__photo {
  object-position: 52% 44%;
  filter: saturate(1.1) contrast(1.08) brightness(1.03);
}

.page-faq .svc-overview-hero__scrim {
  background:
    linear-gradient(90deg,
      rgba(5, 21, 51, 0.94) 0%,
      rgba(5, 21, 51, 0.8) 24%,
      rgba(8, 36, 98, 0.36) 50%,
      rgba(5, 21, 51, 0.14) 70%,
      rgba(5, 21, 51, 0.38) 100%),
    linear-gradient(180deg, rgba(5, 21, 51, 0.5) 0%, transparent 40%, rgba(5, 21, 51, 0.55) 100%),
    radial-gradient(ellipse 70% 55% at 82% 40%, rgba(230, 138, 46, 0.14), transparent 58%);
}

.page-recruit .svc-overview-hero__scrim {
  background:
    linear-gradient(90deg,
      rgba(5, 21, 51, 0.92) 0%,
      rgba(5, 21, 51, 0.78) 26%,
      rgba(8, 36, 98, 0.32) 52%,
      rgba(5, 21, 51, 0.1) 72%,
      rgba(5, 21, 51, 0.28) 100%),
    linear-gradient(180deg, rgba(5, 21, 51, 0.45) 0%, transparent 42%, rgba(5, 21, 51, 0.48) 100%),
    radial-gradient(ellipse 75% 60% at 78% 38%, rgba(255, 210, 120, 0.1), transparent 55%);
}

.page-contact .svc-overview-hero__scrim {
  background:
    linear-gradient(90deg,
      rgba(5, 21, 51, 0.93) 0%,
      rgba(5, 21, 51, 0.8) 28%,
      rgba(8, 36, 98, 0.34) 54%,
      rgba(5, 21, 51, 0.12) 74%,
      rgba(5, 21, 51, 0.3) 100%),
    linear-gradient(180deg, rgba(5, 21, 51, 0.48) 0%, transparent 40%, rgba(5, 21, 51, 0.5) 100%),
    radial-gradient(ellipse 72% 58% at 80% 42%, rgba(230, 138, 46, 0.12), transparent 56%);
}

.subpage-story__inner {
  max-width: min(860px, 100%);
  margin-inline: auto;
}

.subpage-story .subpage-faq {
  margin-top: clamp(1.5rem, 3vw, 2rem);
  max-width: 100%;
  border: 1px solid rgba(8, 36, 98, 0.1);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  background: var(--white);
}

.subpage-story .subpage-faq button {
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1.15rem, 2vw, 1.35rem);
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  font-weight: 600;
  color: var(--svc-navy-mid, #082462);
  border-bottom: 1px solid rgba(8, 36, 98, 0.08);
  transition: background 0.2s ease, color 0.2s ease;
}

.subpage-story .subpage-faq button:hover,
.subpage-story .subpage-faq button[aria-expanded="true"] {
  background: rgba(8, 36, 98, 0.04);
  color: var(--svc-navy-mid, #082462);
}

.subpage-story .subpage-faq button[aria-expanded="true"] {
  border-left: 3px solid var(--svc-accent, #e68a2e);
  padding-left: calc(clamp(1.15rem, 2vw, 1.35rem) - 3px);
}

.subpage-story .subpage-faq .chat-answer {
  padding: clamp(1rem, 2vw, 1.2rem) clamp(1.15rem, 2vw, 1.35rem);
  font-size: clamp(0.88rem, 1.35vw, 0.95rem);
  line-height: 1.8;
  color: var(--svc-text-muted, #5a6d7a);
  background: var(--svc-surface, #f2f4f9);
  border-top: 1px solid rgba(8, 36, 98, 0.06);
}

.subpage-story__cta {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

.page-svc .subpage-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 2rem;
  background: var(--svc-navy-mid, #082462);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(8, 36, 98, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-svc .subpage-cta:hover,
.page-svc .subpage-cta:focus-visible {
  background: #0a3568;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 36, 98, 0.3);
}

.page-svc .subpage-cta .services-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-svc .subpage-cta:hover .services-cta-arrow,
.page-svc .subpage-cta:focus-visible .services-cta-arrow {
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(4px);
}

.recruit-list {
  list-style: none;
  margin: clamp(1.5rem, 3vw, 2rem) 0 0;
  padding: 0;
  display: grid;
  gap: clamp(0.85rem, 1.5vw, 1.1rem);
}

.recruit-list__item {
  padding: clamp(1.15rem, 2vw, 1.4rem) clamp(1.15rem, 2vw, 1.35rem);
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.09);
  border-top: 2px solid var(--svc-accent, #e68a2e);
  box-shadow: var(--shadow);
}

.recruit-list__title {
  margin: 0 0 0.5rem;
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: var(--svc-navy-mid, #082462);
}

.recruit-list__text {
  margin: 0;
  font-size: clamp(0.88rem, 1.35vw, 0.95rem);
  line-height: 1.75;
  color: var(--svc-text-muted, #5a6d7a);
}

.recruit-points {
  list-style: none;
  margin: 0.5rem 0 0.85rem;
  padding: 0;
  display: grid;
  gap: 0.35rem;
}

.recruit-points li {
  position: relative;
  padding-left: 1.1rem;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  line-height: 1.65;
  color: var(--svc-text-muted, #5a6d7a);
}

.recruit-points li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--svc-accent, #e68a2e);
  font-weight: 700;
}

.recruit-checklist {
  list-style: none;
  margin: 0 0 clamp(1rem, 2vw, 1.25rem);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.45rem 1.25rem;
}

.recruit-checklist li {
  position: relative;
  padding-left: 1.65rem;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  line-height: 1.65;
  color: var(--svc-text-muted, #5a6d7a);
}

.recruit-checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--svc-accent, #e68a2e);
  font-weight: 700;
}

.recruit-charm-list .recruit-list__item {
  padding-top: clamp(1.35rem, 2.2vw, 1.65rem);
}

.recruit-charm-list__num {
  margin: 0 0 0.35rem;
  font-family: var(--font-display, "Oswald", sans-serif);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--svc-accent, #e68a2e);
}

.recruit-subtitle {
  margin: clamp(1rem, 2vw, 1.35rem) 0 clamp(0.75rem, 1.5vw, 1rem);
  font-size: clamp(0.98rem, 1.5vw, 1.05rem);
  font-weight: 700;
  color: var(--svc-navy-mid, #082462);
}

.recruit-list--compact {
  margin-top: 0;
}

.page-recruit .recruit-growth {
  padding: clamp(2.5rem, 5vw, 3.5rem) 0;
}

.recruit-dual {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

.recruit-dual__panel {
  display: flex;
  flex-direction: column;
  padding: clamp(1.15rem, 2vw, 1.45rem) clamp(1.15rem, 2vw, 1.35rem);
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.09);
  border-top: 2px solid var(--svc-accent, #e68a2e);
  box-shadow: var(--shadow);
}

.recruit-dual__title {
  margin: 0 0 0.55rem;
  font-size: clamp(1.15rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--svc-navy-mid, #082462);
}

.recruit-dual__rule {
  margin: 0 0 0.85rem;
  border: none;
  width: 2.5rem;
  height: 3px;
  background: var(--industrial-orange, #e68a2e);
}

.recruit-dual__lead,
.recruit-dual__note {
  margin: 0;
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  line-height: 1.7;
  color: var(--svc-text-muted, #5a6d7a);
}

.recruit-dual__lead {
  margin-bottom: 0.85rem;
}

.recruit-dual__note {
  margin-top: 0.85rem;
  font-size: clamp(0.84rem, 1.2vw, 0.9rem);
}

.recruit-tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.5rem;
  margin: 0;
  padding: 0;
}

.recruit-tags li {
  padding: 0.38rem 0.72rem;
  font-size: clamp(0.82rem, 1.2vw, 0.88rem);
  font-weight: 600;
  line-height: 1.35;
  color: var(--svc-navy-mid, #082462);
  background: var(--svc-surface, #f2f4f9);
  border: 1px solid rgba(8, 36, 98, 0.1);
  border-radius: 999px;
}

.recruit-career-steps {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.35rem 0.2rem;
  margin: 0;
  padding: 0;
}

.recruit-career-steps li {
  display: flex;
  align-items: center;
  gap: 0.2rem;
}

.recruit-career-steps li:not(:last-child)::after {
  content: "→";
  margin-left: 0.15rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--svc-accent, #e68a2e);
}

.recruit-career-steps__label {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  font-size: clamp(0.82rem, 1.2vw, 0.88rem);
  font-weight: 700;
  line-height: 1.35;
  color: var(--white);
  background: linear-gradient(135deg, var(--svc-navy-mid, #082462) 0%, #0a3568 100%);
  border-radius: 4px;
}

@media (max-width: 720px) {
  .recruit-dual {
    grid-template-columns: 1fr;
  }

  .recruit-career-steps {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.45rem;
  }

  .recruit-career-steps li:not(:last-child)::after {
    display: none;
  }

  .recruit-checklist {
    grid-template-columns: 1fr;
  }
}

.recruit-message p:last-child {
  font-weight: 500;
  color: var(--svc-navy-mid, #082462);
}

.recruit-spec {
  margin: 0;
  display: grid;
  gap: 0;
  border: 1px solid rgba(8, 36, 98, 0.09);
  background: var(--white);
  box-shadow: var(--shadow);
}

.recruit-spec__row {
  display: grid;
  grid-template-columns: minmax(7rem, 9.5rem) 1fr;
  gap: 0;
  border-bottom: 1px solid rgba(8, 36, 98, 0.08);
}

.recruit-spec__row:last-child {
  border-bottom: none;
}

.recruit-spec__row dt {
  margin: 0;
  padding: clamp(0.85rem, 1.5vw, 1rem) clamp(0.85rem, 1.5vw, 1.15rem);
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  font-weight: 700;
  line-height: 1.5;
  color: var(--svc-navy-mid, #082462);
  background: rgba(8, 36, 98, 0.04);
  border-right: 1px solid rgba(8, 36, 98, 0.08);
}

.recruit-spec__row dd {
  margin: 0;
  padding: clamp(0.85rem, 1.5vw, 1rem) clamp(0.85rem, 1.5vw, 1.15rem);
  font-size: clamp(0.88rem, 1.35vw, 0.95rem);
  line-height: 1.75;
  color: var(--svc-text-muted, #5a6d7a);
}

.recruit-spec__note {
  display: inline-block;
  margin-top: 0.25rem;
  font-size: 0.88em;
  color: var(--svc-text-muted, #5a6d7a);
  opacity: 0.9;
}

.recruit-spec__benefits {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(9.5rem, 1fr));
  gap: 0.35rem 0.75rem;
}

.recruit-spec__benefits li {
  position: relative;
  padding-left: 0.85rem;
  font-size: clamp(0.86rem, 1.25vw, 0.92rem);
  line-height: 1.5;
}

.recruit-spec__benefits li::before {
  content: "・";
  position: absolute;
  left: 0;
  color: var(--svc-accent, #e68a2e);
}

.recruit-spec__benefits-item--single {
  white-space: nowrap;
  grid-column: span 2;
}

@media (max-width: 600px) {
  .recruit-spec__benefits-item--single {
    grid-column: 1 / -1;
  }

  .recruit-spec__row {
    grid-template-columns: 1fr;
  }

  .recruit-spec__row dt {
    border-right: none;
    border-bottom: 1px solid rgba(8, 36, 98, 0.06);
    padding-bottom: 0.45rem;
  }

  .recruit-spec__row dd {
    padding-top: 0.55rem;
  }
}

/* お問い合わせページ — ヒーロー見出し */
.page-contact .svc-overview-hero__title {
  white-space: nowrap;
  font-size: clamp(1.55rem, 3.4vw, 2.75rem);
  letter-spacing: 0.04em;
}

.page-contact .svc-overview-hero__lead {
  white-space: nowrap;
  font-size: clamp(0.82rem, 1.35vw, 1.12rem);
  letter-spacing: 0.01em;
}

@media (max-width: 480px) {
  .page-contact .svc-overview-hero__title {
    font-size: clamp(1.25rem, 4.8vw, 1.55rem);
    letter-spacing: 0.02em;
  }

  .page-contact .svc-overview-hero__lead {
    font-size: clamp(0.68rem, 2.6vw, 0.82rem);
    letter-spacing: 0;
  }
}

.page-recruit .svc-story__body a {
  color: var(--svc-navy-mid, #082462);
  font-weight: 600;
  text-decoration: none;
}

.page-recruit .svc-story__body a:hover,
.page-recruit .svc-story__body a:focus-visible {
  color: var(--svc-accent, #e68a2e);
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* ===== 採用情報ページ — 案A：インダストリアル・シャープ ===== */
.page-recruit {
  --recruit-radius: 0;
  --recruit-shadow: 4px 4px 0 rgba(8, 36, 98, 0.1);
  --recruit-shadow-hover: 6px 6px 0 rgba(8, 36, 98, 0.14);
}

.page-recruit .svc-overview-body {
  background-color: #e9ecf2;
  background-image:
    linear-gradient(rgba(8, 36, 98, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(8, 36, 98, 0.035) 1px, transparent 1px);
  background-size: 28px 28px;
}

.page-recruit .svc-overview-body .svc-story {
  padding: clamp(1.85rem, 3.6vw, 2.75rem) 0;
  background: transparent;
  border-bottom: none;
}

.page-recruit .svc-overview-body .svc-story:nth-child(even) {
  background: transparent;
}

.page-recruit .subpage-story__inner {
  max-width: min(980px, 100%);
}

.page-recruit .svc-story__title {
  margin-bottom: clamp(1rem, 2vw, 1.25rem);
  padding: 0 0 0.7rem 0.85rem;
  border-left: 4px solid var(--svc-accent, #e68a2e);
  font-size: clamp(1.38rem, 2.4vw, 1.78rem);
  letter-spacing: 0.12em;
  line-height: 1.35;
}

.page-recruit .svc-story__rule {
  display: none;
}

.page-recruit .svc-overview-body > .svc-story:first-child .svc-story__body {
  padding: clamp(1.25rem, 2.4vw, 1.65rem);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-left: 4px solid var(--industrial-orange, #e68a2e);
  border-radius: var(--recruit-radius);
  box-shadow: none;
}

.page-recruit .recruit-hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  margin: clamp(1rem, 2vw, 1.35rem) 0 0;
  padding: 0;
  list-style: none;
}

.page-recruit .recruit-hero-stats li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0.65rem 0.75rem;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-top: 2px solid var(--industrial-orange, #e68a2e);
}

.page-recruit .recruit-hero-stats__value {
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--white);
}

.page-recruit .recruit-hero-stats__label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.72);
}

.page-recruit .recruit-section-panel {
  padding: clamp(1.35rem, 2.6vw, 1.85rem);
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.12);
  box-shadow: var(--recruit-shadow);
}

.page-recruit .recruit-section-eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(8, 36, 98, 0.42);
}

.page-recruit .recruit-work-list .recruit-list__item {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-height: 100%;
  padding-top: clamp(1.2rem, 2vw, 1.45rem);
}

.page-recruit .recruit-work-list__num {
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.2rem 0.45rem;
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--white);
  background: var(--svc-navy-mid, #082462);
}

.page-recruit .recruit-work-list .recruit-list__title {
  margin-bottom: 0.55rem;
}

.page-recruit .recruit-work-list .recruit-list__text + .recruit-list__text {
  margin-top: 0.65rem;
}

.page-recruit .recruit-message-section {
  padding-bottom: clamp(2rem, 4vw, 3rem);
}

.page-recruit .recruit-message-band {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--brand-band-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 16px 40px rgba(5, 21, 51, 0.22);
  overflow: hidden;
}

.page-recruit .recruit-message-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-recruit .recruit-message-band__eyebrow,
.page-recruit .recruit-message-band__title,
.page-recruit .recruit-message-band__body {
  position: relative;
  z-index: 1;
}

.page-recruit .recruit-message-band__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.page-recruit .recruit-message-band__title {
  margin: 0 0 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--industrial-orange, #e68a2e);
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

.page-recruit .recruit-message-band__body p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.92rem, 1.35vw, 1rem);
  line-height: 1.85;
  color: rgba(255, 255, 255, 0.82);
}

.page-recruit .recruit-message-band__body p:last-child {
  margin-bottom: 0;
  font-weight: 600;
  color: var(--white);
}

.page-recruit .recruit-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.5rem;
  margin: 0.75rem 0 1rem;
  padding: 0;
  background: transparent;
  border: none;
  border-radius: var(--recruit-radius);
}

.page-recruit .recruit-points li {
  padding: 0.55rem 0.65rem 0.55rem 0.85rem;
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.12);
  border-left: 3px solid var(--svc-accent, #e68a2e);
  border-radius: var(--recruit-radius);
  box-shadow: none;
  font-weight: 600;
  font-size: clamp(0.84rem, 1.2vw, 0.92rem);
  color: var(--svc-navy-mid, #082462);
}

.page-recruit .recruit-points li::before {
  content: none;
}

.page-recruit .recruit-charm-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.page-recruit .recruit-charm-list .recruit-list__item {
  position: relative;
  padding: clamp(1.15rem, 2vw, 1.4rem);
  padding-top: clamp(1.15rem, 2vw, 1.4rem);
  border: 1px solid rgba(8, 36, 98, 0.14);
  border-top: 1px solid rgba(8, 36, 98, 0.14);
  border-left: 4px solid var(--svc-accent, #e68a2e);
  border-radius: var(--recruit-radius);
  box-shadow: var(--recruit-shadow);
  transition: box-shadow 0.2s ease, border-color 0.2s ease;
}

.page-recruit .recruit-charm-list .recruit-list__item::before {
  content: none;
}

.page-recruit .recruit-charm-list .recruit-list__item:hover {
  transform: none;
  border-color: rgba(8, 36, 98, 0.22);
  box-shadow: var(--recruit-shadow-hover);
}

.page-recruit .recruit-charm-list__num {
  position: static;
  display: inline-block;
  margin: 0 0 0.55rem;
  padding: 0.2rem 0.45rem;
  font-family: var(--font-en);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  color: var(--white);
  background: var(--svc-navy-mid, #082462);
  opacity: 1;
}

.page-recruit .recruit-list__title {
  letter-spacing: 0.04em;
}

.page-recruit .recruit-list--compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
}

.page-recruit .recruit-list--compact .recruit-list__item {
  border-radius: var(--recruit-radius);
  border: 1px solid rgba(8, 36, 98, 0.14);
  border-top: 1px solid rgba(8, 36, 98, 0.14);
  border-left: 4px solid var(--svc-navy-mid, #082462);
  box-shadow: var(--recruit-shadow);
  transition: box-shadow 0.2s ease;
}

.page-recruit .recruit-list--compact .recruit-list__item::before {
  content: none;
}

.page-recruit .recruit-list--compact .recruit-list__item:hover {
  transform: none;
  box-shadow: var(--recruit-shadow-hover);
}

.page-recruit .recruit-subtitle {
  margin-top: clamp(0.85rem, 1.8vw, 1.1rem);
  padding: 0.35rem 0 0.35rem 0.75rem;
  border-left: 3px solid var(--svc-navy-mid, #082462);
  font-size: clamp(0.92rem, 1.4vw, 1rem);
  letter-spacing: 0.08em;
  text-transform: none;
}

.page-recruit .recruit-growth .svc-story__title {
  margin-bottom: clamp(0.85rem, 1.6vw, 1.1rem);
}

.page-recruit .recruit-growth {
  padding: clamp(1.85rem, 3.6vw, 2.75rem) 0;
}

.page-recruit .recruit-dual {
  gap: 0.65rem;
}

.page-recruit .recruit-dual__panel {
  position: relative;
  border: 1px solid rgba(8, 36, 98, 0.14);
  border-top: 1px solid rgba(8, 36, 98, 0.14);
  border-left: 4px solid var(--brand-analog-a, #106174);
  border-radius: var(--recruit-radius);
  box-shadow: var(--recruit-shadow);
  transition: box-shadow 0.2s ease;
}

.page-recruit .recruit-dual__panel::before {
  content: none;
}

.page-recruit .recruit-dual__panel:hover {
  transform: none;
  box-shadow: var(--recruit-shadow-hover);
}

.page-recruit .recruit-dual__title {
  letter-spacing: 0.1em;
}

.page-recruit .recruit-dual__rule {
  width: 2rem;
  height: 2px;
  background: var(--svc-accent, #e68a2e);
}

.page-recruit .recruit-tags li {
  padding: 0.4rem 0.65rem;
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.12);
  border-left: 3px solid var(--svc-accent, #e68a2e);
  border-radius: var(--recruit-radius);
  box-shadow: none;
}

.page-recruit .recruit-career-steps li:not(:last-child)::after {
  content: "›";
  margin-left: 0.25rem;
  font-size: 1rem;
  font-weight: 700;
  color: var(--svc-accent, #e68a2e);
}

.page-recruit .recruit-career-steps__label {
  padding: 0.45rem 0.75rem;
  border-radius: var(--recruit-radius);
  letter-spacing: 0.06em;
  background: var(--svc-navy-mid, #082462);
  box-shadow: none;
  border-left: 3px solid var(--svc-accent, #e68a2e);
}

.page-recruit .recruit-checklist {
  gap: 0.5rem;
}

.page-recruit .recruit-checklist li {
  padding: 0.65rem 0.85rem 0.65rem 2.35rem;
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.12);
  border-radius: var(--recruit-radius);
  box-shadow: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.page-recruit .recruit-checklist li::before {
  left: 0.75rem;
  top: 50%;
  width: 1rem;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.62rem;
  line-height: 1;
  color: var(--svc-accent, #e68a2e);
  background: transparent;
  border: 2px solid var(--svc-accent, #e68a2e);
  border-radius: var(--recruit-radius);
  transform: translateY(-50%);
}

.page-recruit .recruit-checklist li:hover {
  transform: none;
  border-color: rgba(8, 36, 98, 0.22);
  box-shadow: var(--recruit-shadow);
}

.page-recruit .recruit-spec {
  border-radius: var(--recruit-radius);
  border: 1px solid rgba(8, 36, 98, 0.14);
  box-shadow: var(--recruit-shadow);
}

.page-recruit .recruit-spec__row dt {
  background: var(--svc-navy-mid, #082462);
  color: var(--white);
  letter-spacing: 0.06em;
  border-right: none;
}

.page-recruit .recruit-spec__row dd {
  background: var(--white);
}

.page-recruit .recruit-spec__benefits li {
  padding: 0.28rem 0.5rem 0.28rem 0.85rem;
  background: #eef1f6;
  border-left: 2px solid var(--svc-accent, #e68a2e);
  border-radius: var(--recruit-radius);
}

.page-recruit .recruit-message {
  padding: clamp(1.35rem, 2.8vw, 1.85rem) clamp(1.25rem, 2.6vw, 1.75rem);
  background: var(--svc-navy-mid, #082462);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-left: 5px solid var(--svc-accent, #e68a2e);
  border-radius: var(--recruit-radius);
  box-shadow: var(--recruit-shadow);
}

.page-recruit .recruit-message p {
  color: rgba(255, 255, 255, 0.88);
}

.page-recruit .recruit-message p:last-child {
  margin-bottom: 0;
  padding-top: 0.65rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-weight: 600;
  font-size: clamp(0.95rem, 1.4vw, 1.02rem);
}

.page-recruit .subpage-story__cta {
  margin-top: clamp(1.35rem, 2.8vw, 1.85rem);
}

.page-recruit .subpage-cta {
  border-radius: var(--recruit-radius);
  background: var(--svc-navy-mid, #082462);
  border: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: var(--recruit-shadow);
  letter-spacing: 0.12em;
}

.page-recruit .subpage-cta:hover,
.page-recruit .subpage-cta:focus-visible {
  background: #0a3568;
  box-shadow: var(--recruit-shadow-hover);
}

.page-recruit .subpage-cta .services-cta-arrow {
  border-radius: var(--recruit-radius);
}

.page-recruit .recruit-contact-section {
  padding: clamp(2.5rem, 5vw, 3.75rem) 0 clamp(3rem, 6vw, 4.5rem);
}

.page-recruit .recruit-contact {
  position: relative;
  padding: clamp(1.75rem, 3.5vw, 2.5rem);
  background: var(--brand-band-bg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(5, 21, 51, 0.28);
  overflow: hidden;
}

.page-recruit .recruit-contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
}

.page-recruit .recruit-contact__intro,
.page-recruit .recruit-contact__grid {
  position: relative;
  z-index: 1;
}

.page-recruit .recruit-contact__intro {
  max-width: 40rem;
  margin-bottom: clamp(1.35rem, 2.8vw, 1.85rem);
  padding-left: 1rem;
  border-left: 3px solid var(--industrial-orange, #e68a2e);
}

.page-recruit .recruit-contact__eyebrow {
  margin: 0 0 0.35rem;
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.55);
}

.page-recruit .recruit-contact__title {
  margin: 0 0 0.65rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--white);
}

.page-recruit .recruit-contact__lead {
  margin: 0;
  font-size: clamp(0.88rem, 1.35vw, 0.96rem);
  line-height: 1.75;
  color: rgba(255, 255, 255, 0.78);
}

.page-recruit .recruit-contact__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
  gap: clamp(0.75rem, 1.6vw, 1rem);
}

.page-recruit .recruit-contact__card {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-height: 100%;
  padding: clamp(1.1rem, 2vw, 1.35rem);
  background: rgba(255, 255, 255, 0.97);
  border: 1px solid rgba(8, 36, 98, 0.08);
  border-top: 3px solid var(--industrial-orange, #e68a2e);
  box-shadow: 4px 4px 0 rgba(0, 0, 0, 0.18);
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.page-recruit .recruit-contact__card--form:hover,
.page-recruit .recruit-contact__card--form:focus-visible {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0, 0, 0, 0.22);
}

.page-recruit .recruit-contact__card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.35rem;
  height: 2.35rem;
  margin-bottom: 0.15rem;
  color: var(--industrial-orange, #e68a2e);
  background: rgba(230, 138, 46, 0.1);
  border: 1px solid rgba(230, 138, 46, 0.28);
}

.page-recruit .recruit-contact__card-label {
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(8, 36, 98, 0.45);
}

.page-recruit .recruit-contact__card-heading {
  font-size: clamp(1.02rem, 1.6vw, 1.15rem);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--svc-navy-mid, #082462);
}

.page-recruit .recruit-contact__card-text {
  flex: 1 1 auto;
  font-size: clamp(0.84rem, 1.2vw, 0.9rem);
  line-height: 1.65;
  color: var(--svc-text-muted, #5a6d7a);
}

.page-recruit .recruit-contact__card-action {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: 0.55rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--industrial-orange, #e68a2e);
}

.page-recruit .recruit-contact__tel {
  margin-top: 0.15rem;
  font-family: var(--font-en, "Oswald", sans-serif);
  font-size: clamp(1.45rem, 2.8vw, 1.85rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  color: var(--svc-navy-mid, #082462);
  text-decoration: none;
  transition: color 0.2s ease;
}

.page-recruit .recruit-contact__tel:hover,
.page-recruit .recruit-contact__tel:focus-visible {
  color: var(--industrial-orange, #e68a2e);
}

.page-recruit .recruit-contact__hours {
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: rgba(8, 36, 98, 0.55);
}

@media (max-width: 768px) {
  .page-recruit .recruit-contact__grid {
    grid-template-columns: 1fr;
  }

  .page-recruit .recruit-hero-stats {
    grid-template-columns: 1fr;
  }

  .page-recruit .recruit-list--compact,
  .page-recruit .recruit-work-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 960px) {
  .page-recruit .recruit-charm-list,
  .page-recruit .recruit-list--compact,
  .page-recruit .recruit-points {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .page-recruit .recruit-checklist {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-recruit .recruit-charm-list .recruit-list__item,
  .page-recruit .recruit-list--compact .recruit-list__item,
  .page-recruit .recruit-dual__panel,
  .page-recruit .recruit-checklist li,
  .page-recruit .subpage-cta,
  .page-recruit .recruit-contact__card--form {
    transition: none;
  }
}

.svc-story {
  padding: var(--svc-space-section, clamp(4rem, 8vw, 6rem)) 0;
  color: var(--svc-text, #1a2b36);
  background: var(--svc-surface-white, #fff);
  border-bottom: 1px solid rgba(8, 36, 98, 0.08);
}

.svc-story:nth-child(even) {
  background: var(--svc-surface, #f2f4f9);
}

.svc-story__inner {
  max-width: 100%;
}

.svc-story__title {
  margin: 0 0 0.85rem;
  font-family: var(--font);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--svc-navy-mid, #082462);
}

.svc-story__rule {
  margin: 0 0 var(--svc-space-inner, 1.5rem);
  border: none;
  width: 3.25rem;
  height: 3px;
  background: var(--industrial-orange, #e68a2e);
}

.svc-story__body p {
  margin: 0 0 0.85rem;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--svc-text-muted, #5a6d7a);
  text-wrap: pretty;
  line-break: strict;
  word-break: normal;
}

.svc-story__body p:last-child {
  margin-bottom: 0;
}

.svc-story__nobreak {
  white-space: nowrap;
}

.svc-story__methods {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding-top: clamp(1.5rem, 2.5vw, 2rem);
  border-top: 1px solid rgba(8, 36, 98, 0.1);
}

.svc-story__methods-lead {
  margin: 0 0 0.9rem;
  font-size: clamp(0.9rem, 1.35vw, 1rem);
  font-weight: 600;
  line-height: 1.7;
  color: var(--svc-navy-mid, #082462);
}

.svc-story__methods-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 2rem;
  counter-reset: svc-method;
}

.svc-story__methods-list li {
  display: flex;
  align-items: baseline;
  gap: 0.7rem;
  counter-increment: svc-method;
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  line-height: 1.7;
  color: var(--svc-text-muted, #5a6d7a);
}

.svc-story__methods-list li::before {
  content: counter(svc-method) ".";
  flex-shrink: 0;
  min-width: 1.35rem;
  font-weight: 700;
  color: var(--industrial-orange, #e68a2e);
}

@media (max-width: 720px) {
  .svc-story__methods-list {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }
}

.svc-story-gallery {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: clamp(0.55rem, 1.2vw, 0.9rem);
  margin-top: clamp(2.25rem, 4vw, 3rem);
  padding-top: clamp(2rem, 3.5vw, 2.5rem);
  border-top: 1px solid rgba(8, 36, 98, 0.1);
}

.svc-story-gallery__item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.svc-story-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

.svc-story-gallery__item:hover img {
  transform: scale(1.06);
}

.svc-story-gallery__thumb {
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border: 1px solid rgba(8, 36, 98, 0.12);
  background: var(--svc-surface, #f2f4f9);
  transition: border-color 0.35s ease, box-shadow 0.35s ease;
}

.svc-story-gallery__item:hover .svc-story-gallery__thumb {
  border-color: rgba(230, 138, 46, 0.55);
  box-shadow: var(--shadow-lg);
}

.svc-story-gallery__caption {
  margin: 0;
  font-size: clamp(0.68rem, 1vw, 0.75rem);
  font-weight: 600;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-align: center;
  color: var(--svc-text-muted, #5a6d7a);
}

.svc-story-gallery__item:hover .svc-story-gallery__caption {
  color: var(--svc-navy-mid, #082462);
}

@media (max-width: 960px) {
  .svc-story-gallery {
    grid-template-columns: repeat(5, minmax(9.5rem, 1fr));
    overflow-x: auto;
    padding-bottom: 0.35rem;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(230, 138, 46, 0.45) transparent;
  }

  .svc-story-gallery__item {
    min-width: 9.5rem;
  }
}

.svc-block {
  padding: clamp(3.5rem, 6vw, 5rem) 0;
  border-bottom: 1px solid rgba(12, 61, 92, 0.1);
}

.svc-block--alt {
  background: var(--cream, #f8f6f1);
}

.svc-block__head {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}

.svc-block__title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.65rem, 3.2vw, 2.35rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--navy);
}

.svc-block__subtitle {
  margin: 0;
  font-size: clamp(1rem, 1.8vw, 1.2rem);
  font-weight: 700;
  line-height: 1.7;
  color: var(--navy);
}

.svc-block__lead {
  margin: 1rem 0 0;
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.svc-label {
  display: block;
  margin: 0 0 0.65rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--navy-accent, #102f4e);
}

.svc-panel {
  margin-top: 2rem;
}

.svc-panel p {
  margin: 0;
  font-size: 0.94rem;
  line-height: 1.9;
  color: var(--text-muted);
}

.svc-methods-table {
  width: 100%;
  margin-top: 2.5rem;
  border-collapse: collapse;
  border: 1px solid #e0e4e8;
  background: var(--white);
  table-layout: fixed;
}

.svc-methods-table td {
  width: 33.333%;
  padding: 1.5rem 1.25rem;
  vertical-align: top;
  border-right: 1px solid #e0e4e8;
  border-top: none;
}

.svc-methods-table td:last-child {
  border-right: none;
}

.svc-methods-table p {
  margin: 0;
  font-size: 0.86rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.svc-method__name {
  display: block;
  margin: 0 0 0.85rem;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: var(--navy);
}

.svc-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.svc-flow__item {
  padding: 1.1rem 1rem;
  background: var(--white);
  border: 1px solid rgba(12, 61, 92, 0.12);
  box-shadow: 0 4px 16px rgba(12, 61, 92, 0.06);
}

.svc-block--alt .svc-flow__item {
  background: var(--white);
}

.svc-flow__step {
  display: block;
  margin: 0 0 0.5rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--navy-accent, #102f4e);
}

.svc-flow__title {
  display: block;
  margin: 0 0 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--navy);
}

.svc-flow__item p {
  margin: 0;
  font-size: 0.82rem;
  line-height: 1.75;
  color: var(--text-muted);
}

.svc-methods-list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
}

.svc-methods-list li {
  position: relative;
  padding: 0.65rem 0 0.65rem 1rem;
  border-bottom: 1px solid rgba(12, 61, 92, 0.1);
  font-size: 0.9rem;
  line-height: 1.8;
  color: var(--text-muted);
}

.svc-methods-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.15rem;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--navy-accent, #102f4e);
}

.svc-methods-list strong {
  color: var(--navy);
}

.svc-gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.65rem;
  margin-top: 2rem;
}

.svc-gallery--process {
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  margin-top: 2.5rem;
  padding-bottom: 0.25rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.svc-gallery--process .svc-gallery__item {
  flex: 0 0 clamp(7.5rem, 12vw, 9.5rem);
}

.svc-gallery__item {
  position: relative;
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--sky, #e8f0f5);
}

.svc-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.45rem 0.5rem;
  font-size: 0.68rem;
  line-height: 1.4;
  color: var(--white);
  background: linear-gradient(transparent, rgba(8, 42, 64, 0.82));
}

.svc-gallery--process .svc-gallery__caption {
  position: static;
  padding: 0.5rem 0 0;
  font-size: 0.72rem;
  font-weight: 500;
  line-height: 1.45;
  text-align: center;
  color: var(--navy);
  background: none;
}

.svc-subsection {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(12, 61, 92, 0.12);
}

.svc-subsection h3 {
  margin: 0 0 0.75rem;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--navy);
}

@media (max-width: 960px) {
  .svc-methods-table,
  .svc-methods-table tbody,
  .svc-methods-table tr,
  .svc-methods-table td {
    display: block;
    width: 100%;
  }

  .svc-methods-table td {
    border-right: none;
    border-bottom: 1px solid #e0e4e8;
  }

  .svc-methods-table td:last-child {
    border-bottom: none;
  }

  .svc-flow {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .svc-gallery:not(.svc-gallery--process) {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 560px) {
  .svc-overview-hero {
    min-height: clamp(34rem, 78vh, 44rem);
    padding-bottom: clamp(4rem, 12vw, 5.5rem);
  }

  .page-svc .svc-overview-hero {
    min-height: 66.67vh;
    padding-block: calc(var(--header-h) + 1.25rem) clamp(2rem, 6vw, 3rem);
  }

  .svc-overview-hero .container {
    padding-left: clamp(1.35rem, 6vw, 2rem);
  }

  .svc-overview-hero__title {
    letter-spacing: 0.08em;
  }

  .svc-overview-hero__eyebrow {
    letter-spacing: 0.26em;
    text-indent: 0.26em;
  }

  .svc-overview-intro {
    padding-left: 0.85rem;
    border-left-width: 1px;
  }

  .svc-flow {
    grid-template-columns: 1fr;
  }
}

/* 対応可能な工法・飛散防止対策一覧（事業内容・アスベスト除去） */
.method-guide {
  margin-top: clamp(2rem, 3.5vw, 2.75rem);
  padding-top: clamp(1.75rem, 3vw, 2.25rem);
  border-top: 1px solid rgba(8, 36, 98, 0.1);
}

.method-guide__head {
  margin-bottom: clamp(1.25rem, 2.5vw, 1.75rem);
}

.method-guide__title {
  margin: 0 0 0.65rem;
  padding-left: 0.85rem;
  border-left: 3px solid var(--industrial-orange);
  font-family: var(--font);
  font-size: clamp(1.1rem, 2vw, 1.35rem);
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1.45;
  color: var(--svc-navy-mid, #082462);
}

.method-guide__lead {
  margin: 0;
  max-width: 52rem;
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  line-height: 1.75;
  color: var(--svc-text-muted, #5a6d7a);
}

.method-guide__lead + .method-guide__lead {
  margin-top: 0.5rem;
}

.method-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.method-accordion__item {
  border: 1px solid rgba(8, 36, 98, 0.12);
  background: var(--svc-surface-white, #fff);
  box-shadow: var(--shadow);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  overflow: visible;
}

.method-accordion__item[open] {
  border-color: rgba(230, 138, 46, 0.45);
  box-shadow: var(--shadow-lg);
}

.method-accordion__trigger {
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  align-items: center;
  gap: 0.75rem 1rem;
  padding: clamp(0.95rem, 2vw, 1.15rem) clamp(1rem, 2vw, 1.35rem);
  background: linear-gradient(90deg, var(--svc-navy, #051533) 0%, var(--svc-navy-mid, #082462) 100%);
  cursor: pointer;
  list-style: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
}

.method-accordion__trigger::-webkit-details-marker {
  display: none;
}

.method-accordion__trigger::marker {
  content: "";
}

.method-accordion__trigger:hover {
  background: linear-gradient(90deg, #041228 0%, #0a3568 100%);
}

.method-accordion__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  min-width: 4.8rem;
  min-height: 36px;
  padding: 0.55rem 0.85rem;
  border: none;
  border-radius: 0;
  font-family: var(--font);
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.35;
  color: var(--white);
  background: rgba(255, 255, 255, 0.14);
  white-space: nowrap;
}

.method-accordion__badge--prevent {
  min-width: auto;
  padding: 0.55rem 0.9rem;
}

.method-accordion__name {
  font-size: clamp(0.88rem, 1.5vw, 1rem);
  font-weight: 600;
  line-height: 1.55;
  color: var(--white);
  text-wrap: pretty;
}

.method-accordion__count {
  flex-shrink: 0;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: rgba(255, 255, 255, 0.5);
}

.method-accordion__icon {
  flex-shrink: 0;
  width: 1.35rem;
  height: 1.35rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 2px;
  position: relative;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.method-accordion__icon::before,
.method-accordion__icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.55rem;
  height: 2px;
  background: var(--industrial-orange);
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease;
}

.method-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.method-accordion__item[open] .method-accordion__icon {
  border-color: rgba(230, 138, 46, 0.65);
  background: rgba(230, 138, 46, 0.12);
}

.method-accordion__item[open] .method-accordion__icon::after {
  transform: translate(-50%, -50%) rotate(0deg);
  opacity: 0;
}

.method-accordion__panel {
  padding: clamp(1rem, 2.2vw, 1.45rem) clamp(1rem, 2.2vw, 1.5rem) clamp(1.15rem, 2.4vw, 1.65rem);
  background: var(--svc-surface, #f2f4f9);
  overflow: visible;
}

.method-accordion__note {
  margin: 0 0 1.1rem;
  padding: 0.75rem 0.9rem;
  border-left: 3px solid var(--industrial-yellow, #f0c14b);
  font-size: clamp(0.86rem, 1.25vw, 0.92rem);
  line-height: 1.75;
  color: var(--svc-text-muted, #5a6d7a);
  background: var(--svc-surface-white, #fff);
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.method-list--grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem 1.75rem;
  align-items: start;
}

.method-list__item--full {
  grid-column: 1 / -1;
}

.method-list li {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  column-gap: 0.55rem;
  padding-left: 0;
  font-size: clamp(0.88rem, 1.3vw, 0.95rem);
  font-weight: 500;
  line-height: 1.7;
  color: var(--svc-text, #1a2b36);
}

.method-list li::before {
  content: "";
  position: relative;
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin-top: calc(0.5lh - 2.5px);
  border-radius: 50%;
  background: var(--industrial-orange);
}

.method-list__note {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.82em;
  font-weight: 400;
  line-height: 1.65;
  color: var(--svc-text-muted, #5a6d7a);
}

.method-list__item--preview {
  z-index: 2;
}

.method-list__item--preview.is-preview-active {
  z-index: 100;
}

.method-list__item--preview:focus {
  outline: none;
}

.method-list__item--preview .method-list__label {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap: 0.4rem 0.55rem;
  cursor: pointer;
  padding: 0 0.45rem 0 0;
  margin-left: 0;
  border-radius: 2px;
  border-bottom: none;
  box-shadow: inset 3px 0 0 transparent;
  transition:
    color 0.22s ease,
    background 0.22s ease,
    box-shadow 0.22s ease,
    transform 0.22s ease;
}

.method-list__label-text {
  line-height: 1.7;
}

.method-list__preview-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  flex-shrink: 0;
  margin-top: calc(0.5lh - 0.55em);
  padding: 0.2rem 0.55rem;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--industrial-orange, #e68a2e);
  background: rgba(230, 138, 46, 0.09);
  border: 1px solid rgba(230, 138, 46, 0.32);
  transition:
    color 0.22s ease,
    background 0.22s ease,
    border-color 0.22s ease,
    transform 0.22s ease;
}

.method-list__preview-icon {
  display: block;
  flex-shrink: 0;
}

.method-list__item--preview:hover .method-list__label,
.method-list__item--preview.is-preview-active .method-list__label {
  color: var(--svc-navy-mid, #082462);
  background: rgba(8, 36, 98, 0.05);
  box-shadow: inset 3px 0 0 var(--industrial-orange, #e68a2e);
  transform: translateX(2px);
}

.method-list__item--preview:hover .method-list__preview-tag,
.method-list__item--preview.is-preview-active .method-list__preview-tag {
  color: var(--white);
  background: var(--industrial-orange, #e68a2e);
  border-color: var(--industrial-orange, #e68a2e);
}

.method-preview {
  position: absolute;
  left: 0;
  top: calc(100% + 0.55rem);
  width: min(32rem, 92vw);
  z-index: 110;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px) scale(0.98);
  transition:
    opacity 0.28s ease,
    transform 0.28s ease,
    visibility 0.28s ease;
  overflow: hidden;
  border: 2px solid var(--industrial-orange, #e68a2e);
  box-shadow:
    0 24px 56px rgba(5, 21, 51, 0.32),
    0 0 0 1px rgba(255, 255, 255, 0.08) inset;
  background: #0f172a;
  pointer-events: none;
  isolation: isolate;
}

.method-list__item--preview.is-preview-active .method-preview {
  opacity: 1;
  visibility: visible;
  transform: translateY(0) scale(1);
}

.method-preview img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 42%;
  position: relative;
  z-index: 1;
  background: #0f172a;
}

.method-dl__item.method-list__item--preview dt {
  position: relative;
}

.method-dl__item.method-list__item--preview .method-list__label-text {
  font-weight: 700;
  color: var(--svc-navy-mid, #082462);
}

.method-dl {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(0.85rem, 1.8vw, 1.15rem);
}

.method-dl__item {
  padding-bottom: clamp(0.85rem, 1.8vw, 1.1rem);
  border-bottom: 1px solid rgba(8, 36, 98, 0.1);
}

.method-dl__item:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

.method-dl dt {
  margin: 0 0 0.4rem;
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  font-weight: 700;
  line-height: 1.55;
  color: var(--svc-navy-mid, #082462);
}

.method-dl dd {
  margin: 0;
  font-size: clamp(0.88rem, 1.3vw, 0.94rem);
  font-weight: 400;
  line-height: 1.75;
  color: var(--svc-text-muted, #5a6d7a);
}

@media (max-width: 768px) {
  .method-accordion__trigger {
    grid-template-columns: auto 1fr auto;
    grid-template-rows: auto auto;
  }

  .method-accordion__badge {
    grid-row: 1 / 3;
    align-self: start;
  }

  .method-accordion__name {
    grid-column: 2;
  }

  .method-accordion__count {
    grid-column: 2;
    justify-self: start;
  }

  .method-accordion__icon {
    grid-column: 3;
    grid-row: 1 / 3;
    align-self: center;
  }

  .method-list--grid {
    grid-template-columns: 1fr;
    gap: 0.5rem;
  }

  .method-preview {
    width: min(28rem, 94vw);
  }
}

@media (prefers-reduced-motion: reduce) {
  .method-preview {
    transition: opacity 0.15s ease, visibility 0.15s ease;
    transform: none;
  }

  .method-list__item--preview.is-preview-active .method-preview {
    transform: none;
  }
}

/* ===== トップページ — ハーモニーカラー背景（ヒーロー除く） ===== */
.page-home {
  background:
    radial-gradient(ellipse at 0% 55%, rgba(41, 102, 14, 0.035), transparent 42%),
    var(--brand-light);
}

.page-home .strengths-bar {
  background: linear-gradient(
    128deg,
    var(--brand-base) 0%,
    #0a3568 42%,
    var(--brand-analog-a) 78%,
    #0d4a38 100%
  );
}

.page-home .strengths-bar::before {
  background:
    radial-gradient(ellipse at 18% 12%, rgba(16, 97, 116, 0.32), transparent 52%),
    radial-gradient(ellipse at 90% 88%, rgba(34, 16, 116, 0.1), transparent 58%),
    radial-gradient(ellipse at 96% 22%, rgba(41, 102, 14, 0.16), transparent 46%);
}

.page-home .about-section {
  background:
    radial-gradient(ellipse at 0% 100%, rgba(41, 102, 14, 0.045), transparent 48%),
    linear-gradient(180deg, var(--brand-light) 0%, #eef1f7 100%);
}

.page-home .about-bg-block {
  background: linear-gradient(
    165deg,
    var(--brand-base) 0%,
    var(--brand-analog-a) 72%,
    #124428 100%
  );
}

.page-home .about-visual-accent {
  border-color: rgba(230, 138, 46, 0.72);
}

@media (prefers-reduced-motion: reduce) {
  .about-visual-photo {
    animation: none !important;
    opacity: 1 !important;
    transform: scale(1.04) !important;
    transition: none;
  }

  .about-visual-media {
    inset: 0;
  }

  .about-visual:hover .about-visual-photo {
    transform: scale(1.04) !important;
  }
}

.page-home .services-section {
  background:
    radial-gradient(ellipse 85% 65% at 100% 0%, rgba(16, 97, 116, 0.06), transparent 58%),
    radial-gradient(ellipse 55% 45% at 0% 100%, rgba(41, 102, 14, 0.04), transparent 52%),
    linear-gradient(180deg, #f5f7fb 0%, var(--brand-light-soft) 100%);
}

.page-home .services-section__eyebrow {
  color: var(--brand-base);
}

.page-home .services-section__eyebrow::before {
  background: var(--brand-analog-a);
}

.page-home .services-section__display {
  background: linear-gradient(
    155deg,
    rgba(8, 36, 98, 0.16) 0%,
    rgba(16, 97, 116, 0.4) 42%,
    rgba(41, 102, 14, 0.28) 78%,
    rgba(8, 36, 98, 0.2) 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
}

.page-home .services-section__lead {
  color: rgba(8, 36, 98, 0.74);
}

.page-home .services-section__list {
  border-top-color: rgba(8, 36, 98, 0.11);
}

.page-home .services-section__row {
  border-bottom-color: rgba(8, 36, 98, 0.11);
}

.page-home .services-section__row h3 a {
  color: rgba(8, 36, 98, 0.3);
}

.page-home .services-section__row:hover h3 a,
.page-home .services-section__row:focus-within h3 a {
  color: var(--brand-base);
}

.page-home .services-section__row-arrow {
  border-color: rgba(8, 36, 98, 0.16);
}

.page-home .services-section__row-arrow::before {
  border-color: var(--brand-base);
}

.page-home .services-section__row:hover .services-section__row-arrow,
.page-home .services-section__row:focus-within .services-section__row-arrow {
  border-color: var(--brand-base);
  background: var(--brand-base);
}

.page-home .services-section .services-cta {
  background: var(--brand-base);
}

.page-home .services-section .services-cta:hover,
.page-home .services-section .services-cta:focus-visible {
  background: #0a3568;
}

.page-home .news-section {
  position: relative;
  overflow: hidden;
  background: var(--brand-band-bg);
}

.page-home .news-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--brand-band-grid-image);
  background-size: var(--brand-band-grid-size);
  pointer-events: none;
}

.page-home .news-section > .container {
  position: relative;
  z-index: 1;
}

.page-home .site-footer {
  background: var(--brand-band-bg);
}

/* 施工事例〜お問い合わせ：フッター同色の連続グラデーション */
.page-home .home-dark-band {
  position: relative;
  overflow: hidden;
  background: var(--brand-band-bg);
}

.page-home .home-dark-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--brand-band-grid-image);
  background-size: var(--brand-band-grid-size);
  pointer-events: none;
  z-index: 0;
}

.page-home .home-dark-band > * {
  position: relative;
  z-index: 1;
}

/* 施工事例（トップページ）— ブランド統一カードUI */
.page-home .home-dark-band .works-section {
  --works-navy: var(--brand-base, #082462);
  --works-navy-deep: var(--brand-deep, #051533);
  --works-accent: var(--industrial-orange, #e68a2e);
  --works-accent-hover: #cf7a28;
  --works-surface: var(--brand-complement-light, #edebe8);
  --works-card: var(--white);
  color: var(--text);
  background:
    radial-gradient(ellipse 88% 62% at 100% 0%, rgba(8, 36, 98, 0.05), transparent 58%),
    radial-gradient(ellipse 52% 48% at 0% 100%, rgba(230, 138, 46, 0.04), transparent 52%),
    linear-gradient(180deg, var(--brand-light-soft, #e8edf5) 0%, var(--works-surface) 100%);
}

.page-home .home-dark-band .works-section::before {
  display: block;
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 51, 24, 0.06) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-home .home-dark-band .works-section::after {
  color: rgba(8, 36, 98, 0.03);
}

.page-home .home-dark-band .works-section .works-section__label {
  color: var(--works-navy);
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}

.page-home .home-dark-band .works-section .works-section__header h2 {
  color: var(--works-navy-deep);
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
}

.page-home .home-dark-band .works-section .works-section__header h2::after {
  content: "";
  display: block;
  width: clamp(2.75rem, 6vw, 4rem);
  height: 3px;
  margin-top: 0.75rem;
  background: var(--works-accent);
}

.page-home .home-dark-band .works-section .works-section__header p {
  color: var(--text-muted);
  font-size: clamp(0.9rem, 1.4vw, 0.98rem);
  line-height: 1.75;
}

.page-home .home-dark-band .works-mosaic {
  border: none;
  gap: clamp(1rem, 2vw, 1.35rem);
}

/* 施工事例：横方向オートスクロール（Readdy風・2段） */
.page-home .works-marquee {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(1rem, 2vw, 1.35rem);
  width: 100%;
  margin-bottom: 0;
  -webkit-mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
  mask-image: linear-gradient(
    90deg,
    transparent 0%,
    #000 6%,
    #000 94%,
    transparent 100%
  );
}

.page-home .works-marquee__row {
  overflow: hidden;
  width: 100%;
}

.page-home .works-marquee__row--offset .works-marquee__track {
  padding-inline-start: calc(
    (clamp(250px, 24vw, 310px) + clamp(1rem, 2vw, 1.35rem)) / 2
  );
}

.page-home .works-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: works-marquee-scroll 42s linear infinite;
}

.page-home .works-marquee__track--reverse {
  animation-direction: reverse;
  animation-duration: 48s;
}

.page-home .works-marquee__group.works-mosaic {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch;
  gap: clamp(1rem, 2vw, 1.35rem);
  padding-inline: clamp(0.5rem, 1.5vw, 1rem);
  width: max-content;
  max-width: none;
}

.page-home .works-marquee__group.works-container {
  width: max-content;
  max-width: none;
}

.page-home .works-marquee__group .work-card {
  flex: 0 0 clamp(250px, 24vw, 310px);
  width: clamp(250px, 24vw, 310px);
}

.page-home .works-marquee .work-card--reveal .work-card-media::after {
  display: none;
}

.page-home .works-marquee .work-card--reveal .work-card-media::before {
  display: block;
  transform: scaleX(1);
  background: var(--works-accent);
}

.page-home .works-marquee .work-card--reveal .work-card-body {
  opacity: 1;
  transform: none;
}

.page-home .works-marquee .work-card--reveal .work-card-media img {
  transform: scale(1.04);
  filter: none;
  animation: works-photo-drift 16s ease-in-out infinite alternate;
  animation-delay: calc(var(--work-stagger, 0ms) * 0.4);
}

@keyframes works-marquee-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@keyframes works-photo-drift {
  from {
    transform: scale(1.04) translate3d(0, 0, 0);
  }

  to {
    transform: scale(1.1) translate3d(-2.5%, -1.5%, 0);
  }
}

.page-home .home-dark-band .works-section .work-card {
  background: var(--works-card);
  border: 1px solid rgba(8, 36, 98, 0.09);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.page-home .home-dark-band .works-section .work-card:nth-child(4n),
.page-home .home-dark-band .works-section .work-card:nth-child(2n),
.page-home .home-dark-band .works-section .work-card:nth-child(n + 5),
.page-home .home-dark-band .works-section .work-card:nth-child(n + 7),
.page-home .home-dark-band .works-section .work-card:last-child {
  border-right: 1px solid rgba(8, 36, 98, 0.09);
  border-bottom: 1px solid rgba(8, 36, 98, 0.09);
}

.page-home .home-dark-band .works-section .work-card:hover {
  transform: translateY(-6px);
  background: var(--works-card);
  border-color: rgba(230, 138, 46, 0.38);
  box-shadow: var(--shadow-lg);
}

.page-home .home-dark-band .works-section .work-card-media img {
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-home .home-dark-band .works-section .work-card:not(:is(.works-marquee *)):hover .work-card-media img,
.page-home .home-dark-band .works-section .work-card--reveal.is-revealed:not(:is(.works-marquee *)):hover .work-card-media img {
  transform: scale(1.06);
}

.page-home .home-dark-band .works-section .work-card--reveal .work-card-media::before {
  background: var(--works-accent);
}

.page-home .home-dark-band .works-section .work-card--reveal .work-card-media::after {
  background: linear-gradient(
    160deg,
    var(--works-navy-deep) 0%,
    rgba(8, 36, 98, 0.88) 55%,
    var(--works-navy) 100%
  );
}

.page-home .home-dark-band .works-section .work-card-body {
  background: var(--works-card);
  padding: clamp(0.95rem, 1.8vw, 1.15rem) clamp(1rem, 1.9vw, 1.2rem) clamp(1.05rem, 1.9vw, 1.25rem);
  transition: background 0.35s ease;
}

.page-home .home-dark-band .works-section .work-card:hover .work-card-body {
  background: var(--works-card);
}

.page-home .home-dark-band .works-section .work-card-body h3 {
  color: var(--works-navy);
  font-size: clamp(0.8rem, 1.25vw, 0.9rem);
  font-weight: 700;
  line-height: 1.6;
  min-height: calc(2 * 1.6em);
  letter-spacing: 0.02em;
}

.page-home .home-dark-band .works-section .work-card-meta {
  color: var(--text-muted);
  font-size: 0.72rem;
}

.page-home .home-dark-band .works-section .work-card-meta time {
  font-weight: 600;
  color: rgba(8, 36, 98, 0.55);
}

.page-home .home-dark-band .works-section .work-card-meta > span:not(.work-card-meta__tags),
.page-home .home-dark-band .works-section .work-card-meta__tags span {
  color: var(--works-accent);
  border-color: rgba(230, 138, 46, 0.45);
  background: rgba(230, 138, 46, 0.08);
  font-weight: 700;
}

.page-home .home-dark-band .works-section .work-card-meta__tags {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}

.page-home .home-dark-band .works-section .works-section__cta.services-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  min-width: auto;
  padding: 1rem 2rem;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  background: var(--brand-base);
  box-shadow: 0 8px 22px rgba(8, 36, 98, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-home .home-dark-band .works-section .works-section__cta.services-cta::after {
  content: none;
}

.page-home .home-dark-band .works-section .works-section__cta.services-cta:hover,
.page-home .home-dark-band .works-section .works-section__cta.services-cta:focus-visible {
  background: #0a3568;
  box-shadow: 0 14px 30px rgba(8, 36, 98, 0.3);
  transform: translateY(-2px);
}

.page-home .home-dark-band .works-section .works-section__cta.services-cta .services-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-home .home-dark-band .works-section .works-section__cta.services-cta:hover .services-cta-arrow,
.page-home .home-dark-band .works-section .works-section__cta.services-cta:focus-visible .services-cta-arrow {
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(4px);
}

@media (max-width: 1100px) {
  .page-home .home-dark-band .works-mosaic {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 620px) {
  .page-home .home-dark-band .works-mosaic {
    grid-template-columns: 1fr;
  }

  .page-home .home-dark-band .works-section .work-card:hover {
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-home .home-dark-band .works-section .work-card,
  .page-home .home-dark-band .works-section .work-card-media img,
  .page-home .home-dark-band .works-section .works-section__cta {
    transition: none;
  }

  .page-home .home-dark-band .works-section .work-card:hover {
    transform: none;
  }

  .page-home .works-marquee__track {
    animation: none;
  }

  .page-home .works-marquee .work-card--reveal .work-card-media img {
    animation: none;
    transform: scale(1);
  }
}

.page-home .home-dark-band .fuji-act {
  background: transparent;
}

.page-home .home-dark-band .fuji-act-hero-bg {
  background:
    linear-gradient(180deg, rgba(8, 36, 98, 0.76) 0%, rgba(5, 21, 51, 0.86) 100%),
    linear-gradient(125deg, transparent 55%, rgba(41, 102, 14, 0.1) 100%),
    url("../img/safety/city-background.jpg") center / cover no-repeat;
}

.page-home .home-dark-band .fuji-act-spotlight,
.page-home .home-dark-band .fuji-act-cell--text {
  background: rgba(0, 0, 0, 0.22);
}

.page-home .home-dark-band .contact-section {
  --contact-teal: var(--brand-analog-a);
  --contact-teal-hover: #138a96;
  --contact-mail-line: var(--brand-analog-a);
  --contact-black: rgba(0, 0, 0, 0.22);
  background: transparent;
}

/* ===== 施工事例一覧ページ — トップページ施工事例と統一 ===== */
.page-works {
  --works-navy: var(--brand-base, #082462);
  --works-navy-deep: var(--brand-deep, #051533);
  --works-accent: var(--industrial-orange, #e68a2e);
  --works-accent-hover: #cf7a28;
  --works-surface: var(--brand-complement-light, #edebe8);
  --works-card: var(--white);
  --works-text: var(--text, #1a2b36);
  --works-text-muted: var(--text-muted, #5a6d7a);
}

.page-works .site-header {
  background: var(--works-navy-deep);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-works .site-header .header-cta {
  background: var(--works-accent);
  border: 1px solid var(--works-accent);
  color: var(--white) !important;
}

.page-works .site-header .header-cta:hover,
.page-works .site-header .header-cta:focus-visible {
  background: var(--works-accent-hover);
  border-color: var(--works-accent-hover);
  color: var(--white) !important;
}

.page-works .works-hero {
  min-height: 66.67vh;
  padding-block: calc(var(--header-h) + clamp(1.5rem, 3vw, 2.5rem)) clamp(2.5rem, 5vw, 4rem);
}

.page-works .works-hero .svc-overview-hero__photo {
  object-position: 64% 48%;
  filter: saturate(1.12) contrast(1.08) brightness(0.9);
  transform: scale(1.04);
  animation: works-hero-kenburns 32s ease-in-out infinite alternate;
}

@keyframes works-hero-kenburns {
  from {
    transform: scale(1.04);
  }

  to {
    transform: scale(1.1);
  }
}

.page-works .works-hero__grid {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.72) 0%, rgba(0, 0, 0, 0.28) 42%, transparent 68%);
}

.page-works .works-hero__accent {
  position: absolute;
  top: calc(var(--header-h) + 1.5rem);
  right: clamp(1.25rem, 5vw, 4rem);
  z-index: 2;
  width: clamp(4.5rem, 12vw, 7.5rem);
  height: clamp(4.5rem, 12vw, 7.5rem);
  pointer-events: none;
  border: 2px solid rgba(230, 138, 46, 0.55);
  border-left: none;
  border-bottom: none;
  opacity: 0.85;
}

.page-works .works-hero .svc-overview-hero__scrim {
  background:
    linear-gradient(90deg,
      rgba(5, 21, 51, 0.94) 0%,
      rgba(5, 21, 51, 0.78) 22%,
      rgba(8, 36, 98, 0.38) 48%,
      rgba(5, 21, 51, 0.12) 68%,
      rgba(5, 21, 51, 0.42) 100%),
    linear-gradient(180deg, rgba(5, 21, 51, 0.55) 0%, transparent 38%, rgba(5, 21, 51, 0.62) 100%),
    radial-gradient(ellipse 80% 60% at 85% 35%, rgba(230, 138, 46, 0.12), transparent 58%);
}

.page-works .works-hero .svc-overview-hero__content {
  max-width: min(46rem, 92vw);
}

.page-works .works-hero .svc-overview-hero__title {
  text-shadow: 0 2px 24px rgba(5, 21, 51, 0.45);
}

.page-works .works-hero .svc-overview-intro {
  gap: 0.75rem;
}

.page-works .works-page-section {
  position: relative;
  padding: clamp(3.5rem, 7vw, 5.5rem) 0 clamp(4.5rem, 9vw, 6.5rem);
  color: var(--works-text);
  background:
    radial-gradient(ellipse 88% 62% at 100% 0%, rgba(8, 36, 98, 0.05), transparent 58%),
    radial-gradient(ellipse 52% 48% at 0% 100%, rgba(230, 138, 46, 0.04), transparent 52%),
    linear-gradient(180deg, var(--brand-light-soft, #e8edf5) 0%, var(--works-surface) 100%);
}

.page-works .works-page-section::before {
  display: block;
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: clamp(3rem, 8vw, 5rem);
  background: linear-gradient(180deg, transparent 0%, rgba(8, 51, 24, 0.06) 100%);
  pointer-events: none;
  z-index: 0;
}

.page-works .works-page-container {
  position: relative;
  z-index: 1;
}

.page-works .works-page__head {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
  text-align: left;
}

.page-works .works-page__label {
  display: block;
  margin: 0 0 0.65rem;
  font-family: var(--font);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
  text-transform: uppercase;
  color: var(--works-navy);
}

.page-works .works-page__title {
  margin: 0;
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.35;
  color: var(--works-navy-deep);
}

.page-works .works-page__title::after {
  content: "";
  display: block;
  width: clamp(2.75rem, 6vw, 4rem);
  height: 3px;
  margin: 0.75rem 0 0;
  background: var(--works-accent);
}

.page-works .works-filter {
  justify-content: flex-start;
  gap: 0.55rem;
  margin-bottom: clamp(1.75rem, 3vw, 2.25rem);
}

.page-works .works-filter-btn {
  padding: 0.65rem 1.35rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: var(--works-navy);
  background: var(--works-card);
  border: 1px solid rgba(8, 36, 98, 0.14);
  border-radius: 2px;
  box-shadow: 0 4px 14px rgba(8, 36, 98, 0.1);
  transition:
    background 0.2s ease,
    color 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.page-works .works-filter-btn:hover {
  border-color: var(--works-navy);
  box-shadow: 0 6px 18px rgba(8, 36, 98, 0.16);
}

.page-works .works-filter-btn.is-active {
  background: var(--works-navy);
  color: var(--white);
  border-color: var(--works-navy);
  box-shadow: 0 8px 22px rgba(8, 36, 98, 0.22);
}

.page-works .works-page-grid {
  grid-template-columns: repeat(auto-fill, minmax(272px, 1fr));
  gap: clamp(1rem, 2vw, 1.35rem);
}

.page-works .works-page-section .work-card {
  background: var(--works-card);
  border: 1px solid rgba(8, 36, 98, 0.09);
  border-radius: 0;
  box-shadow: var(--shadow);
  overflow: hidden;
  transition:
    transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.page-works .works-page-section .work-card:hover {
  transform: translateY(-6px);
  border-color: rgba(230, 138, 46, 0.38);
  box-shadow: var(--shadow-lg);
}

.page-works .works-page-section .work-card-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 2.8;
}

.page-works .works-page-section .work-card-media::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--works-accent);
  z-index: 1;
}

.page-works .works-page-section .work-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

.page-works .works-page-section .work-card:hover .work-card-media img {
  transform: scale(1.06);
}

.page-works .works-page-section .work-card-body {
  padding: clamp(0.95rem, 1.8vw, 1.15rem) clamp(1rem, 1.9vw, 1.2rem) clamp(1.05rem, 1.9vw, 1.25rem);
  background: var(--works-card);
  clip-path: none;
}

.page-works .works-page-section .work-card-body h3 {
  margin: 0;
  font-size: clamp(0.8rem, 1.25vw, 0.9rem);
  font-weight: 700;
  line-height: 1.6;
  min-height: calc(2 * 1.6em);
  color: var(--works-navy);
  letter-spacing: 0.02em;
}

.page-works .works-page-section .work-card-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin: 0;
  font-size: 0.72rem;
  color: var(--works-text-muted);
}

.page-works .works-page-section .work-card-meta time {
  font-weight: 600;
  color: rgba(8, 36, 98, 0.55);
}

.page-works .works-page-section .work-card-meta > span:not(.work-card-meta__tags),
.page-works .works-page-section .work-card-meta__tags span {
  padding: 0.1rem 0.45rem;
  border-radius: 0;
  border: 1px solid rgba(230, 138, 46, 0.45);
  background: rgba(230, 138, 46, 0.08);
  font-weight: 700;
  color: var(--works-accent);
}

.page-works .works-page-section .work-card-meta__tags {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  padding: 0;
  border: none;
  background: none;
}

.page-works .works-page-cta {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.page-works .works-page-cta .services-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 2rem;
  background: var(--works-navy);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(8, 36, 98, 0.22);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-works .works-page-cta .services-cta:hover,
.page-works .works-page-cta .services-cta:focus-visible {
  background: #0a3568;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 36, 98, 0.3);
}

.page-works .works-page-cta .services-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-works .works-page-cta .services-cta:hover .services-cta-arrow,
.page-works .works-page-cta .services-cta:focus-visible .services-cta-arrow {
  background: rgba(255, 255, 255, 0.26);
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .page-works .works-hero {
    min-height: 66.67vh;
    padding-block: calc(var(--header-h) + 1.25rem) clamp(2rem, 6vw, 3rem);
  }

  .page-works .works-hero__accent {
    width: clamp(3rem, 10vw, 4.5rem);
    height: clamp(3rem, 10vw, 4.5rem);
    opacity: 0.6;
  }

  .page-works .works-page-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-works .works-page-section .work-card,
  .page-works .works-page-section .work-card-media img,
  .page-works .works-page-cta .services-cta {
    transition: none;
  }

  .page-works .works-page-section .work-card:hover {
    transform: none;
  }

  .page-works .works-hero .svc-overview-hero__photo {
    animation: none;
    transform: none;
    filter: saturate(1.1) contrast(1.06) brightness(0.95);
  }
}

/* ===== 施工事例詳細ページ ===== */
.page-work-detail .work-detail-breadcrumb {
  padding: calc(var(--header-h) + 1.25rem) 0 0;
}

.work-detail-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.55rem;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 0.78rem;
  color: var(--text-muted);
}

.work-detail-breadcrumb li {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
}

.work-detail-breadcrumb li:not(:last-child)::after {
  content: ">";
  color: rgba(8, 36, 98, 0.35);
  font-size: 0.72rem;
}

.work-detail-breadcrumb a {
  color: var(--brand-base, #082462);
  text-decoration: none;
}

.work-detail-breadcrumb a:hover,
.work-detail-breadcrumb a:focus-visible {
  text-decoration: underline;
}

.work-detail-section {
  position: relative;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 5.5rem);
  background:
    radial-gradient(ellipse 88% 62% at 100% 0%, rgba(8, 36, 98, 0.05), transparent 58%),
    radial-gradient(ellipse 52% 48% at 0% 100%, rgba(230, 138, 46, 0.04), transparent 52%),
    linear-gradient(180deg, var(--brand-light-soft, #e8edf5) 0%, var(--brand-complement-light, #edebe8) 100%);
}

.work-detail-header {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.work-detail-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem 0.65rem;
  margin-bottom: 0.85rem;
  font-size: 0.74rem;
}

.work-detail-meta time {
  font-weight: 600;
  color: rgba(8, 36, 98, 0.55);
}

.work-detail-meta__category,
.work-detail-meta__tag {
  padding: 0.1rem 0.45rem;
  border: 1px solid rgba(230, 138, 46, 0.45);
  background: rgba(230, 138, 46, 0.08);
  font-weight: 700;
  color: var(--industrial-orange, #e68a2e);
}

.work-detail-title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.04em;
  color: var(--brand-deep, #051533);
}

.work-detail-title::after {
  content: "";
  display: block;
  width: clamp(2.75rem, 6vw, 4rem);
  height: 3px;
  margin-top: 0.85rem;
  background: var(--industrial-orange, #e68a2e);
}

.work-detail-viewer {
  margin-bottom: clamp(2rem, 4vw, 2.75rem);
}

.work-detail-viewer__stage {
  position: relative;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
}

.work-detail-viewer__main {
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(8, 36, 98, 0.09);
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
}

.work-detail-viewer__main img {
  display: block;
  width: 100%;
  max-height: min(68vh, 720px);
  object-fit: contain;
  background: #111;
  cursor: zoom-in;
}

.work-detail-viewer__main figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.92rem;
  font-weight: 700;
  text-align: center;
  color: var(--brand-base, #082462);
  background: var(--white);
}

.work-detail-viewer__nav,
.work-detail-viewer__thumbs-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  padding: 0;
  border: 1px solid rgba(8, 36, 98, 0.14);
  border-radius: 2px;
  background: var(--white);
  color: var(--brand-base, #082462);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 4px 14px rgba(8, 36, 98, 0.1);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.work-detail-viewer__nav:hover,
.work-detail-viewer__nav:focus-visible,
.work-detail-viewer__thumbs-nav:hover,
.work-detail-viewer__thumbs-nav:focus-visible {
  border-color: rgba(230, 138, 46, 0.45);
  transform: translateY(-1px);
}

.work-detail-viewer__thumbs-wrap {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.55rem;
  margin-top: 1rem;
}

.work-detail-viewer__thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 0.15rem 0;
  scrollbar-width: thin;
}

.work-detail-viewer__thumb {
  flex: 0 0 auto;
  width: 108px;
  height: 78px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 2px;
  background: var(--white);
  overflow: hidden;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(8, 36, 98, 0.12);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.work-detail-viewer__thumb.is-active {
  border-color: var(--industrial-orange, #e68a2e);
}

.work-detail-viewer__thumb:hover,
.work-detail-viewer__thumb:focus-visible {
  transform: translateY(-2px);
}

.work-detail-viewer__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.work-detail-gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: clamp(0.85rem, 1.8vw, 1.2rem);
}

.work-detail-gallery__item {
  margin: 0;
}

.work-detail-gallery__trigger {
  display: block;
  width: 100%;
  padding: 0;
  border: 1px solid rgba(8, 36, 98, 0.09);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  cursor: pointer;
  text-align: left;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.work-detail-gallery__trigger:hover,
.work-detail-gallery__trigger:focus-visible {
  transform: translateY(-4px);
  border-color: rgba(230, 138, 46, 0.38);
  box-shadow: var(--shadow-lg);
}

.work-detail-gallery__thumb {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.work-detail-gallery__thumb::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: var(--industrial-orange, #e68a2e);
}

.work-detail-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.work-detail-gallery__trigger:hover .work-detail-gallery__thumb img,
.work-detail-gallery__trigger:focus-visible .work-detail-gallery__thumb img {
  transform: scale(1.05);
}

.work-detail-gallery__caption {
  display: block;
  padding: 0.75rem 0.85rem 0.85rem;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.45;
  color: var(--brand-base, #082462);
}

.work-detail-foot {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  text-align: center;
}

.work-detail-back {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 2rem;
  background: var(--brand-base, #082462);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(8, 36, 98, 0.22);
}

.work-detail-back:hover,
.work-detail-back:focus-visible {
  background: #0a3568;
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(8, 36, 98, 0.3);
}

.work-detail-lightbox {
  width: min(92vw, 1100px);
  max-height: 92vh;
  padding: 0;
  border: none;
  border-radius: 4px;
  background: rgba(5, 21, 51, 0.96);
  color: var(--white);
}

.work-detail-lightbox::backdrop {
  background: rgba(5, 21, 51, 0.72);
}

.work-detail-lightbox__close {
  position: absolute;
  top: 0.5rem;
  right: 0.65rem;
  z-index: 2;
  border: none;
  background: transparent;
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.work-detail-lightbox__figure {
  margin: 0;
}

.work-detail-lightbox__figure img {
  display: block;
  width: 100%;
  max-height: calc(92vh - 3rem);
  object-fit: contain;
}

.work-detail-lightbox__figure figcaption {
  padding: 0.85rem 1rem 1rem;
  font-size: 0.9rem;
  font-weight: 600;
  text-align: center;
}

@media (max-width: 768px) {
  .work-detail-viewer__stage {
    grid-template-columns: 1fr;
  }

  .work-detail-viewer__nav {
    display: none;
  }

  .work-detail-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 520px) {
  .work-detail-gallery {
    grid-template-columns: 1fr;
  }
}

/* ===== お知らせページ（ダークバンド統一） ===== */
.page-news {
  --news-navy: var(--brand-base, #082462);
  --news-navy-deep: var(--brand-deep, #051533);
  --news-accent: var(--industrial-orange, #e68a2e);
  --news-accent-hover: #cf7a28;
  --news-teal: var(--brand-analog-a, #106174);
  --news-blue: #3d7a9e;
  --news-tan: #c99260;
  --news-panel: rgba(0, 0, 0, 0.28);
  --news-panel-hover: rgba(255, 255, 255, 0.05);
  --news-line: rgba(255, 255, 255, 0.14);
  --news-card: var(--white);
  background: var(--brand-band-bg);
  color: var(--white);
}

.page-news .site-header {
  background: var(--news-navy-deep);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}

.page-news .site-header .header-cta {
  background: var(--news-accent);
  border: 1px solid var(--news-accent);
  color: var(--white) !important;
}

.page-news .site-footer {
  background: var(--brand-band-bg);
  border-top: 1px solid var(--news-line);
}

.page-news .news-hero {
  position: relative;
  min-height: clamp(22rem, 38vh, 30rem);
  padding-bottom: clamp(2.5rem, 5vw, 3.5rem);
  background:
    linear-gradient(180deg, rgba(5, 21, 51, 0.35) 0%, transparent 55%),
    linear-gradient(
      180deg,
      #0c3a6e 0%,
      var(--brand-base) 62%,
      #083318 100%
    );
}

.page-news .news-hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(230, 138, 46, 0.55) 50%,
    transparent 100%
  );
}

.page-news .news-hero .svc-overview-hero__scrim--solid {
  background: transparent;
}

.page-news .news-hero .svc-overview-hero__eyebrow {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--font-en);
  font-size: clamp(0.78rem, 1.4vw, 0.88rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.page-news .news-hero .svc-overview-hero__title {
  color: var(--white);
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.page-news .news-hero .svc-overview-hero__lead {
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(0.95rem, 1.6vw, 1.1rem);
  font-weight: 500;
}

.page-news .news-hero .svc-overview-hero__rule {
  background: var(--news-accent);
  width: clamp(2.5rem, 5vw, 3.5rem);
  height: 3px;
}

.page-news .news-hero .svc-overview-intro {
  border-left-color: var(--news-accent);
}

.page-news .news-page-section {
  background: transparent;
  padding: clamp(2rem, 4vw, 3rem) 0 clamp(4rem, 8vw, 5.5rem);
}

.page-news .news-page-container {
  max-width: min(1120px, 94vw);
}

.page-news .news-page-section__inner {
  display: grid;
  grid-template-columns: minmax(11rem, 26%) minmax(0, 1fr);
  align-items: stretch;
  border: 1px solid var(--news-line);
  background: var(--news-panel);
  color: var(--white);
  overflow: hidden;
}

.page-news .news-page-section__header {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(2rem, 3.5vw, 2.75rem) clamp(1.5rem, 3vw, 2.25rem);
  border-right: 1px solid var(--news-line);
  border-top: 2px solid var(--news-accent);
  background: rgba(0, 0, 0, 0.18);
}

.page-news .news-page-section__title {
  margin: 0;
  font-family: var(--font-en);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.page-news .news-page-section__subtitle {
  margin: 0.85rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid var(--news-line);
  font-size: clamp(0.9rem, 1.6vw, 1.02rem);
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.82);
}

.page-news .news-page-section__main {
  padding: clamp(0.5rem, 1.5vw, 0.85rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1rem, 2vw, 1.35rem);
}

.page-news .news-page-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-page-list__item {
  position: relative;
  padding: clamp(1.15rem, 2.2vw, 1.5rem) 0 clamp(1.15rem, 2.2vw, 1.5rem) clamp(0.65rem, 1.2vw, 0.85rem);
  border-top: 1px solid var(--news-line);
  transition: background 0.25s ease, padding-left 0.25s ease;
}

.page-news .news-page-list__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: clamp(1.15rem, 2.2vw, 1.5rem);
  bottom: clamp(1.15rem, 2.2vw, 1.5rem);
  width: 2px;
  background: var(--news-accent);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.page-news .news-page-list__item:nth-child(4n + 2)::before {
  background: var(--news-teal);
}

.page-news .news-page-list__item:nth-child(4n + 3)::before {
  background: var(--news-blue);
}

.page-news .news-page-list__item:nth-child(4n)::before {
  background: var(--news-tan);
}

.page-news .news-page-list__item:first-child {
  border-top: none;
}

.page-news .news-page-list__item:last-child {
  border-bottom: none;
}

.page-news .news-page-list__item:hover,
.page-news .news-page-list__item:focus-within {
  background: var(--news-panel-hover);
  padding-left: clamp(1rem, 2vw, 1.35rem);
}

.page-news .news-page-list__item:hover::before,
.page-news .news-page-list__item:focus-within::before {
  opacity: 1;
}

.page-news .news-page-list__item time {
  display: block;
  margin-bottom: 0.4rem;
  font-family: var(--font-en);
  font-size: clamp(0.82rem, 1.4vw, 0.92rem);
  font-weight: 500;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.page-news .news-page-list__text {
  margin: 0;
  font-size: clamp(0.9rem, 1.45vw, 0.98rem);
  font-weight: 500;
  line-height: 1.75;
}

.page-news .news-page-list__text a {
  display: inline-flex;
  align-items: baseline;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.92);
  text-decoration: none;
  transition: color 0.25s ease, gap 0.25s ease;
}

.page-news .news-page-list__text a::after {
  content: "→";
  flex-shrink: 0;
  font-family: var(--font-en);
  font-size: 0.85em;
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.page-news .news-page-list__text a:hover,
.page-news .news-page-list__text a:focus-visible {
  color: var(--news-accent);
}

.page-news .news-page-list__text a:hover::after,
.page-news .news-page-list__text a:focus-visible::after {
  opacity: 1;
  transform: translateX(0);
}

.page-news .news-page-cta {
  margin-top: clamp(2.25rem, 4vw, 3.25rem);
  text-align: center;
}

.page-news .news-pagination {
  margin-top: clamp(1.75rem, 3vw, 2.5rem);
}

.page-news .news-pagination__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0.45rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.page-news .news-pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.35rem;
  min-height: 2.35rem;
  padding: 0.35rem 0.55rem;
  border: 1px solid var(--news-line);
  background: rgba(255, 255, 255, 0.92);
  color: #1a1a1a;
  font-family: var(--font-en);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.page-news .news-pagination__link:hover,
.page-news .news-pagination__link:focus-visible {
  border-color: var(--news-accent);
  color: var(--news-accent);
}

.page-news .news-pagination__link.is-active {
  background: #111;
  border-color: #111;
  color: var(--white);
  pointer-events: none;
}

.page-news .news-pagination__item--ellipsis span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2rem;
  min-height: 2.35rem;
  color: rgba(255, 255, 255, 0.45);
  font-family: var(--font-en);
}

.page-news .news-page-cta .services-cta,
.page-news .news-detail-foot .services-cta {
  display: inline-flex;
  align-items: center;
  gap: 1.1rem;
  padding: 1rem 2rem;
  background: var(--news-accent);
  color: var(--white) !important;
  border-radius: 2px;
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 22px rgba(230, 138, 46, 0.28);
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}

.page-news .news-page-cta .services-cta:hover,
.page-news .news-page-cta .services-cta:focus-visible,
.page-news .news-detail-foot .services-cta:hover,
.page-news .news-detail-foot .services-cta:focus-visible {
  background: var(--news-accent-hover);
  color: var(--white) !important;
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(230, 138, 46, 0.35);
}

.page-news .news-page-cta .services-cta-arrow,
.page-news .news-detail-foot .services-cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  transition: transform 0.25s ease, background 0.25s ease;
}

.page-news .news-page-cta .services-cta:hover .services-cta-arrow,
.page-news .news-page-cta .services-cta:focus-visible .services-cta-arrow,
.page-news .news-detail-foot .services-cta:hover .services-cta-arrow,
.page-news .news-detail-foot .services-cta:focus-visible .services-cta-arrow {
  background: rgba(255, 255, 255, 0.28);
  transform: translateX(4px);
}

.page-news .news-detail-breadcrumb {
  padding: clamp(1rem, 2vw, 1.35rem) 0 0;
}

.page-news .news-detail-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 0.65rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.55);
}

.page-news .news-detail-breadcrumb li + li::before {
  content: "/";
  margin-right: 0.65rem;
  color: rgba(255, 255, 255, 0.28);
}

.page-news .news-detail-breadcrumb a {
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
}

.page-news .news-detail-breadcrumb a:hover,
.page-news .news-detail-breadcrumb a:focus-visible {
  color: var(--news-accent);
}

.page-news .news-detail-section {
  padding: clamp(1rem, 2vw, 1.5rem) 0 clamp(4rem, 8vw, 5.5rem);
  background: transparent;
}

.page-news .news-detail-container {
  max-width: min(900px, 94vw);
}

.page-news .news-detail-article {
  border: 1px solid var(--news-line);
  border-top: 2px solid var(--news-accent);
  background: var(--news-panel);
  overflow: hidden;
}

.page-news .news-detail-header {
  margin: 0;
  padding: clamp(1.5rem, 3vw, 2rem) clamp(1.5rem, 3vw, 2.25rem);
  background: rgba(0, 0, 0, 0.2);
  border-bottom: 1px solid var(--news-line);
}

.page-news .news-detail-meta time {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.55);
}

.page-news .news-detail-title {
  margin: 0.75rem 0 0;
  padding-left: clamp(0.65rem, 1.2vw, 0.85rem);
  border-left: 2px solid var(--news-accent);
  font-size: clamp(1.2rem, 2.5vw, 1.65rem);
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
}

.page-news .news-detail-body {
  padding: clamp(1.5rem, 3vw, 2.25rem) clamp(1.5rem, 3vw, 2.25rem) clamp(1.75rem, 3.5vw, 2.5rem);
  background: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.92rem, 1.45vw, 1rem);
  line-height: 1.85;
}

.page-news .news-detail-body p {
  margin: 0 0 0.65rem;
}

.page-news .news-detail-body p:last-child {
  margin-bottom: 0;
}

.page-news .news-detail-body h3,
.page-news .news-detail-body h4,
.page-news .news-detail-body h5 {
  margin: clamp(1.35rem, 2.5vw, 1.75rem) 0 0.65rem;
  color: var(--white);
  font-weight: 700;
  line-height: 1.55;
  letter-spacing: 0.03em;
}

.page-news .news-detail-body h3 {
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--news-line);
  font-size: clamp(1.05rem, 1.8vw, 1.15rem);
}

.page-news .news-detail-body h4 {
  font-size: clamp(0.98rem, 1.6vw, 1.05rem);
  color: rgba(255, 255, 255, 0.95);
}

.page-news .news-detail-body h5 {
  font-size: clamp(0.92rem, 1.45vw, 0.98rem);
  color: rgba(255, 255, 255, 0.9);
}

.page-news .news-detail-body ul,
.page-news .news-detail-body ol {
  margin: 0 0 0.85rem;
  padding-left: 1.35rem;
}

.page-news .news-detail-body li {
  margin-bottom: 0.4rem;
}

.page-news .news-detail-body li::marker {
  color: var(--news-accent);
}

.page-news .news-detail-body a {
  color: var(--news-accent);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

.page-news .news-detail-body a:hover,
.page-news .news-detail-body a:focus-visible {
  color: #f5a04a;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.page-news .news-detail-body img {
  display: block;
  width: min(100%, 640px);
  height: auto;
  margin: clamp(1rem, 2vw, 1.35rem) auto;
  border: 1px solid var(--news-line);
  border-radius: 2px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.28);
}

.page-news .news-detail-body strong {
  color: rgba(255, 255, 255, 0.96);
  font-weight: 700;
}

.page-news .news-detail-body .news-detail-contact {
  margin-top: clamp(1.75rem, 3vw, 2.25rem);
  padding: clamp(1.15rem, 2.2vw, 1.5rem) clamp(1.15rem, 2vw, 1.35rem);
  border: 1px solid var(--news-line);
  border-top: 2px solid var(--news-teal);
  background: rgba(0, 0, 0, 0.22);
}

.page-news .news-detail-body .news-detail-contact p,
.page-news .news-detail-body .news-detail-contact li {
  color: rgba(255, 255, 255, 0.82);
}

.page-news .news-detail-body .news-detail-contact ul {
  margin-bottom: 0;
}

.page-news .news-detail-foot {
  margin-top: clamp(2rem, 4vw, 3rem);
  text-align: center;
}

@media (max-width: 768px) {
  .page-news .news-page-section__inner {
    grid-template-columns: 1fr;
  }

  .page-news .news-page-section__header {
    border-right: none;
    border-bottom: 1px solid var(--news-line);
  }
}

@media (prefers-reduced-motion: reduce) {
  .page-news .news-page-list__item,
  .page-news .news-page-list__text a,
  .page-news .news-page-list__item::before,
  .page-news .news-page-cta .services-cta,
  .page-news .news-detail-foot .services-cta {
    transition: none;
  }
}

/* WordPress shared UI */
.nav-main__list {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-main__list .sub-menu {
  list-style: none;
}

.breadcrumbs {
  padding-top: clamp(6.5rem, 10vw, 8.5rem);
  font-size: 0.8125rem;
}

.breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 1rem 0;
  list-style: none;
}

.breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin-left: 0.45rem;
  color: #8b9298;
}

.pagination .page-numbers {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination .current {
  display: grid;
  min-width: 2.75rem;
  min-height: 2.75rem;
  place-items: center;
  border: 1px solid #d5dce1;
}

.pagination .current {
  color: #fff;
  background: #082a40;
}

.error-404 {
  min-height: 70vh;
  padding-bottom: clamp(5rem, 10vw, 9rem);
}

.error-404__content {
  max-width: 52rem;
  margin: 5rem auto 0;
  text-align: center;
}

.error-404__code {
  margin: 0;
  color: #3d9fd4;
  font-family: "Oswald", sans-serif;
  font-size: clamp(5rem, 16vw, 11rem);
  line-height: 0.9;
}

.error-404__link {
  margin: 2.5rem auto 0;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

/* Company page */
body.page-company {
  --muted: #5a6d7a;
  --company-bg-alt: #f6f8fa;
  --company-line: #e6edf2;
  --company-shadow: 0 12px 40px rgba(12, 61, 92, 0.1);
}

body.page-company .page-hero {
  position: relative;
  overflow: hidden;
  padding: calc(var(--header-h) + 3.6rem) 0 4.2rem;
  background: #1e3024;
}

body.page-company .page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/company-hero-bamboo.jpg") center 35% / cover no-repeat;
}

body.page-company .page-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    108deg,
    rgba(252, 249, 242, 0.96) 0%,
    rgba(248, 245, 236, 0.9) 34%,
    rgba(236, 244, 238, 0.78) 52%,
    rgba(28, 48, 36, 0.52) 78%,
    rgba(18, 32, 24, 0.68) 100%
  );
}

body.page-company .page-hero .container {
  position: relative;
  z-index: 1;
}

body.page-company .page-hero__content {
  max-width: 40rem;
  padding: 1.4rem 0 1.4rem 1.5rem;
  border-left: 3px solid rgba(164, 132, 82, 0.55);
}

body.page-company .hero-label {
  margin: 0 0 0.75rem;
  color: #6b7f5e;
  font-family: var(--font-en);
  font-size: 0.74rem;
  letter-spacing: 0.28em;
  text-indent: 0.28em;
}

body.page-company .section {
  padding: 4rem 0;
  background: #fff;
  scroll-margin-top: calc(var(--header-h) + 1rem);
}

body.page-company .section.alt {
  background: var(--company-bg-alt);
}

body.page-company .section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.75rem;
}

body.page-company .section-kicker {
  margin: 0;
  color: rgba(12, 61, 92, 0.65);
  font-family: var(--font-en);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-indent: 0.22em;
}

body.page-company .section-title {
  margin: 0.25rem 0 0;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.2vw, 2rem);
  line-height: 1.2;
  letter-spacing: 0.02em;
}

body.page-company .table {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--company-line);
  border-collapse: collapse;
  border-radius: 0;
  background: #fff;
  font-size: 1rem;
}

body.page-company .table th,
body.page-company .table td {
  padding: 1rem 1.1rem;
  border-bottom: 1px solid var(--company-line);
  vertical-align: top;
}

body.page-company .table tr:last-child th,
body.page-company .table tr:last-child td {
  border-bottom: 0;
}

body.page-company .table th {
  width: 30%;
  background: #fbfdff;
  color: var(--navy);
  font-weight: 700;
  text-align: left;
}

body.page-company .table td {
  color: var(--muted);
}

body.page-company .table a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-company .license-list {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

body.page-company .license-list__row {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.35rem 1.25rem;
}

body.page-company .license-list__type {
  white-space: nowrap;
}

body.page-company .card {
  padding: 1.4rem;
  border: 1px solid var(--company-line);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--company-shadow);
}

body.page-company .bullets {
  margin: 1rem 0 0;
  padding-left: 1.2rem;
  color: var(--muted);
}

body.page-company .bullets li {
  margin: 0.35rem 0;
}

body.page-company .hq-panel {
  overflow: hidden;
  border: 1px solid var(--company-line);
  border-radius: 0;
  background: #fff;
  box-shadow: var(--company-shadow);
}

body.page-company .hq-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.12fr);
}

body.page-company .hq-info {
  padding: 2rem 2rem 2.1rem;
  background: linear-gradient(128deg, rgba(252, 249, 242, 0.98) 0%, rgba(245, 250, 247, 0.96) 100%);
}

body.page-company .hq-title {
  margin: 0 0 1.2rem;
  color: var(--navy);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

body.page-company .hq-title__mark {
  margin-right: 0.2rem;
  color: #6b8f71;
  font-size: 0.95em;
}

body.page-company .hq-address {
  margin: 0 0 1rem;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.85;
}

body.page-company .hq-contact {
  margin: 0 0 1.35rem;
  padding: 0;
}

body.page-company .hq-contact div {
  display: flex;
  gap: 0.75rem;
  margin: 0 0 0.35rem;
  color: var(--muted);
}

body.page-company .hq-contact dt {
  min-width: 2.8rem;
  color: var(--navy);
  font-weight: 700;
}

body.page-company .hq-contact dd {
  margin: 0;
}

body.page-company .hq-contact a {
  color: var(--navy);
  text-decoration: underline;
  text-underline-offset: 3px;
}

body.page-company .hq-access {
  padding-top: 1rem;
  border-top: 1px solid rgba(12, 61, 92, 0.12);
}

body.page-company .hq-access__label {
  margin: 0 0 0.55rem;
  color: #6b8f71;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
}

body.page-company .hq-access p {
  margin: 0 0 0.35rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.75;
}

body.page-company .hq-photo {
  min-height: 100%;
  margin: 0;
  background: #e8eef2;
}

body.page-company .hq-photo img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 300px;
  object-fit: cover;
}

body.page-company .hq-map iframe {
  display: block;
  width: 100%;
  height: 360px;
  border: 0;
}

/* WordPress pagination matching the works-page controls */
nav.pagination.dynamic-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: clamp(2rem, 4vw, 3rem);
}

nav.pagination.dynamic-pagination > ul.page-numbers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.pagination.dynamic-pagination > ul.page-numbers > li {
  margin: 0;
  padding: 0;
  list-style: none;
}

nav.pagination.dynamic-pagination > ul.page-numbers > li > .page-numbers {
  display: inline-flex;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  min-height: 2.5rem;
  margin: 0;
  padding: 0 0.65rem;
  border: 1px solid rgba(8, 36, 98, 0.18);
  border-radius: 0;
  background: var(--white, #fff);
  color: var(--brand-base, #082462);
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

nav.pagination.dynamic-pagination > ul.page-numbers > li > a.page-numbers:hover,
nav.pagination.dynamic-pagination > ul.page-numbers > li > a.page-numbers:focus-visible {
  border-color: rgba(230, 138, 46, 0.55);
  color: var(--industrial-orange, #e68a2e);
}

nav.pagination.dynamic-pagination > ul.page-numbers > li > a.page-numbers {
  cursor: pointer;
}

nav.pagination.dynamic-pagination > ul.page-numbers > li > .page-numbers.current {
  border-color: var(--brand-base, #082462);
  background: var(--brand-base, #082462);
  color: var(--white, #fff);
  cursor: default;
  pointer-events: none;
}

@media (max-width: 980px) {
  body.page-company .section-head {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 900px) {
  body.page-company .hq-grid {
    grid-template-columns: 1fr;
  }

  body.page-company .hq-info {
    border-bottom: 1px solid var(--company-line);
  }

  body.page-company .hq-photo img {
    min-height: 240px;
  }

  body.page-company .hq-map iframe {
    height: 300px;
  }
}

@media (max-width: 640px) {
  body.page-company .page-hero::after {
    background: linear-gradient(
      180deg,
      rgba(252, 249, 242, 0.95) 0%,
      rgba(248, 245, 236, 0.88) 55%,
      rgba(28, 48, 36, 0.62) 100%
    );
  }

  body.page-company .page-hero__content {
    padding-left: 1rem;
    border-left-width: 2px;
  }
}

.page-works nav.pagination.dynamic-pagination .prev,
.page-works nav.pagination.dynamic-pagination .next {
  display: none;
}
