/*
==========================================
HARUKA.AI Theme Main Stylesheet
==========================================

[デザイン方針]
- モバイルファースト (min-width)
- vw + rem ベーススケーリング
- CSS変数による統一的なデザインシステム
- FontAwesome使用 (絵文字禁止)
- WCAG 2.1 レベルAA準拠

[ブレークポイント]
- sm:  640px (40rem)
- md:  768px (48rem)
- lg:  1024px (64rem)
- xl:  1280px (80rem)
- 2xl: 1536px (96rem)
*/

/* ==========================================
   0. Custom Fonts
   ========================================== */
@font-face {
  font-family: 'DIN Condensed';
  src: url('../fonts/DIN_Condensed_VF.otf') format('opentype');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}

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

html {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  font-family: 'Noto Sans JP', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Hiragino Sans',
               'Hiragino Kaku Gothic ProN', 'Yu Gothic', Meiryo, sans-serif;
  font-size: var(--font-size-base);
  line-height: 1;
  color: var(--color-text-primary);
  background-color: var(--color-background);
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

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

a {
  color: inherit;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

a:hover {
  opacity: 0.7;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  transition: opacity 0.3s ease;
}

button:hover {
  opacity: 0.7;
}

ul,
ol {
  list-style: none;
}

/* ==========================================
   2. CSS Variables (ルートフォントサイズ vw設定)
   ========================================== */
:root {
  /* モバイル基準（375px幅で16px = 4.267vw） */
  font-size: 4.267vw; /* 16 / 375 × 100 = 4.267vw */

  /* ==========================================
     カラーパレット (デザインカンプから抽出)
     ========================================== */
  --color-primary: #000000;
  --color-secondary: #FFFFFF;
  --color-accent: #FF6B00;           /* オレンジ（メインアクセント） */
  --color-accent-light: #FF8533;     /* ライトオレンジ */
  --color-accent-red: #E74C3C;       /* 赤アクセント（見出し等） */
  --color-text-primary: #333333;
  --color-text-secondary: #666666;
  --color-text-light: #322828;
  --color-background: #FFFFFF;
  --color-background-light: #F5F5F5;
  --color-border: #E0E0E0;

  /* グラデーション */
  --gradient-primary: linear-gradient(to right, #F92511, #F4AE19);
  --gradient-primary-vertical: linear-gradient(to bottom, #F92511, #F4AE19);

  /* ==========================================
     フォントサイズ (rem単位 → vwに自動連動)
     ========================================== */
  --font-size-xs: 0.75rem;      /* 12px相当 */
  --font-size-sm: 0.875rem;     /* 14px相当 */
  --font-size-base: 1rem;       /* 16px相当 */
  --font-size-lg: 1.125rem;     /* 18px相当 */
  --font-size-xl: 1.25rem;      /* 20px相当 */
  --font-size-2xl: 1.5rem;      /* 24px相当 */
  --font-size-3xl: 1.875rem;    /* 30px相当 */
  --font-size-4xl: 2.25rem;     /* 36px相当 */
  --font-size-5xl: 3rem;        /* 48px相当 */
  --font-size-6xl: 3.75rem;     /* 60px相当 */

  /* ==========================================
     フォントウェイト
     ========================================== */
  --font-weight-light: 300;
  --font-weight-normal: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;
  --font-weight-extrabold: 800;

  /* ==========================================
     行間
     ========================================== */
  --line-height-tight: 1.25;
  --line-height-snug: 1.375;
  --line-height-normal: 1.5;
  --line-height-relaxed: 1.625;
  --line-height-loose: 2;

  /* ==========================================
     スペーシング (rem単位 → vwに自動連動)
     ========================================== */
  --spacing-0: 0;
  --spacing-1: 0.25rem;      /* 4px相当 */
  --spacing-2: 0.5rem;       /* 8px相当 */
  --spacing-3: 0.75rem;      /* 12px相当 */
  --spacing-4: 1rem;         /* 16px相当 */
  --spacing-5: 1.25rem;      /* 20px相当 */
  --spacing-6: 1.5rem;       /* 24px相当 */
  --spacing-8: 2rem;         /* 32px相当 */
  --spacing-10: 2.5rem;      /* 40px相当 */
  --spacing-12: 3rem;        /* 48px相当 */
  --spacing-16: 4rem;        /* 64px相当 */
  --spacing-20: 5rem;        /* 80px相当 */
  --spacing-24: 6rem;        /* 96px相当 */
  --spacing-32: 8rem;        /* 128px相当 */

  /* ==========================================
     コンテナ幅
     ========================================== */
  --container-sm: 40rem;     /* 640px相当 */
  --container-md: 48rem;     /* 768px相当 */
  --container-lg: 64rem;     /* 1024px相当 */
  --container-xl: 80rem;     /* 1280px相当 */
  --container-2xl: 96rem;    /* 1536px相当 */

  /* ==========================================
     角丸
     ========================================== */
  --radius-sm: 0.125rem;     /* 2px */
  --radius-base: 0.25rem;    /* 4px */
  --radius-md: 0.375rem;     /* 6px */
  --radius-lg: 0.5rem;       /* 8px */
  --radius-xl: 0.75rem;      /* 12px */
  --radius-full: 9999px;

  /* ==========================================
     シャドウ
     ========================================== */
  --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
  --shadow-base: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
  --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);

  /* ==========================================
     Z-index
     ========================================== */
  --z-dropdown: 1000;
  --z-sticky: 1020;
  --z-fixed: 1030;
  --z-modal-backdrop: 1040;
  --z-modal: 1050;
}

/* タブレット小（640px幅で16px） */
@media (min-width: 640px) {
  :root {
    font-size: 2.5vw; /* 16 / 640 × 100 = 2.5vw */
  }
}

/* タブレット（768px幅で16px） */
@media (min-width: 768px) {
  :root {
    font-size: 2.083vw; /* 16 / 768 × 100 = 2.083vw */
  }
}

/* デスクトップ（1024px以上は1440px基準） */
@media (min-width: 1024px) {
  :root {
    font-size: 1.111vw; /* 16 / 1440 × 100 = 1.111vw */
  }
}

/* デスクトップ（1440px幅で16px） */
@media (min-width: 1440px) {
  :root {
    font-size: 1.111vw; /* 16 / 1440 × 100 = 1.111vw */
  }
}

/* デスクトップ大（1600px幅で16px） */
@media (min-width: 1600px) {
  :root {
    font-size: 1vw; /* 16 / 1600 × 100 = 1vw */
  }
}

/* 最大幅制限（超大画面での肥大化防止） */
@media (min-width: 1920px) {
  :root {
    font-size: 16px; /* 固定値に切り替え */
  }
}

/* ==========================================
   3. レイアウト
   ========================================== */

/* メインコンテンツエリア */
.site-main {
  flex: 1;
  width: 100%;
}

/* コンテナ */
.container {
  width: 100%;
  max-width: 38.6875rem; /* 619px */
  margin: 0 auto;
  padding: 0 1.75rem; /* 28px - スマホ375px時にコンテンツ幅319px */
}

@media (min-width: 768px) {
  .container {
    padding: 0 var(--spacing-8);
  }
}

@media (min-width: 1024px) {
  .container {
    max-width: 80.56vw; /* 1160px / 1440px = 80.56% */
    padding: 0;
  }
}

/* ==========================================
   4. ヘッダー
   ========================================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: var(--z-sticky);
  background-color: transparent;
  padding: 1.75rem 0 0; /* 28px 0 0 */
}

.header-container {
  width: 19.9375rem; /* 319px */
  height: 3.75rem; /* 60px */
  margin: 0 auto;
  padding: 0.90625rem 1.25rem; /* 14.5px 20px */
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--color-background);
  border-radius: var(--radius-full);
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
  box-sizing: border-box;
}

/* タブレット（768px - 1023px） */
@media (min-width: 768px) and (max-width: 1023px) {
  .header-container {
    width: calc(100% - 2.5rem); /* 画面幅に合わせてスケール */
    max-width: 45rem; /* 720px */
  }
}

/* PC（1024px以上） */
@media (min-width: 1024px) {
  .header-container {
    width: 85rem; /* 1360px / 16px */
    max-width: calc(100% - 2.5rem);
    height: 4.5rem; /* 72px */
    padding: 0 2.5rem; /* 40px */
    justify-content: flex-start;
    gap: 2.5rem; /* 40px - ハンバーガーとの間隔 */
  }

  .primary-navigation {
    margin-left: auto; /* ナビを右寄せ */
  }
}

.site-logo {
  width: 8.75rem; /* 140px */
  height: auto;
}

@media (min-width: 1024px) {
  .site-logo {
    width: 11.3125rem; /* 181px / 16px */
    height: auto;
  }
}

/* PC ナビゲーション */
.primary-navigation {
  display: none;
}

@media (min-width: 1024px) {
  .primary-navigation {
    display: block;
  }
}

.primary-menu {
  display: flex;
  align-items: center;
  gap: var(--spacing-6);
}

@media (min-width: 1024px) {
  .primary-menu {
    gap: 2.5rem; /* 40px */
  }

  .primary-menu li:first-child {
    display: none; /* ホームを非表示 */
  }
}

.primary-menu a {
  font-weight: var(--font-weight-medium);
  transition: background-color 0.3s ease;
}

@media (min-width: 1024px) {
  .primary-menu a {
    padding: 0;
    font-size: 0.875rem; /* 14px / 16px */
    white-space: nowrap;
  }
}

.primary-menu a:hover {
  background-color: var(--color-background-light);
  opacity: 1;
}

/* お問い合わせボタン（最後のメニュー項目） */
@media (min-width: 1024px) {
  .primary-menu li:last-child {
    margin-left: 1.25rem; /* 追加20px (合計60px) */
  }

  .primary-menu li:last-child a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: var(--color-secondary);
    width: 10rem; /* 160px */
    height: 3rem; /* 48px */
    padding: 0 2px;
    border-radius: var(--radius-full);
    font-size: 0.8125rem; /* 13px */
    font-weight: var(--font-weight-medium);
    text-align: center;
    border: none;
    transition: all 0.3s ease;
  }

  .primary-menu li:last-child a:hover {
    background: linear-gradient(var(--color-secondary), var(--color-secondary)) padding-box,
                var(--gradient-primary) border-box;
    border: 2px solid transparent;
    padding: 0;
    color: #FF4500;
  }
}

/* ハンバーガーメニューボタン */
.menu-toggle {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-2);
}

/* PC表示時のハンバーガーメニュー調整は不要（navのmargin-rightで制御） */

/* ハンバーガーメニューはPC/SPともに表示 */

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  width: 1.25rem; /* 20px */
}

.menu-bar {
  width: 100%;
  height: 2px;
  background-color: var(--color-text-primary);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] .menu-bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* モバイルメニュー共通 */
.mobile-menu {
  position: fixed;
  background: var(--gradient-primary);
  overflow-y: auto;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
}

/* スマホ用メニュー（フルスクリーン） */
.mobile-menu-sp {
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  transform: translateY(-100%);
}

.mobile-menu-sp.is-open {
  transform: translateY(0);
}

/* PC用メニュー（カード型） */
.mobile-menu-pc {
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(-100%);
  width: 100%;
  height: 100vh;
  border-radius: 1.875rem; /* 30px - ヘッダーと同じ見た目 */
  box-shadow: 0 4px 12px 0 rgba(0, 0, 0, 0.15);
  overflow: hidden;
}

.mobile-menu-pc.is-open {
  transform: translateY(0);
}

/* メニュー内要素のアニメーション */
.mobile-menu .mobile-menu-branding,
.mobile-menu .mobile-menu-column {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}

.mobile-menu.is-open .mobile-menu-branding {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.2s;
}

.mobile-menu.is-open .mobile-menu-column:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.3s;
}

.mobile-menu.is-open .mobile-menu-column:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.4s;
}

.mobile-menu.is-open .mobile-menu-column:nth-child(3) {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

/* 閉じるボタン共通 */
.mobile-menu-close {
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s ease;
  padding: var(--spacing-2);
  z-index: 10000;
}

.mobile-menu-close:hover {
  opacity: 0.7;
}

/* スマホ用閉じるボタン（container内に配置） */
.mobile-menu-sp .mobile-menu-close {
  position: absolute;
  top: 0.90625rem; /* container padding-topと同じ */
  right: 1.25rem; /* container padding-rightと同じ */
}

/* PC用閉じるボタン */
.mobile-menu-pc .mobile-menu-close {
  top: 2.5rem;
  right: 2.5rem;
}

.close-icon {
  position: relative;
  width: 1.25rem; /* 20px */
  height: 1.25rem; /* 20px */
}

.close-bar {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.25rem; /* 20px - ハンバーガーバーと同じ */
  height: 2px;
  background-color: var(--color-secondary);
}

.close-bar:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.close-bar:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

/* メニュー内部レイアウト */
/* スマホ用メニュー内部 */
.mobile-menu-sp .mobile-menu-inner {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  height: 100%;
  padding-top: 1.75rem; /* ヘッダーmargin-topと同じ */
}

/* スマホ用コンテナ（header-containerと同じサイズ） */
.mobile-menu-sp .mobile-menu-container {
  position: relative;
  width: 19.9375rem; /* 319px */
  padding: 0.90625rem 1.25rem; /* header-containerと同じpadding */
  display: flex;
  flex-direction: column;
  gap: var(--spacing-10);
}

/* タブレット（768px - 1023px） */
@media (min-width: 768px) and (max-width: 1023px) {
  .mobile-menu-sp .mobile-menu-container {
    width: calc(100% - 2.5rem);
    max-width: 45rem; /* 720px */
  }
}

/* PC用メニュー内部 */
.mobile-menu-pc .mobile-menu-inner {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 8.75rem; /* 140px */
  width: 100%;
  height: auto;
  padding: 16.25rem 7.5rem; /* 260px 120px */
}

/* 左側：ブランディング */
.mobile-menu-branding {
  flex-shrink: 0;
}

.mobile-menu-logo img {
  width: 8.75rem; /* 140px */
  height: auto;
}

/* スマホ用ブランディング */
.mobile-menu-sp .mobile-menu-branding {
  width: auto;
}

/* PC用ブランディング */
.mobile-menu-pc .mobile-menu-branding {
  width: auto;
  flex-shrink: 0;
}

.mobile-menu-pc .mobile-menu-logo img {
  width: 13.58125rem; /* 217.3px */
  margin-top: 0.4625rem; /* 7.4px */
  margin-bottom: 3.5rem; /* 56px */
}

.mobile-menu-tagline {
  margin-top: var(--spacing-6);
  font-size: var(--font-size-xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  line-height: var(--line-height-normal);
  white-space: nowrap;
}

/* PC用タグライン */
.mobile-menu-pc .mobile-menu-tagline {
  font-size: 2.5rem; /* 40px */
  line-height: 3.75rem; /* 60px */
  margin-top: 0;
}

/* 右側：メニューナビゲーション */
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-6);
  width: 100%;
}

