/* ============================================================
   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: 700px; /* 13項目対応（約40px×13≈520px）に余裕を持たせた値 */
  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__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: 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;
  width: fit-content;
  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;
}

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

.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 {
  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;
  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;
}

.asb-gallery2__item img {
  width: 100%;
  aspect-ratio: 370 / 220;
  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;
}

.asb-gallery3__item img {
  width: 100%;
  aspect-ratio: 4 / 3;
  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 {
  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__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: 160px;
  height: 120px;
  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__meta {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.p-news-item__cats {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.p-news-item__cat {
  display: inline-flex;
  align-items: center;
  font-family: var(--f-inter);
  font-weight: 500;
  font-size: 12px;
  line-height: 1;
  color: var(--c-green);
  border: 1px solid var(--c-green);
  padding: 4px 12px;
  border-radius: 100px;
}

.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-item__arrow {
  flex-shrink: 0;
  width: 95px;
  height: 20px;
  border: 1px solid var(--c-black);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* 空メッセージ */
.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;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 16px;
}

.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: 8px;
}

.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-green);
  border: 1px solid var(--c-green);
  padding: 6px 16px;
  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 > .wpcf7-form-control-wrap {
  display: block;
  width: 100%;
}
.p-contact-form__field > .wpcf7-form-control-wrap > .p-contact-form__input,
.p-contact-form__field > .wpcf7-form-control-wrap > .p-contact-form__textarea {
  width: 100%;
}

/* フィールド（インプット + エラー） */
.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: center;
  position: relative;
  padding-left: 0;
  padding-block-start: 8px;
}
.p-contact-form__submit-wrap .wpcf7-spinner {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.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);
}

/* ============================================================
   ENTRY FORM PAGE (採用エントリーフォーム)
   使用ファイル: content/wp-content/themes/fujii/page-entry.php
   ============================================================ */

/* ── ヒーロー ─────────────────────────────────────────────────── */
.p-entry-hero {
  position: relative;
  width: 100%;
  height: 910px;
  overflow: hidden;
}

/* 背景写真 */
.p-entry-hero__media {
  position: absolute;
  inset: 0;
  margin: 0;
}

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

/* グラデーションオーバーレイ（白→水色→青） */
.p-entry-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-entry-hero__letters {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.p-entry-hero__letter {
  position: absolute;
  opacity: 0.9;
}

.p-entry-hero__letter--c {
  left: 0;
  top: 82px;
  width: 26.30vw;
  height: auto;
}

.p-entry-hero__letter--s {
  left: 19vw;
  top: 81px;
  width: 33.18vw;
  height: auto;
}

.p-entry-hero__letter--f {
  left: 47vw;
  top: 82px;
  width: 34.69vw;
  height: auto;
}

/* ヘッダー下区切り線 */
.p-entry-hero__divider {
  position: absolute;
  top: 81px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--c-white);
}

/* ── セクション ─────────────────────────────────────────────────── */
.p-entry {
  padding-block: 80px 120px;
}

.p-entry__inner {
  max-width: 900px;
  margin-inline: auto;
  padding-inline: 40px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* ── 見出し ─────────────────────────────────────────────────────── */
.p-entry__heading {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.p-entry__heading-ja {
  font-family: var(--f-noto);
  font-weight: 700;
  font-size: 68px;
  line-height: 1.21;
  color: #083587;
  letter-spacing: 0.04em;
}

.p-entry__heading-en {
  font-family: var(--f-inter);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.2;
  color: #083587;
  letter-spacing: 0.1em;
}

/* ── 説明文 ─────────────────────────────────────────────────────── */
.p-entry__desc {
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 15px;
  line-height: 2;
  color: var(--c-black);
  display: flex;
  flex-direction: column;
  gap: 0;
}

.p-entry__desc p {
  margin: 0;
}

/* ── 性別ラジオボタン（CF7出力スタイル） ─────────────────────────── */
.p-entry__radio-group {
  display: flex;
  align-items: center;
  flex: 1;
}

/* CF7が[radio*]を囲む<span>をblockに変更してflexが効くようにする */
.p-entry__radio-group .wpcf7-form-control-wrap {
  display: flex;
  flex: 1;
}

.p-entry__radio-group .wpcf7-radio {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
  flex: 1;
}

.p-entry__radio-group .wpcf7-list-item {
  display: flex;
  align-items: center;
  margin: 0;
}

.p-entry__radio-group .wpcf7-list-item label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--f-noto);
  font-size: 16px;
  line-height: 1.5;
  color: var(--c-black);
  cursor: pointer;
}

