*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --navy: #0d1f3c;
  --navy-mid: #1a3258;
  --blue: #1e4d8c;
  --blue-light: #2d6abf;
  --accent: #c8a96e;
  --accent-light: #e8d5a8;
  --white: #ffffff;
  --off-white: #f7f5f0;
  --gray-light: #eeece8;
  --gray: #5f5f5f; /* 視認性向上のためサンプル(#8a8a8a)より濃く（クライアント要望 No.7） */
  --text: #1a1a1a;
  --text-mid: #444;
  --border: #d8d4cc;

  /* ===== Type scale =====
     PC 本文 16px を最小に。letter-spacing 大の英字ラベルのみ 11-12px を許容（マイクロタイポ）。 */
  --fs-micro: 11px; /* eyebrow / 英字小ラベル（letter-spacing 大なので可読性維持） */
  --fs-xs:   12px;  /* バッジ・カテゴリ */
  --fs-sm:   14px;  /* キャプション・小さい補足 */
  --fs-base: 16px;  /* 本文標準（PC 最小） */
  --fs-md:   17px;  /* 強調本文・カード見出し小 */
  --fs-lg:   19px;  /* 中見出し */
  --fs-xl:   22px;  /* 大見出し */
  --fs-2xl:  28px;  /* セクションタイトル日本語 */
  --fs-3xl:  36px;  /* MV 見出し（自動でレスポンシブ） */

  --lh-tight:  1.5;
  --lh-base:   1.8;
  --lh-loose:  2;
}

html {
  scroll-behavior: smooth;
  font-size: var(--fs-base);
}

body {
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 300;
  color: var(--text);
  background: var(--white);
  font-size: var(--fs-base);
  line-height: var(--lh-base);
  overflow-x: hidden;
  /* No.9 font-weight 見やすさ: サンプルは smoothing 未指定（subpixel）でやや太く見える。
     antialiased/grayscale を付けると軽量フォント(300)が細く薄く見えるため、サンプルに合わせ削除。 */
}

p { font-size: var(--fs-base); line-height: var(--lh-base); }

/* ===== HEADER ===== */
/* タグセレクタにすると page-header 等にも適用されてしまうため、ID スコープに限定 */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(255,255,255,0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#header.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }

.header-top {
  background: var(--navy);
  padding: 6px 0;
  text-align: right;
}
.header-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 24px;
}
.header-top a {
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  font-size: 11px;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.header-top a:hover { color: var(--accent-light); }

.header-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  gap: 0;
  height: 72px;
}
.logo-wrap {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-decoration: none;
  margin-right: auto;
}
.logo-main {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.08em;
  line-height: 1;
}
.logo-sub {
  font-size: 10px;
  color: var(--gray);
  letter-spacing: 0.1em;
}
/* No.17 ロゴ画像（ヘッダー）: 管理画面 custom_logo / 同梱フォールバック 両対応 */
.logo-wrap img,
.logo-wrap .custom-logo { display: block; height: 34px; width: auto; max-width: none; }
.logo-wrap.custom-logo-link,
.logo-wrap .custom-logo-link { margin: 0; }

nav { display: flex; align-items: center; gap: 0; }
nav a {
  display: flex;
  align-items: center;
  height: 72px;
  padding: 0 16px;
  font-size: 13px; /* No.6 ヘッダーメニュー: サンプルに合わせ縮小 */
  font-weight: 400;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  border-bottom: 2px solid transparent;
  transition: color 0.2s, border-color 0.2s;
}
nav a:hover { color: var(--blue); border-color: var(--blue); }

.header-cta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 24px;
}
.btn-tel {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  color: var(--navy);
  font-weight: 500;
  letter-spacing: 0.03em;
}
.btn-tel svg { width: 14px; height: 14px; }

.btn-outline {
  padding: 8px 18px;
  border: 1px solid var(--navy);
  color: var(--navy);
  font-size: 12px; /* No.9 サンプルに合わせ縮小 */
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s, color 0.2s;
  font-weight: 400;
}
.btn-outline:hover { background: var(--navy); color: var(--white); }

.btn-fill {
  padding: 8px 18px;
  background: var(--blue);
  color: var(--white);
  font-size: 12px; /* No.9 サンプルに合わせ縮小 */
  text-decoration: none;
  letter-spacing: 0.06em;
  transition: background 0.2s;
  font-weight: 400;
}
.btn-fill:hover { background: var(--navy); }

/* ===== MV ===== */
.mv {
  margin-top: 104px;
  background: var(--navy);
  min-height: calc(100vh - 104px);
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
}

.mv::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 60% 80% at 100% 50%, rgba(30,77,140,0.5) 0%, transparent 60%),
    radial-gradient(ellipse 40% 60% at 20% 80%, rgba(200,169,110,0.08) 0%, transparent 50%);
}

