/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: #1f2937;
    line-height: 1.6;
    background-color: #ffffff;
}

.container {
    max-width: 1240px; /* 1200 → 1240 くらいに微増 */
    margin: 0 auto;
    padding: 0 24px;
}

/* =========================
   ヘッダー（グローバルナビ）
   ========================= */
.site-header {
  position: fixed;          /* 常に上部に固定 */
  inset: 0 0 auto 0;
  z-index: 100;
  background-color: #101728;  /* #002536 ベース */
  backdrop-filter: blur(6px);         /* うっすらガラス感 */
  color: #ffffff;
}

/* ヘッダーの中身レイアウト */
.header-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 19px 24px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* ロゴエリア */
.header-logo img {
  display: block;
  height: 36px;                /* ロゴの高さはお好みで */
}

/* ナビゲーション */
.header-nav {
  margin-left: auto;
}

.header-menu {
  display: flex;
  align-items: center;
  gap: 24px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.header-menu a {
  display: inline-flex;
  align-items: center;
  padding: 6px 4px;
  font-size: 14px;
  font-weight: 500;
  color: #ffffff;
  text-decoration: none;
  border-radius: 999px;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.header-menu a:hover {
  background-color: rgba(250, 217, 105, 0.16); /* #FAD93E をほんのり */
}

/* お問い合わせボタン（右端） */
.header-contact-btn {
  margin-left: 14px;
  padding: 8px 22px;
  border-radius: 999px;
  background-color: #FAD93E;
  color: #002536;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.18);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.header-contact-btn:hover {
  background-color: #f6c842;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(0, 0, 0, 0.25);
}

/* ヘッダー固定分の余白（必要なら） */
body {
  padding-top: 64px; /* ヘッダーの高さに合わせて調整（目安 60〜72px） */
}

/* 簡易レスポンシブ（スマホでは少し詰める） */
@media (max-width: 960px) {
  .header-inner {
    gap: 16px;
  }

  .header-menu {
    gap: 14px;
    font-size: 13px;
  }

  .header-contact-btn {
    padding: 6px 16px;
    font-size: 13px;
  }
}

@media (max-width: 768px) {
  /* とりあえず簡易版：スマホではメニューを減らす or 折り返し想定
     本格的にはハンバーガーにするのがおすすめ */
  .header-inner {
    padding-inline: 16px;
  }

  .header-menu {
    display: none;  /* まずは隠しておいて、後でSPナビを実装でもOK */
  }

  .header-contact-btn {
    margin-left: auto;
  }
}

/* Hero Section */
.hero {
    position: relative;
    padding: 96px 0 50px;
    margin-top: -10px;      /* ← この1行を追加 */
    background-color: #002536;
    overflow: hidden;
}


.hero-bg {
    position: absolute;
    inset: 0;
    opacity: 1;           /* ← ここを 1 にするか、行ごと削除 */
    pointer-events: none;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-content {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
}

.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
}



.hero-title {
    font-size: 100px;
    font-weight: 900;
    line-height: 1.35;
    color: #FFF;        /* ← 白文字に */
    letter-spacing: -0.5px;
    max-width: 780px;
}
span.yellow {
    color: #FFFF00;        /* ← 白文字に */
}

.hero-subtitle01 {
    font-size: 25px;
    line-height: 1.9;
    color: #FFF;        /* ← ややグレー寄りの白に（真っ白でもOK） */
    max-width: 780px;
    margin-top: -30px;
    font-weight: 600;
}

.hero-subtitle {
    font-size: 16px;
    line-height: 1.4;
    color: #FFF;        /* ← ややグレー寄りの白に（真っ白でもOK） */
    max-width: 780px;
    font-weight: 900;
}
.hero-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;   /* ← 中央寄せ（横方向） */
    text-align: center;    /* ← テキスト中央寄せ */
}

.badge {
    display: inline-block;
    background-color: #FFF;
      color: #002536;
    padding: 8px 16px;
    border-radius: 30px;
    font-size: 19px;
    font-weight: bold;
    align-self: center;    /* ← 左寄せしていた場合の保険で中央に */
        margin-bottom: -20px;
}

/* ヒーロー内のメインボタンだけ黄色に */
.hero .btn-large {
    background-color: #FAD93E;  /* 黄色 */
    color: #111827;             /* 黒に近い濃いグレー */
}

.hero .btn-large:hover {
    background-color: #eab308;  /* ホバー時に少し濃く */
    color: #111827;
}

.trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-top: 8px;
}

