/* ==========================================================================
   SCROLL ANIMATIONS - スクロールアニメーション
   ========================================================================== */
/* 基本のフェードイン */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 左からスライドイン */
.slide-in-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* 右からスライドイン */
.slide-in-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.slide-in-right.visible {
  opacity: 1;
  transform: translateX(0);
}

/* スケールイン */
.scale-in {
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.scale-in.visible {
  opacity: 1;
  transform: scale(1);
}

/* 順番にフェードイン（カード用） */
.stagger-item {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

.stagger-item.visible {
  opacity: 1;
  transform: translateY(0);
}

/* 遅延設定 */
.stagger-item:nth-child(1) { transition-delay: 0s; }
.stagger-item:nth-child(2) { transition-delay: 0.1s; }
.stagger-item:nth-child(3) { transition-delay: 0.2s; }
.stagger-item:nth-child(4) { transition-delay: 0.3s; }
.stagger-item:nth-child(5) { transition-delay: 0.4s; }
.stagger-item:nth-child(6) { transition-delay: 0.5s; }

/* セクションヘッダー用 */
.section-header.fade-in .section-tag {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.section-header.fade-in .section-title {
  opacity: 0;
  transform: translateY(15px);
  transition: opacity 0.4s ease 0.1s, transform 0.4s ease 0.1s;
}

.section-header.fade-in.visible .section-tag,
.section-header.fade-in.visible .section-title {
  opacity: 1;
  transform: translateY(0);
}

/* 統計カードの特別アニメーション */
.page-hero-stat.stagger-item {
  opacity: 0;
  transform: translateY(20px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s ease;
}

.page-hero-stat.stagger-item.visible {
  opacity: 1;
  transform: translateY(0) scale(1);
}

/* タイムラインのアニメーション */
.history-item.slide-in-left {
  opacity: 0;
  transform: translateX(-30px);
}

.history-item.slide-in-left.visible {
  opacity: 1;
  transform: translateX(0);
}

/* アニメーション無効化（アクセシビリティ） */
@media (prefers-reduced-motion: reduce) {
  .fade-in,
  .slide-in-left,
  .slide-in-right,
  .scale-in,
  .stagger-item,
  .history-item.slide-in-left {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* ==========================================================================
   Style_Company.css - 会社概要ページ専用スタイル
   株式会社テクノリレーションズ
   ========================================================================== */

/* ==========================================================================
   横スクロール完全防止（修正版）
   ========================================================================== */
html,
body {
  overflow-x: hidden;
  max-width: 100%;
  box-sizing: border-box;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* ==========================================================================
   親要素のリセット - フルワイド対応（修正版）
   ※ overflow-x: hidden を削除し、メニューが切れないようにする
   ========================================================================== */
#page,
.site,
.site-content,
#content,
.content-area,
.inside-article,
article,
.entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  /* overflow-x: hidden を削除 - モバイルメニューが切れる原因 */
}

/* メインコンテンツのみ overflow を制御 */
.main-content {
  max-width: 100% !important;
  width: 100% !important;
  padding-left: 0 !important;
  padding-right: 0 !important;
  margin-left: auto !important;
  margin-right: auto !important;
  overflow-x: hidden;
}

/* ==========================================================================
   モバイルメニュー修正 - 重要
   ========================================================================== */
/* メニュー展開時のみoverflowを許可（ヘッダー自体は変更しない） */
.main-navigation.toggled,
.main-navigation.toggled .main-nav,
.main-navigation.toggled ul,
#site-navigation.toggled,
#site-navigation.toggled .main-nav,
#site-navigation.toggled ul {
  overflow: visible !important;
}

/* モバイルメニューの高さを自動に（展開時のみ） */
.has-inline-mobile-toggle #site-navigation.toggled .main-nav > ul {
  max-height: none !important;
  overflow: visible !important;
}

/* ==========================================================================
   ヘッダー調整 - TOPページと同じ高さを維持
   ========================================================================== */
/* ヘッダーのpaddingを確保 */
.inside-header {
  padding: 20px 40px !important;
}

/* page-heroがヘッダーを覆わないようにz-indexを調整 */
.site-header {
  position: relative;
  z-index: 100;
}

.page-hero {
  z-index: 1;
}

/* ==========================================================================
   以下は既存のスタイル（変更なし）
   ========================================================================== */

/* site-contentの下の余白を削除 */
.site-content {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* メインコンテンツの余白を削除 */
.main-content {
  margin: 0 !important;
  padding: 0 !important;
}

/* 記事コンテンツの下の余白を削除 */
.inside-article,
article,
.entry-content {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* GeneratePressのデフォルト余白を削除 */
/* 注意: .grid-container は .inside-header にも使われるため、ヘッダーを除外 */
#primary,
.content-area,
.inside-page,
.hentry,
.grid-container:not(.inside-header) {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* フッター上の余白を削除 */
.site-footer,
footer.footer,
.footer {
  margin-top: 0 !important;
}

/* コンテナ - コンテンツを中央配置 */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  box-sizing: border-box;
}

/* ==========================================================================
   PAGE HERO - ページヒーロー
   ========================================================================== */
.page-hero {
  position: relative;
  min-height: 70vh;
  display: flex;
  align-items: center;
  padding: 140px 0 80px;
  width: 100%;
  background: var(--dark-950);
}

.page-hero::after {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 65%;
  height: 100%;
  background: linear-gradient(135deg, var(--primary-light), var(--primary));
  clip-path: polygon(30% 0, 100% 0, 100% 100%, 0% 100%);
  opacity: 0.7;
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 10;
  width: 100%;
  max-width: 1400px !important;
  margin: 0 auto;
  padding: 0 60px;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0 !important;
  align-items: center;
}

.page-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--neon-cyan);
  letter-spacing: 0.15em;
  margin-bottom: 1rem;
}

.page-hero-label::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--neon-cyan);
}

.page-hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--text-white);
  line-height: 1.2;
  margin-bottom: 1rem;

}

