.accommodation-container {
    max-width: 95%;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .accommodation-container {
        max-width: 100%;
    }
}

.accommodation-container h3 {
    color: var(--nature-blue);
} 

div.accommodation-container > section {
    margin: 60px 0;
    padding: 40px;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    backdrop-filter: blur(5px);
}

/* Common h2 styles for all sections */
div.accommodation-container > section h2 {
    text-align: center;
    margin-bottom: 30px;
    color: var(--nature-blue);
    font-size: 2.2em;
    position: relative;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    padding: 15px 0;
    transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

div.accommodation-container > section h2::after {
    content: '';
    display: block;
    width: 0;
    height: 3px;
    background: linear-gradient(to right, var(--primary-color), var(--accent-color));
    margin: 15px auto;
    border-radius: 2px;
    transition: width 0.8s ease-out;
    transition-delay: 0.3s;
}

div.accommodation-container > section h2.fade-in-section::after {
    width: 80px;
}

div.accommodation-container > section h2:hover {
    transform: translateY(-2px);
}

div.accommodation-container > section h2:hover::after {
    width: 120px;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    div.accommodation-container > section h2 {
        font-size: 1.5em;
        padding: 10px 0;
    }
}

div.accommodation-container > section:nth-of-type(3n+1) {
    background-color: var(--bg-color-1);
}

div.accommodation-container > section:nth-of-type(3n+2) {
    background-color: var(--bg-color-2);
}

div.accommodation-container > section:nth-of-type(3n) {
    background-color: var(--bg-color-3);
}

@media (max-width: 768px) {
    .accommodation-container {
        max-width: 100%;
        padding: 10px;
    }
    div.accommodation-container > section {
        padding: 20px;
        margin: 30px 0;
    }
}

/* Accommodation promo */
#accommodation-promo {
    max-width: 1100px;
    margin: 0 auto 36px;
  }
  .accommodation-promo-container {
    display: grid;
    gap: 16px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 12px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.08);
    padding: 16px;
  }
  @media (min-width: 992px) {
    .accommodation-promo-container {
      grid-template-columns: 48% 1fr;
      align-items: center;
    }
  }
  .accommodation-promo-container img {
    width: 100%;
  }
  .accommodation-promo-image {
    width: 100%;
    border-radius: 8px;
    object-fit: cover;
    aspect-ratio: 16/10;
  }
  .accommodation-promo-content h5 {
    margin: 0 0 8px;
    font-size: 1.5rem;
    color: #c0392b;
  }
  .accommodation-promo-content p {
    margin: 0 0 14px;
    color: #555;
  }
  
  /* Same-day + Notes */
  .notice-section {
    max-width: 1200px;
    margin: 0 auto;
  }
  .notice-section .info-furusato {
    background-color: #e8f5e9;
    border: 1px solid #a5d6a7;
    color: #2e7d32;
    font-weight: 700;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin: 14px 0 20px;
  }
  .notice-section .notice {
    background: #fffbe6; /* soft yellow */
    border: 1px solid #f0e68c;
    border-radius: 10px;
    padding: 18px;
  }
  .notice-section .notice h4 {
    margin: 0 0 10px;
    font-size: 1.3rem;
  }
  .notice-section .ticket-notes-list .warning {
    color: #d32f2f;
    font-weight: 800;
  }

/* ==== Accommodation Rich UI Enhancements ==== */
/* Embedded accommodation subtitle under ticket-info */
#ticket-info .section-subtitle {
  text-align: center;
  margin: -10px auto 20px;
  max-width: 900px;
}

/* Elevate room cards with hover and light sweep */
.room-card {
  position: relative;
  transition: transform .25s ease, box-shadow .25s ease;
}
.room-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(1200px 120px at 50% 0%, rgba(255,255,255,0.12), transparent 40%);
  pointer-events: none;
}
.room-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 28px rgba(0,0,0,.12);
}