.trust-badge {
    background-color: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 8px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-badge-icon {
    font-size: 24px;
}

.trust-badge-text {
    font-size: 15px;
    line-height: 1.5;
    font-weight: 500;
    color: #374151;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 16px;
}

.btn-large {
    background-color: #FFFF00;
    color: #ffffff;
    padding: 18px 42px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 700;
    font-size: 20px;
    text-align: center;
    transition: background-color 0.2s;
}

.btn-large:hover {
    background-color: #1e40af;
}

.link-small {
    color: #FFF;
    font-size: 14px;
    text-decoration: none;
    text-align: center;
}

.link-small:hover {
    text-decoration: underline;
}

/* SEO Text Section */
.seo-text {
    padding: 60px 0;
    background-color: #f9fafb;
}

.seo-paragraph {
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

/* ===== About Hero (CUVIC CHAIN SIGNとは) ===== */
.about-hero {
    position: relative;
    padding: 130px 0;  /* 帯の高さ */
    /* 背景画像 + 青オーバーレイ */
    background-image:
        linear-gradient(rgba(15, 23, 42, 0.80), rgba(15, 23, 42, 0.80)),
        url("/wp-content/uploads/2025/11/5D3_2761.jpg");  /* ←ここを使いたい写真のパスに変更 */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll; /* 固定にしたければ fixed でもOK */
    color: #ffffff;
}

/* 中身を少しだけ縦に詰める・中央寄せ */
.about-hero-inner {
    text-align: center;
}

/* 見出しを白に上書き */
.about-hero-title {
    color: #ffffff !important;     /* .section-title の黒を上書き */
    margin-bottom: 24px;   /* 文章との間隔を少し詰める */
}

/* 説明文（本文） */
.about-hero-text {
    max-width: 900px;
    margin: 0 auto;
    font-size: 15px;
    line-height: 1.9;
    color: #e5e7eb;        /* 真っ白だと眩しいので少しだけトーンダウン */
}

/* Challenges Section */

.pains {
    padding: 120px 0;
    background-color: #f9fafb;
}

.pains-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
    margin-top: 40px;
}

.pain-card {
    background-color: #ffffff;
    border-radius: 16px;
    box-shadow: 0 18px 45px rgba(15, 23, 42, 0.06);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

/* 画像枠の高さを決める（16:9の比率で表示） */
.pain-card__image {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;   /* ここで縦横比を固定。px指定にしたいなら height: 260px; などでもOK */
  overflow: hidden;
}

/* 中の画像を枠いっぱいにフィットさせる */
.pain-card__image img {
  display: block;
  width: 100%;
  height: 100% !important;  /* 他で上書きされていても勝てるように */
  object-fit: cover;
}
.pain-card__body {
    padding: 20px 24px 24px;
    text-align: left;
}

.pain-card__label {
    display: inline-block;
    font-size: 12px;
    font-weight: 600;
    color: #6b7280;
    margin-bottom: 4px;
}

.pain-card__title {
    font-size: 24px;
    font-weight: 700;
    text-align: center;     /* タイトルだけ中央寄せ */
    margin-bottom: 12px;
}

.pain-card__text {
    font-size: 14px;
    line-height: 1.9;
    color: #4b5563;
}

/* スマホでは1カラムに */
@media (max-width: 767px) {
    .pains-grid {
        grid-template-columns: 1fr;
    }

    .pains {
        padding: 56px 0;
    }
}



.section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #111827;
    margin-bottom: 60px;
    line-height: 1.3;
}

.section-title-w {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    color: #FFF;
    margin-bottom: 60px;
    line-height: 1.3;
}

/* ===== グリーンクロスグループ 実績セクション ===== */
.group-achievements {
  position: relative;
  padding: 80px 0 90px;
  /* 背景画像 + グリーンのオーバーレイ（80%透過） */
  background-image:
    linear-gradient(rgba(9, 73, 18, 0.8), rgba(9, 73, 18, 0.8)),
    url("/wp-content/uploads/2025/11/greencross.jpg");
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  color: #ffffff;
}

.group-achievements__inner {
  text-align: center;
}

/* 他セクションより一回り小さいタイトル（36px → 30px） */
.group-achievements__title {
  font-size: 30px;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  margin-bottom: 45px;
}

/* ロゴ群画像 */
.group-achievements__logo {
  margin: 0 auto;
  max-width: 1040px;
}

.group-achievements__logo img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 16px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  background-color: #ffffff; /* ロゴが見やすいよう白ベース */
  padding: 16px 24px;
}

