/* ===== リセットCSS ===== */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

/* ===== ルート変数 ===== */
:root {
  /* メインカラー（青系） */
  --primary-blue: #266cd4;
  --light-blue: #e6f3ff;
  --dark-blue: #1a4d9c;

  /* アクセントカラー（オレンジ） */
  --accent-orange: #ff6b35;
  --light-orange: #fff2ef;

  /* グレースケール */
  --text-dark: #333333;
  --text-medium: #666666;
  --text-light: #999999;
  --border-color: #e0e0e0;
  --background-light: #f8f9fa;
  --white: #ffffff;

  /* フォント */
  --font-family: "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* シャドウ */
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
  --shadow-md: 0 4px 12px rgba(0, 0, 0, 0.1);
  --shadow-lg: 0 8px 24px rgba(0, 0, 0, 0.15);
}

/* ===== 余白ユーティリティクラス（詳細度を上げた） ===== */
p.bottom10 {
  margin-bottom: 1em !important;
}

p.bottom15 {
  margin-bottom: 1.5em !important;
}

p.bottom20 {
  margin-bottom: 2em !important;
}

p.bottom30 {
  margin-bottom: 3em !important;
}

p.bottom50 {
  margin-bottom: 5em !important;
}

p.bottom60 {
  margin-bottom: 6em !important;
}

/* ===== 基本スタイル ===== */
html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-family);
  line-height: 1.7;
  color: var(--text-dark);
  background-color: var(--white);
}

/* ===== ユーティリティクラス ===== */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== パンくずリスト ===== */
.breadcrumb {
  background: var(--white);
  border-bottom: 1px solid var(--border-color);
  padding: 1rem 0;
}

.breadcrumb-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  gap: 0; /* ギャップをリセット */
}

.breadcrumb-item {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item a {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  text-decoration: none;
  color: var(--text-medium);
  padding: 0.3rem 0;
  transition: color 0.2s ease;
}

.breadcrumb-item a:hover {
  color: var(--primary-blue);
}

.breadcrumb-item a:hover .breadcrumb-icon {
  fill: var(--primary-blue);
}

.breadcrumb-item.active {
  display: inline-flex;
  align-items: center;
}

.breadcrumb-item.active span {
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.3rem 0;
}

.breadcrumb-icon {
  width: 16px;
  height: 16px;
  fill: currentColor;
  flex-shrink: 0;
}

.breadcrumb-separator {
  display: inline-flex;
  align-items: center;
  margin: 0 0.5rem;
  color: var(--text-light);
  flex-shrink: 0;
}

.breadcrumb-separator svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

/* パンくずリストレスポンシブ対応 */
@media (max-width: 768px) {
  .breadcrumb {
    padding: 0.8rem 0;
  }

  .breadcrumb-list {
    font-size: 0.85rem;
  }

  .breadcrumb-icon {
    width: 14px;
    height: 14px;
  }

  .breadcrumb-separator {
    margin: 0 0.3rem;
  }

  .breadcrumb-separator svg {
    width: 14px;
    height: 14px;
  }

  /* パンくずリストモバイルで長い場合は改行 */
  .breadcrumb-item a span,
  .breadcrumb-item.active span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 150px;
  }
}

@media (max-width: 480px) {
  .breadcrumb-separator {
    margin: 0 0.2rem;
  }

  .breadcrumb-item a span,
  .breadcrumb-item.active span {
    max-width: 100px;
  }
}

/* ===== 見出しデザイン ===== */

/* h2スタイル */
h2 {
  font-size: 1.7rem;
  font-weight: 700;
  position: relative;
  color: #ffffff;
  margin: 1em 0.5em 1em 0;
  margin: 2em 0 1.5em 0;
  padding: 0.3em 0.5em;
  border: 2px solid #0068b7;
  border-radius: 10px;
  background: #0068b7;
}
h2:before {
  position: absolute;
  bottom: -14px;
  left: 1em;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #0068b7 transparent transparent transparent;
}
h2:after {
  position: absolute;
  bottom: -10px;
  left: 1em;
  width: 0;
  height: 0;
  content: "";
  border-width: 14px 12px 0 12px;
  border-style: solid;
  border-color: #0068b7 transparent transparent transparent;
}

