/* ============================================================
   GLOBAL RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  /* Colors */
  --c-white: #ffffff;
  --c-black: #000000;
  --c-green: #17902d;
  --c-green-dark: #106e21;
  --c-green-link: #07891f;
  --c-blue: #083587;
  --c-gray-bg: #f6f6f6;
  --c-gray: #d9d9d9;
  --c-gray-mid: #e5e5e5;
  --c-gray-text: #7b7777;
  --c-green-tint: #d9e2d8;

  /* Typography */
  --f-inter: "Inter", sans-serif;
  --f-noto: "Noto Sans JP", sans-serif;

  /* Layout */
  --max-w: 1736px; /* matches figma content area: 211-1947 */
  --gutter: 80px;
  --header-h: 84px;
}

/* ============================================================
   LAYOUT UTILITIES
   ============================================================ */
.container {
  width: 100%;
  max-width: calc(var(--max-w) + var(--gutter) * 2);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ============================================================
   TYPOGRAPHY UTILITIES
   ============================================================ */

/* English large section heading  — e.g. "ABOUT US", "SERVICE" */
.en-label {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: var(--c-blue);
  letter-spacing: -0.01em;
}

/* Japanese sub-label — e.g. "私たちが取り組む事業" */
.ja-sublabel {
  font-family: var(--f-noto);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  color: var(--c-blue);
  margin-top: 4px;
}

/* Body text */
.body-text {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
}

/* Link styles */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-inter);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.21;
  transition: opacity 0.2s;
  justify-content: flex-end;
}

.text-link-aboutus {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-family: var(--f-inter);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.21;
  transition: opacity 0.2s;
}

.text-link:hover {
  opacity: 0.7;
}
.text-link--blue {
  color: var(--c-blue);
}
.text-link--green {
  color: var(--c-green-link);
}

/* ============================================================
   CIRCLE ARROW BUTTON LINK
   テキスト + 緑丸矢印ボタンの共通コンポーネント
   使い方: <a class="c-link-btn"><span>ラベル</span><svg .../></a>
   ============================================================ */
.c-link-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-black);
  transition: opacity 0.2s;
}
.c-link-btn:hover {
  opacity: 0.7;
}
.c-link-btn svg {
  flex-shrink: 0;
}

/* ============================================================
   HEADER
   ============================================================ */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--header-h);
  /* Start transparent over hero, becomes solid after scroll (JS handles class) */
  background: transparent;
  transition: background 0.3s;
}

/* When scrolled past hero */
.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.header__inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.header__logo img {
  height: 64px;
  width: 400px;
}

.header__nav-list {
  display: flex;
  align-items: center;
  gap: 40px;
}

.header__nav-list a {
  font-family: var(--f-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.21;
  color: var(--c-white);
  transition: color 0.2s;
  white-space: nowrap;
}
.header__nav-list a:hover,
.header__nav-list .is-active a {
  color: var(--c-green);
}

/* スクロール後：白背景なのでリンクをダーク色に切り替え */
.site-header.is-scrolled .header__nav-list a {
  color: var(--c-black);
}
.site-header.is-scrolled .header__nav-list a:hover,
.site-header.is-scrolled .header__nav-list .is-active a {
  color: var(--c-green);
}

/* ============================================================
   HEADER SUBMENU（PC用ドロップダウン）
   ============================================================ */
.header__nav-list > li {
  position: relative;
}

/* サブメニュー本体：初期非表示 */
.c-sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  list-style: none;
  padding: 8px 12px;
  margin: 0;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
  z-index: 10;
  width: 670px;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px 0;
}

/* 親 li ホバー時にサブメニューをグリッド表示 */
.header__nav-list > li:hover .c-sub-menu {
  display: grid;
}

/* 1列レイアウト（会社案内・CSR など項目数が少ないサブメニュー） */
.c-sub-menu--col1 {
  grid-template-columns: 1fr;
  width: auto;
  min-width: 220px;
  left: 0;
  transform: none;
}

.c-sub-menu li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 20px;
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 14px;
  color: var(--c-black);
  white-space: nowrap;
  text-decoration: none;
  transition: color 0.2s, background 0.2s;
}

/* テキスト下線：span に付与してテキスト幅のみ */
.c-sub-menu li a span {
  border-bottom: 1px solid var(--c-green);
  padding-bottom: 2px;
}

/* 右端の ▶ アイコン */
.c-sub-menu li a::after {
  content: '▶';
  font-size: 10px;
  color: var(--c-green);
  margin-left: 12px;
  flex-shrink: 0;
}

.c-sub-menu li a:hover {
  color: var(--c-green);
  background: #f5f5f5;
}

/* ドロワー サブメニュー（モバイル用） */
.drawer__sub-list {
  list-style: none;
  padding: 0 0 0 52px;
  margin: 0;
  /* 初期：折りたたみ非表示 */
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: max-height 0.4s ease, opacity 0.35s ease;
}

/* 親 li に .is-sub-open が付いたらふわっと展開 */
.drawer__list li.is-sub-open .drawer__sub-list {
  max-height: 900px; /* 15項目対応（約40px×15≈600px）に余裕を持たせた値 */
  opacity: 1;
}

.drawer__sub-list li {
  padding: 0;
}

.drawer__sub-list li a {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 20px;
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  display: block;
  padding: 8px 0;
  transition: color 0.2s;
  letter-spacing: 0;
}

.drawer__sub-list li:last-child a {
  padding-bottom: 16px;
}

.drawer__sub-list li a:hover {
  color: var(--c-green);
}

/* サブメニューを持つ親アイテムの矢印 */
.drawer__list li.has-sub .drawer__item-inner::after {
  content: '▼';
  font-size: 11px;
  color: var(--c-green);
  margin-left: auto;
  transition: transform 0.35s ease;
  line-height: 1;
}

.drawer__list li.has-sub.is-sub-open .drawer__item-inner::after {
  transform: rotate(180deg);
}

/* ============================================================
   HAMBURGER BUTTON（デフォルト非表示 → 1200px以下で表示）
   ============================================================ */
.nav-toggle {
  display: none; /* style_1200.css で flex に切り替え */
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 200;
}

.nav-toggle__bar {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--c-white);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s,
    background 0.3s;
}

/* スクロール後：白背景なのでバーをダーク色に */
.site-header.is-scrolled .nav-toggle__bar {
  background: var(--c-black);
}

/* × アイコン（メニューオープン時） */
.nav-toggle.is-open .nav-toggle__bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(2) {
  opacity: 0;
}
.nav-toggle.is-open .nav-toggle__bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================================
   DRAWER（フルスクリーン・大文字メニュー）
   ============================================================ */
.drawer {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: #083587; /* 企業カラー */
  z-index: 150;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* center→flex-start：コンテンツ超過時に上部が見切れるのを防ぐ */
  padding: 80px 8vw 60px;
  overflow-y: auto;
  box-sizing: border-box;
  /* 初期状態：非表示 */
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease;
}

.drawer.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* 閉じるボタン */
.drawer__close {
  position: absolute;
  top: 28px;
  right: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  background: transparent;
  border: none;
  cursor: pointer;
  transition: transform 0.3s;
}

.drawer__close:hover {
  transform: rotate(90deg);
}

.drawer__close-bar {
  display: block;
  width: 28px;
  height: 2px;
  background: #ffffff;
  border-radius: 2px;
  position: absolute;
  transition: background 0.2s;
}

.drawer__close-bar:nth-child(1) {
  transform: rotate(45deg);
}
.drawer__close-bar:nth-child(2) {
  transform: rotate(-45deg);
}

.drawer__close:hover .drawer__close-bar {
  background: var(--c-green);
}

/* メニューリスト */
.drawer__list {
  display: flex;
  flex-direction: column;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0;
}

.drawer__list li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden; /* アニメーション用 */
}

.drawer__list li:first-child {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* 各アイテム：初期位置（下にオフセット）→ is-open で定位置へ */
.drawer__item-inner {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 8px;
  transform: translateY(48px);
  opacity: 0;
  transition:
    transform 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.5s ease;
  cursor: pointer;
}

.drawer.is-open .drawer__item-inner {
  transform: translateY(0);
  opacity: 1;
}

/* stagger：nth-child で順番に遅延 */
.drawer.is-open .drawer__list li:nth-child(1) .drawer__item-inner {
  transition-delay: 0.08s;
}
.drawer.is-open .drawer__list li:nth-child(2) .drawer__item-inner {
  transition-delay: 0.14s;
}
.drawer.is-open .drawer__list li:nth-child(3) .drawer__item-inner {
  transition-delay: 0.2s;
}
.drawer.is-open .drawer__list li:nth-child(4) .drawer__item-inner {
  transition-delay: 0.26s;
}
.drawer.is-open .drawer__list li:nth-child(5) .drawer__item-inner {
  transition-delay: 0.32s;
}
.drawer.is-open .drawer__list li:nth-child(6) .drawer__item-inner {
  transition-delay: 0.38s;
}
.drawer.is-open .drawer__list li:nth-child(7) .drawer__item-inner {
  transition-delay: 0.44s;
}
.drawer.is-open .drawer__list li:nth-child(8) .drawer__item-inner {
  transition-delay: 0.50s;
}

/* 番号 */
.drawer__num {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-green);
  letter-spacing: 0.05em;
  min-width: 28px;
  transition: color 0.2s;
}

/* メニューテキスト */
.drawer__list a {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 48px;
  color: #ffffff;
  letter-spacing: -0.01em;
  transition:
    color 0.2s,
    letter-spacing 0.3s;
  text-decoration: none;
}

/* ホバー：テキストが緑に＋番号が白に */
.drawer__item-inner:hover .drawer__num {
  color: #ffffff;
}
.drawer__item-inner:hover .drawer__list a,
.drawer__list li:hover > .drawer__item-inner a {
  color: var(--c-green);
  letter-spacing: 0.02em;
}

/* オーバーレイ：フルスクリーンドロワーなので使用しない */
.drawer-overlay {
  display: none;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  display: flex;
  flex-direction: column;
  min-height: 910px;
}

.hero__media {
  flex: 0 0 auto;
  width: 100%;
  height: 910px;
  overflow: hidden;
}

.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

/* Overlay body sits on top of the image using negative margin */
.hero__body {
  position: relative;
  margin-top: -910px; /* overlap the image */
  height: 910px;
  display: flex;
  align-items: center;
  padding-inline-start: 215px;
  padding-inline-end: var(--gutter);
  /* allow the image below to show through */
  pointer-events: none;
}

.hero__body > * {
  pointer-events: auto;
}

.hero__content {
  padding-inline: 0;
  max-width: none;
}

.hero__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.21;
  color: var(--c-white);
}

/* Recruit CTA box (top-right in hero) */
.hero__recruit-cta {
  position: absolute;
  right: 46px;
  bottom: 43px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  width: 257px;
  height: 98px;
  background: var(--c-white);
  border: 2px solid var(--c-white);
  border-radius: 10px;
  overflow: hidden;
  transition: opacity 0.2s;
}
.hero__recruit-cta:hover {
  opacity: 0.85;
}

/* 左カラム：画像＋テキストオーバーレイ */
.hero__recruit-label {
  position: relative;
  flex: 1;
  overflow: hidden;
}

.hero__recruit-label img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.5;
}

.hero__recruit-label__text {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-black);
  letter-spacing: 0.03em;
}

/* 右カラム：Join us（上）＋矢印ボタン（下） */
.hero__recruit-right {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 8px 12px;
  flex-shrink: 0;
}

.hero__recruit-sub {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 13px;
  color: var(--c-black);
  white-space: nowrap;
}

.hero__recruit-icon {
  display: flex;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--c-white);
  padding-block: 140px;
}

.about__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about__left {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.about__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.5;
  color: var(--c-black);
}

.about__figure {
  position: relative;
  display: block;
  width: 100%;
  padding-top: 56.25%; /* 16:9 ratio hack */
  overflow: hidden;
}

.about__figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about__play {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 71px;
  height: 71px;
  border-radius: 50%;
  border: 4px solid var(--c-white);
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.about__play:hover {
  background: rgba(0, 0, 0, 0.5);
}

/* ── ABOUT 動画埋め込み ──────────────────────────────────────────── */
.about__video-wrap {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 56.25%; /* 16:9 */
}
.about__video-wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.about__right {
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-block-start: 40px; /* align with heading visually */
}

.about__text {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
}

/* ============================================================
   SERVICE
   ============================================================ */
.service {
  background: var(--c-gray-bg);
  padding-block: 130px;
}

.service__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

/* Header row: 2-column */
.service__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.service__header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service__header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block-start: 12px;
}

/* Cards: 3-column grid */
.service__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

.service-card {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}

/* Card image */
.service-card__figure {
  position: relative;
  overflow: hidden;
  padding-top: 150%; /* 2:3 ratio hack */
}

.service-card__figure img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.service-card:hover .service-card__figure img {
  transform: scale(1.05);
}

/* Dark gradient overlay at bottom of image */
.service-card__figure::after {
  content: "";
  display: block;
  position: absolute;
  inset-block-end: 0;
  inset-inline: 0;
  height: 50%;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.7) 0%, transparent 100%);
  pointer-events: none;
}

.service-card__caption {
  position: absolute;
  inset-block-start: 0;
  inset-inline: 0;
  padding: 24px 28px;
  z-index: 1;
}

.service-card__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-white);
  line-height: 1.21;
  margin-bottom: 4px;
}

.service-card__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 40px;
  line-height: 1.21;
  color: var(--c-white);
}

/* メニューリスト：通常時は下に隠れてスライドアップ */
.service-card__list {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  transform: translateY(100%);
  transition: transform 0.4s ease;
  z-index: 2;
}

.service-card:hover .service-card__list {
  transform: translateY(0);
}

.service-card__item {
  display: flex;
  align-items: center;
  background: var(--c-green);
  border-top: 1px solid #c3c3c3;
}

.service-card__item a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 0 28px;
  height: 70px;
  font-family: var(--f-inter);
  font-weight: 600;
  font-size: 18px;
  color: var(--c-white);
  transition: background 0.15s;
}

.service-card__item a:hover {
  background: var(--c-green-dark);
}

.arrow-icon {
  flex-shrink: 0;
}

/* ============================================================
   NEWS
   ============================================================ */
.news {
  background: var(--c-white);
  padding-block: 130px;
}

.news__inner {
  display: flex;
  flex-direction: column;
  gap: 58px;
}

.news__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Filter tabs */
.news__filter {
  display: flex;
  gap: 20px;
}

.news__tab {
  padding: 12px 24px;
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.45;
  color: var(--c-black);
  border: 1px solid var(--c-gray-mid);
  background: var(--c-white);
  border-radius: 32px;
  transition:
    background 0.15s,
    color 0.15s;
}

.news__tab.is-active,
.news__tab:hover {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
  z-index: 1;
}

/* News slider wrapper */
.news__slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.news__slider-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-gray-mid);
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-black);
  transition:
    background 0.15s,
    color 0.15s;
  cursor: pointer;
}
.news__slider-btn:hover {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}
.news__slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

/* Viewport: clips overflowing cards */
.news__viewport {
  flex: 1;
  overflow: hidden;
  border: 1px solid #9d9d9d;
}

/* Track: slides horizontally */
.news__track {
  display: flex;
  transition: transform 0.4s ease;
}

/* カード幅はJSで設定 */
.news-card {
  flex-shrink: 0;
  min-width: 0;
  border-right: 1px solid #d9d9d9;
  box-sizing: border-box;
}
.news-card:last-child {
  border-right: none;
}