/* スマホ用調整 */
@media (max-width: 768px) {
  .group-achievements {
    padding: 56px 0 64px;
  }

  .group-achievements__title {
    font-size: 22px;
    margin-bottom: 20px;
  }

  .group-achievements__logo img {
    padding: 12px 14px;
    border-radius: 12px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.3);
  }
}



/* ===== Features Section ===== */
.features {
  padding: 120px 0;
  background-color: #002536;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  margin-top: 40px;
}

/* カード本体：高さを揃えるためにflex縦並び */
.feature-card {
  background-color: #ffffff;
  border-radius: 18px;
  padding: 32px 28px 28px;
  box-shadow: 0 18px 40px rgba(15, 23, 42, 0.20);
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: left;
}

/* 正方形アイコン */
.feature-icon {
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background-color: #eff6ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  margin: 0 auto 24px;
}

.feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 16px;
}

/* タイトルだけ中央寄せ */
.feature-title {
  font-size: 21px;
  font-weight: 700;
  color: #111827;
  margin-bottom: 16px;
  text-align: center;
}

/* 説明文：ここに auto マージンを入れてボタンを下に押し下げる */
.feature-text {
  font-size: 14px;
  line-height: 1.8;
  color: #4b5563;
  margin-bottom: auto;  /* ← これが「ボタンをカード下に揃える」キー */
}

/* ボタン：中央寄せ・横幅＆縦幅を統一 */
.feature-link {
  margin-top: 24px;
  margin-left: auto;
  margin-right: auto;
  width: 360px;          /* 横幅を固定（お好みで調整可） */
  max-width: 100%;       /* 画面が狭い時の保険 */
  height: 56px;          /* 縦も統一 */
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background-color: #FAD93E;   /* ご指定の色 */
  color: #1A1A1A;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: background-color 0.2s, transform 0.1s;
  text-align: center;
}

.feature-link:hover {
  background-color: #10225e;
  transform: translateY(-1px);
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .features-grid {
    grid-template-columns: 1fr;
  }
  .feature-card {
    padding: 24px 20px 22px;
  }
  .feature-link {
    width: 100%;   /* スマホではカード幅いっぱいに */
  }
}


/* Industries Section */
.industries {
    padding: 120px 0 120px;
  background-color: #002536;
}

.industries-description {
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #4b5563;
    max-width: 800px;
    margin: 0 auto 48px;
}
.industries-description-w {
    text-align: center;
    font-size: 15px;
    line-height: 1.8;
    color: #FFF;
    max-width: 800px;
    margin: 0 auto 48px;
}

.industries-labels {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    max-width: 900px;
    margin: 0 auto;
}

.industry-label {
    background-color: #f3f4f6;
    color: #374151;
    padding: 12px 24px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    border: 1px solid #e5e7eb;
}

/* ===== 点検セクション：画像無限スクロール ===== */
.inspection-marquee {
  margin-top: 0;
  overflow: hidden;
}

.inspection-marquee-track {
  display: flex;
  width: max-content;
  animation: inspection-marquee 45s linear infinite;
}

.inspection-marquee-group {
  display: flex;
  gap: 10px; /* 画像同士の間隔 */
}

.inspection-marquee-group img {
  width: 340px;
  height: 210px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.18);
}

/* ホバーしたら一時停止（不要なら削除OK） */
.inspection-marquee:hover .inspection-marquee-track {
  animation-play-state: paused;
}

@keyframes inspection-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    /* グループが2セット並んでいるので -50% でちょうど一周分流れる */
    transform: translateX(-50%);
  }
}

/* スマホ向けに少しだけサイズ調整 */
@media (max-width: 767px) {
  .inspection-marquee-group img {
    width: 260px;
    height: 160px;
  }
}


/* CTA Section */
.cta-section {
    padding: 100px 0;
  background-color: #002536;
}

.cta-content {
    text-align: center;
    color: #ffffff;
    max-width: 700px;
    margin: 0 auto;
}

.cta-title {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 24px;
    line-height: 1.4;
}

.cta-text {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 40px;
    opacity: 0.95;
}

