@charset "UTF-8";

/* ==========================================================================
   東亜警備保障 - 統合スタイルシート
   構造:
   1. base           リセット・基本設定・デザイントークン
   2. layout         コンテナ・共通余白
   3. components     再利用コンポーネント (.btn, .section-heading, .js-fade)
   4. header         ヘッダー + SP Menu
   5. hero           ヒーロー (メインビジュアル)
   6. contact        お問い合わせ (カードリスト)
   7. recruit        採用情報 + INTERVIEW
   8. service        サービス紹介 + 写真ループ帯
   9. blog           東亜ログ
  10. back-picture   フルブリードビジュアル
  11. news           お知らせ
  12. footer         フッター 3層構造
  13. motion-reduce  prefers-reduced-motion
   ========================================================================== */


/* ==========================================================================
   1. base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  color: #000;
  line-height: 1.6;
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
}

button {
  background: none;
  border: none;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

/* --- Design Tokens (Figma 準拠) --- */
:root {
  /* Colors */
  --color-blue: #1961AD;
  --color-blue-light: #2889C5;
  --color-blue-dark: #0a1a2a;
  --color-yellow: #FFE100;
  --color-black: #000;
  --color-white: #fff;
  --color-text: #1a1a1a;
  --color-text-sub: #666;
  --color-border: #e5e5e5;
  --color-header-bg: rgba(255, 255, 255, 0.5);

  /* Layout */
  --container-max: 1200px;
  --header-height: 70px;

  /* Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 20px;
  --radius-xl: 32px;
  --radius-pill: 9999px;
  --section-radius-bl: clamp(64px, 6.94vw, 120px);

  /* Animation */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
}


/* ==========================================================================
   2. layout
   ========================================================================== */
.container {
  max-width: var(--container-max);
  margin-inline: auto;
  padding-inline: clamp(24px, 4vw, 60px);
}

.section {
  padding-block: clamp(60px, 8vw, 100px);
}


/* ==========================================================================
   3. components (再利用可能)
   ========================================================================== */

/* --- Fade-in on scroll --- */
.js-fade {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms var(--ease-out-expo);
  will-change: opacity, transform;
}

.js-fade.is-in {
  opacity: 1;
  transform: translateY(0);
}

/* --- Section Heading (縦黄accent + JP + EN + 右横線) --- */
.section-heading {
  display: grid;
  grid-template-columns: auto auto 1fr;
  grid-template-rows: auto auto;
  align-items: end;
  column-gap: 0;
  row-gap: 2px;
  padding-left: 16px;
  margin-bottom: 32px;
  position: relative;
  color: var(--color-blue);
}

.section-heading__accent {
  grid-row: 1 / 3;
  grid-column: 1;
  align-self: stretch;
  width: 6px;
  background: var(--color-yellow);
  border-radius: 2px;
  margin-right: 12px;
  margin-top: 16px;
}

.section-heading__jp {
  grid-row: 1;
  grid-column: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  line-height: 1;
  color: inherit;
}

.section-heading__en {
  grid-row: 2;
  grid-column: 2;
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(32px, 3vw, 44px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: inherit;
}

.section-heading__line {
  grid-row: 2;
  grid-column: 3;
  align-self: end;
  height: 1px;
  background: var(--color-yellow);
  margin-left: 24px;
  margin-bottom: 10px;
}

.section-heading--on-dark {
  color: #fff;
}


/* ==========================================================================
   4. header (+ SP Menu)
   ========================================================================== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: var(--color-header-bg);
  z-index: 1100;                  /* main と ヒーロー より確実に上 */
  backdrop-filter: blur(2px);
  /* overflow を visible に明示 (子 submenu が header 下にはみ出して見えるように) */
  overflow: visible;
}

.header__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  padding: 0 30px 0 36px;
  max-width: 1440px;
  margin: 0 auto;
}

/* Logo (image + company name) */
.header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 50px;
  flex-shrink: 0;
  color: inherit;
  text-decoration: none;
}

.header__logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.header__logo-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  color: var(--color-black);
  white-space: nowrap;
}

/* PC Navigation */
.header__nav {
  margin-left: auto;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.4vw, 40px);
}

.header__nav-link {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-black);
  white-space: nowrap;
  transition: opacity 0.2s var(--ease);
}

.header__nav-link:hover {
  opacity: 0.6;
}

/* --- PC: 子メニュー持ちの項目 (ドロップダウン) --- */
.header__nav-item--has-children {
  position: relative;
}

.header__nav-item--has-children > .header__nav-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  padding: 0;                       /* アイテムは端まで敷き詰め (区切り線を両端まで) */
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;                 /* 区切り線が border-radius を超えないように */
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s var(--ease);
  z-index: 1200;                    /* header の z-index (1100) より内側で最前面 */
}

.header__nav-item--has-children:hover .header__submenu,
.header__nav-item--has-children:focus-within .header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

/* 各 <li> の下に薄いグレーの区切り線 */
.header__submenu > li {
  border-bottom: 1px solid #e8eaee;
}

.header__submenu > li:last-child {
  border-bottom: none;
}

.header__submenu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  min-height: 44px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

/* 左端の青い > chevron (CSS border トリック) */
.header__submenu-link::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform 0.18s ease;
}

.header__submenu-link:hover,
.header__submenu-link:focus-visible {
  background: rgba(25, 97, 173, 0.06);
  color: var(--color-blue);
  outline: none;
}

.header__submenu-link:hover::before,
.header__submenu-link:focus-visible::before {
  transform: rotate(45deg) translate(2px, -2px);   /* hoverで chevron が少し前進 */
}

/* PC Buttons */
.header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 42px;
}

.header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 50px;
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1;
  transition: opacity 0.2s var(--ease), transform 0.2s var(--ease);
}

.header__btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.header__btn--recruit {
  background: var(--color-blue);
  color: var(--color-white);
}

.header__btn--contact {
  background: var(--color-yellow);
  color: var(--color-blue);
}

/* Hamburger (SP only) */
.header__hamburger {
  display: none;
  position: relative;
  width: 45px;
  height: 40px;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto;
  z-index: 1100;
}

.header__hamburger-bar {
  display: block;
  width: 45px;
  height: 6px;
  background: var(--color-blue);
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
  transform-origin: center;
}

.header.is-menu-open .header__hamburger {
  height: 45px;
  justify-content: center;
  gap: 0;
}

.header.is-menu-open .header__hamburger-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 45px;
  height: 6px;
}

.header.is-menu-open .header__hamburger-bar:nth-child(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}

.header.is-menu-open .header__hamburger-bar:nth-child(2) {
  opacity: 0;
}

.header.is-menu-open .header__hamburger-bar:nth-child(3) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* SP Menu Panel */
.sp-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  width: 380px;
  max-width: 100%;
  height: calc(100vh - var(--header-height));
  padding: 40px 20px 56px;
  background: linear-gradient(to bottom, var(--color-blue) 0%, var(--color-blue-light) 100%);
  opacity: 0;
  visibility: hidden;
  transform: translateX(100%);
  transition: transform 0.4s var(--ease), opacity 0.4s var(--ease), visibility 0.4s var(--ease);
  overflow-y: auto;
  z-index: 999;
  display: flex;
  flex-direction: column;
}

.header.is-menu-open .sp-menu,
.page-header.is-menu-open .sp-menu {
  opacity: 0.95;
  visibility: visible;
  transform: translateX(0);
}

.sp-menu__nav {
  margin-bottom: 38px;
}

.sp-menu__list {
  display: flex;
  flex-direction: column;
}

.sp-menu__item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
}

.sp-menu__link {
  display: block;
  padding: 11px 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-white);
  transition: opacity 0.2s var(--ease);
}

.sp-menu__link:hover {
  opacity: 0.7;
}

/* --- SP: アコーディオン付き項目 --- */
.sp-menu__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.sp-menu__row .sp-menu__link {
  flex: 1;
  padding: 14px 0;
}

/* + / − トグルボタン */
.sp-menu__toggle {
  position: relative;
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  border-radius: 9999px;
  background: transparent;
  color: #fff;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.sp-menu__toggle:hover,
.sp-menu__toggle:focus-visible {
  background: rgba(255, 255, 255, 0.12);
  outline: none;
}

/* 横線 (常時) */
.sp-menu__toggle::before,
/* 縦線 (閉じている時のみ表示 → +に見える) */
.sp-menu__toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  background: currentColor;
  border-radius: 1px;
  transition: opacity 0.25s var(--ease), transform 0.25s var(--ease);
}

.sp-menu__toggle::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.sp-menu__toggle::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

/* 開いている時: 縦線を消して - (マイナス) に見せる */
.sp-menu__toggle[aria-expanded="true"]::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg);
}

/* サブリスト (アコーディオン開閉: max-height トランジション) */
.sp-menu__sublist {
  list-style: none;
  padding: 0;
  margin: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s var(--ease);
}

.sp-menu__sublist.is-open {
  /* 9項目 * 44px + 余白で余裕を持って 500px */
  max-height: 600px;
}

.sp-menu__sublink {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 0 10px 16px;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.4;
  text-decoration: none;
  min-height: 44px;
  transition: opacity 0.2s var(--ease);
}

.sp-menu__sublink:hover {
  opacity: 0.7;
}

/* 先頭の黄色三角マーカー */
.sp-menu__sublink::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7px solid var(--color-yellow);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  flex-shrink: 0;
}

.sp-menu__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: auto;
}

.sp-menu__action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  width: 100%;
  height: 100px;
  padding: 0 20px;
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1.2;
  transition: opacity 0.2s var(--ease);
}

.sp-menu__action:hover {
  opacity: 0.85;
}

.sp-menu__action-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--color-yellow);
}

.sp-menu__action-icon svg {
  width: 100%;
  height: 100%;
}

.sp-menu__action-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.sp-menu__action-text--single {
  display: block;
}

.sp-menu__action--tel {
  background: var(--color-white);
  color: var(--color-blue);
}

.sp-menu__action--tel .sp-menu__action-label {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
}

.sp-menu__action--tel .sp-menu__action-tel {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1.25;
}

.sp-menu__action--order {
  background: var(--color-black);
  color: var(--color-white);
}

.sp-menu__action--entry {
  background: var(--color-blue);
  color: var(--color-white);
}

body.is-menu-open {
  overflow: hidden;
}

/* Header SP */
@media (max-width: 834px) {
  .header__inner {
    padding: 0 27px 0 36px;
  }

  .header__nav,
  .header__buttons {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  /* SPはロゴ+ハンバーガーのみ。会社名はスペース優先で非表示 */
  .header__logo-text {
    display: none;
  }
}

@media (max-width: 430px) {
  .sp-menu {
    width: 88%;
  }
}


/* ==========================================================================
   5. hero (メインビジュアル)
   ========================================================================== */
:root {
  --hero-copy-radius: 25px;
  --hero-bg: #fff;
  --hero-height-pc: clamp(560px, 88vh, 852px);
  --hero-pc-left-inset: clamp(72px, 9.72vw, 140px);
  --hero-pc-copy-left: clamp(20px, 4.24vw, 61px);
  --hero-pc-bottom-gap: 0px;
  --hero-pc-radius: clamp(64px, 6.94vw, 100px);
  --hero-height-sp: clamp(480px, calc(100svh - 70px), 620px);
  --hero-sp-radius: 80px;
  --hero-fade-duration: 1000ms;
  --hero-zoom-duration: 7000ms;
}

.hero {
  position: relative;
  width: 100%;
  height: var(--hero-height-pc);
  background: var(--hero-bg);
  overflow: hidden;
  isolation: isolate;
  margin-bottom: 80px;
}

.hero__slider {
  position: absolute;
  top: 0;
  right: 0;
  left: var(--hero-pc-left-inset);
  bottom: var(--hero-pc-bottom-gap);
  overflow: hidden;
  border-radius: 0 0 0 var(--hero-pc-radius);
  z-index: 1;
}

.hero__slide {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  opacity: 0;
  transform: scale(1.08);
  transition: opacity var(--hero-fade-duration) ease,
              transform var(--hero-zoom-duration) linear;
  will-change: opacity, transform;
}

.hero__slide.is-active {
  opacity: 1;
  transform: scale(1);
}

/* Catch Copy */
.hero__copy {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: var(--hero-pc-copy-left);
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 14px;
  pointer-events: none;
}

.hero__copy-line {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  padding: 10px 21px;
  background: var(--color-blue);
  color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.56vw, 80px);
  line-height: 1.2;
  letter-spacing: 0;
  white-space: nowrap;
  border-radius: var(--hero-copy-radius) 0 var(--hero-copy-radius) 0;
  transform: translateX(-105%);
  opacity: 0;
}

.hero__copy.is-in .hero__copy-line--1 {
  transform: translateX(0);
  opacity: 1;
  transition: transform 900ms var(--ease-out-expo) 200ms,
              opacity 450ms ease 200ms;
}

.hero__copy.is-in .hero__copy-line--2 {
  transform: translateX(0);
  opacity: 1;
  transition: transform 900ms var(--ease-out-expo) 420ms,
              opacity 450ms ease 420ms;
}

/* Pagination */
.hero__pagination {
  position: absolute;
  right: clamp(16px, 2vw, 30px);
  bottom: calc(var(--hero-pc-bottom-gap) + clamp(16px, 2vw, 28px));
  display: flex;
  gap: 10px;
  z-index: 4;
}

.hero__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(255, 255, 255, 0.85);
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.85);
}

.hero__dot.is-active {
  background: #fff;
  transform: scale(1.15);
}

/* Scroll Indicator */
.hero__scroll {
  position: absolute;
  left: 50%;
  bottom: var(--hero-pc-bottom-gap);
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 21px;
  letter-spacing: 0.05em;
  text-decoration: none;
}

.hero__scroll-text {
  display: inline-block;
  transition: transform 0.3s ease;
}

.hero__scroll:hover .hero__scroll-text {
  transform: translateY(-2px);
}

.hero__scroll-line {
  position: relative;
  display: block;
  width: 1px;
  height: 120px;
  background: rgba(255, 255, 255, 0.6);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: #fff;
  animation: hero-scroll-dot 2.2s ease-in-out infinite;
}

@keyframes hero-scroll-dot {
  0%   { transform: translateY(-100%); }
  70%  { transform: translateY(250%); }
  100% { transform: translateY(250%); }
}

/* Hero SP */
@media (max-width: 834px) {
  .hero {
    height: var(--hero-height-sp);
    margin-bottom: 80px;
  }

  .hero__slider {
    left: 0;
    bottom: 0;
    border-radius: 0 0 0 var(--hero-sp-radius);
  }

  .hero__copy {
    top: auto;
    bottom: 108px;
    left: 0;
    transform: none;
    gap: 12px;
  }

  .hero__copy-line {
    font-size: 40px;
    padding: 10px 21px;
  }

  .hero__scroll {
    display: none;
  }

  .hero__pagination {
    bottom: 16px;
    right: 16px;
  }
}

@media (max-width: 380px) {
  :root {
    --hero-sp-radius: 56px;
  }

  .hero__copy-line {
    font-size: 34px;
    padding: 8px 18px;
  }

  .hero__copy {
    bottom: 84px;
  }
}


/* ==========================================================================
   6. contact (お問い合わせ)
   ========================================================================== */
.contact {
  padding: 75px 24px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
}

.contact__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.contact__list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding: 0;
  margin: 0;
}

.contact__item {
  display: flex;
  /* セクション表示時のフェードイン初期状態 */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 700ms var(--ease-out-expo);
  will-change: opacity, transform;
}

/* .contact.is-in (Intersection Observer 発火) で順に表示 */
.contact.is-in .contact__item {
  opacity: 1;
  transform: translateY(0);
}

.contact.is-in .contact__item:nth-child(1) { transition-delay: 180ms; }
.contact.is-in .contact__item:nth-child(2) { transition-delay: 320ms; }
.contact.is-in .contact__item:nth-child(3) { transition-delay: 460ms; }

.contact__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding: 40px 24px 32px;
  background: var(--color-white);
  color: var(--color-blue);
  border-radius: var(--radius-md);
  text-align: center;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  min-height: 260px;
}

.contact__card:hover,
.contact__card:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.14);
  outline: none;
}

.contact__card:focus-visible {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.95),
              0 10px 24px rgba(0, 0, 0, 0.14);
}

.contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-yellow);
  flex-shrink: 0;
}

.contact__icon svg {
  width: 100%;
  height: auto;
  display: block;
}

.contact__body {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex: 1;
  width: 100%;
}

.contact__label,
.contact__heading {
  margin: 0;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45;
  color: var(--color-blue);
}

.contact__heading--sp {
  display: none;
}

.contact__tel {
  margin: 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

.contact__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 28px;
  min-width: 180px;
  background: var(--color-black);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  line-height: 1;
  transition: opacity 0.2s ease;
}

.contact__card:hover .contact__btn {
  opacity: 0.85;
}

.contact__btn-arrow {
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 0;
  transform: translateY(-1px);
}

.contact__card--tel .contact__body {
  justify-content: center;
  gap: 14px;
}