.page-hero-title-en {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(3rem, 6vw, 5rem);
  font-weight: 800;
  background: linear-gradient(135deg, var(--neon-cyan), var(--neon-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-top: 0.5rem;
}

.page-hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.9;
}

/* ==========================================================================
   PAGE HERO STATS - 統計セクション（モダン拡大版）
   ========================================================================== */
.page-hero-visual {
  position: relative;
}

/* 装飾的なグロー効果 */
.page-hero-visual::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(0, 220, 255, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.page-hero-stats {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  width: 100%;
  max-width: 580px;
  margin-left: auto;
}

.page-hero-stat {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

/* カードの装飾ライン */
.page-hero-stat::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--neon-cyan), transparent);
  opacity: 0;
  transition: opacity 0.4s ease;
}

.page-hero-stat:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(0, 220, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 
    0 20px 50px rgba(0, 220, 255, 0.15),
    inset 0 1px 0 rgba(255,255,255,0.1);
}

.page-hero-stat:hover::before {
  opacity: 1;
}

.page-hero-stat-number {
  font-family: var(--font-en);
  font-size: clamp(3.5rem, 7vw, 5rem);
  font-weight: 800;
  color: var(--neon-cyan);
  line-height: 1;
  margin-bottom: 0.75rem;
  text-shadow: 0 0 40px rgba(0, 245, 255, 0.5);
  letter-spacing: -0.02em;
}

.page-hero-stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   SECTION HEADER - セクションヘッダー
   ========================================================================== */
.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}

.section-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--primary);
  margin-bottom: var(--space-sm);
}

.section-tag--light {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.section-title {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
}

.section-title--light {
  color: var(--text-white);
}

/* ==========================================================================
   PHILOSOPHY SECTION - 理念・ミッション
   ========================================================================== */
.company-philosophy {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: var(--light-50);
}

.philosophy-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
}

.philosophy-card {
  position: relative;
  background: var(--text-white);
  /* border-radius: var(--radius-lg); */
  padding: var(--space-xl);
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.04);
  transition: all var(--duration-base) var(--ease-out);
}

.philosophy-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(28, 91, 153, 0.15);
}

.philosophy-card::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, var(--primary), var(--neon-cyan));
}

.philosophy-card-number {
  position: absolute;
  top: var(--space-lg);
  right: var(--space-lg);
  font-family: var(--font-en);
  font-size: 6rem;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
}

.philosophy-label {
  font-family: var(--font-en);
  font-size: 12px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.2em;
  margin-bottom: 0.75rem;
}

