/* =====================================================
   PetAirJPN Top Page Styles
   index.html固有のスタイル
   ===================================================== */

/* -----------------------------
   HEADER
   ----------------------------- */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-fixed);
  background-color: rgba(250, 250, 247, 0);
  transition: background-color var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.site-header.is-scrolled {
  background-color: rgba(250, 250, 247, 0.96);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  box-shadow: var(--shadow-sm);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
}

.site-header__logo {
  font-family: var(--font-en);
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  letter-spacing: -0.01em;
  color: var(--color-primary);
}

.site-header.on-hero .site-header__logo,
.site-header.on-hero .site-nav a,
.site-header.on-hero .lang-switch button,
.site-header.on-hero .lang-switch a,
.site-header.on-hero .lang-switch span {
  color: white;
}

/* HOME: 淡色splitヒーロー＋クリームヘッダーのため on-hero の白文字を無効化（最上部のナビ消失バグ修正） */
.home .site-header.on-hero .site-nav a,
.home .site-header.on-hero .lang-switch button,
.home .site-header.on-hero .lang-switch a,
.home .site-header.on-hero .lang-switch span,
.home .site-header.on-hero .site-header__tel {
  color: var(--color-text);
}
.home .site-header.on-hero .site-header__tel svg { color: var(--color-primary); }

.logo-mark__jpn {
  color: var(--color-jpn-red);
  font-weight: var(--fw-bold);
  margin-left: 2px;
}

.site-nav ul {
  display: flex;
  gap: clamp(var(--sp-3), 1.4vw, var(--sp-6));
}

.site-nav a {
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  color: var(--color-text);
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out);
}

.site-nav a:hover {
  color: var(--color-accent);
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}

.lang-switch {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
  font-family: var(--font-en);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
}

.lang-switch button,
.lang-switch a,
.lang-switch span,
.lang-switch .lang-en {
  color: var(--color-text-mute);
  padding: var(--sp-1) var(--sp-2);
}
/* EN はプロト用プレースホルダ（本番はWP翻訳プラグインの切替に置換） */
.lang-switch .lang-en { cursor: default; }

.lang-switch button.is-active,
.lang-switch a.is-active,
.lang-switch .is-active {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.btn-header-cta {
  padding: var(--sp-2) var(--sp-5);
  min-height: 44px;
  font-size: var(--fs-sm);
}

.site-header__tel {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 12px 6px;   /* ヒットエリア44px確保 */
  margin: -12px -6px;  /* 視覚位置は維持 */
  font-family: var(--font-en);
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-deep);
  letter-spacing: 0.01em;
  white-space: nowrap;
  transition: color var(--duration-fast) var(--ease-out);
}
.site-header__tel svg { color: var(--color-primary); flex-shrink: 0; }
.site-header__tel:hover { color: var(--color-primary); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  height: 22px;
  justify-content: center;
  box-sizing: content-box;
  padding: 11px;
  margin-right: -11px; /* タップ領域44px確保しつつ視覚位置は維持 */
}

.hamburger span {
  display: block;
  height: 2px;
  background-color: var(--color-text);
  transition: transform var(--duration-base) var(--ease-out),
              opacity var(--duration-base) var(--ease-out);
}

/* ナビ9項目＋言語＋電話＋CTAは横幅を要する。1200px未満はドロワーに切替（中間幅の折返し崩れを回避） */
@media (max-width: 1199px) {
  .site-nav { display: none; }
  .hamburger { display: flex; }
  .btn-header-cta { display: none; }
  .lang-switch { display: none; }
  /* 電話はスマホ・タブレットでも残す（モバイルで電話に到達できないのはCV損失） */

  @media (max-width: 560px) {
  .site-header__tel span { display: none; } /* アイコンのみ表示 */
  .site-header__tel { padding: 14px; margin: -14px; } /* 44pxヒットエリア維持 */
}

/* ハンバーガーを開いたときのドロワー（これが無いと開かないのにスクロールだけ固まる＝P0バグ） */
  .site-nav.is-open {
    display: block;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    height: calc(100dvh - 80px); /* bottom:0 はヘッダーのbackdrop-filter包含ブロックで潰れるため明示高さで指定 */
    background: var(--color-bg);
    padding: var(--sp-5) var(--container-px) var(--sp-9);
    overflow-y: auto;
    z-index: var(--z-modal);
    border-top: 1px solid var(--color-border);
    animation: navDrawerIn var(--duration-base) var(--ease-out) both;
  }
  .site-nav.is-open ul { flex-direction: column; gap: 0; }
  .site-nav.is-open li { border-bottom: 1px solid var(--color-border); }
  .site-nav.is-open a {
    display: block;
    padding: var(--sp-4) var(--sp-2);
    font-size: var(--fs-lg);
    font-weight: var(--fw-medium);
    color: var(--color-text);
  }
  .site-nav.is-open a:hover,
  .site-nav.is-open a[aria-current="page"] { color: var(--color-primary); }
}

@keyframes navDrawerIn {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* -----------------------------
   [01] HERO
   ----------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: white;
  overflow: hidden;
  padding-top: 100px;
  padding-bottom: var(--sp-9);
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.85);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(24, 34, 104, 0.55) 0%,
    rgba(24, 34, 104, 0.65) 50%,
    rgba(24, 34, 104, 0.85) 100%
  );
}

.hero__inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.hero__eyebrow {
  color: var(--color-accent-light);
  margin-bottom: var(--sp-4);
}

.hero__title {
  font-size: var(--fs-5xl);
  line-height: 1.15;
  letter-spacing: var(--ls-tight);
  font-weight: var(--fw-bold);
  color: white;
  margin-bottom: var(--sp-5);
  animation: fadeUp 1s var(--ease-out) both;
}

