@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/

/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px){
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px){
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px){
  /*必要ならばここにコードを書く*/
}

/* ============================================
   TravelCare Design System
   travelcare.jp
   ============================================ */

/* P1-1: CSS カスタムプロパティ */
:root {
  /* Primary */
  --tc-color-primary: #1B2A4A;
  --tc-color-primary-light: #2E4A7A;
  --tc-color-primary-dark: #111C33;

  /* Accent */
  --tc-color-accent: #3B82F6;
  --tc-color-accent-hover: #2563EB;
  --tc-color-accent-light: #DBEAFE;

  /* Text */
  --tc-color-text: #333333;
  --tc-color-text-light: #666666;
  --tc-color-text-muted: #94A3B8;
  --tc-color-text-inverse: #FFFFFF;

  /* Background */
  --tc-color-bg: #FFFFFF;
  --tc-color-bg-subtle: #F8FAFC;
  --tc-color-bg-muted: #F1F5F9;

  /* Border */
  --tc-color-border: #E2E8F0;
  --tc-color-border-light: #F1F5F9;

  /* Status */
  --tc-color-success: #10B981;
  --tc-color-warning: #F59E0B;
  --tc-color-error: #EF4444;

  /* CTA */
  --tc-color-cta: #3B82F6;
  --tc-color-cta-hover: #2563EB;

  /* Spacing */
  --tc-space-xs: 4px;
  --tc-space-sm: 8px;
  --tc-space-md: 16px;
  --tc-space-lg: 24px;
  --tc-space-xl: 48px;
  --tc-space-2xl: 80px;
  --tc-space-3xl: 120px;

  /* Typography */
  --tc-font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --tc-font-size-xs: 0.75rem;    /* 12px */
  --tc-font-size-sm: 0.875rem;   /* 14px */
  --tc-font-size-base: 1rem;     /* 16px */
  --tc-font-size-lg: 1.125rem;   /* 18px */
  --tc-font-size-xl: 1.375rem;   /* 22px */
  --tc-font-size-2xl: 1.75rem;   /* 28px */
  --tc-font-size-3xl: 2.25rem;   /* 36px */
  --tc-font-size-4xl: 3rem;      /* 48px */

  /* Line Heights */
  --tc-leading-tight: 1.2;
  --tc-leading-snug: 1.3;
  --tc-leading-normal: 1.5;
  --tc-leading-relaxed: 1.75;

  /* Font Weights */
  --tc-font-normal: 400;
  --tc-font-medium: 500;
  --tc-font-semibold: 600;
  --tc-font-bold: 700;

  /* Border Radius */
  --tc-radius-sm: 4px;
  --tc-radius-md: 8px;
  --tc-radius-lg: 12px;
  --tc-radius-xl: 16px;
  --tc-radius-full: 9999px;

  /* Shadows */
  --tc-shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.05);
  --tc-shadow-md: 0 1px 3px rgba(0, 0, 0, 0.08), 0 1px 2px rgba(0, 0, 0, 0.06);
  --tc-shadow-lg: 0 4px 12px rgba(0, 0, 0, 0.1);
  --tc-shadow-xl: 0 8px 24px rgba(0, 0, 0, 0.12);

  /* Transitions */
  --tc-transition-fast: 0.15s ease;
  --tc-transition-base: 0.2s ease;
  --tc-transition-slow: 0.3s ease;

  /* Container */
  --tc-container-max: 1200px;
  --tc-container-narrow: 800px;
  --tc-container-wide: 1400px;
}

/* ============================================
   Cocoon Reset — ブログ感の排除
   ============================================ */

/* P1-2a: ベースリセット */
body {
  font-family: var(--tc-font-family);
  color: var(--tc-color-text);
  line-height: var(--tc-leading-relaxed);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* P1-2b: サイドバー非表示・メインカラム全幅化 */
/* Cocoon デフォルトのサイドバーを固定ページで非表示 */
.page .sidebar {
  display: none !important; /* Cocoon の sidebar を固定ページで完全に非表示にする */
}

.page .main {
  width: 100% !important;   /* Cocoon の float レイアウトを全幅に上書き */
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;    /* Cocoon default: padding:36px 29px → ヒーロー上部余白の原因 */
}

.page #content {
  max-width: 100%;
}