/* h3スタイル */
h3 {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--primary-blue);
  margin: 2rem 0 1rem 0;
  position: relative;
  padding-left: 18px;
}

h3::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #0088ff, #00ccff);
  border-radius: 2px;
}

h4 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--primary-blue);
  padding-left: 0;
  border-bottom: 3px solid #ffdeca;
}

h4::before {
  display: none;
}

/*** 旧 h4スタイルオレンジドット
h4 {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--text-dark);
  margin: 1.5rem 0 0.8rem 0;
  position: relative;
  padding-left: 18px;
}

h4::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background: var(--accent-orange);
  border-radius: 50%;
}
 旧 h4スタイル***/

h5 .grey-font {
  color: #333 !important;
}

/* ===== ヘッダー ===== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  border-bottom: 2px solid var(--primary-blue);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

/* ===== ロゴ設定 ===== */
.logo {
  flex-shrink: 0;
}

.logo h1 {
  margin: 0;
  padding: 0;
  line-height: 1;
}

.logo a {
  display: block;
  text-decoration: none;
}

.logo img {
  /* 基本サイズ（デスクトップ） */
  width: 200px;
  height: auto;

  /* 高解像度ディスプレイ対応 */
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;

  /* スムーズな表示 */
  display: block;

  /* レスポンシブ対応 */
  max-width: 100%;

  /* アンチエイリアス */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/*  ロゴ設定タブレット */
@media (max-width: 1024px) {
  .logo img {
    width: 170px;
  }
}

/*  ロゴ設定モバイル */
@media (max-width: 768px) {
  .logo img {
    width: 170px;
  }
}

/*  ロゴ設定小さいモバイル */
@media (max-width: 480px) {
  .logo img {
    width: 160px;
  }
}

/* Retinaディスプレイ対応 */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .logo img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/* デスクトップナビゲーション */
.nav-desktop ul {
  display: flex;
  list-style: none;
  gap: 2rem;
  margin: 0;
}

.nav-desktop a {
  text-decoration: none;
  color: var(--text-dark);
  font-weight: 500;
  padding: 0.5rem 0;
  position: relative;
}

.nav-desktop a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--accent-orange);
  transition: width 0.3s ease;
}

.nav-desktop a:hover::after {
  width: 100%;
}

/* ハンバーガーメニュー */
.hamburger {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 5px;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: var(--primary-blue);
  margin: 3px 0;
  border-radius: 2px;
  transition: all 0.3s ease;
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* ハンバーガーメニューモバイルメニュー */
.nav-mobile {
  position: fixed;
  top: 70px;
  left: 0;
  width: 100%;
  background: var(--white);
  border-top: 1px solid var(--border-color);
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 999;
}

.nav-mobile.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.nav-mobile ul {
  list-style: none;
  padding: 1rem 0;
}

.nav-mobile li {
  text-align: center;
  margin: 0;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--text-dark);
  font-size: 1.1rem;
  font-weight: 500;
  padding: 1rem;
  display: block;
}

/* ===== ヒーローセクション ===== */
.hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
  /* グラデーションオーバーレイ + 背景画像 */
  background-image: linear-gradient(135deg, rgba(38, 108, 212, 0.4) 0%, rgba(26, 77, 156, 0.4) 100%), url("../usj-img/2025/top-globe2.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="40" fill="%23fff" opacity="0.05"/></svg>');
  background-size: 100px;
  opacity: 0.3;
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  padding: 3rem 1rem;
}

.hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.hero-accent {
  display: block;
  color: var(--accent-orange);
  margin-top: 0.5rem;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 400;
}

/* ===== 目次セクション ===== */
.table-of-contents {
  background: var(--background-light);
  padding: 2rem 0;
  border-bottom: 1px solid var(--border-color);
}

.toc-header {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  padding: 1rem;
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 600;
}

.toc-arrow {
  width: 20px;
  height: 20px;
  fill: var(--primary-blue);
  transition: transform 0.3s ease;
}

.toc-header.active .toc-arrow {
  transform: rotate(180deg);
}