.news-card__link {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  padding: 20px 24px;
  transition: opacity 0.2s;
  height: 100%;
}
.news-card__link:hover {
  opacity: 0.75;
}

/* Fixed square image */
.news-card__figure {
  flex-shrink: 0;
  width: 110px;
  height: 110px;
  overflow: hidden;
  background: var(--c-gray-bg);
}

.news-card__figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.news-card__category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.news-card__category-tag {
  display: inline-block;
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-green);
  border: 1px solid var(--c-green);
  padding: 2px 10px;
  border-radius: 110px;
}

.news-card__title {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.55;
  color: var(--c-black);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.news-card__date {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 13px;
  color: var(--c-gray-text);
}

/* Progress bar */
.news__progress {
  height: 3px;
  background: var(--c-gray-mid);
  position: relative;
}
.news__progress-fill {
  display: block;
  height: 100%;
  width: var(--fill-w, 33%);
  background: var(--c-green);
  transition: width 0.4s ease;
}

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

/* ============================================================
   COMPANY
   ============================================================ */
.company {
  background: var(--c-gray-bg);
  padding-block: 130px;
}

.company__inner {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.company__header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.company__header-left {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.company__header-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-block-start: 12px;
}

/* Two photos side by side */
.company__photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.company__photo {
  position: relative;
  overflow: hidden;
  padding-top: 75%; /* 4:3 ratio hack */
}

.company__photo img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

/* ============================================================
   BLOG
   ============================================================ */
.blog {
  background: var(--c-white);
  padding-block: 0 !important;
  margin-bottom: 150px;
}

.blog__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  margin-top: 150px;
}

.blog__header {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* Blog slider */
.blog__slider {
  display: flex;
  align-items: center;
  gap: 16px;
}

.blog__slider-btn {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--c-gray-mid);
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-black);
  transition:
    background 0.15s,
    color 0.15s;
  cursor: pointer;
}
.blog__slider-btn:hover {
  background: var(--c-green);
  color: var(--c-white);
  border-color: var(--c-green);
}
.blog__slider-btn:disabled {
  opacity: 0.3;
  cursor: default;
}

.blog__viewport {
  flex: 1;
  overflow: hidden;
}

.blog__track {
  display: flex;
  gap: 0;
  transition: transform 0.4s ease;
}

/* カード幅はJSで設定 */
.blog-card {
  flex-shrink: 0;
  min-width: 0;
  box-sizing: border-box;
  padding-inline-end: 24px;
}

.blog-card__link {
  display: flex;
  flex-direction: column;
  gap: 30px;
  transition: opacity 0.2s;
}
.blog-card__link:hover {
  opacity: 0.75;
}

.blog-card__figure {
  position: relative;
  overflow: hidden;
  padding-top: 66.67%; /* 3:2 ratio hack */
}

.blog-card__figure img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s;
}
.blog-card__link:hover .blog-card__figure img {
  transform: scale(1.03);
}

.blog-card__body {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.blog-card__category {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.blog-card__category-tag {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-green);
  border: 1px solid var(--c-green);
  display: inline-block;
  padding: 2px 10px;
  border-radius: 110px;
}

.blog-card__title {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.45;
  color: var(--c-black);
}

.blog-card__date {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-black);
}

/* Blog list */
.blog__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-top: 3px solid var(--c-gray-mid);
  padding-block-start: 24px;
}

.blog-item__link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  transition: opacity 0.2s;
}
.blog-item__link:hover {
  opacity: 0.75;
}

.blog-item__category {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-green);
  border: 1px solid var(--c-green);
  display: inline-block;
  padding: 2px 10px;
  width: fit-content;
}

.blog-item__title {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 20px;
  line-height: 1.45;
  color: var(--c-black);
}

.blog-item__date {
  font-family: var(--f-noto);
  font-weight: 600;
  font-size: 15px;
  color: var(--c-black);
}

/* Progress bar */
.blog__progress {
  height: 3px;
  background: var(--c-gray-mid);
  position: relative;
}
.blog__progress-fill {
  display: block;
  height: 100%;
  width: var(--fill-w, 33%);
  background: var(--c-green);
  transition: width 0.4s ease;
}

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

/* ============================================================
   CTA SPLIT (CONTACT | RECRUIT)
   ============================================================ */
.cta-split {
  border-top: 1px solid var(--c-gray);
  border-bottom: 1px solid var(--c-gray);
}

.cta-split__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.cta-split__panel {
  padding-block: 120px;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
}

.cta-split__panel--contact {
  background: var(--c-white);
  border-right: 1px solid var(--c-gray);
}

.cta-split__panel--contact,
.cta-split__panel--recruit {
  background: var(--c-white);
  position: relative;
  overflow: hidden;
}

.cta-split__recruit-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
}

.cta-split__panel--contact:hover .cta-split__recruit-bg,
.cta-split__panel--recruit:hover .cta-split__recruit-bg {
  opacity: 0.9;
}

.cta-split__panel--contact .cta-split__content,
.cta-split__panel--recruit .cta-split__content {
  position: relative;
  z-index: 1;
}

.cta-split__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cta-split__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 50px;
  line-height: 1.21;
  color: var(--c-blue);
}

.cta-split__heading--white {
  color: var(--c-white);
}

.cta-split__link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: var(--c-blue);
  transition: opacity 0.2s;
}
.cta-split__link:hover {
  opacity: 0.7;
}
.cta-split__link--white {
  color: var(--c-white);
}

.cta-split__link-icon {
  flex-shrink: 0;
}

/* ボタン通常時：緑丸・白矢印 */
.cta-btn-circle {
  fill: #17902d;
  transition: fill 0.2s;
}
.cta-btn-arrow {
  stroke: #ffffff;
  transition: stroke 0.2s;
}

/* CONTACT / RECRUIT：パネル全体ホバーで白丸・緑矢印・白文字 */
.cta-split__panel--contact:hover .cta-btn-circle,
.cta-split__panel--recruit:hover .cta-btn-circle {
  fill: #ffffff;
}

.cta-split__panel--contact:hover .cta-btn-arrow,
.cta-split__panel--recruit:hover .cta-btn-arrow {
  stroke: #17902d;
}

.cta-split__panel--contact .cta-split__heading,
.cta-split__panel--contact .cta-split__link-text,
.cta-split__panel--recruit .cta-split__heading,
.cta-split__panel--recruit .cta-split__link-text {
  transition: color 0.5s ease;
}

.cta-split__panel--contact:hover .cta-split__heading,
.cta-split__panel--contact:hover .cta-split__link-text,
.cta-split__panel--recruit:hover .cta-split__heading,
.cta-split__panel--recruit:hover .cta-split__link-text {
  color: #ffffff;
}

.cta-split__link-text {
  display: block;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  margin-top: 8px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--c-white);
}

.footer__body {
  padding-block: 48px 10px;
  border-top: 1px solid var(--c-gray);
}

.footer__body-inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  border-bottom: 1px solid var(--c-gray);
  padding-bottom: 120px;
}

.footer__info {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo img {
  height: 53px;
  width: 331px;
}

.footer__address {
  font-family: var(--f-inter);
  font-weight: 600;
  font-size: 16px;
  line-height: 1.21;
  color: var(--c-black);
}

.footer__nav {
  padding-block-start: 8px;
}

.footer__nav-list {
  display: flex;
  gap: 34px;
  flex-wrap: wrap;
  margin-left: 80px;
  margin-bottom: 15px;
}

.footer__nav-list a {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-gray-text);
  transition: color 0.2s;
}
.footer__nav-list a:hover {
  color: var(--c-black);
}

/* Footer bar */
.footer__bar {
  background: var(--c-blue);
  padding: 20px 0px;
}

.footer__bar-inner {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 45px;
}

.footer__copyright {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 13px;
  line-height: 1.21;
  color: var(--c-white);
}

.footer__privacy {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.21;
  color: var(--c-white);
  transition: opacity 0.2s;
}
.footer__privacy:hover {
  opacity: 0.75;
}

/* レスポンシブスタイルは style_responsive.css に分離しました */

/* ============================================================
   ASBESTOS PAGE (アスベスト調査・分析)
   ============================================================ */

/* PAGE HERO
   ------------------------------------------------------------ */
.page-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
}

.page-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.page-hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.page-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 53, 135, 0.29);
}

.page-hero__body {
  position: relative;
  z-index: 1;
  height: 100%;
  display: flex;
  align-items: flex-end;
  padding-block-end: 60px;
  padding-block-start: var(--header-h);
}

.page-hero__content {
  position: absolute;
  left: 202px;
  bottom: 20px;
  padding-inline: 0;
  max-width: none;
  margin-inline: 0;
}

.page-hero__label-group {
  position: absolute;
  left: 202px;
  top: 239px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.page-hero__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: var(--c-white);
  letter-spacing: 0.04em;
}

.page-hero__ja {
  font-family: var(--f-noto);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-white);
  margin-top: 4px;
}

.page-hero__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.21;
  color: var(--c-white);
  margin-top: 40px;
}

/* PAGE LAYOUT — 2 COLUMN
   ------------------------------------------------------------ */
.page-layout {
  background: var(--c-white);
  padding-block: 80px;
}

.page-layout__inner {
  display: grid;
  grid-template-columns: 826px 280px;
  gap: 80px;
  align-items: start;
  justify-content: center;
}

/* PAGE CONTENT (LEFT COLUMN)
   ------------------------------------------------------------ */
.page-content {
  width: 100%;
  max-width: 826px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  min-width: 0;
}

/* Breadcrumb */
.service-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 13px;
  color: var(--c-black);
  padding-block: 12px;
  border-bottom: 1px solid #c9c9c9;
}

.service-breadcrumb__sep::before {
  content: ">";
  color: var(--c-gray-text);
}

.service-breadcrumb__item--current {
  font-weight: 700;
}

/* Quote */
.asb-quote {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
  border: none;
  padding: 0;
}

/* Description */
.asb-desc {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
}

/* Section headings */
.asb-section-heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 34px;
  line-height: 2;
  color: var(--c-black);
}

.asb-subsection-heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
}

/* Blue info bar */
.asb-info-bar {
  background: var(--c-blue);
  color: var(--c-white);
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.5;
  padding: 12px 24px;
  text-align: center;
}

/* Work examples */
.asb-examples {
  border: 1px solid #000;
  padding: 24px 32px;
}

.asb-examples__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 40px;
  list-style: none;
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
}

/* Construction images gallery */
.asb-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 262px));
  column-gap: 16px;
  row-gap: 45px;
  margin-block: 45px;
  justify-content: center;
}

.asb-gallery__item {
  width: 262px;
  height: 203px;
  margin: 0;
  overflow: hidden;
}

.asb-gallery__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

/* 2-column image gallery (採取+分析コース) */
.asb-gallery2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-block: 32px;
}

.asb-gallery2__item {
  margin: 0;
}

/* padding-top hack: 220/370 = 59.46% */
.asb-gallery2__img-wrap {
  position: relative;
  height: 0;
  padding-top: 59.46%;
  overflow: hidden;
}

.asb-gallery2__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

.asb-gallery2__item figcaption {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.asb-gallery2__title {
  font-family: var(--f-noto);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-black);
}

.asb-gallery2__desc {
  font-family: var(--f-noto);
  font-size: 14px;
  font-weight: 400;
  color: var(--c-black);
}

/* 3-column image gallery (事前調査コース) */
.asb-gallery3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.asb-gallery3__item {
  margin: 0;
}

/* padding-top hack: 3/4 = 75% */
.asb-gallery3__img-wrap {
  position: relative;
  height: 0;
  padding-top: 75%;
  overflow: hidden;
}

.asb-gallery3__item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: auto;
}

.asb-gallery3__item figcaption {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.asb-gallery3__title {
  font-family: var(--f-noto);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-black);
}

.asb-gallery3__desc {
  font-family: var(--f-noto);
  font-size: 16px;
  font-weight: 400;
  color: var(--c-black);
}

/* Notice box (事前調査義務化テキスト) */
.asb-notice-box {
  background: #dfe4ed;
  padding: 32px 95px;
  text-align: left;
  margin: 0 auto;
  width: 100%;
  max-width: 832px;
  box-sizing: border-box;
}

.asb-notice-box p {
  font-family: var(--f-noto);
  font-size: 16px;
  font-weight: 400;
  line-height: 30px;
  color: var(--c-black);
  margin: 0;
}

/* 資格一覧・加入団体 */
.asb-qualifications {
  margin-block-start: 56px;
}

.asb-qualifications__heading {
  font-family: var(--f-noto);
  font-size: 34px;
  font-weight: 700;
  color: var(--c-black);
  margin: 0 0 28px;
}

.asb-qualifications__lead {
  font-family: var(--f-noto);
  font-size: 20px;
  font-weight: 700;
  color: var(--c-black);
  margin: 0 0 28px;
}

.asb-qualifications__list {
  list-style: none;
  padding: 0;
  margin: 0 0 120px 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.asb-qualifications__list li {
  font-family: var(--f-noto);
  font-size: 16px;
  font-weight: 700;
  color: var(--c-black);
  padding-inline-start: 1.2em;
  position: relative;
  line-height: 1.7;
}

.asb-qualifications__list li::before {
  content: "・";
  position: absolute;
  left: 0;
}

/* Main service image */
.asb-main-image {
  margin: 0;
  overflow: hidden;
}

.asb-main-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
  display: block;
}

/* CTA Box */
.asb-cta-box {
  background: #dfe4ed;
  padding: 48px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asb-cta-box__quote {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
  text-align: center;
  color: var(--c-black);
  margin: 0;
  border: none;
  padding: 0;
}

.asb-cta-box__text {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
  text-align: center;
  color: var(--c-black);
}

.asb-cta-box__btns {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Buttons */
.btn-asb {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 380px;
  height: 80px;
  padding: 0 32px;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-white);
  text-decoration: none;
  transition:
    background 0.2s,
    color 0.2s,
    border-color 0.2s;
}

.btn-asb--green {
  background: #07891f;
  border: 1px solid #07891f;
  border-radius: 40px;
}

.asb-download__btn {
  border-radius: 0;
}

.btn-asb--green:hover {
  background: var(--c-white);
  color: #07891f;
  border-color: #07891f;
}

.btn-asb__icon {
  flex-shrink: 0;
}

.btn-asb__download-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  flex-shrink: 0;
  /* 通常時：白アイコンをそのまま表示 */
  filter: brightness(0) invert(1);
}

.btn-asb--green:hover .btn-asb__download-icon {
  /* ホバー時：白→緑(#07891F)に変換 */
  filter: brightness(0) invert(1) sepia(1) saturate(4) hue-rotate(100deg)
    brightness(0.85);
}

/* COURSE SECTION
   ------------------------------------------------------------ */
.asb-section-heading--courses {
  margin-top: 20px;
}

.asb-courses {
  display: grid;
  grid-template-columns: repeat(3, 260px);
  gap: 20px;
  justify-content: center;
}

.asb-course {
  width: 260px;
  height: 251px;
  overflow: hidden;
  box-shadow: 2px 4px 12px rgba(0, 0, 0, 0.15);
  text-decoration: none;
  display: flex;
  flex-direction: column;
  padding-bottom: 6px;
}

.asb-course--blue {
  background: #6fa9de;
}
.asb-course--green {
  background: #70bc87;
}
.asb-course--olive {
  background: #c4b754;
}

.asb-course__illust {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 16px 10px;
  height: 120px;
  flex-shrink: 0;
}