/* Cocoon の no-sidebar レイアウトにも同様に適用 */
.no-sidebar .main {
  width: 100% !important;
  max-width: none !important;
  margin: 0 !important;
}

/* P1-2c-0: 固定ページタイトル非表示 */
.page .entry-title {
  display: none !important; /* "Home" "Areas" 等のページタイトルをヒーローで代替するため非表示 */
}

/* P1-2c: 投稿メタ情報の非表示（固定ページ） */
/* Cocoon デフォルトのブログ要素を固定ページで非表示 */
.page .entry-date,
.page .post-date,
.page .post-update,
.page .entry-categories-tags,
.page .author-info,
.page .post-meta,
.page .eye-catch,
.page .sns-share,
.page .sns-follow,
.page .post-navi,
.page .related-entries,
.page .comment-area,
.page .under-entry-content,
.page .breadcrumb {
  display: none !important; /* Cocoon デフォルトのブログ要素を固定ページで非表示 */
}

/* P1-2d: Cocoon デフォルト装飾のリセット */
/* entry-content の幅制限を解除 */
.entry-content {
  max-width: none;
}

/* Cocoon デフォルトリンク色を上書き */
a {
  color: var(--tc-color-accent);
}

/* Cocoon カード型一覧のスタイルをリセット */
.entry-card-wrap {
  border: none;
  box-shadow: none;
  background: transparent;
}

/* Cocoon の h2/h3 左ボーダー・背景色をリセット */
.article h2,
.article h3 {
  border-left: none !important; /* Cocoon デフォルトの左ボーダーを除去 */
  background: none !important;  /* Cocoon デフォルトの背景色を除去 */
  background-color: transparent !important;
}

/* ウィジェットエリアを非表示 */
.widget-area {
  display: none;
}

/* P1-2e: コンテンツ幅の制御 */
.page .entry-content {
  max-width: 100%;
  padding: 0;
  margin: 0;
}

/* Cocoon の wrap を全幅対応にする */
.page .wrap {
  max-width: 100%;
  padding: 0;
}

/* P1-2f: CTA〜フッター間の白い隙間を除去
   Cocoon は .article / #content / #wrapper に下部余白を持つ */
.page .article,
.page #content,
.page #wrapper {
  padding-bottom: 0 !important;
  margin-bottom: 0 !important;
}

/* tc-section-cta が最後のセクションのとき余白ゼロ */
.tc-section-cta {
  margin-bottom: 0 !important;
}

/* ============================================
   TravelCare Components
   ============================================ */

/* P1-3a: コンテナ */
.tc-container {
  max-width: var(--tc-container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--tc-space-lg);
  padding-right: var(--tc-space-lg);
}

.tc-container-narrow {
  max-width: var(--tc-container-narrow);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--tc-space-lg);
  padding-right: var(--tc-space-lg);
}

/* P1-3b: セクション */
.tc-section {
  padding-top: var(--tc-space-2xl);
  padding-bottom: var(--tc-space-2xl);
}

.tc-section-subtle {
  background-color: var(--tc-color-bg-subtle);
}

@media (max-width: 767px) {
  .tc-section {
    padding-top: var(--tc-space-xl);
    padding-bottom: var(--tc-space-xl);
  }
}

/* P1-3c: 見出し */
.tc-heading-1 {
  font-size: var(--tc-font-size-3xl);
  font-weight: var(--tc-font-bold);
  line-height: var(--tc-leading-tight);
  color: var(--tc-color-primary);
  margin-bottom: var(--tc-space-md);
}

.tc-heading-2 {
  font-size: var(--tc-font-size-2xl);
  font-weight: var(--tc-font-bold);
  line-height: var(--tc-leading-snug);
  color: var(--tc-color-primary);
  margin-bottom: var(--tc-space-md);
}

.tc-heading-3 {
  font-size: var(--tc-font-size-xl);
  font-weight: var(--tc-font-semibold);
  line-height: var(--tc-leading-snug);
  color: var(--tc-color-text);
  margin-bottom: var(--tc-space-sm);
}

/* 見出し — Cocoon デフォルトの装飾を確実に除去 */
.tc-heading-1,
.tc-heading-2,
.tc-heading-3 {
  background: none;
  border: none;
  padding: 0;
}

.tc-subtext {
  font-size: var(--tc-font-size-lg);
  color: var(--tc-color-text-light);
  line-height: var(--tc-leading-normal);
}