.toc-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.toc-content.active {
  max-height: 1500px;
  margin-top: 1.5rem;
}

.toc-list {
  list-style: none;
  padding: 0;
  background: var(--white);
  border-radius: 8px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.toc-list li {
  margin: 0.8rem 0;
}

.toc-list a {
  text-decoration: none;
  color: var(--text-medium);
  display: block;
  padding: 0.5rem 1rem;
  border-left: 3px solid transparent;
  border-radius: 0 5px 5px 0;
  transition: all 0.2s ease;
}

.toc-list a:hover {
  color: var(--primary-blue);
  background: var(--light-blue);
  border-left-color: var(--primary-blue);
}

.toc-list .toc-h3 {
  padding-left: 2rem;
  font-size: 0.95rem;
}

/* ===== コンテンツエリア ===== */
.content-wrapper {
  padding: 3rem 0;
}

.content-section {
  margin-bottom: 4rem;
}

.content-section p {
  margin: 1rem 0;
  line-height: 1.8;
}

.content-section ul {
  margin: 1rem 0 1rem 1.5rem;
  line-height: 1.8;
}

/* ===== マージン 段落の行間設定 ===== */
p {
  /* 行間（行の高さ） */
  line-height: 1.8;

  /* 段落間のスペース */
  margin-bottom: 1.5rem;
  margin-top: 0;

  /* 最後の段落の下マージンを削除 */
  &:last-child {
    margin-bottom: 0;
  }
}

/* コンテンツエリア内の段落 */
.content-section p {
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.bottom10 {
  margin-bottom: 1em;
}

.bottom15 {
  margin-bottom: 1.5em;
}

.bottom20 {
  margin-bottom: 2em;
}

.bottom30 {
  margin-bottom: 3em;
}

.bottom50 {
  margin-bottom: 5em;
}

.bottom60 {
  margin-bottom: 6em;
}

/* リード文（導入文）用 */
p.lead {
  font-size: 1.1rem;
  line-height: 1.9;
  margin-bottom: 2rem;
  color: var(--text-medium);
}

/* 小さい文字の段落 */
p.small {
  font-size: 0.9rem;
  line-height: 1.7;
  margin-bottom: 1rem;
}

/* 注釈用の段落 */
p.note {
  font-size: 0.85rem;
  line-height: 1.6;
  color: var(--text-light);
  margin-bottom: 1rem;
  padding-left: 1rem;
  border-left: 3px solid var(--border-color);
}

/* --===== 動画貼り付け =====-- */

.video-container {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  text-align: center;
}

.video-container iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 90%;
  height: 90%;
}

.main .youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  text-align: center;
}
.main .youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 90%;
  height: 90%;
}

/* ----------===== カードスタイル =====------ */

/* ハイライトボックス */
.highlight-box {
  background: linear-gradient(135deg, var(--light-blue) 0%, rgba(38, 108, 212, 0.05) 100%);
  border-left: 4px solid var(--primary-blue);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

/* 警告ボックス */
.warning-box {
  background: var(--light-orange);
  border-left: 4px solid var(--accent-orange);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1.5rem 0;
}

.warning-box h3 {
  margin-top: 0;
  color: var(--accent-orange);
}

/* インフォカード */
.info-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-sm);
}

/* おすすめボックス */
.recommend-box {
  background: var(--white);
  border: 2px solid var(--primary-blue);
  border-radius: 10px;
  padding: 1.5rem;
  margin: 1.5rem 0;
  box-shadow: var(--shadow-md);
}

.recommend-box h4 {
  color: var(--primary-blue);
  margin-top: 0;
}

/* リストスタイル */
.ticket-category-list,
.store-list,
.benefits-list {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  margin: 1rem 0;
}

/* 年齢区分テーブル */
.age-table {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  margin: 1.5rem 0;
}

.age-row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.5rem;
  border-bottom: 1px solid var(--border-color);
}

.age-row:last-child {
  border-bottom: none;
}

.age-label {
  font-weight: 600;
  color: var(--text-dark);
}

.age-value {
  color: var(--text-medium);
}