.mv-grid-lines {
  position: absolute;
  inset: 0;
  opacity: 0.04;
  background-image:
    linear-gradient(rgba(255,255,255,0.8) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.8) 1px, transparent 1px);
  background-size: 60px 60px;
}

.mv-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 80px 32px;
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 100%;
}

.mv-text {}
.mv-eyebrow {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--accent);
  border: 1px solid rgba(200,169,110,0.4);
  padding: 5px 14px;
  margin-bottom: 28px;
  font-weight: 400;
}
.mv-title {
  font-family: 'Noto Serif JP', serif;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.5;
  letter-spacing: 0.06em;
  margin-bottom: 28px;
}
.mv-title em {
  font-style: normal;
  color: var(--accent);
  font-weight: 400;
}
.mv-desc {
  font-size: 14px; /* No.5 FV本文: サンプルに合わせ縮小 */
  color: rgba(255,255,255,0.65);
  line-height: 2;
  margin-bottom: 40px;
  max-width: 480px;
}
.mv-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.mv-btn-primary {
  padding: 14px 36px;
  background: var(--accent);
  color: var(--navy);
  text-decoration: none;
  font-size: 13px; /* No.9 サンプルに合わせ縮小 */
  font-weight: 500;
  letter-spacing: 0.1em;
  transition: background 0.2s, transform 0.2s;
}
.mv-btn-primary:hover { background: #d4b87a; transform: translateY(-1px); }
.mv-btn-secondary {
  padding: 14px 36px;
  border: 1px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
  text-decoration: none;
  font-size: 13px; /* No.9 サンプルに合わせ縮小 */
  letter-spacing: 0.1em;
  transition: border-color 0.2s, color 0.2s;
}
.mv-btn-secondary:hover { border-color: rgba(255,255,255,0.7); color: var(--white); }

.mv-notice {
  margin-top: 36px;
  padding: 14px 20px;
  border-left: 2px solid var(--accent);
  background: rgba(200,169,110,0.07);
}
.mv-notice-label {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 4px;
}
.mv-notice-text {
  font-size: 12px; /* No.4/No.11 FVお知らせ: サンプルに合わせ縮小 */
  color: rgba(255,255,255,0.7);
}

.mv-visual {
  position: relative;
}
.mv-stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.mv-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 28px 24px;
  text-align: center;
  transition: background 0.2s;
}
.mv-stat:hover { background: rgba(255,255,255,0.07); }
.mv-stat:hover { background: rgba(255,255,255,0.07); }
.mv-stat-icon {
  font-size: 11px;
  color: var(--accent);
  letter-spacing: 0.1em;
  margin-bottom: 10px;
}
.mv-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.mv-stat-num span { font-size: 18px; }
.mv-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.75); /* No.3 FV四角内テキストの視認性向上 */
  letter-spacing: 0.05em;
  line-height: 1.6;
}
.mv-stat-sub {
  font-size: 10px;
  color: rgba(200,169,110,0.7);
  margin-top: 4px;
}

/* ===== SECTIONS COMMON ===== */
.section { padding: 96px 0; }
.section-inner { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

.section-header { margin-bottom: 56px; }
.section-en {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; /* No.9 サンプルに合わせ縮小 */
  letter-spacing: 0.25em;
  color: var(--accent);
  display: block;
  margin-bottom: 12px;
}
.section-ja {
  font-family: 'Noto Serif JP', serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy);
  letter-spacing: 0.06em;
  display: block;
  margin-bottom: 16px;
}
.section-lead {
  font-size: 14px; /* No.9 サンプルに合わせ縮小 */
  color: var(--gray);
  max-width: 560px;
  line-height: 2;
}
.section-divider {
  width: 40px;
  height: 1px;
  background: var(--accent);
  margin: 16px 0 0;
}

/* ===== SERVICE ===== */
.service { background: var(--off-white); }

.service-flow {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 56px;
  background: var(--white);
  border: 1px solid var(--border);
}
.service-flow-item {
  flex: 1;
  padding: 20px 24px;
  text-align: center;
  position: relative;
}
.service-flow-item::after {
  content: '→';
  position: absolute;
  right: -12px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--accent);
  font-size: 16px;
  z-index: 1;
}
.service-flow-item:last-child::after { display: none; }
.flow-step {
  font-size: 10px;
  color: var(--accent);
  letter-spacing: 0.15em;
  margin-bottom: 6px;
}
.flow-title {
  font-size: 13px; /* No.9 サンプルに合わせ縮小 */
  font-weight: 500;
  color: var(--navy);
  letter-spacing: 0.05em;
}
.flow-sub {
  font-size: 11px;
  color: var(--gray);
  margin-top: 2px;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.service-card {
  background: var(--white);
  padding: 40px 32px;
  border: 1px solid var(--border);
  position: relative;
  transition: box-shadow 0.3s, transform 0.3s;
  cursor: default;
}
.service-card:hover {
  box-shadow: 0 8px 40px rgba(13,31,60,0.12);
  transform: translateY(-4px);
}
.service-card-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1;
  margin-bottom: 16px;
}
.service-card-tag {
  display: inline-block;
  font-size: 10px;
  letter-spacing: 0.12em;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 3px 10px;
  margin-bottom: 14px;
}
.service-card-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 14px;
  letter-spacing: 0.04em;
  line-height: 1.5;
}
.service-card-desc {
  font-size: 13px; /* No.9 サンプルに合わせ縮小 */
  color: var(--gray);
  line-height: 1.9;
}
.service-card-price {
  margin-top: 20px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
  display: flex;
  align-items: baseline;
  gap: 4px;
}
.price-label { font-size: 10px; color: var(--gray); letter-spacing: 0.08em; }
.price-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 300;
  color: var(--blue);
}
.price-unit { font-size: 11px; color: var(--gray); }