/* Limited badge ribbon */
.room-ribbon {
  position: absolute;
  top: 12px;
  left: -8px;
  background: linear-gradient(45deg, #c0392b, #e67e22);
  color: #fff;
  padding: 6px 14px;
  font-size: .85rem;
  font-weight: 700;
  border-radius: 0 6px 6px 0;
  box-shadow: 0 4px 10px rgba(0,0,0,.12);
  z-index: 1;
}

/* Feature chips */
.chip-group {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 8px 0 4px;
}
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #334155;
  font-size: .85rem;
  border: 1px solid #e2e8f0;
}

/* Amenities box subtle decoration */
.amenities-box {
  position: relative;
  overflow: hidden;
}
.amenities-box::after {
  content: '';
  position: absolute;
  right: -60px;
  top: -60px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(192,57,43,.12), transparent 60%);
  border-radius: 50%;
}



/* Cards */
.room-cards {
  display: grid;
  gap: 24px;
}

.room-cards article {
    padding: 30px;
}

@media screen and (max-width: 768px) {
    .room-cards article {
        padding: 20px;
        padding-top: 50px;
    }
}

.room-card {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  background: #fff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  box-shadow: 0 6px 20px rgba(0,0,0,.06);
  overflow: hidden;
  align-items: center;
}
.accommodation-embedded {
  margin: 36px auto 0;
  background: #ffffff;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  padding: 16px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
  text-align: left;
}

.accommodation-embedded h3 {
  text-align: center;
  margin: 0 0 10px;
  font-size: 1.6rem;
}

.accommodation-embedded .section-subtitle {
  text-align: center;
}

.room-card.reverse {
  direction: rtl;
}
.room-card.reverse > * {
  direction: ltr;
}
@media (min-width: 992px) {
  .room-card {
    grid-template-columns: 48% 1fr;
  }
}

.room-card-media {
    padding: 30px;
}

.room-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
}

/* media grid for multiple images per room */
.room-media-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
@media (min-width: 640px) {
  .room-media-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.media-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0,0,0,.08);
}
.media-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
  display: block;
  transition: transform .4s ease;
}
.media-item:hover img {
  transform: scale(1.03);
}
.media-badge {
  position: absolute;
  left: 10px;
  bottom: 10px;
  background: rgba(0,0,0,0.55);
  color: #fff;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: .8rem;
  letter-spacing: .02em;
  backdrop-filter: blur(2px);
}
.media-caption {
  margin: 6px 4px 0;
  padding: 6px 8px;
  background: rgba(255,255,255,0.85);
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  font-size: .9rem;
  color: #374151;
}
.accommodation-embedded .room-card { position: relative; }
.accommodation-embedded .room-cards article:nth-of-type(1) {
  box-shadow: 0 12px 36px rgba(0,136,163,0.15);
}
.accommodation-embedded .room-cards article:nth-of-type(1)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #0088A3, #55B1BB);
}
.accommodation-embedded .room-cards article:nth-of-type(1) .media-badge {
  background: rgba(0,136,163,0.8);
}
.accommodation-embedded .room-cards article:nth-of-type(2) {
  box-shadow: 0 12px 36px rgba(192,57,43,0.15);
}
.accommodation-embedded .room-cards article:nth-of-type(2)::after {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 6px;
  width: 100%;
  background: linear-gradient(90deg, #c0392b, #e67e22);
}
.accommodation-embedded .room-cards article:nth-of-type(2) .media-badge {
  background: rgba(192,57,43,0.85);
}

.accommodation-embedded .room-card-media { padding: 0; }
.accommodation-embedded .room-media-grid { gap: 0; }
.accommodation-embedded .media-item { border-radius: 0; box-shadow: none; }
.accommodation-embedded .media-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0) 60%, rgba(0,0,0,0.18));
  pointer-events: none;
}
.accommodation-embedded .media-caption {
  margin: 8px 10px 10px;
  background: rgba(255,255,255,0.92);
  border-color: #e6e6e6;
}

