/* ============================================================
   Gifted WordPress 交通案内ページ（gw-traffic）
   デザイン：黒 × 金 × 白（高級感）
============================================================ */

/* ------------------------------------------
   ベースフォント設定（やさしい雰囲気）
------------------------------------------- */
.gw-traffic {
  font-family: "Noto Sans JP", "Hiragino Sans", "Segoe UI", sans-serif;
  font-weight: 350;
  letter-spacing: 0.03em;
}

/* タイトル（力強いが優しい） */
.gw-traffic-title-ja,
.gw-traffic-subtitle,
.gw-traffic-spot-label {
  font-weight: 500;
}

/* 本文（やさしいウェイト） */
.gw-traffic-list,
.gw-traffic-note,
.gw-traffic-warning-text,
.gw-traffic-spot-note {
  font-weight: 350;
  letter-spacing: 0.02em;
}

/* ------------------------------------------
   ページ全体レイアウト
------------------------------------------- */
.gw-traffic {
  width: 100%;
  margin: 0 auto;
  padding: 60px 0 80px;
  background: #05060a; /* 黒背景 */
  color: #f5f5f5;
}

.gw-traffic * {
  box-sizing: border-box;
}

/* コンテナ */
.gw-traffic > * {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ------------------------------------------
   ヒーローエリア
------------------------------------------- */
.gw-traffic-hero {
  text-align: center;
  margin-bottom: 40px;
}

.gw-traffic-label {
  display: inline-block;
  padding: 4px 14px;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid #cfab6e;
  border-radius: 999px;
  margin-bottom: 14px;
}

.gw-traffic-hero-title {
  font-size: 1.9rem;
  line-height: 1.5;
  font-weight: 700;
  margin-bottom: 14px;
}

.gw-traffic-hero-lead {
  font-size: 0.98rem;
  line-height: 1.9;
  color: #e0e0e0;
  margin-bottom: 10px;
}

.gw-traffic-hero-note {
  font-size: 0.85rem;
  color: #c7c7c7;
}

/* ------------------------------------------
   セクション基本
------------------------------------------- */
.gw-traffic-section {
  margin-top: 56px;
  margin-bottom: 16px;
}

/* タイトル */
.gw-traffic-title {
  margin-bottom: 28px;
}

.gw-traffic-title-en {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #cfab6e;
  margin-bottom: 6px;
}

.gw-traffic-title-ja {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 600;
  padding-bottom: 8px;
}

.gw-traffic-title-ja::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 72px;
  height: 2px;
  background: linear-gradient(90deg, #cfab6e, rgba(207,171,110,0));
}

/* ------------------------------------------
   グリッド レイアウト
------------------------------------------- */
.gw-traffic-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

/* ボックス */
.gw-traffic-box {
  background: radial-gradient(circle at top left, rgba(207,171,110,0.18), rgba(10,10,14,0.96));
  border-radius: 16px;
  padding: 20px 22px 18px;
  border: 1px solid rgba(207,171,110,0.35);
  box-shadow: 0 12px 32px rgba(0,0,0,0.35);
}

.gw-traffic-subtitle {
  font-size: 1.05rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.gw-traffic-subtitle::before {
  content: '';
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: #cfab6e;
}

/* リスト */
.gw-traffic-list {
  margin: 0;
  padding-left: 18px;
  list-style: disc;
  font-size: 0.95rem;
  line-height: 1.8;
}

.gw-traffic-list li {
  margin-bottom: 6px;
}

.gw-traffic-note {
  margin-top: 10px;
  font-size: 0.85rem;
  color: #cfcfcf;
}

.gw-traffic-note-center {
  text-align: center;
}

/* ------------------------------------------
   ページ内ナビ
------------------------------------------- */
.gw-traffic-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-top: 34px;
}

.gw-traffic-nav-item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 16px;
  font-size: 0.85rem;
  text-decoration: none;
  border-radius: 999px;
  border: 1px solid rgba(207,171,110,0.8);
  color: #f5f5f5;
  background: rgba(15,15,20,0.8);
  backdrop-filter: blur(8px);
  transition: background 0.3s ease, color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
}

.gw-traffic-nav-item:hover {
  background: #cfab6e;
  color: #05060a;
  transform: translateY(-1px);
  box-shadow: 0 6px 18px rgba(0,0,0,0.45);
}

/* ------------------------------------------
   マップ
------------------------------------------- */
.gw-traffic-map-wrap {
  margin-top: 26px;
}

.gw-traffic-map {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid rgba(207,171,110,0.5);
  box-shadow: 0 12px 32px rgba(0,0,0,0.4);
}

.gw-traffic-map iframe {
  display: block;
}

.gw-traffic-map-caption {
  font-size: 0.8rem;
  margin-top: 8px;
  color: #bbbbbb;
}

/* ------------------------------------------
   冬の注意枠
------------------------------------------- */
.gw-traffic-warning {
  margin-top: 26px;
  padding: 18px 18px 16px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(207,171,110,0.1), rgba(128,0,0,0.7));
  border: 1px solid rgba(207,171,110,0.9);
}

.gw-traffic-warning-title {
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 6px;
}

.gw-traffic-warning-text {
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ------------------------------------------
   主要スポット
------------------------------------------- */
.gw-traffic-spot-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.gw-traffic-spot-card {
  padding: 16px 14px 14px;
  border-radius: 14px;
  background: radial-gradient(circle at top, rgba(207,171,110,0.18), rgba(10,10,14,0.95));
  border: 1px solid rgba(207,171,110,0.5);
  box-shadow: 0 10px 28px rgba(0,0,0,0.35);
}

.gw-traffic-spot-time {
  font-size: 0.95rem;
  font-weight: 600;
  color: #ffe7b0;
  margin-bottom: 6px;
}

/* ------------------------------------------
   レスポンシブ
------------------------------------------- */
@media (max-width: 960px) {
  .gw-traffic {
    padding-top: 40px;
    padding-bottom: 60px;
  }

  .gw-traffic-hero-title {
    font-size: 1.6rem;
  }

  .gw-traffic-grid {
    grid-template-columns: 1fr;
  }

  .gw-traffic-spot-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 640px) {
  .gw-traffic-hero-title {
    font-size: 1.4rem;
  }

  .gw-traffic > * {
    padding-left: 16px;
    padding-right: 16px;
  }

  .gw-traffic-nav-item {
    width: 100%;
    justify-content: center;
  }

  .gw-traffic-spot-grid {
    grid-template-columns: 1fr;
  }
}
