@charset "utf-8";
/* CSS Document */

/* 刀剣乱舞向け色彩パレット（落ち着いた色調に調整） */
:root {
  --primary-dark: #2c3e50;      /* 落ち着いた濃紺 */
  --primary-blue: #34495e;      /* 落ち着いた青灰色 */
  --accent-gold: #b8860b;       /* 落ち着いた金色 */
  --accent-red: #a0522d;        /* 落ち着いた茶赤 */
  --accent-silver: #708090;     /* 落ち着いた銀色 */
  --text-dark: #2c3e50;         /* メインテキスト */
  --text-light: #f8f9fa;        /* 白（コントラスト用）*/
  --bg-light: #fafafa;          /* 背景色 */
  --bg-secondary: #f5f5f5;      /* セカンダリ背景 */
  --border-gold: #b8860b;       /* 金色ボーダー */
}

/* 共通 */
body {
  background: var(--bg-light);
  color: var(--text-dark);
  font-family: 'Noto Sans JP', 'Hiragino Sans', sans-serif;
  line-height: 1.8;
  font-size: 16px;
}

main {
  padding: 30px 60px;
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  background-color: var(--bg-light);
  position: relative;
}

/* 和風装飾パターン（控えめに） */
main::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    radial-gradient(circle at 25% 25%, var(--accent-gold) 1px, transparent 1px),
    radial-gradient(circle at 75% 75%, var(--accent-red) 1px, transparent 1px);
  background-size: 80px 80px;
  background-position: 0 0, 40px 40px;
  opacity: 0.02;
  pointer-events: none;
  z-index: 0;
}

main > * {
  position: relative;
  z-index: 1;
}

figcaption {
  font-size: 80%;
}

h1, h2, h3 {
  line-height: 1.4;
  font-family: 'Noto Sans JP', sans-serif;
}

h2 {
  font-size: 1.3rem;
  margin-bottom: 12px;
  color: var(--primary-dark);
}

section h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
  padding-left: 15px;
  border-left: 4px solid var(--accent-gold);
  color: var(--primary-dark);
  margin-top: 2rem;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 600;
}



li {
  margin-bottom: 6px;
}

/* 日付・重要表示（.day）を強調 */
.day {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--accent-red);
  margin: 8px 0;
  font-family: 'Noto Sans JP', sans-serif;
}

/* 表のレスポンシブ対応 */
.table-wrap {
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  border-radius: 6px;
  margin-bottom: 14px;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  border: 1px solid var(--accent-gold);
}

table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
}

th, td {
  padding: 10px 6px;
  border: 1px solid var(--border-gold);
  text-align: left;
  vertical-align: top;
}

th {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  font-weight: 600;
  color: var(--text-light);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.9rem;
}



.pay td {
  vertical-align: middle;
}





/* conditions dl */
.conditions dl {
  background: linear-gradient(145deg, #ffffff, var(--bg-secondary));
  border: 1px solid var(--accent-gold);
  padding: 15px 30px;
  border-radius: 6px;
  position: relative;
}

.conditions dl::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-red), var(--accent-gold));
  border-radius: 6px 6px 0 0;
}

.conditions dt {
  font-weight: 600;
  margin-top: 12px;
  color: var(--primary-dark);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 0.95rem;
}

.conditions dd {
  margin-left: 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
}

.conditions table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 10px;
}

.conditions table td {
  border: 1px solid var(--border-gold);
  padding: 10px;
}

/* application steps */
.application .step {
  background: linear-gradient(145deg, #ffffff, var(--bg-secondary));
  border-radius: 8px;
  padding: 18px 30px;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  margin-bottom: 12px;
  border: 1px solid var(--accent-gold);
  position: relative;
}

.application .step::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-red), var(--accent-gold));
  border-radius: 8px 8px 0 0;
}

.application .step.arrow {
  background: transparent;
  box-shadow: none;
  text-align: center;
  border: none;
}