.accommodation-embedded h3 { font-weight: 800; letter-spacing: .02em; }
.accommodation-embedded .room-card-body h4 { font-size: 1.2rem; }
.accommodation-embedded .room-lead { color: #444; font-size: 1.02rem; }

.accommodation-embedded .chip { background: #fff; border: 1px solid #e5e7eb; }
.accommodation-embedded .room-cards article:nth-of-type(1) .chip { border-color: rgba(0,136,163,0.3); }
.accommodation-embedded .room-cards article:nth-of-type(2) .chip { border-color: rgba(192,57,43,0.3); }

.accommodation-embedded .room-card{ transition: transform .25s ease, box-shadow .25s ease; }
.accommodation-embedded .room-card:hover{ transform: translateY(-6px); }

/* Public Bath Section */
.public-bath-info {
  margin-top: 30px;
  padding: 25px;
  background: #f8f9fa;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
  text-align: center;
}

.public-bath-info h4 {
  margin: 0 0 20px;
  font-size: 1.4em;
  color: var(--nature-blue);
}

.public-bath-images {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}

.public-bath-images img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: transform 0.3s ease;
}

.public-bath-images img:hover {
  transform: scale(1.02);
}

.public-bath-info p {
  margin: 0;
  font-size: 1.1em;
  color: #444;
}

@media (max-width: 768px) {
  .public-bath-images {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .public-bath-images img {
    height: 200px;
  }
  
  .public-bath-info {
    padding: 20px;
  }
  
  .public-bath-info h4 {
    font-size: 1.2em;
    margin-bottom: 15px;
  }
  
  .public-bath-info p {
    font-size: 1em;
  }
}
.room-card-body .room-lead {
  color: #555;
  margin: 6px 0 12px;
  line-height: 1.7;
}
.room-card-body {
  padding: 18px 20px;
}
.room-card-body h4 {
  margin: 0 0 10px;
  font-size: 1.6rem;
  color: #c0392b;
}

/* Specs */
.room-specs-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  margin-top: 8px;
}
@media (min-width: 640px) {
  .room-specs-grid {
    grid-template-columns: 1fr 1fr;
  }
}
.room-spec h5 {
  margin: 0 0 6px;
  font-size: 1.05rem;
  font-weight: 700;
}
.spec-list {
  list-style: none;
  padding: 0;
  margin: 0;
  color: #444;
}
.spec-list li + li {
  margin-top: 6px;
}

/* Amenities */
.amenities-box {
  margin-top: 26px;
  padding: 18px;
  background: #f8f9fa;
  border: 1px solid #e6e6e6;
  border-radius: 12px;
}
.amenities-box h4 {
  text-align: center;
  margin: 0 0 8px;
}
.amenities-box p {
  text-align: center;
  color: #555;
  margin: 0 0 16px;
}
.amenities-columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 768px) {
  .amenities-columns {
    grid-template-columns: 1fr 1fr;
  }
}
.amenities-columns h5 {
  color: var(--secondary-color);
  margin: 0 0 8px;
  font-size: 1.05rem;
  font-weight: 700;
  border-bottom: 2px solid #e5e5e5;
  padding-bottom: 6px;
}
.amenities-list {
  list-style: none;
  padding: 0;
  margin: 0;
  columns: 2;
  column-gap: 16px;
  color: #444;
}
.amenities-list li {
  break-inside: avoid;
  margin-bottom: 6px;
}

/* CTA */
.accommodation-cta {
  text-align: center;
  margin-top: 18px;
}
.accommodation-cta .cta-button {
  color: #fff !important;
  padding: 12px 18px;
  border-radius: 6px;
  display: inline-block;
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}
.accommodation-cta .cta-button:hover {
  box-shadow: 0 8px 18px rgba(192,57,43,.25);
  transform: translateY(-1px);
}

.amuse-village-image-box {
  margin-bottom: 5rem;
}

.amuse-village-image {
  text-align: center;
}

/* ふるさと納税プラン用のスタイル */
.plan-details-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.95), rgba(248, 250, 252, 0.95));
  border-radius: 15px;
  padding: 30px;
  margin: 20px 0;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(0, 136, 163, 0.1);
  transition: all 0.3s ease;
}