/* スマホ用ナビゲーション */
.mobile-menu-sp .mobile-menu-nav {
  flex-direction: column;
  width: 100%;
  gap: var(--spacing-6);
}

/* PC用ナビゲーション */
.mobile-menu-pc .mobile-menu-nav {
  width: auto;
  flex: 1;
  flex-direction: row;
  justify-content: space-between;
  gap: 0;
}

/* メニューカラム */
.mobile-menu-column {
  width: 100%;
}

/* PC用カラム */
.mobile-menu-pc .mobile-menu-column {
  width: auto;
}

.mobile-menu-heading {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
  margin-bottom: var(--spacing-4);
}

.mobile-menu-heading a {
  color: var(--color-secondary);
}

/* PC用ヘッディング */
.mobile-menu-pc .mobile-menu-heading {
  font-size: 1.125rem; /* 18px */
  font-weight: var(--font-weight-bold);
  margin-bottom: 2rem; /* 32px */
}

/* メニューリスト */
.mobile-menu-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-3);
}

.mobile-menu-list a {
  display: block;
  font-size: var(--font-size-sm);
  color: var(--color-secondary);
  transition: opacity 0.3s ease;
}

.mobile-menu-list a:hover {
  opacity: 0.7;
}

/* PC用リストリンク */
.mobile-menu-pc .mobile-menu-list a {
  font-size: 1rem; /* 16px */
  font-weight: var(--font-weight-normal);
}

/* PC用リスト間隔 */
.mobile-menu-pc .mobile-menu-list {
  gap: 2rem; /* 32px */
}

/* お問い合わせリンク */
.mobile-menu-contact-link {
  margin-top: var(--spacing-4);
}

.mobile-menu-contact-link a {
  font-size: var(--font-size-base);
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
}

/* 区切り線 */
.mobile-menu-divider {
  width: 100%;
  height: 1px;
  background-color: var(--color-secondary);
  margin: var(--spacing-6) 0;
}

/* ポリシーリンク */
.mobile-menu-policy {
  margin-top: var(--spacing-2);
}

.mobile-menu-policy a {
  font-size: var(--font-size-xs);
}

/* PC用ポリシーリンク */
.mobile-menu-pc .mobile-menu-policy a {
  font-size: 0.75rem; /* 12px */
}

/* ==========================================
   5. フッター
   ========================================== */
.site-footer {
  background: var(--gradient-primary);
  color: var(--color-secondary);
  padding: 3.75rem 0 1.25rem;
  margin-top: auto;
  border-radius: 2.5rem 2.5rem 0 0;
}

@media (min-width: 768px) {
  .site-footer {
    border-radius: 3rem 3rem 0 0;
  }
}

.footer-content {
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0 1.75rem;
  text-align: center;
}

.footer-brand {
  margin-bottom: 2.5rem;
}

.footer-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.footer-logo-image {
  height: 3rem;
  width: auto;
  object-fit: contain;
}

.footer-logo-text {
  font-size: 1.5rem;
  font-weight: var(--font-weight-bold);
  color: var(--color-secondary);
}

.footer-tagline {
  font-size: 1.5rem;
  line-height: 1.75rem;
  color: var(--color-secondary);
  font-weight: var(--font-weight-bold);
  margin-bottom: 2rem;
}

.footer-divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  margin: 2rem 0;
}

.footer-nav {
}

.footer-nav-list {
  display: flex;
  flex-direction: column;
  gap: 1.875rem;
  list-style: none;
}

.footer-nav-list a {
  color: var(--color-secondary);
  font-size: 1rem;
  font-weight: var(--font-weight-normal);
  transition: opacity 0.3s ease;
}

.footer-nav-list a:hover {
  opacity: 0.8;
}

.footer-legal {
  margin-bottom: 2rem;
}

.footer-legal-list {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  list-style: none;
  font-size: 0.875rem;
}

.footer-legal-list a {
  color: var(--color-secondary);
  font-weight: var(--font-weight-normal);
  transition: opacity 0.3s ease;
}

.footer-legal-list a:hover {
  opacity: 0.8;
}

.footer-copyright {
  font-size: 0.875rem;
  color: var(--color-secondary);
  margin-top: 2.5rem;
  margin-bottom: 0;
}

/* PC用フッター */
@media (min-width: 1024px) {
  .site-footer {
    padding: 5rem 0 2.5rem;
  }

  .footer-content-pc {
    display: flex !important;
    max-width: var(--container-xl);
    margin: 0 auto;
    padding: 0 8.75rem;
  }

  .footer-brand-pc {
    width: 50%;
    display: flex;
    flex-direction: column;
  }

  .footer-brand-pc .footer-logo {
    justify-content: flex-start;
    margin-bottom: 3.75rem; /* 60px */
  }

  .footer-brand-pc .footer-logo-image {
    height: 3rem; /* 48px */
  }

  .footer-tagline-pc {
    font-size: 2.5rem; /* 40px */
    line-height: 3.75rem; /* 60px */
    color: var(--color-secondary);
    font-weight: var(--font-weight-bold);
    margin-bottom: 10.6875rem; /* 171px */
    text-align: left;
  }

  .footer-copyright-pc {
    font-size: 0.75rem; /* 12px */
    font-weight: var(--font-weight-normal);
    color: var(--color-secondary);
    margin: 0;
    text-align: left;
  }

  .footer-nav-pc {
    width: 50%;
    display: flex;
  }

  .footer-nav-left {
    padding-left: 6.25rem; /* 100px */
  }

  .footer-nav-right {
    padding-left: 6.25rem; /* 100px */
    text-align: left;
  }

  .footer-nav-column {
    text-align: left;
    margin-bottom: 3rem; /* 48px */
  }

  .footer-nav-column:last-child {
    margin-bottom: 0;
  }

  .footer-nav-heading {
    font-size: 0.9375rem; /* 15px */
    font-weight: var(--font-weight-bold);
    color: var(--color-secondary);
    margin-bottom: 1.25rem; /* 20px */
  }

  .footer-nav-heading a {
    color: var(--color-secondary);
    transition: opacity 0.3s ease;
  }

  .footer-nav-heading a:hover {
    opacity: 0.8;
  }

  .footer-nav-list-pc {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    list-style: none;
  }

  .footer-nav-list-pc a {
    color: var(--color-secondary);
    font-size: 0.9375rem; /* 15px */
    font-weight: var(--font-weight-normal);
    transition: opacity 0.3s ease;
  }

  .footer-nav-list-pc a:hover {
    opacity: 0.8;
  }

  .footer-contact-link {
    margin-bottom: 1rem;
  }

  .footer-contact-link a {
    color: var(--color-secondary);
    font-size: 0.9375rem; /* 15px */
    font-weight: var(--font-weight-bold);
    transition: opacity 0.3s ease;
  }

  .footer-contact-link a:hover {
    opacity: 0.8;
  }

  .footer-nav-divider {
    width: 100%;
    height: 0.0625rem; /* 1px */
    background: rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
  }

  .footer-nav-right .footer-nav-list-pc {
    gap: 1rem; /* 16px */
  }

  .footer-nav-right .footer-nav-list-pc a {
    font-size: 0.75rem; /* 12px */
  }
}

/* ==========================================
   6. ユーティリティ
   ========================================== */

/* スキップリンク */
.skip-link {
  position: absolute;
  top: -100%;
  left: 0;
  padding: var(--spacing-2) var(--spacing-4);
  background-color: var(--color-text-primary);
  color: var(--color-secondary);
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* スクリーンリーダー専用テキスト */
.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border-width: 0;
}

/* PC専用表示 */
.pc-only {
  display: none !important;
}

@media (min-width: 1024px) {
  .pc-only {
    display: block !important;
  }

  .pc-only.btn {
    display: inline-flex !important;
  }

  .pc-only.footer-content-pc {
    display: flex !important;
  }
}

/* SP専用表示 */
.sp-only {
  display: block;
}

.sp-only.btn {
  display: inline-flex;
}

@media (min-width: 1024px) {
  .sp-only {
    display: none !important;
  }
}

/* ==========================================
   7. パンくずリスト
   ========================================== */
.breadcrumb {
  padding: var(--spacing-4) 0;
  background-color: var(--color-background-light);
}

.breadcrumb-list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
  max-width: var(--container-xl);
  margin: 0 auto;
  padding: 0;
}

.breadcrumb-item {
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  color: var(--color-text-secondary);
}

.breadcrumb-item:not(:last-child)::after {
  content: ">";
  margin-left: var(--spacing-2);
  margin-right: var(--spacing-2);
  color: var(--color-text-light);
}

.breadcrumb-item a {
  color: var(--color-text-secondary);
  text-decoration: none;
}

.breadcrumb-item a:hover {
  color: var(--color-accent);
}

/* ==========================================
   7-2. ページヒーロー（下層ページ共通）
   ========================================== */
.page-hero {
  position: relative;
  min-height: 31.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: var(--spacing-20) 0 2.5rem; /* 80px 0 40px */
  background: linear-gradient(135deg, #FFA500 0%, #FF4500 100%);
  background-size: cover;
  background-position: center;
  margin-top: -7.5rem;
}

@media (min-width: 1024px) {
  .page-hero {
    padding-top: 7.5rem; /* ヘッダーナビの一番下の位置 */
    padding-bottom: 7.5rem; /* 120px */
  }
}

.page-hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  background-size: 11.71875rem auto; /* 187.5px */
  background-position: top right;
  background-repeat: no-repeat;
  z-index: 1;
}

/* About ページ */
.page-template-page-about .page-hero-overlay {
  background-image: url('../images/sp-about-background.jpg');
  background-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .page-template-page-about .page-hero-overlay {
    background-image: url('../images/pc-about-background.jpg');
    background-size: 45rem 43.75rem; /* 720px 700px */
  }
}

/* Service ページ */
.page-template-page-service .page-hero-overlay {
  background-image: url('../images/sp-service-background.jpg');
  background-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .page-template-page-service .page-hero-overlay {
    background-image: url('../images/pc-service-background.jpg');
    background-size: 45rem 43.75rem; /* 720px 700px */
  }
}

/* Contact ページ */
.page-template-page-contact .page-hero-overlay {
  background-image: url('../images/sp-contact_news-background.jpg');
  background-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .page-template-page-contact .page-hero-overlay {
    background-image: url('../images/pc-contact_news-background.jpg');
    background-size: 45rem 43.75rem; /* 720px 700px */
  }
}

.page-template-page-contact .page-hero {
  justify-content: flex-start;
  padding-bottom: 0;
  min-height: auto;
}

.page-template-page-contact .page-hero-title {
  margin-bottom: 0;
}

.page-privacy-policy .page-hero-title,
.page-security-policy .page-hero-title {
  font-size: 3.875rem; /* 62px */
  margin-bottom: 0;
}

.page-privacy-policy .page-hero-content,
.page-security-policy .page-hero-content {
  margin-bottom: 4.375rem; /* 70px */
}

.page-privacy-policy .page-hero,
.page-security-policy .page-hero {
  justify-content: flex-start;
  padding-bottom: 0;
  min-height: auto;
}

.page-privacy-policy .policy-section,
.page-security-policy .policy-section {
  padding-top: 12.5rem; /* 200px */
  padding-bottom: 12.5rem; /* 200px */
}

.page-privacy-policy .policy-content,
.page-security-policy .policy-content {
  max-width: 63.875rem; /* 1022px */
}

.page-privacy-policy .policy-item-title {
  font-size: 1.125rem; /* 18px - スマホ */
  font-weight: var(--font-weight-bold);
  line-height: 1.5rem; /* 24px */
  margin-bottom: 1.75rem; /* 28px */
  color: #000000;
}

@media (min-width: 1024px) {
  .page-privacy-policy .policy-item-title {
    font-size: 1.5rem; /* 24px - PC */
  }
}

.page-security-policy .policy-item-title {
  font-size: 1.2rem; /* スマホ */
  font-weight: var(--font-weight-bold);
  line-height: 1.5rem; /* 24px */
  margin-bottom: 1.75rem; /* 28px */
  color: #000000;
}

@media (min-width: 1024px) {
  .page-security-policy .policy-item-title {
    font-size: 1.5rem; /* 24px - PC */
  }
}