.cta-section .btn-large {
    background-color: #FAD93E;
      color: #1A1A1A;
}

.cta-section .btn-large:hover {
    background-color: #f3f4f6;
}

/* Footer */
.footer {
    background-color: #111827;
    color: #9ca3af;
    padding: 60px 0 24px;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-brand .logo-text {
    color: #ffffff;
}

.footer-text {
    font-size: 14px;
    margin-top: 12px;
    color: #9ca3af;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.footer-heading {
    color: #ffffff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-link {
    color: #9ca3af;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s;
}

.footer-link:hover {
    color: #ffffff;
}

.footer-bottom {
    border-top: 1px solid #374151;
    padding-top: 24px;
}

.copyright {
    text-align: center;
    font-size: 13px;
    color: #6b7280;
}

/* SEO Title */
.seo-title {
    margin-bottom: 32px;
}

/* Entry Section */
.entry-section {
    padding: 120px 0;
  background-color: #002536;
}

.entry-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.entry-card {
    background-color: #ffffff;
    border-radius: 16px;
    border: 1px solid #e5e7eb;
    padding: 20px 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.entry-image {
    border-radius: 12px;
    overflow: hidden;
    margin: -4px -4px 8px;
}

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

.entry-title {
    font-size: 21px;
    font-weight: 700;
    color: #111827;
        text-align: center;
}

.entry-text {
    font-size: 14px;
    color: #4b5563;
}

.entry-list {
    margin-top: 8px;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
}

.entry-list li + li {
    margin-top: 4px;
}

/* Inspection Section */
.inspection-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.inspection-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) minmax(0, 1fr);
    gap: 40px;
    align-items: start;
}

.inspection-lead {
    margin-top: 16px;
    font-size: 15px;
    color: #4b5563;
}

.inspection-list {
    margin-top: 16px;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
}

.inspection-list li + li {
    margin-top: 4px;
}

.inspection-note {
    margin-top: 16px;
    font-size: 13px;
    color: #b91c1c;
    background-color: #fef2f2;
    border-radius: 8px;
    padding: 10px 12px;
}

.inspection-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

.inspection-card {
    background-color: #f9fafb;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 18px 16px;
}

.inspection-card-title {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 6px;
    color: #111827;
}

.inspection-card-text {
    font-size: 13px;
    color: #4b5563;
}

/* Coverage Section */
.coverage-section {
    padding: 120px 0;
    background-color: #f3f4f6;
}

/* ここを変更：1列目(地図)を 550px 固定にする */
.coverage-inner {
    display: grid;
    grid-template-columns: 600px minmax(0, 1fr); /* ← 1列目:600px / 2列目:残り */
    gap: 40px;
    align-items: center;
}

/* ここを変更：画像は列いっぱい + 影ナシ */
.coverage-visual img {
    display: block;
    width: 100%;      /* ← 列の 600px をフルで使う */
    max-width: none;
    border-radius: 16px;
    box-shadow: none; /* ← ドロップシャドー削除 */
}

.coverage-lead {
    margin-top: 16px;
    font-size: 15px;
    color: #4b5563;
}

.coverage-list {
    margin-top: 16px;
    padding-left: 18px;
    font-size: 14px;
    color: #374151;
}

.coverage-list li + li {
    margin-top: 4px;
}

.coverage-note {
    margin-top: 16px;
    font-size: 13px;
    color: #4b5563;
}

/* Team Section */
.team-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.team-intro {
    max-width: 780px;
    margin: 0 auto 40px;
    text-align: center;
    font-size: 15px;
    color: #4b5563;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 24px;
}

.team-member {
    background-color: #f9fafb;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    display: flex;
    flex-direction: column;
}

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

.team-meta {
    padding: 12px 14px 14px;
}

.team-role {
    font-size: 13px;
    font-weight: 600;
    color: #6b7280;
}

.team-hobby {
    font-size: 13px;
    color: #374151;
}

/* FAQ Section */
.faq-section {
    padding: 120px 0;
  background-color: #002536;
}

.faq-list {
    max-width: 900px;
    margin: 0 auto;
    display: grid;
    gap: 16px;
}

.faq-item {
    background-color: #ffffff;
    border-radius: 12px;
    border: 1px solid #e5e7eb;
    padding: 14px 16px;
}

.faq-question {
    font-size: 15px;
    font-weight: 600;
    color: #111827;
    margin-bottom: 6px;
}