.plan-details-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.plan-features {
  margin-bottom: 25px;
}

.plan-features h4 {
  color: var(--nature-blue);
  font-size: 1.3em;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 2px solid rgba(0, 136, 163, 0.2);
  text-align: center;
}

.feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.feature-list li {
  position: relative;
  padding: 12px 0 12px 35px;
  margin-bottom: 8px;
}

.plan-notes h4 {
  color: #d68910;
  font-size: 1.2em;
  margin-bottom: 15px;
  text-align: center;
}

.notes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notes-list li {
  position: relative;
  padding: 8px 0 8px 25px;
  margin-bottom: 6px;
  color: #8b4513;
}

.notes-list li::before {
  content: '⚠';
  position: absolute;
  left: 0;
  top: 8px;
  color: #d68910;
  font-weight: bold;
}

/* JRプラン用のスタイル */
#jr-accommodation {
  background: linear-gradient(135deg, rgba(46, 204, 113, 0.08), rgba(39, 174, 96, 0.12));
  border-radius: 15px;
  padding: 15px;
  margin: 20px 0;
  border: 1px solid rgba(39, 174, 96, 0.2);
}

.jr-button {
  background: linear-gradient(45deg, #2ecc71, #27ae60);
  color: white;
  padding: 12px 30px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
  display: inline-block;
}

.jr-button:hover {
  background: linear-gradient(45deg, #27ae60, #229954);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(46, 204, 113, 0.4);
}

/* ふるさと納税チケットカードの控えめなデザイン */
.furusato-ticket-cards {
  text-align: left;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
  margin: 2rem 0;
  padding: 0 1rem;
}

.furusato-ticket-card {
  background: rgba(255, 255, 255, 0.8);
  border-radius: 12px;
  padding: 1.5rem;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.08);
  position: relative;
  transition: all 0.3s ease;
  backdrop-filter: blur(5px);
}

.furusato-ticket-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

@media (max-width: 768px) {
  .furusato-ticket-cards {
    padding: 0;
  }
}

.ticket-header {
  text-align: center;
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.ticket-header h4 {
  color: var(--text-color);
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
  font-weight: 600;
}

.price-amount {
  font-size: 2rem;
  font-weight: 700;
  color: var(--text-color);
  line-height: 1;
}

.price-currency {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-light);
}

.price-note {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 400;
  text-align: center;
  margin-top: 0.3rem;
}

.ticket-features {
  margin-bottom: 1.5rem;
}

.ticket-features .feature-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.ticket-features .feature-list li {
  position: relative;
  padding: 0.5rem 0 0.5rem 1.5rem;
  margin-bottom: 0.3rem;
  color: var(--text-light);
  font-size: 0.9rem;
  line-height: 1.4;
}

.ticket-features .feature-list li::before {
  content: '•';
  position: absolute;
  left: 0.5rem;
  top: 0.5rem;
  color: var(--text-light);
  font-weight: bold;
  font-size: 0.8rem;
}

.ticket-cta {
  text-align: center;
}

.furusato-single-button, .furusato-pair-button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(45deg, #e74c3c, #c0392b);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.3s ease;
  box-shadow: 0 3px 10px rgba(231, 76, 60, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.furusato-pair-button {
  background: linear-gradient(45deg, var(--accent-color), #FF8C00);
  box-shadow: 0 3px 10px rgba(238, 155, 0, 0.2);
}

.furusato-single-button:hover, .furusato-pair-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 5px 15px rgba(231, 76, 60, 0.3);
}

.furusato-pair-button:hover {
  box-shadow: 0 5px 15px rgba(238, 155, 0, 0.3);
}

.button-icon {
  font-size: 1rem;
}

/* レスポンシブデザイン */
@media (max-width: 768px) {
  .furusato-ticket-cards {
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
    padding: 0;
  }
  
  .furusato-ticket-card {
    padding: 1.25rem;
  }
  
  .price-amount {
    font-size: 1.8rem;
  }
  
  .ticket-header h4 {
    font-size: 1.2rem;
  }
  
  .furusato-single-button, .furusato-pair-button {
    padding: 0.65rem 1.25rem;
    font-size: 0.75rem;
  }
  
  .popular-badge {
    top: 10px;
    right: 10px;
    padding: 3px 8px;
    font-size: 0.7rem;
  }
}

/* ふるさと納税セクションの説明文 */
.day-of-ticket-info h4 {
  color: var(--nature-blue);
  font-size: 1.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  text-align: center;
}

.day-of-ticket-info > p {
  text-align: center;
  margin-bottom: 2rem;
  line-height: 1.6;
  font-size: 1rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

/* ふるさと納税の注意書き */
.furusato-note {
  margin-top: 2rem;
  padding: 1.5rem;
}

.furusato-note p {
  margin: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.5;
  text-align: left;
}

.furusato-note p:first-child {
  margin-top: 0;
}

.furusato-note p:last-child {
  margin-bottom: 0;
}

.amuse-village-hero {
  display: flex;
  align-items: center;
  gap: 3rem;
  margin-bottom: 5rem;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

@media (max-width: 768px) {
  .amuse-village-hero {
    margin-bottom: 2rem;
    gap: 0;
  }
}
.amuse-village-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(0,136,163,0.05) 0%, rgba(85,177,187,0.05) 100%);
  pointer-events: none;
}

.amuse-village-content {
  flex: 1;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #0088A3, #55B1BB);
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 25px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  box-shadow: 0 4px 15px rgba(0,136,163,0.3);
  animation: pulse 2s infinite;
}

.badge-icon {
  font-size: 1.1rem;
}

.amuse-village-content h3 {
  text-align: left;
  margin: 0 0 1.5rem;
  font-size: 2.2rem;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.2;
  background: linear-gradient(135deg, #1a202c, #2d3748);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.amuse-village-content .section-subtitle {
  text-align: left;
  font-size: 1.15rem;
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 2rem;
}

.hero-features {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 15px;
  font-size: 0.9rem;
  font-weight: 600;
  color: #2d3748;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.feature-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.amuse-village-image {
  flex: 1;
  position: relative;
}

.image-frame {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
}

.image-frame:hover {
  transform: scale(1.02);
  box-shadow: 0 25px 50px rgba(0,0,0,0.2);
}

.image-frame img {
  width: 100%;
  height: auto;
  display: block;
  transition: all 0.3s ease;
}

.overlay-content {
  text-align: center;
}

.overlay-text {
  font-size: 1.1rem;
  font-weight: 600;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
}

@media (max-width: 768px) {
  .amuse-village-hero {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }
  
  .amuse-village-content h3,
  .amuse-village-content .section-subtitle {
    text-align: center;
  }
  
  .amuse-village-content h3 {
    font-size: 1.8rem;
  }
  
  .hero-features {
    display: none;
  }
  
  .feature-item {
    font-size: 0.85rem;
    padding: 0.6rem 0.8rem;
  }
}

/* Accommodation notice styling to match top.html */
.accommodation-embedded .notice {
  background-color: #fff3cd;
  padding: 25px;
  margin: 20px 0;
  border-radius: 10px;
  text-align: left;
}

.accommodation-embedded .notice h4 {
  margin: 0 0 15px;
  font-size: 1.3rem;
  color: #856404;
  font-weight: 700;
}

.accommodation-embedded .notice h5 {
  margin: 20px 0 10px 0;
  font-size: 1.1rem;
  color: #856404;
  font-weight: 600;
  border-bottom: 1px solid #ffeaa7;
  padding-bottom: 5px;
}

.accommodation-embedded .notice h5:first-child {
  margin-top: 0;
}

.accommodation-embedded .ticket-notes-list {
  list-style: none;
  padding-left: 0;
  margin-left: 0;
}

.accommodation-embedded .ticket-notes-list li {
  margin-bottom: 10px;
  padding: 0 20px;
  position: relative;
}

.accommodation-embedded .ticket-notes-list li::before {
  content: "•";
  color: #856404;
  font-weight: bold;
  position: absolute;
  left: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .accommodation-embedded .notice {
    font-size: 0.85em;
    padding: 20px;
  }
  
  .accommodation-embedded .notice li {
    padding: 0 10px;
    margin-bottom: 8px;
  }
  
  .accommodation-embedded .notice h4 {
    font-size: 1.2rem;
  }
  
  .accommodation-embedded .notice h5 {
    font-size: 1rem;
  }
}

/* ========================================
   FURUSATO NOZEI SECTION - ENHANCED UI
   ======================================== */

/* FURUSATO NOZEI SECTION - 整理された見やすいデザイン */
.furusato-section {
  margin: 4rem 0;
  padding: 3rem 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
  border-radius: 20px;
  position: relative;
  overflow: hidden;
}

.furusato-section h3 {
  margin: 0 0 1rem;
  font-size: 2.2rem;
  font-weight: 700;
  color: #c0392b;
  text-align: center;
  position: relative;
  z-index: 2;
  text-shadow: none;
}

.furusato-section .section-subtitle {
  margin: 0 0 3rem;
  color: var(--text-color);
  font-size: 1.1rem;
  text-align: center;
  position: relative;
  z-index: 2;
  font-weight: 500;
  line-height: 1.6;
}

/* プラン概要カード */
.plan-overview {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  margin-bottom: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}

.overview-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
}

.overview-header h4 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--nature-blue);
}

.plan-badge {
  background: linear-gradient(135deg, var(--nature-blue), var(--accent-color));
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
}

.overview-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}