.service-more {
  text-align: right;
}
.view-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 12px; /* No.1 ボタン: サンプルに合わせ縮小（マークアップは同一） */
  letter-spacing: 0.12em;
  color: var(--navy);
  text-decoration: none;
  /* WPコア block-library の :where([style*="border-color"]){border-style:solid} 対策。
     インライン border-color を持つ .view-more が全辺 solid 強制され、未指定の上/左/右に
     既定 medium(3px) の枠が出る現象を防ぐ（border:0 で幅0かつ style:none を明示）。 */
  border: 0;
  border-bottom: 1px solid var(--navy);
  padding-bottom: 2px;
  transition: gap 0.2s, color 0.2s;
}
.view-more:hover { gap: 16px; color: var(--blue); border-color: var(--blue); }

/* ===== REASON ===== */
.reason { background: var(--white); }

.reason-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.reason-item {
  display: flex;
  gap: 24px;
  padding: 36px 40px;
  border: 1px solid var(--border);
  transition: background 0.2s;
}
.reason-item:hover { background: var(--off-white); }
.reason-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 1;
  flex-shrink: 0;
  width: 56px;
}
.reason-content {}
.reason-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 10px;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.reason-title em {
  font-style: normal;
  color: var(--blue);
}
.reason-desc {
  font-size: 13px; /* No.9 サンプルに合わせ縮小 */
  color: var(--gray);
  line-height: 1.9;
}

/* ===== CASE ===== */
.case { background: var(--navy); }
.case .section-en { color: rgba(200,169,110,0.8); }
.case .section-ja { color: var(--white); }
.case .section-lead { color: rgba(255,255,255,0.5); }
.case .section-divider { background: rgba(200,169,110,0.5); }

.case-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-bottom: 56px;
}
.case-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 32px 24px;
  text-align: center;
}
.case-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
}
.case-stat-num sup { font-size: 18px; }
.case-stat-label {
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  line-height: 1.6;
}

.case-cats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.case-cat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.06);
  padding: 40px 32px;
  text-align: center;
  text-decoration: none;
  transition: background 0.2s;
  cursor: pointer;
}
.case-cat:hover { background: rgba(255,255,255,0.08); }
.case-cat-icon {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(200,169,110,0.4);
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
}
.case-cat-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  color: var(--white);
  letter-spacing: 0.05em;
}
.case-cat-sub {
  font-size: 11px;
  color: rgba(200,169,110,0.7);
  margin-top: 6px;
}

.case .view-more { color: rgba(255,255,255,0.7); border-color: rgba(255,255,255,0.4); }
.case .view-more:hover { color: var(--accent-light); border-color: var(--accent); }
.case .service-more { text-align: right; }

/* ===== VOICE ===== */
.voice { background: var(--off-white); }

.voice-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  margin-bottom: 40px;
}
.voice-card {
  background: var(--white);
  padding: 36px 36px 32px;
  border: 1px solid var(--border);
  position: relative;
}
.voice-quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 64px;
  font-weight: 300;
  color: var(--gray-light);
  line-height: 0.8;
  margin-bottom: 8px;
}
.voice-text {
  font-size: 16px;
  color: var(--text-mid);
  line-height: 2;
  margin-bottom: 20px;
}
.voice-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid var(--gray-light);
}
.voice-avatar {
  width: 44px;
  height: 44px;
  background: var(--navy);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  color: var(--white);
  flex-shrink: 0;
}
.voice-author-info {}
.voice-firm { font-size: 11px; color: var(--gray); margin-bottom: 2px; }
.voice-name { font-size: 16px; font-weight: 500; color: var(--navy); }
.voice-bar { font-size: 10px; color: var(--accent); margin-top: 2px; letter-spacing: 0.05em; }

/* ===== INTERVIEW ===== */
.interview { background: var(--white); }