.faq-answer {
    font-size: 14px;
    color: #4b5563;
}

.faq-more {
    margin-top: 16px;
    text-align: center;
}

/* Info Sections (Steps / Resources / Company) */
.info-section {
    padding: 120px 0;
    background-color: #ffffff;
}

.info-section:nth-of-type(odd) {
    background-color: #f9fafb;
}

.info-text {
    max-width: 800px;
    margin: 0 auto;
    font-size: 14px;
    color: #4b5563;
    text-align: center;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .header-inner {
        gap: 16px;
    }

    .nav {
        gap: 16px;
        flex-wrap: wrap;
        justify-content: flex-start;
    }

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

    .team-grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .inspection-inner,
    .coverage-inner {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .nav {
        flex-wrap: wrap;
        justify-content: flex-start;
        width: 100%;
    }

    .hero {
        padding: 56px 0 72px;
    }

    .hero-title {
        font-size: 30px;
    }

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

    .section-title {
        font-size: 28px;
        margin-bottom: 40px;
    }

    .challenges-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .industries-labels {
        gap: 12px;
    }

    .cta-title {
        font-size: 28px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-links {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .entry-section,
    .inspection-section,
    .coverage-section,
    .team-section,
    .faq-section,
    .info-section {
        padding: 60px 0;
    }

    .entry-grid {
        grid-template-columns: 1fr;
    }

    .entry-image img {
        height: 160px;
    }

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

    .team-photo img {
        height: 180px;
    }

    .inspection-inner,
    .coverage-inner {
        gap: 24px;
    }
}




/* ==== フッター内 4サイトバナー ==== */

.footer-banners {
  margin-top: 32px;
  padding: 24px 0 120px; /* 下に固定CTAバーがあるので余白を多めに */
}

.footer-banners__inner {
  max-width: 1120px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

/* 各バナーの箱 */
.footer-banner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 16px 20px;
  border-radius: 16px;
  background-color: #ffffff;
  color: #002536;
  text-decoration: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background-color 0.2s ease;
}

/* 上段の小見出し（カテゴリ名） */
.footer-banner__label {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  color: #6b7280;
}

/* 下段のメインテキスト */
.footer-banner__sub {
  margin-top: 4px;
  font-size: 15px;
  font-weight: 700;
  color: #002536;
}

/* ホバー時：CUVICのアクセントカラーに */
.footer-banner:hover {
  background-color: #FAD93E;   /* ボタンと同じ #FAD93E */
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
}

.footer-banner:hover .footer-banner__label,
.footer-banner:hover .footer-banner__sub {
  color: #002536;
}

/* タブレット以下：2列×2行レイアウト */
@media (max-width: 1024px) {
  .footer-banners__inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* スマホ：少しパディングを調整 */
@media (max-width: 640px) {
  .footer-banner {
    padding: 14px 16px;
  }
}





/* ===== Floating Contact (PC:右下 / SP:下部固定) ===== */
.floating-contact {
    position: fixed;
    right: 24px;
    bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    z-index: 50;
}

/* 電話ボックス */
.floating-contact__tel {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    padding: 8px 16px;
    background-color: #ffffff;
    border-radius: 999px;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
    text-decoration: none;
    color: #111827;
    font-size: 12px;
}

.floating-contact__label {
    font-weight: 500;
}

.floating-contact__number {
    font-weight: 700;
    font-size: 15px;
}

/* 問い合わせボタン */
.floating-contact__btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 10px 20px;
    border-radius: 999px;
    background-color: #facc15;  /* ヒーローと合わせた黄色 */
    color: #111827;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.2);
}

.floating-contact__btn:hover {
    background-color: #eab308;
}

/* スマホでは下部固定バーに変形 */
@media (max-width: 767px) {
    .floating-contact {
        right: 0;
        left: 0;
        bottom: 0;
        flex-direction: row;
        justify-content: center;
        padding: 8px 12px;
        gap: 8px;
    }

    .floating-contact__tel,
    .floating-contact__btn {
        flex: 1;
        border-radius: 999px;
        font-size: 13px;
        box-shadow: 0 6px 15px rgba(15, 23, 42, 0.18);
    }

    .floating-contact__tel {
        align-items: center;
        text-align: center;
    }

    .floating-contact__number {
        font-size: 14px;
    }
}


/* 固定フッター CTA 全体 */
.footer-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 999;
  background-color: #071427;          /* 濃紺の帯 */
  padding: 8px 24px;
}

.footer-cta-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  gap: 24px;
  justify-content: center;
}

/* 共通ボタン（黄色のピル型） */
.cta-item {
  flex: 1 1 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  height: 55px;                        /* ★ボタン高さをきっちり90px */
  padding: 0 28px;
  background-color: #FAD93E;
  border-radius: 45px;                 /* 高さ90pxなので半分で完全なピル形状 */
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  text-decoration: none;
  color: #1A1A1A;
}

/* アイコン部分 */
.cta-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-circle {
  width: 60px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.55);
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-icon-circle svg {
  width: 28px;
  height: 28px;
  fill: none;
  stroke: #111827;
  stroke-width: 1.8;
}

/* 共通：サイズだけ共通管理 */
.cta-icon-circle svg {
  width: 28px;
  height: 28px;
}

/* 電話アイコン：黒塗りシルエットに */
.cta-item--phone .cta-icon-circle svg {
  fill: #111827;      /* 黒塗り */
  stroke: none;       /* 枠線はなし */
}

/* メールアイコン：細い1本線の封筒に */
.cta-item--form .cta-icon-circle svg {
  fill: none;
  stroke: #111827;
  stroke-width: 1.6;         /* すっきり細め */
  stroke-linecap: round;
  stroke-linejoin: round;
}


/* 中身共通コンテナ */
.cta-main {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}

/* ── 電話側のレイアウト ───────────────── */

.cta-main--phone {
  justify-content: center;           /* アイコン＋テキスト全体を中央寄せ */
  gap: 30px;
}

.cta-phone-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
  font-size: 13px;
  font-weight: 600;
}