.overview-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f8fafc;
  border-radius: 12px;
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
}

.overview-item:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  background: #f1f5f9;
}

.item-icon {
  font-size: 2rem;
  flex-shrink: 0;
}

.item-content h5 {
  margin: 0 0 0.25rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--nature-blue);
}

.item-content p {
  margin: 0;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.4;
}

/* 詳細情報グリッド */
.plan-details-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.details-card {
  background: white;
  border-radius: 16px;
  padding: 2rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.details-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.details-card h4 {
  margin: 0 0 1.5rem;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--nature-blue);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--nature-blue);
  text-align: center;
}

/* 含まれるものリスト */
.included-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.included-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem 0;
  border-bottom: 1px solid #f1f5f9;
  font-size: 0.95rem;
  line-height: 1.5;
  color: var(--text-color);
}

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

.check-icon {
  color: var(--nature-blue);
  font-weight: bold;
  font-size: 1.1rem;
  flex-shrink: 0;
  margin-top: 0.1rem;
}

/* 情報セクション */
.info-sections {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.info-section h5 {
  margin: 0 0 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--primary-color);
  padding: 0.5rem 0.75rem;
  background: #fef7f0;
  border-radius: 6px;
  border-left: 3px solid var(--primary-color);
}

.info-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.info-list li {
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: var(--text-color);
  line-height: 1.5;
  position: relative;
  padding-left: 1.25rem;
}