@media (max-width: 767px) {
  .tc-heading-1 {
    font-size: var(--tc-font-size-2xl);
  }
  .tc-heading-2 {
    font-size: var(--tc-font-size-xl);
  }
}

/* P1-3d: ボタン — プライマリ（CTA） */
.tc-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tc-space-sm);
  padding: 14px 32px;
  background-color: var(--tc-color-cta);
  color: var(--tc-color-text-inverse);
  font-family: var(--tc-font-family);
  font-size: var(--tc-font-size-base);
  font-weight: var(--tc-font-semibold);
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--tc-radius-md);
  cursor: pointer;
  transition: all var(--tc-transition-base);
  box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

.tc-btn-primary:hover {
  background-color: var(--tc-color-cta-hover);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(59, 130, 246, 0.4);
  color: var(--tc-color-text-inverse);
  text-decoration: none;
}

.tc-btn-primary:active {
  transform: translateY(0);
}

/* P1-3e: ボタン — セカンダリ */
.tc-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tc-space-sm);
  padding: 12px 28px;
  background-color: transparent;
  color: var(--tc-color-primary);
  font-family: var(--tc-font-family);
  font-size: var(--tc-font-size-base);
  font-weight: var(--tc-font-semibold);
  line-height: 1;
  text-decoration: none;
  border: 2px solid var(--tc-color-primary);
  border-radius: var(--tc-radius-md);
  cursor: pointer;
  transition: all var(--tc-transition-base);
}

.tc-btn-secondary:hover {
  background-color: var(--tc-color-primary);
  color: var(--tc-color-text-inverse);
  text-decoration: none;
}

/* P1-3f: ボタン — テキストリンク */
.tc-btn-text {
  display: inline-flex;
  align-items: center;
  gap: var(--tc-space-xs);
  padding: 0;
  background: none;
  color: var(--tc-color-accent);
  font-family: var(--tc-font-family);
  font-size: var(--tc-font-size-base);
  font-weight: var(--tc-font-medium);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: color var(--tc-transition-fast);
}

.tc-btn-text:hover {
  color: var(--tc-color-accent-hover);
  text-decoration: underline;
}

.tc-btn-text::after {
  content: '→';
  transition: transform var(--tc-transition-fast);
}

.tc-btn-text:hover::after {
  transform: translateX(4px);
}

/* P1-3g: ボタン — 白背景反転（CTA セクション内用） */
.tc-btn-white {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--tc-space-sm);
  padding: 14px 32px;
  background-color: var(--tc-color-bg);
  color: var(--tc-color-primary);
  font-family: var(--tc-font-family);
  font-size: var(--tc-font-size-base);
  font-weight: var(--tc-font-semibold);
  line-height: 1;
  text-decoration: none;
  border: none;
  border-radius: var(--tc-radius-md);
  cursor: pointer;
  transition: all var(--tc-transition-base);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.tc-btn-white:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  color: var(--tc-color-primary);
  text-decoration: none;
}

/* P1-3h: カード */
.tc-card {
  background-color: var(--tc-color-bg-card, var(--tc-color-bg));
  border: 1px solid var(--tc-color-border);
  border-radius: var(--tc-radius-lg);
  padding: var(--tc-space-lg);
  box-shadow: var(--tc-shadow-md);
  transition: all var(--tc-transition-base);
}

.tc-card:hover {
  transform: translateY(-2px);
  box-shadow: var(--tc-shadow-lg);
}

.tc-card a {
  text-decoration: none;
  color: inherit;
}

.tc-card-title {
  font-size: var(--tc-font-size-lg);
  font-weight: var(--tc-font-semibold);
  color: var(--tc-color-primary);
  margin-bottom: var(--tc-space-sm);
}

.tc-card-text {
  font-size: var(--tc-font-size-base);
  color: var(--tc-color-text-light);
  line-height: var(--tc-leading-normal);
}

.tc-card-icon {
  font-size: 2rem;
  margin-bottom: var(--tc-space-md);
  display: block;
}

/* P1-3i: グリッド */
.tc-grid {
  display: grid;
  gap: var(--tc-space-lg);
}

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

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

.tc-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1023px) {
  .tc-grid-3,
  .tc-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 767px) {
  .tc-grid-2,
  .tc-grid-3,
  .tc-grid-4 {
    grid-template-columns: 1fr;
  }
}