/* Contact SP */
@media (max-width: 834px) {
  .contact {
    padding: 48px 16px;
  }

  .contact__list {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .contact__card {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 16px 24px;
    min-height: 92px;
    border-radius: var(--radius-pill);
    box-shadow: none;
  }

  .contact__card:hover {
    transform: none;
    box-shadow: none;
    opacity: 0.9;
  }

  .contact__icon {
    width: 38px;
    height: 38px;
  }

  .contact__body {
    flex-direction: column;
    align-items: flex-start;
    flex: initial;
    gap: 2px;
    width: auto;
  }

  .contact__heading--pc {
    display: none;
  }

  .contact__heading--sp {
    display: inline-block;
  }

  .contact__btn {
    display: none;
  }

  .contact__card--tel {
    background: var(--color-white);
    color: var(--color-blue);
  }

  .contact__card--tel .contact__label {
    font-size: 13px;
    line-height: 1.2;
  }

  .contact__card--tel .contact__tel {
    font-size: 26px;
  }

  .contact__card--mail {
    background: var(--color-black);
    color: var(--color-white);
  }

  .contact__card--mail .contact__heading,
  .contact__card--mail .contact__heading--sp {
    color: var(--color-white);
    font-size: 20px;
  }

  .contact__card--entry {
    background: var(--color-blue);
    color: var(--color-white);
  }

  .contact__card--entry .contact__heading,
  .contact__card--entry .contact__heading--sp {
    color: var(--color-white);
    font-size: 20px;
  }
}

@media (max-width: 380px) {
  .contact__card {
    padding: 14px 18px;
    gap: 14px;
  }

  .contact__card--tel .contact__tel {
    font-size: 22px;
  }

  .contact__card--mail .contact__heading--sp,
  .contact__card--entry .contact__heading--sp {
    font-size: 17px;
  }
}

@media (max-width: 1024px) and (min-width: 835px) {
  .contact {
    padding: 100px 24px 80px;
  }

  .contact__card {
    padding: 32px 16px 28px;
    min-height: 240px;
    gap: 18px;
  }

  .contact__label,
  .contact__heading {
    font-size: 18px;
  }

  .contact__tel {
    font-size: 26px;
  }

  .contact__btn {
    padding: 9px 20px;
    min-width: 0;
    font-size: 12px;
  }
}


/* ==========================================================================
   7. recruit (採用情報 + INTERVIEW)
   ========================================================================== */
.recruit {
  position: relative;
  overflow: hidden;
  padding: 100px 60px 80px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  border-radius: 0 0 120px 120px;
  color: var(--color-white);
  isolation: isolate;
}

.recruit__bg {
  position: absolute;
  inset: 0;
  background: url("../images/haikei.png") center center / cover no-repeat;
  opacity: 0.55;
  z-index: 0;
  pointer-events: none;
  mix-blend-mode: luminosity;
}

.recruit__inner {
  position: relative;
  z-index: 1;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.recruit__copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin: 0;
}

.recruit__copy-line {
  display: inline-flex;
  align-items: center;
  margin: 0;
  padding: 10px 24px;
  background: var(--color-black);
  color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  letter-spacing: 0.02em;
  border-radius: 6px 0 6px 0;
  opacity: 0;
  transform: translateX(-40px);
}

.recruit.is-in .recruit__copy-line--1 {
  opacity: 1;
  transform: translateX(0);
  transition: transform 750ms var(--ease-out-expo) 100ms,
              opacity 500ms ease 100ms;
}

.recruit.is-in .recruit__copy-line--2 {
  opacity: 1;
  transform: translateX(0);
  transition: transform 750ms var(--ease-out-expo) 280ms,
              opacity 500ms ease 280ms;
}

.recruit__desc {
  margin: 0;
  max-width: 560px;
  color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 15px;
  line-height: 2;
  font-weight: 400;
}

/* Main Visual (3 guards) */
.recruit__visual {
  align-self: center;
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.recruit__visual img {
  display: block;
  width: auto;
  height: clamp(380px, 64vw, 560px);
  max-width: none;
  flex-shrink: 0;
}

/* CTA - LP内で最も強いボタン (黄色グラデ + シャドウ + ふわ浮き) */
.recruit__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px 14px 14px 44px;
  background: linear-gradient(135deg, #FFD600 0%, #FFF066 100%);
  color: var(--color-blue);
  border-radius: 999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
  letter-spacing: 0.02em;
  line-height: 1;
  min-height: 72px;
  min-width: 320px;
  text-decoration: none;
  align-self: flex-start;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.18),
    0 4px 8px rgba(0, 0, 0, 0.12);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: ctaFloat 2.6s ease-in-out infinite;
  will-change: transform;
}

/* 常時ふわっと浮上アニメーション (CV を後押しする視覚誘導) */
@keyframes ctaFloat {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-4px); }
}

.recruit__cta:hover,
.recruit__cta:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.24),
    0 6px 12px rgba(0, 0, 0, 0.18);
  outline: none;
  /* hover/focus 中は常時アニメを止めて translate を確実に効かせる */
  animation-play-state: paused;
}

.recruit__cta:active {
  transform: translateY(1px) scale(0.98);
  box-shadow:
    0 6px 14px rgba(0, 0, 0, 0.20),
    0 2px 6px rgba(0, 0, 0, 0.14);
  animation-play-state: paused;
}

.recruit__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  background: var(--color-blue);
  color: var(--color-white);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.recruit__cta-arrow svg {
  width: 20px;
  height: 20px;
}

.recruit__cta:hover .recruit__cta-arrow,
.recruit__cta:focus-visible .recruit__cta-arrow {
  transform: translateX(6px);
}

/* INTERVIEW */
.recruit__interview {
  margin-top: 40px;
}

.recruit__interview-head {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  padding-bottom: 18px;
}

.recruit__interview-label {
  position: relative;
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
  flex-shrink: 0;
}

.recruit__interview-accent {
  position: absolute;
  left: 0;
  top: 18px;
  bottom: 2px;
  width: 6px;
  background: var(--color-yellow);
  border-radius: 2px;
}

.recruit__interview-jp {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--color-white);
  line-height: 1;
}

.recruit__interview-en {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 44px;
  line-height: 1;
  color: var(--color-white);
  letter-spacing: 0.02em;
}

.recruit__interview-line {
  flex: 1;
  height: 1px;
  background: var(--color-yellow);
  align-self: flex-end;
  margin-bottom: 10px;
}

.recruit__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.recruit__card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(24px);
  transition: transform 700ms var(--ease-out-expo),
              opacity 500ms ease;
}

.recruit.is-in .recruit__card {
  opacity: 1;
  transform: translateY(0);
}

.recruit.is-in .recruit__card:nth-child(1) { transition-delay: 180ms; }
.recruit.is-in .recruit__card:nth-child(2) { transition-delay: 320ms; }
.recruit.is-in .recruit__card:nth-child(3) { transition-delay: 460ms; }

.recruit__card-link {
  position: relative;
  display: block;
  border-radius: var(--radius-md);
  overflow: hidden;
  text-decoration: none;
  transition: transform 0.25s ease;
}

.recruit__card-link:hover,
.recruit__card-link:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.recruit__card-img {
  display: block;
  aspect-ratio: 7 / 5;
  background: rgba(0, 0, 0, 0.15);
  overflow: hidden;
  border-radius: var(--radius-md);
}

.recruit__card-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s ease;
}

.recruit__card-link:hover .recruit__card-img img {
  transform: scale(1.04);
}

.recruit__card-arrow {
  position: absolute;
  right: 12px;
  bottom: 12px;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--color-white);
  color: var(--color-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.recruit__card-arrow svg {
  width: 16px;
  height: 16px;
}

.recruit__card-name {
  margin: 0;
  color: var(--color-white);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-align: center;
}

.recruit__dots {
  display: none;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.recruit__dot {
  width: 8px;
  height: 8px;
  padding: 0;
  border: none;
  border-radius: var(--radius-pill);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.recruit__dot:hover {
  background: rgba(255, 255, 255, 0.7);
}

.recruit__dot.is-active {
  background: var(--color-white);
  transform: scale(1.3);
}

/* Recruit PC Grid */
@media (min-width: 835px) {
  .recruit__inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    grid-template-areas:
      "copy    visual"
      "desc    visual"
      "cta     visual"
      "interview interview";
    column-gap: 60px;
    row-gap: 32px;
    align-items: start;
  }

  .recruit__copy { grid-area: copy; align-self: end; }
  .recruit__desc { grid-area: desc; font-size: 16px; }
  .recruit__visual {
    grid-area: visual;
    align-self: center;
    overflow: visible;
    justify-content: flex-start;
    min-height: 480px;
  }
  .recruit__visual img {
    height: clamp(380px, 44vw, 700px);
    transform: translateX(max(-60px, -4vw));
  }
  .recruit__cta { grid-area: cta; align-self: start; justify-self: start; margin-top: 16px; }
  .recruit__interview { grid-area: interview; margin-top: 40px; }

  .recruit__copy-line {
    font-size: 32px;
    padding: 12px 28px;
  }
}

/* Recruit SP */
@media (max-width: 834px) {
  .recruit {
    padding: 60px 24px 56px;
    border-radius: 0 0 80px 80px;
  }

  .recruit__copy-line {
    font-size: 20px;
    padding: 8px 18px;
  }

  .recruit__desc {
    font-size: 14px;
    line-height: 1.9;
  }

  .recruit__visual {
    margin: 12px 0 0;
  }

  .recruit__visual img {
    height: clamp(340px, 78vw, 520px);
  }

  .recruit__cta {
    align-self: center;
    padding: 12px 12px 12px 32px;
    min-width: 280px;
    font-size: 16px;
    min-height: 60px;
    gap: 18px;
  }

  .recruit__cta-arrow {
    width: 40px;
    height: 40px;
  }

  .recruit__cta-arrow svg {
    width: 18px;
    height: 18px;
  }

  .recruit__interview {
    margin-top: 16px;
  }

  .recruit__interview-en {
    font-size: 34px;
  }

  .recruit__cards {
    grid-template-columns: none;
    display: flex;
    gap: 16px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 24px 16px;
    margin: 0 -24px;
    scrollbar-width: none;
  }

  .recruit__cards::-webkit-scrollbar {
    display: none;
  }

  .recruit__card {
    flex: 0 0 72%;
    max-width: 320px;
    scroll-snap-align: center;
    transform: translateX(40px);
  }

  .recruit.is-in .recruit__card {
    transform: translateX(0);
  }

  .recruit__dots {
    display: flex;
  }
}

@media (max-width: 380px) {
  .recruit__copy-line {
    font-size: 17px;
    padding: 7px 14px;
  }

  .recruit__interview-en {
    font-size: 28px;
  }
}


/* ==========================================================================
   8. service (サービス紹介)
   ========================================================================== */
.service {
  position: relative;
  isolation: isolate;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px) clamp(80px, 10vw, 120px);
  background-color: #fff;
  background-image: url("../images/back-picture.png");
  background-size: 100% auto;
  background-position: center bottom;
  background-repeat: no-repeat;
}

.service::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.35) 0%,
    rgba(25, 97, 173, 0.10) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.service > .service__inner,
.service > .service__photos {
  position: relative;
  z-index: 2;
}

.service__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: block;
  text-align: center;
}

.service__inner > .section-heading,
.service__inner > .service__desc,
.service__inner > .service__cards {
  text-align: left;
}

.service__desc {
  margin: 0 0 40px;
  max-width: 780px;
  color: var(--color-text);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2;
}

/* About ボタン (白 pill) */
.service__about {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 8px 8px 8px 40px;
  background: #fff;
  color: var(--color-blue);
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  min-width: 260px;
  min-height: 56px;
  margin: 56px auto 0;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service__about:hover,
.service__about:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.14);
  outline: none;
}

.service__about-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: var(--color-blue);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service__about-arrow svg {
  width: 18px;
  height: 18px;
}

.service__about:hover .service__about-arrow {
  transform: translateX(4px);
}

/* 3 image cards (2-col + バッジ右下はみ出し) */
.service__cards {
  list-style: none;
  margin: 56px 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: clamp(48px, 6vw, 72px);
}

.service__card {
  display: flex;
  /* セクション表示時のフェードイン初期状態 */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 500ms ease, transform 700ms var(--ease-out-expo);
  will-change: opacity, transform;
}

/* .service.is-in (js-fade 発火時) で順に表示 */
.service.is-in .service__card {
  opacity: 1;
  transform: translateY(0);
}

.service.is-in .service__card:nth-child(1) { transition-delay: 180ms; }
.service.is-in .service__card:nth-child(2) { transition-delay: 320ms; }
.service.is-in .service__card:nth-child(3) { transition-delay: 460ms; }

.service__card-link {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.service__card-link:hover,
.service__card-link:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.service__card-image {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background-color: rgba(25, 97, 173, 0.08);
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease;
}

.service__card-link:hover .service__card-image {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
}

.service__card-badge {
  position: absolute;
  right: clamp(16px, 2.2vw, 32px);
  bottom: -20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 10px 10px 28px;
  background: var(--color-blue);
  color: #fff;
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  min-width: 56%;
  max-width: calc(100% - 32px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
}

.service__card-title {
  flex: 1;
  text-align: center;
}

.service__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service__card-arrow svg {
  width: 14px;
  height: 14px;
}

.service__card-link:hover .service__card-arrow {
  transform: translateX(3px);
}

/* Service Photos Strip (右→左 無限ループ) */
.service__photos {
  margin-top: clamp(40px, 6vw, 72px);
  overflow: hidden;
  width: 100%;
  padding: 20px 0;
}

.service__photos-track {
  display: flex;
  align-items: center;
  gap: 20px;
  width: max-content;
  will-change: transform;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.service__photos-track.is-grabbing {
  cursor: grabbing;
}

.service__photos-track img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.service__photo {
  flex: 0 0 auto;
  width: clamp(180px, 16vw, 240px);
  aspect-ratio: 5 / 6.6;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: #e5e5e5;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.1);
}

.service__photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Service SP */
@media (max-width: 834px) {
  .service {
    padding: 60px 16px 20px;
  }

  .service__about {
    min-width: 220px;
    font-size: 14px;
    padding: 6px 6px 6px 28px;
    min-height: 52px;
    margin-top: 40px;
  }

  .service__about-arrow {
    width: 36px;
    height: 36px;
  }

  .service__cards {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 44px;
    max-width: 480px;
    margin: 40px auto 0;
  }

  .service__card-link {
    aspect-ratio: 3 / 2;
  }

  .service__card-image {
    border-radius: var(--radius-md);
  }

  .service__card-badge {
    bottom: -16px;
    right: 12px;
    padding: 8px 8px 8px 22px;
    font-size: 14px;
    gap: 10px;
    min-width: 58%;
    max-width: calc(100% - 24px);
  }

  .service__card-arrow {
    width: 28px;
    height: 28px;
  }

  .service__photos {
    margin-top: 32px;
  }

  .service__photos-track {
    gap: 12px;
  }

  .service__photo {
    width: clamp(140px, 42vw, 180px);
    border-radius: 14px;
  }
}


/* ==========================================================================
   9. blog (東亜ログ)
   ========================================================================== */
.blog {
  position: relative;
  overflow: hidden;
  padding: clamp(80px, 10vw, 140px) clamp(24px, 4vw, 60px);
  margin: clamp(16px, 2vw, 32px) clamp(12px, 2vw, 24px);
  color: #fff;
  isolation: isolate;
  background-color: var(--color-blue-dark);
  background-image: url("../images/blog-back.png");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: clamp(40px, 5vw, 80px);
}

.blog__bg {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(10, 25, 50, 0.32) 0%,
    rgba(25, 97, 173, 0.18) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.blog__inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 24px;
}

.blog__desc {
  margin: 0;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2;
  max-width: 680px;
}

.blog__cta {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 8px 8px 36px;
  background: #fff;
  color: var(--color-blue);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  min-width: 240px;
  min-height: 52px;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.blog__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.blog__cta-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: var(--radius-pill);
  background: var(--color-blue);
  color: #fff;
  flex-shrink: 0;
}

.blog__cta-arrow svg {
  width: 16px;
  height: 16px;
}

/* Blog SP */
@media (max-width: 834px) {
  .blog {
    padding: 60px 24px;
  }
}


/* ==========================================================================
   10. back-picture (ビジュアル区切り)
   ========================================================================== */
.back-picture {
  padding: 0 clamp(0px, 3vw, 60px);
  background: #fff;
}

.back-picture__image {
  width: 100%;
  aspect-ratio: 1440 / 631;
  background: url("../images/back-picture.png") center center / cover no-repeat,
              linear-gradient(135deg, var(--color-blue-dark) 0%, var(--color-blue) 100%);
  border-radius: 0 0 0 var(--section-radius-bl);
  overflow: hidden;
}

/* Back-picture SP */
@media (max-width: 834px) {
  .back-picture {
    padding: 0;
  }

  .back-picture__image {
    aspect-ratio: 4 / 5;
    border-radius: 0 0 0 80px;
  }
}


/* ==========================================================================
   11. news (お知らせ)
   ========================================================================== */
.news {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background: #fff;
}

.news__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.news__list {
  list-style: none;
  margin: 0 0 32px;
  padding: 0;
  border-top: 1px solid var(--color-border);
}

.news__item {
  border-bottom: 1px solid var(--color-border);
}

.news__link {
  position: relative;
  display: grid;
  grid-template-columns: 96px 120px 110px 1fr 32px;
  align-items: center;
  gap: 24px;
  padding: 16px 8px;
  text-decoration: none;
  color: var(--color-text);
  transition: background 0.2s ease;
}

.news__link:hover,
.news__link:focus-visible {
  background: rgba(25, 97, 173, 0.04);
  outline: none;
}

/* ===== サムネイル ===== */
.news__thumb {
  width: 96px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  background: #f5f5f5;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.news__thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.news__thumb-fallback {
  width: 60%;
  max-width: 56px;
  height: auto;
  opacity: 0.55;
}

.news__item--empty {
  text-align: center;
  padding: 24px 0;
  color: #888;
}

.news__item--empty .news__title {
  font-size: 14px;
}

.news__date {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 15px;
  color: var(--color-blue);
  letter-spacing: 0.02em;
}

.news__category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 88px;
  height: 28px;
  padding: 0 14px;
  background: var(--color-blue);
  color: #fff;
  border-radius: var(--radius-pill);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.news__category--recruit {
  background: var(--color-black);
}

.news__category--media {
  background: var(--color-yellow);
  color: var(--color-blue);
}

.news__title {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--color-text);
  font-weight: 500;
}

.news__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--radius-pill);
  color: var(--color-blue);
  transition: transform 0.2s ease;
}

.news__arrow svg {
  width: 16px;
  height: 16px;
}

.news__link:hover .news__arrow {
  transform: translateX(3px);
}

.news__more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  background: transparent;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: var(--radius-pill);
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.news__more:hover {
  background: var(--color-blue);
  color: #fff;
}

.news__more-arrow {
  font-size: 18px;
  line-height: 0;
}

/* News SP */
@media (max-width: 834px) {
  .news {
    padding: 60px 16px;
  }

  .news__link {
    grid-template-columns: 70px auto 1fr;
    grid-template-rows: auto auto;
    gap: 6px 12px;
    padding: 16px 0;
  }

  .news__thumb {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 70px;
    height: 56px;
  }
  .news__date { grid-column: 2; grid-row: 1; align-self: center; }
  .news__category { grid-column: 3; grid-row: 1; justify-self: start; align-self: center; }
  .news__title { grid-column: 2 / -1; grid-row: 2; }
  .news__arrow { display: none; }
}


/* ==========================================================================
   12. footer (3層構造)
   ========================================================================== */
.footer {
  font-family: "Noto Sans JP", sans-serif;
}

/* 1. Contact エリア */
.footer__contact {
  position: relative;
  overflow: hidden;
  padding: clamp(56px, 7vw, 90px) clamp(24px, 4vw, 60px);
  margin: clamp(20px, 3vw, 40px) clamp(14px, 2vw, 32px) clamp(40px, 5vw, 72px);
  border-radius: clamp(32px, 4vw, 56px);
  background-color: var(--color-blue);
  background-image: url("../images/haikei.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #fff;
  isolation: isolate;
}

.footer__contact::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(25, 97, 173, 0.82) 0%,
    rgba(40, 137, 197, 0.75) 100%
  );
  z-index: 1;
  pointer-events: none;
}