.asb-course__illust img {
  max-width: 100px;
  max-height: 96px;
  width: auto;
  height: auto;
}

.asb-course__body {
  background: var(--c-white);
  margin: 0 10px;
  padding: 12px 10px 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

.asb-course__name {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-black);
  display: flex;
  align-items: center;
  gap: 2px;
}

.asb-course__num {
  font-family: var(--f-noto);
  font-weight: 700;
}

.asb-course__desc {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-black);
  line-height: 1.6;
}

.asb-course__arrow-link {
  display: block;
  text-align: center;
  margin: auto auto 0;
  width: fit-content;
  padding-bottom: 8px;
}

.asb-course__arrow {
  display: block;
  width: 24px;
  height: auto;
  transition: transform 0.3s ease;
}

.asb-course:hover .asb-course__arrow {
  animation: arrow-bounce 0.6s ease infinite;
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

.asb-course-note--blue {
  background: #6fa9de;
}
.asb-course-note--green {
  background: #70bc87;
}
.asb-course-note--olive {
  background: #c4b754;
}

.asb-course-note {
  scroll-margin-top: calc(var(--header-h) + 24px);
}

.asb-course-note {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-white);
  padding: 12px 24px;
  width: 100%;
}

.asb-sample-note {
  font-family: var(--f-inter);
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  color: var(--c-black);
}

/* STEP FLOW
   ------------------------------------------------------------ */
.asb-steps {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  padding-top: 40px;
}

.asb-step {
  position: relative;
  width: 127px;
  height: 197px;
  flex-shrink: 0;
  background: var(--c-blue);
  padding: 48px 14px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-sizing: border-box;
  align-items: center;
}

.asb-step--green,
.asb-steps--green .asb-step {
  background: #3f9258;
}

.asb-steps--green .asb-step__arrow::before,
.asb-steps--green .asb-step__arrow::after {
  background: #083587;
}

.asb-steps--green .asb-step__label,
.asb-steps--green .asb-step__num {
  color: #083587;
}

/* STEP flow ③ (olive / 6 steps — fits 826px) */
.asb-steps--olive {
  max-width: 826px;
}

.asb-steps--olive .asb-step {
  background: #9d6e18;
  width: 127px; /* ①② と統一 */
}

.asb-steps--olive .asb-step__arrow {
  width: 10px; /* 6ステップ分を826px内に収めるため縮小 */
  margin-right: 2px;
}

.asb-steps--olive .asb-step__arrow::before,
.asb-steps--olive .asb-step__arrow::after {
  background: #083587;
}

.asb-steps--olive .asb-step__label,
.asb-steps--olive .asb-step__num {
  color: #083587;
}

.asb-step__circle {
  position: absolute;
  top: -38px;
  left: 50%;
  transform: translateX(-50%);
  width: 76px;
  height: 76px;
  border-radius: 50%;
  background: #dfe4ed;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-shrink: 0;
  z-index: 1;
}

.asb-step__label {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-blue);
  line-height: 1.3;
}

.asb-step__num {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--c-blue);
}

.asb-step__title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 15px;
  color: var(--c-white);
  line-height: 1.4;
  margin: 0;
}

.asb-step__desc {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 11px;
  line-height: 1.6;
  color: var(--c-white);
  margin: 0;
}

/* Chevron arrow ">" between steps */
.asb-step__arrow {
  flex-shrink: 0;
  position: relative;
  width: 28px;
  height: 44px;
  margin-right: 10px;
}

.asb-step__arrow::before,
.asb-step__arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 20px;
  height: 3px;
  background: var(--c-blue);
  border-radius: 1px;
  top: 50%;
  margin-top: -1.5px;
  transform-origin: 100% 50%;
}

.asb-step__arrow::before {
  transform: rotate(-38deg);
}

.asb-step__arrow::after {
  transform: rotate(38deg);
}

/* DOWNLOAD BUTTON
   ------------------------------------------------------------ */
.asb-download {
  display: flex;
  justify-content: center;
}

.asb-download__btn {
  min-width: 320px;
}

/* SPEED SECTION
   ------------------------------------------------------------ */
.asb-speed {
  margin-top: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
  border: 1.5px solid var(--c-black);
  padding: 24px 16px 16px;
}

.asb-speed__header {
  background: var(--c-blue);
  color: var(--c-white);
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  padding: 10px 36px;
  text-align: center;
  margin-bottom: 8px;
}

.asb-speed__chart {
  display: block;
  width: 100%;
  max-width: 560px;
  height: auto;
}

/* SEND ADDRESS SECTION
   ------------------------------------------------------------ */
.asb-send {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.asb-send__download {
  display: flex;
  justify-content: center;
}

.asb-send__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-black);
  margin: 0;
}

.asb-send__highlight {
  color: #ff0000;
  font-weight: 700;
}

.asb-address-box {
  background: #eaecf2;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.asb-address-box__header {
  display: flex;
  align-items: center;
  gap: 12px;
}

.asb-address-box__icon {
  flex-shrink: 0;
}

.asb-address-box__title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-black);
  margin: 0;
}

.asb-address-box__address {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 2;
  color: var(--c-black);
  font-style: normal;
}

.asb-address-box__note {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 12px;
  line-height: 1.6;
  color: var(--c-black);
  text-align: right;
  margin: 0;
}

/* SIDEBAR
   ------------------------------------------------------------ */
.service-sidebar {
  position: sticky;
  top: calc(var(--header-h) + 20px);
}

.sidebar-nav {
  border: 1px solid #dedede;
  overflow: hidden;
}

.sidebar-nav__header {
  background: var(--c-blue);
  color: var(--c-white);
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.5;
  padding: 8px 24px;
}

.sidebar-nav__list {
  list-style: none;
}

.sidebar-nav__item {
  border-bottom: 1px solid #dedede;
}

.sidebar-nav__item:last-child {
  border-bottom: none;
}

.sidebar-nav__link {
  display: block;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.5;
  padding: 4px 24px;
  color: var(--c-black);
  transition:
    color 0.2s,
    background 0.2s;
}

.sidebar-nav__link:hover {
  color: var(--c-blue);
  background: #f5f8ff;
}

.sidebar-nav__item.is-active .sidebar-nav__link,
.sidebar-nav__link[aria-current="page"] {
  color: var(--c-blue);
  font-weight: 900;
}

/* レスポンシブスタイルは style_responsive.css に分離しました */

.soudan-madoguti {
  color: #07891f;
  text-align: center;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 40px; /* 250% */
}

.komarigoto {
  color: #000;
  text-align: left;
  font-family: Inter;
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 40px; /* 250% */
}

/* ============================================================
   NEWS PAGE (お知らせ一覧 / 記事詳細)
   使用ファイル: content/wp-content/themes/fujii/archive.php
                content/wp-content/themes/fujii/single.php
   ============================================================ */

/* ── ヒーロー ─────────────────────────────────────────────────── */
.p-news-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-image: url("../images/news/news-hero-bg.webp");
  background-size: cover;
  background-position: center;
  padding-block-start: var(--header-h);
}

.p-news-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 111, 151, 0.37);
  z-index: 0;
}

.p-news-hero__body {
  position: relative;
  z-index: 1;
  padding-inline-start: 202px;
  padding-block-start: 155px; /* y:239 from frame top */
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-news-hero__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-white);
}

.p-news-hero__ja {
  font-family: var(--f-inter);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-white);
}

/* ── パンくず ─────────────────────────────────────────────────── */
.p-breadcrumb {
  border-bottom: 1px solid #c9c9c9;
  padding-block: 18px;
}

.p-breadcrumb .container {
  padding-inline-start: 200px;
}

.p-breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-breadcrumb__item {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.07em;
  color: var(--c-black);
}

.p-breadcrumb__item a {
  color: var(--c-black);
  transition: color 0.2s;
}
.p-breadcrumb__item a:hover {
  color: var(--c-green);
}

.p-breadcrumb__item--sep {
  color: var(--c-black);
  font-size: 11px;
}

.p-breadcrumb__item--current {
  color: var(--c-black);
}

/* ── セクション共通 ─────────────────────────────────────────────── */
.p-news {
  background: var(--c-white);
  padding-block: 100px 140px;
}

.p-news__inner {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding-inline-start: 200px;
}

/* ── セクション見出し ─────────────────────────────────────────── */
.p-news__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-news__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: var(--c-blue);
  letter-spacing: 0.04em;
}

.p-news__heading-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
}

/* ── カテゴリフィルタータブ ─────────────────────────────────────── */
.p-news__filter {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.p-news__tab {
  display: inline-block;
  padding: 8px 24px;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 15px;
  line-height: 2.8;
  color: #12913c;
  border: 1px solid #12913c;
  border-radius: 100px;
  background: var(--c-white);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.p-news__tab:hover,
.p-news__tab.is-active {
  background: #12913c;
  color: var(--c-white);
}

/* "すべて" タブのアクティブ状態（選択なし = すべて） */
.p-news__tab:first-child.is-active {
  background: var(--c-white);
  color: var(--c-black);
  border-color: var(--c-black);
}

/* ── ニュースリスト ─────────────────────────────────────────────── */
.p-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-news-item {
  border-top: 1px solid #a4a4a4;
}

.p-news-item:last-child {
  border-bottom: 1px solid #a4a4a4;
}

.p-news-item__link {
  display: flex;
  align-items: center;
  gap: 40px;
  padding-block: 28px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-news-item__link:hover {
  opacity: 0.75;
}

/* サムネイル */
.p-news-item__thumb {
  flex-shrink: 0;
  width: 240px;
  height: 180px;
  background: #f6f6f6;
  border-radius: 13px;
  overflow: hidden;
  margin: 0;
}

.p-news-item__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 13px;
}

.p-news-item__thumb-placeholder {
  display: block;
  width: 100%;
  height: 100%;
  background: #f6f6f6;
}

/* コンテンツエリア */
.p-news-item__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.p-news-item__meta {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 2.8;
  color: var(--c-black);
}

.p-news-item__date {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-black);
}

.p-news-item__cat {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 15px;
  color: var(--c-black);
  margin-right: 4px;
}

.p-news-item__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 2.1;
  color: var(--c-black);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* 空メッセージ */
.p-news__empty {
  padding-block: 60px;
  text-align: center;
  font-family: var(--f-noto);
  font-size: 16px;
  color: var(--c-gray-text);
}

/* ── ページネーション ─────────────────────────────────────────── */
.p-news-pagination {
  display: flex;
  justify-content: center;
  margin-block-start: 60px;
}

.p-news-pagination__list {
  display: flex;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-news-pagination__num {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  background: #eaede7;
  color: var(--c-blue);
  text-decoration: none;
  transition:
    background 0.15s,
    color 0.15s;
}

.p-news-pagination__num:hover {
  background: var(--c-blue);
  color: var(--c-white);
}

.p-news-pagination__num--active {
  background: var(--c-blue);
  color: var(--c-white);
  cursor: default;
}

.p-news-pagination__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  text-decoration: none;
  transition: opacity 0.2s;
}
.p-news-pagination__arrow:hover {
  opacity: 0.6;
}

.p-news-pagination__ellipsis {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-blue);
  line-height: 1;
}

/* ── 記事詳細ページ ─────────────────────────────────────────────── */
.p-article {
  background: var(--c-white);
  padding-block: 80px 140px;
}

/* セクション見出し + 記事本体をまとめるコンテナ */
.p-article__container {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-inline-start: 200px;
}

/* ── セクション見出し ─────────────────────────────────────────── */
.p-article__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-article__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: var(--c-blue);
  letter-spacing: 0.04em;
}

.p-article__heading-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
}

/* ── 記事本体（幅を絞って中央寄せ） ─────────────────────────── */
.p-article__body {
  max-width: 1240px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── メタ情報（日付 + カテゴリ） ─────────────────────────────── */
.p-article__meta {
  display: flex;
  align-items: center;
  gap: 24px;
}

.p-article__date {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 2.8;
  color: var(--c-black);
}

.p-article__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
}

.p-article__cat {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 13px;
  line-height: 1;
  color: var(--c-black);
  border: 1px solid var(--c-black);
  padding: 0 12px;
  height: 20px;
  border-radius: 100px;
}

/* ── 記事タイトル ─────────────────────────────────────────────── */
.p-article__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 36px;
  line-height: 1.1667;
  color: var(--c-black);
}

/* ── アイキャッチ ─────────────────────────────────────────────── */
.p-article__thumbnail {
  width: 100%;
  overflow: hidden;
  margin: 0;
  padding-top: 66.67%; /* 3:2 */
  position: relative;
}

.p-article__thumbnail img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ── 本文 ────────────────────────────────────────────────────── */
.p-article__content {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.625;
  color: var(--c-black);
}

.p-article__content p {
  margin-block: 1em;
}
.p-article__content h2 {
  font-size: 22px;
  font-weight: 700;
  margin-block: 2em 1em;
}
.p-article__content h3 {
  font-size: 18px;
  font-weight: 700;
  margin-block: 1.5em 0.75em;
}
.p-article__content img {
  max-width: 100%;
  height: auto;
}
.p-article__content a {
  color: var(--c-blue);
  text-decoration: underline;
}

/* ── PREV / NEXT ナビゲーション ─────────────────────────────── */
.p-article__nav {
  max-width: 1240px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 160px;
  padding-block-start: 40px;
  border-top: 1px solid #c9c9c9;
}

.p-article__nav-prev,
.p-article__nav-next {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  color: var(--c-blue);
  text-decoration: none;
  transition: opacity 0.2s;
}

.p-article__nav-prev:hover,
.p-article__nav-next:hover {
  opacity: 0.7;
}

.p-article__nav--disabled {
  color: #c9c9c9;
  pointer-events: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
}

/* ============================================================
   CONTACT PAGE (お問い合わせ)
   使用ファイル: content/wp-content/themes/fujii/page-contact.php
                contact.html
   ============================================================ */

/* ── ヒーロー ─────────────────────────────────────────────────── */
.p-contact-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-image: url("../images/contact/contact-hero-bg.webp");
  background-size: cover;
  background-position: center;
  padding-block-start: var(--header-h);
}

.p-contact-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 111, 151, 0.37);
  z-index: 0;
}

.p-contact-hero__body {
  position: relative;
  z-index: 1;
  padding-inline-start: 202px;
  padding-block-start: 155px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-contact-hero__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-white);
}

.p-contact-hero__ja {
  font-family: var(--f-inter);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-white);
}

/* ── セクション ─────────────────────────────────────────────────── */
.p-contact {
  background: var(--c-white);
  padding-block: 100px 140px;
}

.p-contact__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── セクション見出し ─────────────────────────────────────────── */
.p-contact__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-contact__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: var(--c-blue);
  letter-spacing: 0.04em;
}

.p-contact__heading-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
}

/* ── 説明文 ─────────────────────────────────────────────────────── */
.p-contact__desc {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 20px;
  line-height: 2.1;
  color: var(--c-black);
}

.p-contact__desc p {
  margin: 0;
}

/* ── TEL ────────────────────────────────────────────────────────── */
.p-contact__tel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-contact__tel-num {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-black);
}

.p-contact__tel-hours {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-black);
}

/* ── フォーム共通 ─────────────────────────────────────────────── */
.p-contact-form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 各フォーム行（ラベル + インプット） */
.p-contact-form__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  border-top: 1px solid #c9c9c9;
  padding-block: 14px 14px;
  gap: 0 16px;
}

.p-contact-form__row--textarea {
  align-items: flex-start;
  padding-block-start: 20px;
}