.philosophy-title {
  font-size: clamp(22px, 3vw, 28px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 1.25rem;
}

.philosophy-text {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 2;
}

/* Mission Card - Special Style */
.philosophy-card--mission {
  grid-column: 1 / -1;
  background: linear-gradient(135deg, var(--dark-950) 0%, var(--primary-dark) 100%);
}

.philosophy-card--mission::after {
  background: linear-gradient(90deg, var(--neon-cyan), var(--neon-green));
}

.philosophy-card--mission .philosophy-card-number {
  color: var(--text-white);
  opacity: 0.08;
}

.philosophy-card--mission .philosophy-label {
  color: var(--neon-cyan);
  text-shadow: 0 0 10px rgba(0, 245, 255, 0.3);
}

.philosophy-card--mission .philosophy-title {
  color: var(--text-white);
}

.philosophy-card--mission .philosophy-text {
  color: rgba(255,255,255,0.85);
}

/* ==========================================================================
   COMPANY INFO SECTION - 会社情報
   ========================================================================== */
.company-info {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: var(--text-white);
}

.info-layout {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: var(--space-3xl);
  align-items: start;
}

.info-table {
  /* border-radius: var(--radius-lg); */
  overflow: hidden;
  box-shadow: 0 4px 40px rgba(0,0,0,0.06);
}

.info-row {
  display: grid;
  grid-template-columns: 160px 1fr;
  border-bottom: 1px solid var(--light-200);
}

.info-row:last-child {
  border-bottom: none;
}

.info-label {
  background: var(--primary);
  color: var(--text-white);
  padding: 1.25rem 1.5rem;
  font-size: 15px;
  font-weight: 600;
  display: flex;
  align-items: center;
}

.info-value {
  background: var(--text-white);
  padding: 1.25rem 1.5rem;
  font-size: 16px;
  color: var(--text-dark);
  line-height: 1.8;
}

.info-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.info-tag {
  padding: 0.4rem 0.9rem;
  background: rgba(28, 91, 153, 0.08);
  border-radius: var(--radius-full);
  font-size: 14px;
  font-weight: 500;
  color: var(--primary);
}

/* Map Area - モダンデザイン */
.info-map-area {
  position: sticky;
  top: 120px;
}

/* マップコンテナ */
.info-map {
  position: relative;
  aspect-ratio: 1;
  /* border-radius: 20px; */
  overflow: hidden;
  margin-bottom: var(--space-md);
  box-shadow: 
    0 4px 30px rgba(28, 91, 153, 0.15),
    0 0 0 1px rgba(28, 91, 153, 0.1);
}

/* マップのフレーム装飾 */
.info-map::before {
  content: '';
  position: absolute;
  inset: 0;
  /* border-radius: 20px; */
  padding: 2px;
  background: linear-gradient(135deg, var(--primary), var(--neon-cyan), var(--primary));
  -webkit-mask: 
    linear-gradient(#fff 0 0) content-box, 
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
  z-index: 10;
}

/* 角のアクセント */
.info-map::after {
  content: '';
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border-radius: 20px;
  background: 
    linear-gradient(135deg, rgba(0, 220, 255, 0.3) 0%, transparent 30%),
    linear-gradient(315deg, rgba(28, 91, 153, 0.2) 0%, transparent 30%);
  pointer-events: none;
  z-index: 9;
}

.info-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* アドレスカード */
.info-address {
  background: linear-gradient(135deg, var(--light-50) 0%, var(--text-white) 100%);
  /* border-radius: 16px; */
  padding: var(--space-lg);
  text-align: center;
  border: 1px solid var(--light-200);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  position: relative;
  overflow: hidden;
}

/* アドレスカードの装飾 */
.info-address::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--neon-cyan));
}