.hero__subtitle {
  font-size: var(--fs-lg);
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: var(--sp-7);
  animation: fadeUp 1s var(--ease-out) 0.2s both;
}

.hero__subtitle-em {
  color: var(--color-accent-light);
  font-weight: var(--fw-medium);
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  margin-bottom: var(--sp-8);
  animation: fadeUp 1s var(--ease-out) 0.4s both;
}

.hero__badges {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-7);
  padding-top: var(--sp-6);
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  animation: fadeUp 1s var(--ease-out) 0.6s both;
}

.hero-badge {
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}

.hero-badge strong {
  font-family: var(--font-en);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: white;
  line-height: 1;
}

.hero-badge span {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: rgba(255, 255, 255, 0.7);
}

.hero__scroll-indicator {
  position: absolute;
  bottom: var(--sp-6);
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 40px;
  border: 2px solid rgba(255, 255, 255, 0.5);
  border-radius: 12px;
  z-index: 2;
}

.hero__scroll-indicator span {
  display: block;
  width: 4px;
  height: 8px;
  background-color: white;
  border-radius: 2px;
  margin: 6px auto 0;
  animation: scrollDown 2s ease-in-out infinite;
}

@keyframes scrollDown {
  0% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(16px); opacity: 0; }
}

@media (max-width: 768px) {
  .hero { min-height: auto; padding-top: 120px; padding-bottom: var(--sp-7); }
  .hero__title { font-size: var(--fs-3xl); }
  .hero__subtitle { font-size: var(--fs-base); }
  .hero__badges { gap: var(--sp-5); }
  .hero-badge strong { font-size: var(--fs-xl); }
  .hero__scroll-indicator { display: none; }
}

/* -----------------------------
   [02] STATS
   ----------------------------- */
.stats {
  background-color: var(--color-primary);
  color: white;
  padding: var(--sp-7) 0;
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-5);
  text-align: center;
}

.stat-item {
  display: flex;
  flex-direction: column;
  gap: var(--sp-2);
  padding: var(--sp-3);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item__num {
  font-family: var(--font-en);
  font-size: var(--fs-3xl);
  font-weight: var(--fw-bold);
  color: var(--color-accent-light);
  line-height: 1;
}

.stat-item__num--small {
  font-size: var(--fs-xl);
}

.stat-item__num small {
  font-size: 0.6em;
}

.stat-item__label {
  font-size: var(--fs-xs);
  letter-spacing: var(--ls-wide);
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.4;
}

@media (max-width: 768px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-4);
  }
  .stat-item {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.15);
    padding-bottom: var(--sp-4);
  }
  .stat-item__num { font-size: var(--fs-2xl); }
}

/* -----------------------------
   [03] RISKS
   ----------------------------- */
.risks .section-header h2 {
  color: var(--color-primary-dark);
}

.risk-list {
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
  margin: var(--sp-7) 0;
}

.risk-item {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5);
  background-color: white;
  border-left: 3px solid var(--color-error);
  border-radius: var(--radius-sm);
}

.risk-item__icon {
  font-size: var(--fs-xl);
  color: var(--color-error);
  flex-shrink: 0;
  margin-top: 2px;
}

.risk-item p {
  font-size: var(--fs-md);
  color: var(--color-text);
}

.risk-item strong {
  color: var(--color-error);
  font-weight: var(--fw-semibold);
}

.risks__conclusion {
  text-align: center;
  font-size: var(--fs-lg);
  line-height: var(--lh-base);
  color: var(--color-primary-dark);
  margin-top: var(--sp-7);
  padding: var(--sp-6);
  background-color: white;
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.risks__conclusion strong {
  color: var(--color-accent);
  font-weight: var(--fw-bold);
}

/* -----------------------------
   [04] SERVICE
   ----------------------------- */
.service__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.service-card {
  background-color: white;
  padding: var(--sp-7);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
  position: relative;
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.service-card__num {
  display: block;
  font-family: var(--font-en);
  font-size: var(--fs-sm);
  font-weight: var(--fw-bold);
  color: var(--color-accent);
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--sp-3);
}

.service-card h3 {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-3);
  color: var(--color-primary-dark);
  line-height: 1.4;
}

.service-card p {
  font-size: var(--fs-base);
  color: var(--color-text-sub);
  line-height: 1.8;
}

.service-card strong {
  color: var(--color-text);
  font-weight: var(--fw-semibold);
}

.service__note {
  margin-top: var(--sp-7);
  padding: var(--sp-5);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-md);
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  line-height: 1.7;
}

/* -----------------------------
   [05] TEAM
   ----------------------------- */
.team__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.team-card {
  background-color: white;
  padding: var(--sp-6);
  border-radius: var(--radius-md);
  text-align: center;
  border: 1px solid var(--color-border);
  transition: transform var(--duration-base) var(--ease-out);
}

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

.team-card__avatar {
  width: 100px;
  height: 100px;
  margin: 0 auto var(--sp-4);
  border-radius: 50%;
  overflow: hidden;
  background: linear-gradient(135deg, var(--color-primary-light), var(--color-secondary));
  display: flex;
  align-items: center;
  justify-content: center;
}

.team-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-card__initial {
  font-family: var(--font-en);
  font-size: var(--fs-2xl);
  font-weight: var(--fw-bold);
  color: white;
}

.team-card__flag {
  font-size: var(--fs-lg);
  margin-bottom: var(--sp-2);
}

.team-card__name {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  margin-bottom: var(--sp-1);
  color: var(--color-primary-dark);
}