.footer__contact-inner {
  position: relative;
  z-index: 2;
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
}

.footer__contact-heading {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact-jp {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: #fff;
}

.footer__contact-en {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 6.5vw, 92px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}

.footer__contact-accent {
  color: var(--color-yellow);
}

.footer__contact-actions {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer__contact-action {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-decoration: none;
  min-height: 72px;
  transition: transform 0.2s ease, opacity 0.2s ease, box-shadow 0.2s ease;
}

.footer__contact-action:hover,
.footer__contact-action:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.footer__contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--color-yellow);
  flex-shrink: 0;
}

.footer__contact-icon svg {
  width: 100%;
  height: 100%;
}

.footer__contact-action--tel {
  background: #fff;
  color: var(--color-blue);
  min-height: 92px;
  padding: 14px 40px;
}

.footer__contact-action--tel:hover {
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.footer__contact-action--tel .footer__contact-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 2px;
}

.footer__contact-label {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-blue);
}

.footer__contact-tel {
  font-family: "Poppins", sans-serif;
  font-size: clamp(26px, 2.4vw, 34px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

.footer__contact-action--mail {
  background: var(--color-black);
  color: #fff;
  font-size: clamp(17px, 1.4vw, 20px);
}

.footer__contact-action--mail:hover {
  opacity: 0.85;
}

.footer__contact-action--entry {
  background: var(--color-blue);
  color: #fff;
  font-size: clamp(17px, 1.4vw, 20px);
  border: 1px solid rgba(255, 255, 255, 0.25);
}

.footer__contact-action--entry:hover {
  opacity: 0.9;
}

/* 2. 中部: ロゴ + ナビ */
.footer__middle {
  background: #eef3f7;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 60px);
  color: var(--color-blue);
}

.footer__middle-inner {
  max-width: var(--container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(48px, 8vw, 120px);
  align-items: center;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.footer__logo {
  width: clamp(90px, 9vw, 130px);
  height: clamp(90px, 9vw, 130px);
  object-fit: contain;
  display: block;
}

.footer__company {
  margin: 0;
  font-size: clamp(14px, 1.1vw, 17px);
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--color-blue);
  text-align: center;
}

.footer__nav {
  display: flex;
  justify-content: flex-end;
}

.footer__nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  column-gap: clamp(32px, 5vw, 80px);
  row-gap: 14px;
}

.footer__nav-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-blue);
  text-decoration: none;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  transition: opacity 0.2s ease;
}

.footer__nav-link::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 7px solid var(--color-blue);
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  flex-shrink: 0;
}

.footer__nav-link:hover {
  opacity: 0.7;
}

/* 3. コピーライト帯 */
.footer__copyright {
  background: linear-gradient(90deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  padding: 16px 24px;
  text-align: center;
  color: #fff;
}

.footer__copyright small {
  font-family: "Poppins", sans-serif;
  font-size: 12px;
  letter-spacing: 0.03em;
}

/* Footer SP */
@media (max-width: 834px) {
  .footer__contact {
    padding: 40px 24px;
    border-radius: 32px;
    margin: 16px 12px 40px;
  }

  .footer__contact-inner {
    grid-template-columns: 1fr;
    gap: 28px;
    text-align: center;
  }

  .footer__contact-heading {
    align-items: center;
  }

  .footer__contact-en {
    font-size: 48px;
  }

  .footer__contact-action {
    justify-content: flex-start;
    padding: 12px 24px;
    min-height: 72px;
  }

  .footer__contact-action--tel {
    min-height: 80px;
    padding: 12px 28px;
  }

  .footer__contact-tel {
    font-size: 22px;
  }

  .footer__contact-action--mail,
  .footer__contact-action--entry {
    font-size: 15px;
  }

  .footer__middle {
    padding: 40px 24px;
  }

  .footer__middle-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__nav {
    justify-content: center;
  }

  .footer__nav-list {
    grid-template-columns: 1fr;
    row-gap: 12px;
  }

  .footer__copyright {
    padding: 14px 16px;
  }

  .footer__copyright small {
    font-size: 10px;
  }
}


/* ==========================================================================
   14. page-header (下層ページ共通ヘッダー)
   - 再利用コンポーネント。以下を差し替えれば他ページに流用可:
       HTML: 小見出し / 大見出し (先頭1字は .page-header__large-accent)
             パンくずリスト / current page マーカー
       変数: --page-header-bg-image (hero 背景画像)
       変数: --page-header-bg-position (背景画像の配置、デフォルト right center)
   ========================================================================== */
.page-header {
  --page-header-radius: clamp(60px, 7vw, 100px);
  --page-header-bg-image: none;
  --page-header-bg-position: right center;
  position: relative;
  z-index: 1100;                  /* main より前面でドロップダウンが見える */
  font-family: "Noto Sans JP", sans-serif;
  /* isolation: isolate は外す。外すと z-index が親 (body) 側に効く */
}

/* --- Hero (青グラデ + 背景画像 + ナビ + タイトル) --- */
.page-header__hero {
  position: relative;
  /* overflow: hidden は外す (submenu がはみ出せるように)。
     bg 画像の角丸クリップは .page-header__hero-bg 側で担当 */
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  border-radius: 0 0 var(--page-header-radius) var(--page-header-radius);
  color: #fff;
}

/* 右側に薄く重なる人物写真レイヤー */
.page-header__hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;              /* 角丸内にbg画像をクリップ */
  border-radius: inherit;        /* 親の角丸を継承 */
  background-image: var(--page-header-bg-image);
  background-size: cover;
  background-position: var(--page-header-bg-position);
  background-repeat: no-repeat;
  opacity: 0.32;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}

/* --- ナビバー --- */
.page-header__bar {
  position: relative;
  z-index: 2;
  height: 80px;
  padding: 0 clamp(16px, 3vw, 40px);
}

.page-header__bar-inner {
  display: flex;
  align-items: center;
  height: 100%;
  max-width: 1440px;
  margin: 0 auto;
  gap: 40px;
}

.page-header__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
  height: 50px;
  color: #fff;
  text-decoration: none;
}

.page-header__logo img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  flex-shrink: 0;
}

.page-header__logo-text {
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.02em;
  color: #fff;
  white-space: nowrap;
}

.page-header__nav {
  margin-left: auto;
}

.page-header__nav-list {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.5vw, 40px);
  margin: 0;
  padding: 0;
  list-style: none;
}

.page-header__nav-link {
  color: #fff;
  font-weight: 500;
  font-size: 15px;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease;
}

.page-header__nav-link:hover {
  opacity: 0.7;
}

.page-header__nav-link[aria-current="page"] {
  font-weight: 700;
}

/* --- PC: 子メニュー持ちの項目 (ドロップダウン) --- */
.page-header__nav-item--has-children {
  position: relative;
}

.page-header__nav-item--has-children > .page-header__nav-link::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  vertical-align: 2px;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
}

.page-header__submenu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(-6px);
  min-width: 240px;
  padding: 0;
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.18);
  list-style: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s var(--ease);
  z-index: 1200;
}

.page-header__nav-item--has-children:hover .page-header__submenu,
.page-header__nav-item--has-children:focus-within .page-header__submenu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}

.page-header__submenu > li {
  border-bottom: 1px solid #e8eaee;
}

.page-header__submenu > li:last-child {
  border-bottom: none;
}

.page-header__submenu-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  min-height: 44px;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.4;
  white-space: nowrap;
  text-decoration: none;
  transition: background 0.18s ease, color 0.18s ease;
}

.page-header__submenu-link::before {
  content: "";
  display: inline-block;
  width: 7px;
  height: 7px;
  border-top: 2px solid var(--color-blue);
  border-right: 2px solid var(--color-blue);
  transform: rotate(45deg);
  flex-shrink: 0;
  margin-left: 2px;
  transition: transform 0.18s ease;
}

.page-header__submenu-link[aria-current="page"] {
  background: rgba(25, 97, 173, 0.08);
  color: var(--color-blue);
  font-weight: 700;
}

.page-header__submenu-link:hover,
.page-header__submenu-link:focus-visible {
  background: rgba(25, 97, 173, 0.06);
  color: var(--color-blue);
  outline: none;
}

.page-header__submenu-link:hover::before,
.page-header__submenu-link:focus-visible::before {
  transform: rotate(45deg) translate(2px, -2px);
}

.page-header__buttons {
  display: flex;
  align-items: center;
  gap: 10px;
}

.page-header__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 44px;
  padding: 0 22px;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.page-header__btn:hover {
  opacity: 0.85;
  transform: translateY(-1px);
}

.page-header__btn--recruit {
  background: rgba(0, 0, 0, 0.22);
  color: #fff;
}

.page-header__btn--contact {
  background: var(--color-yellow);
  color: var(--color-blue);
}

/* Hamburger (SP 用、初期は非表示) */
.page-header__hamburger {
  display: none;
  position: relative;
  width: 40px;
  height: 36px;
  flex-direction: column;
  justify-content: space-between;
  margin-left: auto;
  z-index: 1100;
}

.page-header__hamburger-bar {
  display: block;
  width: 40px;
  height: 4px;
  background: #fff;
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.2s var(--ease);
}

/* Hamburger → × on open */
.page-header.is-menu-open .page-header__hamburger-bar:nth-child(1) {
  transform: translateY(16px) rotate(45deg);
}
.page-header.is-menu-open .page-header__hamburger-bar:nth-child(2) {
  opacity: 0;
}
.page-header.is-menu-open .page-header__hamburger-bar:nth-child(3) {
  transform: translateY(-16px) rotate(-45deg);
}

/* --- タイトルブロック --- */
.page-header__content {
  position: relative;
  z-index: 1;
  isolation: isolate;
  max-width: 1440px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 60px) clamp(40px, 6vw, 88px);
}

.page-header__content::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: url("../images/page-header_haikei.jpg") center center / cover no-repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}

.page-header__small {
  margin: 0 0 clamp(6px, 0.8vw, 12px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.2vw, 18px);
  letter-spacing: 0.08em;
  color: #fff;
}

.page-header__large {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(48px, 8vw, 112px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}

.page-header__large-accent {
  color: var(--color-yellow);
}

/* --- パンくず (heroの下、薄いグレー背景) --- */
.page-header__breadcrumb {
  padding: 14px clamp(16px, 3vw, 60px);
  background: #f3f5f8;
}

.page-header__breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 12px;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  font-family: "Poppins", sans-serif;
  font-size: 13px;
  letter-spacing: 0.04em;
  color: var(--color-text-sub);
}

.page-header__breadcrumb-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.page-header__breadcrumb-item:not(:first-child)::before {
  content: ">";
  color: var(--color-blue);
  font-weight: 700;
  opacity: 0.5;
}

.page-header__breadcrumb-item a {
  color: var(--color-blue);
  font-weight: 500;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

.page-header__breadcrumb-item a:hover {
  opacity: 0.7;
}

.page-header__breadcrumb-item[aria-current="page"] {
  color: var(--color-blue);
  font-weight: 700;
}

/* --- Page Header Responsive --- */
@media (max-width: 1023px) {
  .page-header__bar-inner {
    gap: 20px;
  }
  .page-header__nav-list {
    gap: 20px;
  }
  .page-header__btn {
    min-width: 96px;
    font-size: 13px;
    padding: 0 16px;
  }
}

@media (max-width: 834px) {
  .page-header__bar {
    height: 70px;
    padding: 0 16px;
  }
  .page-header__logo-text,
  .page-header__nav,
  .page-header__buttons {
    display: none;
  }
  .page-header__hamburger {
    display: flex;
  }
  .page-header__content {
    padding: 32px 20px 56px;
  }
  .page-header__breadcrumb {
    padding: 10px 16px;
  }
  .page-header__breadcrumb-list {
    font-size: 11px;
  }
}

/* ==========================================================================
   15. about-page (下層ページ本体)
   ========================================================================== */
.about-intro,
.about-info,
.about-cta {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
}

.about-intro__inner,
.about-info__inner,
.about-cta__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.about-intro__lead {
  margin: 24px 0 0;
  font-size: clamp(15px, 1.05vw, 17px);
  line-height: 2;
  color: var(--color-text);
  max-width: 860px;
}

/* 会社情報テーブル */
.company-info {
  margin: 0;
  border-top: 1px solid var(--color-border);
}

.company-info__row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 24px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--color-border);
}

.company-info__row dt {
  margin: 0;
  font-weight: 700;
  color: var(--color-blue);
  font-size: 15px;
}

.company-info__row dd {
  margin: 0;
  color: var(--color-text);
  font-size: 15px;
  line-height: 1.8;
}

@media (max-width: 834px) {
  .company-info__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 4px;
  }
  .company-info__row dt {
    font-size: 13px;
  }
  .company-info__row dd {
    font-size: 14px;
  }
}

/* CTA ボタン (代表挨拶へ) */
.about-cta {
  text-align: center;
}

.about-cta__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 44px;
  min-width: 280px;
  min-height: 60px;
  background: var(--color-blue);
  color: #fff;
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.about-cta__link:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(25, 97, 173, 0.3);
}

.about-cta__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: var(--radius-pill);
  background: #fff;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.about-cta__arrow svg {
  width: 18px;
  height: 18px;
}

.about-cta__link:hover .about-cta__arrow {
  transform: translateX(4px);
}


/* ==========================================================================
   16. sub-nav (下層ページ共通サブナビゲーション)
   - ul/li + aria-current="page" だけでアクティブ判定
   - PC: flex 横並び (wrap OK)
   - SP: 横スクロール + scroll-snap (スワイプ式)
   ========================================================================== */
.sub-nav {
  --sub-nav-bg-from: var(--color-blue);
  --sub-nav-bg-to: var(--color-blue-light);
  --sub-nav-active-bg: #0c4a8b;
  padding: clamp(24px, 3vw, 40px) clamp(16px, 3vw, 60px);
  background: #fff;
}

.sub-nav__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  max-width: 1440px;
  margin: 0 auto;
  padding: 0;
  list-style: none;
}

.sub-nav__item {
  flex: 0 1 auto;
}

.sub-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 52px;
  min-width: 220px;
  padding: 10px 18px 10px 28px;
  background: linear-gradient(135deg, var(--sub-nav-bg-from) 0%, var(--sub-nav-bg-to) 100%);
  color: #fff;
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}

.sub-nav__link:hover,
.sub-nav__link:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(25, 97, 173, 0.3);
  filter: brightness(1.08);
  outline: none;
}

/* アクティブページ: 少し濃い青 + 内側の白ライン */
.sub-nav__link[aria-current="page"] {
  background: var(--sub-nav-active-bg);
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.28);
  pointer-events: none;
}

.sub-nav__link[aria-current="page"]:hover {
  transform: none;
  filter: none;
}

.sub-nav__label {
  flex: 1;
  text-align: left;
  white-space: nowrap;
}

/* 右端の矢印 (細い白円 + 白矢印) */
.sub-nav__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.55);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.sub-nav__arrow svg {
  width: 14px;
  height: 14px;
}

.sub-nav__link:hover .sub-nav__arrow {
  transform: translateX(3px);
}

/* SP: 2列 grid 表示 (複数行に自動折り返し) */
@media (max-width: 834px) {
  .sub-nav {
    padding: 20px 16px;
  }
  .sub-nav__list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    padding: 0;
    justify-content: stretch;
  }
  .sub-nav__item {
    display: flex;
  }
  .sub-nav__link {
    width: 100%;
    min-width: 0;
    min-height: 48px;
    padding: 8px 10px 8px 16px;
    font-size: 13px;
    gap: 8px;
  }
  .sub-nav__label {
    white-space: normal;        /* 長いラベルは2行折り返し許容 */
    line-height: 1.3;
  }
  .sub-nav__arrow {
    width: 24px;
    height: 24px;
  }
  .sub-nav__arrow svg {
    width: 12px;
    height: 12px;
  }
}


/* ==========================================================================
   17. scroll-reveal (.js-scroll-fade-up) - 下層ページ共通アニメーション
   - Intersection Observer でビューポート進入時に .is-visible 付与
   - delay-1 / delay-2 / delay-3 で順次表示も可能
   ========================================================================== */
.js-scroll-fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 800ms var(--ease-out-expo),
    transform 800ms var(--ease-out-expo);
  will-change: opacity, transform;
}

.js-scroll-fade-up.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.js-scroll-fade-up.delay-1 { transition-delay: 100ms; }
.js-scroll-fade-up.delay-2 { transition-delay: 200ms; }
.js-scroll-fade-up.delay-3 { transition-delay: 300ms; }


/* ==========================================================================
   18. company-page (会社概要 本文)
   - 白背景 + 青アクセントのコーポレート本文
   ========================================================================== */
.company-page {
  --company-line: #1961AD;
  --company-accent: #1961AD;
  --company-text: #1a1a1a;
  --company-sub: #666;
  --company-panel: #eaf3fb;
  background: #ffffff;
  color: var(--company-text);
  padding: clamp(48px, 6vw, 88px) clamp(18px, 4vw, 40px);
}

.company-page__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.company-page__section + .company-page__section {
  margin-top: clamp(36px, 4.5vw, 64px);
}

/* 共通バー見出し (青い角丸バー / 左寄せ) */
.company-bar {
  display: inline-block;
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  padding: clamp(12px, 1.4vw, 16px) clamp(32px, 3vw, 44px) clamp(12px, 1.4vw, 16px) clamp(20px, 2vw, 28px);
  background: var(--company-accent);
  color: #fff;
  border-radius: 4px;
  font-size: clamp(16px, 1.25vw, 20px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 50%, calc(100% - 12px) 100%, 0 100%);
}

/* 1. 会社情報テーブル */
.company-table {
  margin: 0 0 clamp(40px, 5vw, 64px);
  padding: 0;
  border-top: 1px solid var(--company-line);
}

.company-table__row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: start;
  padding: clamp(18px, 2.2vw, 28px) clamp(8px, 1.5vw, 16px);
  border-bottom: 1px solid var(--company-line);
}

.company-table__label {
  margin: 0;
  color: var(--company-accent);
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
  letter-spacing: 0.04em;
}

.company-table__value {
  margin: 0;
  color: var(--company-text);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2;
}

.company-table__pairs {
  display: grid;
  grid-template-columns: max-content 1fr;
  column-gap: clamp(16px, 2vw, 32px);
  row-gap: 4px;
  margin: 0;
}