.info-address p {
  font-size: 16px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: var(--space-xs);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* アイコン追加 */
.info-address p::before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%231C5B99' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M15 10.5a3 3 0 1 1-6 0 3 3 0 0 1 6 0Z'/%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19.5 10.5c0 7.142-7.5 11.25-7.5 11.25S4.5 17.642 4.5 10.5a7.5 7.5 0 1 1 15 0Z'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

.info-address small {
  font-size: 14px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

/* 車アイコン */
.info-address small::before {
  content: '';
  width: 16px;
  height: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%236B7280' stroke-width='2'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M8.25 18.75a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h6m-9 0H3.375a1.125 1.125 0 0 1-1.125-1.125V14.25m17.25 4.5a1.5 1.5 0 0 1-3 0m3 0a1.5 1.5 0 0 0-3 0m3 0h1.125c.621 0 1.129-.504 1.09-1.124a17.902 17.902 0 0 0-3.213-9.193 2.056 2.056 0 0 0-1.58-.86H14.25M16.5 18.75h-2.25m0-11.177v-.958c0-.568-.422-1.048-.987-1.106a48.554 48.554 0 0 0-10.026 0 1.106 1.106 0 0 0-.987 1.106v7.635m12-6.677v6.677m0 4.5v-4.5m0 0h-12'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  flex-shrink: 0;
}

/* Googleマップで開くリンク */
.map-external-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: var(--space-sm);
  padding: 10px 20px;
  background: var(--primary);
  color: var(--text-white);
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  border-radius: var(--radius-full);
  transition: all 0.3s ease;
}

.map-external-link:hover {
  background: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(28, 91, 153, 0.3);
}

.map-external-link svg {
  width: 16px;
  height: 16px;
  stroke: currentColor;
  fill: none;
}

/* ==========================================================================
   HISTORY SECTION - 沿革
   ========================================================================== */
.company-history {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: var(--light-50);
}

.history-timeline {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
}

.history-line {
  position: absolute;
  left: 120px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(180deg, var(--primary), var(--neon-cyan));
  border-radius: 10px;
}

.history-item {
  display: grid;
  grid-template-columns: 100px 40px 1fr;
  gap: var(--space-lg);
  margin-bottom: var(--space-xl);
  align-items: start;
}

.history-item:last-child {
  margin-bottom: 0;
}

.history-year {
  font-family: var(--font-en);
  font-size: 2rem;
  font-weight: 800;
  color: var(--neon-cyan);
  text-align: right;
  line-height: 1;
  padding-top: 0.5rem;
  text-shadow: 0 0 20px rgba(0, 245, 255, 0.3);
}

.history-dot {
  width: 20px;
  height: 20px;
  background: var(--text-white);
  border: 4px solid var(--neon-cyan);
  border-radius: 50%;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px rgba(0, 245, 255, 0.15);
  margin-left: 10px;
}

.history-content {
  background: var(--text-white);
  border-radius: var(--radius-lg);
  padding: var(--space-lg);
  box-shadow: 0 4px 30px rgba(0,0,0,0.05);
  transition: all var(--duration-base) var(--ease-out);
}

.history-content:hover {
  transform: translateX(8px);
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.history-content h4 {
  font-size: clamp(18px, 2vw, 20px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
}

.history-content p {
  font-size: 16px;
  color: var(--text-muted);
  line-height: 1.9;
}

/* ==========================================================================
   CERTIFICATION SECTION - 認証・資格
   ========================================================================== */
.company-certification {
  position: relative;
  padding: var(--space-3xl) 0;
  width: 100%;
  background: linear-gradient(135deg, var(--dark-950) 0%, var(--primary-dark) 100%);
}

.certification-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-xl);
}

.certification-card {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(20px);
  border: 1px solid rgba(0, 245, 255, 0.15);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  text-align: center;
  transition: all var(--duration-base) var(--ease-out);
}

.certification-card:hover {
  border-color: rgba(0, 245, 255, 0.5);
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(0, 245, 255, 0.2);
}

.certification-icon {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--space-lg);
  background: linear-gradient(135deg, rgba(0, 245, 255, 0.15), rgba(0, 245, 255, 0.05));
  border: 2px solid var(--neon-cyan);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 40px rgba(0, 245, 255, 0.25);
}

.certification-icon svg {
  width: 48px;
  height: 48px;
  stroke: var(--neon-cyan);
  fill: none;
}

.certification-card h3 {
  font-size: clamp(20px, 2.5vw, 24px);
  font-weight: 800;
  color: var(--text-white);
  margin-bottom: var(--space-sm);
}

.certification-card p {
  font-size: 16px;
  color: var(--text-gray);
  line-height: 1.8;
  text-align-last: left;
}

.certification-badge {
  display: inline-block;
  margin-top: var(--space-md);
  padding: 0.5rem 1.5rem;
  background: rgba(0, 245, 255, 0.1);
  border: 1px solid var(--neon-cyan);
  border-radius: var(--radius-full);
  font-family: var(--font-en);
  font-size: 14px;
  font-weight: 700;
  color: var(--neon-cyan);
  letter-spacing: 0.05em;
}

/* ==========================================================================
   CTA SECTION - TOPページと同じスタイル
   ========================================================================== */
.cta-section--light {
  position: relative;
  padding: 100px 0;
  text-align: center;
  width: 100%;
  background: var(--light-50);
}

.cta-inner {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
}

.cta-section--light h2 {
  font-size: clamp(28px, 4vw, 40px);
  font-weight: 800;
  color: var(--text-dark);
  margin-bottom: var(--space-sm);
  text-align: left;
}

.cta-section--light > .cta-inner > p {
  font-size: 18px;
  color: var(--text-muted);
  margin-bottom: var(--space-xl);
  text-align: left;
}

.cta-box {
  background: var(--text-white);
  border-radius: var(--radius-xl);
  padding: var(--space-xl);
  box-shadow: 0 10px 60px rgba(0, 0, 0, 0.08);
}

.cta-contact {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: var(--space-xl);
  align-items: center;
}

.cta-phone {
  text-align: center;
}

.cta-phone-label {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-sm);
}