.info-list li::before {
  content: "•";
  color: var(--primary-color);
  font-weight: bold;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

/* CTAボタン */
.plan-cta {
  text-align: center;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}

.furusato-button {
  display: inline-block;
  color: white;
  background: #c0392b;
  padding: 1.2rem 3rem;
  border-radius: 50px;
  font-weight: 700;
  font-size: 1.1rem;
  text-decoration: none;
  box-shadow: 0 8px 25px rgba(0, 136, 163, 0.3);
  transition: all 0.3s ease;
  border: none;
  text-transform: none;
  letter-spacing: normal;
}

.furusato-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(0, 136, 163, 0.4);
  background: linear-gradient(135deg, #007a96, var(--nature-blue));
}

/* モバイル対応 */
@media (max-width: 768px) {
  .furusato-section {
    padding: 2rem 1rem;
    margin: 2rem 0;
  }
  
  .furusato-section h3 {
    font-size: 1.5rem;
  }
  
  .overview-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .overview-item {
    padding: 0.875rem;
  }
  
  .item-icon {
    font-size: 1.5rem;
  }
  
  .plan-details-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .details-card {
    padding: 1.5rem;
  }
  
  .details-card h4 {
    font-size: 1.2rem;
  }
  
  .included-list li {
    font-size: 0.9rem;
    padding: 0.625rem 0;
  }
  
  .info-section h5 {
    font-size: 1rem;
  }
  
  .info-list li {
    font-size: 0.85rem;
  }
  
  .furusato-button {
    padding: 1rem 2rem;
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .overview-header {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }
  
  .overview-item {
    flex-direction: column;
    text-align: center;
    gap: 0.5rem;
  }
  
  .details-card {
    padding: 1.25rem;
  }
  
  .furusato-button {
    padding: 0.875rem 1.5rem;
    font-size: 0.95rem;
  }
}

/* ========================================
   JR SECTION - ENHANCED UI DESIGN
   ======================================== */

.jr-section {
  background: linear-gradient(135deg, #a8d5a8 0%, #cee6c1 100%);
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
  margin: 4rem 0;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(168, 213, 168, 0.2);
}

.jr-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, rgba(255,255,255,0.05) 100%);
  pointer-events: none;
}

.jr-hero {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 2;
  padding: 0 2rem;
}

.jr-hero-content {
  max-width: 600px;
  color: white;
}

.jr-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, #4a7c59, #3d6b4a);
  color: white;
  padding: 0.8rem 1.5rem;
  border-radius: 30px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 2rem;
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.05); }
}