.page-privacy-policy .policy-item p,
.page-security-policy .policy-item p,
.page-privacy-policy .policy-intro p,
.page-security-policy .policy-intro p {
  font-size: 0.875rem; /* 14px - スマホ */
  font-weight: 400;
  line-height: 1.5rem; /* 24px */
  color: #000000;
  margin-top: -0.3125rem; /* -5px = -(24-14)/2 */
  margin-bottom: -0.3125rem; /* -5px = -(24-14)/2 */
}

@media (min-width: 1024px) {
  .page-privacy-policy .policy-item p,
  .page-security-policy .policy-item p,
  .page-privacy-policy .policy-intro p,
  .page-security-policy .policy-intro p {
    font-size: 1rem; /* 16px - PC */
    line-height: 1.625rem; /* 26px - PC */
    margin-top: -0.3125rem; /* -5px = -(26-16)/2 */
    margin-bottom: -0.3125rem; /* -5px = -(26-16)/2 */
  }
}

.page-privacy-policy .policy-footer,
.page-security-policy .policy-footer {
  color: #000000;
  margin-top: 6.25rem; /* 100px */
  font-size: 1rem; /* 16px */
  font-weight: 500;
  line-height: 1rem; /* 16px */
}

.page-privacy-policy .policy-footer p,
.page-security-policy .policy-footer p {
  margin-bottom: 1rem; /* 16px */
}

.page-privacy-policy .policy-footer p:last-child,
.page-security-policy .policy-footer p:last-child {
  margin-bottom: 0;
}

.page-privacy-policy .policy-item,
.page-security-policy .policy-item {
  padding-bottom: 3.125rem; /* 50px */
  margin-bottom: 3.125rem; /* 50px */
  border-bottom: 1px solid #000000;
}

.page-privacy-policy .policy-item:last-child,
.page-privacy-policy .policy-content > .policy-item:nth-last-child(2),
.page-security-policy .policy-item:last-child,
.page-security-policy .policy-content > .policy-item:nth-last-child(2) {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* セキュリティポリシー: イントロのみボーダー、項目間はボーダーなし */
.page-security-policy .policy-intro {
  padding-bottom: 3.125rem; /* 50px */
  margin-bottom: 3.125rem; /* 50px */
  border-bottom: 1px solid #000000;
}

.page-security-policy .policy-item {
  margin-bottom: 3.125rem; /* 50px */
}

.page-security-policy .policy-item:last-child {
  margin-bottom: 0;
}

.page-template-page-contact .page-hero-content {
  margin-bottom: 4.375rem; /* 70px */
}

/* News アーカイブ */
.post-type-archive-news .page-hero-overlay {
  background-image: url('../images/sp-contact_news-background.jpg');
  background-blend-mode: multiply;
}

@media (min-width: 768px) {
  .post-type-archive-news .page-hero-overlay {
    background-image: url('../images/pc-contact_news-background.jpg');
  }
}

.post-type-archive-news .page-hero,
.single-news .page-hero {
  justify-content: flex-start;
  padding-bottom: 0;
  min-height: auto;
}

.post-type-archive-news .page-hero-title,
.single-news .page-hero-title {
  margin-bottom: 0;
}

.post-type-archive-news .page-hero-content,
.single-news .page-hero-content {
  margin-bottom: 4.375rem; /* 70px */
}

/* Policy ページ (Privacy & Security) */
.page-template-page-privacy-policy .page-hero-overlay,
.page-template-page-security-policy .page-hero-overlay {
  background-image: url('../images/sp-policy-background.jpg');
  background-blend-mode: multiply;
}

@media (min-width: 1024px) {
  .page-template-page-privacy-policy .page-hero-overlay,
  .page-template-page-security-policy .page-hero-overlay {
    background-image: url('../images/pc-policy-background.jpg');
    background-size: 45rem 43.75rem; /* 720px 700px */
  }
}

.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 6.25rem; /* 100px - 画面上部から148pxの位置 */
}

@media (min-width: 1024px) {
  .page-hero-content {
    padding-top: 11.25rem; /* 180px */
  }
}

.page-hero-label {
  font-size: var(--font-size-sm);
  margin: 0;
  margin-bottom: 0.9375rem; /* 15px */
}

@media (min-width: 1024px) {
  .page-hero-label {
    font-size: 1.125rem; /* 18px */
    font-weight: 600; /* semibold */
    margin-bottom: 1.25rem; /* 20px */
  }
}

.page-hero-title {
  font-size: 6.25rem; /* 100px */
  font-family: 'DIN Condensed', sans-serif;
  font-weight: 400;
  line-height: 0.75;
  margin-bottom: 4.375rem; /* 70px */
}

@media (min-width: 1024px) {
  .page-hero-title {
    font-size: 10rem; /* 160px */
    margin-bottom: 6.25rem; /* 100px */
  }

  .page-privacy-policy .page-hero-title,
  .page-security-policy .page-hero-title {
    font-size: 10rem; /* 160px */
  }
}

.page-hero-nav {
  background: transparent;
  border-radius: 0;
  overflow: hidden;
  margin-bottom: 3.75rem; /* 60px */
}

@media (min-width: 1024px) {
  .page-hero-nav {
    display: flex;
    flex-direction: row;
    gap: 2.5rem; /* 40px */
  }

  .page-hero-nav-item {
    width: 12.5rem; /* 200px */
    height: 2.5rem; /* 40px */
    font-size: 0.875rem; /* 14px */
    font-weight: 400; /* regular */
  }
}

.page-hero-nav-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.15625rem 0; /* 18.5px 0 */
  border-bottom: 1.1px solid #322828;
  color: var(--color-text-primary);
  font-size: 0.9375rem; /* 15px */
  font-weight: 400;
  transition: background 0.3s ease;
}


.page-hero-nav-item i {
  font-size: 0.75rem; /* 12px */
  margin-left: auto;
}

.page-hero-nav-item:hover {
  background: var(--color-background-light);
}

.page-hero .breadcrumb {
  background: #F3F3F3;
  padding: 0 1.25rem; /* 0 20px */
  height: 1.75rem; /* 28px */
  border-radius: 0.875rem; /* 14px - 高さの半分 */
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero-breadcrumb {
    margin-top: 5rem; /* 80px */
  }

  .page-hero .breadcrumb {
    height: 1.75rem; /* 28px */
    padding: 0 2.5rem; /* 0 40px */
    width: fit-content;
  }

  .page-hero .breadcrumb-item {
    font-size: 0.875rem; /* 14px */
  }
}

.page-hero .breadcrumb-list {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 1.75rem; /* 28px */
  max-width: 100%;
}

.page-hero .breadcrumb-item {
  display: inline;
}

.page-hero .breadcrumb {
  max-width: calc(100% - 2.5rem); /* container padding分を引く */
  overflow: hidden;
}

@media (min-width: 1024px) {
  .page-hero .breadcrumb {
    max-width: 100%;
  }
}

.page-hero-breadcrumb {
  position: relative;
  z-index: 2;
}

/* About メッセージ画像 */
.about-message-section {
  padding: 5rem 0 4.375rem; /* 80px 0 70px */
}

@media (min-width: 1024px) {
  .about-message-section {
    padding: 7.5rem 0; /* 120px */
  }

  .about-main-copy {
    font-size: 1.25rem; /* 20px */
    margin-top: 2.5rem; /* 40px */
  }

  .about-main-copy br {
    display: none;
  }
}

.about-message-image {
  display: block;
  width: 18.3125rem; /* 293px */
  height: auto;
}

.about-message-image-sp {
  display: block;
}

.about-message-image-pc {
  display: none;
}

/* タブレット - SP画像を大きく表示 */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-message-image {
    width: 28rem; /* 448px - タブレット用に拡大 */
  }
}

@media (min-width: 1024px) {
  .about-message-image-sp {
    display: none;
  }

  .about-message-image-pc {
    display: block;
    width: auto;
    max-width: 100%;
  }
}

.about-main-copy {
  font-size: 1rem; /* 16px */
  font-weight: var(--font-weight-bold);
  text-align: left;
  line-height: 2rem; /* 32px */
  max-width: 50rem;
  margin-top: 2.5rem; /* 40px */
}

/* タブレット - SPと同じ比率を維持 */
@media (min-width: 768px) and (max-width: 1023px) {
  .about-main-copy {
    font-size: 1rem; /* 16px - SPと同じ */
    line-height: 2rem; /* 32px - SPと同じ */
    max-width: 21.875rem; /* 350px - SPの幅に近い比率 */
  }
}

/* ==========================================
   8. ページネーション
   ========================================== */
.pagination {
  margin: var(--spacing-12) 0;
}

.pagination .page-numbers {
  display: flex;
  justify-content: center;
  gap: var(--spacing-2);
}

.pagination .page-numbers li {
  list-style: none;
}

.pagination .page-numbers a,
.pagination .page-numbers span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 var(--spacing-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-base);
  color: var(--color-text-primary);
  font-weight: var(--font-weight-medium);
  transition: all 0.3s ease;
}

.pagination .page-numbers a:hover {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-secondary);
  opacity: 1;
}

.pagination .page-numbers .current {
  background-color: var(--color-accent);
  border-color: var(--color-accent);
  color: var(--color-secondary);
}

/* ==========================================
   9. アニメーション
   ========================================== */

/* ページローダー */
.page-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-background);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9998; /* メニュー(9999)より下 */
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.page-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-spinner {
  display: flex;
  gap: 0.5rem;
}

.loader-dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  animation: loaderBounce 1.4s ease-in-out infinite;
}

.loader-dot:nth-child(1) {
  background-color: #F92511;
  animation-delay: 0s;
}

.loader-dot:nth-child(2) {
  background-color: #F4AE19;
  animation-delay: 0.2s;
}

.loader-dot:nth-child(3) {
  background-color: #F92511;
  animation-delay: 0.4s;
}

@keyframes loaderBounce {
  0%, 80%, 100% {
    transform: scale(0.6);
    opacity: 0.5;
  }
  40% {
    transform: scale(1);
    opacity: 1;
  }
}

/* スクロールアニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.animate-on-scroll {
  opacity: 0;
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.is-visible {
  animation: fadeIn 0.6s ease forwards;
}

/* 左からマスクが外れるアニメーション */
@keyframes maskRevealLeft {
  0% {
    clip-path: inset(0 100% 0 0);
    opacity: 1;
  }
  100% {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

.animate-mask-left {
  opacity: 0;
}

.animate-mask-left.is-visible {
  opacity: 1;
  animation: maskRevealLeft 0.8s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

/* ==========================================
   10. 共通コンポーネント（ボタン）
   ========================================== */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  border: none;
}

.btn-primary {
  width: 11.75rem; /* 188px */
  height: 3.25rem; /* 52px */
  background: var(--gradient-primary);
  color: var(--color-secondary);
  font-size: 0.75rem; /* 12px */
  font-weight: var(--font-weight-bold);
  position: relative;
  padding: 0;
}

.btn-primary::before {
  content: '';
  position: absolute;
  left: 1.25rem; /* 20px */
  top: 50%;
  transform: translateY(-50%);
  width: 0.25rem; /* 4px */
  height: 0.25rem; /* 4px */
  background-color: var(--color-secondary);
  border-radius: var(--radius-full);
}

.btn-primary::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-full);
  padding: 2px;
  background: var(--gradient-primary);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.btn-primary:hover {
  background: var(--color-secondary);
}

.btn-primary:hover::after {
  opacity: 1;
}

.btn-primary:hover span,
.btn-primary:hover {
  background-image: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.btn-primary:hover::before {
  background-color: #F92511;
}

.btn-outline {
  background-color: transparent;
  color: var(--color-text-primary);
  border-color: var(--color-text-primary);
}

.btn-outline:hover {
  background-color: var(--color-text-primary);
  color: var(--color-secondary);
  opacity: 1;
}

.btn-large {
  padding: var(--spacing-4) var(--spacing-8);
  font-size: var(--font-size-lg);
}

/* ==========================================
   11. セクション共通スタイル
   ========================================== */

.section {
  padding: 3.4375rem 0; /* 55px */
  background-color: transparent;
}

@media (min-width: 768px) {
  .section {
    padding: 3.4375rem 0; /* 55px */
  }
}

@media (min-width: 1024px) {
  .section {
    padding: 5.375rem 0; /* 86px */
  }
}

.section-title {
  font-size: 1.75rem; /* 28px */
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 1.875rem; /* 30px */
  letter-spacing: calc(100 / 1000 * 1em);
  margin: 0;
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .section-title {
    font-size: var(--font-size-4xl);
    margin-bottom: var(--spacing-6);
  }
}

@media (min-width: 1024px) {
  .section-title {
    font-size: var(--font-size-5xl);
  }
}

.section-title-number {
  font-size: 2.25rem; /* 36px */
}

.problem-label {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  letter-spacing: calc(100 / 1000 * 1em);
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.78125rem; /* 12.5px */
}

.problem-title {
  font-size: 1.5rem; /* 24px */
  font-weight: var(--font-weight-bold);
  line-height: 2.125rem; /* 34px */
  letter-spacing: calc(100 / 1000 * 1em);
  margin-bottom: 1.6125rem; /* 25.8px */
}

@media (min-width: 1024px) {
  .problem-label {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 1.25rem; /* 20px */
  }

  .problem-title {
    font-size: 1.75rem; /* 28px */
    margin-bottom: 2rem; /* 32px */
  }

  .problem-title br {
    display: none;
  }

  .problem-subtitle {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 2rem; /* 32px */
  }

  .problem-content p {
    font-size: 0.875rem; /* 14px */
    line-height: 1.3125rem; /* 21px */
  }

  .problem-content p:first-child {
    margin-top: -0.21875rem; /* ネガティブマージン: -(21-14)/2 = -3.5px */
  }

  .problem-content {
    margin: 0;
    text-align: left;
    max-width: none;
  }
}

.problem-subtitle {
  font-size: 1rem; /* 16px */
  font-weight: 500; /* medium */
  margin-bottom: 1.875rem; /* 30px */
}

.problem-content {
  max-width: 50rem;
  margin: 0 auto;
}

.problem-content p {
  font-size: 0.875rem; /* 14px */
  line-height: 2.125rem; /* 34px */
  font-weight: 400;
  color: #3E3A39;
  margin: 0;
}

.problem-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  margin-top: 2.5rem; /* 40px */
  margin-bottom: 2.5rem; /* 40px */
}

.problem-card {
  background-color: #F26C15;
  border-radius: 0.67875rem; /* 10.86px */
  padding: 1.125rem 0; /* 18px 0 */
  text-align: center;
  color: var(--color-secondary);
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.problem-card:last-child {
  grid-column: 1 / 2;
}

.problem-card-label {
  font-family: 'DIN Condensed', sans-serif;
  font-size: 1.125rem; /* 18px */
  line-height: 0.75;
  margin-bottom: 0.5rem;
  color: var(--color-secondary);
}

.problem-card-title {
  font-size: 1.5rem; /* 24px */
  font-weight: 800; /* extrabold */
  margin-bottom: 1rem;
  color: var(--color-secondary);
}

.problem-card-description {
  font-size: 0.6875rem; /* 11px */
  font-weight: 500; /* medium */
  line-height: 1.01875rem; /* 16.3px */
  color: var(--color-secondary);
  margin: 0;
}

.problem-image {
  width: 100%;
  height: auto;
  border-radius: 1.25rem; /* 20px */
  display: block;
  margin-top: var(--spacing-8);
}

/* Issues Section */
.issues-section {
  padding: 3.4375rem 0; /* 55px */
}

@media (min-width: 1024px) {
  .issues-section {
    padding: 7.5rem 0 6.25rem; /* 120px 100px */
  }

  .issues-section .section-title {
    font-size: 1.875rem; /* 30px */
    margin-bottom: 0;
  }

  .issues-section .section-title br {
    display: none;
  }
}

/* Problem Section */
.problem-section {
  padding: 0 0 3.4375rem 0; /* 0 0 55px 0 */
}

.problem-section-2 {
  margin-top: 2.8125rem; /* 45px */
}

@media (min-width: 1024px) {
  .problem-section {
    padding-bottom: 0;
  }

  .problem-section-2 {
    margin-top: 10rem; /* 160px */
    padding-bottom: 5rem; /* 80px */
  }

  .problem-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }

  .problem-section .problem-text {
    grid-column: 1;
  }

  .problem-section .problem-visual {
    grid-column: 2;
    padding-left: 6.25rem; /* 100px */
    align-self: start;
  }

  .problem-section .problem-image {
    width: 30rem; /* 480px */
    margin-top: 0;
    border-radius: 2.5rem; /* 40px */
  }

  /* Problem02: ビジュアルを左に */
  .problem-section-2 .problem-text {
    grid-column: 2;
    grid-row: 1;
  }

  .problem-section-2 .problem-visual {
    grid-column: 1;
    grid-row: 1;
    padding-left: 0;
    padding-right: 6.25rem; /* 100px */
  }

  .problem-section-2 .problem-cards {
    margin-top: 3.75rem; /* 60px */
    display: grid;
    grid-template-columns: repeat(3, 11.25rem); /* 180px x 3 */
    gap: 1.25rem; /* 20px */
    margin-bottom: 0;
  }

  .problem-section-2 .problem-card {
    grid-column: auto;
    padding: 1.25rem 0; /* 20px */
    border-radius: 0.9375rem; /* 15px */
  }

  .problem-section-2 .problem-card:last-child {
    grid-column: auto;
  }

  .problem-section-2 .problem-card-label {
    font-size: 1.25rem; /* 20px */
    line-height: 1.5rem; /* 24px */
  }

  .problem-section-2 .problem-card-title {
    font-size: 1.75rem; /* 28px */
    font-weight: 800; /* extrabold */
    height: 4.5rem; /* 72px */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0;
  }

  .problem-section-2 .problem-card-description {
    font-size: 0.75rem; /* 12px */
    line-height: 1.125rem; /* 18px */
  }
}

/* Case Study Section */
.case-study-section {
  padding: 3.4375rem 0; /* 55px */
  background: linear-gradient(135deg, #FF4500 0%, #FFA500 100%);
  color: var(--color-secondary);
}

.case-study-label {
  font-size: var(--font-size-sm);
  text-align: center;
  margin-bottom: var(--spacing-2);
}

.case-study-title {
  font-size: var(--font-size-3xl);
  font-weight: var(--font-weight-bold);
  text-align: center;
  margin-bottom: var(--spacing-4);
  color: var(--color-secondary);
}

.case-study-subtitle {
  text-align: center;
  margin-bottom: var(--spacing-12);
  color: var(--color-secondary);
  opacity: 0.9;
}

.case-study-card {
  padding: var(--spacing-8);
  border-radius: var(--radius-lg);
  text-align: center;
}

.case-study-card-1 {
  background-color: rgba(255, 107, 107, 1);
}

.case-study-card-2 {
  background-color: rgba(255, 140, 0, 1);
}

.case-study-card-3 {
  background-color: rgba(255, 165, 0, 1);
}

.case-study-card-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  margin-bottom: var(--spacing-4);
  color: var(--color-secondary);
}

.case-study-card-label {
  font-size: var(--font-size-sm);
  color: var(--color-secondary);
}

.case-study-card-description {
  margin-top: var(--spacing-4);
  color: var(--color-secondary);
  opacity: 0.95;
}

@media (min-width: 1024px) {
  .case-study-section {
    padding: 7.5rem 0 5rem 0; /* 120px 80px */
  }
}

/* Member Section */
.member-section {
  padding: 3.4375rem 0 2.5rem 0; /* 55px 0 40px 0 */
}

.member-section-label {
  font-size: 1rem; /* 16px */
  font-weight: 500; /* medium */
  letter-spacing: calc(100 / 1000 * 1em);
  text-align: center;
  color: var(--color-text-secondary);
  margin-bottom: 0.625rem; /* 10px */
}

.member-section-title {
  font-family: 'DIN Condensed', sans-serif;
  font-size: 4.375rem; /* 70px */
  font-weight: var(--font-weight-bold);
  text-align: center;
  line-height: 0.75;
  margin: 0;
  color: var(--color-text-primary);
}

.member-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3.75rem; /* 60px */
  margin-top: 3.125rem; /* 50px */
}

.member-card {
  display: flex;
  align-items: center;
  gap: 1.21875rem; /* 19.5px */
  margin-bottom: var(--spacing-6);
}

.member-photo {
  width: 10rem; /* 160px */
  height: 10rem; /* 160px */
  object-fit: cover;
}

.member-info {
  flex: 1;
}

.member-role {
  font-size: 0.75rem; /* 12px */
  font-weight: 400; /* regular */
  color: var(--color-text-secondary);
  margin-bottom: 0.5rem; /* 8px */
}

.member-name {
  font-size: 1.5rem; /* 24px */
  font-weight: var(--font-weight-bold);
  margin-bottom: 0.5rem; /* 8px */
  letter-spacing: 0.1em;
}

.member-name-en {
  font-size: 0.75rem; /* 12px */
  font-weight: 400; /* regular */
  color: var(--color-text-secondary);
  margin: 0;
}

.member-divider {
  height: 1.25rem; /* 20px */
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%);
}

.member-bio {
  margin-top: var(--spacing-6);
  font-size: 0.875rem; /* 14px */
  line-height: 1.75rem; /* 28px */
  font-weight: 400; /* regular */
  color: #000000;
}

.member-bio p {
  margin: 0;
}

@media (min-width: 1024px) {
  .member-section-label {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 1.25rem; /* 20px */
  }

  .member-section-title {
    font-size: 5rem; /* 80px */
  }

  .member-grid {
    grid-template-columns: 1fr 1fr;
    gap: 7.5rem; /* 120px */
    margin-top: 2.5rem; /* 40px */
  }

  .member-card {
    gap: 2.5rem; /* 40px */
    margin-bottom: 0;
  }

  .member-photo {
    width: 17.5rem; /* 280px */
    height: 17.5rem; /* 280px */
  }

  .member-role {
    font-size: 0.875rem; /* 14px */
    margin-bottom: 0.75rem; /* 12px */
  }

  .member-name {
    font-size: 1.875rem; /* 30px */
    margin-bottom: 0.75rem; /* 12px */
    letter-spacing: 0.1em;
  }

  .member-name-en {
    font-size: 0.875rem; /* 14px */
  }

  .member-divider {
    height: 1.25rem; /* 20px */
  }

  .member-bio {
    margin-top: 2.5rem; /* 40px */
    font-size: 0.875rem; /* 14px */
    line-height: 1.75rem; /* 28px */
  }

  .member-bio p:first-child {
    margin-top: -0.4375rem; /* ネガティブマージン: -(28-14)/2 = -7px */
  }
}

/* Company Section */
.company-section {
  padding: 5rem 0 7.5rem 0; /* 80px 0 120px 0 */
  background-color: #ffffff;
}

.company-section-label {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  letter-spacing: calc(100 / 1000 * 1em);
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.75rem; /* 12px */
}

.company-section-title {
  font-size: 1.875rem; /* 30px */
  font-weight: var(--font-weight-bold);
  letter-spacing: calc(100 / 1000 * 1em);
  margin: 0;
}

.company-list {
  margin-top: 3.75rem; /* 60px */
}

.company-item {
  border-top: 0.5px solid #000000;
  padding: 1.25rem 0 1.25rem 0.6875rem; /* 20px 0 20px 11px */
}

.company-item:last-child {
  border-bottom: 0.5px solid #000000;
}

.company-item-label {
  font-size: 0.875rem; /* 14px */
  font-weight: var(--font-weight-medium);
  margin: 0 0 0.75rem 0; /* 12px bottom */
  color: var(--color-text-primary);
}

.company-item-value {
  font-size: 0.875rem; /* 14px */
  font-weight: 400;
  margin: 0;
  color: var(--color-text-primary);
  line-height: 1.5; /* default */
}

.company-item-value-address {
  line-height: 1.3125rem; /* 21px */
}

.company-item-value-business {
  line-height: 1.75rem; /* 28px */
}

.company-map {
  margin-top: 2.5rem; /* 40px */
}

.company-map iframe {
  display: block;
  width: 100%;
}

@media (min-width: 1024px) {
  .company-section {
    padding: 7.5rem 0 10rem 0; /* 120px 160px */
  }

  .company-section .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .company-section-header {
    grid-column: 1;
    grid-row: 1;
  }

  .company-list {
    grid-column: 2;
    grid-row: 1;
    margin-top: 0;
  }

  .company-item {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 2rem 1.25rem; /* 32px 20px */
  }

  .company-item-label {
    font-size: 0.875rem; /* 14px */
    width: 12.5rem; /* 200px */
    flex-shrink: 0;
  }

  .company-item-value {
    font-size: 0.875rem; /* 14px */
    line-height: 1.75rem; /* 28px */
    margin-top: -0.4375rem; /* ネガティブマージン: -(28-14)/2 = -7px */
  }

  .company-item-value-address br {
    display: none;
  }

  .company-map {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 5rem; /* 80px */
  }

  .company-map iframe {
    height: 25rem; /* 400px */
  }
}

/* ==========================================
   Service Page Styles
   ========================================== */

.service-list-section {
  padding-top: 3.75rem; /* 60px */
  padding-bottom: 3.75rem; /* 60px */
  margin-top: 7.5rem; /* 120px */
  margin-bottom: 7.5rem; /* 120px */
  background-color: #F3F3F3;
}

.service-cards {
  display: flex;
  flex-direction: column;
  gap: 3.75rem; /* 60px */
}

.service-card {
  background-color: var(--color-background);
  padding: 1.25rem 1.25rem 3.75rem; /* 20px 20px 60px */
  border-radius: 1.25rem; /* 20px */
}

.service-card-image {
  width: 100%;
  border-radius: 1.09375rem; /* 17.5px */
  margin-bottom: 2rem; /* 32px */
}

.service-card-label {
  font-size: 0.875rem; /* 14px */
  margin-bottom: 0.9375rem; /* 15px */
  font-weight: 400;
}

.service-card-label--red {
  color: #F82511;
}

.service-card-label--orange {
  color: #F29700;
}

.service-card-label--green {
  color: #8EC21F;
}

.service-card-label--blue {
  color: #009FE8;
}

.service-card-title {
  font-size: 2.125rem; /* 34px */
  font-weight: var(--font-weight-bold);
  margin-bottom: 2.25rem; /* 36px */
}

.service-card-title-sub {
  font-size: 1.125rem; /* 18px */
}

.service-card-lead {
  font-size: 1.125rem; /* 18px */
  line-height: 1.6875rem; /* 27px */
  font-weight: var(--font-weight-bold);
  color: #322828;
  margin-bottom: 1.875rem; /* 30px */
}

.service-card-description {
  font-size: 0.875rem; /* 14px */
  line-height: 1.75rem; /* 28px */
  font-weight: 400;
  color: #322828;
  margin-bottom: 2.5rem; /* 40px */
}

.service-card-features {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem; /* 12px */
  margin-bottom: 2.5rem; /* 40px */
}