.company-table__pairs dt {
  margin: 0;
  font-weight: 400;
  color: var(--company-sub);
}

.company-table__pairs dd {
  margin: 0;
}

.company-table__list {
  margin: 0;
  padding-left: 1.2em;
  list-style: disc;
}

.company-table__list li {
  line-height: 2;
}

/* 本社所在地 下の Google マップ導線ボタン */
.company-table__address {
  margin: 0;
}

.company-map-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 12px;
  padding: 10px 20px;
  background: #fff;
  border: 1.5px solid var(--company-accent);
  border-radius: 4px;
  color: var(--company-accent);
  font-size: clamp(13px, 0.95vw, 15px);
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.2;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.company-map-link:hover,
.company-map-link:focus-visible {
  background: var(--company-accent);
  color: #fff;
  outline: none;
}

.company-map-link__icon,
.company-map-link__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: currentColor;
}

.company-map-link__icon svg {
  width: 18px;
  height: 18px;
}

.company-map-link__arrow svg {
  width: 14px;
  height: 14px;
}

/* 2. 警備業者認定証画像 */
.company-license {
  margin: clamp(32px, 4vw, 56px) 0;
  text-align: center;
}

.company-license__image {
  display: inline-block;
  max-width: 640px;
  width: 100%;
  height: auto;
  background: #fff;
  padding: 0;
  border: 1px solid #d7d7d7;
  border-radius: 2px;
  box-shadow: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

/* リンク全体をブロック化してホバー効果を付与 */
.company-license__link {
  display: inline-block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
}
.company-license__link:hover .company-license__image,
.company-license__link:focus-visible .company-license__image {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.12);
}

/* ダウンロード説明キャプション (画像の下に必ず改行されるよう block 化) */
.company-license__caption {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  width: fit-content;
  max-width: 100%;
  margin: 12px auto 0;
  padding: 6px 14px;
  font-size: 13px;
  font-weight: 500;
  color: var(--color-blue);
  background: rgba(25, 97, 173, 0.06);
  border-radius: 999px;
  line-height: 1.4;
}
.company-license__caption-icon {
  display: inline-flex;
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.company-license__caption-icon svg {
  width: 100%;
  height: 100%;
}

@media (max-width: 768px) {
  .company-license__caption {
    font-size: 12px;
    padding: 5px 12px;
  }
}

/* 3. 従業員数パネル */
.company-staff {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: baseline;
  gap: 10px 24px;
  max-width: 100%;
  margin: 0 0 clamp(24px, 3vw, 40px);
  padding: clamp(28px, 3.5vw, 44px) 24px;
  background: var(--company-panel);
  color: var(--company-text);
  border-radius: 4px;
  text-align: center;
}

.company-staff__label {
  color: var(--company-text);
  font-weight: 700;
  font-size: clamp(18px, 1.5vw, 24px);
  letter-spacing: 0.06em;
}

.company-staff__number {
  color: var(--company-text);
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.4vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.company-staff__unit {
  margin-left: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 0.55em;
  font-weight: 700;
}

.company-staff__note {
  color: var(--company-text);
  font-size: clamp(13px, 1vw, 16px);
  letter-spacing: 0.02em;
}

/* 4. 損害の賠償イントロ */
.company-intro {
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  color: var(--company-text);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2;
}

/* 資格一覧 / 損害賠償 一覧 (共通フォーマット) */
.company-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.company-list__row {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: clamp(20px, 3vw, 56px);
  align-items: center;
  padding: clamp(14px, 1.8vw, 20px) clamp(8px, 1.5vw, 16px);
  border-bottom: 1px solid var(--company-line);
}

.company-list__label {
  color: var(--company-accent);
  font-weight: 700;
  font-size: clamp(14px, 1vw, 16px);
  letter-spacing: 0.04em;
}

.company-list__value {
  color: var(--company-text);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.8;
}

.company-list__grades {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 8px 40px;
  color: var(--company-text);
  font-size: clamp(14px, 1vw, 16px);
}

.company-list__grade {
  display: inline-flex;
  align-items: baseline;
  gap: 12px;
  min-width: 96px;
}

.company-list__grade em {
  font-style: normal;
  font-weight: 400;
  color: var(--company-text);
}

/* 5. PDF 導線ボタン */
.company-pdf {
  margin: clamp(36px, 4.5vw, 64px) 0 0;
  text-align: center;
}

.company-pdf__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 16px 36px;
  min-width: 320px;
  min-height: 60px;
  background: #fff;
  border: 1.5px solid var(--company-accent);
  border-radius: 4px;
  color: var(--company-accent);
  font-size: clamp(14px, 1vw, 16px);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.company-pdf__link:hover,
.company-pdf__link:focus-visible {
  background: var(--company-accent);
  color: #fff;
  outline: none;
}

.company-pdf__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  color: currentColor;
  flex-shrink: 0;
  background: transparent;
  border-radius: 0;
}

.company-pdf__arrow svg {
  width: 20px;
  height: 20px;
}

/* タブレット */
@media (max-width: 1024px) {
  .company-table__row {
    grid-template-columns: 200px 1fr;
  }
  .company-list__row {
    grid-template-columns: 260px 1fr;
  }
}

/* スマホ: 縦積み */
@media (max-width: 720px) {
  .company-page {
    padding: 48px 18px 64px;
  }
  .company-table__row,
  .company-list__row {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 16px 4px;
  }
  .company-table__label,
  .company-list__label {
    font-size: 14px;
  }
  .company-table__value,
  .company-list__value {
    font-size: 14px;
  }
  .company-table__pairs {
    grid-template-columns: max-content 1fr;
    column-gap: 12px;
    row-gap: 2px;
  }
  .company-table__pairs dt {
    color: var(--company-sub);
    font-size: 13px;
  }
  .company-bar {
    font-size: 16px;
    padding: 10px 32px 10px 18px;
  }
  .company-staff {
    padding: 24px 16px;
    gap: 6px 16px;
  }
  .company-staff__number {
    font-size: 36px;
  }
  .company-list__grades {
    gap: 6px 28px;
  }
  .company-pdf__link {
    width: 100%;
    min-width: 0;
    padding: 14px 18px;
  }
  .company-map-link {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
}


/* ==========================================================================
   19. greeting-page (代表挨拶 本文)
   - 右端まで広がる青いメッセージパネル
   ========================================================================== */
.greeting {
  --greeting-accent: #1961AD;
  --greeting-accent-light: #2889C5;
  background: #ffffff;
  padding: clamp(48px, 6vw, 88px) 0 clamp(56px, 7vw, 104px);
  overflow: hidden;
}

/* 右端まで伸びる青パネル本体 */
.greeting__panel {
  position: relative;
  margin-left: clamp(20px, 5vw, 80px);
  padding: clamp(40px, 5vw, 80px) clamp(28px, 4vw, 72px);
  background: linear-gradient(135deg, var(--greeting-accent) 0%, var(--greeting-accent-light) 100%);
  border-radius: clamp(32px, 5vw, 64px) 0 0 clamp(32px, 5vw, 64px);
  color: #fff;
  overflow: hidden;
  isolation: isolate;
}

/* 薄く重なる背景画像（街並みなどの写真） */
.greeting__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/haikei.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.greeting__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin-left: auto;
  margin-right: auto;
}

.greeting__eyebrow {
  margin: 0 0 clamp(20px, 2.5vw, 36px);
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 700;
  letter-spacing: 0.2em;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
}

.greeting__body p {
  margin: 0 0 clamp(18px, 2vw, 28px);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2.1;
  letter-spacing: 0.02em;
  color: #fff;
}

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

.greeting__sign {
  margin: clamp(28px, 3.5vw, 48px) 0 0;
  text-align: right;
  color: #fff;
}

.greeting__sign-role {
  display: inline-block;
  margin-right: clamp(12px, 1.5vw, 20px);
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.08em;
  vertical-align: middle;
}

.greeting__sign-name {
  display: inline-block;
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 700;
  letter-spacing: 0.2em;
  vertical-align: middle;
}

/* タブレット */
@media (max-width: 1024px) {
  .greeting__panel {
    padding: clamp(36px, 5vw, 56px) clamp(24px, 4vw, 48px);
  }
}

/* スマホ */
@media (max-width: 720px) {
  .greeting {
    padding: 40px 0 56px;
  }
  .greeting__panel {
    margin-left: 14px;
    padding: 32px 22px;
    border-radius: 24px 0 0 24px;
  }
  .greeting__bg {
    opacity: 0.1;
  }
  .greeting__body p {
    font-size: 14px;
    line-height: 2;
    margin-bottom: 16px;
  }
  .greeting__sign {
    margin-top: 24px;
    text-align: right;
  }
  .greeting__sign-role {
    display: block;
    margin: 0 0 4px;
  }
  .greeting__sign-name {
    font-size: 20px;
  }
}


/* ==========================================================================
   20. philosophy-page (社訓・理念・沿革)
   - 上: 青背景の理念・社訓 / 下: 白背景の沿革タイムライン
   ========================================================================== */

/* ---------- 理念・社訓 ---------- */
.philosophy {
  position: relative;
  background: linear-gradient(135deg, #1961AD 0%, #2889C5 100%);
  color: #fff;
  padding: clamp(56px, 7vw, 104px) clamp(20px, 4vw, 60px);
  overflow: hidden;
  isolation: isolate;
}

.philosophy__bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/haikei.png');
  background-size: cover;
  background-position: center;
  opacity: 0.18;
  mix-blend-mode: soft-light;
  pointer-events: none;
  z-index: 0;
}

.philosophy__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

.philosophy__block + .philosophy__block {
  margin-top: clamp(32px, 4vw, 56px);
}

.philosophy__heading {
  display: block;
  margin: 0 0 clamp(18px, 2.2vw, 28px);
  padding: clamp(12px, 1.4vw, 18px) clamp(28px, 3vw, 40px);
  background: #fff;
  color: #1961AD;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.08em;
  border-radius: 2px;
}

.philosophy__text {
  margin: 0;
  padding: 0 clamp(4px, 1vw, 16px);
  font-size: clamp(14px, 1vw, 16px);
  line-height: 2.1;
  color: #fff;
  letter-spacing: 0.02em;
}

.philosophy__motto {
  margin: 0;
  padding: 0 clamp(4px, 1vw, 16px);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 400;
  letter-spacing: 0.12em;
  color: #fff;
  line-height: 1.4;
}

/* ---------- 沿革 COMPANY HISTORY ---------- */
.history {
  background: #ffffff;
  color: #1a1a1a;
  padding: clamp(56px, 7vw, 104px) clamp(20px, 4vw, 60px);
}

.history__inner {
  max-width: 960px;
  margin: 0 auto;
}

/* ============================================================
   共通見出し: section-head
   - philosophy 沿革, strength 契約先, recruit 福利厚生 等で共通利用
   ============================================================ */
.section-head {
  position: relative;
  margin-bottom: clamp(28px, 3.5vw, 48px);
}

.section-head__eyebrow {
  margin: 0 0 6px;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  color: #1a1a1a;
  letter-spacing: 0.08em;
}

.section-head__title {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  margin: 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-size: clamp(32px, 5.4vw, 56px);
  font-weight: 700;
  color: #1961AD;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

.section-head__title-text {
  display: inline-flex;
  align-items: baseline;
}

.section-head__title-accent {
  color: #FFE100;
}

.section-head__title-line {
  flex: 1;
  height: 3px;
  background: #1961AD;
  border-radius: 2px;
}

/* Timeline */
.history__timeline {
  list-style: none;
  margin: 0;
  padding: 0;
  position: relative;
}

.history__item {
  display: grid;
  grid-template-columns: 140px 40px 1fr;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  position: relative;
  padding: clamp(14px, 1.6vw, 20px) 0;
  border-bottom: 1px solid #1961AD;
}

.history__item:first-child {
  border-top: 1px solid #1961AD;
}

/* 縦の罫線 (各行に描画し、最初はドット中心から下半分、最後は上半分だけ / 結果的に先頭ドット〜末尾ドットの中心だけを結ぶ) */
.history__item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(140px + clamp(12px, 2vw, 24px) + 20px);
  width: 2px;
  background: #1961AD;
  transform: translateX(-50%);
  pointer-events: none;
  z-index: 0;
}

.history__item:first-child::before {
  top: 50%;
}

.history__item:last-child::before {
  bottom: 50%;
}

.history__year {
  color: #1961AD;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.04em;
}

.history__dot {
  position: relative;
  display: block;
  width: 14px;
  height: 14px;
  margin: 0 auto;
  background: #1961AD;
  border-radius: 50%;
  justify-self: center;
  z-index: 1;
}

.history__event {
  color: #1a1a1a;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.7;
  letter-spacing: 0.02em;
}

/* タブレット */
@media (max-width: 1024px) {
  .history__item {
    grid-template-columns: 120px 32px 1fr;
    gap: 16px;
  }
  .history__item::before {
    left: calc(120px + 16px + 16px);
  }
}

/* スマホ */
@media (max-width: 720px) {
  .philosophy {
    padding: 48px 18px 56px;
  }
  .philosophy__bg {
    opacity: 0.12;
  }
  .philosophy__heading {
    font-size: 14px;
    padding: 10px 20px;
  }
  .philosophy__text {
    font-size: 13px;
    line-height: 2;
  }
  .philosophy__motto {
    font-size: 28px;
    letter-spacing: 0.08em;
  }

  .history {
    padding: 48px 18px 56px;
  }
  .section-head__title {
    font-size: 28px;
    gap: 12px;
  }
  .section-head__title-line {
    height: 2px;
  }
}

@media (max-width: 480px) {
  .section-head__title {
    font-size: 24px;
  }
}

@media (max-width: 834px) {
  .history__item {
    grid-template-columns: 86px 24px 1fr;
    gap: 10px;
    padding: 12px 0;
  }
  .history__item::before {
    left: calc(86px + 10px + 12px);
  }
  .history__year {
    font-size: 12px;
  }
  .history__dot {
    width: 10px;
    height: 10px;
  }
  .history__event {
    font-size: 13px;
    line-height: 1.6;
  }
}


/* ==========================================================================
   21. access-page (拠点紹介・アクセス)
   - 各拠点カード: 青見出しバー + 左情報 / 右Googleマップ
   ========================================================================== */
.access {
  background: #ffffff;
  color: #1a1a1a;
  padding: clamp(40px, 5vw, 72px) clamp(18px, 4vw, 40px);
}

.access__inner {
  max-width: 1040px;
  margin: 0 auto;
}

.access-card {
  margin: 0;
}

.access-card + .access-card {
  margin-top: clamp(28px, 3.5vw, 48px);
}

/* 青い見出しバー (拠点名) */
.access-card__bar {
  margin: 0 0 clamp(14px, 1.8vw, 22px);
  padding: clamp(10px, 1.2vw, 14px) clamp(16px, 2vw, 24px);
  background: linear-gradient(135deg, #1961AD 0%, #2889C5 100%);
  color: #fff;
  border-radius: 10px;
  font-size: clamp(15px, 1.1vw, 18px);
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.4;
}

/* 左情報 / 右マップ の2カラム */
.access-card__body {
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: clamp(18px, 2.6vw, 36px);
  align-items: stretch;
}

/* ----- 左: 情報ブロック ----- */
.access-card__info {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.access-card__list {
  margin: 0;
  padding: 0;
  border-top: 1px solid #d6e4f2;
}

.access-card__row {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 14px;
  align-items: baseline;
  padding: 10px 4px;
  border-bottom: 1px solid #d6e4f2;
}

.access-card__label {
  margin: 0;
  color: #1961AD;
  font-weight: 700;
  font-size: clamp(13px, 0.95vw, 15px);
  letter-spacing: 0.04em;
}

.access-card__value {
  margin: 0;
  color: #1a1a1a;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.7;
}

.access-card__value a {
  color: inherit;
  text-decoration: none;
}

.access-card__value a:hover {
  text-decoration: underline;
}

/* 最寄り駅・徒歩案内ボックス (薄いグレー) */
.access-card__access {
  list-style: none;
  margin: 0;
  padding: 14px 16px;
  background: #f2f4f6;
  border-radius: 2px;
}

.access-card__access li {
  position: relative;
  padding: 2px 0 2px 14px;
  color: #1a1a1a;
  font-size: clamp(12px, 0.9vw, 14px);
  line-height: 1.8;
}

.access-card__access li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.8em;
  width: 6px;
  height: 6px;
  background: #1961AD;
  border-radius: 50%;
}

/* ----- 右: マップ ----- */
.access-card__map {
  position: relative;
  min-height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #d6e4f2;
  background: #eef2f5;
}

.access-card__map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 200px;
  border: 0;
}

/* タブレット */
@media (max-width: 1024px) {
  .access-card__body {
    grid-template-columns: 1fr 300px;
  }
}

/* スマホ: 縦積み */
@media (max-width: 720px) {
  .access {
    padding: 32px 16px 48px;
  }
  .access-card__body {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .access-card__map {
    min-height: 220px;
  }
  .access-card__map iframe {
    min-height: 220px;
  }
  .access-card__row {
    grid-template-columns: 56px 1fr;
    gap: 10px;
    padding: 8px 2px;
  }
  .access-card__access {
    padding: 12px 14px;
  }
  .access-card__bar {
    font-size: 15px;
  }
}


/* ==========================================================================
   17. company-menu (/company/ 会社紹介メニュー : 4カード画像+青pill)
   - PC : 2列×2行 grid
   - SP : 1列縦積み
   - 各カード: 背景画像 + 右下にはみ出す青pillボタン
   ========================================================================== */
.company-menu {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background: #fff;
}

.company-menu__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.company-menu__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(24px, 3vw, 40px);
  row-gap: clamp(48px, 6vw, 72px);
}

.company-menu__item {
  display: flex;
}

.company-menu__card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 2 / 1;
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.company-menu__card:hover,
.company-menu__card:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.company-menu__image {
  position: absolute;
  inset: 0;
  display: block;
  border-radius: 20px;
  overflow: hidden;
  background-color: rgba(25, 97, 173, 0.12);   /* 画像未配置時のフォールバック */
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease, filter 0.3s ease;
}

.company-menu__card:hover .company-menu__image {
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.18);
  filter: brightness(1.04);
}

/* 青pillボタン (右下にはみ出す配置) */
.company-menu__btn {
  position: absolute;
  right: clamp(16px, 2.2vw, 32px);
  bottom: -20px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px 8px 10px 28px;
  background: var(--color-blue);
  color: #fff;
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 15px;
  line-height: 1.3;
  white-space: nowrap;
  min-width: 56%;
  max-width: calc(100% - 32px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.25);
  transition: transform 0.25s ease;
}