.badge-icon {
  font-size: 1.3rem;
}

.jr-hero h3 {
  font-size: 2.8rem;
  font-weight: 800;
  color: white;
  margin-bottom: 1.5rem;
  line-height: 1.2;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.jr-hero .section-subtitle {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  font-weight: 500;
}

.jr-hero-image {
  max-width: 500px;
  position: relative;
}

.train-image {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.2);
  transition: transform 0.3s ease;
}

.train-image:hover {
  transform: scale(1.05);
}

/* JR Plan Cards */
.jr-plan-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
  gap: 2.5rem;
  position: relative;
  z-index: 2;
  padding: 0;
}

.jr-plan-card {
  background: rgba(255, 255, 255, 0.95);
  border-radius: 20px;
  padding: 3rem;
  box-shadow: 0 12px 35px rgba(0,0,0,0.15);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  text-align: center;
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(10px);
}

.jr-plan-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, #4a7c59, #3d6b4a);
}

.jr-plan-card::after {
  content: '';
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(74, 124, 89, 0.1) 0%, transparent 70%);
  pointer-events: none;
  transition: all 0.3s ease;
}

.jr-plan-card:hover {
  transform: translateY(-10px) scale(1.02);
  box-shadow: 0 20px 50px rgba(0,0,0,0.2);
}

.jr-plan-card:hover::after {
  transform: rotate(180deg);
}

.card-icon {
  margin-bottom: 2rem;
  position: relative;
  z-index: 2;
}

.card-icon .icon {
  font-size: 3.5rem;
  display: block;
  color: #4a7c59;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.jr-plan-card h4 {
  font-size: 1.8rem;
  font-weight: 800;
  color: #2c3e50;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 2;
}

.jr-plan-card p {
  color: #34495e;
  line-height: 1.7;
  margin-bottom: 2.5rem;
  font-size: 1.1rem;
  position: relative;
  z-index: 2;
}

.plan-features {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 2;
}

@media (max-width: 768px) {
  .plan-features {
    display: none;
  }
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: white;
  padding: 0.8rem 1.2rem;
  border-radius: 25px;
  font-size: 0.95rem;
  color: #2c3e50;
  border: 1px solid rgba(74, 124, 89, 0.2);
  font-weight: 600;
  transition: all 0.3s ease;
}

