@charset "utf-8";
/* CSS Document - 聖地巡礼ツアー専用 */

/* 全体フォント設定を読みやすい明朝系に変更 */
body {
  background: #FFFFFF;
  color: #333;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  line-height: 1.8;
  word-break: break-all;
  text-align: justify;
font-size: 16px;
}

main {
  padding: 30px 60px;
  max-width: 1100px; 
  margin-left: auto;
  margin-right: auto;
  background-color: #FFFFFF;
}

figcaption {
  font-size: 80%;
}

h1, h2, h3, h4, h5, h6 {
  line-height: 1.4;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

h2 {
  font-size: 1.4rem; 
  margin-bottom: 12px;
}

section h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  padding-left: 12px;
  border-left: 5px solid #667eea;
  color: #222;
  margin-top: 2rem;
}

li {
  margin-bottom: 6px;
}

/* 日付・重要表示（.day）を強調 */
.day {
  font-size: 1.25rem; 
  font-weight: 900; 
  color: #667eea; 
  margin: 8px 0;
}

/* 表のレスポンシブ対応 */
.table-wrap {
  overflow: auto; 
  -webkit-overflow-scrolling: touch; 
  border-radius: 8px; 
  margin-bottom: 14px; 
  box-shadow: 0 6px 16px rgba(0,0,0,0.04);
}

table {
  width: 100%; 
  border-collapse: collapse;  
  background: #fff;
}

th, td {
  padding: 10px 6px; 
  border: 1px solid #e6e6e6; 
  text-align: left; 
  vertical-align: top;
}

th {
  background: #f8f9fa; 
  font-weight: 700;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
vertical-align: middle;
}

.pay td {
  vertical-align: middle;
}

/* 聖地見学ポイントセクション */
.spot-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.spot-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  align-items: center;
}

.spot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

/* 1枚画像の通常レイアウト */
.spot-images {
  flex: 0 0 400px; /* 固定幅400px */
  display: flex;
  flex-direction: row;
  gap: 8px;
  padding: 15px;
}

.spot-image-wrapper {
  flex: 1;
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  width: 100%;
  height: 267px; /* 3:2比率 (400px × 2/3 = 267px) */
}

.spot-images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.spot-images img:hover {
  transform: scale(1.05);
}

.image-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  background: linear-gradient(to right, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.6) 70%, transparent 100%);
  color: white;
  padding: 8px 12px 4px 8px;
  font-size: 10px;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  border-radius: 0 8px 0 0;
  max-width: 100%;
}