.interview-card {
  display: grid;
  grid-template-columns: 280px 1fr;
  border: 1px solid var(--border);
  overflow: hidden;
  max-width: 760px;
  margin-bottom: 40px;
  transition: box-shadow 0.3s;
}
.interview-card:hover { box-shadow: 0 8px 40px rgba(13,31,60,0.1); }
.interview-img {
  background: var(--navy-mid);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 200px;
  position: relative;
  overflow: hidden;
}
.interview-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(30,77,140,0.3) 0%, transparent 60%);
}
.interview-img-placeholder {
  font-family: 'Cormorant Garamond', serif;
  font-size: 40px;
  font-weight: 300;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.1em;
  z-index: 1;
}
.interview-content { padding: 32px 36px; }
.interview-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}
.tag {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--blue);
  border: 1px solid var(--blue);
  padding: 3px 10px;
}
.interview-name {
  font-family: 'Noto Serif JP', serif;
  font-size: 18px;
  font-weight: 400;
  color: var(--navy);
  margin-bottom: 4px;
}
.interview-firm { font-size: 15px; color: var(--gray); margin-bottom: 12px; }
.interview-bar { font-size: 11px; color: var(--accent); letter-spacing: 0.08em; margin-bottom: 16px; }
.interview-services {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.service-badge {
  font-size: 10px;
  background: var(--off-white);
  color: var(--text-mid);
  padding: 4px 10px;
  letter-spacing: 0.05em;
}

/* ===== NEWS ===== */
.news { background: var(--off-white); }
.news .section-header { margin-bottom: 40px; }

.news-list { border-top: 1px solid var(--border); margin-bottom: 40px; }
.news-item {
  display: grid;
  grid-template-columns: 100px 80px 1fr auto;
  gap: 0;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  color: inherit;
  transition: background 0.2s;
}
.news-item:hover .news-title { color: var(--blue); }
.news-date {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px; /* No.9 サンプルに合わせ縮小 */
  color: var(--gray);
  letter-spacing: 0.05em;
}
.news-cat {
  font-size: 10px;
  letter-spacing: 0.08em;
  color: var(--blue);
  border: 1px solid currentColor;
  padding: 2px 8px;
  display: inline-block;
}
.news-title {
  font-size: 14px; /* No.9 サンプルに合わせ縮小 */
  color: var(--text-mid);
  padding-left: 24px;
  transition: color 0.2s;
}
.news-arrow {
  font-size: 15px;
  color: var(--gray);
  transition: transform 0.2s;
}
.news-item:hover .news-arrow { transform: translateX(4px); }

/* ===== CONTACT ===== */
.contact { background: var(--navy); padding: 96px 0 80px; }
.contact .section-en { color: rgba(200,169,110,0.8); }
.contact .section-ja { color: var(--white); }
.contact .section-lead { color: rgba(255,255,255,0.5); }
.contact .section-divider { background: rgba(200,169,110,0.5); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
  margin-top: 48px;
}
.contact-block {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  padding: 48px 44px;
}
.contact-block-title {
  font-family: 'Noto Serif JP', serif;
  font-size: 16px;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}
.contact-block-desc {
  font-size: 12px; /* No.9 サンプルに合わせ縮小 */
  color: rgba(255,255,255,0.45);
  margin-bottom: 28px;
  line-height: 1.8;
}
.contact-btn {
  display: block;
  padding: 14px 28px;
  background: var(--accent);
  color: var(--navy);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
  transition: background 0.2s;
}
.contact-btn:hover { background: #d4b87a; }
.contact-btn-outline {
  display: block;
  padding: 14px 28px;
  border: 1px solid rgba(255,255,255,0.25);
  color: rgba(255,255,255,0.7);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  letter-spacing: 0.1em;
  transition: border-color 0.2s, color 0.2s;
}
.contact-btn-outline:hover { border-color: rgba(255,255,255,0.6); color: var(--white); }

.contact-tel-wrap { margin-top: 20px; }
.contact-tel-label { font-size: 10px; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; margin-bottom: 6px; }
.contact-tel {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px;
  font-weight: 300;
  color: var(--white);
  letter-spacing: 0.08em;
}
.contact-tel-hours { font-size: 11px; color: rgba(255,255,255,0.4); margin-top: 4px; }

.contact-note {
  margin-top: 24px;
  padding: 12px 16px;
  border-left: 2px solid rgba(200,169,110,0.4);
  font-size: 11px;
  color: rgba(255,255,255,0.4);
}

/* ===== FOOTER ===== */
footer {
  background: #080f1e;
  color: rgba(255,255,255,0.4);
}
.footer-main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 32px 32px;
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 15px;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.06em;
  margin-bottom: 8px;
}
.footer-logo-sub {
  font-size: 10px;
  color: rgba(255,255,255,0.3);
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}
/* No.17 ロゴ画像（フッター・白版） */
.footer-logo-link { display: inline-block; margin-bottom: 16px; }
.footer-logo-img { display: block; width: 170px; max-width: 100%; height: auto; }
.footer-company { font-size: 11px; color: rgba(255,255,255,0.4); line-height: 1.7; }

.footer-nav { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer-nav-group {}
.footer-nav-title {
  font-size: 11px;
  letter-spacing: 0.12em;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.footer-nav-links { display: flex; flex-direction: column; gap: 8px; }
.footer-nav-links a {
  font-size: 12px; /* No.9 サンプルに合わせ縮小 */
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-nav-links a:hover { color: rgba(255,255,255,0.7); }

.footer-bottom {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-copy { font-size: 11px; color: rgba(255,255,255,0.25); letter-spacing: 0.06em; }
.footer-links { display: flex; gap: 20px; }
.footer-links a { font-size: 11px; color: rgba(255,255,255,0.25); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: rgba(255,255,255,0.5); }

/* モバイルナビ */
#mobileNav.open { display: flex !important; }
@media (max-width: 768px) {
  #menuBtn { display: flex !important; }
}

/* ===== RESPONSIVE ===== */

/* タブレット（〜1024px） */
@media (max-width: 1024px) {
  .header-main { padding: 0 20px; }
  nav a { padding: 0 10px; font-size: 12px; }
  .header-cta { margin-left: 12px; gap: 8px; }
  .btn-tel { display: none; }
  .mv-inner { grid-template-columns: 1fr 360px; gap: 40px; }
  .section-inner { padding: 0 24px; }
  .reason-grid { grid-template-columns: 1fr 1fr; }
  .footer-nav { grid-template-columns: 1fr 1fr 1fr; }
}

/* スマホ（〜768px） */
@media (max-width: 768px) {

  /* ヘッダー */
  .header-top { display: none; }
  .header-main {
    padding: 0 16px;
    height: 60px;
    flex-wrap: nowrap;
    gap: 12px;
  }
  nav { display: none; }
  .header-cta { margin-left: auto; gap: 8px; align-items: center; }
  .btn-outline { display: none; }
  /* CTA はサンプル同様モバイルヘッダーにも縮小表示する（ハンバーガー内の重複CTAは撤去済み）。
     ロゴ「協力医のタスケル」に被らないようワンサイズ小さく（10px・余白詰め）。 */
  .header-cta .btn-fill { display: inline-block; padding: 7px 11px; font-size: 10px; letter-spacing: 0.02em; white-space: nowrap; }
  .logo-wrap { gap: 1px; min-width: 0; flex: 0 1 auto; }
  .logo-main { font-size: 16px; letter-spacing: 0.06em; white-space: nowrap; }
  .logo-sub { font-size: 9px; letter-spacing: 0.08em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

  /* MV */
  .mv { margin-top: 60px; min-height: auto; }
  .mv-inner {
    grid-template-columns: 1fr;
    padding: 48px 20px 40px;
    gap: 32px;
  }
  .mv-title { font-size: clamp(26px, 7vw, 38px); }
  .mv-eyebrow { font-size: 10px; }
  .mv-desc { font-size: 14px; }
  .mv-cta { flex-direction: column; gap: 10px; }
  .mv-btn-primary, .mv-btn-secondary { text-align: center; padding: 14px 24px; }
  .mv-stats-grid { grid-template-columns: 1fr 1fr; }
  .mv-stat { padding: 20px 16px; }
  /* No.16 スマホ: FV四角オブジェクト内の文字を小さくし2行程度に収める（22px→16px） */
  .mv-stat-num { font-size: 16px !important; line-height: 1.5 !important; }

  /* セクション共通 */
  .section { padding: 64px 0; }
  .section-inner { padding: 0 16px; }
  .section-ja { font-size: 22px; }

  /* サービスフロー */
  .service-flow {
    flex-direction: column;
    border: 1px solid var(--border);
  }
  .service-flow-item { padding: 16px 20px; }
  .service-flow-item::after {
    content: '↓';
    right: auto;
    left: 50%;
    top: auto;
    bottom: -14px;
    transform: translateX(-50%);
  }

  /* サービスカード */
  .service-cards { grid-template-columns: 1fr; }

  /* 選ばれる理由 */
  .reason-grid { grid-template-columns: 1fr; }
  .reason-item { padding: 24px 20px; gap: 16px; }
  .reason-num { font-size: 36px; width: 40px; }

  /* Case */
  .case-cats { grid-template-columns: 1fr; }
  .case-cat { padding: 28px 20px; }

  /* インタビュー */
  .interview-card { grid-template-columns: 1fr; }
  .interview-img { min-height: 160px; }

  /* フッター */
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 40px 16px 24px; }
  .footer-nav { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { padding: 16px; flex-direction: column; gap: 8px; text-align: center; }

  /* インライングリッドのスマホ対応 */
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"] {
    grid-template-columns: 1fr !important;
  }
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr 1fr !important;
  }

  /* 料金テーブル */
  [style*="justify-content:space-between"][style*="align-items:baseline"],
  [style*="justify-content: space-between"][style*="align-items: baseline"] {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start !important;
  }

  /* FAQ */
  #faq details { padding: 20px 16px; }
  #faq summary { font-size: 13px; } /* No.9 サンプルのスマホ指定(13px)に合わせ縮小 */

  /* お知らせ一覧（モバイル）: 日付・カテゴリは 1 行目、タイトルは 2 行目に折り返し */
  .news-item {
    grid-template-columns: auto auto 1fr;
    grid-template-rows: auto auto;
    column-gap: 12px;
    row-gap: 4px;
    padding: 16px 4px;
    align-items: center;
  }
  .news-item .news-date {
    grid-row: 1;
    grid-column: 1;
    font-size: 15px;
  }
  .news-item .news-cat {
    grid-row: 1;
    grid-column: 2;
    font-size: 9px;
    padding: 1px 6px;
    letter-spacing: 0.04em;
  }
  .news-item .news-arrow {
    grid-row: 1;
    grid-column: 3;
    justify-self: end;
    font-size: 11px;
  }
  .news-item .news-title {
    grid-row: 2;
    grid-column: 1 / -1;
    padding-left: 0;
    font-size: 16px;
    line-height: 1.65;
  }
}

/* 小さいスマホ（〜400px）：サブテキスト省略・CTAボタン非表示 */
@media (max-width: 400px) {
  .logo-sub { display: none; }
  .header-main .header-cta { gap: 4px; }
}

/* 小さいスマホ（〜375px） */
@media (max-width: 375px) {
  .mv-stats-grid { grid-template-columns: 1fr; }
  .mv-title { font-size: 24px; }
  [style*="grid-template-columns:repeat(4"],
  [style*="grid-template-columns: repeat(4"] {
    grid-template-columns: 1fr !important;
  }
}

/* ===== FAQ ===== */
/* No.9 FAQ回答: the_content が <p> で出力されグローバル p(16px) が効くため、
   サンプル(13px)に合わせて回答テキストのみ上書きする。 */
#faq details > div p { font-size: 13px; line-height: 1.9; }
details summary { user-select: none; }
details[open] summary .faq-icon::before { content: '－'; }
details:not([open]) summary .faq-icon::before { content: '＋'; }
.faq-icon { font-size: 18px; color: var(--accent); flex-shrink: 0; margin-left: 16px; }

/* ===== COLUMN CARD HOVER ===== */
.column-card {
  display: block;
  background: var(--off-white);
  border: 1px solid var(--border);
  padding: 32px 28px;
  text-decoration: none;
  transition: box-shadow 0.3s, transform 0.3s;
}
.column-card:hover {
  box-shadow: 0 8px 40px rgba(13,31,60,0.10);
  transform: translateY(-4px);
}

/* ===== CASE CAT HOVER ===== */
.case-cat { transition: background 0.2s; }
.case-cat:hover { background: rgba(255,255,255,0.08); }

/* ===== SCROLL ANIMATION ===== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ===== CONTACT FORM (CF7) =====
   お問い合わせページ・将来的に他ページに CF7 を埋め込んだ場合も同じ見た目で出るよう、
   .wpcf7-form 自体をスコープとして書く。 */

.wpcf7-form .form-row {
  margin-bottom: 22px;
}

.wpcf7-form .form-row > label {
  display: block;
  font-size: 15px;
  letter-spacing: 0.08em;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 500;
}

.wpcf7-form .form-row > label .required {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: #c0392b;
  vertical-align: middle;
}
.wpcf7-form .form-row > label .required::before {
  content: '※ ';
  color: #c0392b;
}
.wpcf7-form .form-row > label .optional {
  display: inline-block;
  margin-left: 6px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: var(--gray);
  vertical-align: middle;
}
.wpcf7-form .form-row > label .optional::before {
  content: '（';
}
.wpcf7-form .form-row > label .optional::after {
  content: '）';
}

/* テキスト系入力 */
.wpcf7-form input[type="text"],
.wpcf7-form input[type="tel"],
.wpcf7-form input[type="email"],
.wpcf7-form input[type="url"],
.wpcf7-form input[type="number"],
.wpcf7-form textarea,
.wpcf7-form select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--border);
  background: var(--white);
  font-size: 16px;
  font-family: inherit;
  color: var(--text);
  line-height: 1.6;
  letter-spacing: 0.02em;
  transition: border-color 0.2s, box-shadow 0.2s;
  border-radius: 2px;
  -webkit-appearance: none;
  appearance: none;
}

.wpcf7-form input[type="text"]:focus,
.wpcf7-form input[type="tel"]:focus,
.wpcf7-form input[type="email"]:focus,
.wpcf7-form input[type="url"]:focus,
.wpcf7-form input[type="number"]:focus,
.wpcf7-form textarea:focus,
.wpcf7-form select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 77, 140, 0.08);
}