.p-contact-form__row:last-of-type {
  border-bottom: 1px solid #c9c9c9;
}

/* ラベル */
.p-contact-form__label {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-black);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

/* 必須マーク */
.p-contact-form__required {
  color: #ff0000;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}

/* フィールド（インプット + エラー） */
.p-contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ※ + インプットを横並びにする行ラッパー */
.p-contact-form__input-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.p-contact-form__input-row > .p-contact-form__input,
.p-contact-form__input-row > .p-contact-form__select-wrap,
.p-contact-form__input-row > .p-contact-form__textarea {
  flex: 1;
}

/* テキストエリア行: ※ を上揃え */
.p-contact-form__row--textarea .p-contact-form__input-row {
  align-items: flex-start;
  padding-block-start: 19px;
}

/* テキスト・メール・TEL インプット */
.p-contact-form__input {
  width: 100%;
  height: 60px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding-inline: 16px;
  font-family: var(--f-noto);
  font-size: 16px;
  color: var(--c-black);
  transition: background 0.15s;
  outline: none;
}
.p-contact-form__input:focus {
  background: #e4eaf2;
  outline: 2px solid var(--c-blue);
  outline-offset: -2px;
}

/* セレクト */
.p-contact-form__select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.p-contact-form__select {
  width: 100%;
  height: 60px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding-inline: 16px 48px;
  font-family: var(--f-noto);
  font-size: 16px;
  color: var(--c-black);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: background 0.15s;
}
.p-contact-form__select:focus {
  background: #e4eaf2;
  outline: 2px solid var(--c-blue);
  outline-offset: -2px;
}

.p-contact-form__select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* テキストエリア */
.p-contact-form__textarea {
  width: 100%;
  height: 258px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: var(--f-noto);
  font-size: 16px;
  color: var(--c-black);
  resize: vertical;
  outline: none;
  transition: background 0.15s;
  line-height: 1.75;
}
.p-contact-form__textarea:focus {
  background: #e4eaf2;
  outline: 2px solid var(--c-blue);
  outline-offset: -2px;
}

/* エラーメッセージ */
.p-contact-form__error {
  font-family: var(--f-noto);
  font-size: 13px;
  color: #ff0000;
  margin: 0;
}

.has-error .p-contact-form__input,
.has-error .p-contact-form__select,
.has-error .p-contact-form__textarea {
  outline: 2px solid #ff0000;
  outline-offset: -2px;
}

/* ── 個人情報同意 ─────────────────────────────────────────────── */
.p-contact-form__privacy-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc(190px + 36px);
  gap: 8px;
  padding-block: 32px;
}

.p-contact-form__privacy-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
  color: var(--c-black);
}

/* ネイティブチェックボックスを非表示にしてカスタム描画 */
.p-contact-form__checkbox {
  position: static;
  opacity: 1;
  width: 18px;
  height: 18px;
  cursor: pointer;
}

.p-contact-form__checkbox-custom {
  display: none;
}

/* ── 送信ボタン ─────────────────────────────────────────────────── */
.p-contact-form__submit-wrap {
  display: flex;
  justify-content: flex-start;
  padding-left: calc(190px + 36px);
  padding-block-start: 8px;
}

.p-contact-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891f;
  border: 1px solid #07891f;
  border-radius: 2px;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-white);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}
.p-contact-form__submit:hover {
  background: var(--c-white);
  color: #07891f;
}

/* ── 送信完了メッセージ ─────────────────────────────────────────── */
.p-contact-thanks {
  background: #edf7ee;
  border: 1px solid var(--c-green);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  font-family: var(--f-noto);
  font-size: 18px;
  line-height: 2;
  color: var(--c-black);
}

/* ============================================================
   ASBESTOS FORM PAGE (アスベスト調査・分析 ご依頼フォーム)
   使用ファイル: content/wp-content/themes/fujii/page-asbestos-form.php
                asbestos-form.html
   ============================================================ */

/* ── ヒーロー ─────────────────────────────────────────────────── */
.p-asbestos-form-hero {
  position: relative;
  height: 600px;
  background-image: url("../images/news/news-hero-bg.webp");
  background-size: cover;
  background-position: center;
}

.p-asbestos-form-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(18, 111, 151, 0.37);
}

.p-asbestos-form-hero__body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-inline-start: var(--gutter);
  padding-block-start: 180px;
  max-width: calc(var(--max-w) + var(--gutter) * 2);
  margin-inline: auto;
}

.p-asbestos-form-hero__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-white);
}

.p-asbestos-form-hero__ja {
  font-family: var(--f-inter);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-white);
}

/* ── セクション全体 ───────────────────────────────────────────── */
.p-asbestos-form {
  background: var(--c-white);
  padding-block: 100px 140px;
}

/* セクション見出し + コンテンツをまとめるコンテナ */
.p-asbestos-form__container {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ── セクション見出し ─────────────────────────────────────────── */
.p-asbestos-form__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-asbestos-form__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: var(--c-blue);
  letter-spacing: 0.04em;
}

.p-asbestos-form__heading-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
}

/* ── フォームコンテンツ（幅を絞って中央寄せ） ─────────────────── */
.p-asbestos-form__content {
  max-width: 900px;
  margin-inline: auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* ── 説明文 ─────────────────────────────────────────────────────── */
.p-asbestos-form__desc {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 20px;
  line-height: 2.1;
  color: var(--c-black);
}

.p-asbestos-form__desc p {
  margin: 0;
}

/* ── TEL ─────────────────────────────────────────────────────────── */
.p-asbestos-form__tel {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-asbestos-form__tel-num {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-black);
}

.p-asbestos-form__tel-hours {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-black);
}

/* ── フォーム ────────────────────────────────────────────────────── */
.p-asbestos-form__form {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 各フォーム行（ラベル + フィールド） */
.p-asbestos-form__row {
  display: grid;
  grid-template-columns: 190px 1fr;
  align-items: center;
  gap: 0 16px;
  margin-block-end: 20px;
}

.p-asbestos-form__row--textarea {
  align-items: flex-start;
  padding-block-start: 8px;
}

.p-asbestos-form__row--no-label {
  margin-block-start: -12px;
}

/* ラベル */
.p-asbestos-form__label {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-black);
  display: flex;
  align-items: center;
  gap: 4px;
  flex-wrap: wrap;
}

.p-asbestos-form__label-spacer {
  display: block;
  width: 190px;
}

/* 必須マーク */
.p-asbestos-form__required {
  color: #ff0000;
  font-size: 20px;
  line-height: 1;
  flex-shrink: 0;
  width: 16px;
  text-align: center;
}


/* フィールド（インプット + エラー） */
.p-asbestos-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

/* ※ + インプットを横並びにする行ラッパー */
.p-asbestos-form__input-row {
  display: flex;
  align-items: center;
  gap: 4px;
}

.p-asbestos-form__input-row > .p-asbestos-form__input,
.p-asbestos-form__input-row > .p-asbestos-form__select-wrap,
.p-asbestos-form__input-row > .p-asbestos-form__textarea {
  flex: 1;
}

/* テキストエリア行: ※ を上揃え */
.p-asbestos-form__row--textarea .p-asbestos-form__input-row {
  align-items: flex-start;
  padding-block-start: 19px;
}

/* テキスト・メール・TEL インプット */
.p-asbestos-form__input {
  width: 100%;
  height: 60px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding-inline: 16px;
  font-family: var(--f-noto);
  font-size: 16px;
  color: var(--c-black);
  transition: background 0.15s;
  outline: none;
}

.p-asbestos-form__input:focus {
  background: #e4eaf2;
  outline: 2px solid var(--c-blue);
  outline-offset: -2px;
}

/* セレクト */
.p-asbestos-form__select-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}

.p-asbestos-form__select {
  width: 100%;
  height: 60px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding-inline: 16px 48px;
  font-family: var(--f-noto);
  font-size: 16px;
  color: var(--c-black);
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  outline: none;
  transition: background 0.15s;
}

.p-asbestos-form__select:focus {
  background: #e4eaf2;
  outline: 2px solid var(--c-blue);
  outline-offset: -2px;
}

.p-asbestos-form__select-arrow {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  display: flex;
  align-items: center;
}

/* テキストエリア */
.p-asbestos-form__textarea {
  width: 100%;
  height: 200px;
  background: #f0f0f0;
  border: none;
  border-radius: 8px;
  padding: 16px;
  font-family: var(--f-noto);
  font-size: 16px;
  color: var(--c-black);
  resize: vertical;
  outline: none;
  transition: background 0.15s;
  line-height: 1.75;
}

.p-asbestos-form__textarea:focus {
  background: #e4eaf2;
  outline: 2px solid var(--c-blue);
  outline-offset: -2px;
}

/* エラーメッセージ */
.p-asbestos-form__error {
  font-family: var(--f-noto);
  font-size: 13px;
  color: #ff0000;
  margin: 0;
}

.has-error .p-asbestos-form__input,
.has-error .p-asbestos-form__select,
.has-error .p-asbestos-form__textarea {
  outline: 2px solid #ff0000;
  outline-offset: -2px;
}

/* ── 個人情報同意 ─────────────────────────────────────────────── */
.p-asbestos-form__privacy-row {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: calc(190px + 36px);
  gap: 8px;
  padding-block: 32px;
}

.p-asbestos-form__privacy-label {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 15px;
  line-height: 2;
  color: var(--c-black);
}

.p-asbestos-form__checkbox {
  -webkit-appearance: none;
  appearance: none;
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.p-asbestos-form__checkbox-custom {
  display: block;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  border-radius: 2px;
  background: #d9d9d9;
  border: 1px solid #aaa;
  position: relative;
  transition: background 0.15s;
}

.p-asbestos-form__checkbox:checked + .p-asbestos-form__checkbox-custom {
  background: var(--c-blue);
  border-color: var(--c-blue);
}

.p-asbestos-form__checkbox:checked + .p-asbestos-form__checkbox-custom::after {
  content: "";
  position: absolute;
  left: 3px;
  top: 0px;
  width: 6px;
  height: 10px;
  border: 2px solid #fff;
  border-top: none;
  border-left: none;
  transform: rotate(45deg);
}

/* ── 送信ボタン ─────────────────────────────────────────────────── */
.p-asbestos-form__submit-wrap {
  display: flex;
  justify-content: flex-start;
  padding-left: calc(190px + 36px);
  padding-block-start: 8px;
}

.p-asbestos-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891f;
  border: 1px solid #07891f;
  border-radius: 2px;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: var(--c-white);
  cursor: pointer;
  transition:
    background 0.2s,
    color 0.2s;
}

.p-asbestos-form__submit:hover {
  background: var(--c-white);
  color: #07891f;
}

/* ── 送信完了メッセージ ─────────────────────────────────────────── */
.p-asbestos-form__thanks {
  background: #edf7ee;
  border: 1px solid var(--c-green);
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  font-family: var(--f-noto);
  font-size: 18px;
  line-height: 2;
  color: var(--c-black);
}

/* ============================================================
   COMPANY PAGE (company.html)
   会社案内 — 会社概要
   ============================================================ */

/* ── HERO ──────────────────────────────────────────────────── */
.p-company-hero {
  position: relative;
  height: 600px;
  overflow: hidden;
  background-image: url("../images/company/company-hero-bg.webp");
  background-size: cover;
  background-position: center;
}

.p-company-hero__overlay {
  position: absolute;
  inset: 0;
  background: rgba(8, 53, 135, 0.29);
  z-index: 0;
}

.p-company-hero__body {
  position: relative;
  z-index: 1;
  height: 100%;
}

/* ヒーロー内区切り線（Figma y:521） */
.p-company-hero__body::before {
  content: '';
  position: absolute;
  bottom: 79px;
  left: 0;
  right: 0;
  height: 1px;
  background: #c9c9c9;
}

.p-company-hero__label {
  position: absolute;
  left: 202px;
  top: 239px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-company-hero__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-white);
}

.p-company-hero__ja {
  font-family: var(--f-noto);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-white);
}

.p-company-hero__title {
  position: absolute;
  left: 202px;
  bottom: 20px;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.21;
  color: var(--c-white);
}

/* ── MAIN SECTION ──────────────────────────────────────────── */
.p-company {
  background: var(--c-white);
  padding-block: 100px 140px;
}

.p-company__inner {
  /* padding-inline: 200px; */
  padding: 0 70px;
  display: flex;
  flex-direction: column;
  gap: 100px;
}

/* ── SECTION BLOCK ─────────────────────────────────────────── */
.p-company-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p-company-section__head {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-company-section__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-company-section__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
}

/* ── COMPANY TABLE ─────────────────────────────────────────── */
.p-company-table {
  width: 100%;
  border-collapse: collapse;
}

.p-company-table tr {
  border-bottom: 1px solid #d9d9d9;
}

.p-company-table tr:first-child {
  border-top: 1px solid #d9d9d9;
}

.p-company-table th {
  width: 190px;
  padding: 24px 24px 24px 0;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-black);
  text-align: left;
  vertical-align: top;
  white-space: nowrap;
}

.p-company-table td {
  padding: 24px 0;
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--c-black);
  vertical-align: top;
}

.p-company-table td a {
  color: var(--c-blue);
  text-decoration: underline;
  word-break: break-all;
}

.p-company-table td a:hover {
  color: var(--c-green);
}

.p-company-table__address-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-company-table__branch-name {
  font-weight: 700;
  display: block;
}

.p-company-table__address-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.p-company-table__map-link {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  color: var(--c-black);
  font-family: var(--f-inter);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s;
}

.p-company-table__map-link:hover {
  opacity: 0.6;
  color: var(--c-black);
}

.p-company-table__map-icon {
  width: 16px;
  height: 16px;
  fill: #e53935;
  flex-shrink: 0;
}

.p-company-table__tel {
  display: block;
}

.p-company-table__license-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-company-table__license-list li {
  line-height: 2;
}

.p-company-table__tr--last {
  position: relative;
}

.p-company-table__note {
  position: absolute;
  left: 0;
  bottom: -75px;
  color: #000;
  font-family: var(--f-inter);
  font-size: 16px;
  font-weight: 700;
  line-height: 75px;
  white-space: nowrap;
}

.p-company-table__tr--last td {
  padding-bottom: 24px;
}

/* ── MAP ───────────────────────────────────────────────────── */
.p-company-map {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 94px;
  margin-top: 50px;
}

.p-company-map__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-company-map__label {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-company-map__name {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.21;
  color: var(--c-blue);
  text-align: center;
}

.p-company-map__address {
  font-family: var(--f-noto);
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-black);
  margin: 0;
  text-align: center;
  font-weight: bold;
}

.p-company-map__frame {
  width: 100%;
  height: 421px;
  border: none;
  display: block;
}

/* ── HISTORY SCROLL HINT ───────────────────────────────────── */
.p-company-history-hint {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 100;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(8, 53, 135, 0.82);
  border-radius: 999px;
  font-family: var(--f-noto);
  font-size: 13px;
  color: #fff;
  pointer-events: none;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.3s;
}