.team-card__role {
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  line-height: 1.5;
  margin-bottom: var(--sp-2);
}

.team-card__lang {
  font-size: var(--fs-xs);
  color: var(--color-accent);
  font-family: var(--font-en);
  letter-spacing: var(--ls-wide);
}

.team__cta {
  text-align: center;
  margin-top: var(--sp-7);
}

/* -----------------------------
   [06] MESSAGE
   ----------------------------- */
.message {
  position: relative;
  text-align: center;
  padding: var(--sp-10) 0;
}

.message__quote {
  font-family: var(--font-serif);
  font-size: var(--fs-2xl);
  line-height: 1.7;
  color: white;
  font-weight: var(--fw-regular);
  letter-spacing: var(--ls-base);
}

.message__quote p {
  margin-bottom: var(--sp-3);
}

.message__quote p:last-child {
  margin-bottom: 0;
  margin-top: var(--sp-5);
  font-size: var(--fs-xl);
  color: var(--color-accent-light);
}

.message__em {
  color: var(--color-accent-light);
  font-weight: var(--fw-medium);
}

@media (max-width: 768px) {
  .message__quote { font-size: var(--fs-xl); }
  .message__quote p:last-child { font-size: var(--fs-md); }
}

/* -----------------------------
   [07] VOICES
   ----------------------------- */
.voices__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: var(--sp-5);
  margin-top: var(--sp-7);
}

.voice-card {
  background-color: white;
  border-radius: var(--radius-md);
  overflow: hidden;
  border: 1px solid var(--color-border);
  transition: transform var(--duration-base) var(--ease-out),
              box-shadow var(--duration-base) var(--ease-out);
}

.voice-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.voice-card__image {
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
}

.voice-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--duration-slow) var(--ease-out);
}

.voice-card:hover .voice-card__image img {
  transform: scale(1.05);
}

.voice-card__body {
  padding: var(--sp-5);
}

.voice-card__route {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-accent);
  letter-spacing: var(--ls-wide);
  margin-bottom: var(--sp-3);
}

.voice-card__quote {
  font-size: var(--fs-xl);
  font-weight: var(--fw-bold);
  line-height: 1.5;
  letter-spacing: var(--ls-tight);
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}

.voice-card__detail {
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  line-height: 1.7;
  margin-bottom: var(--sp-4);
}

.voices__cta {
  text-align: center;
  margin-top: var(--sp-7);
}

/* -----------------------------
   [08] FLOW
   ----------------------------- */
.flow__steps {
  margin-top: var(--sp-7);
  position: relative;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.flow__steps::before {
  content: '';
  position: absolute;
  left: 32px;
  top: 32px;
  bottom: 32px;
  width: 2px;
  background-color: var(--color-border-dark);
  z-index: 0;
}

.flow-step {
  display: flex;
  gap: var(--sp-5);
  padding-bottom: var(--sp-6);
  position: relative;
  z-index: 1;
}

.flow-step:last-child {
  padding-bottom: 0;
}

.flow-step__num {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background-color: var(--color-primary);
  color: white;
  font-family: var(--font-en);
  font-size: var(--fs-md);
  font-weight: var(--fw-bold);
  display: flex;
  align-items: center;
  justify-content: center;
  border: 4px solid var(--color-bg-alt);
}

.flow-step__body {
  flex-grow: 1;
  background-color: white;
  padding: var(--sp-5);
  border-radius: var(--radius-md);
  border: 1px solid var(--color-border);
}

.flow-step h3 {
  font-size: var(--fs-md);
  margin-bottom: var(--sp-2);
  color: var(--color-primary-dark);
}

.flow-step p {
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  margin-bottom: var(--sp-3);
}

.flow-step__meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-3);
  font-size: var(--fs-xs);
  color: var(--color-text-mute);
  font-family: var(--font-en);
  letter-spacing: var(--ls-wide);
}

.flow-step__time::before {
  content: '';
}

.flow-step__owner::before {
  content: '';
}

.flow__note {
  margin-top: var(--sp-7);
  text-align: center;
  font-size: var(--fs-sm);
  color: var(--color-text-sub);
  line-height: 1.7;
}

@media (max-width: 768px) {
  .flow__steps::before { left: 24px; }
  .flow-step__num { width: 48px; height: 48px; font-size: var(--fs-sm); }
}

/* -----------------------------
   [09] DESTINATIONS
   ----------------------------- */
.country-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: var(--sp-3);
  margin-top: var(--sp-7);
}

.country-grid li {
  padding: var(--sp-4);
  background-color: var(--color-bg-alt);
  border-radius: var(--radius-sm);
  font-size: var(--fs-sm);
  font-weight: var(--fw-medium);
  text-align: center;
  transition: background-color var(--duration-fast) var(--ease-out),
              transform var(--duration-fast) var(--ease-out);
}

.country-grid li:hover {
  background-color: var(--color-primary);
  color: white;
  transform: translateY(-2px);
}

/* -----------------------------
   [10] FAQ
   ----------------------------- */
.faq-list {
  margin-top: var(--sp-7);
  display: flex;
  flex-direction: column;
  gap: var(--sp-3);
}

.faq-item {
  background-color: white;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: var(--sp-5);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  transition: background-color var(--duration-fast) var(--ease-out);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary:hover {
  background-color: var(--color-bg-alt);
}

.faq-item__q {
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-dark);
  flex-grow: 1;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  position: relative;
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background-color: var(--color-accent);
  top: 50%;
  left: 50%;
  transition: transform var(--duration-base) var(--ease-out);
}

.faq-item__icon::before {
  width: 14px;
  height: 2px;
  transform: translate(-50%, -50%);
}