.cta-phone-label {
  font-size: 13px;
}

.cta-phone-time {
  font-size: 12px;
}

.cta-phone-number {
  margin: 0;
  font-size: 39px;
  font-weight: 900;
  letter-spacing: 0;
}

/* ── CONTACT側のレイアウト ───────────── */

.cta-main--form {
  flex-direction: column;
  align-items: center;           /* CONTACTと説明文を左揃え */
  justify-content: center;
}

.cta-contact-heading {
  font-size: 30px;
  font-weight: 900;
  letter-spacing: 0.12em;
  margin-bottom: -10px;
}

.cta-contact-note {
  font-size: 13px;                   /* ご指定どおり */
  font-weight: 600;
  margin-bottom: 15px;
}

/* ホバー時 */
.cta-item:hover {
  filter: brightness(1.05);
  transform: translateY(-1px);
  transition: all 0.15s ease;
}

/* スマホ（縦積み） */
@media (max-width: 768px) {
  .footer-cta {
    padding: 8px 12px;
  }

  .footer-cta-inner {
    flex-direction: column;
    gap: 12px;
  }

  .cta-item {
    height: 90px;
    padding: 0 20px;
  }

  .cta-main--phone {
    gap: 16px;
  }

  .cta-phone-number,
  .cta-contact-heading {
    font-size: 24px;
  }
}

/* ===== Workflow Section ===== */
.workflow-section {
  padding: 80px 0 90px;
  background-color: #f5f7fa; /* 薄いグレーでセクション分け */
}

.workflow-intro {
  max-width: 960px;
  margin: 16px auto 40px;
  font-size: 15px;
  line-height: 1.9;
  color: #4b5563;
  text-align: center;
}

.workflow-block {
  margin-top: 56px;
}

.workflow-subtitle {
  font-size: 22px;
  font-weight: 700;
  color: #002536;
  text-align: left;
  margin-bottom: 20px;
}

/* ステップ全体（PC：横並び / SP：横スクロール） */
.workflow-steps {
  display: flex;
  align-items: stretch;
  gap: 16px;
  overflow-x: auto;
  padding: 16px 12px 8px;
  margin: 0 -12px;
}

/* スクロールバーを少し控えめに（対応ブラウザのみ） */
.workflow-steps::-webkit-scrollbar {
  height: 6px;
}
.workflow-steps::-webkit-scrollbar-thumb {
  background-color: rgba(15, 23, 42, 0.25);
  border-radius: 999px;
}
.workflow-steps::-webkit-scrollbar-track {
  background-color: transparent;
}

/* 各ステップカード */
.workflow-step {
  min-width: 220px;
  max-width: 260px;
  background-color: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  padding: 18px 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.06);
}