/* P1-3j: CTA セクション */
.tc-section-cta {
  background: linear-gradient(135deg, var(--tc-color-primary) 0%, var(--tc-color-primary-light) 100%);
  color: var(--tc-color-text-inverse);
  text-align: center;
  padding: var(--tc-space-2xl) var(--tc-space-lg);
}

.tc-section-cta .tc-heading-2 {
  color: var(--tc-color-text-inverse);
}

.tc-section-cta .tc-subtext {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--tc-space-lg);
}

@media (max-width: 767px) {
  .tc-section-cta {
    padding: var(--tc-space-xl) var(--tc-space-md);
  }
}

/* P1-3k: ヒーローセクション */
.tc-hero {
  padding: var(--tc-space-3xl) var(--tc-space-lg);
  text-align: center;
}

.tc-hero .tc-heading-1 {
  font-size: var(--tc-font-size-4xl);
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--tc-space-lg);
}

.tc-hero .tc-subtext {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: var(--tc-space-xl);
}

/* .tc-hero-actions と .tc-btn-group は同じ横並びボタングループ */
.tc-hero-actions,
.tc-btn-group {
  display: flex;
  gap: var(--tc-space-md);
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 767px) {
  .tc-hero {
    padding: var(--tc-space-2xl) var(--tc-space-md);
  }
  .tc-hero .tc-heading-1 {
    font-size: var(--tc-font-size-2xl);
  }
  .tc-hero-actions,
  .tc-btn-group {
    flex-direction: column;
    align-items: center;
  }
}

/* P1-3l: ステップ（How It Works 用） */
.tc-steps {
  display: flex;
  gap: var(--tc-space-xl);
  justify-content: center;
  align-items: flex-start;
  text-align: center;
}

.tc-step {
  flex: 1;
  max-width: 280px;
}

.tc-step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--tc-radius-full);
  background-color: var(--tc-color-accent-light);
  color: var(--tc-color-accent);
  font-weight: var(--tc-font-bold);
  font-size: var(--tc-font-size-lg);
  margin-bottom: var(--tc-space-md);
}

.tc-step-title {
  font-size: var(--tc-font-size-lg);
  font-weight: var(--tc-font-semibold);
  color: var(--tc-color-primary);
  margin-bottom: var(--tc-space-sm);
}

.tc-step-text {
  font-size: var(--tc-font-size-sm);
  color: var(--tc-color-text-light);
  line-height: var(--tc-leading-normal);
}

@media (max-width: 767px) {
  .tc-steps {
    flex-direction: column;
    align-items: center;
  }
}

/* ============================================
   Header Customization
   ============================================ */

/* P1-4a: sticky・背景・ボーダーは #header-container 全体に適用
   Cocoon のHTML構造:
     #header-container
       #header-container-in
         #header (ロゴ)  ← 兄弟
         #navi   (ナビ)  ← 兄弟
   → sticky は #header ではなく #header-container に当てる */
#header-container {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: var(--tc-color-bg);
  border-bottom: 1px solid var(--tc-color-border);
  box-shadow: var(--tc-shadow-sm);
}

/* P1-4b: #header-container-in を flex 横並びにして「ロゴ左・ナビ右」1行レイアウトを実現
   Cocoon default: 縦積み。hlt-top-menu クラスがないと flex にならない */
#header-container-in {
  display: flex !important;
  flex-direction: row !important;
  justify-content: space-between !important;
  align-items: center !important;
  max-width: var(--tc-container-max);
  margin: 0 auto;
  padding: 0 var(--tc-space-lg);
}

/* P1-4c: #header (ロゴ側) のリセット
   sticky・border・padding は #header-container に移したので除去 */
#header,
.header {
  position: static !important;
  border-bottom: none !important;
  box-shadow: none !important;
  padding: 0 !important;
  background-color: transparent !important;
  background-image: none !important;
  flex-shrink: 0; /* ロゴが縮まないようにする */
}

/* #header-in / .header-in は logo の内側ラッパー
   Cocoon default: flex-direction: column; → 1行に戻す
   .wrap クラスが付与する width:1256px もリセット */