.faq-item__icon::after {
  width: 2px;
  height: 14px;
  transform: translate(-50%, -50%);
}

.faq-item[open] .faq-item__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}

.faq-item__a {
  padding: 0 var(--sp-5) var(--sp-5);
  border-top: 1px solid var(--color-border);
}

.faq-item__a p {
  padding-top: var(--sp-4);
  font-size: var(--fs-base);
  color: var(--color-text-sub);
  line-height: 1.8;
}

.faq__cta {
  text-align: center;
  margin-top: var(--sp-7);
}

/* -----------------------------
   [11] CTA FINAL
   ----------------------------- */
.cta-final {
  background: linear-gradient(150deg, var(--color-primary-deep) 0%, var(--color-bg-dark) 100%);
  color: white;
  text-align: center;
}

.cta-final h2 {
  color: white;
  margin-bottom: var(--sp-5);
  margin-top: var(--sp-3);
}

.cta-final .lead {
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--sp-7);
}

.cta-final .lead strong {
  color: var(--color-accent-light);
  font-weight: var(--fw-semibold);
}

.cta-final__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-4);
  justify-content: center;
  margin-bottom: var(--sp-5);
}

.cta-final .btn-secondary {
  color: white;
  border-color: white;
}

.cta-final .btn-secondary:hover {
  background-color: white;
  color: var(--color-primary-dark);
}

.cta-final__hours {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.65);
  letter-spacing: var(--ls-wide);
}

/* -----------------------------
   [12] FOOTER
   ----------------------------- */
.site-footer {
  background-color: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: var(--sp-9) 0 var(--sp-5);
}

.site-footer__top {
  text-align: center;
  padding-bottom: var(--sp-7);
  margin-bottom: var(--sp-7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__catch {
  font-size: var(--fs-md);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.9);
  max-width: 720px;
  margin: 0 auto;
}

.site-footer__catch strong {
  color: var(--color-accent-light);
  font-weight: var(--fw-semibold);
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-6);
  margin-bottom: var(--sp-8);
}

.site-footer__col h3 {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: white;
  margin-bottom: var(--sp-4);
  letter-spacing: var(--ls-wide);
  text-transform: uppercase;
}

.site-footer__col p,
.site-footer__col li {
  font-size: var(--fs-sm);
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
}

.site-footer__col a {
  color: rgba(255, 255, 255, 0.7);
  transition: color var(--duration-fast) var(--ease-out);
}

.site-footer__col a:hover {
  color: var(--color-accent-light);
}

.social-list li {
  margin-bottom: var(--sp-1);
}

.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: var(--sp-4);
  padding-top: var(--sp-5);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  font-size: var(--fs-xs);
  color: rgba(255, 255, 255, 0.5);
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: var(--sp-5);
}

.legal-links a {
  color: rgba(255, 255, 255, 0.5);
}

.legal-links a:hover {
  color: var(--color-accent-light);
}

@media (max-width: 768px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
  .site-footer__grid { grid-template-columns: 1fr; }
}

/* =====================================================
   ★ PREMIUM TOP PAGE LAYER（.home スコープ・2026 リニューアル）
   既存の共通コンポーネント（footer/faq/voice/flow-step等）は維持し、
   トップページ固有の見た目だけを上書き・追加する。
   ===================================================== */

/* --- 共通ヘルパー（全ページで安全） --- */
.btn-ghost {
  background: transparent;
  color: var(--color-primary);
  border-color: var(--color-border-dark);
}
.btn-ghost:hover {
  background: var(--color-primary);
  color: #fff;
  border-color: var(--color-primary);
}
.btn-ghost.on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}
.btn-ghost.on-dark:hover {
  background: #fff;
  color: var(--color-primary-dark);
  border-color: #fff;
}

.section-cream { background-color: var(--color-cream); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-weight: var(--fw-semibold);
  color: var(--color-primary-deep);
}
.link-arrow::after {
  content: "→";
  color: var(--color-accent);
  transition: transform var(--duration-base) var(--ease-out);
}
.link-arrow:hover { color: var(--color-accent); }
.link-arrow:hover::after { transform: translateX(5px); }

.section-head-left { max-width: 660px; margin-bottom: var(--sp-7); }
.section-head-left h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.32;
  color: var(--color-primary-deep);
  margin-top: var(--sp-2);
}
.section-head-left__lead {
  margin-top: var(--sp-4);
  color: var(--color-text-sub);
  font-size: var(--fs-md);
  line-height: 1.9;
}
.section-head-left__lead strong { color: var(--color-primary-deep); font-weight: 600; }

.home section[id] { scroll-margin-top: 92px; }