.service-card-feature {
  padding: 0.5rem 1rem; /* 8px 16px */
  background-color: var(--color-background);
  border: 0.5px solid #322828;
  border-radius: 0;
  text-align: center;
  font-size: 0.8125rem; /* 13px */
  font-weight: 500;
}

.service-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%);
  border: none;
  width: 100%;
  max-width: 12.5rem; /* 200px */
  padding: 1rem 2rem; /* 16px 32px */
  border-radius: var(--radius-full);
  color: var(--color-secondary);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  transition: all 0.3s ease;
}

.service-card-btn:hover {
  opacity: 0.9;
}

.service-card-btn-dot {
  width: 0.375rem; /* 6px */
  height: 0.375rem; /* 6px */
  background-color: var(--color-secondary);
  border-radius: 50%;
}

@media (min-width: 1024px) {
  .service-list-section {
    margin-top: 5rem; /* 80px */
    padding-top: 10rem; /* 160px */
    padding-bottom: 10rem; /* 160px */
  }

  .service-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    padding: 1.25rem 3.75rem 1.25rem 1.25rem; /* 20px 60px 20px 20px */
    gap: 5rem; /* 80px */
  }

  .service-card picture {
    flex-shrink: 0;
  }

  .service-card-image {
    width: 26.25rem; /* 420px */
    border-radius: 1.625rem; /* 26px */
    margin-bottom: 0;
  }

  .service-card-content {
    flex: 1;
    padding-top: 2.5rem; /* 40px */
  }

  .service-card-label {
    font-size: 0.875rem; /* 14px */
    margin-bottom: 0.75rem; /* 12px */
  }

  .service-card-title {
    font-size: 2.125rem; /* 34px */
    margin-bottom: 2rem; /* 32px */
  }

  .service-card-lead {
    font-size: 1.125rem; /* 18px */
    margin-bottom: 2rem; /* 32px */
  }

  .service-card-lead br {
    display: none;
  }

  .service-card-description {
    font-size: 0.875rem; /* 14px */
    line-height: 1.75rem; /* 28px */
    margin-top: -0.4375rem; /* ネガティブマージン: -(28-14)/2 = -7px */
    margin-bottom: 2.5rem; /* 40px */
  }

  .service-card-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 0.75rem; /* 12px */
    margin-bottom: 2.5rem; /* 40px */
  }

  .service-card-feature {
    font-size: 0.875rem; /* 14px */
    height: 2rem; /* 32px */
    padding: 0.5625rem 0; /* (32-14)/2 = 9px */
    display: flex;
    align-items: center;
    justify-content: center;
    border-width: 0.0625rem; /* 1px */
  }
}

/* ==========================================
   News Archive Page Styles
   ========================================== */

.news-archive-section {
  padding-top: 7.5rem; /* 120px */
  padding-bottom: 12.5rem; /* 200px */
  margin-top: 0;
  position: relative;
}

.news-archive-section > .container {
  position: relative;
}

/* モバイル用ボーダー */
.news-archive-section > .container::before {
  content: '';
  position: absolute;
  top: -5rem; /* -80px */
  left: 1.75rem; /* 28px */
  right: 1.75rem; /* 28px */
  height: 1px;
  background-color: #322828;
}

@media (min-width: 1024px) {
  .news-archive-section {
    padding-top: 7.5rem; /* 120px */
  }

  .news-archive-section > .container::before {
    top: 0;
    left: 0;
    right: 0;
  }

  .news-archive-section > .container {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 0;
    padding-top: 7.5rem; /* 120px */
  }

  .news-filter {
    flex-direction: column;
    width: 21.25rem; /* 340px */
    flex-shrink: 0;
    margin-bottom: 0;
    align-items: flex-start;
    gap: 2rem; /* 32px */
  }

  .news-filter-item {
    font-size: 1rem; /* 16px */
  }

  .news-list {
    grid-column: 2;
    flex-direction: column;
  }

  .news-archive-section .news-item-link {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2.5rem; /* 40px */
    text-decoration: none;
  }

  .news-archive-section .news-thumbnail {
    width: 11.25rem; /* 180px */
    height: 7.5rem; /* 120px */
    flex-shrink: 0;
    border-radius: 0.625rem; /* 10px */
    overflow: hidden;
  }

  .news-archive-section .news-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 0.625rem; /* 10px */
  }

  .news-archive-section .news-item-content {
    flex: 1;
  }

  .news-archive-section .news-item-header {
    display: flex;
    align-items: center;
    gap: 1.5rem; /* 24px */
    margin-bottom: 0.75rem; /* 12px */
  }

  .news-archive-section .news-title {
    font-size: 1rem; /* 16px */
    font-weight: 500;
    color: #322828;
    margin: 0;
  }

  .news-loader,
  .news-scroll-sensor {
    grid-column: 2;
  }
}

.news-filter {
  display: flex;
  flex-wrap: wrap;
  column-gap: 1.875rem; /* 30px */
  row-gap: 1.75rem; /* 28px */
  margin-bottom: 6.25rem; /* 100px */
}

.news-filter-item {
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: #CCCCCC;
  position: relative;
  padding-left: 1rem; /* 16px - 点のスペースを確保 */
  transition: all 0.3s ease;
}

.news-filter-item:hover {
  color: #F92511;
}

.news-filter-item.is-active {
  color: #F92511;
}

.news-filter-item.is-active::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 0.375rem; /* 6px */
  height: 0.375rem; /* 6px */
  background-color: #F92511;
  border-radius: 50%;
}

.news-empty-message {
  text-align: center;
  color: var(--color-text-secondary);
}

/* News Single Page */
.news-single-section {
  padding-top: 7.5rem; /* 120px */
  padding-bottom: 12.5rem; /* 200px */
  margin-top: 0;
}

.news-single-section > .container {
  position: relative;
}

/* モバイル用ボーダー */
.news-single-section > .container::before {
  content: '';
  position: absolute;
  top: -5rem; /* -80px */
  left: 1.75rem; /* 28px */
  right: 1.75rem; /* 28px */
  height: 1px;
  background-color: #322828;
}

@media (min-width: 1024px) {
  .news-single-section {
    padding-top: 7.5rem; /* 120px */
  }

  .news-single-section > .container::before {
    top: 0;
    left: 0;
    right: 0;
  }

  .news-single-section > .container {
    padding-top: 7.5rem; /* 120px */
  }

  .news-single-header {
    margin-bottom: 1.25rem; /* 20px */
  }

  .news-single-date {
    font-size: 0.875rem; /* 14px */
  }

  .news-single-title {
    font-size: 1.375rem; /* 22px */
    margin-bottom: 2.5rem; /* 40px */
  }

  .news-single-thumbnail {
    max-width: 33.75rem; /* 540px */
    border-radius: 1.875rem; /* 30px */
    overflow: hidden;
  }

  .news-single-thumbnail img {
    border-radius: 1.875rem; /* 30px */
  }

  .news-single {
    max-width: 100%;
  }
}

.news-single-header {
  display: flex;
  align-items: center;
  gap: 0.5rem; /* 8px */
  margin-bottom: 1.25rem; /* 20px */
  font-size: 0.875rem; /* 14px */
  color: #322828;
}

.news-single-date,
.news-single-category {
  font-size: 0.875rem; /* 14px */
}

.news-single-separator {
  color: #322828;
}

.news-single-title {
  font-size: 1.125rem; /* 18px */
  font-weight: var(--font-weight-bold);
  line-height: 1.6875rem; /* 27px */
  margin-bottom: 2rem; /* 32px */
  color: #322828;
}

.news-single-thumbnail {
  margin-bottom: 3.75rem; /* 60px */
}

.news-single-thumbnail img {
  width: 100%;
  border-radius: 1.1075rem; /* 17.72px */
}

.news-single-thumbnail {
  margin-bottom: 3.75rem; /* 60px */
}

.news-single-content {
  font-size: 0.875rem; /* 14px */
  line-height: 1.75rem; /* 28px */
  font-weight: 400;
  color: #322828;
}

.news-single-content p {
  margin-bottom: 0;
}

.news-single-content h2 {
  font-size: 1.25rem; /* 20px */
  font-weight: 700;
  margin-top: 2.5rem;
  margin-bottom: 1rem;
}

.news-single-content h3 {
  font-size: 1.125rem; /* 18px */
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.news-single-content h4 {
  font-size: 1rem; /* 16px */
  font-weight: 700;
  margin-top: 1.5rem;
  margin-bottom: 0.5rem;
}

.news-single-content ul,
.news-single-content ol {
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
}

.news-single-content li {
  margin-bottom: 0.5rem;
}

.news-single-content a {
  color: #009FE8;
  text-decoration: underline;
}

.news-single-content a:hover {
  opacity: 0.8;
}

.news-single-content blockquote {
  border-left: 3px solid #F92511;
  padding-left: 1rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: #666666;
}

.news-single-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
  border-radius: 0.625rem; /* 10px */
}

.news-single-content strong {
  font-weight: 700;
}

.news-single-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
}

.news-single-content th,
.news-single-content td {
  border: 1px solid #CCCCCC;
  padding: 0.75rem;
  text-align: left;
}

.news-single-content th {
  background-color: #F5F5F5;
  font-weight: 700;
}

/* ==========================================
   Contact Page Styles
   ========================================== */

.contact-form-section {
  padding: 0 0 6.25rem; /* 0 0 100px */
  background-color: var(--color-background);
}

/* お問い合わせフォームページのみ（thanksページ除外） */
.page-contact-form .contact-form-section {
  padding-top: 10rem; /* 160px */
}

.contact-form-intro {
  text-align: left;
  font-size: 1rem; /* 16px */
  line-height: 2rem; /* 32px */
  font-weight: 400;
  color: #322828;
  margin-bottom: 6.25rem; /* 100px */
}

.contact-form-intro p {
  margin-bottom: var(--spacing-3);
}

.contact-form-wrapper {
  width: 21.6875rem; /* 347px */
  margin: 0 -0.875rem; /* 0 -14px - expand beyond container padding */
  background-color: var(--color-background-light);
  padding: 2.5rem 0.875rem 5.03125rem; /* 40px 14px 80.5px */
  border-radius: 0;
}

/* Contact Form 7 スタイル */
.wpcf7 {
  max-width: 100%;
}

.wpcf7-form p {
  margin-bottom: 1.0625rem; /* 17px */
}

.wpcf7-form label {
  display: block;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: #322828;
  margin-bottom: 0.4375rem; /* 7px */
}

/* 必須バッジ */
.wpcf7-form .required-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6625rem; /* 42.6px */
  height: 1rem; /* 16px */
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%);
  color: white;
  font-size: 0.75rem; /* 12px */
  font-weight: 500;
  border-radius: 0.5rem; /* 8px */
  margin-left: 0.625rem; /* 10px */
  vertical-align: middle;
}

/* ラベル補足テキスト */
.wpcf7-form .label-note {
  font-size: 0.675rem; /* 10.8px */
  font-family: '小塚ゴシック Pr6N', sans-serif;
  font-weight: 400;
  color: #666666;
  margin-left: 0.5rem;
}

.wpcf7-form-control-wrap {
  display: block;
}

/* 横並びフィールド */
.wpcf7-form .form-row {
  margin-bottom: 1.0625rem; /* 17px */
}

.wpcf7-form .form-row-label {
  display: block;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: #322828;
  margin-bottom: 0.4375rem; /* 7px */
}

.wpcf7-form .form-row-fields {
  display: block;
}

/* 名前フィールド（モバイル） */
.wpcf7-form .name-fields {
  display: flex;
  gap: 0.75rem; /* 12px */
}

.wpcf7-form .name-fields .wpcf7-form-control-wrap {
  flex: 1;
}

.wpcf7-form .name-fields input[type="text"] {
  width: 100%;
}

.wpcf7-form .form-row-fields p {
  display: flex;
  gap: 0.75rem; /* 12px */
  margin: 0;
}

.wpcf7-form .form-row-fields .wpcf7-form-control-wrap {
  flex: 1;
}

.wpcf7-form .form-row-fields input[type="text"] {
  width: 100%;
  margin-top: 0;
}

.wpcf7-form input[type="text"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="tel"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 19.9375rem; /* 319px */
  padding: 0.875rem 1rem; /* 14px 16px */
  margin-top: 0.4375rem; /* 7px */
  background-color: #FFFFFF;
  border: none;
  border-radius: 0.3125rem; /* 5px */
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  font-family: inherit;
  color: #322828;
  transition: background-color 0.3s ease;
}

.wpcf7-form input[type="text"]::placeholder,
.wpcf7-form input[type="email"]::placeholder,
.wpcf7-form input[type="tel"]::placeholder,
.wpcf7-form textarea::placeholder {
  color: #CCCCCC;
  font-weight: 400;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  background-color: #EBEBEB;
  outline: none;
}

.wpcf7-form select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23322828' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

.wpcf7-form textarea {
  min-height: 17.5rem; /* 280px */
  padding: 1.40625rem 1rem; /* 22.5px 16px */
  resize: vertical;
}

/* 横並びフィールド */
.wpcf7-form .field-row {
  display: flex;
  gap: 0.75rem; /* 12px */
}

.wpcf7-form .field-row .wpcf7-form-control-wrap {
  flex: 1;
}