.application .step.arrow::before {
  display: none;
}

.application .arrow-icon {
  font-size: 1.2rem;
  color: var(--accent-red);
  display: inline-block;
  transform: translateY(-6px);
}

.step_title {
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--text-light);
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  display: block;
  padding: 8px 14px;
  border-radius: 6px;
  position: relative;
  margin: 0 auto 10px;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid var(--accent-gold);
}

.step_title::before {
  content: '';
  position: absolute;
  inset: -2px;
  background: linear-gradient(45deg, var(--accent-gold), var(--accent-red), var(--accent-gold), var(--accent-red));
  z-index: -1;
  border-radius: 8px;
  opacity: 0.6;
}

/* CTA */
.center-cta {
  text-align: center;
  margin-top: 30px;
  margin-bottom: 20px;
}

.cta-button {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-red), var(--primary-dark));
  color: var(--text-light);
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(160, 82, 45, 0.3);
  transition: all 0.3s ease;
  border: 1px solid var(--accent-gold);
  width: 80% !important;
  font-size: 1.2rem;
  text-decoration: none !important;
  font-family: 'Noto Sans JP', sans-serif;
  position: relative;
  overflow: hidden;
}

.cta-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.3), transparent);
  transition: left 0.6s ease;
}

.cta-button:hover::before {
  left: 100%;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-2px);
  outline: none;
  box-shadow: 0 6px 16px rgba(160, 82, 45, 0.4);
}

/* footer */
footer {
  background: linear-gradient(90deg, var(--primary-dark), var(--primary-blue));
  color: var(--text-light);
  padding: 20px 10px;
  text-align: center;
  font-size: 0.85rem;
  border-top: 2px solid var(--accent-gold);
  position: relative;
}

footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-red), var(--accent-gold));
}

footer a {
  color: var(--accent-gold);
  opacity: 0.9;
  text-decoration: none;
  transition: all 0.3s ease;
}

footer a:hover {
  opacity: 1;
  color: var(--text-light);
  text-shadow: 0 0 8px var(--accent-gold);
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* header small */
header.scrolled {
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.15);
}

@media (max-width: 520px) {
  .top-title h1 {
    font-size: 1rem;
  }
}

/* --- global readability overrides --- */
.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: 14px;
  }
  
  .top .top-title h1 {
    font-size: 20px;
  }
  
  .top-slider .slide {
    height: 300px;
  }
}




/* ==============================
   リスト・リンク
============================== */
ul {
  list-style: disc;
  margin-left: 1.5em;
}

ol {
  list-style: decimal;
  margin-left: 1.5em;
}

li {
  margin-bottom: 6px;
font-size: 90%;
}

a {
  color: var(--primary-blue);
  text-decoration: underline;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--accent-red);
}

.conditions ul,
.conditions ol {
  margin-left: 0.7em;
  text-align: justify;
}

/* ==============================
   出発日・金額（重要情報）
============================== */
.info p.day {
  font-weight: bold;
  color: var(--accent-red);
  margin: 10px 0;
  font-size: 1.1rem;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ==============================
   テーブル
============================== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 20px 0;
}

th, td {
  border: 1px solid var(--border-gold);
}

th {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  font-weight: bold;
  text-align: center;
  color: var(--text-light);
  font-family: 'Noto Sans JP', sans-serif;
}

td {
  text-align: center;
}

.pay th {
  vertical-align: middle !important;
}

/* schedule専用 */
.schedule {
  overflow-x: auto;
  min-width: 600px !important;
}

.schedule table {
  min-width: 600px !important;
}

.schedule th {
  text-align: center;
  vertical-align: middle;
  border: 2px solid var(--border-gold) !important;
  background: linear-gradient(135deg, var(--primary-dark), var(--primary-blue));
  color: var(--text-light);
}