.company-menu__label {
  flex: 1;
  text-align: center;
}

.company-menu__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 9999px;
  background: #fff;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.company-menu__arrow svg {
  width: 14px;
  height: 14px;
}

.company-menu__card:hover .company-menu__arrow {
  transform: translateX(3px);
}

/* SP: 1列 */
@media (max-width: 834px) {
  .company-menu {
    padding: 48px 20px 72px;
  }

  .company-menu__list {
    grid-template-columns: 1fr;
    row-gap: 44px;
  }

  .company-menu__card {
    aspect-ratio: 16 / 9;    /* SP は少しワイド寄り */
  }

  .company-menu__image {
    border-radius: 16px;
  }

  .company-menu__btn {
    bottom: -16px;
    right: 14px;
    padding: 8px 8px 8px 22px;
    font-size: 14px;
    gap: 10px;
    min-width: 58%;
    max-width: calc(100% - 28px);
  }

  .company-menu__arrow {
    width: 28px;
    height: 28px;
  }
}


/* ==========================================================================
   18. service-list (/service/ 事業内容一覧 : 2列カード)
   - PC : 2列 grid (奇数件は最後が左寄せ)
   - SP : 1列縦積み
   - カード = 横長画像 + 青矢印付きタイトル + 説明文
   ========================================================================== */
.service-list-section {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background: #fff;
}

.service-list-section__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: clamp(24px, 4vw, 64px);
  row-gap: clamp(40px, 5vw, 64px);
}

.service-list__item {
  display: flex;
}

.service-list__link {
  display: block;
  width: 100%;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.service-list__link:hover,
.service-list__link:focus-visible {
  transform: translateY(-3px);
  outline: none;
}

.service-list__image {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: 14px;
  overflow: hidden;
  background-color: #eef3f7;        /* 画像未配置時のフォールバック */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, filter 0.25s ease;
}

.service-list__link:hover .service-list__image {
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.14);
  filter: brightness(1.04);
}

.service-list__title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: clamp(20px, 2vw, 28px) 0 clamp(10px, 1vw, 14px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.4vw, 20px);
  line-height: 1.4;
  color: var(--color-blue);
}

/* タイトル左の青丸+白矢印 */
.service-list__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  border-radius: 9999px;
  background: var(--color-blue);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service-list__arrow svg {
  width: 12px;
  height: 12px;
}

.service-list__link:hover .service-list__arrow {
  transform: translateX(3px);
}

.service-list__desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.9;
  color: #333;
}

/* SP: 1列 */
@media (max-width: 834px) {
  .service-list-section {
    padding: 48px 20px 72px;
  }

  .service-list {
    grid-template-columns: 1fr;
    row-gap: 36px;
  }

  .service-list__title {
    font-size: 17px;
    margin: 18px 0 10px;
  }

  .service-list__desc {
    font-size: 14px;
    line-height: 1.85;
  }
}

/* --- サービスリスト下の締めコピー --- */
.service-extra {
  margin-top: clamp(48px, 6vw, 80px);
  text-align: center;
}

.service-extra__title {
  margin: 0 0 clamp(14px, 1.5vw, 22px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 30px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

.service-extra__desc {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 2;
  color: #333;
}

@media (max-width: 834px) {
  .service-extra {
    margin-top: 40px;
  }

  .service-extra__title {
    font-size: 18px;
    line-height: 1.55;
  }

  .service-extra__desc {
    font-size: 13px;
    line-height: 1.9;
  }

  /* SP では <br> を無効化して自然折返しに */
  .service-extra__br {
    display: none;
  }
}


/* ==========================================================================
   19. service-hero (サービス詳細ページ専用ヒーロー)
   - .page-header__hero の中にネスト配置 (page-header__content の代替)
   - PC : 左テキスト + 右画像 の 2カラム
   - SP : 縦積み (テキスト → 画像)
   - 流用前提: タイトル / 英字 / 画像 を差し替えるだけで他サービスへ展開
   ========================================================================== */
.service-hero {
  position: relative;
  z-index: 1;                                  /* hero-bg(z:0) の上に */
}

.service-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: stretch;
  max-height: 450px;          /* 上限のみ制御。中身に応じて自然な高さ */
  max-width: 1440px;
  margin: 0 auto;
  overflow: hidden;           /* cover の overflow を隠す */
}

/* --- 左: テキスト --- */
.service-hero__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(8px, 1vw, 16px);
  padding: clamp(40px, 5vw, 72px) clamp(24px, 4vw, 60px) clamp(40px, 5vw, 72px) clamp(40px, 8vw, 140px);
}

.service-hero__title {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.25;
  letter-spacing: 0.04em;
  color: #fff;
}

/* 部分的に黄色にしたい文字を <span class="service-hero__title-accent"> で囲む */
.service-hero__title-accent {
  color: var(--color-yellow);
}

.service-hero__subtitle {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1.4vw, 18px);
  letter-spacing: 0.18em;
  color: #fff;
}

/* --- 右: 画像 --- */
.service-hero__image {
  align-self: stretch;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);     /* 画像未配置時のフォールバック */
}

/* 画像のラッパー: 角丸クリップを担当
   page-header__hero の角丸と同じ値で、画像がはみ出ないように */
.service-hero__image-inner {
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-bottom-right-radius: var(--page-header-radius, clamp(60px, 7vw, 100px));
}

.service-hero__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- SP : 縦積み (タイトル → 画像) --- */
@media (max-width: 834px) {
  /* grid を flex column に切替えて確実に縦積み。max-height も解除 */
  .service-hero__inner {
    display: flex;
    flex-direction: column;
    max-height: none;
  }

  .service-hero__content,
  .service-hero__image {
    width: 100%;                 /* 右に青余白を残さない */
  }

  .service-hero__content {
    padding: 32px 24px 24px;
    text-align: left;
  }

  .service-hero__title {
    font-size: clamp(28px, 7vw, 40px);
  }

  .service-hero__subtitle {
    font-size: 13px;
    letter-spacing: 0.15em;
  }

  .service-hero__image {
    aspect-ratio: 16 / 9;
    height: auto;
  }

  .service-hero__image-inner {
    border-bottom-left-radius: clamp(40px, 8vw, 70px);
    border-bottom-right-radius: clamp(40px, 8vw, 70px);
  }

  .service-hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
}


/* ==========================================================================
   20. service-detail-intro (サービス詳細ページ概要セクション)
   - 画面いっぱいに広がる薄い青背景
   - 下端の左右だけ大きな角丸 (上端は矩形)
   - 中央に見出し + 箇条書き
   ========================================================================== */
.service-detail-intro {
  background: #eef3f7;                              /* 薄いブルーグレー */
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  border-bottom-left-radius: clamp(40px, 5vw, 80px);
  border-bottom-right-radius: clamp(40px, 5vw, 80px);
}

.service-detail-intro__inner {
  max-width: 900px;
  margin: 0 auto;
}

.service-detail-intro__title {
  margin: 0 auto clamp(28px, 3vw, 48px);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.4vw, 28px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

.service-detail-intro__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.2vw, 16px);
  width: fit-content;                               /* 中央寄せしつつ左揃え */
  max-width: 100%;
}

.service-detail-intro__item {
  position: relative;
  padding-left: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  color: #333;
}

/* 青い丸ビュレット */
.service-detail-intro__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* 中央寄せプレーン本文 (リードテキスト) */
.service-detail-intro__text {
  margin: 0 auto;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
  color: #333;
}

/* SP */
@media (max-width: 834px) {
  .service-detail-intro {
    padding: 48px 20px 60px;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
  }

  .service-detail-intro__title {
    font-size: 18px;
    line-height: 1.55;
    margin-bottom: 24px;
  }

  .service-detail-intro__item {
    font-size: 14px;
    line-height: 1.75;
  }

  .service-detail-intro__item::before {
    width: 9px;
    height: 9px;
    top: 0.6em;
  }

  .service-detail-intro__text {
    font-size: 14px;
    line-height: 1.9;
    text-align: left;
  }
}

@media (max-width: 380px) {
  .service-detail-intro {
    padding: 40px 16px 56px;
    border-bottom-left-radius: 28px;
    border-bottom-right-radius: 28px;
  }

  .service-detail-intro__title {
    font-size: 16px;
  }
}


/* ==========================================================================
   21. service-detail-section (画像 + テキストの横並び 2段構成)
   - 白背景、コンテンツ幅 max 1100px センター寄せ
   - PC: 左画像 + 右テキスト
   - SP: 縦積み (画像 → テキスト)
   ========================================================================== */
.service-detail-section {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
}

.service-detail-section__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(48px, 6vw, 80px);
}

.service-detail-section__item {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
  align-items: center;
  gap: clamp(24px, 4vw, 56px);
}

/* --- 左: 画像 --- */
.service-detail-section__image {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: clamp(20px, 2vw, 28px);
  background: #eef3f7;                   /* 画像未配置時のフォールバック */
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.08);
}

.service-detail-section__image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* --- 右: テキスト --- */
.service-detail-section__content {
  display: flex;
  flex-direction: column;
}

.service-detail-section__title {
  margin: 0 0 clamp(14px, 1.6vw, 22px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--color-blue);
}

.service-detail-section__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.95;
  color: #333;
}

/* SP: 縦積み */
@media (max-width: 834px) {
  .service-detail-section {
    padding: 56px 20px 72px;
  }

  .service-detail-section__inner {
    gap: 48px;
  }

  .service-detail-section__item {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .service-detail-section__image {
    border-radius: 18px;
  }

  .service-detail-section__title {
    font-size: 19px;
    line-height: 1.55;
  }

  .service-detail-section__text {
    font-size: 14px;
    line-height: 1.95;
  }
}


/* ==========================================================================
   22. service-flow (警備までの流れ FLOW セクション)
   - 大きな青いグラデーション背景 + 薄い背景画像 + 大角丸
   - 中央に縦の点線、白い丸STEP + 説明文
   - 下部中央に黄色のCTAボタン
   ========================================================================== */
.service-flow {
  position: relative;
  margin: clamp(40px, 6vw, 80px) clamp(16px, 3vw, 40px);
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 60px) clamp(60px, 7vw, 100px);
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  border-radius: clamp(24px, 3vw, 40px);
  overflow: hidden;
  color: #fff;
  isolation: isolate;
}

/* 薄く敷く背景画像 (画像未配置でもグラデだけで成立) */
.service-flow__bg {
  position: absolute;
  inset: 0;
  background: url("../images/service/flow_haikei.png") center center / cover no-repeat;
  mix-blend-mode: luminosity;
  z-index: 0;
  pointer-events: none;
}

.service-flow__inner {
  position: relative;
  z-index: 1;
  max-width: 960px;
  margin: 0 auto;
}

/* --- ヘッダー (警備までの流れ / FLOW + 横線) --- */
.service-flow__header {
  display: flex;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: clamp(40px, 5vw, 64px);
}

.service-flow__heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  flex-shrink: 0;
}

.service-flow__small {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.06em;
  color: #fff;
}

.service-flow__title {
  margin: 0;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1;
  letter-spacing: 0.02em;
  color: #fff;
}

.service-flow__title-accent {
  color: var(--color-yellow);    /* 先頭 F だけ黄色 */
}

.service-flow__line {
  flex: 1;
  height: 1px;
  background: rgba(255, 255, 255, 0.55);
  align-self: flex-end;
  margin-bottom: 12px;
}

/* --- STEP リスト (縦点線 + 丸 + 説明文) --- */
.service-flow__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  position: relative;
  max-width: 760px;
}

/* 中央の縦点線: 最初のSTEP中心〜最後のSTEP中心 */
.service-flow__list::before {
  content: "";
  position: absolute;
  left: 65px;                       /* 130px circle の中心 */
  top: 89px;                        /* 24 padding + 65 半径 */
  bottom: 89px;
  border-left: 2px dashed rgba(255, 255, 255, 0.55);
  z-index: 0;
  pointer-events: none;
}

.service-flow__item {
  display: grid;
  grid-template-columns: 130px 1fr;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  padding: 24px 0;
  position: relative;
  z-index: 1;                       /* 点線より上 */
}

.service-flow__circle {
  width: 130px;
  height: 130px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--color-blue);
  flex-shrink: 0;
  padding: 8px;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.service-flow__step {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.05em;
  line-height: 1;
}

.service-flow__label {
  margin-top: 8px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 1.45;
  letter-spacing: 0.02em;
}

.service-flow__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1vw, 16px);
  line-height: 1.85;
  color: #fff;
}

/* --- CTA ボタン (黄色pill + 青丸矢印) --- */
.service-flow__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 5vw, 64px);
}

.service-flow__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 10px 10px 10px 56px;
  min-width: 320px;
  min-height: 64px;
  background: var(--color-yellow);
  color: var(--color-blue);
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 17px);
  text-decoration: none;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-flow__button:hover,
.service-flow__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.25);
  outline: none;
}

.service-flow__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.service-flow__button-arrow svg {
  width: 18px;
  height: 18px;
}

.service-flow__button:hover .service-flow__button-arrow {
  transform: translateX(4px);
}

/* --- SP --- */
@media (max-width: 834px) {
  .service-flow {
    margin: 32px 12px;
    padding: 36px 18px 56px;
    border-radius: 20px;
  }

  .service-flow__title {
    font-size: 36px;
  }

  .service-flow__small {
    font-size: 12px;
  }

  .service-flow__line {
    margin-bottom: 8px;
  }

  .service-flow__item {
    grid-template-columns: 100px 1fr;
    gap: 18px;
    padding: 16px 0;
  }

  .service-flow__list::before {
    left: 50px;                     /* 100px circle の中心 */
    top: 66px;                      /* 16 padding + 50 半径 */
    bottom: 66px;
  }

  .service-flow__circle {
    width: 100px;
    height: 100px;
    padding: 6px;
  }

  .service-flow__step {
    font-size: 11px;
  }

  .service-flow__label {
    font-size: 12px;
    margin-top: 5px;
    line-height: 1.4;
  }

  .service-flow__text {
    font-size: 13px;
    line-height: 1.85;
  }

  .service-flow__button {
    width: 100%;
    max-width: 320px;
    min-width: 0;
    padding: 10px 10px 10px 36px;
    font-size: 15px;
    gap: 16px;
  }

  .service-flow__button-arrow {
    width: 40px;
    height: 40px;
  }
}


/* ==========================================================================
   23. service-sub-nav (サービス詳細ページ末尾の他サービス導線)
   - PC: 3列×3行 grid / タブレット: 2列 / SP: 1列
   - 青ピル + 右端に細い丸+矢印
   - is-active / aria-current="page" で現在ページを強調
   ========================================================================== */
.service-sub-nav {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(16px, 3vw, 60px);
}

.service-sub-nav__list {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1100px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.5vw, 20px);
}

.service-sub-nav__item {
  display: flex;
}

.service-sub-nav__link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  min-height: 56px;
  padding: 10px 10px 10px 24px;
  background: linear-gradient(135deg, var(--color-blue) 0%, var(--color-blue-light) 100%);
  color: #fff;
  border-radius: 9999px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  line-height: 1.3;
  text-decoration: none;
  transition: transform 0.22s ease, box-shadow 0.22s ease, filter 0.22s ease;
}

.service-sub-nav__link:hover,
.service-sub-nav__link:focus-visible {
  filter: brightness(1.1);
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(25, 97, 173, 0.28);
  outline: none;
}

/* 現在ページ: 濃い青 + 内側白ライン + クリック無効 */
.service-sub-nav__link.is-active,
.service-sub-nav__link[aria-current="page"] {
  background: #0c4a8b;
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.3);
  pointer-events: none;
}

.service-sub-nav__link.is-active:hover,
.service-sub-nav__link[aria-current="page"]:hover {
  transform: none;
  filter: none;
}

.service-sub-nav__text {
  flex: 1;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 右端の細い丸+矢印 */
.service-sub-nav__arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 9999px;
  border: 1.5px solid rgba(255, 255, 255, 0.6);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.22s ease, border-color 0.22s ease;
}

.service-sub-nav__arrow svg {
  width: 12px;
  height: 12px;
}

.service-sub-nav__link:hover .service-sub-nav__arrow {
  transform: translateX(2px);
  border-color: #fff;
}

/* タブレット: 2列 */
@media (max-width: 1023px) {
  .service-sub-nav__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* SP: 1列 */
@media (max-width: 600px) {
  .service-sub-nav {
    padding: 40px 16px 56px;
  }

  .service-sub-nav__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-sub-nav__link {
    min-height: 52px;
    padding: 10px 10px 10px 20px;
    font-size: 14px;
  }

  .service-sub-nav__arrow {
    width: 26px;
    height: 26px;
  }
}


/* ==========================================================================
   13. motion-reduce (アニメーション抑制)
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
  .js-scroll-fade-up {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .js-fade {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .hero__slide {
    transition: opacity 300ms ease;
    transform: none;
  }

  .hero__copy-line,
  .hero__copy.is-in .hero__copy-line--1,
  .hero__copy.is-in .hero__copy-line--2 {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .hero__scroll-line::after {
    animation: none;
    display: none;
  }

  .contact__card,
  .contact__card:hover {
    transition: none;
    transform: none;
  }

  .contact__item,
  .contact.is-in .contact__item {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .recruit__copy-line,
  .recruit.is-in .recruit__copy-line--1,
  .recruit.is-in .recruit__copy-line--2,
  .recruit__card,
  .recruit.is-in .recruit__card {
    transform: none;
    opacity: 1;
    transition: none;
  }

  .recruit__cta,
  .recruit__cta-arrow,
  .recruit__card-link,
  .recruit__card-img img {
    transition: none;
  }

  /* 常時ふわっと浮上アニメも停止 */
  .recruit__cta {
    animation: none;
  }

  .service__card-link,
  .service__card-arrow,
  .service__photo img,
  .blog__cta,
  .news__link,
  .news__arrow {
    transition: none;
  }

  .service__card,
  .service.is-in .service__card {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .sub-nav__link,
  .sub-nav__arrow {
    transition: none;
  }
  .sub-nav__link:hover {
    transform: none;
    filter: none;
  }

  .company-menu__card,
  .company-menu__image,
  .company-menu__arrow,
  .company-menu__btn {
    transition: none;
  }
  .company-menu__card:hover {
    transform: none;
  }
  .company-menu__card:hover .company-menu__image {
    filter: none;
  }

  .service-list__link,
  .service-list__image,
  .service-list__arrow {
    transition: none;
  }
  .service-list__link:hover {
    transform: none;
  }
  .service-list__link:hover .service-list__image {
    filter: none;
  }
}


/* ==========================================================================
   ESCORT DETAIL (escort.html 専用)
   - 移送同行警備の詳細説明セクション
   - 青の角丸見出しバー + 本文 + 青丸ビュレット箇条書き
   - 下部に4枚の薄グレー背景カード
   ========================================================================== */
.escort-detail {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
}

.escort-detail__inner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 各ブロック (見出しバー + 本文 + 箇条書き) */
.escort-detail__block {
  margin-bottom: clamp(40px, 5vw, 64px);
}

/* 青角丸見出しバー */
.escort-detail__heading {
  margin: 0 0 clamp(20px, 2.4vw, 28px);
  padding: clamp(14px, 1.6vw, 20px) clamp(20px, 2vw, 28px);
  background: var(--color-blue);
  color: #fff;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* 本文 */
.escort-detail__text {
  margin: 0 0 clamp(16px, 1.8vw, 22px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.9;
  color: #222;
}

/* 箇条書きリスト */
.escort-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(8px, 1vw, 12px);
}

.escort-detail__item {
  position: relative;
  padding-left: 24px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  font-weight: 500;
  line-height: 1.7;
  color: #222;
}

/* 青い丸ビュレット */
.escort-detail__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* 4つの特徴カード - PCでは横並び4列 */
.escort-detail__cards {
  list-style: none;
  margin: clamp(40px, 5vw, 64px) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 1.6vw, 24px);
}

.escort-detail__card {
  background: #f3f4f6;
  border-radius: 8px;
  padding: clamp(20px, 2vw, 28px) clamp(16px, 1.6vw, 22px);
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.4vw, 18px);
}