/* --- [01] HERO（エディトリアル分割） --- */
.home .hero {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  min-height: min(88vh, 800px);
  align-items: stretch;
  padding: 0;
  color: var(--color-text);
  background: var(--color-bg);
}
.home .hero__text {
  display: flex;
  align-items: center;
  padding: 120px clamp(var(--sp-6), 6vw, var(--sp-10)) var(--sp-8);
}
.home .hero__text-inner { max-width: 560px; }
.home .hero__eyebrow {
  font-family: var(--font-en);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-size: var(--fs-xs);
  font-weight: 600;
  color: var(--color-accent-deep);
  margin-bottom: var(--sp-5);
}
.home .hero__title {
  font-family: var(--font-serif);
  font-weight: 600;
  font-size: clamp(2.5rem, 4.6vw, 4.1rem);
  line-height: 1.3;
  letter-spacing: 0.03em;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-5);
}
.home .hero__title em { font-style: normal; color: var(--color-accent-dark); }
.home .hero__desc {
  font-size: var(--fs-lg);
  line-height: 1.6;
  font-weight: var(--fw-medium);
  color: var(--color-primary-deep);
  max-width: 30em;
  margin-bottom: var(--sp-5);
}
.home .hero__desc strong { font-weight: var(--fw-bold); color: var(--color-primary); }
@media (max-width: 768px) { .home .hero__desc { font-size: var(--fs-md); } }
.home .hero__lead {
  font-size: var(--fs-md);
  line-height: 1.95;
  color: var(--color-text-sub);
  margin-bottom: var(--sp-6);
}
.home .hero__cta { display: flex; flex-wrap: wrap; gap: var(--sp-3); margin-bottom: var(--sp-6); }
.home .hero__trust { font-size: var(--fs-sm); color: var(--color-text-sub); letter-spacing: 0.02em; }
.home .hero__media { position: relative; overflow: hidden; }
.home .hero__media img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 900px) {
  .home .hero { grid-template-columns: 1fr; min-height: 0; }
  .home .hero__media { order: -1; height: 44vh; }
  .home .hero__text { padding: var(--sp-7) var(--sp-5) var(--sp-8); }
}

/* ===== MOTION LAYER（上品な動き。派手にしない＝信頼を損なわない） ===== */
/* ① ヒーロー画像：ゆっくりズーム（空気が動く感じ。ループせず一度きりで上品に） */
.home .hero__media img {
  animation: heroKenBurns 26s var(--ease-in-out) 0.2s both;
  transform-origin: 62% 42%;
  will-change: transform;
}
@keyframes heroKenBurns {
  from { transform: scale(1.005); }
  to   { transform: scale(1.07); }
}
/* ② ヒーロー文字：上から順に立ち上がる（CSSのみ＝JS無効でも表示される） */
.home .hero__text-inner > * { animation: heroRise 0.7s var(--ease-out) both; }
.home .hero__text-inner > .hero__eyebrow { animation-delay: 0.08s; }
.home .hero__text-inner > .hero__title  { animation-delay: 0.18s; }
.home .hero__text-inner > .hero__desc   { animation-delay: 0.34s; }
.home .hero__text-inner > .hero__lead   { animation-delay: 0.46s; }
.home .hero__text-inner > .hero__cta    { animation: none; } /* CTAは演出で隠さず即時視認（CV最優先） */
.home .hero__text-inner > .hero__trust  { animation-delay: 0.68s; }
@keyframes heroRise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

@media (prefers-reduced-motion: reduce) {
  .home .hero__media img { animation: none; transform: none; }
  .home .hero__text-inner > * { animation: none; }
}

/* --- [02] STATS（白基調・青はアクセントに。ベタ塗りを止めて余白で見せる） --- */
.home .stats {
  background: var(--color-bg);
  color: var(--color-text);
  padding: var(--sp-7) 0;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}
.home .stat-item { border-right-color: var(--color-border); padding: var(--sp-3) var(--sp-4); }
.home .stat-item:last-child { border-right: none; }
.home .stat-item__num { font-family: var(--font-en); font-weight: 700; color: var(--color-primary); }
.home .stat-item__num--small { color: var(--color-primary-deep); }
.home .stat-item__label { color: var(--color-text-sub); }
@media (max-width: 768px) {
  .home .stat-item { border-bottom-color: var(--color-border); }
}

/* --- [03] RISKS（静かなエディトリアル） --- */
.home .risks__layout {
  display: grid;
  grid-template-columns: 0.85fr 1fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-9));
  align-items: start;
}
.home .risks__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.34;
  color: var(--color-primary-deep);
  margin: var(--sp-3) 0 var(--sp-4);
}
.home .risks__lead { color: var(--color-text-sub); line-height: 1.95; }
.home .risks__lead strong { color: var(--color-primary-deep); font-weight: 600; }
.home .risks__list { list-style: none; margin: 0; padding: 0; border-top: 1px solid var(--color-border); }
.home .risks__list li {
  display: flex;
  gap: var(--sp-4);
  padding: var(--sp-5) 0;
  border-bottom: 1px solid var(--color-border);
  align-items: baseline;
}
.home .risks__no {
  font-family: var(--font-en);
  font-size: var(--fs-sm);
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--color-accent);
  flex-shrink: 0;
  width: 2.2em;
}
.home .risks__list p { color: var(--color-text); line-height: 1.85; }
.home .risks__list strong {
  color: var(--color-primary-deep);
  font-weight: 600;
  box-shadow: inset 0 -0.5em 0 var(--color-cream);
}
@media (max-width: 900px) {
  .home .risks__layout { grid-template-columns: 1fr; gap: var(--sp-6); }
}