/* ===== チケットカード ===== */
.ticket-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 2rem;
  margin: 2rem 0;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.ticket-card.featured {
  border: 2px solid var(--primary-blue);
  box-shadow: var(--shadow-md);
}

.ticket-card .badge {
  position: absolute;
  top: -12px;
  right: 20px;
  background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
  color: var(--white);
  padding: 0.4rem 1rem;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  box-shadow: var(--shadow-sm);
}

.ticket-card h4 {
  margin-top: 0;
  font-size: 1.4rem;
  color: var(--primary-blue);
  padding-left: 0;
  border-bottom: 3px solid #ffdeca;
}

.ticket-card h4::before {
  display: none;
}

.ticket-card ul li {
  margin: 0.5rem 0 0.5rem 1.5rem;
}

.ticket-desc {
  color: var(--text-medium);
  margin: 1rem 0;
  line-height: 1.7;
}

.price-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--border-color);
}

.price-row:last-child {
  border-bottom: none;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--accent-orange);
}

.price-info {
  background: var(--light-blue);
  padding: 1rem;
  border-radius: 6px;
  margin-top: 1rem;
  font-weight: 500;
}

/* 特典リスト */
.special-benefits {
  background: var(--light-blue);
  padding: 1.5rem;
  border-radius: 8px;
  margin: 1rem 0;
}

.special-benefits strong {
  color: var(--primary-blue);
  display: block;
  margin-bottom: 0.8rem;
}

.special-benefits ul {
  margin-left: 1.5rem;
}