/* ── HISTORY TABLE ─────────────────────────────────────────── */
.p-company-history-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.p-company-history {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

.p-company-history tbody tr {
  border-bottom: 1px solid #d9d9d9;
}

.p-company-history tbody tr:first-child {
  border-top: 1px solid #d9d9d9;
}

.p-company-history__th {
  padding: 16px 20px;
  background: var(--c-blue);
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.6;
  color: #fff;
  text-align: left;
  vertical-align: middle;
}

.p-company-history__th--date {
  width: 220px;
}

.p-company-history__th--cs,
.p-company-history__th--fujii {
  width: calc((100% - 220px) / 2);
}

.p-company-history__date {
  width: 220px;
  padding: 18px 24px 18px 0;
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.75;
  color: var(--c-black);
  vertical-align: top;
  white-space: nowrap;
}

.p-company-history__event {
  padding: 18px 20px 18px 0;
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: var(--c-black);
  vertical-align: top;
}

/* ── QUALIFICATIONS ────────────────────────────────────────── */
.p-company-qual {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 101px;
  align-items: start;
}

.p-company-qual__col {
  display: flex;
  flex-direction: column;
}

.p-company-qual__item {
  padding: 14px 0;
  border-bottom: 1px solid #d9d9d9;
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.21;
  color: var(--c-black);
}

.p-company-qual__sub li {
  font-family: var(--f-noto);
}

.p-company-qual__note {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 14px;
  line-height: 1.875;
  color: var(--c-black);
  padding: 6px 0 0;
}

/* ── ORG CHART ─────────────────────────────────────────────── */
.p-company-org {
  width: 100%;
}

.p-company-org__img {
  width: 100%;
  height: auto;
  display: block;
}

.p-company-qual__col .p-company-qual__item:first-child {
  border-top: 1px solid #d9d9d9;
}

.p-company-qual__sub {
  list-style: none;
  padding: 6px 0 0 0;
  margin: 0;
}

.p-company-qual__sub li {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: var(--c-black);
}

/* ============================================================
   PRIVACY POLICY PAGE (プライバシーポリシー)
   ============================================================ */

.p-privacy {
  padding-block: 100px 120px;
}

.p-privacy__inner {
  max-width: 1400px;
  padding-inline-start: 200px;
}

.p-privacy__head {
  margin-bottom: 68px;
}

.p-privacy__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-privacy__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
  margin-top: 8px;
}

.p-privacy__body {
  max-width: 1191px;
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 2.778;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-privacy__intro {
  margin-bottom: 2em;
}

.p-privacy__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.p-privacy__list li {
  display: flex;
  gap: 0.5em;
}

.p-privacy__list li + li {
  margin-top: 0.5em;
}

.p-privacy__num {
  flex-shrink: 0;
}

/* ============================================================
   PAGE — GREETING (ごあいさつ/経営理念)
   ============================================================ */
.p-greeting {
  padding-block: 100px 160px;
  background: var(--c-white);
}

.p-greeting__inner {
  /* padding-inline: 200px; */
  padding: 0 70px;
}

.p-greeting__section + .p-greeting__section {
  margin-top: 160px;
}

.p-greeting__section-head {
  margin-bottom: 68px;
}

.p-greeting__section-heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-greeting__section-heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
  margin-top: 8px;
}

/* ごあいさつ body */
.p-greeting-greeting__body {
  display: flex;
  gap: 60px;
  align-items: flex-start;
}

.p-greeting-greeting__text-wrap {
  flex: 1;
  min-width: 0;
}

.p-greeting-greeting__text p {
  font-family: var(--f-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 2.222;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-greeting-greeting__text p + p {
  margin-top: 1.5em;
}

.p-greeting-greeting__sig {
  font-family: var(--f-inter);
  font-weight: 400;
  font-size: 20px;
  line-height: 2;
  letter-spacing: 0.1em;
  color: var(--c-black);
  margin-top: 48px;
  text-align: right;
}

.p-greeting-greeting__photo {
  flex-shrink: 0;
  width: 400px;
  margin: 0;
}

.p-greeting-greeting__photo img {
  width: 100%;
  height: auto;
  display: block;
}

/* 会社理念 */
.p-greeting-philosophy__box {
  background: rgba(49, 124, 63, 0.13);
  padding: 60px 80px;
  text-align: center;
}

.p-greeting-philosophy__text {
  display: inline-block;
  text-align: left;
  font-family: 'Yuji Syuku', var(--f-noto), serif;
  font-weight: 400;
  font-size: 30px;
  line-height: 2.2;
  letter-spacing: 0.12em;
  color: var(--c-black);
}

.p-greeting-philosophy__text2 {
  text-align: right;
  font-family: 'Yuji Syuku', var(--f-noto), serif;
  font-weight: 400;
  font-size: 25px;
  line-height: 2.2;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

/* 経営方針 */
.p-greeting-policy__list {
  list-style: none;
  padding: 0;
  margin: 0;
  padding-left: 50px;
}

.p-greeting-policy__item + .p-greeting-policy__item {
  margin-top: 60px;
}

.p-greeting-policy__title,
.p-greeting-policy__body {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 30px;
  line-height: 2.222;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-greeting-policy__title {
  font-weight: 700;
  font-size: 40px;
}

/* ============================================================
   PAGE — MANAGEMENT PLAN (経営計画)
   ============================================================ */
.p-plan {
  padding-block: 100px 160px;
  background: var(--c-white);
}

.p-plan__inner {
  /* padding-inline: 200px; */
  padding: 0 70px;
}

.p-plan__head {
  margin-bottom: 68px;
}

.p-plan__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-plan__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
  margin-top: 8px;
}

.p-plan__body {
  padding-left: 145px;
}

.p-plan__subtitle {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.382;
  color: var(--c-black);
  margin-bottom: 40px;
}

.p-plan__text p {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 2.778;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-plan__text p + p {
  margin-top: 2em;
}

.p-plan__image-area {
  margin-top: 80px;
  margin-bottom: 80px;
  text-align: center;
}

.p-plan__image-area img {
  display: inline-block;
  max-width: 100%;
  width: 800px;
  height: auto;
}

.p-plan__closing {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 2.778;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

/* ============================================================
   PAGE — INFORMATION SECURITY POLICY (情報セキュリティ基本方針)
   ============================================================ */
.p-security {
  padding-block: 100px 160px;
  background: var(--c-white);
}

.p-security__inner {
  /* padding-inline: 200px; */
  padding: 0 70px;
}

.p-security__head {
  margin-bottom: 68px;
}

.p-security__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-security__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
  margin-top: 8px;
}

.p-security__body {
  padding-left: 145px;
}

.p-security__text p {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 18px;
  line-height: 2.778;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-security__text p + p {
  margin-top: 2em;
}

/* ============================================================
   CSR/社会貢献 PAGE
   ============================================================ */

.p-csr-social {
  background: var(--c-white);
  padding-top: 80px;
}

.p-csr-social__head {
  margin-bottom: 90px;
  padding-left: 258px;
}

.p-csr-social__title-ja {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.2;
  color: var(--c-blue);
}

.p-csr-social__title-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
  margin-top: 8px;
}

.p-csr-social__body {
  padding-left: 258px;
  margin-bottom: 100px;
}

.p-csr-social__lead {
  font-family: var(--f-inter);
  font-weight: 400;
  font-size: 18px;
  line-height: 2.222;
  letter-spacing: 0.1em;
  color: var(--c-black);
  margin-bottom: 60px;
}

.p-csr-social__photo {
  margin: 0;
}

.p-csr-social__photo img {
  display: block;
  width: 474px;
  height: 332px;
  object-fit: cover;
  margin: 0 auto;
}

/* カードラップ */
.p-csr-social__cards-wrap {
  background: var(--c-white);
  padding-bottom: 160px;
}

/* 2x2 カードグリッド */
.p-csr-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 1502px;
  margin: 0 auto;
  border-top: 1px solid #E3E3E3;
  border-left: 1px solid #E3E3E3;
}

.p-csr-cards__item {
  display: flex;
  align-items: flex-start;
  padding: 53px 40px 53px 51px;
  background: var(--c-white);
  text-decoration: none;
  border-right: 1px solid #E3E3E3;
  border-bottom: 1px solid #E3E3E3;
  transition: box-shadow 0.25s ease, transform 0.25s ease;
  position: relative;
}

.p-csr-cards__item:hover {
  box-shadow: 6px 6px 13px 0px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
  z-index: 1;
}

.p-csr-cards__item:active {
  box-shadow: 6px 6px 13px 0px rgba(0, 0, 0, 0.25);
  transform: translateY(-2px);
}

.p-csr-cards__img {
  flex-shrink: 0;
  width: 190px;
  height: 190px;
  margin: 0;
  margin-right: 50px;
  overflow: hidden;
}

.p-csr-cards__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-csr-cards__img--contain img {
  object-fit: contain;
  background: var(--c-white);
}

.p-csr-cards__content {
  flex: 1;
  min-width: 0;
}

.p-csr-cards__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.21;
  color: var(--c-green);
  margin-bottom: 24px;
}

.p-csr-cards__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.125;
  color: var(--c-black);
}

.p-csr-cards__item.is-active {
  box-shadow: 6px 6px 13px 0px rgba(0, 0, 0, 0.25);
  transform: translateY(-4px);
  z-index: 1;
}

/* ============================================================
   SDGs PAGE
   ============================================================ */
.p-sdgs {
  background: var(--c-white);
  padding-top: 80px;
}

.p-sdgs__inner {
  padding-bottom: 80px;
  text-align: center;
}

.p-sdgs__head {
  margin-bottom: 48px;
  text-align: left;
  margin-left: 130px;
}

.p-sdgs__title-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-sdgs__title-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  color: var(--c-blue);
  margin-top: 8px;
}

.p-sdgs__section-heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.0625;
  color: var(--c-black);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
  text-align: left;
}

.p-sdgs__intro {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--c-black);
  text-align: left;
  max-width: 1240px;
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.p-sdgs__photo {
  margin-bottom: 60px;
}

.p-sdgs__photo img {
  display: block;
  margin: 0 auto;
  width: 800px;
  height: 566px;
  object-fit: cover;
}

.p-sdgs__sub-heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.0625;
  color: var(--c-black);
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

/* SDGs アイテムグリッド */
.p-sdgs__items-wrap {
  padding: 60px 0 80px;
}

.p-sdgs-items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.p-sdgs-item {
  display: flex;
  align-items: flex-start;
  background: var(--c-white);
  box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.40);
  padding: 32px 28px 32px 0;
}

.p-sdgs-item--single {
  grid-column: 1 / 2;
}

.p-sdgs-item__img {
  flex-shrink: 0;
  width: 200px;
  height: 200px;
  overflow: hidden;
}

.p-sdgs-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-sdgs-item__body {
  flex: 1;
  min-width: 0;
  padding-top: 16px;
  padding-left: 20px;
  padding-right: 8px;
}

.p-sdgs-item__title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 1.6;
  color: var(--c-green);
  margin-bottom: 12px;
}

.p-sdgs-item__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: var(--c-black);
}

/* ============================================================
   ACTION PLAN PAGE（行動計画）
   ============================================================ */

.p-action-plan {
  background: var(--c-white);
  padding-top: 80px;
}

.p-action-plan__inner {
  padding-bottom: 140px;
}

.p-action-plan__head {
  margin-bottom: 60px;
  margin-left: 130px;
}

.p-action-plan__title-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-action-plan__title-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  letter-spacing: 0.02em;
  color: var(--c-blue);
  margin-top: 16px;
}

.p-action-plan__body {
  padding-left: 138px;
}

.p-action-plan__subtitle {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.0625;
  color: var(--c-black);
  margin-bottom: 40px;
}

.p-action-plan__intro {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 18px;
  line-height: 2.222;
  letter-spacing: 0.1em;
  color: var(--c-black);
  margin-bottom: 48px;
}

.p-action-plan__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-action-plan__text p + p {
  margin-top: 2.5em;
}

/* ===== KODOMO CAFETERIA PAGE (こども食堂) ===== */
.p-kodomo {
  background: var(--c-white);
  padding-top: 80px;
}

.p-kodomo__breadcrumb .container {
  padding-inline: 200px;
}

.p-kodomo__inner {
  padding-bottom: 0;
  padding-inline: 200px;
}

.p-kodomo__head {
  margin-bottom: 60px;
}

.p-kodomo__title-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: 0.04em;
  color: var(--c-blue);
}

.p-kodomo__title-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-blue);
  margin-top: 10px;
}

.p-kodomo__body {
  padding-left: 158px;
  margin-bottom: 92px;
}

.p-kodomo__subtitle {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.0625;
  color: var(--c-black);
  margin-bottom: 28px;
}

.p-kodomo__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 18px;
  line-height: 2.222;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-kodomo__images {
  display: flex;
  gap: 72px;
  justify-content: center;
  margin-bottom: 140px;
}

.p-kodomo__img-item {
  width: 551px;
  height: 735px;
  overflow: hidden;
  flex-shrink: 0;
}

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

/* ===== VOLUNTEER PAGE (ボランティア活動) ===== */
.p-volunteer {
  background: var(--c-white);
  padding-top: 80px;
}

.p-volunteer__breadcrumb .container {
  padding-inline: 200px;
}

.p-volunteer__inner {
  padding-bottom: 0;
  padding-inline: 200px;
}

.p-volunteer__head {
  margin-bottom: 60px;
}

.p-volunteer__title-ja {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: var(--c-blue);
}

.p-volunteer__title-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.21;
  color: var(--c-black);
  margin-top: 10px;
}

.p-volunteer__body {
  padding-left: 133px;
  margin-bottom: 0;
}

.p-volunteer__subtitle {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.0625;
  color: var(--c-black);
  margin-bottom: 28px;
}

.p-volunteer__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 18px;
  line-height: 2.22;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

.p-volunteer__divider {
  margin-left: 133px;
  height: 1px;
  background-color: var(--c-black);
  margin-top: 60px;
  margin-bottom: 65px;
}

.p-volunteer__images {
  margin-left: 133px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 120px 99px;
  margin-bottom: 140px;
}

.p-volunteer__img-item {
  overflow: hidden;
}

.p-volunteer__img-item img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   SERVICE TOP PAGE（事業内容トップ）
   ============================================================ */

/* ヘッダー常時白（ダークヒーローなしページ用） */
.site-header--force-white {
  background: var(--c-white) !important;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08) !important;
}
.site-header--force-white .header__nav-list a {
  color: var(--c-black) !important;
}
.site-header--force-white .header__nav-list a:hover {
  color: var(--c-green) !important;
}

/* ----- Intro Section ----- */
.p-service-intro {
  padding-block: 120px 100px;
}

.p-service-intro__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding-inline: 200px;
}

.p-service-intro__left {
  display: flex;
  flex-direction: column;
}

.p-service-intro__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  letter-spacing: -0.01em;
  color: var(--c-blue);
}

.p-service-intro__subtitle {
  font-family: var(--f-noto);
  font-weight: 900;
  font-size: 18px;
  line-height: 1.2;
  color: var(--c-blue);
  margin-top: 8px;
}

.p-service-intro__catch {
  font-family: var(--f-noto);
  font-weight: 900;
  font-size: 28px;
  line-height: 1.5;
  color: var(--c-black);
  margin-top: 63px;
}

.p-service-intro__right {
  display: flex;
  align-items: center;
}

.p-service-intro__text {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 40px;
  color: var(--c-black);
  margin-top: 250px;
}

/* ----- Hero Image ----- */
.p-service-hero {
  width: 100%;
  height: 795px;
  overflow: hidden;
}

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

/* ----- Service Sections ----- */
.p-service-section {
  background: var(--c-white);
}

.p-service-section--gray {
  background: var(--c-gray-bg);
}

.p-service-section__inner {
  padding-block: 100px 120px;
  padding-inline: 200px;
}

.p-service-section__head {
  margin-bottom: 60px;
}