/* === [03.5] 自己対応との比較（compare） === */
.home .compare { background: var(--color-bg-alt); }
.home .compare__head { max-width: 760px; margin-bottom: var(--sp-7); }
.home .compare__head h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.7rem, 3.4vw, 2.6rem);
  line-height: 1.4;
  letter-spacing: 0.01em;
  color: var(--color-primary-deep);
  margin: var(--sp-3) 0 var(--sp-4);
}
.home .compare__lead { color: var(--color-text-sub); line-height: 1.95; }
.home .compare__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: stretch;
}
.home .compare-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: clamp(var(--sp-5), 3vw, var(--sp-7));
}
.home .compare-card--us {
  border: 2px solid var(--color-primary);
  box-shadow: var(--shadow-lg);
}
.home .compare-card__tag {
  display: inline-block;
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.06em;
  color: #fff;
  background: var(--color-primary);
  border-radius: 999px;
  padding: 5px 14px;
  margin-bottom: var(--sp-3);
}
.home .compare-card__tag sup { font-size: 0.8em; }
.home .compare-card h3 {
  font-size: var(--fs-md);
  font-weight: 600;
  color: var(--color-text-sub);
  margin-bottom: var(--sp-2);
}
.home .compare-card__num {
  font-family: var(--font-en);
  font-weight: 700;
  font-size: clamp(2rem, 4.4vw, 2.9rem);
  line-height: 1.2;
  color: var(--color-primary-deep);
  margin-bottom: var(--sp-4);
}
.home .compare-card__num small { font-size: 0.42em; font-weight: 600; margin-left: 2px; }
.home .compare-card--self .compare-card__num { color: var(--color-text-mute); }
.home .compare-card ul { list-style: none; margin: 0; padding: 0; display: grid; gap: var(--sp-2); }
.home .compare-card li {
  position: relative;
  padding-left: 1.6em;
  color: var(--color-text-sub);
  line-height: 1.8;
}
.home .compare-card--self li::before { content: "−"; position: absolute; left: 0.2em; color: var(--color-text-mute); }
.home .compare-card--us li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent-deep); font-weight: 700; }
.home .compare__note { margin-top: var(--sp-4); font-size: var(--fs-base); color: var(--color-text-sub); line-height: 1.85; max-width: 820px; }
.home .compare__cta { margin-top: var(--sp-6); display: flex; gap: var(--sp-3); flex-wrap: wrap; }
@media (max-width: 860px) {
  .home .compare__grid { grid-template-columns: 1fr; }
}


/* --- [04] SERVICE（写真主導・縦の物語） --- */
.home .service__grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-9));
  align-items: start;
  margin: 0;
}
.home .service__sticky { position: sticky; top: 104px; }
.home .service__sticky h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.2vw, 2.6rem);
  line-height: 1.3;
  color: var(--color-primary-deep);
  margin: var(--sp-2) 0 var(--sp-4);
}
.home .service__intro { color: var(--color-text-sub); line-height: 1.95; margin-bottom: var(--sp-6); }
.home .service__figure { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.home .service__figure img { width: 100%; height: auto; display: block; }
.home .service__list { list-style: none; margin: 0; padding: 0; }
.home .service__item {
  display: flex;
  gap: var(--sp-5);
  padding: var(--sp-6) 0;
  border-bottom: 1px solid rgba(24, 34, 104, 0.12);
}
.home .service__item:first-child { padding-top: 0; }
.home .service__item:last-child { border-bottom: none; }
.home .service__num {
  font-family: var(--font-en);
  font-size: var(--fs-lg);
  font-weight: 700;
  color: var(--color-accent);
  line-height: 1.4;
  flex-shrink: 0;
}
.home .service__item h3 { font-size: var(--fs-lg); color: var(--color-primary-deep); margin-bottom: var(--sp-2); line-height: 1.45; }
.home .service__item p { color: var(--color-text-sub); line-height: 1.9; }
.home .service__item strong { color: var(--color-primary-deep); font-weight: 600; }
@media (max-width: 900px) {
  .home .service__grid { grid-template-columns: 1fr; }
  .home .service__sticky { position: static; }
  .home .service__figure { display: none; }
}

/* --- [05] CINEMA ブレーカー --- */
.home .cinema {
  position: relative;
  min-height: 62vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: var(--sp-9) 0;
}
.home .cinema__bg { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.home .cinema__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(20, 33, 120, 0.88) 0%, rgba(20, 33, 120, 0.62) 55%, rgba(20, 33, 120, 0.32) 100%);
}
.home .cinema__inner { position: relative; z-index: 1; }
.home .cinema__quote {
  max-width: 740px;
  color: #fff;
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.5rem, 3vw, 2.4rem);
  line-height: 1.7;
}
.home .cinema__quote p { margin-bottom: var(--sp-2); }
.home .cinema__quote em { font-style: normal; color: var(--color-accent-light); }
.home .cinema__sign { font-family: var(--font-jp); font-size: var(--fs-md); color: rgba(255, 255, 255, 0.78); margin-top: var(--sp-5); }

/* --- [06] TEAM（実写真＋上品なモノグラム） --- */
.home .team__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: var(--sp-5); margin-top: 0; }
.home .team-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  text-align: left;
  padding: 0;
  transition: transform var(--duration-base) var(--ease-out), box-shadow var(--duration-base) var(--ease-out);
}
.home .team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.home .team-card__photo { aspect-ratio: 4 / 5; overflow: hidden; }
.home .team-card__photo img { width: 100%; height: 100%; object-fit: cover; object-position: center 24%; filter: saturate(0.93) contrast(1.03); }
.home .team-card__photo--mono {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  background: linear-gradient(155deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}
.home .team-card__photo--mono::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 32% 24%, rgba(255, 255, 255, 0.18), transparent 62%);
}
.home .team-card__photo--mono span {
  font-family: var(--font-serif);
  font-size: var(--fs-3xl);
  font-weight: 500;
  color: rgba(255, 255, 255, 0.96);
  position: relative;
  z-index: 1;
}
.home .team-card__name { font-size: var(--fs-md); color: var(--color-primary-deep); margin: var(--sp-4) var(--sp-5) var(--sp-1); }
.home .team-card__role { font-size: var(--fs-sm); color: var(--color-text-sub); line-height: 1.5; margin: 0 var(--sp-5) var(--sp-2); }
.home .team-card__lang { font-family: var(--font-en); font-size: var(--fs-xs); letter-spacing: 0.06em; color: var(--color-accent-dark); margin: 0 var(--sp-5) var(--sp-5); }
.home .team__more { margin-top: var(--sp-6); }
@media (max-width: 900px) { .home .team__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 520px) { .home .team__grid { grid-template-columns: 1fr; } }

