/* 基本設定・CSS変数 */
* {
  box-sizing: border-box;
}

:root {
  --primary-color: #3f7dbd;　/* 水 */
--primary-color-red: #A70f37; /* ワインレッド */
--primary-color-red-dark: #3566ab; /* こい水 */

  --secondary-color: #A70f37; /* ワインレッド */
 --secondary-color-b: #6F4E37;  /* コーヒーブラウン */
	
  --accent-color: #2d3085;     /* 深い青 */
  --gold-color: #f39c12;
  --text-color: #333;
  --bg-color: #ffffff;
  --light-bg: #f8f9fa;
  --light-text: #666;
  --border-color: #ddd;
  --shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  --border-radius: 8px;
  --transition: all 0.3s ease;
}

body {
  font-family: 
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    "Noto Sans JP",
    "Hiragino Kaku Gothic ProN",
    "Hiragino Sans",
    "BIZ UDPGothic",
    "Meiryo",
    "Yu Gothic",
    "MS PGothic",
    sans-serif;
  line-height: 1.8;
  color: var(--text-color);
  background-color: var(--bg-color);
  margin: 0;
  padding: 0;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

/* セクション共通 */
section {
  padding: 40px 0;
}

.section-title {
  font-size: clamp(1.8rem, 4vw, 2.2rem);
  text-align: center;
  margin-bottom: 30px;
  margin-top: 10px;
  color: var(--primary-color);
  position: relative;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

/* ボタン共通 */
.btn {
  display: inline-block;
  padding: 15px 35px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  border: 2px solid var(--primary-color);
  cursor: pointer;
  font-size: 1.1rem;
  letter-spacing: 0.05em;
}

.btn-primary {
  background: var(--primary-color);
  color: white;
}

.btn-primary:hover {
  background: #3566ab;
  border-color: #3566ab;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(51, 76, 131, 0.4);
}

/* ポイントセクション */
.point-section {
  background: #1a1a1a;
  padding: 50px 0;
}

.point-section .section-title {
  color: white;
  margin-bottom: 40px;
}

.point-section .section-title::after {
  background: linear-gradient(90deg, #FFD700, #FFC107);
}

.point-list {
  max-width: 900px;
  margin: 0 auto;
}

.point-item {
  display: flex;
  align-items: flex-start;
  gap: 20px;
  margin-bottom: 25px;
  padding: 20px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  transition: var(--transition);
}

.point-item:hover {
  transform: translateX(8px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 4px 15px rgba(201, 26, 66, 0.3);
}

.point-number {
  flex-shrink: 0;
  width: 45px;
  height: 45px;
  background: var(--primary-color);
  color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: bold;
  font-family: 'Times New Roman', serif;
}

.point-content h3 {
  color: var(--gold-color);
  margin-bottom: 8px;
  font-size: 1.44rem;
  font-weight: bold;
  letter-spacing: 0.05em;
	 font-family: 'Times New Roman', serif;
}

.point-content p {
  color: #e0e0e0;
  line-height: 1.5;
  font-size: 0.9rem;
  margin: 0;
text-align: left!important;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .point-section {
    padding: 40px 0;
  }
  
  .point-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 18px;
    margin-bottom: 20px;
  }
  
  .point-number {
    align-self: center;
    width: 40px;
    height: 40px;
    font-size: 1.1rem;
  }
  
  .point-content h3 {
    font-size: 1rem;
  }
  
  .point-content p {
    font-size: 0.85rem;
  }
}

@media (max-width: 480px) {
  .point-section {
    padding: 35px 0;
  }
  
  .point-item {
    padding: 15px;
    margin-bottom: 18px;
  }
  
  .point-number {
    width: 35px;
    height: 35px;
    font-size: 1rem;
  }
  
  .point-content h3 {
    font-size: 0.95rem;
    margin-bottom: 6px;
  }
  
  .point-content p {
    font-size: 0.8rem;
  }
}

/* 情報セクション */
.info-content {
  max-width: 1000px;
  margin: 0 auto;
}

.info-block {
  padding: 10px 0;
  margin-bottom: 5px;
}

.info-block h3 {
  color: var(--primary-color);
  border-bottom: 2px solid var(--primary-color);
  padding-bottom: 10px;
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.info-block ul {
  padding-left: 18px;
}

.info-block li {
  margin-bottom: 12px;
  line-height: 1.6;
  color: var(--text-color);
  font-size: 0.95rem;
}

.info-block li::marker {
  color: var(--primary-color);
}

.info-block p {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.info-block ol {
  padding-left: 18px;
}

.info-block ol li {
  color: var(--text-color);
  font-size: 0.95rem;
}

.highlight-date {
  background: linear-gradient(135deg, var(--primary-color), #3566ab);
  color: #FFFFFF!important;
  padding: 15px;
  border-radius: var(--border-radius);
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
  font-size: 1.2rem;
  letter-spacing: 0.05em;
}

.schedule-dates {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.date-item {
  background: var(--light-bg);
  padding: 15px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--primary-color);
  font-weight: bold;
  color: var(--text-color);
  font-size: 1.2rem;
}

.course-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.course-item {
  background: var(--light-bg);
  padding: 15px;
  border-radius: var(--border-radius);
  border-left: 4px solid var(--accent-color);
  color: var(--text-color);
  font-size: 1.3rem;
}

.course-item small {
  color: var(--light-text);
  font-size: 0.85rem;
}

/* テーブル共通 */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 15px 0;
}

.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}

.fee-table th,
.fee-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 0.9rem;
}



.fee-table th {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.plan-name {
  background: var(--light-bg);
  font-weight: bold;
  color: var(--primary-color);
}

.price {
  font-weight: bold;
  font-size: 1.1rem;
  color: var(--primary-color);
}

.unavailable {
  color: #999;
  font-style: italic;
}

/* タブ共通 */
.tab-btn {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.tab-btn:hover,
.tab-btn.active:hover {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(51, 76, 131, 0.3);
}

.tab-content,
.schedule-content {
  display: none;
}

.tab-content.active,
.schedule-content.active {
  display: block;
}

.tab-content h3,
.schedule-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}

/* 料金セクション */
.fee-note {
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.fee-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

/* スケジュールセクション */
/* スケジュールタブ */
.schedule-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 35px;
  flex-wrap: wrap;
}
.schedule-tab-btn {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 15px 20px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
  line-height: 1.4;
  min-width: 280px;
  flex: 1;
  max-width: 320px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.schedule-tab-btn:hover,
.schedule-tab-btn.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(51, 76, 131, 0.3);
}


.day-schedule {
  background: white;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.day-title {
  background: linear-gradient(135deg, var(--primary-color), #3566ab);
  color: #FFFFFF!important;
  padding: 18px;
  margin: 0;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.timeline {
  padding: 25px;
}

.timeline-item {
  display: flex;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid var(--border-color);
}

.timeline-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.meal{
	 border-top: 1px solid var(--border-color);
	text-align: center;
	font-size: 90%;
	padding: 10px 0;
}

.time {
  flex-shrink: 0;
  width: 100px;
  background: var(--primary-color);
  color: white;
  padding: 12px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: bold;
  height: fit-content;
  letter-spacing: 0.05em;
  font-size: 0.9rem;
}

.content h4 {
  color: var(--primary-color);
  margin-bottom: 0!important;
margin-top: 0!important;
  font-size: 1.0rem;
  font-weight: bold;
}

.content p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
margin-top: 0!important;
}

.highlight {
  color: var(--primary-color);
  font-weight: bold;
}

.event-highlight {
  background: var(--accent-color);
  color: white;
  padding: 6px 12px;
  border-radius: var(--border-radius);
  font-weight: bold;
  font-size: 1rem;
}

.stay-info {
  background: var(--light-bg);
  padding: 12px;
  border-radius: var(--border-radius);
  font-weight: bold;
  color: var(--primary-color);
  text-align: center;
  font-size: 0.95rem;
}

/* ホテルセクション */
.hotel-plans {
  display: grid;
  gap: 40px;
}

.hotel-plan {
  padding: 35px 0;
}

.hotel-plan h3 {
  color: var(--primary-color);
  border-bottom: 3px solid var(--primary-color);
  padding-bottom: 12px;
  margin-bottom: 25px;
  font-size: 1.4rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.hotel-plan p {
  color: var(--text-color);
  line-height: 1.6;
  font-size: 0.95rem;
}

.hotel-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 30px;
}

.hotel-item {
  background: white;
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.hotel-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.hotel-item h4 {
  color: var(--primary-color);
  margin-bottom: 12px;
  font-size: 1.1rem;
  font-weight: bold;
}

.hotel-link {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
  transition: var(--transition);
  font-size: 0.9rem;
}

.hotel-link:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.hotel-item.featured {
  grid-column: 1 / -1;
  background: white;
  box-shadow: var(--shadow);
}

/* ホテルギャラリー 
.hotel-gallery {
  margin-top: 30px;
}

.gallery-container {
  position: relative;
  height: 350px;
  border-radius: var(--border-radius);
  overflow: hidden;
  border: 2px solid var(--primary-color);
}

.hotel-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: var(--transition);
}

.hotel-img.active {
  opacity: 1;
}

.gallery-nav {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-top: 20px;
}

.gallery-btn {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 2px solid var(--primary-color);
  background: transparent;
  cursor: pointer;
  transition: var(--transition);
}

.gallery-btn.active,
.gallery-btn:hover {
  background: var(--primary-color);
}*/


/* ホテルギャラリー */
.hotel-gallery {
  margin-top: 30px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
}

.gallery-item {
  border-radius: var(--border-radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}

.gallery-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.hotel-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .hotel-img {
    height: 150px;
  }
}

@media (max-width: 480px) {
  .gallery-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }
  
  .hotel-img {
    height: 180px;
  }
}

/* 申込みセクション */
.steps {
  display: grid;
  gap: 35px;
  margin-top: 35px;
}

.step {
  display: flex;
  gap: 30px;
  background: white;
  padding: 35px;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
}

.step-number {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--primary-color), #3566ab);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: bold;
}

.step-content h3 {
  color: var(--primary-color);
  margin-bottom: 20px;
  font-size: 1.3rem;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.step-content p,
.step-content li {
  color: var(--text-color);
  line-height: 1.6;
  margin-bottom: 12px;
  font-size: 0.95rem;
}

.step-content ul {
  padding-left: 18px;
}

.step-content li::marker {
  color: var(--primary-color);
}

/* 申込みボタン（シンプル版） */
.cta-button {
  margin-top: 25px;
  text-align: center;
}

.cta-button .btn {
  display: inline-block;
  width: 90%;
  max-width: 500px;
  padding: 20px 40px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  text-align: center;
  transition: var(--transition);
}

.cta-button .btn-primary {
  background: #FF4500;  /* オレンジレッド */
  color: white;
  border: none;
  box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
}

.cta-button .btn-primary:hover {
  background: #FF6347;  /* トマト色 */
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(255, 69, 0, 0.6);
}



/* レスポンシブ対応 */
@media (max-width: 768px) {
  .cta-button .btn {
    width: 95%;
    padding: 18px 35px;
    font-size: 1.2rem;
  }
}

@media (max-width: 480px) {
  .cta-button .btn {
    width: 100%;
    padding: 16px 30px;
    font-size: 1.1rem;
  }
}

.bank-info {
  background: var(--light-bg);
  padding: 20px;
  border-radius: var(--border-radius);
  margin-top: 20px;
}

.bank-info h4 {
  color: var(--primary-color);
  margin-bottom: 15px;
  font-size: 1.1rem;
  font-weight: bold;
}

.bank-details p {
  margin: 8px 0;
  color: var(--text-color);
  font-size: 0.95rem;
}

.bank-details strong {
  color: var(--primary-color);
}

/* お問い合わせセクション */
.inquiry-section {
  background: var(--light-bg);
  padding: 25px 0;
}

.contact-details{
	text-align: center;
}
.contact-info {
  max-width: 900px;
  margin: 0 auto;
}

.contact-main h3 {
  color: var(--accent-color);
  line-height: 1.5;
  font-size: 1.1rem;
  font-weight: bold;
  letter-spacing: 0.05em;
text-align: center;
margin-top: 1.5rem;
}

.contact-main h4 {
  color: var(--primary-color);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.address {
  font-size: 0.9rem;
  line-height: 1.5;
  color: var(--text-color);
}

.contact-methods {
  display: grid;
  gap: 8px;
  margin-bottom: 20px;
}

.contact-item {
  color: var(--text-color);
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.contact-item strong {
  color: var(--primary-color);
  font-size: 0.9rem;
}

.contact-item small {
  color: var(--light-text);
  font-size: 0.75rem;
}

.contact-item a {
  color: var(--secondary-color);
  text-decoration: none;
  font-weight: bold;
}

.contact-item a:hover {
  color: var(--primary-color);
  text-decoration: underline;
}

.business-hours {
  color: var(--text-color);
  margin-bottom: 15px;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.business-hours strong {
  color: var(--primary-color);
  font-size: 0.95rem;
}

.business-hours p {
  font-size: 0.85rem;
  margin: 4px 0;
}

.important-note {
  background: var(--accent-color);
  padding: 10px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: bold;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  color: white;
  margin-bottom: 15px;
}

.management-info {
  margin-top: 15px;
}

.small-box {
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.small-box p {
  color: var(--text-color);
  margin: 4px 0;
  line-height: 1.4;
  font-size: 0.8rem;
text-align: left!important;
}

.small-box strong {
  color: var(--primary-color);
}

.small-text {
  font-size: 0.75rem;
  color: var(--light-text);
margin: 0;
}

/* 会社情報とロゴの横並び */
.company-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin: 20px 0;
}

.company-info {
  flex: 1;
}

.company-logos {
  flex-shrink: 0;
}

.company-logos img {
  max-width: 200px;
  height: auto;
}

/* 個人情報管理者とPマークの横並び */
.privacy-section {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  margin-top: 15px;
}

.privacy-info {
  flex: 1;
  padding: 0;
  background: none;
  box-shadow: none;
  border-radius: 0;
}

.privacy-info h5 {
  color: var(--primary-color);
  margin-bottom: 8px;
  font-size: 0.9rem;
}

.privacy-info p {
  color: var(--text-color);
  line-height: 1.4;
  font-size: 0.8rem;
  margin: 4px 0;
}

.privacy-mark {
  flex-shrink: 0;
}

.privacy-mark img {
  width: 50px;
  height: auto;
}

.management-number {
  text-align: center;
  margin-top: 15px;
  color: var(--light-text);
  font-size: 0.8rem;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .inquiry-section {
    padding: 20px 0;
  }
  
  .contact-main h3 {
    font-size: 1rem;
    margin-bottom: 12px;
  }
  
  /* スマホ時は縦並びに */
  .company-section,
  .privacy-section {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
  
  .company-logos img {
    max-width: 150px;
  }
  
  .privacy-mark img {
    width: 40px;
  }
}

@media (max-width: 480px) {
  .inquiry-section {
    padding: 15px 0;
  }
  
  .contact-main h3 {
    font-size: 0.95rem;
    line-height: 1.3;
  }
  
  .address {
    font-size: 0.85rem;
  }
  
  .contact-methods {
    gap: 6px;
  }
  
  .company-section,
  .privacy-section {
    gap: 10px;
  }
  
  .company-logos img {
    max-width: 120px;
  }
}

/* フッター */
footer {
  background: #2c3e50;
  color: #ecf0f1;
  padding: 35px 0 25px;
  border-top: 3px solid var(--primary-color);
  margin: 0;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  justify-content: center;
  margin-bottom: 30px;
}

.footer-links a {
  color: #bdc3c7;
  text-decoration: none;
  transition: var(--transition);
  font-weight: bold;
  font-size: 0.9rem;
}

.footer-links a:hover {
  color: var(--primary-color);
}

.footer-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  margin-bottom: 25px;
}

.knt-logo {
  height: 40px;
}

.p-mark {
  height: 50px;
}

.copyright {
  text-align: center;
  color: #95a5a6;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  section {
    padding: 30px 0;
  }
  
  .section-title {
    font-size: 1.6rem;
    margin-bottom: 25px;
  }
  
  .point-item {
    flex-direction: column;
    text-align: center;
    gap: 15px;
    padding: 20px;
  }
  
  .info-block {
    padding: 20px 0;
  }
  
  .fee-tabs {
    flex-direction: column;
    align-items: center;
  }
  
  .timeline-item {
    flex-direction: column;
    gap: 12px;
  }
  
  .time {
    width: auto;
    align-self: flex-start;
  }
  
  .step {
    flex-direction: column;
    text-align: left;
    padding: 25px;
  }
  
  .step-number {
    align-self: center;
  }
  
  .hotel-list {
    grid-template-columns: 1fr;
  }
  
  .gallery-container {
    height: 250px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 10px;
  }
  
  section {
    padding: 25px 0;
  }
  
  .point-item,
  .info-block,
  .hotel-plan,
  .step {
    padding: 5px 15px;
  }
  
  .btn {
    padding: 12px 25px;
    font-size: 1rem;
  }
  
  .fee-table th,
  .fee-table td {
    padding: 10px 4px;
    font-size: 0.85rem;
  }
  
  .day-title {
    padding: 15px;
    font-size: 1.2rem;
  }
  
  .timeline {
    padding: 15px;
  }
}

/* アクセシビリティ対応 */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* フォーカス表示 */
button:focus,
a:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 3px solid var(--gold-color);
  outline-offset: 2px;
}

/* キーボードナビゲーション時のみフォーカス表示 */
body:not(.keyboard-navigation) button:focus,
body:not(.keyboard-navigation) a:focus {
  outline: none;
}

/* レスポンシブ対応 - スケジュールタブ */
@media (max-width: 1024px) {
  .schedule-tabs {
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
  
  .schedule-tab-btn {
    min-width: 100%;
    max-width: 500px;
    min-height: 70px;
    font-size: 0.85rem;
    padding: 12px 15px;
  }
}

@media (max-width: 768px) {
  .schedule-tab-btn {
    font-size: 0.8rem;
    padding: 10px 12px;
    min-height: 65px;
    line-height: 1.3;
  }
}

@media (max-width: 480px) {
  .schedule-tab-btn {
    font-size: 1rem;
    padding: 8px 10px;
    min-height: 60px;
    line-height: 1.2;
  }
}

/* pre.html 専用スタイル */

/* お申込み前確認セクション */
.pre-confirmation-section {
  background: var(--bg-color);
  padding: 60px 0;
}

.pre-confirmation-section h3 {
  color: var(--primary-color);
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 40px;
  font-weight: bold;
  letter-spacing: 0.05em;
}

.pre-confirmation-section > div {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.pre-confirmation-section ol {
  background: var(--light-bg);
  padding: 30px;
  border-radius: var(--border-radius);
  border-left: 5px solid var(--primary-color);
  margin-bottom: 30px;
}

.pre-confirmation-section ol li {
  margin-bottom: 20px;
  line-height: 1.7;
  color: var(--text-color);
  font-size: 0.95rem;
}

.pre-confirmation-section ol li:last-child {
  margin-bottom: 0;
}

.pre-confirmation-section a {
  color: var(--secondary-color);
  text-decoration: underline;
  font-weight: bold;
}

.pre-confirmation-section a:hover {
  color: var(--primary-color);
}

/* 確認メッセージ */
.confirmation {
  background: var(--primary-color);
  color: white;
  padding: 20px;
  border-radius: var(--border-radius);
  text-align: center;
  font-weight: bold;
  font-size: 1.1rem;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

/* YES/NOボタン */
.yes_no {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 15px;
}

.mokofo {
  display: inline-block;
  padding: 20px 50px;
  border-radius: var(--border-radius);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.3rem;
  letter-spacing: 0.1em;
  transition: var(--transition);
  min-width: 150px;
  text-align: center;
}

.mokofo.yes {
  background: #28a745;
  color: white;
  border: 3px solid #28a745;
}

.mokofo.yes:hover {
  background: #218838;
  border-color: #218838;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
}

.mokofo.no {
  background: var(--accent-color);
  color: white;
  border: 3px solid var(--accent-color);
}

.mokofo.no:hover {
  background: #c0392b;
  border-color: #c0392b;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

/* YES/NOキャプション */
.yes_no-caption {
  text-align: center;
  color: var(--light-text);
  font-size: 0.9rem;
  font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .pre-confirmation-section {
    padding: 40px 0;
  }
  
  .pre-confirmation-section h3 {
    font-size: 1.5rem;
    margin-bottom: 30px;
  }
  
  .pre-confirmation-section ol {
    padding: 20px;
  }
  
  .pre-confirmation-section ol li {
    font-size: 0.9rem;
    margin-bottom: 15px;
  }
  
  .confirmation {
    font-size: 1rem;
    padding: 15px;
  }
  
  .yes_no {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
  
  .mokofo {
    padding: 18px 40px;
    font-size: 1.2rem;
    min-width: 200px;
  }
}

@media (max-width: 480px) {
  .pre-confirmation-section {
    padding: 30px 0;
  }
  
  .pre-confirmation-section > div {
    padding: 0 15px;
  }
  
  .pre-confirmation-section h3 {
    font-size: 1.3rem;
  }
  
  .pre-confirmation-section ol {
    padding: 15px;
  }
  
  .pre-confirmation-section ol li {
    font-size: 0.85rem;
  }
  
  .confirmation {
    font-size: 0.95rem;
    padding: 12px;
  }
  
  .mokofo {
    padding: 15px 35px;
    font-size: 1.1rem;
    min-width: 180px;
  }
  
  .yes_no-caption {
    font-size: 0.8rem;
  }
}

/* 記念グッズリンクボタン */
.point-content .goods-link {
  display: block;
  width: 100%;
  margin-top: 30px;
  padding: 12px 25px;
      background: #FF4500;
    box-shadow: 0 6px 20px rgba(255, 69, 0, 0.4);
  color: white;
  text-decoration: none;
  border-radius: 25px;
  font-size: 1.6rem;
  font-weight: bold;
  letter-spacing: 0.05em;
  transition: var(--transition);
  text-align: center;
}

.point-content .goods-link:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(51, 76, 131, 0.4);
 background: #FF6347;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .point-content .goods-link {
    padding: 10px 20px;
    font-size: 0.95rem;
  }
	.point-content p{
		padding-bottom: 12px;
	}
}

@media (max-width: 480px) {
  .point-content .goods-link {
    padding: 10px 18px;
    font-size: 0.9rem;
  }
}

/* 取消料セクション */
#cancel {
  background: var(--bg-color);
  padding: 50px 0;
}

#cancel .section-title {
  color: var(--primary-color);
  margin-bottom: 30px;
}

#cancel p {
  text-align: center;
  font-size: 1rem;
  color: var(--text-color);
  margin-bottom: 40px;
  font-weight: bold;
}

/* テーブルラッパー */
.table-wrap {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 0 auto;
  max-width: 800px;
}

/* 取消料テーブル */
.torikeshi {
  width: 100%;
  border-collapse: collapse;
  background: white;
  font-size: 0.95rem;

}

.torikeshi td {
  padding: 20px 15px;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  line-height: 1.6;
  vertical-align: middle;
}

.torikeshi tr:first-child td:first-child {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  text-align: center;
  width: 60%;
}

.torikeshi tr:first-child td:last-child {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  text-align: center;

}

.torikeshi tr:not(:first-child) td:first-child {
  background: var(--light-bg);
  font-weight: bold;
  text-align: center;
}

.torikeshi tr:not(:first-child) td:last-child {
  background: white;
  text-align: center;
  font-weight: bold;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.torikeshi tr:hover {
  background: rgba(51, 76, 131, 0.05);
}

/* スマホ用改行 */
.sp {
  display: none;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  #cancel {
    padding: 40px 0;
  }
  
  #cancel p {
    font-size: 0.95rem;
    margin-bottom: 30px;
  }
  
  .torikeshi {
    font-size: 0.85rem;
   
  }
  
  .torikeshi td {
    padding: 15px 10px;
  }
  
  .sp {
    display: inline;
  }
}

@media (max-width: 480px) {
  #cancel {
    padding: 35px 0;
  }
  
  #cancel p {
    font-size: 0.9rem;
  }
  
  .torikeshi {
    font-size: 0.8rem;
   
  }
  
  .torikeshi td {
    padding: 12px 8px;
  }
  
  .torikeshi tr:not(:first-child) td:last-child {
    font-size: 1rem;
  }
}

/* 料金セクション */
.fee-section {
  background: var(--bg-color);
  padding: 50px 0;
}

.fee-note {
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-color);
  font-weight: bold;
  margin-bottom: 30px;
  letter-spacing: 0.05em;
}

.fee-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 30px;
  flex-wrap: wrap;
}

.tab-btn {
  background: white;
  border: 2px solid var(--primary-color);
  color: var(--primary-color);
  padding: 12px 25px;
  border-radius: var(--border-radius);
  cursor: pointer;
  transition: var(--transition);
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.tab-btn:hover,
.tab-btn.active {
  background: var(--primary-color);
  color: white;
  transform: translateY(-1px);
  box-shadow: 0 3px 12px rgba(51, 76, 131, 0.3);
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.tab-content h3 {
  color: var(--primary-color);
  font-size: 1.3rem;
  margin-bottom: 15px;
  text-align: center;
}

/* テーブルスクロール */
.table-scroll {
  overflow-x: auto;
  border-radius: var(--border-radius);
  box-shadow: var(--shadow);
  margin: 15px 0;
}

/* 料金テーブル */
.fee-table {
  width: 100%;
  border-collapse: collapse;
  background: white;
  min-width: 700px;
}

.fee-table th,
.fee-table td {
  padding: 15px;
  text-align: center;
  border: 1px solid var(--border-color);
  color: var(--text-color);
  font-size: 0.9rem;
  vertical-align: middle;
}

.fee-table th {
  background: var(--primary-color);
  color: white;
  font-weight: bold;
  font-size: 1rem;
  letter-spacing: 0.05em;
}

.plan-name {
  background: var(--light-bg);
  font-weight: bold;
  color: var(--primary-color) !important;
}

/* 価格セルのスタイル - 重要度を上げる */
.fee-table .price {
  font-weight: bold !important;
  font-size: 1.4rem !important;
  color: var(--primary-color) !important;
}

.unavailable {
  color: #999 !important;
  font-style: italic;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .fee-table {
    min-width: 650px;
  }
  
  .fee-table th,
  .fee-table td {
    padding: 12px 8px;
    font-size: 0.85rem;
  }
  
  .fee-table .price {
    font-size: 1.3rem !important;
  }
}

@media (max-width: 768px) {
  .fee-section {
    padding: 40px 0;
  }
  
  .fee-tabs {
    flex-direction: column;
    align-items: center;
    gap: 8px;
  }
  
  .tab-btn {
    width: 100%;
    max-width: 300px;
    padding: 10px 20px;
    font-size: 0.9rem;
  }
  
  /* テーブルを最適化してスクロールを最小限に */
  .fee-table {
    min-width: 580px; /* 東京・名古屋発着が見えるように調整 */
  }
  
  .fee-table th,
  .fee-table td {
    padding: 10px 6px;
    font-size: 0.8rem;
    line-height: 1.3;
  }
  
  .fee-table th {
    font-size: 0.85rem;
  }
  
  .fee-table .price {
    font-size: 1.2rem !important;
    font-weight: 900 !important;
  }
  
  /* プラン名の列幅を調整 */
  .fee-table th:first-child,
  .fee-table td.plan-name {
    min-width: 80px;
  }
  
  /* 部屋タイプの列幅を調整 */
  .fee-table th:nth-child(2),
  .fee-table td:nth-child(2) {
    min-width: 90px;
  }
  
  /* 価格列の幅を確保 */
  .fee-table th:nth-child(3),
  .fee-table td:nth-child(3) {
    min-width: 120px;
  }
  
  .fee-table th:nth-child(4),
  .fee-table td:nth-child(4) {
    min-width: 100px;
  }
}

@media (max-width: 480px) {
  .fee-section {
    padding: 35px 0;
  }
  
  .tab-btn {
    padding: 8px 15px;
    font-size: 0.85rem;
  }
  
  /* さらにコンパクトに */
  .fee-table {
    min-width: 400px; /* 最小限のスクロールで主要情報が見える */
  }
  
  .fee-table th,
  .fee-table td {
    padding: 8px 4px;
    font-size: 0.75rem;
  }
  
  .fee-table .price {
    font-size: 1.1rem !important;
    font-weight: 900 !important;
  }
  
  /* 列幅をさらに最適化 */
  .fee-table th:first-child,
  .fee-table td.plan-name {
    min-width: 70px;
  }
  
  .fee-table th:nth-child(2),
  .fee-table td:nth-child(2) {
    min-width: 80px;
  }
  
  .fee-table th:nth-child(3),
  .fee-table td:nth-child(3) {
    min-width: 110px;
  }
  
  .fee-table th:nth-child(4),
  .fee-table td:nth-child(4) {
    min-width: 90px;
  }
}

/* スマホ用改行 */
.sp {
  display: none;
}

@media (max-width: 768px) {
  .sp {
    display: inline;
  }
}

/* テーブルスクロールのスタイリング改善 */
.table-scroll::-webkit-scrollbar {
  height: 8px;
}

.table-scroll::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.table-scroll::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 4px;
}

.table-scroll::-webkit-scrollbar-thumb:hover {
  background: var(--accent-color);
}

.hotel-note{
	font-size: 90%;
	line-height: 1.4;
	padding: 10px;
	width: 90%;
	margin: 0 auto;
	border: 1px dashed #7A7A7A;
}