.feature-item:hover {
  background: linear-gradient(135deg, #4a7c59, #3d6b4a);
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(74, 124, 89, 0.3);
}

.feature-icon {
  font-size: 1.2rem;
}

.jr-button {
  background: linear-gradient(135deg, #4a7c59, #3d6b4a);
  color: white;
  padding: 1.2rem 2.5rem;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-size: 1.1rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  box-shadow: 0 8px 25px rgba(74, 124, 89, 0.3);
  position: relative;
  z-index: 2;
}

.jr-button::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #3d6b4a, #2d4a35);
  border-radius: 50px;
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.jr-button:hover {
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 15px 35px rgba(74, 124, 89, 0.4);
}

.jr-button:hover::before {
  opacity: 1;
}

/* Responsive Design */
@media (max-width: 768px) {
  .jr-section {
    padding: 3rem 0;
    margin: 2rem 0;
  }
  
  .jr-hero {
    flex-direction: column;
    text-align: center;
    gap: 2rem;
    padding: 0 1rem;
  }
  
  .jr-hero h3 {
    font-size: 2.2rem;
  }
  
  .jr-hero .section-subtitle {
    font-size: 1.1rem;
  }
  
  .jr-plan-cards {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 0;
  }
  
  .jr-plan-card {
    padding: 2rem;
  }
  
  .jr-plan-card h4 {
    font-size: 1.5rem;
  }
  
  .jr-plan-card p {
    font-size: 1rem;
  }
  
  .plan-features {
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
  }
  
  .feature-item {
    padding: 0.6rem 1rem;
    font-size: 0.9rem;
  }
  
  .jr-button {
    padding: 1rem 2rem;
    font-size: 1rem;
    max-width: 300px;
  }
}

@media (max-width: 480px) {
  .jr-section {
    padding: 2rem 0;
  }
  
  .jr-hero h3 {
    font-size: 1.8rem;
  }
  
  .jr-plan-card {
    padding: 1.5rem;
  }
}

.amenities-box h4 {
    color: #c0392b;
}

.room-spec h5 {
    color: var(--secondary-color);
}

.jr-fuji-five-lakes-accommodation-hero {
  background: #cee6c1;
}

.jr-fuji-five-lakes-accommodation-hero {
    display: flex;
    align-items: center;
    gap: 3rem;
    margin-bottom: 5rem;
    padding: 2rem;
    background: #cee6c1;
    border-radius: 20px;
    position: relative;
    overflow: hidden;
  }
  
  @media (max-width: 768px) {
    .jr-fuji-five-lakes-accommodation-hero {
      margin-bottom: 2rem;
      gap: 0;
    }
  }
  
  .jr-fuji-five-lakes-accommodation-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(0,136,163,0.05) 0%, rgba(85,177,187,0.05) 100%);
    pointer-events: none;
  }

  @media (max-width: 1024px) {
    .jr-fuji-five-lakes-accommodation-hero {
      flex-direction: column;
      text-align: center;
      padding: 1.5rem;
    }
    
    .jr-fuji-five-lakes-accommodation-content h3,
    .jr-fuji-five-lakes-accommodation-content .section-subtitle {
      text-align: center;
    }
    
    .amuse-village-content h3 {
      font-size: 1.8rem;
    }
  }

  .furusato-section h4 {
    color: #c0392b;
  }

  .details-card h4 {
    border-bottom: 2px solid #c0392b;
  }

/* 全体SOLD OUT オーバーレイ */
.hero-sold-out-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    z-index: 20;
}

.hero-sold-out-content {
    text-align: center;
    color: white;
}

.hero-sold-out-text {
    font-size: 4rem;
    font-weight: 900;
    letter-spacing: 0.2em;
    text-shadow: 3px 3px 6px rgba(0, 0, 0, 0.7);
    background: linear-gradient(45deg, #ffffff, #f0f0f0, #ffffff);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        background-position: -200% center;
    }
    50% {
        background-position: 200% center;
    }
}

@media (max-width: 768px) {
    .hero-sold-out-text {
        font-size: 2.5rem;
        letter-spacing: 0.1em;
    }
}