/* チェックボックス */
.wpcf7-form .wpcf7-acceptance {
  display: block;
  margin-top: 2.5rem; /* 40px */
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item label {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item {
  display: flex;
  align-items: center;
}

.acceptance-field {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  margin-top: 2.5rem; /* 40px */
}

.acceptance-field .wpcf7-form-control-wrap {
  display: inline-flex;
  align-items: center;
  margin-right: 0.5rem;
}

.acceptance-field .wpcf7-list-item {
  display: inline-flex;
  align-items: center;
}

.acceptance-field .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  white-space: nowrap;
  cursor: pointer;
  user-select: none;
}

.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  width: 1rem;
  height: 1rem;
  accent-color: #F92511;
  flex-shrink: 0;
  margin-right: 1.25rem; /* 20px */
}

.wpcf7-form .wpcf7-acceptance .wpcf7-list-item-label {
  font-size: 0.875rem; /* 14px */
  font-weight: 400; /* regular */
  color: #322828;
  line-height: 1;
  cursor: pointer;
}

.wpcf7-form .wpcf7-acceptance a,
.acceptance-field a {
  color: #1488CC;
  text-decoration: underline;
}

/* 送信ボタン */
.wpcf7-form .wpcf7-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 100%;
  max-width: 11.75rem; /* 188px */
  height: 3.25rem; /* 52px */
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%);
  color: var(--color-secondary);
  border: none;
  border-radius: var(--radius-full);
  font-family: "YuGo Bold-83pv-RKSJ-H", var(--font-primary);
  font-size: 0.875rem; /* 14px */
  font-weight: var(--font-weight-bold);
  cursor: pointer;
  transition: opacity 0.3s ease;
}


.wpcf7-form .wpcf7-submit:hover {
  opacity: 0.9;
}

.wpcf7-form .wpcf7-submit:disabled,
.wpcf7-form .wpcf7-submit.is-disabled {
  background: #000000;
  opacity: 0.5;
  cursor: not-allowed;
  pointer-events: none;
}

.wpcf7-form .wpcf7-not-valid-tip {
  color: #F92511;
  font-size: 0.75rem; /* 12px */
  margin-top: 0.25rem;
}

.wpcf7-form .wpcf7-response-output {
  display: none;
}

.wpcf7-form .hidden-fields-container {
  display: none;
}

.wpcf7-form .wpcf7-mail-sent-ok {
  background-color: #d4edda;
  border-color: #c3e6cb;
  color: #155724;
}

.wpcf7-form .wpcf7-validation-errors {
  background-color: #f8d7da;
  border-color: #f5c6cb;
  color: #721c24;
}

.wpcf7-form .wpcf7-form-control.wpcf7-acceptance {
  margin-top: 0;
  margin-bottom: 0;
}

.wpcf7-form .wpcf7-list-item {
  margin: 0;
}

.wpcf7-form .wpcf7-list-item-label {
  font-weight: normal;
  cursor: pointer;
}

.wpcf7-form p:has(.wpcf7-submit) {
  margin-top: 2.5rem; /* 40px */
  position: relative;
  width: 11.75rem; /* 188px */
  height: 3.25rem; /* 52px */
}

.wpcf7-form p:has(.wpcf7-submit)::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 1.25rem; /* 20px */
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-secondary);
  font-size: 0.75rem;
  pointer-events: none;
}

/* タブレット用 Contact Page Styles */
@media (min-width: 768px) and (max-width: 1023px) {
  .contact-form-wrapper {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 2.5rem 2rem 5rem; /* 40px 32px 80px */
  }
}

/* PC用 Contact Page Styles */
@media (min-width: 1024px) {
  .contact-form-section {
    padding: 0 0 12.5rem; /* 0 0 200px */
  }

  /* お問い合わせフォームページのみ（thanksページ除外） */
  .page-contact-form .contact-form-section {
    padding-top: 12.75rem; /* 204px */
  }

  .contact-form-section > .container {
    max-width: 85rem; /* 1360px */
    padding: 0;
  }

  .contact-form-intro {
    font-size: 1rem; /* 16px */
    line-height: 3rem; /* 48px */
    font-weight: 400;
    text-align: center;
    margin-top: -1rem; /* -16px: (48-16)/2 上のネガティブマージン */
    margin-bottom: 5.25rem; /* 84px: 100px - 16px 下のネガティブマージン考慮 */
  }

  .contact-form-intro p {
    margin-bottom: 0;
  }

  .contact-form-wrapper {
    width: 100%;
    max-width: 85rem; /* 1360px */
    margin: 0 auto;
    padding: 3.75rem 11.25rem 6.25rem; /* 60px 180px 100px */
    border-radius: 0;
  }

  .wpcf7-form input[type="text"],
  .wpcf7-form input[type="email"],
  .wpcf7-form input[type="tel"],
  .wpcf7-form textarea,
  .wpcf7-form select {
    width: 100%;
  }

  /* Contact Form PC横並びレイアウト */
  .page-contact .wpcf7-form .form-row {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    margin-bottom: 1.5rem; /* 24px */
  }

  .page-contact .wpcf7-form .form-row-label {
    width: 16.25rem; /* 260px */
    flex-shrink: 0;
    padding-top: 1.40625rem; /* 22.5px */
    font-size: 0.9375rem; /* 15px */
  }

  .page-contact .wpcf7-form .form-row-label p {
    margin: 0;
  }

  .page-contact .wpcf7-form .form-row-label .required-badge {
    font-size: 0.675rem; /* 10.8px */
    height: 0.84375rem; /* 13.5px */
    margin-left: 1.25rem; /* 20px */
  }

  .page-contact .wpcf7-form .form-row-label .label-note {
    margin-top: 0.5rem;
    font-size: 0.675rem;
    color: #666666;
  }

  .page-contact .wpcf7-form .form-row-fields {
    flex: 1;
  }

  .page-contact .wpcf7-form .form-row-fields input[type="text"],
  .page-contact .wpcf7-form .form-row-fields input[type="email"],
  .page-contact .wpcf7-form .form-row-fields input[type="tel"],
  .page-contact .wpcf7-form .form-row-fields select {
    width: 46.25rem; /* 740px */
    height: 3.75rem; /* 60px */
    border-radius: 0.3125rem; /* 5px */
    font-size: 0.9rem; /* 14.4px */
    margin-top: 0;
  }

  .page-contact .wpcf7-form .form-row-fields textarea {
    width: 46.25rem; /* 740px */
    border-radius: 0.3125rem; /* 5px */
    font-size: 0.9rem; /* 14.4px */
    margin-top: 0;
  }

  .page-contact .wpcf7-form .form-row-fields .name-fields {
    display: flex;
    gap: 1.5rem; /* 24px */
    margin: 0;
  }

  .page-contact .wpcf7-form .form-row-fields .name-fields .wpcf7-form-control-wrap {
    width: 22.375rem; /* 358px */
    flex-shrink: 0;
  }

  .page-contact .wpcf7-form .form-row-fields .name-fields input[type="text"] {
    width: 100%;
  }

  /* 送信ボタン・チェックボックスの配置調整 */
  .page-contact .wpcf7-form .acceptance-field,
  .page-contact .wpcf7-form p:has(.wpcf7-submit) {
    margin-left: 16.25rem; /* 260px - ラベル幅分オフセット */
  }

  /* 共通パーツのcontactリンクを非表示 */
  .page-template-page-contact .contact-section {
    display: none;
  }
}

/* ==========================================
   送信完了ページ
   ========================================== */
.contact-thanks-message {
  text-align: center;
  max-width: 50rem; /* 800px */
  margin: 0 auto;
  padding: 1.25rem 0 2.5rem 0; /* 上20px 下40px */
}

.contact-thanks-title {
  font-size: 1.2rem; /* 19.2px */
  font-weight: var(--font-weight-bold);
  color: #322828;
  margin-bottom: 2rem; /* 32px */
  line-height: 1.5;
}

.contact-thanks-message p {
  font-size: 1rem; /* 16px */
  font-weight: 400;
  color: #322828;
  line-height: 1.75;
  margin-bottom: 1.5rem; /* 24px */
}

.contact-thanks-action {
  margin-top: 3rem; /* 48px */
}

.contact-thanks-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem; /* 8px */
  width: 100%;
  max-width: 15rem; /* 240px */
  height: 3.25rem; /* 52px */
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%);
  color: #FFFFFF;
  font-size: 0.875rem; /* 14px */
  font-weight: var(--font-weight-bold);
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: opacity 0.3s ease;
}

.contact-thanks-button:hover {
  opacity: 0.9;
}

.contact-thanks-button i {
  font-size: 0.875rem; /* 14px */
  transition: transform 0.3s ease;
}

.contact-thanks-button:hover i {
  transform: translateX(4px);
}

@media (min-width: 1024px) {
  .contact-thanks-message {
    padding: 3.125rem 0 6.25rem 0; /* 上50px 下100px */
  }

  .contact-thanks-title {
    font-size: 2rem; /* 32px */
    margin-bottom: 2.5rem; /* 40px */
  }

  .contact-thanks-message p {
    font-size: 1.125rem; /* 18px */
  }
}

/* About Contact Section */
.about-contact-section {
  padding: 3.4375rem 0; /* 55px */
}

.about-contact-link {
  display: block;
  max-width: 30rem;
  margin: 0 auto;
  padding: var(--spacing-8);
  border: 2px solid var(--color-accent);
  border-radius: var(--radius-lg);
  text-align: center;
  transition: all 0.3s ease;
  position: relative;
}

.about-contact-title {
  font-size: var(--font-size-2xl);
  font-weight: var(--font-weight-bold);
  color: var(--color-accent);
}

.about-contact-subtitle {
  font-size: var(--font-size-sm);
  color: var(--color-text-secondary);
  margin-top: var(--spacing-2);
}

.about-contact-icon {
  position: absolute;
  right: var(--spacing-6);
  top: 50%;
  transform: translateY(-50%);
  width: 3rem;
  height: 3rem;
  border-radius: var(--radius-full);
  background-color: var(--color-accent);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-contact-icon i {
  color: var(--color-secondary);
}

.section-description {
  font-size: var(--font-size-base);
  color: var(--color-text-secondary);
  text-align: center;
  line-height: var(--line-height-relaxed);
  margin-bottom: var(--spacing-12);
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

@media (min-width: 768px) {
  .section-description {
    font-size: var(--font-size-lg);
  }
}

/* グリッドレイアウト */
.grid {
  display: grid;
  gap: var(--spacing-6);
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  .grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--spacing-8);
  }
}

@media (min-width: 1024px) {
  .grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

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

@media (min-width: 768px) {
  .grid-2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ==========================================
   12. トップページ専用スタイル
   ========================================== */

/* ヒーローセクション */
.hero {
  display: flex;
  align-items: flex-start;
  background-color: var(--color-background);
  padding-top: 2.5rem; /* 40px */
  padding-bottom: 2.5rem; /* 40px */
}

@media (min-width: 1024px) {
  .hero {
    align-items: center;
    padding-bottom: 5.375rem; /* 86px */
  }
}

.hero-content {
  max-width: 50rem;
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    max-width: none;
  }
}

.hero-text {
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-text {
    width: 45%;
    flex-shrink: 0;
  }
}

.hero-image {
  margin-top: 3.75rem; /* 60px */
  width: 100%;
}

@media (min-width: 1024px) {
  .hero-image {
    margin-top: 0;
    width: 34.375rem; /* 550px */
    margin-left: auto; /* 右寄せ */
  }
}

.hero-image img {
  width: 100%;
  height: auto;
  display: block;
}

.hero-subtitle {
  font-size: 1.25rem; /* 20px */
  line-height: 1;
  font-weight: var(--font-weight-medium);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1.25rem; /* 20px */
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (min-width: 768px) {
  .hero-subtitle {
    font-size: 1.25rem; /* 20px */
  }
}

@media (min-width: 1024px) {
  .hero-subtitle {
    font-size: 1.75rem; /* 28px */
    font-weight: var(--font-weight-bold);
    margin-bottom: 1.25rem; /* 20px */
  }
}

.hero-title {
  font-size: 2.25rem; /* 36px */
  line-height: 3.375rem; /* 54px */
  margin-top: -0.5625rem; /* -9px: (54-36)/2 自動調整 */
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
}

@media (min-width: 768px) {
  .hero-title {
    font-size: var(--font-size-5xl);
  }
}

@media (min-width: 1024px) {
  .hero-title {
    font-size: 3rem; /* 48px */
    font-weight: var(--font-weight-bold);
    line-height: 4.5rem; /* 72px */
    margin-top: -0.75rem; /* -12px: (72-48)/2 */
  }
}

/* About セクション */
.about-section {
  background-color: var(--color-background);
  padding-top: 5rem; /* 80px */
  padding-bottom: 5rem; /* 80px */
}

@media (min-width: 1024px) {
  .about-section {
    padding-top: 10rem; /* 160px */
    padding-bottom: 10rem; /* 160px */
  }
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-12);
  align-items: center;
}

@media (min-width: 1024px) {
  .about-grid {
    grid-template-columns: 50% 50%;
    gap: 0;
  }
}

.section-title-left {
  text-align: left;
  margin-bottom: var(--spacing-6);
  display: flex;
  flex-direction: column;
  gap: var(--spacing-2);
}

@media (min-width: 1024px) {
  .section-title-left {
    flex-direction: row;
    align-items: center;
    gap: 2.5rem; /* 40px - section-labelとsection-title-jaの距離 */
    padding-left: 1.75rem; /* 28px: 8px(border) + 20px(gap) */
    position: relative;
    line-height: 4.25rem; /* 68px */
  }

  .section-title-left::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 0.5rem; /* 8px */
    height: 4.25rem; /* 68px */
    background: linear-gradient(to bottom, #F92511, #F4AE19);
  }
}

.section-label {
  font-size: 3.75rem; /* 60px */
  font-family: 'DIN Condensed', sans-serif;
  line-height: 0.75;
  margin-top: -0.46875rem; /* -7.5px: (45-60)/2 自動調整 */
  font-weight: var(--font-weight-bold);
  color: var(--color-text-primary);
  display: flex;
  align-items: center;
  gap: 0.75rem; /* 12px */
}

.section-label::before {
  content: '';
  display: block;
  width: 0.5rem; /* 8px */
  height: 3.125rem; /* 50px */
  background: var(--gradient-primary-vertical);
}

@media (min-width: 768px) {
  .section-label {
    font-size: var(--font-size-4xl);
  }

  .section-label::before {
    height: 2.5rem;
  }
}

@media (min-width: 1024px) {
  .section-label {
    font-size: 5rem; /* 80px */
    line-height: 4.25rem; /* 68px */
    margin-top: 0.375rem; /* 6px: (68-80)/2 の絶対値 */
    white-space: nowrap;
  }

  .section-label::before {
    display: none; /* PC用は section-title-left::before を使用 */
  }
}

.section-title-ja {
  font-size: 1rem; /* 16px */
  line-height: 1;
  margin-top: 0.75rem; /* 12px */
  margin-left: 1.25rem; /* 20px: border(8px) + gap(12px) */
  font-weight: var(--font-weight-medium);
  color: #322828;
}

@media (min-width: 768px) {
  .section-title-ja {
    font-size: 1rem; /* 16px */
  }
}

@media (min-width: 1024px) {
  .section-title-ja {
    font-size: 1rem; /* 16px */
    margin-top: 0;
    margin-left: 0;
    white-space: nowrap;
  }
}

.about-text {
  font-size: 1.25rem; /* 20px */
  line-height: 2.25rem; /* 36px */
  margin-top: 2rem; /* 32px: 40px - 8px自動調整 */
  font-weight: var(--font-weight-extrabold);
  color: var(--color-text-primary);
  margin-bottom: 2.5rem; /* 40px */
}

@media (min-width: 768px) {
  .about-text {
    font-size: 1.25rem; /* 20px */
  }
}

@media (min-width: 1024px) {
  .about-text {
    font-size: 1.5rem; /* 24px */
    line-height: 2.125rem; /* 34px */
    font-weight: var(--font-weight-extrabold);
    margin-top: calc(2.5rem - 0.3125rem); /* 40px - 5px調整 */
    margin-bottom: 2.5rem; /* 40px */
  }
}

.about-description {
  font-size: 0.875rem; /* 14px */
  line-height: 2.125rem; /* 34px */
  margin-top: -0.625rem; /* -10px: (34-14)/2 自動調整 */
  font-weight: var(--font-weight-normal); /* regular = 400 */
  color: #322828;
  margin-bottom: 2.5rem; /* 40px */
}

@media (min-width: 768px) {
  .about-description {
    font-size: 0.875rem; /* 14px */
  }
}

@media (min-width: 1024px) {
  .about-description {
    font-size: 0.875rem; /* 14px */
    line-height: 2.125rem; /* 34px */
    font-weight: var(--font-weight-normal); /* regular */
    margin-bottom: 2.5rem; /* 40px */
    max-width: 32.6875rem; /* 523px */
  }
}

.about-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 5rem; /* 80px */
}