#header-in,
.header-in {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  width: auto !important;
  max-width: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* ロゴを左揃えに */
.logo,
.logo-text {
  text-align: left !important;
  padding: 0 !important;
}

/* P1-4d: ロゴのテキストスタイル */
.logo-header,
.site-name-text {
  font-size: var(--tc-font-size-xl);
  font-weight: var(--tc-font-bold);
  color: var(--tc-color-primary);
  text-decoration: none;
}

.site-name-text-link {
  padding: 0 !important; /* Cocoon default: padding: 0 1em */
}

.site-name-text:hover,
.site-name-text-link:hover {
  color: var(--tc-color-primary);
  text-decoration: none;
}

/* P1-4e: #navi は右側に広がる */
#navi {
  flex: 1;
}

/* .navi-in の wrap クラスが付与する width:1256px をリセット */
#navi-in,
.navi-in {
  width: auto !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
}

/* P1-4f: ナビ項目の幅・高さを詰める
   Cocoon default: width:176px; height:60px → auto に上書き */
.navi-in > ul {
  justify-content: flex-end !important; /* 右寄せ */
}

.navi-in > ul li {
  width: auto !important;  /* 176px → コンテンツ幅に */
  height: auto !important; /* 60px → コンテンツ高さに */
}

/* ナビリンク */
.navi-in a {
  color: var(--tc-color-text);
  font-size: var(--tc-font-size-sm);
  font-weight: var(--tc-font-medium);
  padding: var(--tc-space-sm) var(--tc-space-md) !important;
  text-decoration: none;
  border-radius: var(--tc-radius-sm);
  transition: all var(--tc-transition-fast);
  width: auto !important;
  height: auto !important;
  white-space: nowrap;
}

.navi-in a:hover {
  color: var(--tc-color-accent);
  background-color: var(--tc-color-bg-subtle);
}

/* ============================================
   Footer Customization
   ============================================ */

/* P1-5: フッターカスタマイズ */
#footer,
.footer {
  background-color: var(--tc-color-primary);
  color: var(--tc-color-text-inverse);
  padding: var(--tc-space-2xl) 0 var(--tc-space-lg);
}

.footer-in {
  max-width: var(--tc-container-max);
  margin: 0 auto;
  padding: 0 var(--tc-space-lg);
}

/* フッター上部 3カラム */
.tc-footer-columns {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--tc-space-xl);
  margin-bottom: var(--tc-space-xl);
}

@media (max-width: 767px) {
  .tc-footer-columns {
    grid-template-columns: 1fr;
  }
}

/* フッターリンク */
#footer a,
.footer a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  font-size: var(--tc-font-size-sm);
  transition: color var(--tc-transition-fast);
}

#footer a:hover,
.footer a:hover {
  color: #FFFFFF;
}

/* フッターコピーライト */
.tc-footer-copyright {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: var(--tc-space-lg);
  text-align: center;
  font-size: var(--tc-font-size-xs);
  color: rgba(255, 255, 255, 0.6);
}

/* Cocoon デフォルトのフッターウィジェットスタイルを上書き */
.footer-widget-area {
  background-color: transparent !important; /* Cocoon デフォルトの背景色を除去 */
  border: none !important;
}

/* Cocoon の「Powered by Cocoon」テキストを非表示 */
.footer-left,
.footer-right {
  display: none !important; /* Cocoon デフォルトのフッターテキストを非表示 */
}

/* ============================================
   Utilities
   ============================================ */

/* P1-6: ユーティリティ */
.tc-text-center { text-align: center; }
.tc-text-left   { text-align: left; }
.tc-text-right  { text-align: right; }

.tc-mt-0  { margin-top: 0; }
.tc-mt-sm { margin-top: var(--tc-space-sm); }
.tc-mt-md { margin-top: var(--tc-space-md); }
.tc-mt-lg { margin-top: var(--tc-space-lg); }
.tc-mt-xl { margin-top: var(--tc-space-xl); }

.tc-mb-0  { margin-bottom: 0; }
.tc-mb-sm { margin-bottom: var(--tc-space-sm); }
.tc-mb-md { margin-bottom: var(--tc-space-md); }
.tc-mb-lg { margin-bottom: var(--tc-space-lg); }
.tc-mb-xl { margin-bottom: var(--tc-space-xl); }

.tc-hidden { display: none; }

.tc-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* フルワイドセクション用: Cocoon のコンテンツ幅制限を突破する */
.tc-full-width {
  width: 100vw;
  position: relative;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
}