.escort-detail__card-title {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(16px, 1.3vw, 18px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.escort-detail__card-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 0.95vw, 14px);
  line-height: 1.85;
  color: #333;
}

/* タブレット (1024px 以下) - 2列 */
@media (max-width: 1024px) {
  .escort-detail__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* SP (834px 以下) */
@media (max-width: 834px) {
  .escort-detail {
    padding: 56px 20px 64px;
  }

  .escort-detail__heading {
    font-size: 15px;
    padding: 12px 18px;
    border-radius: 8px;
  }

  .escort-detail__text {
    font-size: 14px;
    line-height: 1.85;
  }

  .escort-detail__item {
    font-size: 14px;
    padding-left: 22px;
  }

  .escort-detail__item::before {
    width: 9px;
    height: 9px;
    top: 0.6em;
  }

  .escort-detail__cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }

  .escort-detail__card {
    padding: 18px 14px;
    gap: 10px;
  }

  .escort-detail__card-title {
    font-size: 15px;
  }

  .escort-detail__card-text {
    font-size: 13px;
    line-height: 1.8;
  }
}

/* 小型スマホ (480px 以下) - 1列 */
@media (max-width: 480px) {
  .escort-detail__cards {
    grid-template-columns: 1fr;
  }
}


/* ==========================================================================
   ESCORT MESSAGE (escort.html 専用)
   - FLOW直下に置く、ご家族向けメッセージセクション
   - 中央寄せ太字リード文 + 担当者名
   ========================================================================== */
.escort-message {
  background: #fff;
  padding: clamp(48px, 6vw, 80px) clamp(24px, 4vw, 60px) clamp(56px, 7vw, 96px);
}

.escort-message__inner {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.escort-message__lead {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.4vw, 19px);
  line-height: 2;
  letter-spacing: 0.04em;
  color: #222;
}

.escort-message__staff {
  margin: clamp(28px, 3vw, 44px) 0 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.06em;
  color: #333;
}

@media (max-width: 834px) {
  .escort-message {
    padding: 48px 20px 56px;
  }

  .escort-message__lead {
    font-size: 14px;
    line-height: 1.95;
    text-align: left;
  }

  .escort-message__staff {
    font-size: 13px;
    margin-top: 28px;
  }
}

@media (max-width: 480px) {
  .escort-message__lead {
    font-size: 13.5px;
  }
}


/* ==========================================================================
   BODYGUARD DETAIL (bodyguard.html 専用)
   - service-detail-intro 直下のシンプルテキストブロック
   - 青の太字見出し + 黒の本文
   ========================================================================== */
.service-detail-appeal {
  background: #fff;
  padding: clamp(60px, 7vw, 90px) clamp(24px, 4vw, 60px);
}

.service-detail-appeal__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.service-detail-appeal__title {
  margin: 0 0 clamp(18px, 2vw, 26px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.service-detail-appeal__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 2;
  letter-spacing: 0.02em;
  color: #222;
}

@media (max-width: 834px) {
  .service-detail-appeal {
    padding: 48px 20px 56px;
  }

  .service-detail-appeal__title {
    font-size: 18px;
    margin-bottom: 16px;
  }

  .service-detail-appeal__text {
    font-size: 14px;
    line-height: 1.9;
  }
}

@media (max-width: 480px) {
  .service-detail-appeal__title {
    font-size: 17px;
  }

  .service-detail-appeal__text {
    font-size: 13.5px;
  }
}


/* ==========================================================================
   STRENGTH PAGE (strength/index.html 専用)
   - 4セクション構成: 見出しバー + 本文
   - 1段目: 画像左 + 本文右
   - 2段目: 本文左 + 画像右 (--reverse モディファイア)
   - 3段目: 中央配置の資格一覧ボックス + 本文
   - 4段目: 見出し + 本文のみ
   ========================================================================== */
.strength-page {
  background: #fff;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 60px);
}

.strength-section {
  max-width: 1100px;
  margin: 0 auto clamp(56px, 6vw, 88px);
}

.strength-section:last-child {
  margin-bottom: 0;
}

/* 青角丸見出しバー */
.strength-section__heading {
  margin: 0 0 clamp(24px, 2.8vw, 36px);
  padding: clamp(14px, 1.6vw, 20px) clamp(20px, 2vw, 28px);
  background: var(--color-blue);
  color: #fff;
  border-radius: 10px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

/* 画像 + 本文の横並び */
.strength-section__body {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.4fr);
  gap: clamp(24px, 3vw, 48px);
  align-items: start;
}

/* --reverse: 画像右、本文左 */
.strength-section__body--reverse {
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
}

.strength-section__body--reverse .strength-section__image {
  grid-column: 2;
  grid-row: 1;
}

.strength-section__body--reverse .strength-section__content {
  grid-column: 1;
  grid-row: 1;
}

/* 画像 (角丸 + 切り抜き) */
.strength-section__image {
  border-radius: 12px;
  overflow: hidden;
}

.strength-section__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* 本文ブロック (複数 <p> を縦に並べる) */
.strength-section__content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.5vw, 22px);
}

.strength-section__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 2;
  letter-spacing: 0.02em;
  color: #222;
}

/* 資格一覧ボックス (中央配置) */
.strength-qualifications {
  max-width: 880px;
  margin: 0 auto clamp(32px, 3.5vw, 52px);
  padding: clamp(28px, 3vw, 44px) clamp(32px, 3.6vw, 56px);
  background: #eef2f7;
  border-radius: 12px;
}

.strength-qualifications__title {
  margin: 0 0 clamp(18px, 1.8vw, 26px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(17px, 1.5vw, 20px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.strength-qualifications__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(10px, 1.2vw, 14px) clamp(24px, 2.4vw, 40px);
}

.strength-qualifications__item {
  position: relative;
  padding-left: 26px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.6;
  color: #222;
}

/* 青い丸ビュレット */
.strength-qualifications__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.5em;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--color-blue);
}

/* タブレット・SP (834px 以下) */
@media (max-width: 834px) {
  .strength-page {
    padding: 48px 20px 64px;
  }

  .strength-section {
    margin-bottom: 56px;
  }

  /* 横並びを縦積みに (画像→本文 の順) */
  .strength-section__body,
  .strength-section__body--reverse {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .strength-section__body--reverse .strength-section__image,
  .strength-section__body--reverse .strength-section__content {
    grid-column: 1;
    grid-row: auto;
  }

  .strength-section__heading {
    font-size: 15px;
    padding: 12px 18px;
    border-radius: 8px;
    margin-bottom: 20px;
  }

  .strength-section__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .strength-qualifications {
    padding: 24px 24px;
    border-radius: 10px;
  }

  .strength-qualifications__title {
    font-size: 16px;
    margin-bottom: 14px;
  }

  .strength-qualifications__list {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .strength-qualifications__item {
    font-size: 15px;
    padding-left: 24px;
  }

  .strength-qualifications__item::before {
    width: 10px;
    height: 10px;
  }
}

@media (max-width: 480px) {
  .strength-section__heading {
    font-size: 14.5px;
    padding: 11px 16px;
  }

  .strength-section__text {
    font-size: 13.5px;
    line-height: 1.85;
  }

  .strength-qualifications__item {
    font-size: 14.5px;
  }
}


/* ==========================================================================
   STRENGTH PARTNER (主な契約先 / BUSINESS PARTNER)
   - 見出しは共通の section-head 系を流用
   - 2列グリッド + 薄グレー背景の行アイテム
   ========================================================================== */
.strength-partner {
  max-width: 1100px;
  margin: 0 auto;
}

/* 見出しブロックは共通の section-head と統合済み (上部の共有ルール参照) */

/* 契約先リスト (PC: 2列) */
.strength-partner__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 12px) clamp(16px, 1.6vw, 28px);
}

.strength-partner__item {
  background: #eef2f7;
  border-radius: 4px;
  padding: clamp(14px, 1.4vw, 18px) clamp(18px, 1.8vw, 28px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  color: #222;
}

/* タブレット・SP (見出し関連は section-head 共有ルールで対応) */
@media (max-width: 834px) {
  .strength-partner__list {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .strength-partner__item {
    font-size: 14px;
    padding: 12px 18px;
  }
}

@media (max-width: 480px) {
  .strength-partner__item {
    font-size: 13.5px;
  }
}


/* ==========================================================================
   RECRUIT HEADER (recruit/index.html 専用)
   - .page-header__content に追加付与する recruit 専用クラス
   - 共通の ::before (width:100vw + translateX(-50%)) の仕組みをそのまま流用し、
     背景画像 URL だけ recruit-header.png に差し替える
   - .recruit-header 本体には overflow:hidden を付けない (100vw が切れるため)
   ========================================================================== */

/* 共通の ::before を「同じ構造のまま画像だけ差し替え」で上書き
   ※ .page-header__content.recruit-header で specificity を上げ、確実に勝たせる */
.page-header__content.recruit-header::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 100vw;
  transform: translateX(-50%);
  background: url("../images/recruit/recruit-header.png") center center / cover no-repeat;
  opacity: 0.15;
  z-index: -1;
  pointer-events: none;
}


/* ==========================================================================
   RECRUIT MESSAGE (recruit/index.html 採用メッセージ + CTA)
   - 白背景・中央寄せ
   - 青の見出し / 黒の本文 / 黄色の大型 CTA ボタン
   ========================================================================== */
.recruit-message {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
  text-align: center;
}

.recruit-message__inner {
  max-width: 720px;
  margin: 0 auto;
}

.recruit-message__title {
  margin: 0 0 clamp(20px, 2.4vw, 32px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.8vw, 32px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.recruit-message__text {
  margin: 0 0 clamp(28px, 3.5vw, 48px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 2;
  color: #222;
}

/* CTA ボタン (黄グラデ + 影 + 角丸) */
.recruit-message__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(420px, 100%);
  padding: 18px 18px 18px 28px;
  background: linear-gradient(135deg, #FFD600 0%, #FFF066 100%);
  color: var(--color-blue);
  border-radius: 18px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: left;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recruit-message__button:hover,
.recruit-message__button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    0 6px 12px rgba(0, 0, 0, 0.16);
  outline: none;
}

.recruit-message__button:active {
  transform: translateY(1px) scale(0.98);
}

.recruit-message__button-text {
  flex: 1;
}

.recruit-message__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.recruit-message__button-arrow svg {
  width: 18px;
  height: 18px;
}

.recruit-message__button:hover .recruit-message__button-arrow,
.recruit-message__button:focus-visible .recruit-message__button-arrow {
  transform: translateX(5px);
}


/* ==========================================================================
   RECRUIT FEATURE (採用実績・特徴 数値カードグリッド)
   - 薄いグレー背景 / 青いカード 6枚 / 3列×2行 (PC)
   ========================================================================== */
.recruit-feature {
  background: #eef2f7;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 60px);
}

.recruit-feature__inner {
  max-width: 900px;
  margin: 0 auto;
}

.recruit-feature__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(8px, 1vw, 14px);
}

.recruit-feature__card {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 6px 10px;
  padding: clamp(16px, 1.6vw, 22px) clamp(14px, 1.4vw, 20px) clamp(18px, 1.8vw, 24px);
  background: var(--color-blue);
  border-radius: 8px;
  color: #fff;
  min-height: 160px;
}

.recruit-feature__icon {
  grid-column: 1;
  grid-row: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
}

.recruit-feature__icon svg {
  width: 100%;
  height: 100%;
}

.recruit-feature__label {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: clamp(11px, 0.85vw, 13px);
  line-height: 1.4;
  letter-spacing: 0.02em;
  align-self: center;
}

.recruit-feature__number {
  grid-column: 1 / -1;
  grid-row: 2;
  margin: 0;
  text-align: center;
  align-self: end;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(36px, 4.6vw, 56px);
  line-height: 1;
  letter-spacing: 0.02em;
}

.recruit-feature__unit {
  display: inline-block;
  margin-left: 4px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 1vw, 16px);
  font-weight: 700;
  vertical-align: baseline;
}

/* 注釈 (※付きの小さな補足) */
.recruit-feature__note {
  grid-column: 1 / -1;
  margin: 10px 0 0;
  padding-top: 8px;
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 10.5px;
  font-weight: 400;
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.88);
  letter-spacing: 0.02em;
  text-align: left;
}

/* タブレット・SP (≤834px): 2列に */
@media (max-width: 834px) {
  .recruit-message {
    padding: 56px 20px 64px;
  }

  .recruit-message__title {
    font-size: clamp(20px, 5.4vw, 26px);
    line-height: 1.55;
  }

  .recruit-message__text {
    font-size: 14px;
    line-height: 1.95;
    text-align: left;
  }

  .recruit-message__button {
    width: 100%;
    max-width: 380px;
    padding: 16px 16px 16px 22px;
    font-size: 14px;
    border-radius: 14px;
  }

  .recruit-message__button-arrow {
    width: 36px;
    height: 36px;
  }

  .recruit-feature {
    padding: 48px 16px 56px;
  }

  .recruit-feature__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .recruit-feature__card {
    min-height: 140px;
    padding: 14px 14px 18px;
  }

  .recruit-feature__icon {
    width: 22px;
    height: 22px;
  }

  .recruit-feature__label {
    font-size: 11.5px;
  }

  .recruit-feature__number {
    font-size: clamp(32px, 9vw, 44px);
  }

  .recruit-feature__unit {
    font-size: 12.5px;
  }

  .recruit-feature__note {
    font-size: 10px;
    line-height: 1.5;
    margin-top: 8px;
    padding-top: 6px;
  }
}

/* 小型スマホ (≤420px): 1列に */
@media (max-width: 420px) {
  .recruit-feature__grid {
    grid-template-columns: 1fr;
  }

  .recruit-feature__card {
    min-height: 120px;
  }
}



/* ==========================================================================
   RECRUIT WELFARE (福利厚生について)
   - 白背景・共通見出し + 4枚カード (PC 2列×2行)
   - 各カード: 白背景 + 影 + 上部に青の角丸見出しバー
   ========================================================================== */
.recruit-welfare {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
}

.recruit-welfare__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-welfare__cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}

.recruit-welfare__card {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 22px);
  background: #fff;
  border-radius: 12px;
  padding: clamp(16px, 1.8vw, 22px) clamp(16px, 1.8vw, 22px) clamp(22px, 2.4vw, 28px);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.08);
}

.recruit-welfare__card-title {
  margin: 0;
  padding: clamp(12px, 1.4vw, 16px) clamp(16px, 1.6vw, 22px);
  background: var(--color-blue);
  color: #fff;
  border-radius: 8px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 17px);
  line-height: 1.4;
  letter-spacing: 0.04em;
}

.recruit-welfare__card-text {
  margin: 0;
  padding: 0 clamp(4px, 0.6vw, 10px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.85;
  letter-spacing: 0.02em;
  color: #222;
}

@media (max-width: 834px) {
  .recruit-welfare {
    padding: 56px 20px 64px;
  }

  .recruit-welfare__cards {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .recruit-welfare__card {
    padding: 14px 14px 22px;
  }

  .recruit-welfare__card-title {
    font-size: 15px;
    padding: 11px 14px;
  }

  .recruit-welfare__card-text {
    font-size: 14px;
    line-height: 1.85;
  }
}


/* ==========================================================================
   RECRUIT TRAINING (充実の研修制度)
   - 薄ブルーグレー背景・左画像 + 右テキスト
   - 詳しく見る ボタンは白背景 + 青枠ピル + 矢印円
   ========================================================================== */
.recruit-training {
  background: #eef2f7;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 60px);
}

.recruit-training__inner {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.1fr);
  gap: clamp(28px, 3.5vw, 64px);
  align-items: center;
}

.recruit-training__image {
  border-radius: 12px;
  overflow: hidden;
}

.recruit-training__image img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.recruit-training__content {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.6vw, 22px);
}

.recruit-training__title {
  margin: 0;
  padding-bottom: clamp(10px, 1.2vw, 14px);
  border-bottom: 1px solid #cdd6e1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.recruit-training__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 2;
  color: #222;
}

.recruit-training__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  align-self: center;
  margin-top: clamp(8px, 1vw, 14px);
  padding: 10px 12px 10px 32px;
  min-width: 240px;
  background: #fff;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 999px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(13px, 1vw, 15px);
  letter-spacing: 0.04em;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.recruit-training__button:hover,
.recruit-training__button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.12);
  outline: none;
}

.recruit-training__button-text {
  flex: 1;
  text-align: center;
}

.recruit-training__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.recruit-training__button-arrow svg {
  width: 14px;
  height: 14px;
}

.recruit-training__button:hover .recruit-training__button-arrow,
.recruit-training__button:focus-visible .recruit-training__button-arrow {
  transform: translateX(4px);
}

@media (max-width: 834px) {
  .recruit-training {
    padding: 48px 20px 64px;
  }

  .recruit-training__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .recruit-training__title {
    font-size: 18px;
  }

  .recruit-training__text {
    font-size: 14px;
    line-height: 1.9;
  }

  .recruit-training__button {
    align-self: center;
    width: 100%;
    max-width: 280px;
  }
}