.p-service-section__cat-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  letter-spacing: 0.12em;
  color: var(--c-blue);
  text-transform: uppercase;
  margin-top: 8px;
}

.p-service-section__cat-ja {
  font-family: var(--f-noto);
  font-weight: 900;
  font-size: 68px;
  line-height: 1.2;
  color: var(--c-blue);
}

.p-service-section__waku {
  display: flex;
  gap: 150px;
  margin: 100px 0px;
}

.p-service-section__waku2 {
  display: flex;
  gap: 55px;
  margin: 100px 0px;
}

.p-service-section__waku3 {
  display: flex;
  gap: 155px;
  margin: 100px 0px;
}

.p-service-section__catch {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  color: var(--c-black);
  margin-top: 24px;
}

.p-service-section__desc {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 2;
  color: var(--c-black);
  margin-top: 30px;
  max-width: 900px;
}

/* ----- Service Rows ----- */
.p-service-rows {
  border: 1px solid #E3E3E3;
  background: #fff;
}

.p-service-row {
  display: flex;
  height: 290px;
  border-bottom: 1px solid #E3E3E3;
}

.p-service-row__divider {
  width: 1px;
  background: #f3f3f3;
  align-self: stretch;
  flex-shrink: 0;
}

.p-service-item {
  flex: 1;
  display: flex;
  align-items: center;
  padding: 0 48px;
  gap: 48px;
}

.p-service-item--empty {
  /* 空スロット：何も表示しない */
}

.p-service-item__img {
  width: 190px;
  height: 190px;
  flex-shrink: 0;
  overflow: hidden;
}

.p-service-item__img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 10px;
}

.p-service-item__img--placeholder {
  background: var(--c-gray);
  border-radius: 10px;
}

.p-service-item__content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.p-service-item__label {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.4;
  color: var(--c-green);
}

.p-service-item__text {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 34px;
  color: var(--c-black);
}

/* ============================================================
   DESIGN PAGE (design.html)
   ============================================================ */

/* Intro: title + description */
.p-design__intro {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-design__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

.p-design__desc {
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* Specialties section */
.p-design__specialties {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-design__section-heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-black);
  margin: 0;
}

.p-design__specialties-box {
  border: 1px solid #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 32px 40px;
}

.p-design__specialties-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-design__specialties-list2 {
  list-style: none;
  display: flex;
  gap: 16px;
}

.p-design__specialties-list li {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: var(--c-black);
}

.p-design__specialties-list2 li {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-black);
}

/* Gallery: 3列×2行 */
.p-design__gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.p-design__gallery-item {
  margin: 0;
  overflow: hidden;
}

.p-design__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* CTA button */
.p-design__cta {
  display: flex;
  justify-content: center;
}

.p-design__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891F;
  border-radius: 40px;
  color: #fff;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}

.p-design__cta-btn:hover {
  background: #05691a;
  opacity: 0.9;
}

/* ============================================================
   KEIRYO PAGE (keiryo.html) — 計量証明事業
   ============================================================ */

/* Page title */
.p-keiryo__title {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* 各サービスセクション（騒音 / 水質）: 縦積み */
.p-keiryo__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-keiryo__service-heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

.p-keiryo__service-desc {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* 騒音・振動調査: 2枚の画像を横並び */
.p-keiryo__service-gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.p-keiryo__service-gallery-item {
  margin: 0;
  overflow: hidden;
}

.p-keiryo__service-gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

/* 水質試験: SS / pH パラメータボックスを横並び */
.p-keiryo__params {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.p-keiryo__param {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-keiryo__param-label {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

.p-keiryo__param-box {
  border: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 30px;
}

.p-keiryo__param-img {
  margin: 0;
}

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

.p-keiryo__param-text {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* CTA button — centered */
.p-keiryo__cta {
  display: flex;
  justify-content: center;
}

.p-keiryo__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891F;
  border-radius: 40px;
  color: #fff;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: background 0.2s, opacity 0.2s;
}

.p-keiryo__cta-btn:hover {
  background: #05691a;
  opacity: 0.9;
}

/* ===== DOJO PAGE (土壌汚染対策法指定調査機関) ===== */
.p-dojo__title {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 34px;
  color: var(--c-text);
  line-height: 1.4;
}

.p-dojo__section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.center-text {
  text-align: center;
  width: 100%;
}

.p-dojo__section-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--c-text);
  line-height: 1.6;
}

.p-dojo__desc {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--c-text);
  line-height: 2.5;
}

.p-dojo__desc_fontbold {
  font-weight: bold;
}

.p-dojo__img-center {
  display: block;
  width: 400px;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.p-dojo__bullets {
  list-style: none;
  width: 400px;
  max-width: 100%;
  margin: 0 auto;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #DFE4ED;
  background-color: #DFE4ED;
}

.p-dojo__bullets li {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--c-text);
  line-height: 2;
  padding-left: 1em;
  text-indent: -1em;
}

.p-dojo__gray-box {
  background: #F6F6F6;
  padding: 30px 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.p-dojo__gray-box-heading {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: var(--c-text);
  text-align: center;
  line-height: 1.6;
}

.p-dojo__gray-box-body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: var(--c-text);
  line-height: 2.5;
}

.p-dojo__img-wide {
  margin: 0;
}

.p-dojo__img-wide img {
  width: 100%;
  height: auto;
  display: block;
}

.p-dojo__images-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 26px;
  align-items: start;
}

.p-dojo__images-pair-item {
  margin: 0;
}

.p-dojo__images-pair-item img {
  width: 100%;
  height: auto;
  display: block;
}

.p-dojo__cta {
  display: flex;
  justify-content: center;
}

.p-dojo__cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891F;
  border-radius: 40px;
  color: #fff;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.p-dojo__cta-btn:hover {
  background: #05691a;
  opacity: 0.9;
}

/* ============================================================
   施工管理試験 PAGE (shikoku-kanri.html)
   ============================================================ */

/* SECTION — メインコンテンツブロック */
.p-shikoku-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* サブセクション（土質試験 / 孔内流速測定） */
.p-shikoku-subsection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* メイン見出し (34px Noto Sans JP Bold) */
.p-shikoku__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* サブ見出し (20px Noto Sans JP Bold, line-height 2) */
.p-shikoku__subheading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

/* リード文 (16px Noto Sans JP Regular, line-height 2.5) */
.p-shikoku__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* ── 試験写真 3列グリッド ── */
.p-shikoku-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.p-shikoku-photos__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-shikoku-photos__img {
  width: 100%;
  overflow: hidden;
  background: #dfe4ed;
  margin: 0;
  /* アスペクト比 259:175 ≒ 3:2 を padding-top で維持 */
  position: relative;
  padding-top: 67.57%;
}

.p-shikoku-photos__img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 試験名ラベル (16px Noto Sans JP Bold, center) */
.p-shikoku-photos__label {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  text-align: center;
}

/* ============================================================
   補償業務 PAGE (hosho.html)
   ============================================================ */

/* SECTION — 家屋調査・地下水調査ブロック */
.p-hosho-section {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

/* メイン見出し (34px Noto Sans JP Bold) */
.p-hosho__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* リード文 (16px Noto Sans JP Regular, line-height 2.5) */
.p-hosho__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* サブ見出し (20px Noto Sans JP Bold, line-height 2) */
.p-hosho__subheading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

/* ── 家屋調査とは — 事前/事後 比較テーブル ── */
.p-hosho-table {
  border: 1px solid #dedede;
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}

.p-hosho-table__col {
  display: flex;
  flex-direction: column;
}

.p-hosho-table__col-head {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.5;
  text-align: center;
  color: var(--c-black);
  padding: 10px 0;
  margin: 0;
  background: #dfe4ed;
}

.p-hosho-table__sep {
  width: 1px;
  background: #dedede;
  align-self: stretch;
}

.p-hosho-table__col-text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  padding: 24px 28px;
}

/* ── 調査項目 — 写真グリッド ── */
.p-hosho-survey {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.p-hosho-survey__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 44px;
}

/* 1列行（外壁・基礎等の調査） */
.p-hosho-survey__row--single {
  grid-template-columns: 1fr;
  max-width: calc(50% - 22px);
}

.p-hosho-survey__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-hosho-survey__img {
  width: 100%;
  overflow: hidden;
  background: #dfe4ed;
  margin: 0;
}

.p-hosho-survey__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* 調査項目名 (16px Noto Sans JP Bold) */
.p-hosho-survey__label {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  text-align: center;
}

/* 調査説明文 (16px Noto Sans JP Regular) */
.p-hosho-survey__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  padding: 0 20px;
}

/* ============================================================
   非破壊試験・微破壊試験 PAGE (hihakaisiken.html)
   ============================================================ */

/* SECTION — メインコンテンツブロック */
.p-hihakaisiken-section {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

/* メイン見出し (34px Noto Sans JP Bold) */
.p-hihakaisiken__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* 概要説明文 (16px Noto Sans JP Regular, line-height 2.5) */
.p-hihakaisiken__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* 調査項目 サブセクション */
.p-hihakaisiken-items {
  display: flex;
  flex-direction: column;
  gap: 0;
}

/* 調査項目 見出し (20px Noto Sans JP Bold, line-height 2) */
.p-hihakaisiken__items-heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  margin: 0 0 32px;
}

/* ── 調査項目 2列グリッド ── */
.p-hihakaisiken-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px 44px;
  margin-bottom: 44px;
}

/* 最終行の単独アイテム（アンカーボルト） */
.p-hihakaisiken-single {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 44px;
}

/* 個別カード */
.p-hihakaisiken-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* カード画像 */
.p-hihakaisiken-card__img {
  width: 100%;
  overflow: hidden;
  background: #dfe4ed;
  margin: 0;
}

.p-hihakaisiken-card__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* カードタイトル (16px Noto Sans JP Bold) */
.p-hihakaisiken-card__title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  text-align: center;
}

/* カード説明文 (16px Noto Sans JP Regular) */
.p-hihakaisiken-card__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  padding: 0 20px;
}

/* ============================================================
   地質調査業 PAGE (chishitsu.html)
   ============================================================ */

.p-chishitsu-section {
  display: flex;
  flex-direction: column;
  gap: 64px;
}

/* メイン見出し (34px Noto Sans JP Bold) */
.p-chishitsu__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* サブセクション */
.p-chishitsu-subsection {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* サブ見出し (34px Noto Sans JP Bold) */
.p-chishitsu__subheading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* 説明文 (16px Noto Sans JP Regular, line-height 2.5) */
.p-chishitsu__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* 画像 + キャプション（単一） */
.p-chishitsu-photo {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 390px;
  max-width: 100%;
}

.p-chishitsu-photo__img {
  width: 100%;
  overflow: hidden;
  background: #dfe4ed;
  margin: 0;
}

.p-chishitsu-photo__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャプションタイトル (16px Noto Sans JP Bold) */
.p-chishitsu-photo__caption {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  text-align: center;
}

/* キャプション説明文 (16px Noto Sans JP Regular) */
.p-chishitsu-photo__text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  padding: 0 20px;
}

/* 2列画像グリッド */
.p-chishitsu-photos {
  display: grid;
  grid-template-columns: repeat(2, 390px);
  gap: 44px;
}

.p-chishitsu-photos__item {
  width: 100%;
  overflow: hidden;
  margin: 0;
}

.p-chishitsu-photos__item img {
  width: 100%;
  height: auto;
  display: block;
}

/* 現場管理 説明文（改行付き） */
.p-chishitsu__multi-lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* 業務実績ボタン */
.p-chishitsu__cta {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.p-chishitsu__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891f;
  border-radius: 40px;
  color: #fff;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

/* ============================================================
   点検 PAGE (tenken.html)
   ============================================================ */

.p-tenken-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* メイン見出し (34px Noto Sans JP Bold) */
.p-tenken__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* 概要説明文 (16px Noto Sans JP Regular, line-height 2.5) */
.p-tenken__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* ── 点検写真 3列グリッド ── */
.p-tenken-photos {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.p-tenken-photos__item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-tenken-photos__img {
  width: 100%;
  overflow: hidden;
  background: #dfe4ed;
  margin: 0;
}

.p-tenken-photos__img img {
  width: 100%;
  height: auto;
  display: block;
}

/* キャプション（中央揃え / 16px Noto Sans JP Bold） */
.p-tenken-photos__label {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  line-height: 2.25;
  color: var(--c-black);
  margin: 0;
  text-align: center;
}

/* 業務実績ボタン */
.p-tenken__cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.p-tenken__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891f;
  border-radius: 40px;
  color: #fff;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

/* ============================================================
   森林土木 PAGE (shinrin.html)
   ============================================================ */

.p-shinrin-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* 見出しグループ */
.p-shinrin__heading-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* メイン見出し */
.p-shinrin__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* サブタイトル */
.p-shinrin__subtitle {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* リード文 */
.p-shinrin__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* ── 業務内容セクション ── */
.p-shinrin-contents {
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.p-shinrin-contents__header {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-shinrin-contents__title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-black);
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 2px solid #07891f;
}

.p-shinrin-contents__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

/* ── 各サービスサブセクション ── */
.p-shinrin-subsection {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* サービス見出し（緑ボーダーアクセント） */
.p-shinrin__subheading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 22px;
  line-height: 1.5;
  color: var(--c-black);
  margin: 0;
  padding-left: 16px;
  border-left: 4px solid #07891f;
}

/* サービス説明文 */
.p-shinrin__desc {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* 写真 2列グリッド */
.p-shinrin-photos {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.p-shinrin-photos__item {
  width: 100%;
  height: 293px;
  overflow: hidden;
  margin: 0;
}

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

/* 業務実績ボタン */
.p-shinrin__cta {
  display: flex;
  justify-content: center;
  margin-top: 8px;
}

.p-design__cta-btn,
.p-keiryo__cta-btn,
.p-dojo__cta-btn,
.p-chishitsu__cta-btn,
.p-tenken__cta-btn,
.p-shinrin__cta-btn {
  width: 380px;
  flex-shrink: 0;
}

.p-shinrin__cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 380px;
  height: 80px;
  background: #07891f;
  border-radius: 40px;
  color: #fff;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-decoration: none;
}

/* ============================================================
   作業環境測定 PAGE (sakugyou.html)
   ============================================================ */

.p-sakugyou-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* メイン見出し (34px Noto Sans JP Bold) */
.p-sakugyou__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* 概要説明文 (16px Noto Sans JP Regular, line-height 2.5) */
.p-sakugyou__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* ── テーブルセクション ── */
.p-sakugyou-table-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-sakugyou-table__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

/* テーブル画像 */
.p-sakugyou-table-img {
  width: 100%;
}

.p-sakugyou-table-img img {
  width: 100%;
  height: auto;
  display: block;
}

/* ============================================================
   労働者派遣事業 PAGE
   ============================================================ */

.p-rodo-section {
  display: flex;
  flex-direction: column;
  gap: 60px;
}

/* メイン見出し (34px Noto Sans JP Bold) */
.p-rodo__heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

/* 概要説明文 */
.p-rodo__lead {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2.5;
  color: var(--c-black);
  margin: 0;
}

/* マージン率ボックス */
.p-rodo-info {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-rodo-info__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

/* 緑ボタン (380×80px, #07891F) */
.p-rodo-info__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: 380px;
  height: 80px;
  background: #07891F;
  border-radius: 2px;
  padding: 0 30px;
  text-decoration: none;
  transition: opacity 0.2s;
}

.p-rodo-info__btn:hover {
  opacity: 0.85;
}

.p-rodo-info__btn-icon {
  width: 28px;
  height: 26px;
  flex-shrink: 0;
}

.p-rodo-info__btn-text {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #ffffff;
  white-space: nowrap;
}

/* 各詳細セクション */
.p-rodo-detail {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-rodo-detail__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
  border-bottom: 2px solid #083587;
  padding-bottom: 8px;
}

.p-rodo-detail__body {
  width: 100%;
}

/* テーブル */
.p-rodo-detail__table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-noto);
  font-size: 15px;
  line-height: 1.8;
}

.p-rodo-detail__table th {
  width: 200px;
  padding: 14px 20px;
  background: #083587;
  color: #ffffff;
  font-weight: 700;
  font-size: 14px;
  text-align: left;
  vertical-align: top;
  border: 1px solid #083587;
  white-space: nowrap;
}

.p-rodo-detail__table td {
  padding: 14px 20px;
  border: 1px solid #d0d8e8;
  color: var(--c-black);
  vertical-align: top;
}

.p-rodo-detail__table tbody tr:nth-child(even) td {
  background: #f4f6fb;
}

/* サブ見出し（訓練内容など） */
.p-rodo-detail__sub-heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 16px;
  color: var(--c-black);
  margin: 0 0 12px;
}

/* キャリア形成テーブル（5列） */
.p-rodo-detail__table--career th,
.p-rodo-detail__table--career td {
  width: auto;
  white-space: normal;
  text-align: center;
  vertical-align: middle;
}

.p-rodo-detail__table--career th:first-child,
.p-rodo-detail__table--career td:first-child {
  text-align: left;
  width: 22%;
}

.p-rodo-detail__table--career thead th {
  background: #083587;
  color: #ffffff;
  font-weight: 700;
  font-size: 13px;
  padding: 12px 14px;
  border: 1px solid #083587;
  line-height: 1.6;
}

.p-rodo-detail__table--career tbody td {
  font-size: 14px;
  padding: 12px 14px;
  border: 1px solid #d0d8e8;
}

.p-rodo-detail__table--career tbody tr:nth-child(even) td {
  background: #f4f6fb;
}

.p-rodo-detail__table--career tbody tr:nth-child(odd) td {
  background: #ffffff;
}

/* ============================================================
   業務実績 PAGE  (works.html)
   ============================================================ */

/* ============================================================
   業務実績 PAGE — p-works
   ============================================================ */

/* 1カラムレイアウト（サイドバーなし） */
.p-works-layout {
  padding-block: 80px 120px;
}

/* ページタイトル */
.p-works-title {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 80px;
}

.p-works-title__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.2;
  color: #083587;
  margin: 0;
}