.cta-phone-number {
  display: block;
  font-family: var(--font-en);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
}

.cta-phone-number:hover {
  color: var(--primary-light);
}

.cta-phone-time {
  font-size: 14px;
  color: var(--text-muted);
  margin-top: var(--space-xs);
}

.cta-divider {
  width: 1px;
  height: 80px;
  background: var(--light-200);
}

.cta-form {
  text-align: center;
}

.cta-form p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: var(--space-md);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .cta-contact {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
  }
  
  .cta-divider {
    width: 100%;
    height: 1px;
  }
}

/* ==========================================================================
   BUTTON STYLES - TOPページと同じ
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: all var(--duration-base) var(--ease-out);
  cursor: pointer;
  border: none;
}

.btn--primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--text-white);
  box-shadow: 0 4px 20px rgba(28, 91, 153, 0.3);
}

.btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(28, 91, 153, 0.4);
}

.btn .arrow {
  transition: transform var(--duration-base) var(--ease-out);
}

.btn:hover .arrow {
  transform: translateX(4px);
}

/* ==========================================================================
   RESPONSIVE
   ========================================================================== */
@media (max-width: 1024px) {
  .page-hero-content {
    grid-template-columns: 1fr;
    padding: 0 40px;
    max-width: 800px !important;
  }
  
  .page-hero-stats {
    max-width: 520px;
    margin: var(--space-xl) auto 0;
  }
  
  .page-hero-visual::before {
    display: none;
  }
  
  .philosophy-grid {
    grid-template-columns: 1fr;
  }
  
  .philosophy-card--mission {
    grid-column: auto;
  }
  
  .info-layout {
    grid-template-columns: 1fr;
  }
  
  .info-map-area {
    position: static;
  }
  
  .info-map {
    border-radius: 16px;
    aspect-ratio: 4/3;
  }
  
  .info-map::before {
    border-radius: 16px;
  }
  
  .info-map::after {
    border-radius: 16px;
  }
  
  .info-address {
    border-radius: 12px;
    padding: var(--space-md);
  }
  
  .map-external-link {
    margin-top: var(--space-md);
    padding: 8px 16px;
    font-size: 13px;
  }
  
  .certification-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .page-hero {
    min-height: auto;
    padding: 120px 0 60px;
  }
  
  .page-hero-content {
    padding: 0 24px;
  }
  
  /* 統計セクション - モバイル対応 */
  .page-hero-stats {
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    max-width: 100%;
  }
  
  .page-hero-stat {
    padding: 1.5rem 1rem;
    border-radius: 16px;
  }
  
  .page-hero-stat::before {
    display: none;
  }
  
  .page-hero-stat-number {
    font-size: 2.5rem;
  }
  
  .page-hero-stat-label {
    font-size: 0.85rem;
  }
  
  .company-philosophy,
  .company-info,
  .company-history,
  .company-certification {
    padding: var(--space-2xl) 0;
  }
  
  .page-cta {
    padding: 80px 0;
  }
  
  .page-cta-box {
    grid-template-columns: 1fr;
    gap: var(--space-lg);
    padding: var(--space-lg);
  }
  
  .page-cta-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 245, 255, 0.3), transparent);
  }
  
  .philosophy-card {
    padding: var(--space-lg);
  }
  
  .philosophy-card-number {
    font-size: 4rem;
  }
  
  .info-row {
    grid-template-columns: 1fr;
  }
  
  .info-label {
    padding: 0.75rem 1rem;
  }
  
  .info-value {
    padding: 1rem;
  }
  
  .history-line {
    left: 20px;
  }
  
  .history-item {
    grid-template-columns: 1fr;
    gap: var(--space-sm);
    padding-left: 50px;
    position: relative;
  }
  
  .history-year {
    text-align: left;
    font-size: 1.5rem;
  }
  
  .history-dot {
    position: absolute;
    left: 0;
    top: 0.5rem;
    margin-left: 11px;
  }
  
  .history-content {
    padding: var(--space-md);
  }
  
  .certification-card {
    padding: var(--space-lg);
  }
  
  .certification-icon {
    width: 80px;
    height: 80px;
  }
  
  .certification-icon svg {
    width: 36px;
    height: 36px;
  }
  
  .section-header {
    text-align: left;
  }
  
  /* スマホで左寄せ */
  .philosophy-title,
  .philosophy-text,
  .history-content h4,
  .history-content p,
  .certification-card h3,
  .certification-card p {
    text-align: left !important;
  }
  
  .certification-card {
    text-align: left;
  }
  
  .certification-icon {
    margin: 0 0 var(--space-md) 0;
  }
}