.wpcf7-form input::placeholder,
.wpcf7-form textarea::placeholder {
  color: #b5b3ad;
  font-size: 16px;
}

.wpcf7-form textarea {
  resize: vertical;
  min-height: 160px;
  line-height: 1.9;
}

/* ラジオボタン */
.wpcf7-form .wpcf7-radio {
  display: block;
  padding: 6px 0 2px;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item {
  display: inline-block;
  margin: 0 20px 8px 0;
}
.wpcf7-form .wpcf7-radio .wpcf7-list-item label {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  color: var(--text-mid);
  margin: 0;
  letter-spacing: 0.02em;
}
.wpcf7-form .wpcf7-radio input[type="radio"] {
  appearance: auto;
  -webkit-appearance: auto;
  margin: 0 8px 0 0;
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}

/* 同意チェック行 */
.wpcf7-form .form-row.consent {
  background: var(--off-white);
  padding: 16px 18px;
  border-left: 2px solid var(--accent);
  font-size: 15px;
  color: var(--text-mid);
  line-height: 1.9;
  letter-spacing: 0.02em;
}
.wpcf7-form .form-row.consent .wpcf7-list-item {
  margin: 0;
  display: inline;
}
.wpcf7-form .form-row.consent .wpcf7-list-item-label {
  margin-left: 4px;
  vertical-align: middle;
}
.wpcf7-form .form-row.consent a {
  color: var(--blue);
  text-decoration: underline;
}
.wpcf7-form .wpcf7-acceptance input[type="checkbox"] {
  appearance: auto;
  -webkit-appearance: auto;
  margin: 0;
  accent-color: var(--blue);
  width: 16px;
  height: 16px;
  vertical-align: middle;
}

/* 送信ボタン */
.wpcf7-form .form-row.submit {
  margin-top: 32px;
  text-align: center;
}
.wpcf7-form input[type="submit"],
.wpcf7-form .wpcf7-submit {
  display: inline-block;
  min-width: 260px;
  padding: 16px 36px;
  background: var(--navy);
  color: var(--white);
  border: 1px solid var(--navy);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.1s;
  font-family: inherit;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 2px;
}
.wpcf7-form input[type="submit"]:hover,
.wpcf7-form .wpcf7-submit:hover {
  background: var(--blue);
  border-color: var(--blue);
}
.wpcf7-form input[type="submit"]:active,
.wpcf7-form .wpcf7-submit:active {
  transform: translateY(1px);
}
.wpcf7-form input[type="submit"]:disabled,
.wpcf7-form .wpcf7-submit:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

/* インラインバリデーション */
.wpcf7-form .wpcf7-not-valid-tip {
  display: block;
  margin-top: 6px;
  font-size: 11px;
  color: #c0392b;
  letter-spacing: 0.04em;
}
.wpcf7-form .wpcf7-not-valid {
  border-color: #c0392b !important;
  box-shadow: 0 0 0 3px rgba(192, 57, 43, 0.08) !important;
}

/* 送信応答メッセージ */
.wpcf7 form .wpcf7-response-output {
  margin: 28px 0 0;
  padding: 14px 18px;
  border: 1px solid;
  font-size: 16px;
  line-height: 1.8;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: #2f8a4a;
  background: #f1f9f3;
  color: #1d6e1d;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.failed .wpcf7-response-output {
  border-color: #c0392b;
  background: #fef4f3;
  color: #8a2117;
}

.wpcf7-form .wpcf7-spinner {
  vertical-align: middle;
  margin-left: 12px;
}

/* スマホ */
@media (max-width: 767px) {
  .tasukeru-contact-page .contact-form-wrap {
    padding: 24px 18px !important;
  }
  .wpcf7-form .form-row.submit input[type="submit"],
  .wpcf7-form .form-row.submit .wpcf7-submit {
    width: 100%;
    min-width: 0;
  }
  .wpcf7-form .wpcf7-radio .wpcf7-list-item {
    display: block;
    margin: 0 0 10px 0;
  }
}

/* ===== HAMBURGER & MOBILE NAV ===== */
.tasukeru-burger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  width: 40px;
  height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  position: relative;
}
.tasukeru-burger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--navy);
  transition: transform 0.35s cubic-bezier(0.65, 0, 0.35, 1), opacity 0.2s;
  transform-origin: center;
}
.tasukeru-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.tasukeru-burger.open span:nth-child(2) { opacity: 0; }
.tasukeru-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.tasukeru-mobile-nav {
  display: flex;
  position: fixed;
  top: 60px;
  left: 0;
  right: 0;
  background: var(--white);
  border-top: 1px solid var(--border);
  z-index: 99;
  padding: 24px 16px;
  flex-direction: column;
  gap: 0;
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.tasukeru-mobile-nav.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
@media (min-width: 769px) {
  .tasukeru-mobile-nav { display: none; }
}
.mobile-nav-link {
  display: block;
  padding: 14px 0;
  border-bottom: 1px solid var(--gray-light);
  font-size: 16px;
  color: var(--text-mid);
  text-decoration: none;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateX(-12px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.tasukeru-mobile-nav.open .mobile-nav-link {
  opacity: 1;
  transform: translateX(0);
}
.tasukeru-mobile-nav.open .mobile-nav-link:nth-child(1) { transition-delay: 0.05s; }
.tasukeru-mobile-nav.open .mobile-nav-link:nth-child(2) { transition-delay: 0.10s; }
.tasukeru-mobile-nav.open .mobile-nav-link:nth-child(3) { transition-delay: 0.15s; }
.tasukeru-mobile-nav.open .mobile-nav-link:nth-child(4) { transition-delay: 0.20s; }
.mobile-nav-cta {
  display: block;
  margin-top: 16px;
  padding: 14px;
  background: var(--blue);
  color: var(--white);
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.1em;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.4s ease 0.25s, transform 0.4s ease 0.25s, background 0.2s;
}
.tasukeru-mobile-nav.open .mobile-nav-cta {
  opacity: 1;
  transform: translateY(0);
}

/* スマホでハンバーガーを表示 */
@media (max-width: 768px) {
  .tasukeru-burger { display: flex; }
}

/* ===== SPLASH ON FIRST LOAD ===== */
.tasukeru-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  animation: tasukeru-splash-out 1.0s ease 0.6s forwards;
}
.tasukeru-splash::after {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--white);
  transform: scaleY(0);
  transform-origin: top;
  animation: tasukeru-splash-reveal 0.7s cubic-bezier(0.76, 0, 0.24, 1) 1.3s forwards;
}
.tasukeru-splash-logo {
  text-align: center;
  color: var(--accent);
  opacity: 0;
  animation: tasukeru-splash-logo 0.7s ease 0.2s forwards;
}
.tasukeru-splash-logo .splash-logo-img {
  display: block;
  width: min(560px, 82vw);
  height: clamp(96px, 17vw, 168px);
  background: var(--tasukeru-splash-logo, url(../img/logo-color-dark.png)) center / contain no-repeat;
}
@keyframes tasukeru-splash-logo {
  to { opacity: 1; }
}
@keyframes tasukeru-splash-out {
  to { opacity: 1; }
}
@keyframes tasukeru-splash-reveal {
  to { transform: scaleY(1); }
}
.tasukeru-splash.gone {
  display: none;
}

/* ===== PAGE TRANSITION LOADER ===== */
.tasukeru-pageloader {
  position: fixed;
  inset: 0;
  z-index: 9998;
  background: var(--white);
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.tasukeru-pageloader.active {
  opacity: 1;
  pointer-events: auto;
}
.tasukeru-pageloader::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  margin: -14px 0 0 -14px;
  border: 2px solid var(--gray-light);
  border-top-color: var(--accent);
  border-radius: 50%;
  animation: tasukeru-spin 0.7s linear infinite;
}
@keyframes tasukeru-spin {
  to { transform: rotate(360deg); }
}

/* ===== SECTION REVEAL（既存 .fade-in を強化＋stagger） ===== */
/* 既存 .fade-in は visible で opacity:1 / translateY(0) になる前提。
   stagger は親側でクラスを付けると子要素が順番に表示される。 */
.tasukeru-stagger > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.tasukeru-stagger.visible > * { opacity: 1; transform: translateY(0); }
.tasukeru-stagger.visible > *:nth-child(1) { transition-delay: 0.05s; }
.tasukeru-stagger.visible > *:nth-child(2) { transition-delay: 0.15s; }
.tasukeru-stagger.visible > *:nth-child(3) { transition-delay: 0.25s; }
.tasukeru-stagger.visible > *:nth-child(4) { transition-delay: 0.35s; }
.tasukeru-stagger.visible > *:nth-child(5) { transition-delay: 0.45s; }
.tasukeru-stagger.visible > *:nth-child(6) { transition-delay: 0.55s; }

/* MV INFORMATION カルーセル */
.mv-notice-text-list {
  position: relative;
  min-height: 1.4em;
  overflow: hidden;
}
.mv-notice-text-list > span {
  position: absolute;
  inset: 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.6s ease, transform 0.6s ease;
  white-space: nowrap;        /* No.4 長文タイトルで折り返さず崩れないように */
  overflow: hidden;
  text-overflow: ellipsis;
}
.mv-notice-text-list > span.is-active {
  position: relative;
  opacity: 1;
  transform: translateY(0);
}

/* prefers-reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  .tasukeru-splash, .tasukeru-pageloader { display: none !important; }
  .tasukeru-stagger > * { opacity: 1; transform: none; transition: none; }
  .mv-notice-text-list > span { opacity: 1; position: relative; transform: none; transition: none; }
}