.p-works-title__en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #083587;
  margin: 0;
}

/* 年度セクション */
.p-works-section {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-works-section + .p-works-section {
  margin-top: 120px;
}

.p-works-section__heading {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.2;
  color: #083587;
  margin: 0 0 48px;
}

/* テーブル */
.p-works-table-wrap {
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding: 30px 50px;
  background: #FAFCFC;
  border: 1px solid #DDEEEC;
  box-sizing: border-box;
}

.p-works-table {
  width: 100%;
  min-width: 900px;
  border-collapse: collapse;
  font-family: var(--f-noto);
  font-size: 16px;
  line-height: 2;
}

.p-works-table thead tr {
  border-bottom: 1px solid #C9C9C9;
}

.p-works-table thead th {
  padding: 0 20px 0 0;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 2;
  color: var(--c-black);
  text-align: left;
  vertical-align: middle;
  white-space: nowrap;
}

.p-works-table tbody tr {
  border-bottom: 1px solid #C9C9C9;
}

.p-works-table tbody td {
  padding: 0 20px 0 0;
  color: var(--c-black);
  vertical-align: middle;
}

/* 列幅 */
.p-works-table__col-client   { width: 360px; white-space: nowrap; }
.p-works-table__col-name     { width: auto; }
.p-works-table__col-category { width: 260px; white-space: nowrap; }

/* ============================================================
   RECRUIT PAGE — p-recruit
   使用ファイル: recruit.html
   ============================================================ */

/* ---- Hero ---- */
.p-recruit__hero {
  position: relative;
  width: 100%;
  height: 910px;
  overflow: hidden;
}

/* 背景写真 */
.p-recruit__hero-media {
  position: absolute;
  inset: 0;
  margin: 0;
}

.p-recruit__hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* グラデーションオーバーレイ（白→水色→青） */
.p-recruit__hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(158deg, rgba(255, 255, 255, 0.92) 8%, rgba(15, 193, 206, 0.80) 60%, rgba(50, 77, 184, 0.70) 94%);
}

/* CSF 装飾文字コンテナ */
.p-recruit__hero-letters {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.p-recruit__hero-letter {
  position: absolute;
  opacity: 0.9;
}

/* CSF文字：1920px基準で自然サイズ(505×828 / 637×829 / 666×828)ちょうどになるvw値 */
/* → hero高さ910px・top:82px = 利用高さ828pxにぴったり収まり、下切れなし */
.p-recruit__hero-letter--c {
  left: 0;
  top: 82px;
  width: 26.30vw; /* 505/1920 */
  height: auto;
}

.p-recruit__hero-letter--s {
  left: 19vw;     /* 23.69vw → 左へシフト */
  top: 81px;
  width: 33.18vw; /* 637/1920 */
  height: auto;
}

.p-recruit__hero-letter--f {
  left: 47vw;     /* 55.38vw → 左へシフト */
  top: 82px;
  width: 34.69vw; /* 666/1920 */
  height: auto;
}

/* ヘッダー下区切り線 */
.p-recruit__hero-divider {
  position: absolute;
  top: 81px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-white);
}

/* テキストコンテンツ */
.p-recruit__hero-body {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

.p-recruit__hero-label-group {
  display: none;
}

.p-recruit__hero-catch {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 80px;
  line-height: 1.4;
  color: var(--c-black);
  letter-spacing: 0.06em;
  text-align: center;
  position: relative;
  top: 250px;
  right: 0;
}

/* ---- Worklife Section ---- */
.p-recruit__worklife {
  background: linear-gradient(214deg, rgba(168, 223, 79, 1) 0%, rgba(21, 153, 153, 1) 100%);
  padding-bottom: 0;
}

.p-recruit__worklife-body {
  max-width: 800px;
  margin: 0 auto;
  padding: 135px 40px 60px;
}

.p-recruit__worklife-label {
  display: inline-block;
  background: #000000;
  color: #ffffff;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  margin-bottom: 36px;
  white-space: nowrap;
}

.p-recruit__worklife-text {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2.4;
  color: #ffffff;
  text-align: left;
}

/* ---- Slider ---- */
.p-recruit__slider {
  overflow: hidden;
  width: 100%;
}

.p-recruit__slider-track {
  display: flex;
  width: -webkit-max-content;
  width: max-content;
  -webkit-animation: recruit-slider-scroll 24s linear infinite;
  animation: recruit-slider-scroll 24s linear infinite;
}

.p-recruit__slider-track:hover {
  -webkit-animation-play-state: paused;
  animation-play-state: paused;
}

.p-recruit__slider-item {
  flex-shrink: 0;
  width: 320px;
  height: 240px;
  overflow: hidden;
}

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

@-webkit-keyframes recruit-slider-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
@keyframes recruit-slider-scroll {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ---- 数字でわかる Section ---- */
.p-recruit__numbers {
  background: #ffffff;
  padding: 80px 40px;
}

.p-recruit__numbers-head {
  margin-bottom: 56px;
  margin-left: 240px;
}

/* 「数字でわかる」: 白抜きアウトライン文字（他セクションのラベルに影響させないスコープ指定） */
.p-recruit__numbers-head .p-recruit__section-label {
  color: #ffffff;
  -webkit-text-stroke: 2px var(--c-blue);
  text-stroke: 2px var(--c-blue);
  paint-order: stroke fill;
  font-weight: 900;
  font-size: 34px;
}

/* 「コンストラクションサポート藤井」: 青・太字・小さめ */
.p-recruit__numbers-head .p-recruit__section-title {
  color: var(--c-blue);
  font-size: 22px;
  font-weight: 700;
}

.p-recruit__section-label {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: var(--c-black);
  display: block;
  margin-bottom: 8px;
}

.p-recruit__section-label2 {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: #fff;
  display: block;
  margin-bottom: 8px;
}

.p-recruit__section-label3 {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.25;
  letter-spacing: 0.08em;
  color: var(--c-black);
  display: block;
  margin-bottom: 8px;
}


.p-recruit__section-label_bg {
  font-size: 64px;
}

.p-recruit__section-label_bg2 {
  font-size: 64px;
  color: #fff;
}

.p-recruit__section-label--white {
  color: var(--c-white);
  -webkit-text-stroke: 1px var(--c-blue);
  text-stroke: 1px var(--c-blue);
}

.p-recruit__section-label--blue {
  color: var(--c-blue);
}

.p-recruit__section-title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 32px;
  line-height: 1.25;
  color: var(--c-black);
}

.p-recruit__section-title--blue {
  color: var(--c-blue);
}

/* グリッド：列方向に行を並べる */
.p-recruit__numbers-grid {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
}

/* 行コンテナ */
.p-recruit__chart-row {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  justify-content: center;
}

.p-recruit__stat-card {
  background: #f6f8fc;
  padding: 32px 28px;
}

/* 棒グラフ行：2枚均等 */
.p-recruit__chart-row--bars .p-recruit__stat-card {
  flex: 1 1 360px;
  max-width: 440px;
}

/* ドーナツグラフ行：3枚均等 */
.p-recruit__chart-row--donuts .p-recruit__stat-card {
  flex: 1 1 240px;
  max-width: 320px;
  padding: 20px 16px;
}

.p-recruit__stat-title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-blue);
  margin-bottom: 24px;
  text-align: center;
}

/* Bar Chart */
.p-recruit__bar-chart {
  width: 100%;
}

.p-recruit__bar-chart-inner {
  display: flex;
  gap: 8px;
  align-items: flex-end;
  height: 180px;
  border: 1px solid #e2e2e2;
  border-radius: 4px;
  padding: 8px 8px 0;
  background: #ffffff;
}

.p-recruit__bar-yaxis {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
  font-family: var(--f-inter);
  font-size: 12px;
  font-weight: 600;
  color: #555555;
  text-align: right;
  padding-bottom: 22px;
  min-width: 28px;
}

.p-recruit__bar-area {
  display: flex;
  gap: 12px;
  align-items: flex-end;
  height: 100%;
  flex: 1;
}

.p-recruit__bar-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  gap: 4px;
  flex: 1;
  height: 100%;
}

.p-recruit__bar {
  width: 50%;
  background: #E84C1C;
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: opacity 0.2s;
}

.p-recruit__bar2 {
  width: 50%;
  background: #E84C1C;
  border-radius: 4px 4px 0 0;
  min-height: 4px;
  transition: opacity 0.2s;
}

.p-recruit__bar-label {
  font-family: var(--f-inter);
  font-size: 11px;
  font-weight: 700;
  color: var(--c-black);
  text-align: center;
  line-height: 1.4;
  white-space: nowrap;
}

/* Donut Chart (Chart.js)
 * Grid スタック：canvas と中央テキストを同セルに重ねる
 * position:absolute 禁止のため grid-area: 1/1 で代替
 */
.p-recruit__donut-wrap {
  display: grid;
  width: 100%;
  height: 280px;
}

.p-recruit__donut-wrap > canvas,
.p-recruit__donut-center {
  grid-area: 1 / 1;
}

.p-recruit__donut-wrap > canvas {
  width: 100%;
}

.p-recruit__donut-center {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 15px;
  line-height: 1.5;
  color: var(--c-black);
  pointer-events: none;
  white-space: nowrap;
}

/* ---- ひとを知る Section ---- */
.p-recruit__people {
  padding: 0;
}

.p-recruit__people-bg {
  background: linear-gradient(180deg, rgba(238, 238, 238, 1) 0%, rgba(238, 247, 255, 1) 100%);
  padding: 80px 40px 100px;
}

.p-recruit__people-head {
  margin-bottom: 90px;
  margin-left: 240px;
}

/* 「ひとを知る」: numbers-head に合わせた白抜きアウトライン文字 */
.p-recruit__people-head .p-recruit__section-label {
  color: #ffffff;
  -webkit-text-stroke: 2px var(--c-blue);
  text-stroke: 2px var(--c-blue);
  paint-order: stroke fill;
  font-weight: 900;
  font-size: 34px;
}

/* 「ひとりひとりが会社の要」: numbers-head に合わせた青・太字・小さめ */
.p-recruit__people-head .p-recruit__section-title {
  color: var(--c-blue);
  font-size: 22px;
  font-weight: 700;
}

.p-recruit__people-grid {
  display: flex;
  gap: 40px;
  justify-content: center;
  flex-wrap: wrap;
  max-width: 1300px;
  margin: 0 auto;
}

.p-recruit__person-card {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  flex: 0 0 auto;
  width: 360px;
  transition: opacity 0.2s, transform 0.2s;
  text-align: center;
}

.p-recruit__person-card:hover {
  opacity: 0.85;
  transform: translateY(-4px);
}

.p-recruit__person-img-wrap {
  display: grid;        /* img と name を同セルに重ねる（position:absolute 代替） */
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.p-recruit__person-img-wrap img,
.p-recruit__person-img-wrap .p-recruit__person-num,
.p-recruit__person-img-wrap .p-recruit__person-name {
  grid-area: 1 / 1;
}

.p-recruit__person-img-wrap img {
  width: 100%;
  height: 440px;
  object-fit: cover;
  object-position: top center;
  display: block;
  transition: transform 0.3s;
}

.p-recruit__person-card:hover .p-recruit__person-img-wrap img {
  transform: scale(1.03);
}

.p-recruit__person-num {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 64px;
  line-height: 1.2;
  color: #fff;
  align-self: start;    /* グリッドセル内：上端に配置 */
  justify-self: start;  /* グリッドセル内：左端に配置 */
  padding: 12px 16px 0;
}

.p-recruit__person-name {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 14px;
  line-height: 1.6;
  color: #ffffff;
  text-align: left;
  align-self: end;      /* グリッドセル内：下端に配置 */
  justify-self: start;  /* グリッドセル内：左端に配置 */
  padding: 10px 14px;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.65);
}

/* ---- 制度・文化を知る Section ---- */
.p-recruit__culture {
  background: #ffffff;
  padding: 0;
}

.p-recruit__culture-inner {
  background: linear-gradient(214deg, rgba(0, 165, 226, 1) 0%, rgba(168, 223, 79, 1) 100%);
  position: relative;
  display: flex;
  align-items: stretch;
  min-height: 1200px;
  max-width: 1435px;
  margin: 113px auto 0;
  border-radius: 20px;
  gap: 60px;
  padding: 60px 80px;
  overflow: visible;
}

.p-recruit__culture-photos {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 100px;
}

.p-recruit__culture-photos-col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-recruit__culture-photos-col--offset {
  margin-top: 60px;
}

.p-recruit__culture-photo {
  margin: 0;
  border-radius: 15px;
  overflow: hidden;
  width: 185px;
  height: 240px;
}

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

.p-recruit__culture-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.p-recruit__culture-content {
  flex: 1;
  color: #ffffff;
}

.p-recruit__culture-title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 28px;
  line-height: 1.4;
  color: #ffffff;
  margin-bottom: 20px;
  margin-top: 12px;
}