.schedule td {
  text-align: left;
  padding: 10px;
  font-size: 100%;
  border-right: 2px solid var(--border-gold) !important;
  border-left: 2px solid var(--border-gold) !important;
  border-top: 1px solid var(--bg-secondary);
  border-bottom: 1px solid var(--bg-secondary);
}


/* 1日目の最後の行（松江市内 泊）の下ボーダーを太く */
.schedule tr:nth-child(3) {
  border-bottom: 2px solid var(--border-gold) !important;
}

/* または、より汎用的に日付変更行を指定する場合 */
.schedule .day-change {
  border-top: 2px solid var(--border-gold) !important;
}

.border-t {
  border-top: 2px solid var(--border-gold) !important;
}

.border-b {
  border-bottom: 2px solid var(--border-gold) !important;
}

.bgy {
  background-color: #fafafa;
}

/* torikeshi */
.torikeshi td {
  vertical-align: middle !important;
}

.application button {
  display: inline-block;
  margin-top: 20px;
  padding: 16px 40px;
  font-size: 1.1rem;
  font-weight: bold;
  background: linear-gradient(45deg, var(--accent-red), var(--primary-dark));
  color: var(--text-light);
  border: 1px solid var(--accent-gold);
  border-radius: 40px;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: 'Noto Sans JP', sans-serif;
}

.application button:hover {
  background: linear-gradient(45deg, var(--primary-dark), var(--accent-red));
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(160, 82, 45, 0.3);
}

.t-c {
  text-align: center !important;
}

.t-l {
  text-align: left !important;
}

.t-r {
  text-align: right !important;
}

.pink {
  color: var(--accent-red);
}

.fwb {
  font-weight: bold;
}

.small {
  font-size: 85%;
}

.pc {
  display: block !important;
}

.sp {
  display: none !important;
}



@media (max-width: 600px) {
  main {
    padding: 20px;
  }
  
  section h3 {
    font-size: 1.1rem;
  }
  
  .conditions dl,
  .step {
    padding: 15px !important;
  }
  
  .pc {
    display: none !important;
  }
  
  .sp {
    display: block !important;
  }
}



/* YES/NOボタン共通 */
.yes_no {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 28px 0 12px;
}

.mokofo {
  display: inline-block;
  padding: 14px 32px;
  font-size: 1.4rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--text-light);
  border-radius: 10px;
  transition: all 0.3s ease;
  text-align: center !important;
  width: 280px;
  box-sizing: border-box;
  font-family: 'Noto Sans JP', sans-serif;
  border: 1px solid var(--accent-gold);
}

.mokofo.yes {
  background: linear-gradient(45deg, var(--primary-blue), var(--primary-dark));
}

.mokofo.no {
  background: linear-gradient(45deg, var(--accent-red), var(--primary-dark));
}

.mokofo:hover {
  transform: translateY(-3px);
  opacity: 0.9;
  box-shadow: 0 6px 16px rgba(44, 62, 80, 0.2);
}

.yes_no-caption {
  text-align: center;
  font-size: 0.9rem;
  color: #555;
}

/* スマホでは縦並び */
@media (max-width: 600px) {
  .yes_no {
    flex-direction: column;
    align-items: center;
    gap: 16px;
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }
  
  .mokofo {
    text-align: center;
    width: 70%;
    max-width: 260px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  .yes_no {
    padding: 0 20px;
  }
  
  .mokofo {
    width: 80%;
    max-width: 240px;
    padding: 12px 28px;
    font-size: 1.2rem;
  }
}

@media (max-width: 360px) {
  .yes_no {
    padding: 0 10px;
  }
  
  .mokofo {
    width: 90%;
    max-width: 220px;
    padding: 10px 20px;
    font-size: 1.1rem;
  }
}

.bank {
  border: 2px dotted var(--primary-blue);
  margin: 10px auto;
  padding: 15px;
  background: linear-gradient(145deg, var(--bg-light), var(--bg-secondary));
  border-radius: 6px;
}

strong {
  color: var(--primary-dark) !important;
  font-family: 'Noto Sans JP', sans-serif;
}

.red {
  color: var(--accent-red);
  font-weight: bold;
}

.fp {
  font-size: 1rem;
  font-weight: 600;
  color: var(--accent-red);
}

.vc {
  vertical-align: middle;
}

/* ツアータイトル部分 */
.tour-header {
  margin-top: 30px;
  margin-bottom: 20px;
  background: var(--bg-light);
  padding: 50px 20px 20px;
  text-align: center !important;
  color: var(--text-light);
  position: relative;
  overflow: hidden;
}

.tour-title {
  font-size: 5rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1.3;
  position: relative;
  display: inline-block;
  z-index: 1;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-red) 50%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: fade-in 1.4s ease-out forwards;
  font-family: 'Noto Sans JP', sans-serif;
}