/* --- [07] VOICES（質感を上げる） --- */
.home .voices__grid { margin-top: var(--sp-6); }
.home .voice-card { border-radius: var(--radius-lg); }
.home .voice-card__quote { font-family: var(--font-serif); font-weight: 500; }
.home .voices__more { margin-top: var(--sp-7); }

/* --- [08] FLOW（写真＋タイムライン） --- */
.home .flow__layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(var(--sp-6), 5vw, var(--sp-9));
  align-items: start;
}
.home .flow__aside { position: sticky; top: 104px; }
.home .flow__figure { margin-top: var(--sp-6); border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.home .flow__figure img { width: 100%; height: auto; display: block; }
.home .flow__steps { margin: 0; max-width: none; }
.home .flow-step__num { background: var(--color-primary-deep); border-color: var(--color-bg); }
.home .flow-step > div { flex-grow: 1; padding-top: var(--sp-1); }
.home .flow-step h3 { font-size: var(--fs-md); color: var(--color-primary-deep); margin-bottom: var(--sp-1); }
.home .flow-step p { font-size: var(--fs-sm); color: var(--color-text-sub); line-height: 1.8; margin: 0; }
@media (max-width: 900px) {
  .home .flow__layout { grid-template-columns: 1fr; }
  .home .flow__aside { position: static; }
  .home .flow__figure { display: none; }
}

/* --- [08b] JOURNEY（準備→再会の旅程ストリップ） --- */
.home .journey {
  margin-top: clamp(var(--sp-7), 6vw, var(--sp-9));
  padding-top: clamp(var(--sp-6), 5vw, var(--sp-8));
  border-top: 1px solid var(--color-border);
}
.home .journey__lead {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.6;
  color: var(--color-primary-deep);
  max-width: 30em;
  margin: 0 auto var(--sp-6);
  text-align: center;
}
.home .journey__strip {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: clamp(var(--sp-2), 1.4vw, var(--sp-4));
}
.home .journey__step { display: flex; flex-direction: column; gap: var(--sp-3); }
.home .journey__step figure {
  margin: 0;
  aspect-ratio: 3 / 4;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.home .journey__step img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}
.home .journey__step:hover img { transform: scale(1.05); }
.home .journey__cap {
  font-size: var(--fs-sm);
  font-weight: var(--fw-semibold);
  color: var(--color-primary-deep);
  line-height: 1.45;
  display: flex;
  flex-direction: column;
  gap: var(--sp-1);
}
.home .journey__no {
  font-family: var(--font-en);
  font-size: var(--fs-xs);
  font-weight: 700;
  letter-spacing: 0.14em;
  color: var(--color-accent);
}
@media (max-width: 900px) {
  .home .journey__strip {
    grid-auto-flow: column;
    grid-template-columns: none;
    grid-auto-columns: 64%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--sp-3);
  }
  .home .journey__step { scroll-snap-align: start; }
}
@media (max-width: 520px) {
  .home .journey__strip { grid-auto-columns: 78%; }
}

/* --- [09] DESTINATIONS（ダーク・グリッド） --- */
.home .dest__head { display: flex; justify-content: space-between; align-items: flex-end; gap: var(--sp-6); flex-wrap: wrap; margin-bottom: var(--sp-7); }
.home .dest__head h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.8rem, 3.2vw, 2.6rem); color: #fff; }
.home .dest__big { font-family: var(--font-en); font-weight: 700; line-height: 1; color: var(--color-accent-light); font-size: clamp(3rem, 7vw, 5rem); }
.home .dest__big small { font-size: 0.26em; color: rgba(255, 255, 255, 0.7); margin-left: 0.35em; font-weight: 500; letter-spacing: 0.12em; }

/* 都市到着写真グリッド */
.home .dest-grid {
  list-style: none;
  margin: 0 0 var(--sp-6);
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(var(--sp-2), 1.4vw, var(--sp-4));
}
.home .dest-card {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border-radius: var(--radius-md);
}
.home .dest-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform var(--duration-slow) var(--ease-out);
}
.home .dest-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(20, 33, 120, 0.70) 0%, rgba(20, 33, 120, 0.12) 42%, rgba(20, 33, 120, 0) 64%);
  transition: opacity var(--duration-base) var(--ease-out);
}
.home .dest-card:hover img { transform: scale(1.06); }
.home .dest-card__label {
  position: absolute;
  left: var(--sp-4);
  bottom: var(--sp-4);
  right: var(--sp-4);
  z-index: 1;
  font-size: var(--fs-md);
  font-weight: var(--fw-semibold);
  color: #fff;
  line-height: 1.35;
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-shadow: 0 1px 14px rgba(20, 33, 120, 0.5);
}
.home .dest-card__city {
  font-family: var(--font-en);
  font-size: var(--fs-xs);
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent-light);
}