/* ==========================================================================
   RECRUIT FAQ (よくある質問)
   - 見出しは共通の section-head 系を使用
   - 各 FAQ は <details>/<summary> ベースのアコーディオン (JS 不要)
   - 閉時: + アイコン / 開時: − アイコン (vertical line を縮めるだけ)
   ========================================================================== */
.recruit-faq {
  background: #fff;
  padding: clamp(60px, 8vw, 100px) clamp(20px, 4vw, 60px);
}

.recruit-faq__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.recruit-faq__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}

/* details 本体 */
.recruit-faq__details {
  /* 何もスタイル指定しない (li 内で完結) */
}

/* デフォルトの三角マーカーを消す */
.recruit-faq__details > summary {
  list-style: none;
  cursor: pointer;
}
.recruit-faq__details > summary::-webkit-details-marker {
  display: none;
}
.recruit-faq__details > summary::marker {
  content: "";
}

/* Q バー (薄グレー横長カプセル / クリック対象) */
.recruit-faq__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: clamp(16px, 1.6vw, 22px) clamp(20px, 2vw, 28px);
  background: #eef2f7;
  border-radius: 14px;
  transition: background 0.2s ease;
}

.recruit-faq__details > summary:hover .recruit-faq__question,
.recruit-faq__details > summary:focus-visible .recruit-faq__question {
  background: #e3e9f1;
}

.recruit-faq__details > summary {
  outline: none;
}

.recruit-faq__details > summary:focus-visible {
  outline: 2px solid var(--color-blue);
  outline-offset: 2px;
  border-radius: 14px;
}

.recruit-faq__question-label {
  flex: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.5;
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.recruit-faq__question-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--color-blue);
}

.recruit-faq__question-icon svg {
  width: 100%;
  height: 100%;
  overflow: visible;
}

/* + → − トグル: 縦線を縮めるだけ */
.recruit-faq__icon-v {
  transform: scaleY(1);
  transform-origin: 12px 12px;
  transition: transform 0.25s ease;
}

.recruit-faq__details[open] .recruit-faq__icon-v {
  transform: scaleY(0);
}

/* A 本文ブロック */
.recruit-faq__answer {
  padding: clamp(18px, 2vw, 26px) clamp(20px, 2vw, 28px) 0;
}

.recruit-faq__answer-title {
  margin: 0 0 clamp(12px, 1.4vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 16px);
  line-height: 1.6;
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.recruit-faq__answer-text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: #222;
}

@media (max-width: 834px) {
  .recruit-faq {
    padding: 56px 20px 64px;
  }

  .recruit-faq__list {
    gap: 24px;
  }

  .recruit-faq__question {
    padding: 14px 18px;
    border-radius: 12px;
    gap: 12px;
  }

  .recruit-faq__question-label {
    font-size: 14px;
    line-height: 1.5;
  }

  .recruit-faq__question-icon {
    width: 20px;
    height: 20px;
  }

  .recruit-faq__answer {
    padding: 16px 18px 0;
  }

  .recruit-faq__answer-title {
    font-size: 14px;
  }

  .recruit-faq__answer-text {
    font-size: 13.5px;
    line-height: 1.85;
  }
}


/* ==========================================================================
   RECRUIT ENTRY (注意文 + エントリーフォームボタン)
   - FLOW セクション直下、コンタクトエリア前に配置
   - 中央寄せの注意文 + 黄色の大きなピル型 CTA ボタン
   ========================================================================== */
.recruit-entry {
  background: #fff;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 60px) clamp(56px, 7vw, 96px);
  text-align: center;
}

.recruit-entry__text {
  max-width: 880px;
  margin: 0 auto clamp(28px, 3.5vw, 48px);
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.95;
  letter-spacing: 0.02em;
  color: #222;
}

/* 黄色グラデの大きなピル型ボタン */
.recruit-entry__button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: min(420px, 100%);
  min-height: 72px;
  padding: 14px 18px 14px 36px;
  background: linear-gradient(135deg, #FFD600 0%, #FFF066 100%);
  color: var(--color-blue);
  border-radius: 999px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.1vw, 17px);
  letter-spacing: 0.04em;
  box-shadow:
    0 10px 20px rgba(0, 0, 0, 0.15),
    0 4px 8px rgba(0, 0, 0, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.recruit-entry__button:hover,
.recruit-entry__button:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 14px 28px rgba(0, 0, 0, 0.22),
    0 6px 12px rgba(0, 0, 0, 0.16);
  outline: none;
}

.recruit-entry__button:active {
  transform: translateY(1px) scale(0.98);
}

.recruit-entry__button-text {
  flex: 1;
  text-align: center;
}

.recruit-entry__button-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--color-blue);
  color: #fff;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.recruit-entry__button-arrow svg {
  width: 16px;
  height: 16px;
}

.recruit-entry__button:hover .recruit-entry__button-arrow,
.recruit-entry__button:focus-visible .recruit-entry__button-arrow {
  transform: translateX(5px);
}

@media (max-width: 834px) {
  .recruit-entry {
    padding: 40px 20px 64px;
  }

  .recruit-entry__text {
    font-size: 13px;
    line-height: 1.9;
    text-align: left;
  }

  .recruit-entry__button {
    width: 100%;
    max-width: 360px;
    min-height: 64px;
    padding: 12px 14px 12px 28px;
    font-size: 15px;
  }

  .recruit-entry__button-arrow {
    width: 32px;
    height: 32px;
  }
}


/* ==========================================================================
   RECRUIT TRAINING INFO (新任研修の情報表)
   - dl/dt/dd を 2 列グリッドにして、ラベルを薄グレー badge で表示
   - 既存の strength-section__body (画像+本文) の右側カラム内に配置する
   ========================================================================== */
.recruit-training-info {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.recruit-training-info__row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 14px;
  align-items: start;
}

.recruit-training-info__label {
  margin: 0;
  padding: 4px 10px;
  background: #eef2f7;
  border-radius: 4px;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(12px, 0.9vw, 14px);
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #1a1a1a;
  align-self: start;
}

.recruit-training-info__value {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.75;
  color: #222;
}

@media (max-width: 480px) {
  .recruit-training-info__row {
    grid-template-columns: 84px 1fr;
    gap: 10px;
  }
}


/* ==========================================================================
   RECRUIT REQUIREMENTS (募集要項)
   - 表本体は company-table を流用 (dual class)
   - ここでは見出しと、セル内の補足テキスト・箇条書きの整形のみ追加
   ========================================================================== */