.tour-title .subtitle {
  display: block;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-top: 6px;
  background: linear-gradient(90deg, var(--primary-dark) 0%, var(--accent-red) 50%, var(--primary-blue) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@keyframes fade-in {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.title-wrap {
  max-width: 900px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
}

@media (max-width: 700px) {
  .tour-title {
    font-size: 2.8rem;
  }
  
  .tour-title .subtitle {
    font-size: 1.2rem;
  }
}

.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: "Kaisei Decol", serif;
  font-weight: 400;
  font-style: normal;
}

.kaisei-decol-medium {
  font-family: "Kaisei Decol", serif;
  font-weight: 500;
  font-style: normal;
}

.kaisei-decol-bold {
  font-family: "Kaisei Decol", serif;
  font-weight: 700;
  font-style: normal;
}

.kiwi-maru-light {
  font-family: "Kiwi Maru", serif;
  font-weight: 300;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-medium {
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
  font-style: normal;
}

.yusei-magic-regular {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.margin20 {
  margin: 20px 0;
}

/* デスクトップ用テーブル */
.desktop-table {
  display: block;
}

.mobile-schedule {
  display: none;
}

/* モバイル用縦型スケジュール */
.mobile-schedule {
  background: linear-gradient(145deg, #ffffff, var(--bg-secondary));
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  margin-bottom: 25px;
  border: 1px solid var(--accent-gold);
  position: relative;
}

.mobile-schedule::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-red), var(--accent-gold));
  border-radius: 8px 8px 0 0;
}

.schedule-date {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
}

.schedule-date h4 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.3rem;
  color: var(--primary-dark);
  margin-bottom: 15px;
  font-weight: 600;
}

.date-line{
	border-top: 4px solid var(--border-gold);
	margin-top: 36px;
padding-bottom: 20px;
}

.meal-info {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
}

.meal-item {
  background: linear-gradient(135deg, var(--bg-secondary), var(--bg-light));
  padding: 8px 15px;
  border-radius: 12px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
  border: 1px solid var(--border-gold);
}

/* タイムライン */
.timeline {
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 35px;
  top: 0;
  bottom: 0;
  width: 3px;
  background: linear-gradient(to bottom, var(--primary-dark), var(--accent-red));
  border-radius: 2px;
}

.timeline-item {
  position: relative;
  margin-bottom: 25px;
  padding-left: 85px;
}

.timeline-item.highlight::before {
  display: none;
}

.time {
  position: absolute;
  left: 0;
  top: 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  background: linear-gradient(135deg, #fff, var(--bg-secondary));
  padding: 8px 10px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
  min-width: 65px;
  text-align: center;
  line-height: 1.2;
}

.timeline-content {
  background: linear-gradient(135deg, #fafafa, #f5f5f5);
  padding: 15px 20px;
  border-radius: 6px;
  border: 1px solid var(--border-gold);
}

.timeline-item.highlight .timeline-content {
  background: linear-gradient(135deg, var(--bg-light), var(--bg-secondary));
  border-color: var(--accent-red);
}

.location {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
  margin-bottom: 8px;
}

.transport {
  font-size: 0.85rem;
  color: var(--primary-dark);
  background: var(--bg-secondary);
  padding: 4px 10px;
  border-radius: 10px;
  display: inline-block;
  margin-top: 8px;
  border: 1px solid var(--border-gold);
}

.description {
  font-size: 0.9rem;
  line-height: 1.6;
  color: #333;
  margin-bottom: 0;
}

.highlight-text {
  color: var(--accent-red);
  font-weight: 600;
  font-family: 'Noto Sans JP', sans-serif;
}

.note {
  font-size: 0.8rem;
  color: #666;
  font-style: italic;
}

/* レスポンシブ切り替え */
@media (max-width: 768px) {
  .desktop-table {
    display: none;
  }
  
  .mobile-schedule {
    display: block;
  }
}

/* 小型スマートフォン調整 */
@media (max-width: 480px) {
  .mobile-schedule {
    padding: 20px 15px;
    border-radius: 6px;
  }
  
  .timeline-item {
    padding-left: 75px;
    margin-bottom: 20px;
  }
  
  .timeline::before {
    left: 30px;
  }
  
  .time {
    font-size: 0.9rem;
    min-width: 60px;
    padding: 6px 8px;
    border-radius: 5px;
  }
  
  .timeline-content {
    padding: 12px 15px;
    border-radius: 5px;
  }
  
  .meal-info {
    gap: 10px;
  }
  
  .meal-item {
    padding: 6px 12px;
    font-size: 0.8rem;
    border-radius: 8px;
  }
  
  .transport {
    border-radius: 8px;
  }
}

/* HRスタイル改善 */
hr {
  border: none;
  border-top: 1px solid var(--accent-gold);
  margin: 25px 0 15px 0;
  opacity: 0.6;
}



/* 追加のアニメーション効果 */
@keyframes shimmer {
  0% {
    background-position: -200% 0;
  }
  100% {
    background-position: 200% 0;
  }
}

.shimmer-effect {
  background: linear-gradient(90deg, transparent, rgba(184, 134, 11, 0.4), transparent);
  background-size: 200% 100%;
  animation: shimmer 2s infinite;
}

/* 刀剣らしいボックスシャドウ */
.katana-shadow {
  box-shadow: 
    0 2px 4px rgba(44, 62, 80, 0.1),
    0 8px 16px rgba(44, 62, 80, 0.1),
    inset 0 1px 0 rgba(184, 134, 11, 0.2);
}

/* 金属光沢効果 */
.metal-shine {
  background: linear-gradient(45deg, 
    var(--accent-silver) 0%, 
    #ffffff 25%, 
    var(--accent-silver) 50%, 
    #ffffff 75%, 
    var(--accent-silver) 100%);
  background-size: 200% 200%;
  animation: shine 3s ease-in-out infinite;
}

@keyframes shine {
  0%, 100% {
    background-position: 0% 0%;
  }
  50% {
    background-position: 100% 100%;
  }
}

/* スポット紹介セクション（mainの中・6:4比率対応） */
#spot {
  background: linear-gradient(135deg, var(--bg-light) 0%, var(--bg-secondary) 100%);
  padding: 40px 0;
  border-radius: 8px;
  margin: 30px 0;
  border: 1px solid var(--accent-gold);
  position: relative;
}

#spot::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--accent-gold), var(--accent-red), var(--accent-gold));
  border-radius: 8px 8px 0 0;
}

#spot h2 {
  color: var(--primary-dark);
  font-family: 'Noto Sans JP', sans-serif;
  text-align: center;
  margin-bottom: 30px;
  font-size: 1.4rem;
  font-weight: 600;
}