/* CF7新バージョンがradioをopacity:0+position:absoluteで隠すのを上書き */
.p-entry__radio-group .wpcf7-list-item input[type="radio"] {
  position: static;
  opacity: 1;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--c-green);
  flex-shrink: 0;
  margin: 0;
}

/* ── 個人情報同意チェックボックス（CF7 acceptance 出力） ─────────── */
.p-contact-form__privacy-row .wpcf7-acceptance {
  display: flex;
}

.p-contact-form__privacy-row .wpcf7-acceptance 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__privacy-row .wpcf7-acceptance input[type="checkbox"] {
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--c-green);
  flex-shrink: 0;
}

/* ── CF7 バリデーションエラー ────────────────────────────────────── */
.p-contact-form .wpcf7-not-valid-tip {
  font-family: var(--f-noto);
  font-size: 13px;
  color: #ff0000;
  margin-top: 4px;
  display: block;
}

.p-contact-form .wpcf7-response-output {
  font-family: var(--f-noto);
  font-size: 15px;
  margin-top: 24px;
  padding: 16px 20px;
  border-radius: 4px;
}

/* ============================================================
   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;
  max-width: 900px;
  margin-inline: auto;
  width: 100%;
}

.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;
  pointer-events: none;
  width: 0;
  height: 0;
}

/* CF7 acceptance: wpcf7-acceptance のネイティブcheckboxをスタイリング表示 */
.p-asbestos-form__form .wpcf7-acceptance {
  display: flex;
}
.p-asbestos-form__form .wpcf7-acceptance 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__form .wpcf7-acceptance input[type="checkbox"] {
  -webkit-appearance: auto;
  appearance: auto;
  width: 18px;
  height: 18px;
  cursor: pointer;
  accent-color: var(--c-blue);
  flex-shrink: 0;
}
/* CF7環境ではカスタムspanは不要なため非表示 */
.p-asbestos-form__form .p-asbestos-form__checkbox-custom {
  display: 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: center;
  position: relative;
  padding-left: 0;
  padding-block-start: 8px;
}
.p-asbestos-form__submit-wrap .wpcf7-spinner {
  position: absolute;
  right: -35px;
  top: 50%;
  transform: translateY(-50%);
  margin: 0;
}

.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 var(--gutter);
  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 TABLE ─────────────────────────────────────────── */
.p-company-history {
  width: 100%;
  border-collapse: collapse;
}

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

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

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

.p-company-history__event {
  padding: 18px 0;
  font-family: var(--f-noto);
  font-weight: 400;
  font-size: 16px;
  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-start: 200px;
}

.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: var(--f-inter);
  font-weight: 400;
  font-size: 24px;
  line-height: 2.083;
  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: 18px;
  line-height: 2.222;
  letter-spacing: 0.1em;
  color: var(--c-black);
}

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

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

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

.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-start: 200px;
}

.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;
}

.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;
}

.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;
}

.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);
}

/* ============================================================
   補償業務 PAGE (page-hosho.php)
   ============================================================ */

/* HERO — 補償業務専用背景 */
.p-hosho-hero .page-hero__media img {
  object-position: center top;
}

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

/* メイン見出し (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;
}

.p-hosho-table__header {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
  background: #dfe4ed;
}

.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;
}

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

.p-hosho-table__body {
  display: grid;
  grid-template-columns: 1fr 1px 1fr;
}

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

.p-hosho-table__col {
  padding: 24px 28px;
}

.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;
}

/* ── 調査項目 — 写真グリッド ── */
.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;
}

.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;
}

/* 調査説明文 (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;
}