/* 残りの国（スリムなチップ列） */
.home .dest__list { display: flex; flex-wrap: wrap; gap: var(--sp-2); margin: 0; }
.home .dest__list li { background: rgba(255, 255, 255, 0.06); border: 1px solid rgba(255, 255, 255, 0.14); border-radius: var(--radius-pill, 999px); padding: var(--sp-2) var(--sp-4); font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.85); transition: background var(--duration-base) var(--ease-out), color var(--duration-base) var(--ease-out), border-color var(--duration-base) var(--ease-out); }
.home .dest__list li:hover { background: var(--color-accent); border-color: var(--color-accent); color: #fff; }
.home .dest__note { margin-top: var(--sp-5); font-size: var(--fs-sm); color: rgba(255, 255, 255, 0.6); }
@media (max-width: 900px) { .home .dest-grid { grid-template-columns: repeat(3, 1fr); } }
/* スマホは縦積みの「青い壁」を作らず、横スワイプのカルーセルに圧縮 */
@media (max-width: 768px) {
  .home .dest-grid {
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: 68%;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-bottom: var(--sp-3);
    scrollbar-width: none;
  }
  .home .dest-grid::-webkit-scrollbar { display: none; }
  .home .dest-card { scroll-snap-align: start; }
}
@media (max-width: 520px) { .home .dest-grid { grid-auto-columns: 80%; } }

/* --- [11] CTA FINAL（新クラス対応） --- */
.cta-final h2 { font-family: var(--font-serif); font-weight: 500; }
.cta-final__lead { color: rgba(255, 255, 255, 0.85); margin-bottom: var(--sp-7); line-height: 1.9; }
.cta-final__lead strong { color: var(--color-accent-light); font-weight: 600; }

/* === 監査ハンドオフ追補（P0-2 料金レンジ / P1-3 CTA使い分け） === */
.home .compare__price { margin-top: var(--sp-5); font-size: var(--fs-md); line-height: 1.7; color: var(--color-text); }
.home .compare__price strong { color: var(--color-primary-deep); font-weight: 700; }
.cta-final__pick { color: rgba(255,255,255,0.92); font-size: var(--fs-sm); line-height: 1.7; margin-bottom: var(--sp-4); }

/* === Travel Papers ヒーロー額装 === */
.home .hero__media img {
  border-radius: 0;
  box-shadow: none;
  border: 1px solid rgba(27, 42, 143, 0.18);
  outline: 1px solid rgba(0, 0, 0, 0.06);
  outline-offset: -1px;
}
.home .hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.9em;
}
.home .hero__eyebrow::before {
  content: "";
  width: 2.2em;
  height: 1px;
  background: var(--color-accent-dark);
}

/* ヒーロー写真のスケール分を確実にクリップ */
.home .hero__media { overflow: hidden; }
@media (max-width: 480px) {
  .home .hero__cta .btn { width: 100%; justify-content: center; }
}

/* footer-link-color-fix r42 */
.site-footer__col a,.site-footer__col a:link,.site-footer__col a:visited,.site-footer__col a:active{color:rgba(255,255,255,.7)!important;}
.site-footer__col a:hover{color:var(--color-accent-light)!important;}


/* audit-fix r44: 正確性・アフォーダンス修正（2026-07 デザイン監査） */
.home .risks__list strong { box-shadow: inset 0 -0.45em 0 rgba(242, 169, 60, 0.28); }
.home .service__grid > .service__more { grid-column: 2; }
.site-nav a { padding: 8px 4px; margin: -8px -4px; }
.site-footer__col li a { display: inline-block; padding: 4px 0; margin: -4px 0; }
#fixed_footer_content, [id^="bfb_content"] { display: none !important; }


/* cvr-fv r47: ファーストビューCVR改善（2026-07） */
.home .hero__checkcard { position: absolute; left: clamp(14px, 2.5vw, 28px); bottom: clamp(14px, 2.5vw, 28px); background: rgba(255, 255, 255, 0.96); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); padding: 14px 18px; max-width: 260px; }
.home .hero__checkcard-title { font-size: var(--fs-xs); font-weight: 700; color: var(--color-primary-deep); letter-spacing: 0.05em; margin: 0 0 8px; }
.home .hero__checkcard ul { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: 1fr 1fr; gap: 3px 14px; }
.home .hero__checkcard li { font-size: var(--fs-xs); color: var(--color-text-sub); position: relative; padding-left: 0.9em; line-height: 1.7; white-space: nowrap; }
.home .hero__checkcard li::before { content: ""; position: absolute; left: 0; top: 0.6em; width: 5px; height: 5px; border-radius: 50%; background: var(--color-accent); }
@media (max-width: 560px) { .home .hero__checkcard { max-width: 215px; padding: 10px 13px; } }
.home .fv-points__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--sp-6); }
.home .fv-point h3 { font-size: var(--fs-base); font-weight: 700; color: var(--color-primary-deep); margin: 0 0 6px; }
.home .fv-point p { font-size: var(--fs-sm); color: var(--color-text-sub); line-height: 1.8; margin: 0; }
@media (max-width: 820px) { .home .fv-points__grid { grid-template-columns: 1fr; gap: var(--sp-4); } }
.home .consult { background: var(--color-bg-alt); }
.home .consult__layout { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: clamp(var(--sp-6), 5vw, var(--sp-8)); align-items: center; }
.home .consult__head h2 { font-family: var(--font-serif); font-weight: 500; font-size: clamp(1.5rem, 2.6vw, 2.1rem); line-height: 1.4; color: var(--color-primary-deep); margin: 0 0 var(--sp-4); }
.home .consult__head p { color: var(--color-text-sub); line-height: 1.95; margin: 0 0 var(--sp-5); max-width: 36em; }
.home .consult__list { list-style: none; margin: 0; padding: var(--sp-5) var(--sp-6); background: #fff; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); display: grid; gap: 10px; }
.home .consult__list li { position: relative; padding-left: 1.6em; line-height: 1.8; color: var(--color-text); font-weight: 500; }
.home .consult__list li::before { content: "✓"; position: absolute; left: 0; color: var(--color-accent-deep); font-weight: 700; }
@media (max-width: 820px) { .home .consult__layout { grid-template-columns: 1fr; } }