/* ============================================
   Medical Guide Template Styles
   ============================================ */

.tc-breadcrumb {
  padding: var(--tc-space-md) 0;
  max-width: var(--tc-container-max);
  margin: 0 auto;
  padding-left: var(--tc-space-lg);
  padding-right: var(--tc-space-lg);
}

.tc-breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: var(--tc-space-xs);
  font-size: var(--tc-font-size-sm);
  color: var(--tc-color-text-light);
}

.tc-breadcrumb li::after {
  content: '›';
  margin-left: var(--tc-space-xs);
  color: var(--tc-color-text-muted);
}

.tc-breadcrumb li:last-child::after {
  content: '';
}

.tc-breadcrumb a {
  color: var(--tc-color-accent);
  text-decoration: none;
}

.tc-breadcrumb a:hover {
  text-decoration: underline;
}

/* Guide-specific styles */
.tc-guide-intro {
  margin-bottom: var(--tc-space-lg);
  padding-bottom: var(--tc-space-lg);
  border-bottom: 1px solid var(--tc-color-border);
}

.tc-guide-updated {
  font-size: var(--tc-font-size-sm);
  color: var(--tc-color-text-muted);
  margin-bottom: var(--tc-space-xl);
}

.tc-guide-content h2 {
  font-size: var(--tc-font-size-2xl);
  font-weight: var(--tc-font-bold);
  color: var(--tc-color-primary);
  margin-top: var(--tc-space-xl);
  margin-bottom: var(--tc-space-md);
  padding: 0;
  background: none;
  border: none;
}

.tc-guide-content h3 {
  font-size: var(--tc-font-size-xl);
  font-weight: var(--tc-font-semibold);
  color: var(--tc-color-text);
  margin-top: var(--tc-space-lg);
  margin-bottom: var(--tc-space-sm);
  padding: 0;
  background: none;
  border: none;
}

.tc-guide-content p {
  margin-bottom: var(--tc-space-md);
  line-height: var(--tc-leading-relaxed);
}

.tc-guide-content ul,
.tc-guide-content ol {
  margin-bottom: var(--tc-space-md);
  padding-left: var(--tc-space-lg);
}

.tc-guide-content li {
  margin-bottom: var(--tc-space-sm);
  line-height: var(--tc-leading-relaxed);
}

/* FAQ セクション用（下層記事で使用） */
.tc-faq {
  margin-top: var(--tc-space-xl);
}

.tc-faq-item {
  border-bottom: 1px solid var(--tc-color-border);
  padding: var(--tc-space-lg) 0;
}

.tc-faq-question {
  font-size: var(--tc-font-size-lg);
  font-weight: var(--tc-font-semibold);
  color: var(--tc-color-primary);
  margin-bottom: var(--tc-space-sm);
}

.tc-faq-answer {
  color: var(--tc-color-text);
  line-height: var(--tc-leading-relaxed);
}

/* ============================================
   FIX-02: Home ヒーロー背景（ネイビーグラデーション）
   ============================================ */