@media (min-width: 1024px) {
  .about-image {
    justify-content: flex-end;
    margin-top: 0;
  }

  .about-image img {
    width: 28.25rem; /* 452px */
  }
}

.about-image img {
  max-width: 100%;
  height: auto;
}

/* Service セクション */
.service-section {
  background-image: url('../images/pink_grad_bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding-top: 5rem; /* 80px */
  padding-bottom: 5.625rem; /* 90px */
}

@media (min-width: 1024px) {
  .service-section {
    padding-top: 10rem; /* 160px */
    padding-bottom: 10rem; /* 160px */
    background-image: url('../images/pink_grad_bg_pc.jpg');
  }
}

.service-layout {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}

@media (min-width: 1024px) {
  .service-layout {
    grid-template-columns: 50% 50%;
    column-gap: 0;
    row-gap: 0;
  }

  .service-intro {
    max-width: 32.5rem; /* 520px */
  }

  .service-list {
    width: 33.75rem; /* 540px */
    justify-self: end;
  }
}

.service-description {
  font-size: 0.875rem; /* 14px */
  line-height: 2.125rem; /* 34px */
  font-weight: var(--font-weight-normal); /* regular = 400 */
  color: #000000;
  margin-top: -0.625rem; /* -10px: (34-14)/2 自動調整 */
  margin-bottom: 3.125rem; /* 50px: 60px - 10px自動調整 */
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-4);
  margin-top: var(--spacing-12); /* 48px - モバイル時の間隔 */
}

@media (min-width: 1024px) {
  .service-list {
    margin-top: 0;
    gap: 1.25rem; /* 20px */
  }

  .service-item {
    padding: 1.5rem 1.25rem; /* 24px 20px */
    border-radius: 0.75rem; /* 12px */
  }

  .service-number {
    font-size: 2.5rem; /* 40px */
    line-height: 3.25rem; /* 52px */
  }

  .service-item-icon {
    right: 2.5rem; /* 40px */
    width: 0.75rem; /* 12px */
    height: 0.75rem; /* 12px */
  }

  .service-item-label {
    font-size: 0.75rem; /* 12px */
    margin-bottom: 0.625rem; /* 10px */
  }

  .service-item-title {
    font-size: 1.75rem; /* 28px */
  }
}

.service-btn {
  margin-top: 2.5rem; /* 40px */
}

@media (min-width: 1024px) {
  .service-btn {
    display: none; /* PCでは非表示 */
  }
}

.service-item {
  position: relative;
  display: flex;
  align-items: center;
  gap: 1.25rem; /* 20px */
  padding: 1.75rem 1.25rem; /* 28px 20px */
  background-color: var(--color-background);
  border-radius: 0.575rem; /* 9.2px */
  transition: all 0.3s ease;
}

.service-item:hover {
  background: var(--gradient-primary);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.service-item:hover .service-number,
.service-item:hover .service-item-label,
.service-item:hover .service-item-title {
  color: var(--color-secondary);
}

.service-item:hover .service-item-icon {
  background: var(--color-secondary);
}

.service-number {
  font-size: 2.5rem; /* 40px */
  font-family: 'DIN Condensed', sans-serif;
  line-height: 0.75;
  font-weight: var(--font-weight-bold);
  color: var(--color-text-light);
  min-width: 3rem;
  margin-top: 0.3125rem; /* 5px: -((30-40)/2) 自動調整 */
  margin-bottom: 0.3125rem; /* 5px: -((30-40)/2) 自動調整 */
}

@media (min-width: 768px) {
  .service-number {
    font-size: var(--font-size-3xl);
  }
}

.service-item-content {
  flex: 1;
}

.service-item-label {
  font-size: 0.75rem; /* 12px */
  font-weight: var(--font-weight-normal); /* regular = 400 */
  line-height: 1;
  color: var(--color-text-light);
  margin-bottom: var(--spacing-1);
  letter-spacing: 0.05em;
}

.service-item-title {
  font-size: 1.5rem; /* 24px */
  font-weight: var(--font-weight-bold);
  line-height: 1;
  color: var(--color-text-primary);
}

.service-item-icon {
  position: absolute;
  right: 0.75rem; /* 12px */
  top: 50%;
  transform: translateY(-50%);
  width: 0.5rem; /* 8px */
  height: 0.5rem; /* 8px */
  border-radius: 50%;
  background: var(--gradient-primary);
}

/* News セクション */
.news-section {
  background-color: var(--color-background);
  padding: 5rem 0 6.25rem; /* 80px 0 100px */
}

@media (min-width: 1024px) {
  .news-section {
    padding: 10rem 0; /* 160px */
  }
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: var(--spacing-12);
  gap: var(--spacing-4);
  flex-wrap: wrap;
}

@media (min-width: 768px) {
  .news-header {
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .news-header {
    margin-bottom: 6.25rem; /* 100px */
  }

  .news-header .section-title-left {
    margin-bottom: 0;
  }
}

.news-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem; /* 40px */
}

@media (min-width: 1024px) {
  .news-list {
    flex-direction: row;
    gap: 2.5rem; /* 40px */
  }
}

.news-item {
  display: flex;
  flex-direction: column;
  gap: 1.25rem; /* 20px */
}

/* News archive item link (mobile base) */
.news-item-link {
  display: flex;
  flex-direction: column;
  gap: 1rem; /* 16px */
  text-decoration: none;
  color: inherit;
}

.news-item-content {
  display: flex;
  flex-direction: column;
}

/* News Archive Section - Mobile Base */
.news-archive-section .news-item {
  width: 100% !important;
  gap: 0;
}

.news-archive-section .news-item-link {
  display: flex;
  flex-direction: column-reverse;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
}

.news-archive-section .news-thumbnail {
  border-radius: 0.625rem; /* 10px */
  overflow: hidden;
  margin-top: 0;
}

.news-archive-section .news-thumbnail img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.625rem; /* 10px */
}

.news-archive-section .news-item-content {
  display: flex;
  flex-direction: column;
}

.news-archive-section .news-item-header {
  margin-bottom: 0.5rem; /* 8px */
}

.news-archive-section .news-title {
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: #322828;
  margin: 0;
  margin-top: 0;
  line-height: 1.5;
}

/* News Archive Section - PC */
@media (min-width: 1024px) {
  .news-archive-section .news-list {
    flex-direction: column;
    gap: 2.5rem; /* 40px */
  }

  .news-archive-section .news-item {
    width: 100%;
  }

  .news-archive-section .news-item-link {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.5rem; /* 40px */
  }

  .news-archive-section .news-item-content {
    padding-top: 1.25rem; /* 20px */
  }

  .news-archive-section .news-thumbnail {
    width: 13.75rem; /* 220px */
    flex-shrink: 0;
    border-radius: 0.625rem; /* 10px */
  }

  .news-archive-section .news-thumbnail img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0.625rem; /* 10px */
  }

  .news-archive-section .news-item-header {
    margin-bottom: 0.75rem; /* 12px */
    gap: 1.25rem; /* 20px */
  }

  .news-archive-section .news-category {
    height: 1.25rem; /* 20px */
    font-size: 0.75rem; /* 12px */
  }

  .news-archive-section .news-date {
    font-size: 0.875rem; /* 14px */
  }

  .news-archive-section .news-title {
    font-size: 1rem; /* 16px */
  }
}

@media (min-width: 1024px) {
  .news-item {
    width: 22.5rem; /* 360px */
    flex: none;
    gap: 0; /* 個別marginで制御 */
  }

  .news-category {
    width: 7.5rem; /* 120px */
    height: 1.25rem; /* 20px */
    min-width: auto;
    padding: 0;
    font-size: 0.78125rem; /* 12.5px */
  }

  .news-date {
    font-size: 0.75rem; /* 12px */
  }

  .news-title {
    font-size: 0.875rem; /* 14px */
    line-height: 1.53125rem; /* 24.5px */
    margin-top: 1.25rem; /* 20px */
  }

  .news-thumbnail {
    margin-top: 2.5rem; /* 40px */
    border-radius: 1.25rem; /* 20px */
  }

  .news-thumbnail img {
    border-radius: 1.25rem; /* 20px */
  }
}

.news-item-header {
  display: flex;
  align-items: center;
  gap: 1.25rem; /* 20px */
}

.news-category {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 6.75rem; /* 108px */
  padding: var(--spacing-1) var(--spacing-4);
  background: var(--gradient-primary);
  color: var(--color-secondary);
  font-size: 0.78125rem; /* 12.5px */
  font-family: 'Zen Kaku Gothic New', sans-serif;
  font-weight: 700;
  border-radius: 1.25rem;
  white-space: nowrap;
}

.news-date {
  font-size: 0.75rem; /* 12px */
  font-weight: var(--font-weight-normal);
  color: var(--color-text-primary);
  white-space: nowrap;
}

.news-title {
  font-size: 0.875rem; /* 14px */
  font-weight: var(--font-weight-medium);
  line-height: 1.5rem; /* 24px */
  letter-spacing: calc(100 / 1000 * 1em);
  color: var(--color-text-primary);
}

.news-title a {
  color: inherit;
}

.news-thumbnail {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 1.1075rem; /* 17.72px */
}

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

@media (min-width: 768px) {
  .news-title {
    font-size: var(--font-size-base);
    grid-column: auto;
  }
}

.news-title a {
  color: var(--color-text-primary);
  transition: color 0.3s ease;
}

.news-title a:hover {
  color: var(--color-accent);
  opacity: 1;
}

/* Contact セクション */
.contact-section {
  background-color: var(--color-background);
  padding-top: 0;
  padding-bottom: 6.25rem; /* 100px */
}

@media (min-width: 768px) {
  .contact-section {
    padding-bottom: 6.25rem; /* 100px */
  }
}

.contact-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--spacing-10) 1rem var(--spacing-10) 1rem;
  border: 4px solid transparent;
  border-radius: 1.25rem;
  background: linear-gradient(white, white) padding-box,
              var(--gradient-primary) border-box;
  transition: all 0.3s ease;
  gap: var(--spacing-6);
}

@media (min-width: 768px) {
  .contact-card {
    padding: var(--spacing-12) var(--spacing-16);
  }
}