/* アイコン（丸＋絵文字） */
.workflow-step-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #e0f2fe;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: #002536;
}

/* タイトル・本文 */
.workflow-step-title {
  font-size: 15px;
  font-weight: 700;
  color: #111827;
  line-height: 1.5;
}

.workflow-step-text {
  font-size: 13px;
  line-height: 1.7;
  color: #4b5563;
}

/* 矢印 */
.workflow-arrow {
  flex: 0 0 auto;
  align-self: center;
  font-size: 20px;
  color: #9ca3af;
}

/* 備考テキスト */
.workflow-note {
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
}

/* 詳細ボタン */
.workflow-cta {
  margin-top: 20px;
}

.workflow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 260px;
  padding: 13px 28px;
  border-radius: 999px;
  background-color: #FAD93E;
  color: #002536;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.workflow-btn::after {
  content: "›";
  font-size: 16px;
}

.workflow-btn:hover {
  background-color: #f4c948;
  transform: translateY(-1px);
  box-shadow: 0 14px 26px rgba(0, 0, 0, 0.16);
}

/* レスポンシブ調整 */
@media (min-width: 1024px) {
  .workflow-steps {
    padding: 24px 0 10px;
    margin: 0;
  }
  .workflow-step {
    min-width: 0;
  }
}

@media (max-width: 767px) {
  .workflow-section {
    padding: 56px 0 64px;
  }
  .workflow-subtitle {
    text-align: center;
  }
  .workflow-intro {
    text-align: left;
    padding: 0 8px;
  }
  .workflow-btn {
    width: 100%;
  }
}
/* ===== Workflow block をダーク帯＋中央寄せにする上書き ===== */
.workflow-block {
  margin-top: 56px;
  padding: 32px 24px 28px;
  border-radius: 24px;
  background-color: #002536; /* ダークブルー */
  color: #ffffff;            /* 基本文字色を白に */
}

/* 中見出しを中央＆白文字に */
.workflow-subtitle {
  margin-bottom: 24px;
  text-align: center;
  font-size: 22px;
  font-weight: 700;
  color: #ffffff;
}

/* ステップ部分は今まで通り中央に“帯”として並べるだけ */
.workflow-steps {
  margin-top: 8px;
}

/* 備考テキストも白寄りの色で */
.workflow-note {
  margin-top: 16px;
  font-size: 13px;
  color: #e5e7eb; /* 少しトーンを落とした白 */
  text-align: center;
}

/* 詳細ボタンを中央配置 */
.workflow-cta {
  margin-top: 20px;
  text-align: center;
}

/* ボタンは黄色のまま、ダーク背景に映えるよう微調整 */
.workflow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  min-width: 260px;
  padding: 13px 28px;
  border-radius: 999px;
  background-color: #FAD93E;
  color: #002536;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.35); /* 少し強めにして映えるように */
}

/* スマホ時の余白調整 */
@media (max-width: 767px) {
  .workflow-block {
    padding: 24px 16px 24px;
    border-radius: 18px;
  }
}

/* お役立ち資料セクション */
.resources-section {
  padding: 100px 0;
  background-color: #f3f4f6; /* 薄いグレー */
}

.resources-section .section-title {
  text-align: center;
  color: #002536;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 16px;
}

.resources-intro {
  max-width: 820px;
  margin: 0 auto 40px;
  text-align: center;
  font-size: 14px;
  line-height: 1.9;
  color: #4b5563;
}

/* カードのグリッド */
.resources-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

/* カード本体 */
.resource-card {
  background-color: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

/* サムネイル部分（A4っぽい比率で） */
.resource-thumb {
  position: relative;
  padding-top: 70%; /* だいたいA4風: 横長矩形 */
  overflow: hidden;
}

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

/* テキスト部分 */
.resource-body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
}

/* 小ラベル */
.resource-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #002536;
  background-color: #e5edf3;
  border-radius: 999px;
  padding: 4px 10px;
}

/* タイトル */
.resource-title {
  font-size: 17px;
  font-weight: 700;
  color: #002536;
  line-height: 1.5;
}

/* 説明文 */
.resource-text {
  font-size: 13px;
  line-height: 1.8;
  color: #4b5563;
  flex: 1 1 auto;
}

/* ダウンロードボタン */
.resource-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  background-color: #FAD93E;
  color: #002536;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}

.resource-btn:hover {
  background-color: #f5c94b;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