.recruit-requirements__heading {
  margin: 0 0 clamp(28px, 3.5vw, 48px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(22px, 2.4vw, 30px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.recruit-requirements__text {
  margin: 0;
}

.recruit-requirements__text + .recruit-requirements__text {
  margin-top: 12px;
}

.recruit-requirements__list {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.recruit-requirements__list > li {
  position: relative;
  padding-left: 18px;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.85;
  color: var(--company-text, #1a1a1a);
}

.recruit-requirements__list > li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 0.7em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: currentColor;
}

@media (max-width: 834px) {
  .recruit-requirements__heading {
    font-size: 22px;
    margin-bottom: 24px;
  }
}


/* ==========================================================================
   RECRUIT INTERVIEW (先輩の声 一覧 / カード型グリッド)
   - PC: 3列 / SP: 1列
   - 各カード: 画像 (角丸) + 右下の白丸+青矢印 + 下に名前 (青・太字・中央)
   - hover で軽く浮上 + 画像をわずかに拡大
   ========================================================================== */
.recruit-interview {
  background: #fff;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 60px);
}

.recruit-interview__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.recruit-interview__grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}

.recruit-interview__card {
  /* fade target; layout は __link 側で */
}

.recruit-interview__link {
  display: flex;
  flex-direction: column;
  gap: clamp(14px, 1.4vw, 20px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease;
}

.recruit-interview__link:hover,
.recruit-interview__link:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

.recruit-interview__image-wrap {
  position: relative;
  border-radius: 14px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef2f7;
}

.recruit-interview__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.recruit-interview__link:hover .recruit-interview__image,
.recruit-interview__link:focus-visible .recruit-interview__image {
  transform: scale(1.04);
}

/* 右下に重なる白丸 + 青矢印 */
.recruit-interview__arrow {
  position: absolute;
  right: clamp(12px, 1.4vw, 18px);
  bottom: clamp(12px, 1.4vw, 18px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(36px, 3.4vw, 44px);
  height: clamp(36px, 3.4vw, 44px);
  border-radius: 50%;
  background: #fff;
  color: var(--color-blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.recruit-interview__arrow svg {
  width: 50%;
  height: 50%;
}

.recruit-interview__link:hover .recruit-interview__arrow,
.recruit-interview__link:focus-visible .recruit-interview__arrow {
  transform: translateX(3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.recruit-interview__name {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

/* タブレット・SP */
@media (max-width: 834px) {
  .recruit-interview {
    padding: 48px 20px 64px;
  }

  .recruit-interview__grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 480px;
    margin: 0 auto;
  }

  .recruit-interview__name {
    font-size: 15px;
  }
}


/* ==========================================================================
   INTERVIEW DETAIL (先輩インタビュー詳細)
   - 左: 全身画像 + 透かしロゴ
   - 右: 名前バー + Q&A カード + (下に SCHEDULE タイムライン)
   ========================================================================== */
.interview-detail {
  background: #fff;
  padding: clamp(48px, 6vw, 88px) clamp(20px, 4vw, 60px) clamp(24px, 3vw, 40px);
}

.interview-detail__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(24px, 3vw, 56px);
  align-items: start;
}

/* 左: visual */
.interview-detail__visual {
  display: flex;
  justify-content: center;
  align-items: flex-start;
}

.interview-detail__image {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
  object-fit: contain;
}

/* 右: コンテンツ縦積み */
.interview-detail__content {
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.4vw, 32px);
}

/* 名前バー (青角丸) */
.interview-detail__name {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: clamp(14px, 1.6vw, 20px) clamp(20px, 2vw, 28px);
  background: var(--color-blue);
  color: #fff;
  border-radius: 14px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.04em;
}

.interview-detail__name-main {
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 700;
}

.interview-detail__name-sub {
  font-size: clamp(13px, 1vw, 15px);
  font-weight: 500;
}

/* Q&A カード一覧 */
.interview-qa {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.8vw, 24px);
}

.interview-qa__item {
  background: #eef2f7;
  border-radius: 14px;
  padding: clamp(20px, 2.2vw, 28px) clamp(20px, 2.4vw, 30px);
}

.interview-qa__question {
  margin: 0 0 clamp(12px, 1.4vw, 18px);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 17px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.interview-qa__answer {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.95;
  color: #222;
}


/* ==========================================================================
   INTERVIEW SCHEDULE (1日のスケジュール 縦タイムライン)
   ========================================================================== */
.interview-schedule {
  background: #fff;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 60px) clamp(56px, 7vw, 96px);
}

.interview-schedule__inner {
  max-width: 1100px;
  margin: 0 auto;
}

.interview-schedule__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.interview-schedule__item {
  position: relative;
  display: grid;
  grid-template-columns: 90px 32px 1fr;
  gap: clamp(12px, 1.6vw, 24px);
  align-items: start;
  padding: clamp(14px, 1.8vw, 22px) 0;
}

/* 中央列の縦線 (アイテム間をつなぐ) */
.interview-schedule__item::before {
  content: "";
  position: absolute;
  left: calc(90px + clamp(12px, 1.6vw, 24px) + 16px - 1px);
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-blue);
}
.interview-schedule__item:first-child::before {
  top: 50%;
}
.interview-schedule__item:last-child::before {
  bottom: 50%;
}

.interview-schedule__time {
  margin: 0;
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(15px, 1.2vw, 18px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
  align-self: center;
  text-align: right;
}

.interview-schedule__dot {
  position: relative;
  z-index: 1;
  align-self: center;
  justify-self: center;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: var(--color-blue);
  box-shadow: 0 0 0 4px #fff;
}

.interview-schedule__content {
  align-self: center;
}

.interview-schedule__title {
  margin: 0 0 6px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.1vw, 16px);
  letter-spacing: 0.04em;
  color: #1a1a1a;
}

.interview-schedule__text {
  margin: 0;
  font-family: "Noto Sans JP", sans-serif;
  font-size: clamp(13px, 0.95vw, 15px);
  line-height: 1.85;
  color: #222;
}


/* タブレット・SP (≤834px) */
@media (max-width: 834px) {
  .interview-detail {
    padding: 40px 20px 24px;
  }

  /* 1カラムに切替 */
  .interview-detail__inner {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .interview-detail__image {
    max-width: 420px;
    margin: 0 auto;
  }

  .interview-detail__name {
    border-radius: 12px;
    padding: 12px 18px;
  }

  .interview-detail__name-main {
    font-size: 19px;
  }

  .interview-detail__name-sub {
    font-size: 13px;
  }

  .interview-qa__item {
    padding: 18px 18px;
    border-radius: 12px;
  }

  .interview-qa__question {
    font-size: 14.5px;
  }

  .interview-qa__answer {
    font-size: 13.5px;
    line-height: 1.85;
  }

  .interview-schedule {
    padding: 32px 20px 56px;
  }

  .interview-schedule__item {
    grid-template-columns: 60px 24px 1fr;
    gap: 12px;
    padding: 14px 0;
  }
  .interview-schedule__item::before {
    left: calc(60px + 12px + 12px - 1px);
  }

  .interview-schedule__time {
    font-size: 14px;
  }

  .interview-schedule__dot {
    width: 12px;
    height: 12px;
  }

  .interview-schedule__title {
    font-size: 14.5px;
  }

  .interview-schedule__text {
    font-size: 13.5px;
  }
}


/* ==========================================================================
   INTERVIEW NAV (他の先輩の声へ回遊 / インタビュー詳細ページ下部)
   - PC: 3列グリッド (recruit-interview と同じ見た目)
   - SP: 横スクロール + scroll-snap (CSS のみで実装)
   - 現在ページ (aria-current="page") のカードはディム表示
   ========================================================================== */
.interview-nav {
  background: #fff;
  padding: clamp(40px, 5vw, 72px) clamp(20px, 4vw, 60px) clamp(56px, 7vw, 96px);
}

.interview-nav__inner {
  max-width: 1200px;
  margin: 0 auto;
}

.interview-nav__title {
  margin: 0 0 clamp(24px, 3vw, 40px);
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(18px, 1.6vw, 22px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

.interview-nav__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 2.4vw, 36px);
}

.interview-nav__item {
  /* fade-up target */
}

.interview-nav__link {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.2vw, 18px);
  text-decoration: none;
  color: inherit;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.interview-nav__link:hover,
.interview-nav__link:focus-visible {
  transform: translateY(-4px);
  outline: none;
}

/* 現在ページのカードはアクティブ表現 (ディム + ホバー無効) */
.interview-nav__link[aria-current="page"] {
  pointer-events: none;
  opacity: 0.55;
}

.interview-nav__image-wrap {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: #eef2f7;
}

.interview-nav__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.interview-nav__link:hover .interview-nav__image,
.interview-nav__link:focus-visible .interview-nav__image {
  transform: scale(1.04);
}

.interview-nav__arrow {
  position: absolute;
  right: clamp(10px, 1.2vw, 16px);
  bottom: clamp(10px, 1.2vw, 16px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: clamp(32px, 3vw, 40px);
  height: clamp(32px, 3vw, 40px);
  border-radius: 50%;
  background: #fff;
  color: var(--color-blue);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.interview-nav__arrow svg {
  width: 50%;
  height: 50%;
}

.interview-nav__link:hover .interview-nav__arrow,
.interview-nav__link:focus-visible .interview-nav__arrow {
  transform: translateX(3px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.2);
}

.interview-nav__name {
  margin: 0;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(14px, 1.05vw, 16px);
  letter-spacing: 0.04em;
  color: var(--color-blue);
}

/* ---------- SP: 横スクロール + scroll-snap ---------- */
@media (max-width: 834px) {
  .interview-nav {
    padding: 40px 0 56px;
  }

  .interview-nav__title {
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 17px;
  }

  /* 横スクロールはこのリスト内だけに限定 */
  .interview-nav__list {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    padding: 4px 20px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: thin;
    scrollbar-color: rgba(25, 97, 173, 0.3) transparent;
  }

  /* スクロールバーをさりげなく */
  .interview-nav__list::-webkit-scrollbar {
    height: 6px;
  }
  .interview-nav__list::-webkit-scrollbar-track {
    background: transparent;
  }
  .interview-nav__list::-webkit-scrollbar-thumb {
    background: rgba(25, 97, 173, 0.25);
    border-radius: 3px;
  }

  .interview-nav__item {
    flex: 0 0 80%;
    max-width: 320px;
    scroll-snap-align: start;
  }

  .interview-nav__name {
    font-size: 14.5px;
  }
}

@media (max-width: 480px) {
  .interview-nav__item {
    flex-basis: 82%;
  }
}


/* ==========================================================================
   SERVICE PDF (会社案内 PDF ダウンロード CTA / index.html service セクション内)
   ========================================================================== */
.service__pdf-wrap {
  margin-top: clamp(40px, 5vw, 64px);
  text-align: center;
  padding: 0 clamp(20px, 4vw, 40px);
}

.service__pdf {
  display: inline-flex;
  align-items: center;
  gap: clamp(16px, 1.8vw, 24px);
  padding: clamp(14px, 1.6vw, 20px) clamp(20px, 2vw, 28px) clamp(14px, 1.6vw, 20px) clamp(18px, 1.8vw, 24px);
  min-height: 84px;
  width: min(460px, 100%);
  background: linear-gradient(135deg, #1961AD 0%, #2889C5 100%);
  color: #fff;
  border-radius: 999px;
  text-decoration: none;
  font-family: "Noto Sans JP", sans-serif;
  box-shadow:
    0 12px 26px rgba(25, 97, 173, 0.30),
    0 4px 10px rgba(0, 0, 0, 0.10);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service__pdf:hover,
.service__pdf:focus-visible {
  transform: translateY(-3px) scale(1.02);
  box-shadow:
    0 18px 36px rgba(25, 97, 173, 0.38),
    0 6px 14px rgba(0, 0, 0, 0.14);
  outline: none;
}

.service__pdf:active {
  transform: translateY(1px) scale(0.99);
}

/* 左: 黄色の丸 + ドキュメントアイコン */
.service__pdf-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #FFE100;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.3s ease;
}

.service__pdf-icon svg {
  width: 24px;
  height: 24px;
}

.service__pdf:hover .service__pdf-icon {
  transform: rotate(-4deg);
}

/* 中央: 2 段組テキスト (eyebrow + label) */
.service__pdf-body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  flex: 1;
  min-width: 0;
}

.service__pdf-eyebrow {
  font-family: "Poppins", "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: clamp(10px, 0.8vw, 12px);
  letter-spacing: 0.18em;
  line-height: 1;
  color: #FFE100;
}

.service__pdf-label {
  margin-top: 6px;
  font-weight: 700;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.3;
  letter-spacing: 0.04em;
  color: #fff;
}

/* 右: 白丸 + ダウンロード矢印 */
.service__pdf-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: #fff;
  color: var(--color-blue);
  flex-shrink: 0;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.12);
}

.service__pdf-arrow svg {
  width: 20px;
  height: 20px;
}

.service__pdf:hover .service__pdf-arrow,
.service__pdf:focus-visible .service__pdf-arrow {
  transform: translateY(3px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
}

/* SP */
@media (max-width: 834px) {
  .service__pdf-wrap {
    padding: 0 20px;
    margin-top: 40px;
  }

  .service__pdf {
    width: 100%;
    max-width: 380px;
    min-height: 72px;
    padding: 12px 14px;
    gap: 14px;
  }

  .service__pdf-icon {
    width: 46px;
    height: 46px;
  }

  .service__pdf-icon svg {
    width: 20px;
    height: 20px;
  }

  .service__pdf-eyebrow {
    font-size: 10px;
    letter-spacing: 0.16em;
  }

  .service__pdf-label {
    font-size: 15px;
  }

  .service__pdf-arrow {
    width: 38px;
    height: 38px;
  }

  .service__pdf-arrow svg {
    width: 18px;
    height: 18px;
  }
}


/* ==========================================================================
   contact ページ (お問い合わせ / THANKS)
   ========================================================================== */
.contact-page {
  background: var(--color-white);
  padding-block: clamp(60px, 8vw, 120px);
}

.contact-page__inner {
  max-width: 960px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
}

.contact-form {
  display: flex;
  flex-direction: column;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 16px 32px;
  align-items: start;
  padding-block: 22px;
  border-bottom: 1px solid var(--color-border);
}

.contact-form__row:first-of-type {
  border-top: 1px solid var(--color-border);
}

.contact-form__section-title {
  margin: 0;
  padding: 14px 0;
  font-size: 18px;
  font-weight: 700;
  color: var(--color-blue);
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--color-blue);
}

.contact-form__section-title:not(:first-child) {
  margin-top: 40px;
}

.contact-form__section-title + .contact-form__row {
  border-top: 0;
}

.contact-form__label {
  font-weight: 700;
  font-size: 16px;
  color: var(--color-text);
  padding-top: 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  line-height: 1.5;
}

.contact-form__required {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: #d8333a;
  padding: 3px 10px;
  border-radius: 4px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
}

.contact-form__input,
.contact-form__select,
.contact-form__textarea {
  width: 100%;
  max-width: 100%;          /* SP で親要素の幅を超えないように */
  min-width: 0;             /* iOS/Android の date input がはみ出す問題対策 */
  border: 1px solid var(--color-border);
  border-radius: var(--radius-sm);
  background: #f7f8fa;
  font-size: 16px;
  font-family: inherit;
  color: var(--color-text);
  padding: 14px 16px;
  line-height: 1.6;
  transition: border-color 200ms var(--ease),
              background 200ms var(--ease),
              box-shadow 200ms var(--ease);
}

/* <input type="date"> 個別対策
   (iOS Safari は内部アイコン + 大きめの min-width を持つため、
    SP で親の横幅を超えやすい) */
.contact-form__input[type="date"] {
  min-width: 0;
  display: block;
  -webkit-appearance: none;
  appearance: none;
}

.contact-form__input::placeholder,
.contact-form__textarea::placeholder {
  color: #aab1ba;
}

.contact-form__input:focus,
.contact-form__select:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: var(--color-blue);
  background: var(--color-white);
  box-shadow: 0 0 0 3px rgba(25, 97, 173, 0.15);
}

.contact-form__zip {
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-form__zip-mark {
  font-weight: 700;
  font-size: 18px;
  color: var(--color-blue);
}

.contact-form__input--zip {
  max-width: 220px;
}

.contact-form__select-wrap {
  position: relative;
}

.contact-form__select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 18px;
  width: 10px;
  height: 10px;
  border-right: 2px solid var(--color-blue);
  border-bottom: 2px solid var(--color-blue);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
}

.contact-form__select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 44px;
  cursor: pointer;
}

.contact-form__textarea {
  min-height: 220px;
  resize: vertical;
  line-height: 1.8;
}

.contact-form__textarea--small {
  min-height: 110px;
}

.contact-form__checks {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 24px;
  padding: 0;
  margin: 0;
}

.contact-form__check label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.5;
}

.contact-form__check input[type="checkbox"] {
  width: 20px;
  height: 20px;
  accent-color: var(--color-blue);
  cursor: pointer;
  flex-shrink: 0;
}

.contact-form__actions {
  display: flex;
  justify-content: center;
  margin-top: 48px;
}

.contact-form__submit {
  appearance: none;
  border: 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.14em;
  color: var(--color-white);
  background: var(--color-blue);
  padding: 18px 64px;
  border-radius: var(--radius-pill);
  min-width: 300px;
  box-shadow: 0 10px 24px rgba(25, 97, 173, 0.28);
  transition: background 200ms var(--ease),
              transform 200ms var(--ease),
              box-shadow 200ms var(--ease);
}

.contact-form__submit:hover,
.contact-form__submit:focus-visible {
  background: var(--color-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(25, 97, 173, 0.34);
  outline: none;
}

.contact-form__submit:active {
  transform: translateY(0);
  box-shadow: 0 6px 16px rgba(25, 97, 173, 0.28);
}

/* THANKS ページ */
.contact-thanks {
  background: var(--color-white);
  padding-block: clamp(80px, 12vw, 160px);
}

.contact-thanks__inner {
  max-width: 720px;
  margin-inline: auto;
  padding-inline: clamp(20px, 4vw, 40px);
  text-align: center;
}

.contact-thanks__title {
  font-family: 'Poppins', 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: clamp(40px, 6vw, 64px);
  letter-spacing: 0.1em;
  color: var(--color-blue);
  margin: 0 0 24px;
  line-height: 1.1;
}

.contact-thanks__title-accent {
  color: var(--color-yellow);
}

.contact-thanks__lead {
  font-size: clamp(15px, 2vw, 17px);
  line-height: 2;
  color: var(--color-text);
  margin: 0 0 56px;
}

.contact-thanks__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-width: 280px;
  padding: 18px 48px;
  background: var(--color-blue);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 10px 24px rgba(25, 97, 173, 0.28);
  transition: background 200ms var(--ease),
              transform 200ms var(--ease),
              box-shadow 200ms var(--ease);
}

.contact-thanks__back::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: rotate(45deg);
}

.contact-thanks__back:hover,
.contact-thanks__back:focus-visible {
  background: var(--color-blue-light);
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(25, 97, 173, 0.34);
  outline: none;
}

@media (max-width: 768px) {
  .contact-page {
    padding-block: 48px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
    gap: 8px;
    padding-block: 16px;
  }

  .contact-form__label {
    padding-top: 0;
    font-size: 15px;
  }

  .contact-form__input,
  .contact-form__select,
  .contact-form__textarea {
    padding: 12px 14px;
  }

  .contact-form__textarea {
    min-height: 180px;
  }

  .contact-form__checks {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .contact-form__actions {
    margin-top: 32px;
  }

  .contact-form__submit {
    width: 100%;
    min-width: 0;
    padding: 16px 24px;
    font-size: 16px;
  }

  .contact-thanks__back {
    min-width: 0;
    width: 100%;
    padding: 16px 24px;
  }
}

/* =========================================================
   お知らせ (WordPress) 一覧ページ
   ========================================================= */

.news-archive {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background: #fff;
}

.news-archive__inner {
  max-width: var(--container-max);
  margin: 0 auto;
}

.news-archive__list {
  margin-top: 0;
}

.news-archive__empty {
  text-align: center;
  padding: 60px 0;
  color: var(--color-text);
  font-size: 15px;
}

/* ===== フィルター (種別 / 年号 / 検索) ===== */
.news-filter {
  margin-bottom: 40px;
}

.news-filter__row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 16px;
}

.news-filter__label {
  flex-shrink: 0;
  width: 64px;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
}

.news-filter__pills {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.news-filter__pills li {
  margin: 0;
}

.news-filter__pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-pill);
  font-size: 13px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
  white-space: nowrap;
}

.news-filter__pill:hover {
  border-color: var(--color-blue);
  color: var(--color-blue);
}

.news-filter__pill.is-active {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

/* ===== 検索ボックス ===== */
.news-search {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 8px;
  border-bottom: 1px solid var(--color-border);
  padding-bottom: 4px;
}

.news-search__label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

.news-search__input {
  flex: 1;
  min-width: 0;
  padding: 12px 8px;
  border: none;
  outline: none;
  background: transparent;
  font-size: 15px;
  color: var(--color-text);
  font-family: inherit;
}

.news-search__input::placeholder {
  color: #999;
}

.news-search__button {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  border: none;
  color: var(--color-text);
  cursor: pointer;
  transition: color 0.2s ease;
}

.news-search__button:hover {
  color: var(--color-blue);
}

.news-search__button svg {
  width: 20px;
  height: 20px;
}

/* ===== カード型グリッド ===== */
.news-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.news-card {
  margin: 0;
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.news-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.news-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}

.news-card__thumb {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #f5f5f5;
}

.news-card__thumb-img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

.news-card__thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f5f5;
}

.news-card__thumb-logo {
  width: 50%;
  max-width: 160px;
  height: auto;
  opacity: 0.6;
}

.news-card__body {
  padding: 18px 20px 22px;
}

.news-card__meta {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.news-card__category {
  /* .news__category クラスをそのまま流用 (background色など) */
  /* 既存の .news__category サイズで OK */
}

.news-card__date {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 13px;
  color: #666;
}

.news-card__title {
  margin: 0;
  font-size: 14px;
  line-height: 1.7;
  color: var(--color-text);
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== ページネーション ===== */
.news-pagination {
  margin-top: 40px;
  display: flex;
  justify-content: center;
}

.news-pagination__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}

.news-pagination__item {
  margin: 0;
}

.news-pagination .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 10px;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: 6px;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.news-pagination .page-numbers:hover {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

.news-pagination .page-numbers.current {
  background: var(--color-blue);
  border-color: var(--color-blue);
  color: #fff;
}

.news-pagination .page-numbers.dots {
  background: transparent;
  border-color: transparent;
  cursor: default;
}

.news-pagination .page-numbers.dots:hover {
  background: transparent;
  color: var(--color-text);
}

/* =========================================================
   お知らせ詳細ページ
   ========================================================= */

.news-detail {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background: #fff;
}

.news-detail__inner {
  max-width: 880px;
  margin: 0 auto;
}

.news-detail__article {
  margin-bottom: 60px;
}

.news-detail__head {
  padding-bottom: 24px;
  margin-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.news-detail__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.news-detail__date {
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: var(--color-blue);
  letter-spacing: 0.02em;
}

.news-detail__title {
  margin: 0;
  font-size: clamp(22px, 3vw, 30px);
  line-height: 1.5;
  font-weight: 700;
  color: var(--color-text);
}

.news-detail__thumbnail {
  margin-bottom: 32px;
  text-align: center;
}

.news-detail__thumbnail img {
  max-width: 100%;
  height: auto;
  border-radius: 8px;
}

.news-detail__body {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text);
}

.news-detail__body > * + * {
  margin-top: 1.2em;
}

.news-detail__body p {
  margin: 0 0 1.2em;
}

.news-detail__body h2 {
  font-size: 22px;
  font-weight: 700;
  margin: 2em 0 0.8em;
  padding-bottom: 0.4em;
  border-bottom: 2px solid var(--color-blue);
}

.news-detail__body h3 {
  font-size: 18px;
  font-weight: 700;
  margin: 1.6em 0 0.6em;
  padding-left: 12px;
  border-left: 3px solid var(--color-blue);
}

.news-detail__body ul,
.news-detail__body ol {
  margin: 1em 0;
  padding-left: 1.5em;
}

.news-detail__body li {
  margin-bottom: 0.4em;
}

.news-detail__body a {
  color: var(--color-blue);
  text-decoration: underline;
}

.news-detail__body a:hover {
  text-decoration: none;
}

.news-detail__body img {
  max-width: 100%;
  height: auto;
  border-radius: 6px;
}

.news-detail__body blockquote {
  margin: 1em 0;
  padding: 16px 20px;
  background: rgba(25, 97, 173, 0.04);
  border-left: 4px solid var(--color-blue);
  font-style: normal;
}

/* ===== 戻るボタン ===== */
.news-detail__back-wrap {
  text-align: center;
  margin-top: 40px;
}

.news-detail__back {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  background: transparent;
  border: 1px solid var(--color-blue);
  color: var(--color-blue);
  border-radius: var(--radius-pill);
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease;
}

.news-detail__back:hover {
  background: var(--color-blue);
  color: #fff;
}

.news-detail__back-arrow {
  font-size: 18px;
  line-height: 1;
}

/* ===== タブレット (2列) ===== */
@media (max-width: 1024px) {
  .news-cards {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }
}

/* ===== SP 最適化 ===== */
@media (max-width: 768px) {
  .news-cards {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .news-filter__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
  }

  .news-filter__label {
    width: auto;
  }

  .news-filter__pills {
    flex-wrap: wrap;
    gap: 6px;
  }

  .news-filter__pill {
    padding: 6px 14px;
    font-size: 12px;
  }

  .news-search__input {
    font-size: 14px;
  }

  .news-pagination .page-numbers {
    min-width: 34px;
    height: 34px;
    font-size: 13px;
  }

  .news-detail__meta {
    flex-wrap: wrap;
    gap: 12px;
  }

  .news-detail__back {
    width: 100%;
    justify-content: center;
  }
}

/* =========================================================
   エントリー/お問い合わせフォーム 補足
   - honeypot 完全非表示 (BOT 判定用)
   - サーバーバリデーションのエラー表示
   ========================================================= */
.contact-form__honeypot {
  position: absolute !important;
  left: -10000px !important;
  top: auto !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
}

.contact-form__alert {
  margin: 0 0 24px;
  padding: 14px 18px;
  background: #fff3f3;
  border: 1px solid #f5c6c6;
  border-left: 4px solid #d9534f;
  border-radius: 6px;
  color: #b02a2a;
  font-size: 14px;
  line-height: 1.6;
}

.contact-form__error {
  margin: 6px 0 0;
  padding: 0;
  font-size: 13px;
  color: #d9534f;
  line-height: 1.5;
}

/* 送信ボタン下の個人情報取扱い同意文 */
.contact-form__actions {
  flex-wrap: wrap;
}
.contact-form__consent {
  flex-basis: 100%;
  margin: 16px 0 0;
  padding: 0;
  text-align: center;
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.contact-form__consent-link {
  color: var(--color-blue);
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__consent-link:hover,
.contact-form__consent-link:focus-visible {
  text-decoration: none;
  color: #11447a;
}

@media (max-width: 768px) {
  .contact-form__consent {
    font-size: 12.5px;
    margin-top: 12px;
  }
}

/* =========================================================
   お見積もり詳細ブロック
   - 既存フォームの流れに溶け込ませつつ、薄い背景+左ボーダー
   - 「見積もりを希望」チェック時のみ JS で表示
   ========================================================= */
.contact-form__quote {
  margin: 0 0 8px;
  padding: 24px clamp(16px, 3vw, 28px) 8px;
  background: #f4f8fc;
  border-left: 4px solid var(--color-blue);
  border-radius: 0 8px 8px 0;
}
.contact-form__quote.is-hidden {
  display: none;
}
.contact-form__quote-head {
  margin: 0 0 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(25, 97, 173, 0.18);
}
.contact-form__quote-lead {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--color-blue);
  line-height: 1.6;
}
/* ブロック内の row は内側の余白に合わせて区切り線を細く */
.contact-form__quote .contact-form__row {
  border-bottom: 1px dashed rgba(25, 97, 173, 0.15);
}
.contact-form__quote .contact-form__row:last-child {
  border-bottom: 0;
}

/* 期間 (開始日〜終了日, 内 N 日) */
.contact-form__period {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form__period-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
}
.contact-form__period-sep {
  font-size: 14px;
  color: var(--color-text);
  white-space: nowrap;
}

/* 日付・数値 input の幅調整 (既存 .contact-form__input の上から効かせる) */
.contact-form__input--date {
  width: auto;
  min-width: 160px;
  flex: 0 1 auto;
}
.contact-form__input--num {
  width: 90px;
  flex: 0 0 90px;
  text-align: right;
}

/* 人数 (number + 「名」) */
.contact-form__people {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 768px) {
  .contact-form__quote {
    padding: 18px 14px 4px;
  }
  .contact-form__quote-lead {
    font-size: 14px;
  }
  .contact-form__input--date {
    min-width: 140px;
    width: 100%;
  }
}

/* 郵便番号 → 住所自動検索のステータス表示 */
.contact-form__zip-status {
  margin: 6px 0 0;
  padding: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #666;
  min-height: 1em; /* メッセージ表示前後で高さがブレないよう */
}
.contact-form__zip-status:empty {
  margin: 0;
  min-height: 0;
}
.contact-form__zip-status--loading {
  color: #666;
}
.contact-form__zip-status--ok {
  color: #2e7d32;
}
.contact-form__zip-status--error {
  color: #d9534f;
}

/* =========================================================
   個人情報保護方針ページ
   ========================================================= */
.privacy-page {
  padding: clamp(60px, 8vw, 100px) clamp(24px, 4vw, 60px);
  background: #fff;
}

.privacy-page__inner {
  max-width: 880px;
  margin: 0 auto;
}

.privacy-page__lead {
  font-size: 16px;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0 0 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--color-border);
}

.privacy-page__block {
  margin-bottom: 40px;
}

.privacy-page__block:last-child {
  margin-bottom: 0;
}

.privacy-page__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-blue);
  margin: 0 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--color-blue);
  line-height: 1.4;
}

.privacy-page__text {
  font-size: 15px;
  line-height: 1.9;
  color: var(--color-text);
  margin: 0;
}

@media (max-width: 768px) {
  .privacy-page__lead {
    font-size: 15px;
    margin-bottom: 36px;
    padding-bottom: 24px;
  }

  .privacy-page__title {
    font-size: 18px;
  }

  .privacy-page__text {
    font-size: 14px;
  }
}