/* テキスト部分 - 右側 */
.spot-info {
  flex: 1;
  padding: 25px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spot-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
  padding-left: 12px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.spot-text {
  line-height: 1.7;
  color: #555;
  font-size: 0.95rem;
}

/* 2枚画像の特別レイアウト（PC時） */
.special-double {
  flex-direction: column; /* 縦並びに変更 */
  align-items: stretch;
}

.special-double .spot-images {
  flex: none;
  width: 100%;
  display: flex;
  flex-direction: row; /* 横並び */
  gap: 15px;
  padding: 15px;
  justify-content: center; /* 中央揃え */
}

/* 2枚エリアの画像サイズを1枚エリアと完全に同じに */
.special-double .spot-image-wrapper {
  flex: 0 0 400px; /* 1枚エリアと同じ幅 */
  height: 267px; /* 1枚エリアと同じ高さ */
}

.special-double .spot-info {
  padding: 0 25px 25px 25px; /* 上のパディングなし */
}

/* レスポンシブ対応 */
@media (max-width: 820px) {
  .spot-grid {
    gap: 25px;
    padding: 0 15px; /* 左右同じパディング */
  }
  
  .spot-item {
    flex-direction: column;
    align-items: stretch;
  }
  
  .spot-images {
    flex: none;
    width: calc(100% - 30px); /* パディング分を引く */
    margin: 0 15px; /* 左右マージンで中央配置 */
    padding: 15px 0; /* 上下のみパディング */
    flex-direction: column; /* 縦並びに変更 */
    gap: 10px;
  }
  
  .spot-image-wrapper {
    width: 100%;
    height: 200px; /* スマホサイズに調整（3:2比率維持） */
  }
  
  /* 2枚画像の場合も縦並び */
  .special-double .spot-images {
    flex-direction: column; /* 縦並び */
    justify-content: stretch;
    width: calc(100% - 30px); /* パディング分を引く */
    margin: 0 15px; /* 左右マージンで中央配置 */
    padding: 15px 0; /* 上下のみパディング */
  }
  
  /* 2枚エリアの画像高さを1枚エリアと完全に同じに */
  .special-double .spot-image-wrapper {
    flex: none;
    width: 100%;
    height: 200px; /* 1枚エリアと完全に同じ高さ */
  }
  
  .special-double .spot-info {
    padding: 15px 20px 20px 20px; /* 左右同じパディング */
  }
  
  .spot-info {
    padding: 15px 20px 20px 20px; /* 左右同じパディング */
  }
  
  .spot-name {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .spot-text {
    font-size: 0.9rem;
  }
  
  .image-caption {
    font-size: 10px;
    padding: 6px 10px 3px 6px;
    max-width: 100%;
  }
}

@media (max-width: 480px) {
  .spot-grid {
    gap: 20px;
    padding: 0 10px; /* 左右同じパディング */
  }
  
  .spot-images {
    width: calc(100% - 20px); /* パディング分を引く */
    margin: 0 10px; /* 左右マージンで中央配置 */
    padding: 12px 0; /* 上下のみパディング */
    gap: 8px;
  }
  
  .spot-image-wrapper {
    height: 150px; /* さらに小さく（3:2比率維持） */
  }
  
  .special-double .spot-images {
    width: calc(100% - 20px); /* パディング分を引く */
    margin: 0 10px; /* 左右マージンで中央配置 */
    padding: 12px 0; /* 上下のみパディング */
  }
  
  /* 2枚エリアの画像高さを1枚エリアと完全に同じに */
  .special-double .spot-image-wrapper {
/* 1枚エリアと完全に同じ高さ */
  }
  
  .special-double .spot-info {
    padding: 12px 15px 18px 15px; /* 左右同じパディング */
  }
  
  .spot-info {
    padding: 12px 15px 18px 15px; /* 左右同じパディング */
  }
  
  .spot-name {
    font-size: 1.1rem;
  }
  
  .spot-text {
    font-size: 0.85rem;
    line-height: 1.6;
  }
  
  .image-caption {
    font-size: 10px;
    padding: 5px 8px 2px 5px;
    max-width: 100%;
  }
}

/* タブレット横向き対応 */
@media (min-width: 769px) and (max-width: 1024px) {
  .spot-images {
    flex: 0 0 350px; /* タブレットでは少し小さく */
  }
  
  .spot-image-wrapper {
    height: 233px; /* 350px × 2/3 = 233px */
  }
  
  /* 2枚エリアの画像サイズを1枚エリアと完全に同じに */
  .special-double .spot-image-wrapper {
    flex: 0 0 350px; /* 1枚エリアと同じ幅 */
    height: 233px!important; /* 1枚エリアと完全に同じ高さ */
  }
}

/* 大画面対応（2枚画像が画面からはみ出さないように） */
@media (max-width: 1200px) and (min-width: 769px) {
  .special-double .spot-images {
    gap: 10px; /* 間隔を狭く */
  }
  
  /* 2枚エリアの画像サイズを1枚エリアと完全に同じに */
  .special-double .spot-image-wrapper {
    flex: 0 0 350px; /* 1枚エリアと同じ幅 */
    height: 233px!important; /* 1枚エリアと完全に同じ高さ */
  }
}

/* 聖地スポット注意書き */
.spot-notice {
  margin-top: 12px;
  padding: 8px 12px;
  background-color: #fff3cd;
  border: 1px solid #ffeaa7;
  border-radius: 4px;
  border-left: 4px solid #f39c12;
}

.notice-text {
  font-size: 0.9rem;
  color: #856404;
  line-height: 1.6;
  margin: 0;
  font-weight: 500;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .spot-notice {
    margin-top: 10px;
    padding: 6px 10px;
  }
  
  .notice-text {
    font-size: 0.7rem;
    line-height: 1.3;
  }
}

/* 条件 dl */
.conditions dl {
  background: #fff; 
  border: 1px solid #eee; 
  padding: 15px 30px; 
  border-radius: 8px;
  margin-top: 16px;
}

.conditions dt {
  font-weight: 700; 
  margin-top: 12px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.conditions dd {
  margin-bottom: 12px;
}

.conditions table {
  width: 100%; 
  border-collapse: collapse; 
  margin-top: 10px;
}

.conditions table td {
  border: 1px solid #e6e6e6; 
  padding: 10px;
}

/* 申込みステップ */
.application .step {
  background: #fff; 
  border-radius: 10px; 
  padding: 18px 30px; 
  box-shadow: 0 6px 16px rgba(0,0,0,0.04); 
  margin-bottom: 12px;
}

.application .step.arrow {
  background: transparent; 
  box-shadow: none; 
  text-align: center;
}

.application .arrow-icon {
  font-size: 1.3rem; 
  color: #667eea; 
  display: inline-block; 
  transform: translateY(-6px);
}

.step_title {
  text-align: center; 
  font-weight: 900; 
  font-size: 1.05rem; 
  color: #fff; 
  background-color: #494747; 
  display: block; 
  padding: 8px 14px; 
  border-radius: 8px; 
  position: relative;  
  margin: 0 auto 10px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.step_title::before {
  content: ""; 
  position: absolute; 
  inset: -6px; 
  background: linear-gradient(90deg, #667eea, #764ba2); 
  z-index: -1; 
  border-radius: 10px; 
  opacity: 0.95;
}

/* CTA */
.center-cta {
  text-align: center; 
  margin-top: 30px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block; 
  background: linear-gradient(90deg, #667eea, #764ba2); 
  color: #fff; 
  padding: 14px 26px; 
  border-radius: 40px; 
  font-weight: 800; 
  box-shadow: 0 8px 24px rgba(102, 126, 234, 0.3); 
  transition: transform .16s ease; 
  border: none;
  width: 80%!important;
  font-size: 1.4rem;
  text-decoration: none!important;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.cta-button:hover, .cta-button:focus {
  transform: translateY(-3px); 
  outline: none;
}

.qa a {
  text-decoration: none;
  text-align: center;
  margin: 0 auto;
}

/* footer */
footer {
  background: #111; 
  color: #fff; 
  padding: 20px 10px; 
  text-align: center; 
  font-size: 0.9rem;
}

footer a {
  color: #fff; 
  opacity: 0.9;
}

/* header small */
header.scrolled {
  box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

@media (max-width:520px) {
  .top-title h1 {
    font-size: 1.05rem;
  }
}

/* グローバル読みやすさオーバーライド */
.container { 
  max-width: 1050px; 
  margin-left: auto; 
  margin-right: auto; 
  padding-left: 20px; 
  padding-right: 20px; 
}

body { 
  line-height: 1.75; 
}

.section { 
  padding-top: 36px; 
  padding-bottom: 36px; 
}

@media (max-width:600px){
  body { 
    line-height: 1.6; 
    font-size: 15px; 
  }
  
  .top .top-title h1 { 
    font-size: 22px; 
  }
  
  .top-slider .slide { 
    height: 300px; 
  }
}

/* スポット写真: デスクトップで2列、モバイルで単列 */
.spot-gallery { 
  display: flex; 
  flex-wrap: wrap; 
  gap: 16px; 
}

.spot-gallery .spot { 
  flex: 1 1 calc(50% - 16px); 
  min-width: 260px; 
}

.spot-gallery .spot img { 
  width: 100%; 
  height: auto; 
  display: block; 
}

@media (max-width:800px){
  .spot-gallery .spot { 
    flex-basis: 100%; 
  }
}

/* リスト・リンク */
ul {
  list-style: disc;
  margin-left: 1.5em;
}

ol {
  list-style: decimal;
  margin-left: 1.5em;
}

li {
  margin-bottom: 6px;
}

a {
  color: #667eea;
  text-decoration: underline;
}

.conditions ul, .conditions ol {
  margin-left: 1.2em;
  text-align: justify;
}

/* 出発日・金額（重要情報） */
.info p.day {
  font-weight: bold;
  color: #667eea;
  margin: 10px 0;
  font-size: 1.2rem;
}

/* テーブル共通 */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  border: 1px solid #ccc;
}

th {
  background: #f6f6f6;
  font-weight: bold;
  text-align: center;
}

td {
  text-align: center;
}

.pay th {
  vertical-align: middle!important;
}

/* ========================================
   日程表テーブル（最小限修正）
======================================== */

/* コース見出しのスタイル追加 */
.day-narita {
  font-size: 1.4rem;
  font-weight: 700;
  color: #667eea;
  margin: 30px 0 15px 0;
  padding: 10px 15px;
  background: #f8f9ff;
  border-left: 4px solid #667eea;
  border-radius: 5px;
}

.schedule {
  overflow-x: auto;
  min-width: 800px!important;
  margin-bottom: 25px; /* テーブル間にスペース追加 */
}

.schedule table {
  min-width: 600px!important;
}

.schedule th {
  text-align: center;
  vertical-align: middle;
  border: 2px solid #ccc!important;
}

.schedule td {
  text-align: left;
  font-size: 85%;
  border-right: 2px solid #ccc!important;
  border-left: 2px solid #ccc!important;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
font-weight: 600;
}

.border-t {
  border-top: 2px solid #ccc!important;
}

.border-b {
  border-bottom: 2px solid #ccc!important;
}

/* 聖地めぐりのセル全体に適用 */
td.seichi {
  color: #dc3545!important;
  font-weight: 600!important;
  background: linear-gradient(135deg, rgba(220, 53, 69, 0.1) 0%, rgba(220, 53, 69, 0.05) 100%)!important;
  border-left: 4px solid #dc3545!important;
  padding: 10px 8px!important;
}

/* イベントのセル全体に適用 */
td.event {
  color: #667eea!important;
  font-weight: 600!important;
  background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(102, 126, 234, 0.05) 100%)!important;
  border-left: 4px solid #667eea!important;
  padding: 10px 8px!important;
}

/* 取消テーブル */
.torikeshi td {
  vertical-align: middle!important;
}

.application button {
  display: inline-block;
  margin-top: 20px;
  padding: 18px 50px;
  font-size: 1.3rem;
  font-weight: bold;
  background: #667eea;
  color: #fff;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: background 0.3s;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.application button:hover {
  background: #5a6fd8;
}

.t-c {
  text-align: center!important;	
}

.t-l {
  text-align: left!important;
}

.t-r {
  text-align: right!important;
}

.pink {
  color: #667eea;
}

.fwb {
  font-weight: bold;
}

.small {
  font-size: 85%;
}

.pc {
  display: block!important;
}

.sp {
  display: none!important;
}

@media (max-width:600px){
  main {
    padding: 20px;
  }
  
  .conditions dl, .step {
    padding: 18px!important;
  }
  
  .pc {
    display: none!important;
  }
  
  .sp {
    display: block!important;
  }
}

.knt-logo {
  width: 300px;
  margin: 10px;
}

.knt-logo img {
  width: 280px;
}

/* YES/NOボタン共通 */
.yes_no {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 28px 0 12px;
}

.mokofo {
  display: inline-block;
  padding: 16px 40px;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: #fff;
  border-radius: 10px;
  transition: background 0.2s ease, transform 0.2s ease;
  text-align: center;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.mokofo.yes {
  background: #007bff;
}

.mokofo.no {
  background: #dc3545;
}

.mokofo:hover {
  transform: translateY(-3px);
  opacity: 0.9;
}

.yes_no-caption {
  text-align: center;
  font-size: 1rem;
  color: #555;
}

@media (max-width: 600px) {
  .yes_no {
    flex-direction: column;
    gap: 16px;
  }
  
  .mokofo {
    text-align: center;
  }
}

.bank {
  border: dotted darkgray 1px;
  margin: 10px auto;
  padding: 10px;
}

strong {
  color: #667eea!important;
}

.red {
  color: red;
  font-weight: bold;
}

.fp {
  font-size: 1.1rem; 
  font-weight: 600; 
  color: #667eea;
}

.vc {
  vertical-align: middle;
}

.fs80 {
  font-size: 80%;
}

.fs70 {
  font-size: 70%;
}

.kome ul {
  list-style-type: none;
}

.kome li {
  padding-left: 1.6em;
  text-indent: -0.75em;
}

.kome li::before {
  content: "※";
  display: inline-block;
  padding-right: 0.4em;
}

.kaisei-decol-regular {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}

.kaisei-decol-medium {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-style: normal;
}

.kaisei-decol-bold {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  font-weight: 700;
  font-style: normal;
}

.kiwi-maru-light {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  font-weight: 300;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
  font-weight: 500;
  font-style: normal;
}

.yusei-magic-regular {
  font-weight: 400;
  font-style: normal;
}

.margin20 {
  margin: 20px 0;
}

.va-m {
  vertical-align: middle!important;
}

#inquiry {
  text-align: left!important;
}

/* コンテンツセクション共通 */
.content-section {
  padding: 60px 0;
  background: #f8f9fa;
}

.content-section:nth-child(even) {
  background: #ffffff;
}

.section-title {
  font-size: 2.2rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: #667eea;
  position: relative;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, #667eea, #764ba2);
  margin: 15px auto 0;
  border-radius: 2px;
}

/* トークイベントセクション */
.event-content {
  max-width: 1200px; /* 幅を広げて2つ並べられるように */
  margin: 0 auto;
}

/* ゲストグリッド（2つ横並び） */
.guests-grid {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 2つ横並び */
  gap: 30px;
}

.guest-info {
  display: flex;
  flex-direction: column; /* 縦並びに変更（画像を上、テキストを下） */
  gap: 20px;
  background: #fff;
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.guest-info:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 35px rgba(0,0,0,0.12);
}

/* 縦長画像により適した比率 */
/* 縦長画像に対応 */
.guest-photo {
  width: 50%;
  aspect-ratio: 400/500; /* 縦長比率を維持 */
  overflow: hidden;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
  margin: 0 auto; /* .guest-photo自体を中央配置 */
}

.guest-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center; /* 画像を中央に配置 */
  transition: transform 0.3s ease;
}

.guest-photo img:hover {
  transform: scale(1.05);
}
.guest-details {
  flex: 1;
  text-align: center; /* 中央揃え */
}

.guest-caption {
  font-size: 0.8rem;
  color: #667eea;
  font-weight: 600;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.guest-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #333;
  margin-bottom: 15px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
}

.guest-text {
  line-height: 1.6;
  color: #555;
  font-size: 0.9rem;
  text-align: left; /* テキストは左揃え */
}

/* レスポンシブ対応 */
@media (max-width: 820px) {
  .event-content {
    max-width: 600px;
  }
  
  .guests-grid {
    grid-template-columns: 1fr; /* 縦並びに変更 */
    gap: 25px;
  }
  
  .guest-info {
    padding: 20px;
    gap: 15px;
  }
  
  .guest-name {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
  
  .guest-text {
    font-size: 0.85rem;
    line-height: 1.5;
  }
  
  .guest-caption {
    font-size: 0.75rem;
  }
}

@media (max-width: 480px) {
  .guests-grid {
    gap: 20px;
  }
  
  .guest-info {
    padding: 18px;
    gap: 12px;
  }
  
  .guest-name {
    font-size: 1.1rem;
    margin-bottom: 10px;
  }
  
  .guest-text {
    font-size: 0.8rem;
  }
  
  .guest-caption {
    font-size: 0.7rem;
  }
}

/* 聖地見学ポイントセクション */
.spot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(500px, 1fr));
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.spot-item {
  background: #fff;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 8px 25px rgba(0,0,0,0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.spot-item:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.spot-info {
  padding: 25px;
}

.spot-name {
  font-size: 1.3rem;
  font-weight: 700;
  color: #667eea;
  margin-bottom: 15px;
  border-left: 4px solid #667eea;
  padding-left: 12px;
  font-family: "游明朝体", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN", "HG明朝E", "MS P明朝", "MS PMincho", serif;
margin-top: 0;
}

.spot-text {
  line-height: 1.7;
  color: #555;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .content-section {
    padding: 40px 0;
  }
  
  .section-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  
  .guest-info {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }
  
  .guest-photo {
    width: 200px;
    margin: 0 auto;
  }
  
  .spot-grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  
  .spot-item {
    margin: 0 10px;
  }
  
  .spot-info {
    padding: 20px;
  }
}

.air{
	background-color:#FDD2D3;
}

.meal{
	background-color:#FFF3BA;
	font-weight: bold;
}

.kanko{
	background-color:#CFE5F5;
	font-weight: bold;
}
.seichi th,.seichi td{
	vertical-align: middle;
}