/* スポットグリッドレイアウト（2×2） */
.spots-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  margin-top: 20px;
}

.spot-item {
  background: #ffffff;
  border-radius: 8px;
  padding: 20px;
  border: 1px solid var(--border-gold);
  box-shadow: 0 4px 12px rgba(44, 62, 80, 0.08);
  transition: all 0.3s ease;
}

.spot-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 62, 80, 0.12);
}

/* 画像を6:4比率（3:2）で表示 */
.spot-item img {
  width: 100%;
  height: 0;
  padding-bottom: 66.67%; /* 4/6 = 0.6667 = 66.67% */
  object-fit: cover;
  border-radius: 6px;
  border: 1px solid var(--accent-gold);
  margin-bottom: 15px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* 実際の画像表示用 */
.spot-item .image-container {
  width: 100%;
  height: 0;
  padding-bottom: 66.67%; /* 6:4の比率 */
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  border: 1px solid var(--accent-gold);
  margin-bottom: 15px;
}

.spot-item .image-container img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding-bottom: 0;
  border: none;
  margin-bottom: 0;
}

.spot-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  margin: 10px 0 8px 0;
}

.spot-text {
  text-align: left;
  color: var(--text-dark);
  line-height: 1.6;
  font-size: 0.9rem;
  margin: 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .spots-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  #spot {
    padding: 30px 15px;
  }
  
  .spot-item {
    padding: 15px;
  }
  
  .spot-title {
    font-size: 1rem;
  }
  
  .spot-text {
    font-size: 0.85rem;
  }
}