/* ===== リンクボタンデザイン ===== */
.li_btn {
  /* 基本スタイル */
  display: inline-block;
  padding: 12px 30px;
  margin: 0.5rem 0;

  /* 背景とボーダー */
  background: linear-gradient(135deg, var(--primary-blue), #4169e1);
  border: none;
  border-radius: 10px;

  /* テキスト */
  color: var(--white);
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  text-align: center;

  /* シャドウ */
  box-shadow: 0 4px 12px rgba(38, 108, 212, 0.3);

  /* トランジション */
  transition: all 0.3s ease;

  /* カーソル */
  cursor: pointer;

  /* テキスト選択不可 */
  user-select: none;
  -webkit-user-select: none;
}

/* 幅いっぱいボタン */
.li_btn.full-width {
  display: block;
  width: 100%;
}

/* オレンジボタン（アクセントカラー） */
.li_btn.orange {
  background: linear-gradient(135deg, var(--accent-orange), #ff8c42);
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.li_btn.orange:hover {
  background: linear-gradient(135deg, #ff8c42, var(--accent-orange));
  box-shadow: 0 6px 20px rgba(255, 107, 53, 0.4);
}

/* 白抜きボタン */
.li_btn.outline {
  background: transparent;
  color: var(--primary-blue);
  border: 2px solid var(--primary-blue);
  box-shadow: none;
}

.li_btn.outline:hover {
  background: var(--primary-blue);
  color: var(--white);
  box-shadow: 0 4px 12px rgba(38, 108, 212, 0.3);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .li_btn {
    padding: 10px 24px;
    font-size: 0.95rem;
  }

  .li_btn.large {
    padding: 14px 32px;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .li_btn {
    padding: 10px 20px;
    font-size: 0.9rem;
  }
}

/* ボタンをモバイルで縦積み */
@media (max-width: 768px) {
  .button-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
  }

  .button-group .li_btn {
    width: 100%;
    text-align: center;
  }
}

/* ===== フッター ===== */
.footer {
  background: var(--text-dark);
  color: var(--white);
  padding: 3rem 0 1.5rem;
  margin-top: 4rem;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer-section h3 {
  color: var(--white);
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 1.2rem;
}

.footer-section h3::before {
  display: none;
}

.footer-section p {
  color: #cccccc;
  line-height: 1.6;
  margin: 0;
}

.footer-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-section ul li {
  margin: 0.5rem 0;
}

.footer-section a {
  color: #cccccc;
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-section a:hover {
  color: var(--accent-orange);
}

.footer-top {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555555;
  color: #999999;
  font-size: 0.9rem;
}

.footer-top h3 {
  text-align: center;
  color: var(--white);
  margin: 0 0 1rem 0;
  padding: 0;
  font-size: 1.2rem;
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #555555;
  color: #999999;
  font-size: 0.9rem;
}

.disclaimer {
  margin-top: 0.5rem;
  font-size: 0.85rem;
}

/* ===== ページトップボタン ===== */
.page-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, var(--primary-blue), var(--dark-blue));
  color: var(--white);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}

.page-top.visible {
  opacity: 1;
  visibility: visible;
}

.page-top:hover {
  transform: translateY(-3px);
}

.page-top svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/*****====独自スタイル====******/

/* ==フォント テキスト装飾 == */
.font-bold {
  font-weight: bold;
}

.font-11 {
  font-size: 1.1rem;
}

.font-12 {
  font-size: 1.2rem;
}

.font-13 {
  font-size: 1.3rem;
}

.font-14 {
  font-size: 1.4rem;
}

.font-15 {
  font-size: 1.5rem;
}

.font-red {
  color: #b20019;
}

.font-yello {
  color: gold;
}

.font-green {
  color: forestgreen;
}

.pr-top {
  font-size: 0.8em;
  color: #666666;
}

/***画像設定******/
.img {
  text-align: center;
  margin: 30px auto;
}

/***白抜きBOX設定******/
.border-box-white {
  width: 100%;
  border: solid 1px #ffffff;
  border-radius: 3px;
  padding: 15px;
  margin: 0 0.1em 1em 0.1em;
}

.border-box-red {
  width: 100%;
  border: solid 1px #ff3c02;
  border-radius: 3px;
  padding: 15px;
  margin: 0 0.1em 1em 0.1em;
}

.border-box-orange {
  width: 100%;
  border: solid 1px #ee7800;
  border-radius: 3px;
  padding: 15px;
  margin: 0 0.1em 1em 0.1em;
}

.border-box-blue {
  width: 100%;
  border: solid 1px #00ccff;
  border-radius: 3px;
  padding: 15px;
  margin: 0 0.1em 1em 0.1em;
}

.border-box-yellow {
  width: 100%;
  border: solid 1.5px #ffd700;
  border-radius: 3px;
  padding: 15px;
}

.border-box-green {
  width: 100%;
  border: solid 1px #00ff00;
  border-radius: 3px;
  padding: 15px;
}

/***** hr 区切り******/

hr {
  margin: 15px 10px 15px 10px;
}

/*****蛍光ペン******/
.marker-y {
  background: linear-gradient(transparent 60%, #ffffc6 0%);
  padding: 0 0.1rem;
  font-weight: bold;
}

.marker-p {
  background: linear-gradient(transparent 60%, #ffeaff 0%);
  padding: 0 0.1rem;
  font-weight: bold;
  border-radius: 3px;
}

.marker-r {
  background: linear-gradient(transparent 60%, #ffd6d6 0%);
  padding: 0 0.1rem;
  font-weight: bold;
  border-radius: 3px;
}

.marker-g {
  background: linear-gradient(transparent 60%, #d6ffd6 0%);
  padding: 0 0.1rem;
  font-weight: bold;
  border-radius: 6px;
}

.marker-b {
  background: linear-gradient(transparent 60%, #d6ffff 0%);
  padding: 0 0.1rem;
  font-weight: bold;
  border-radius: 6px;
}

.marker-o {
  background: linear-gradient(transparent 60%, #fadfae 0%);
  padding: 0 0.1rem;
  font-weight: bold;
  border-radius: 6px;
}

/****旅行会社別****/
.content-wrapper .jtb a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #b20019;
  /*jtb*/
  background-color: #b20019;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .airtrip a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #51a2d3;
  /*airtrip*/
  background-color: #51a2d3;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .jalan a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #ff3c02;
  /*jalan*/
  background-color: #ff3c02;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .ikyu a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #1b4678;
  /*ikyu*/
  background-color: #1b4678;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .rakuten a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #00b900;
  /*ra*/
  background-color: #00b900;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .yahoo a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #ff0033;
  /*yaho*/
  background-color: #ff0033;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .knt a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #0c499c;
  /*kin*/
  background-color: #0c499c;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .jal a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #cc0000;
  /*jal*/
  background-color: #cc0000;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .rurubu a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #000066;
  /*rurubu*/
  background-color: #000066;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

.content-wrapper .nihon a {
  display: block;
  position: relative;
  padding: 10px 0px 8px 5px;
  border: 1px solid #343474;
  /*rurubu*/
  background-color: #343474;
  font-size: 1em;
  font-weight: bold;
  border-radius: 5px;
  text-decoration: none;
  text-align: center;
  color: #fff;
  outline: none;
  cursor: pointer;
  margin-bottom: 10px;
}

/* ===== レストランページ専用CSS ===== */
/* チケットページのstyles.cssを流用し、必要な部分だけ追加 */

/* ===== 選択カードグリッド ===== */
.selection-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.selection-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-sm);
}

.selection-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.selection-card h4 {
  font-size: 1.1rem;
  color: var(--primary-blue);
  margin-bottom: 0.8rem;
  padding-left: 0;
}

.selection-card h4::before {
  display: none;
}

.selection-card p {
  color: var(--text-medium);
  font-size: 0.95rem;
  margin: 0;
}

/* ===== ステップリスト ===== */
.step-list {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-left: 4px solid var(--primary-blue);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  margin: 1.5rem 0;
  counter-reset: step-counter;
}

.step-list li {
  position: relative;
  padding: 0.8rem 0;
  counter-increment: step-counter;
}

.step-list li::before {
  content: counter(step-counter);
  position: absolute;
  left: -2.5rem;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  background: linear-gradient(135deg, var(--primary-blue), var(--secondary-blue));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.9rem;
}

/* ===== レストランリスト ===== */
.restaurant-list {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 1.5rem 1.5rem 1.5rem 3rem;
  margin: 1rem 0;
}

.restaurant-list li {
  padding: 0.5rem 0;
  border-bottom: 1px solid var(--border-color);
}

.restaurant-list li:last-child {
  border-bottom: none;
}

/* ===== 優先案内レストランカード ===== */
.priority-restaurants {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
}

.restaurant-card {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.restaurant-card h4 {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
  padding-left: 0;
}

.restaurant-card h4::before {
  display: none;
}

.restaurant-type {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  margin: 0;
}

/* ===== レストラン詳細リストカード ===== */
.restaurant-list-card {
  margin: 2rem 0;
}

.restaurant-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 2rem;
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 0;
}

.restaurant-image {
  width: 100%;
  height: 300px;
  overflow: hidden;
  background: var(--background-light);
}

.restaurant-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.restaurant-info {
  padding: 2rem;
  display: flex;
  flex-direction: column;
}

.restaurant-info h4 {
  font-size: 1.5rem;
  color: var(--primary-blue);
  margin: 0 0 0.5rem 0;
  padding-left: 0;
  border-bottom: 3px solid #ffdeca;
}

.restaurant-info h4::before {
  display: none;
}

.restaurant-desc {
  color: var(--text-medium);
  line-height: 1.7;
  margin: 1rem 0;
  flex-grow: 1;
}

.restaurant-meta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  align-items: center;
  margin: 1rem 0;
}

.price-level {
  color: var(--accent-orange);
  font-weight: 600;
  font-size: 0.95rem;
}

.feature-badge {
  background: var(--light-blue);
  color: var(--primary-blue);
  padding: 0.3rem 0.8rem;
  border-radius: 15px;
  font-size: 0.85rem;
  font-weight: 600;
}

.restaurant-link {
  text-decoration: none;
  color: var(--primary-blue);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
  margin-top: auto;
}

/* ===== フッター内SNSボタンスタイル ===== */

.social-buttons {
  margin-top: 1.5rem;
}

.social-buttons h5 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--white);
  margin-bottom: 1rem;
  padding-left: 0;
}

.social-buttons h5::before {
  display: none;
}

.social-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.social-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.2rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--white);
  border: 2px solid transparent;
  min-width: 100px;
  justify-content: center;
}

.social-btn svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

/* Xボタン */
.social-x {
  background: #000000;
  border-color: #000000;
}

/* Instagramボタン */
.social-instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

/* LINEボタン */
.social-line {
  background: #00c300;
  border-color: #00c300;
}

/* YouTubeボタン */
.social-youtube {
  background: #ff0000;
  border-color: #ff0000;
}

/* お問い合わせセクション内のSNSボタン */
.social-contact {
  display: flex;
  gap: 1rem;
  justify-content: center;
  margin: 1.5rem 0;
  flex-wrap: wrap;
}

.social-contact-btn {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 1rem 1.5rem;
  border-radius: 15px;
  text-decoration: none;
  font-weight: 600;
  color: var(--white);
  border: 2px solid transparent;
  min-width: 140px;
  justify-content: center;
  font-size: 1rem;
}

.social-contact-btn svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

/* Instagramお問い合わせボタン */
.instagram-btn {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
  border-color: #bc1888;
}

/* Xお問い合わせボタン */
.x-btn {
  background: #000000;
  border-color: #000000;
}

/* YouTubeお問い合わせボタン */
.youtube-btn {
  background: #ff0000;
  border-color: #ff0000;
}

/* コンタクトメソッドのグリッド調整 */
.contact-methods {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-bottom: 3rem;
}

/* ===== レスポンシブ対応 ===== */

/* タブレット */
@media (max-width: 1024px) {
  .social-links {
    justify-content: center;
  }

  .social-contact {
    flex-direction: column;
    align-items: center;
  }

  .social-contact-btn {
    min-width: 200px;
  }
}

/* モバイル */
@media (max-width: 768px) {
  .social-links {
    justify-content: center;
    gap: 0.8rem;
  }

  .social-btn {
    padding: 0.6rem 1rem;
    font-size: 0.85rem;
    min-width: 80px;
  }

  .social-btn svg {
    width: 16px;
    height: 16px;
  }

  .social-contact {
    gap: 0.8rem;
  }

  .social-contact-btn {
    padding: 0.8rem 1.2rem;
    min-width: 160px;
    font-size: 0.9rem;
  }

  .social-contact-btn svg {
    width: 18px;
    height: 18px;
  }
}

/* ===== レスポンシブデザイン ===== */

/* タブレット */
@media (max-width: 1024px) {
  .hero-title {
    font-size: 2.2rem;
  }

  h2 {
    font-size: 1.8rem;
  }
}

/* モバイル */
@media (max-width: 768px) {
  .nav-desktop {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .hero {
    min-height: 300px;
  }

  .hero-title {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  h2 {
    font-size: 1.6rem;
  }

  h3 {
    font-size: 1.3rem;
  }

  h4 {
    font-size: 1.1rem;
  }

  .ticket-card {
    padding: 1.5rem;
  }

  .price {
    font-size: 1.2rem;
  }

  .age-row {
    padding: 0.8rem 1rem;
  }

  .page-top {
    bottom: 20px;
    right: 20px;
    width: 45px;
    height: 45px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .hero-title {
    font-size: 1.5rem;
  }

  .hero-content {
    padding: 2rem 1rem;
  }

  h2 {
    font-size: 1.4rem;
  }

  .ticket-card {
    padding: 1.2rem;
  }

  .highlight-box,
  .warning-box,
  .info-card,
  .recommend-box {
    padding: 1rem;
  }
}

/* ===== レストランレスポンシブ対応 ===== */

@media (max-width: 1024px) {
  .restaurant-item {
    grid-template-columns: 250px 1fr;
  }

  .restaurant-image {
    height: 300px;
  }
}

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

  .priority-restaurants {
    grid-template-columns: 1fr;
  }

  .restaurant-item {
    grid-template-columns: 1fr;
  }

  .restaurant-image {
    height: 300px;
  }

  .restaurant-info {
    padding: 1.5rem;
  }

  .step-list {
    padding: 1.5rem 1.5rem 1.5rem 2.5rem;
  }

  .step-list li::before {
    left: -2rem;
    width: 24px;
    height: 24px;
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .selection-card {
    padding: 1.2rem;
  }

  .selection-icon {
    font-size: 2rem;
  }

  .restaurant-card {
    padding: 1.2rem;
  }

  .restaurant-info h4 {
    font-size: 1.3rem;
  }

  .restaurant-meta {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
  }
}