.p-recruit__culture-desc {
  font-family: var(--f-noto);
  font-weight: 500;
  font-size: 16px;
  line-height: 2;
  color: #ffffff;
  margin-bottom: 24px;
}

.p-recruit__culture-items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-recruit__culture-item {
  /* item wrapper */
}

.p-recruit__culture-item-head {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.5;
  color: #ffffff;
  margin: 0 0 4px;
}

.p-recruit__culture-item-icon {
  display: inline-block;
  vertical-align: middle;
  width: auto;
  height: 35px;
  margin-bottom: 6px;
  margin-right: 4px;
}

.p-recruit__culture-item-text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.75;
  color: #ffffff;
  margin: 0;
  padding-left: 30px;
}

/* 男女イラスト：col1右隣・col2上の空きスペースに配置 */
.p-recruit__culture-illust-couple {
  position: absolute;
  top: 80px;
  left: 285px; /* col1(185px) + gap(12px) + 余白(68px) ≒ col2開始直後・上部空白エリア */
  margin: 0;
  pointer-events: none;
  z-index: 2;
}

.p-recruit__culture-illust-couple img {
  display: block;
  width: 160px;
  height: auto;
}

/* 5人イラスト：文章増加分を考慮して下・左に移動 */
.p-recruit__culture-illust {
  position: absolute;
  bottom: -140px;
  right: 260px;
  margin: 0;
  pointer-events: none;
}

.p-recruit__culture-illust img {
  display: block;
  width: 618px;
  height: 360px;
}

.p-recruit__culture-btns {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.p-recruit__culture-btn {
  display: inline-block;
  padding: 14px 40px;
  border: 2px solid #ffffff;
  border-radius: 4px;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.4;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.p-recruit__culture-btn:hover {
  background: #ffffff;
  color: var(--c-blue);
}

/* ---- 制度・文化を知る：1300px 以下（5人イラスト位置調整） ---- */
@media (max-width: 1300px) {
  .p-recruit__culture-illust {
    bottom: -180px;
  }
}

/* ---- 制度・文化を知る：1200px 以下（横並び維持・段差維持） ---- */
@media (max-width: 1200px) {
  .p-recruit__culture-inner {
    padding: 48px 40px;
    gap: 40px;
    margin-top: 80px;
    min-height: 1250px;
  }
  .p-recruit__culture-photos {
    gap: 8px;
    flex-shrink: 0;
  }
  .p-recruit__culture-photos-col {
    gap: 8px;
  }
  .p-recruit__culture-photos-col--offset {
    margin-top: 50px;
  }
  .p-recruit__culture-photo {
    width: 155px;
    height: 200px;
    border-radius: 12px;
  }
  .p-recruit__culture-illust-couple {
    display: none;
  }
  .p-recruit__culture-illust {
    bottom: -180px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-recruit__culture-illust img {
    width: 500px;
    height: auto;
  }
}

/* ---- 制度・文化を知る：1100px 以下（縦積み切替・被り防止） ---- */
@media (max-width: 1100px) {
  .p-recruit__culture-inner {
    flex-direction: column;
    /* illust: width420px → h≈245px、bottom:-130px → 上端115px
       padding-bottom は 115 + 余白125 = 240px 以上 */
    padding: 48px 40px 260px;
    min-height: auto;
    gap: 28px;
    margin-top: 60px;
  }
  /* 6枚を2列横並びで並べる（各col内をrow方向に変更） */
  .p-recruit__culture-photos {
    width: 100%;
    gap: 10px;
    align-items: stretch;
  }
  .p-recruit__culture-photos-col {
    flex: 1;
    flex-direction: row;
    gap: 10px;
  }
  .p-recruit__culture-photos-col--offset {
    margin-top: 0;
  }
  .p-recruit__culture-photo {
    flex: 1;
    width: auto;
    height: 180px;
    border-radius: 12px;
  }
  .p-recruit__culture-right {
    width: 100%;
  }
  /* 男女イラスト：1100px以下も非表示 */
  .p-recruit__culture-illust-couple {
    display: none;
  }
  /* 5人イラスト：中央・文章量に合わせて下げる */
  .p-recruit__culture-illust {
    bottom: -130px;
    right: auto;
    left: 50%;
    transform: translateX(-50%);
  }
  .p-recruit__culture-illust img {
    width: 420px;
    height: auto;
  }
}

/* ---- 募集要項 タブボタン ---- */
.p-recruit__tabs {
  display: flex;
  gap: 16px;
  margin: 0 auto 48px;
  max-width: 1178px; /* 581px × 2 + gap 16px */
}

.p-recruit__tab-btn {
  flex: 0 0 581px;
  height: 133px;
  /* グリッド：[左余白52px] [テキスト中央] [アイコン52px] */
  display: grid;
  grid-template-columns: 52px 1fr 52px;
  align-items: center;
  padding: 0 24px;
  background: #ffffff;
  border: 2px solid var(--c-blue);
  color: var(--c-blue);
  font-family: var(--f-noto);
  font-size: 32px;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  cursor: pointer;
  transition: background 0.25s, color 0.25s;
  border-radius: 11px;
}

/* テキスト：グリッド2列目でセンター */
.p-recruit__tab-label {
  grid-column: 2;
  text-align: center;
}

/* アイコン：グリッド3列目で右寄せ */
.p-recruit__tab-icon {
  grid-column: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.25s;
}

/* SVG要素トランジション */
.p-recruit__tab-icon .tab-icon-circle,
.p-recruit__tab-icon .tab-icon-arrow {
  transition: fill 0.25s, stroke 0.25s;
}

/* SVGデフォルト：非アクティブ（白地・青） */
.tab-icon-circle {
  fill: none;
  stroke: var(--c-blue);
}
.tab-icon-arrow {
  fill: none;
  stroke: var(--c-blue);
}

/* アクティブ：青地・白アイコン */
.p-recruit__tab-btn.is-active {
  background: var(--c-blue);
  color: #ffffff;
  border-radius: 11px;
}
.p-recruit__tab-btn.is-active .tab-icon-circle {
  fill: none;
  stroke: #ffffff;
}
.p-recruit__tab-btn.is-active .tab-icon-arrow {
  stroke: #ffffff;
}

/* 非アクティブ ホバー：背景青反転・〇内を白塗り・矢印を青 */
.p-recruit__tab-btn:not(.is-active):hover {
  background: var(--c-blue);
  color: #ffffff;
}
.p-recruit__tab-btn:not(.is-active):hover .tab-icon-circle {
  fill: #ffffff;
  stroke: #ffffff;
}
.p-recruit__tab-btn:not(.is-active):hover .tab-icon-arrow {
  stroke: var(--c-blue);
}

/* アクティブ ホバー：より濃い青 */
.p-recruit__tab-btn.is-active:hover {
  background: #052a6e;
}

/* アイコンホバーアニメーション */
.p-recruit__tab-btn:hover .p-recruit__tab-icon {
  transform: translateX(4px);
}

/* タブパネル非表示 */
.p-recruit__tab-panel[hidden] {
  display: none;
}

/* ---- 募集要項 Section ---- */
.p-recruit__requirements {
  background: #ffffff;
  padding: 200px 0 0;
}

.p-recruit__requirements-head {
  text-align: center;
  margin-bottom: 60px;
}

.p-recruit__req-block {
  max-width: 860px;
  width: 100%;
  margin: 0 auto 80px;
}

.p-recruit__req-heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 24px;
  line-height: 1.5;
  color: var(--c-blue);
  border-left: 5px solid var(--c-blue);
  padding-left: 16px;
  margin-bottom: 32px;
}

.p-recruit__req-table {
  width: 100%;
  border-collapse: collapse;
  font-family: var(--f-noto);
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 48px;
}

.p-recruit__req-table th,
.p-recruit__req-table td {
  padding: 16px 20px;
  border: 1px solid #d9d9d9;
  vertical-align: top;
  text-align: left;
}

.p-recruit__req-table th {
  background: #f0f4fa;
  font-weight: 700;
  color: var(--c-blue);
  width: 200px;
  white-space: nowrap;
}

.p-recruit__req-table td {
  color: var(--c-black);
}

/* ---- 採用フロー ---- */
.p-recruit__flow {
  margin-bottom: 60px;
}

.p-recruit__flow-title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-black);
  max-width: 860px;
  width: 100%;
  margin: 0 auto 32px;
}

/* フローリスト全体：センター揃え */
.p-recruit__flow-list {
  display: flex;
  flex-direction: column;
  max-width: 680px;
  margin: 0 auto;
}

/* 共通グリッド：左ラベル列 160px ＋ 右コンテンツ列 */
.p-recruit__flow-item-box-row,
.p-recruit__flow-item-body-row,
.p-recruit__flow-chevron-row {
  display: grid;
  grid-template-columns: 160px 1fr;
}

.p-recruit__flow-item-box-row {
  align-items: center;
}

.p-recruit__flow-item-body-row {
  align-items: start;
}

.p-recruit__flow-chevron-row {
  align-items: center;
  padding: 24px 0;
}

/* 左列：サイドラベル */
.p-recruit__flow-item-side {
  font-family: var(--f-noto);
  font-size: 14px;
  line-height: 1.7;
  color: var(--c-black);
  padding-right: 30px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  text-align: right;
}

/* ステップボックス */
.p-recruit__flow-item-box {
  border: 1px solid #aaaaaa;
  border-radius: 6px;
  padding: 20px 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 68px;
}

.p-recruit__flow-item-name {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5;
  color: var(--c-black);
  text-align: center;
}

/* 説明文（ボックス下） */
.p-recruit__flow-item-desc {
  font-family: var(--f-noto);
  font-size: 14px;
  line-height: 1.9;
  color: var(--c-black);
  padding: 12px 0 4px;
}

/* Chevronアイコン */
.p-recruit__flow-chevron {
  display: flex;
  justify-content: center;
}

/* ---- 採用実績 ---- */
.p-recruit__schools {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 120px;
}

.p-recruit__schools-title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-black);
  margin-bottom: 20px;
  width: 100%;
  max-width: 860px;
}

.p-recruit__schools-list {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 0;
  font-family: var(--f-noto);
  font-size: 15px;
  line-height: 2;
  width: 100%;
  max-width: 800px;
}

.p-recruit__schools-list dt {
  font-weight: 700;
  color: var(--c-blue);
  padding: 10px 0;
  border-bottom: 1px solid #d9d9d9;
}

.p-recruit__schools-list dd {
  color: var(--c-black);
  padding: 10px 0 10px 16px;
  border-bottom: 1px solid #d9d9d9;
  margin: 0;
}

/* ---- 採用実績（人数） ---- */
.p-recruit__results {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 40px;
}

.p-recruit__results-title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-black);
  margin-bottom: 20px;
  width: 100%;
  max-width: 860px;
}

.p-recruit__results-table {
  width: 100%;
  max-width: 800px;
  border-collapse: collapse;
  font-family: var(--f-noto);
  font-size: 16px;
  table-layout: fixed;
}

.p-recruit__results-table th {
  background: var(--c-blue);
  color: #ffffff;
  font-weight: 700;
  text-align: center;
  padding: 14px 8px;
  border: 1px solid #ffffff;
  font-size: 15px;
  letter-spacing: 0.05em;
}

.p-recruit__results-table td {
  text-align: center;
  padding: 18px 8px;
  border: 1px solid #d9d9d9;
  font-weight: 700;
  font-size: 20px;
  color: var(--c-black);
  background: #f7f9fc;
}

/* ---- キャリア採用 ---- */
.p-recruit__req-block--career {
  border: 2px solid var(--c-blue);
  border-radius: 12px;
  padding: 40px;
  text-align: center;
}

.p-recruit__career-text {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 28px;
  color: var(--c-blue);
  margin-bottom: 16px;
}

.p-recruit__career-sub {
  font-family: var(--f-noto);
  font-size: 16px;
  line-height: 1.8;
  color: var(--c-black);
  margin-bottom: 60px;
}

/* ---- エントリーフォーム ---- */
.p-recruit__entry {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
}

.p-recruit__entry-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.p-recruit__entry-btn {
  display: inline-block;
  background: #ffffff;
  border: 2px solid var(--c-blue);
  border-radius: 8px;
  padding: 18px 60px;
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  color: var(--c-blue);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
  margin-bottom: 32px;
  letter-spacing: 0.06em;
}

.p-recruit__entry-btn:hover {
  background: var(--c-blue);
  color: #ffffff;
}

.p-recruit__entry-contact {
  font-family: var(--f-noto);
  font-size: 15px;
  line-height: 2.2;
  color: var(--c-black);
  text-align: left;
}

.p-recruit__entry-contact a {
  color: var(--c-blue);
  text-decoration: underline;
}

/* ---- Popup Modals ---- */
.p-recruit__modal {
  position: fixed;
  inset: 0;
  z-index: 9000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.p-recruit__modal[hidden] {
  display: none;
}

.p-recruit__modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  cursor: pointer;
}

.p-recruit__modal-card {
  position: relative;
  z-index: 1;
  background: #ffffff;
  border-radius: 14px;
  width: 573px;
  max-width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: 48px 40px 40px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.3);
  -webkit-overflow-scrolling: touch;
}

.p-recruit__modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #000000;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  padding: 0;
  transition: opacity 0.2s;
}

.p-recruit__modal-close:hover {
  opacity: 0.75;
}

.p-recruit__modal-close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-recruit__modal-title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.6;
  color: var(--c-black);
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 2px solid var(--c-blue);
  letter-spacing: 0.08em;
}

.p-recruit__modal-body {
  font-family: var(--f-noto);
  font-size: 15px;
  line-height: 2;
  color: var(--c-black);
  letter-spacing: 0.05em;
}

.p-recruit__modal-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-recruit__modal-section-title {
  font-weight: 700;
  color: var(--c-blue);
  font-size: 15px;
  margin-bottom: -8px;
}

.p-recruit__modal-content p {
  margin: 0;
}

/* 【recruitページのみ】マイナビバナー */
.p-recruit__mynavi {
  padding: 48px 0;
}

.p-recruit__mynavi-inner {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
}

.p-recruit__mynavi-link {
  display: block;
  line-height: 0;
}

.p-recruit__mynavi-link img {
  max-width: 100%;
  height: auto;
}

.sikaku_genzai {
    padding-top: 24px;
    font-size: 14px;
}

/* ============================================================
   【総務課ページのみ】p-soumu
   ============================================================ */

/* イントロ：タイトル + リード文 */
.p-soumu__intro {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-soumu__title {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 34px;
  line-height: 1.38;
  color: var(--c-black);
  margin: 0;
}

.p-soumu__desc {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

/* 得意分野セクション */
.p-soumu__specialties {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.p-soumu__section-heading {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 20px;
  line-height: 1.4;
  color: var(--c-black);
  margin: 0;
}

/* タグボックス：横並び */
.p-soumu__specialties-box {
  border: 1px solid #000;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  padding: 20px 32px;
}

.p-soumu__specialties-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 32px;
  margin: 0;
  padding: 0;
}

.p-soumu__specialties-list li {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.75;
  color: var(--c-black);
  display: flex;
  align-items: center;
  gap: 6px;
}

.p-soumu__dot {
  color: var(--c-green);
  font-size: 14px;
  line-height: 1;
}

/* 本文 */
.p-soumu__body-text {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  line-height: 2;
  color: var(--c-black);
  margin: 0;
}

/* フォトギャラリー：2列 */
.p-soumu__gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

.p-soumu__gallery-item {
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-soumu__gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.p-soumu__gallery-caption {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.6;
  color: var(--c-black);
  text-align: center;
}