.spot-ai {
  display: inline-block;
  background: linear-gradient(45deg, var(--accent-red), var(--primary-dark));
  color: var(--text-light);
  font-size: 0.7rem;
  font-weight: 600;
  padding: 4px 8px;
  border-radius: 12px;
  margin-right: 8px;
  margin-bottom: 2px; /* 4px → 2px に調整 */
  border: 1px solid var(--accent-gold);
  box-shadow: 0 2px 4px rgba(44, 62, 80, 0.2);
  font-family: 'Noto Sans JP', sans-serif;
  white-space: nowrap;
  vertical-align: middle; /* 縦位置を中央揃え */
  position: relative;
  overflow: hidden;
}

/* スポットタイトル全体の調整 */
.spot-title {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-dark);
  text-align: left;
  margin: 10px 0 8px 0;
  line-height: 1.4;
  display: flex;
  align-items: center;
  justify-content: flex-start; /* center → flex-start に変更 */
  flex-wrap: wrap;
  gap: 4px;
}

/* 光沢効果 */
.spot-ai::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.5s ease;
}

.spot-ai:hover::before {
  left: 100%;
}

/* ホバー効果 */
.spot-ai:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(44, 62, 80, 0.3);
}

/* レスポンシブ対応 - タブレット */
@media (max-width: 768px) {
  .spot-title {
    flex-direction: column; /* 縦並びに変更 */
    gap: 6px;
  }
  
  .spot-ai {
    margin-right: 0; /* 右マージンを削除 */
    margin-bottom: 4px;
  }
}

/* レスポンシブ対応 - スマホ */
@media (max-width: 480px) {
  .spot-title {
    flex-direction: column; /* 縦並びを維持 */
    gap: 8px;
  }
  
  .spot-ai {
    font-size: 0.65rem;
    padding: 3px 6px;
    margin-right: 0;
    margin-bottom: 6px;
    align-self: center; /* 中央揃え */
  }
  
  .spot-title {
    font-size: 1rem;
  }
}

.eventbanner{
	width: 100%;
	text-align: center;
}

.eventbanner img{
	text-align: center;
	margin: 0 auto;
}

.event-text{
	text-align: center;
	margin-top: 26px;
	padding-bottom: 26px;
	border-bottom: var(--accent-gold) solid 1px;
}

.collabo{
	border: 1px solid #F1B2F3;
	background-color:#FFE4FE;
	border-radius: 6px;
	padding: 10px;
	font-size: 100%;
	line-height: 1.3;
	margin: 10px auto;
}

.collabo p{
	font-weight: bold;
	line-height: 1.6;
	margin-bottom: 10px;
}