.tc-hero-home {
  background: linear-gradient(135deg, #0A1E3D 0%, #1A3A5C 100%);
  padding: 80px 24px 72px;
}

.tc-hero-home h1 {
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.tc-hero-home > .tc-container > p {
  color: rgba(255, 255, 255, 0.85);
}

/* ホームヒーロー内のセカンダリボタン: 白ボーダー・白文字に反転 */
.tc-hero-home .tc-btn-secondary,
.tc-hero-home .tc-btn-secondary-inverse {
  background-color: transparent;
  color: #FFFFFF;
  border: 2px solid rgba(255, 255, 255, 0.65);
  padding: 12px 28px;
  border-radius: var(--tc-radius-md);
  font-size: var(--tc-font-size-base);
  font-weight: var(--tc-font-semibold);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  transition: all var(--tc-transition-base);
}

.tc-hero-home .tc-btn-secondary:hover,
.tc-hero-home .tc-btn-secondary-inverse:hover {
  border-color: #FFFFFF;
  background-color: rgba(255, 255, 255, 0.12);
  color: #FFFFFF;
  text-decoration: none;
}

/* ============================================
   FIX-03: ヘッダー Contact ボタン化
   ============================================ */
.navi-in > ul > li:last-child > a,
.navi-in > ul > li.menu-item-contact > a {
  background-color: var(--tc-color-accent) !important;
  color: #FFFFFF !important;
  border-radius: var(--tc-radius-md) !important;
  padding: 8px 20px !important;
  font-weight: var(--tc-font-semibold);
  transition: background-color var(--tc-transition-base);
  margin-left: 8px;
}

.navi-in > ul > li:last-child > a:hover,
.navi-in > ul > li.menu-item-contact > a:hover {
  background-color: var(--tc-color-accent-hover) !important;
  color: #FFFFFF !important;
}

/* ============================================
   FIX-04: リンク矢印重複「→ →」解消
   HTMLに → があり CSS ::after でも追加されているため
   CSS側の ::after を無効化してHTML矢印のみ表示する
   ============================================ */
.tc-btn-text::after {
  content: none !important;
}

/* ============================================
   FIX-05: ヒーロー下の余白調整
   ============================================ */
.tc-hero-home,
.tc-hero {
  padding-bottom: 64px;
}

.tc-hero + .tc-section,
.tc-hero-home + .tc-section {
  margin-top: 0;
  padding-top: 64px;
}

/* ============================================
   FIX-06: フッター背景色を #0A1E3D に統一
   既存 #1B2A4A (--tc-color-primary) より深いネイビーに変更
   ============================================ */
#footer,
.footer,
.footer-widget-area,
#footer-top {
  background-color: #0A1E3D !important;
}

/* フッターコピーライトバー */
#footer-bottom,
.footer-bottom,
.footer-credit {
  background-color: #061428 !important;
}

/* ============================================
   FIX-07: ヘッダー sticky 化
   確認: #header-container に既に position:sticky 適用済み → 追加不要
   ============================================ */

/* ============================================
   FIX-08: 都市ページヒーロー背景（ネイビーグラデーション）
   body_class フィルター (functions.php) で .tc-page-area-city を付与
   ============================================ */
.tc-page-area-city .tc-hero {
  background: linear-gradient(135deg, #0A1E3D 0%, #1A3A5C 100%);
  padding: 64px 24px 56px;
}

.tc-page-area-city .tc-hero h1 {
  color: #FFFFFF;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.tc-page-area-city .tc-hero p {
  color: rgba(255, 255, 255, 0.85);
}

.tc-page-area-city .tc-hero .tc-btn-primary {
  background-color: #2E75B6;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tc-page-area-city .tc-hero .tc-btn-primary:hover {
  background-color: #245F96;
}

/* ============================================
   FIX-09: Contact Form 7 スタイリング
   ============================================ */

/* フォーム全体 */
.wpcf7 {
  max-width: 640px;
  margin: 40px auto;
  padding: 40px;
  background: #FFFFFF;
  border: 1px solid var(--tc-color-border);
  border-radius: var(--tc-radius-lg);
  box-shadow: var(--tc-shadow-md);
}

/* 入力欄共通 */
.wpcf7 input[type="text"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  font-size: 1rem;
  font-family: inherit;
  color: var(--tc-color-text);
  background-color: #FFFFFF;
  border: 1px solid var(--tc-color-border);
  border-radius: var(--tc-radius-md);
  transition: border-color var(--tc-transition-base), box-shadow var(--tc-transition-base);
  box-sizing: border-box;
  -webkit-appearance: none;
  appearance: none;
}

/* フォーカス */
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus {
  outline: none;
  border-color: var(--tc-color-accent);
  box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.15);
}

/* セレクトボックス矢印 */
.wpcf7 select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23666' stroke-width='1.5' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

/* テキストエリア */
.wpcf7 textarea {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* 送信ボタン */
.wpcf7 input.wpcf7-submit {
  display: inline-block;
  width: 100%;
  padding: 14px 36px;
  font-size: 1rem;
  font-weight: var(--tc-font-semibold);
  font-family: inherit;
  color: #FFFFFF;
  background-color: var(--tc-color-accent);
  border: none;
  border-radius: var(--tc-radius-md);
  cursor: pointer;
  transition: background-color var(--tc-transition-base);
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7 input.wpcf7-submit:hover {
  background-color: var(--tc-color-accent-hover);
}

/* スピナー */
.wpcf7 .wpcf7-spinner {
  display: block;
  margin: 12px auto 0;
}

/* バリデーションエラー */
.wpcf7 .wpcf7-not-valid {
  border-color: var(--tc-color-error);
}

.wpcf7 .wpcf7-not-valid-tip {
  color: var(--tc-color-error);
  font-size: var(--tc-font-size-sm);
  margin-top: 4px;
  display: block;
}

/* 送信結果メッセージ */
.wpcf7 .wpcf7-response-output {
  margin: 16px 0 0;
  padding: 12px 16px;
  border-radius: var(--tc-radius-md);
  font-size: var(--tc-font-size-base);
  text-align: center;
}

.wpcf7 form.sent .wpcf7-response-output {
  background-color: rgba(16, 185, 129, 0.08);
  border: 1px solid var(--tc-color-success);
  color: var(--tc-color-success);
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  background-color: rgba(239, 68, 68, 0.08);
  border: 1px solid var(--tc-color-error);
  color: var(--tc-color-error);
}

/* レスポンシブ */
@media (max-width: 768px) {
  .wpcf7 {
    padding: 24px 20px;
    margin: 24px 16px;
  }
}

/* ============================================
   UPDATE-02: Company Information テーブル
   ============================================ */
.tc-company-info {
  padding: 48px 0;
}

.tc-info-table {
  max-width: 640px;
  margin: 24px auto 0;
  width: 100%;
  border-collapse: collapse;
}

.tc-info-table th,
.tc-info-table td {
  padding: 12px 16px;
  text-align: left;
  border-bottom: 1px solid var(--color-border, #E0E4E8);
  font-size: 0.9375rem;
  color: var(--color-text, #333333);
}

.tc-info-table th {
  font-weight: 500;
  width: 180px;
  color: var(--color-text-light, #666666);
  white-space: nowrap;
}

.tc-info-table td a {
  color: var(--color-accent, #2E75B6);
  text-decoration: none;
}

.tc-info-table td a:hover {
  text-decoration: underline;
}

@media (max-width: 768px) {
  .tc-info-table th {
    width: 120px;
    font-size: 0.875rem;
  }
  .tc-info-table td {
    font-size: 0.875rem;
  }
}

/* ============================================
   UPDATE-03: Footer Company Info
   ============================================ */
.tc-footer-company {
  text-align: center;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  padding: 8px 0 0;
}

/* ============================================
   UPDATE-05: カード画像（Areas ページ都市カード）
   ============================================ */
.tc-card-has-img {
  padding: 0;
  overflow: hidden;
}

.tc-card-has-img .tc-card-img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border-radius: 12px 12px 0 0;
}

.tc-card-has-img .tc-card-icon,
.tc-card-has-img .tc-card-title,
.tc-card-has-img .tc-card-text,
.tc-card-has-img .tc-btn-text {
  padding-left: 20px;
  padding-right: 20px;
}

.tc-card-has-img .tc-card-icon {
  padding-top: 20px;
}

.tc-card-has-img .tc-btn-text {
  display: inline-block;
  padding-bottom: 20px;
}

/* === SEO ARTICLE STYLES START === */

/* 記事内カードのテキスト色を濃いグレーに統一 */
.tc-card p,
.tc-card .tc-card-text {
  color: #4a5568;
  font-size: 15px;
  line-height: 1.7;
}

/* 記事セクションの本文テキスト */
.tc-section p {
  color: #4a5568;
  line-height: 1.8;
}

/* FAQ回答テキスト */
.tc-faq-a {
  color: #4a5568;
  line-height: 1.7;
  padding: 8px 0 16px 0;
}

/* FAQ質問テキスト */
.tc-faq-q {
  color: #1a202c;
  font-weight: 600;
  font-size: 16px;
  padding: 12px 0 4px 0;
  border-bottom: 1px solid #e2e8f0;
}

/* スマホ時の読みやすさ改善 */
@media screen and (max-width: 480px) {
  .tc-section p,
  .tc-card p,
  .tc-faq-a {
    font-size: 15px;
    line-height: 1.8;
  }

  .tc-section h2,
  .tc-heading-2 {
    font-size: 22px;
  }

  .tc-section h3 {
    font-size: 18px;
  }
}

/* ボタン文字色を白に強制 */
.tc-btn-primary {
  color: #ffffff !important;
}

/* === SEO ARTICLE STYLES END === */