.contact-card:hover {
  background: linear-gradient(90deg, #FF4500 0%, #FFA500 100%) padding-box,
              linear-gradient(90deg, #FF4500 0%, #FFA500 100%) border-box;
}

.contact-card:hover .contact-title,
.contact-card:hover .contact-subtitle {
  background: none;
  -webkit-background-clip: unset;
  background-clip: unset;
  -webkit-text-fill-color: var(--color-secondary);
  color: var(--color-secondary);
}

.contact-card:hover .contact-arrow {
  background-color: transparent;
  border-color: var(--color-secondary);
}

.contact-card:hover .contact-arrow i {
  color: var(--color-secondary);
}

.contact-content {
  flex: 1;
}

.contact-title {
  font-family: 'DIN Condensed', sans-serif;
  font-size: 3.75rem;
  font-weight: var(--font-weight-bold);
  line-height: 0.75;
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 0.625rem;
  display: inline-block;
}

.contact-subtitle {
  font-size: var(--font-size-sm);
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  display: inline-block;
}

.contact-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  border: 2px solid #F4AE19;
  background: white;
  flex-shrink: 0;
}

.contact-arrow i {
  font-size: var(--font-size-base);
  color: #F4AE19;
}

@media (min-width: 768px) {
  .contact-content {
    display: flex;
    align-items: center;
    gap: 0.625rem; /* 10px - SPと同じ */
  }

  .contact-title {
    margin-bottom: 0;
  }

  .contact-arrow i {
    font-size: var(--font-size-xl);
  }
}

@media (min-width: 1024px) {
  .contact-section {
    padding-bottom: 10rem; /* 160px */
  }

  .contact-card {
    padding: 5rem 6.25rem; /* 80px 100px */
    border-width: 0.1875rem; /* 3px */
    border-radius: 1.25rem; /* 20px */
  }

  .contact-content {
    display: flex;
    align-items: center;
    gap: 2.5rem; /* 40px */
  }

  .contact-title {
    font-size: 5rem; /* 80px */
    line-height: 5rem; /* 80px */
    margin-bottom: 0;
  }

  .contact-subtitle {
    font-size: 1rem; /* 16px */
    font-weight: var(--font-weight-medium);
  }

  .contact-arrow {
    width: 5rem; /* 80px */
    height: 5rem; /* 80px */
  }

  .contact-arrow i {
    font-size: 1.125rem; /* 18px */
  }
}

/* ==========================================
   News Infinite Scroll Styles
   ========================================== */

/* フィルターボタンのリセット */
.news-filter-item {
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

/* ローディングインジケーター */
.news-loader {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 3rem 0;
}

.news-loader-spinner {
  width: 2.5rem;
  height: 2.5rem;
  border: 3px solid #f3f3f3;
  border-top: 3px solid #F92511;
  border-radius: 50%;
  animation: news-spin 1s linear infinite;
}

@keyframes news-spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* スクロールセンサー */
.news-scroll-sensor {
  height: 1px;
  width: 100%;
}

/* 空メッセージ */
.news-empty-message {
  text-align: center;
  padding: 3rem 0;
  color: #999;
  font-size: 1rem;
}

/* ==========================================
   Cyber Scroll Animations
   AI/サイバー感のあるスクロールアニメーション

   ★★★ 3つの実装パターン ★★★
   パターン1: cyber-ready方式（推奨）
   パターン2: data属性方式
   パターン3: is-loaded方式
   ========================================== */

/* ------------------------------------------
   共通: キーフレームアニメーション定義
   ------------------------------------------ */

/* グリッチ・リビール効果 */
@keyframes cyber-glitch-reveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    clip-path: inset(0 0 100% 0);
  }
  20% {
    opacity: 1;
    transform: translateY(0) skewX(-2deg);
    clip-path: inset(40% 0 40% 0);
  }
  25% {
    transform: translateY(0) skewX(3deg);
    clip-path: inset(10% 0 70% 0);
  }
  30% {
    transform: translateY(0) skewX(-1deg);
    clip-path: inset(60% 0 20% 0);
  }
  35% {
    transform: translateY(0) skewX(0);
    clip-path: inset(0);
  }
  100% {
    opacity: 1;
    transform: translateY(0) skewX(0);
    clip-path: inset(0);
  }
}

/* スキャンライン・リビール効果 */
@keyframes cyber-scan-reveal {
  0% {
    opacity: 0;
    clip-path: inset(0 0 100% 0);
  }
  10% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0);
  }
}

@keyframes scan-line {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  90% {
    opacity: 1;
  }
  100% {
    opacity: 0;
    transform: translateY(100%);
  }
}

/* デジタルフェード効果 */
@keyframes cyber-digital-fade {
  0% {
    opacity: 0;
    filter: blur(10px) brightness(2);
    transform: translateY(15px);
  }
  40% {
    opacity: 0.7;
    filter: blur(4px) brightness(1.5);
    transform: translateY(5px);
  }
  100% {
    opacity: 1;
    filter: blur(0) brightness(1);
    transform: translateY(0);
  }
}

/* サイバーグロー効果 */
@keyframes cyber-glow-reveal {
  0% {
    opacity: 0;
    transform: translateY(20px);
    box-shadow: 0 0 0 rgba(249, 37, 17, 0);
  }
  50% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 40px rgba(249, 37, 17, 0.6), 0 0 80px rgba(244, 174, 25, 0.3);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
    box-shadow: 0 0 0 rgba(249, 37, 17, 0);
  }
}

/* スライドイン効果 */
@keyframes cyber-slide-left {
  0% {
    opacity: 0;
    transform: translateX(-50px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

@keyframes cyber-slide-right {
  0% {
    opacity: 0;
    transform: translateX(50px);
    filter: blur(5px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
    filter: blur(0);
  }
}

/* RGBズレ効果 */
@keyframes glitch-rgb-r {
  0%, 100% { opacity: 0; transform: translate(0, 0); }
  20% { opacity: 0.8; transform: translate(-3px, 2px); }
  25% { opacity: 0.6; transform: translate(2px, -1px); }
  30% { opacity: 0.4; transform: translate(-1px, 1px); }
  35% { opacity: 0; transform: translate(0, 0); }
}

@keyframes glitch-rgb-c {
  0%, 100% { opacity: 0; transform: translate(0, 0); }
  20% { opacity: 0.8; transform: translate(3px, -2px); }
  25% { opacity: 0.6; transform: translate(-2px, 1px); }
  30% { opacity: 0.4; transform: translate(1px, -1px); }
  35% { opacity: 0; transform: translate(0, 0); }
}

/* ------------------------------------------
   ★ パターン1: cyber-ready方式（推奨）

   - HTMLには data-cyber="glitch" などを記述
   - JSがdata属性を検出し、cyber-readyクラスを追加
   - cyber-readyが付いた後にのみ初期スタイル（opacity:0等）が適用
   - JSが動作しない場合は通常表示される

   メリット: 最も安全。JSエラー時も表示される
   ------------------------------------------ */

/* パターン1用: 初期スタイル（cyber-readyがある場合のみ適用） */
[data-cyber="glitch"].cyber-ready {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

[data-cyber="scan"].cyber-ready {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  position: relative;
}

[data-cyber="scan"].cyber-ready::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(249, 37, 17, 0.8) 20%,
    rgba(244, 174, 25, 0.8) 50%,
    rgba(249, 37, 17, 0.8) 80%,
    transparent 100%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}

[data-cyber="fade"].cyber-ready {
  opacity: 0;
  filter: blur(10px);
}

[data-cyber="glow"].cyber-ready {
  opacity: 0;
  transform: translateY(20px);
}

[data-cyber="slide-left"].cyber-ready {
  opacity: 0;
  transform: translateX(-50px);
}

[data-cyber="slide-right"].cyber-ready {
  opacity: 0;
  transform: translateX(50px);
}

/* パターン1用: アニメーション発火（is-visible追加時） */
[data-cyber="glitch"].cyber-ready.is-visible {
  animation: cyber-glitch-reveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

[data-cyber="scan"].cyber-ready.is-visible {
  animation: cyber-scan-reveal 0.7s ease-out forwards;
}

[data-cyber="scan"].cyber-ready.is-visible::after {
  animation: scan-line 0.7s ease-out forwards;
}

[data-cyber="fade"].cyber-ready.is-visible {
  animation: cyber-digital-fade 0.8s ease-out forwards;
}

[data-cyber="glow"].cyber-ready.is-visible {
  animation: cyber-glow-reveal 0.9s ease-out forwards;
}

[data-cyber="slide-left"].cyber-ready.is-visible {
  animation: cyber-slide-left 0.7s ease-out forwards;
}

[data-cyber="slide-right"].cyber-ready.is-visible {
  animation: cyber-slide-right 0.7s ease-out forwards;
}

/* ------------------------------------------
   ★ パターン2: クラス直接指定方式

   - HTMLに .cyber-animate .cyber-glitch を直接記述
   - JSが .cyber-animate を検出し .cyber-ready を追加
   - より直感的だが、HTMLが少し冗長になる
   ------------------------------------------ */

/* パターン2用: 初期スタイル */
.cyber-animate.cyber-glitch.cyber-ready {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

.cyber-animate.cyber-scan.cyber-ready {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  position: relative;
}

.cyber-animate.cyber-fade.cyber-ready {
  opacity: 0;
  filter: blur(10px);
}

.cyber-animate.cyber-glow.cyber-ready {
  opacity: 0;
  transform: translateY(20px);
}

.cyber-animate.cyber-slide-left.cyber-ready {
  opacity: 0;
  transform: translateX(-50px);
}

.cyber-animate.cyber-slide-right.cyber-ready {
  opacity: 0;
  transform: translateX(50px);
}

/* パターン2用: アニメーション発火 */
.cyber-animate.cyber-glitch.cyber-ready.is-visible {
  animation: cyber-glitch-reveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

.cyber-animate.cyber-scan.cyber-ready.is-visible {
  animation: cyber-scan-reveal 0.7s ease-out forwards;
}

.cyber-animate.cyber-fade.cyber-ready.is-visible {
  animation: cyber-digital-fade 0.8s ease-out forwards;
}

.cyber-animate.cyber-glow.cyber-ready.is-visible {
  animation: cyber-glow-reveal 0.9s ease-out forwards;
}

.cyber-animate.cyber-slide-left.cyber-ready.is-visible {
  animation: cyber-slide-left 0.7s ease-out forwards;
}

.cyber-animate.cyber-slide-right.cyber-ready.is-visible {
  animation: cyber-slide-right 0.7s ease-out forwards;
}

/* ------------------------------------------
   ★ パターン3: body.is-loaded方式

   - HTMLに .cyber-glitch クラスを直接記述
   - JSがDOMContentLoaded後に body に .is-loaded を追加
   - .is-loaded がある場合のみ初期スタイルが適用

   メリット: 実装が簡単
   デメリット: ページ読み込み時に一瞬チラつく可能性
   ------------------------------------------ */

/* パターン3用: 初期スタイル（body.is-loadedがある場合のみ） */
body.is-loaded .cyber-glitch-v3 {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
}

body.is-loaded .cyber-scan-v3 {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  position: relative;
}

body.is-loaded .cyber-scan-v3::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg,
    transparent 0%,
    rgba(249, 37, 17, 0.8) 20%,
    rgba(244, 174, 25, 0.8) 50%,
    rgba(249, 37, 17, 0.8) 80%,
    transparent 100%);
  opacity: 0;
  z-index: 10;
  pointer-events: none;
}

body.is-loaded .cyber-fade-v3 {
  opacity: 0;
  filter: blur(10px);
}

body.is-loaded .cyber-glow-v3 {
  opacity: 0;
  transform: translateY(20px);
}

body.is-loaded .cyber-slide-left-v3 {
  opacity: 0;
  transform: translateX(-50px);
}

body.is-loaded .cyber-slide-right-v3 {
  opacity: 0;
  transform: translateX(50px);
}

/* パターン3用: アニメーション発火 */
body.is-loaded .cyber-glitch-v3.is-visible {
  animation: cyber-glitch-reveal 0.8s cubic-bezier(0.23, 1, 0.32, 1) forwards;
}

body.is-loaded .cyber-scan-v3.is-visible {
  animation: cyber-scan-reveal 0.7s ease-out forwards;
}

body.is-loaded .cyber-scan-v3.is-visible::after {
  animation: scan-line 0.7s ease-out forwards;
}

body.is-loaded .cyber-fade-v3.is-visible {
  animation: cyber-digital-fade 0.8s ease-out forwards;
}

body.is-loaded .cyber-glow-v3.is-visible {
  animation: cyber-glow-reveal 0.9s ease-out forwards;
}

body.is-loaded .cyber-slide-left-v3.is-visible {
  animation: cyber-slide-left 0.7s ease-out forwards;
}

body.is-loaded .cyber-slide-right-v3.is-visible {
  animation: cyber-slide-right 0.7s ease-out forwards;
}

/* ------------------------------------------
   共通: 遅延クラス
   ------------------------------------------ */
.cyber-delay-1 { animation-delay: 0.1s !important; }
.cyber-delay-2 { animation-delay: 0.2s !important; }
.cyber-delay-3 { animation-delay: 0.3s !important; }
.cyber-delay-4 { animation-delay: 0.4s !important; }
.cyber-delay-5 { animation-delay: 0.5s !important; }

/* ------------------------------------------
   共通: アクセシビリティ対応
   ------------------------------------------ */
@media (prefers-reduced-motion: reduce) {
  [data-cyber].cyber-ready,
  .cyber-animate.cyber-ready,
  body.is-loaded [class*="cyber-"] {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    clip-path: none !important;
  }

  [data-cyber="scan"].cyber-ready::after,
  .cyber-animate.cyber-scan.cyber-ready::after,
  body.is-loaded .cyber-scan-v3::after {
    display: none;
  }
}
