/* ===== リセット・ベーススタイル ===== */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth; /* スムーススクロールを追加 */
  font-size: 16px;
}

body {
  font-family: 'Noto Sans JP', 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  line-height: 1.7;
  color: #333;
  background-color: #fff;
  margin: 0;
  padding: 0;
}



/* ===== 画像・メディア ===== */
img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

figure {
  margin: 0;
}

/* ===== リンク ===== */
a {
  color: #0066cc;
  text-decoration: none;
}

a:hover {
  opacity: 0.8;
}

a:focus {
  outline: 2px solid #0066cc;
  outline-offset: 2px;
}

/* ===== コンテナ ===== */
.container, .wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== セクション共通 ===== */
section {
  padding: 80px 0;
}

/* ===== セクションヘッダー ===== */
.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header__eyebrow {
  font-size: 14px;
  color: #666;
  letter-spacing: 3px;
  margin-bottom: 15px;
  text-transform: uppercase;
  font-weight: 500;
}

.section-header__title, .section-title {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  margin: 0 0 25px;
  line-height: 1.3;
}

.section-header__line {
  width: 80px;
  height: 4px;
  background: linear-gradient(90deg, #ff6b6b, #4ecdc4);
  margin: 0 auto;
  border-radius: 2px;
}

/* ===== ボタン ===== */
.btn_02, .hero-btn {
  display: inline-block;
  padding: 18px 35px;
  background: linear-gradient(135deg, #ff6b6b, #ff8e8e);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  box-shadow: 0 6px 20px rgba(255, 107, 107, 0.3);
  border: none;
  cursor: pointer;
  font-size: 20px;
width: 90%;
  min-width: 200px;
}

.btn_02:hover, .hero-btn:hover {
  box-shadow: 0 8px 25px rgba(255, 107, 107, 0.4);
  color: white;
}

.hero-btn--secondary {
  background: linear-gradient(135deg, #4ecdc4, #44a08d);
  box-shadow: 0 6px 20px rgba(78, 205, 196, 0.3);
}

.hero-btn--secondary:hover {
  box-shadow: 0 8px 25px rgba(78, 205, 196, 0.4);
}

/* ===== テーブル ===== */
table {
  width: 100%;
  border-collapse: collapse;
  margin: 30px 0;
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

th, td {
  padding: 15px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
}

th {
  background: linear-gradient(135deg, #f8f9fa, #e9ecef);
  font-weight: 600;
  color: #495057;
}

tr:last-child td {
  border-bottom: none;
}

tr:hover {
  background-color: #f8f9fa;
}

.table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
}

/* ===== リスト ===== */
ul, ol {
  padding-left: 25px;
}

ul.list li, ul.disc li {
  margin-bottom: 12px;
  line-height: 1.6;
}

ul.list {
  list-style-type: disc;
}

ul.disc {
  list-style-type: circle;
}

/* ===== ユーティリティクラス ===== */
.t-c {
  text-align: center;
}

.mb-30 {
  margin-bottom: 30px;
}

.fwb {
  font-weight: 600;
}

.red, .red_b {
  color: #e74c3c;
  font-weight: 600;
}

.sp {
  display: none;
}

.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;
}

.anchor {
  display: block;
  position: relative;
  top: -100px;
  visibility: hidden;
}

/* ===== 募集要項セクション ===== */
.requirements {
  background: #f8f9fa !important;
  color: #333 !important;
  position: relative;
  overflow: hidden;
}

.requirements__deco-line {
  position: absolute;
  width: 100%;
  height: 2px;
  background: #ddd;
}

.requirements__deco-line--top {
  top: 0;
}

.requirements__deco-line--bottom {
  bottom: 0;
}

.req-grid {
  max-width: 1000px;
  margin: 0 auto;
}

.req-table {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
  opacity: 1 !important;
}

.req-list {
  margin: 0;
  padding: 0;
  background: transparent;
}

.req-row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 30px;
  padding: 25px 0;
  border-bottom: 2px solid #f0f0f0;
  align-items: start;
  background: transparent;
  position: relative;
}

.req-row:last-child {
  border-bottom: none;
}

.req-row::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: -20px;
  right: -20px;
  height: 1px;
  background: linear-gradient(90deg, transparent, #ddd, transparent);
}

.req-row:last-child::after {
  display: none;
}

.req-label {
  font-weight: 600;
  font-size: 16px;
  margin: 0;
  color: #333 !important;
  background: transparent;
}

.req-value {
  margin: 0;
  line-height: 1.6;
  color: #333 !important;
  background: transparent;
}

.price-display {
  margin-bottom: 15px;
  background: transparent;
}

.req-price {
  font-size: 3rem;
  font-weight: 700;
  color: #e74c3c !important;
  background: transparent;
}

.req-price-unit {
  font-size: 1.8rem;
  margin-left: 5px;
  color: #e74c3c !important;
}

.req-highlight {
  color: #e74c3c !important;
  font-weight: 600;
  background: transparent;
}

.req-note {
  font-size: 14px;
  color: #666 !important;
  margin: 8px 0 0;
  line-height: 1.5;
  background: transparent;
}

.req-small {
  font-size: 18px;
  font-weight: 600;
  color: #333 !important;
  background: transparent;
}

.req-single {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f8f9fa !important;
  background-color: #f8f9fa !important;
  padding: 18px 25px;
  border-radius: 12px;
  margin-top: 20px;
  border: 1px solid #e0e0e0;
  opacity: 1 !important;
}

.req-single-label {
  font-weight: 500;
  color: #333 !important;
  background: transparent;
}

.req-single-price {
  font-size: 1.8rem;
  font-weight: 700;
  color: #e74c3c !important;
  background: transparent;
}

/* 他のCSSからの干渉を防ぐ */
.requirements * {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.requirements .req-table * {
  background-color: inherit;
}

.requirements .section-header {
  background: transparent;
}

.requirements .section-header__title {
  color: #333 !important;
  background: transparent;
}

.requirements .section-header__eyebrow {
  color: #666 !important;
  background: transparent;
}

/* ===== 価格詳細セクション ===== */
.pricing-details {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.pricing-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.pricing-card:hover {
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.pricing-card--included {
  border-top: 4px solid #28a745;
}

.pricing-card--excluded {
  border-top: 4px solid #dc3545;
}

.pricing-card__title {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #333;
}

.pricing-card--included .pricing-card__title {
  color: #28a745;
}

.pricing-card--excluded .pricing-card__title {
  color: #dc3545;
}

.pricing-card__list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.pricing-card__list li {
  padding: 12px 0;
  border-bottom: 1px solid #f0f0f0;
  position: relative;
  padding-left: 25px;
}

.pricing-card__list li:last-child {
  border-bottom: none;
}

.pricing-card__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  top: 12px;
  font-weight: bold;
}

.pricing-card--included .pricing-card__list li::before {
  color: #28a745;
}

.pricing-card--excluded .pricing-card__list li::before {
  color: #dc3545;
}

.pricing-notes {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 60px;
}

.pricing-note-block {
  background: white;
  border-radius: 15px;
  padding: 35px;
  margin-bottom: 30px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #ff6b6b;
}

.pricing-note-block h4 {
  color: #333;
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #f0f0f0;
}

.pricing-note-block h5 {
  color: #555;
  font-size: 1.1rem;
  font-weight: 600;
  margin: 25px 0 15px;
}

.pricing-note-block p {
  line-height: 1.7;
  margin-bottom: 15px;
  color: #333;
}

.passport-info {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 20px;
}

/* ===== 取消料セクション ===== */
.cancellation {
  background: white;
}

.cancel-block {
  max-width: 1000px;
  margin: 0 auto;
}

.cancel-block__intro {
  font-size: 1.1rem;
  font-weight: 500;
  color: #555;
  text-align: center;
  margin-bottom: 30px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 10px;
}

.cancel-block__subtitle {
  font-size: 1.3rem;
  font-weight: 600;
  color: #333;
  margin: 30px 0 20px;
  padding-left: 15px;
  border-left: 4px solid #ff6b6b;
}

.cancel-table {
  margin: 30px 0;
}

.cancel-table__rate {
  text-align: center;
  font-weight: 600;
  color: #dc3545;
  font-size: 1.1rem;
}

.cancel-table__rate--full {
  background-color: #fff5f5;
  color: #c53030;
}

.cancel-notes {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
}

.cancel-notes p {
  margin-bottom: 10px;
  line-height: 1.6;
  color: #333;
}

/* ===== 申込フローセクション ===== */
.application-section {
  background: #f8f9fa;
  color: #333;
}

.application-flow {
  max-width: 1000px;
  margin: 0 auto;
}

.flow-step {
  background: white;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 30px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.flow-step:hover {
  background: #fafafa;
}

.step-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 25px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.step-number {
  background: linear-gradient(135deg, #ff6b6b, #4ecdc4);
  color: white;
  padding: 12px 20px;
  border-radius: 25px;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 1px;
}

.step-title {
  font-size: 1.4rem;
  font-weight: 600;
  margin: 0;
  color: #333;
}

.entry ul {
  margin: 0;
  padding-left: 20px;
}

.entry li {
  margin-bottom: 15px;
  line-height: 1.6;
  color: #333;
}

.application-period {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  margin-top: 25px;
  text-align: center;
  border: 1px solid #e0e0e0;
}

.bank-info {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 15px;
  margin: 20px 0;
  border: 1px solid #e0e0e0;
}

.bank {
  font-weight: 500;
  line-height: 1.8;
  margin: 0;
  color: #333;
}

/* ===== コンタクトセクション ===== */
.contact {
  background: #f8f9fa;
  color: #333;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
  gap: 40px;
  margin-bottom: 40px;
}

.contact-card {
  background: white;
  border-radius: 20px;
  padding: 40px;
  border: 1px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.contact-card__title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 25px;
  color: #e74c3c;
  border-bottom: 2px solid rgba(231, 76, 60, 0.3);
  padding-bottom: 10px;
}

.contact-card__body p {
  margin-bottom: 12px;
  line-height: 1.6;
  color: #333;
}

.contact-card__company {
  font-weight: 600;
  font-size: 1.1rem;
  color: #e74c3c;
}

.contact-card__tour-name {
  font-weight: 600;
  color: #4ecdc4;
}

address {
  font-style: normal;
  line-height: 1.8;
  color: #333;
}

.contact-card__domain-note {
  background: rgba(231, 76, 60, 0.1);
  padding: 10px 15px;
  border-radius: 8px;
  font-size: 14px;
  border-left: 3px solid #e74c3c;
  color: #333;
}

.contact-card__notes {
  list-style: none;
  padding: 0;
  margin: 20px 0;
}

.contact-card__notes li {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #333;
}

.contact-card__manager {
  font-size: 14px;
  line-height: 1.6;
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #e0e0e0;
  color: #333;
}

.company-info p {
  margin-bottom: 8px;
  font-size: 14px;
  color: #333;
}

.contact-logo {
  margin-top: 20px;
  text-align: center;
}

.contact-logo img {
  max-width: 250px;
  height: auto;
}

.contact-card__privacy {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.contact-card__privacy h4 {
  color: #333;
}

.contact-card__privacy p {
  color: #333;
}

.registration-info {
  text-align: center;
  padding: 20px;
  background: white;
  border-radius: 10px;
  border: 1px solid #e0e0e0;
}

.registration-info p {
  margin: 0;
  font-size: 14px;
  color: #666;
}

/* ===== フッター ===== */
.footer {
  background: #1a252f;
  color: white;
  padding: 30px 0;
}

.footer__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.footer-nav {
  text-align: center;
  font-size: 12px;
}

.footer-nav a {
  color: #bbb;
}

.footer-nav a:hover {
  color: #4ecdc4;
}

.separator {
  margin: 0 10px;
  color: #666;
}

/* ===== フォーカス・アクセシビリティ ===== */
*:focus {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

button:focus,
a:focus {
  outline: 2px solid #4ecdc4;
  outline-offset: 2px;
}

/* ===== レスポンシブ対応 ===== */
/* タブレット対応 */
@media (max-width: 1024px) {
  .container, .wrap {
    padding: 0 20px;
  }
  
  .pricing-grid {
    grid-template-columns: 1fr;
  }
  
  .pricing-notes {
    grid-template-columns: 1fr;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

/* スマートフォン対応 - 基本フォントサイズ14px */
@media (max-width: 768px) {
  /* 基本設定 */
  html {
    font-size: 14px; /* 基本フォントサイズを14pxに */
  }
  
  body {
    font-size: 14px;
  }
  
  .container, .wrap {
    padding: 0 15px;
  }
  
  section {
    padding: 60px 0;
  }
  
  /* セクションヘッダー */
  .section-header__title, .section-title {
    font-size: 2rem;
  }
  
  .section-header__eyebrow {
    font-size: 12px;
  }
  
  /* 募集要項セクション */
  .req-row {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 20px 0;
  }
  
  .req-label {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 700;
    color: #555 !important;
  }
  
  .req-value {
    margin-top: 0;
    padding-left: 10px;
    font-size: 14px;
  }
  
  .req-table {
    padding: 25px 20px;
  }
  
  .req-price {
    font-size: 2.2rem;
  }
  
  .req-note {
    font-size: 13px;
  }
  
  .req-small {
    font-size: 14px;
  }
  
  .req-single {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
  
  .req-single-label {
    font-size: 14px;
  }
  
  .req-single-price {
    font-size: 1.5rem;
  }
  
  /* 価格詳細セクション */
  .pricing-card {
    padding: 25px;
  }
  
  .pricing-card__title {
    font-size: 1.2rem;
  }
  
  .pricing-card__list li {
    font-size: 14px;
  }
  
  .pricing-note-block {
    padding: 25px;
    margin-bottom: 20px;
  }
  
  .pricing-note-block h4 {
    font-size: 1.1rem;
  }
  
  .pricing-note-block h5 {
    font-size: 1rem;
  }
  
  .pricing-note-block p {
    font-size: 14px;
  }
  
  /* 取消料セクション */
  .cancel-block__intro {
    font-size: 14px;
  }
  
  .cancel-block__subtitle {
    font-size: 1.1rem;
  }
  
  .cancel-notes p {
    font-size: 14px;
  }
  
  /* テーブル */
  th, td {
    padding: 12px 15px;
    font-size: 14px;
  }
  
  /* 申込フローセクション */
  .flow-step {
    padding: 25px;
  }
  
  .step-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
  
  .step-title {
    font-size: 1.2rem;
  }
  
  .entry li {
    font-size: 14px;
  }
  
  .bank {
    font-size: 14px;
  }
  
  /* コンタクトセクション */
  .contact-card {
    padding: 25px;
  }
  
  .contact-card__title {
    font-size: 1.1rem;
  }
  
  .contact-card__body p {
    font-size: 14px;
  }
  
  .contact-card__company {
    font-size: 14px;
  }
  
  .contact-card__tour-name {
    font-size: 14px;
  }
  
  .contact-card__notes li {
    font-size: 14px;
  }
  
  .contact-card__manager {
    font-size: 13px;
  }
  
  .company-info p {
    font-size: 13px;
  }
  
  /* リスト */
  ul.list li, ul.disc li {
    font-size: 14px;
  }
  
  /* その他 */
  .sp {
    display: inline;
  }
  
  .footer-nav {
    line-height: 2;
    font-size: 11px;
  }
  
  .separator {
    display: block;
    margin: 5px 0;
  }
}

/* 小さなスマートフォン対応 */
@media (max-width: 480px) {
  /* 基本設定 */
  html {
    font-size: 14px; /* 14px維持 */
  }
  
  body {
    font-size: 14px;
  }
  
  .section-header__title, .section-title {
    font-size: 1.8rem;
  }
  
  .btn_02, .hero-btn {
    padding: 15px 25px;
    font-size: 18px;
    min-width: 200px;
  }
  
  /* 募集要項セクション */
  .req-row {
    padding: 15px 0;
    gap: 8px;
  }
  
  .req-label {
    margin-bottom: 3px;
    font-size: 14px;
  }
  
  .req-value {
    padding-left: 5px;
    font-size: 14px;
  }
  
  .req-table {
    padding: 20px 15px;
  }
  
  .req-price {
    font-size: 2rem;
  }
  
  .req-note {
    font-size: 13px;
  }
  
  .req-small {
    font-size: 14px;
  }
  
  .req-single-label {
    font-size: 14px;
  }
  
  /* その他のセクション */
  .pricing-card {
    padding: 20px;
  }
  
  .pricing-note-block {
    padding: 20px;
  }
  
  .flow-step {
    padding: 20px;
  }
  
  .contact-card {
    padding: 20px;
  }
  
  /* テーブル */
  th, td {
    padding: 10px 12px;
    font-size: 14px;
  }
}

/* ===== 印刷用スタイル ===== */
@media print {
  .hero-btn, .btn_02 {
    background: #333 !important;
    color: white !important;
    box-shadow: none !important;
  }
  
  .section-header__line {
    background: #333 !important;
  }
  
  * {
    box-shadow: none !important;
    text-shadow: none !important;
  }
}

/* ===== スケジュールセクション ===== */
.schedule-section {
  background: white;
}

.schedule-table-wrapper {
  overflow-x: auto;
  margin: 20px 0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
}

.schedule-table {
  width: 100%;
  border-collapse: collapse;
  margin: 0;
  background: white;
  font-size: 16px;
  min-width: 800px;
}

.schedule-table thead th {
  background: #495057;
  color: white;
	  font-weight: 600;
  padding: 15px 8px;
  text-align: center;
  border: 1px solid #343a40;
  font-size: 14px;
  line-height: 1.3;
}

.schedule-table tbody td {
  padding: 12px 8px;
  border: 1px solid #ddd;
  vertical-align: top;
  font-size: 14px;
  line-height: 1.4;
}

/* 列幅設定 */
.day-col, .day-number {
  width: 8%;
  text-align: center;
}

.date-col, .date-info {
  width: 12%;
  text-align: center;
}

.location-col, .location {
  width: 15%;
}

.time-col, .time {
  width: 10%;
  text-align: center;
}

.transport-col, .transport {
  width: 12%;
  text-align: center;
}

.detail-col, .detail {
  width: 35%;
}

.meal-col, .meal {
  width: 8%;
  text-align: center;
vertical-align: middle!important;
}

/* 日次番号 */
.day-number {
  background: #e74c3c;
  color: white;
  font-weight: bold;
  font-size: 18px;
}

/* 日付情報 */
.date-info {
  background: #f8f9fa;
  font-weight: 600;
}

.date {
  line-height: 1.3;
}

/* 食事情報 */
.meal {
  background: #f8f9fa;
}

.meal-item {
  padding: 2px 0;
  font-size: 14px;
  border-bottom: 1px solid #e0e0e0;
}

.meal-item:last-child {
  border-bottom: none;
}

.meal-item.highlight {
  background: #fff3cd;
  color: #856404;
  font-weight: 600;
  border-radius: 3px;
  margin: 1px 0;
  padding: 3px;
}

/* ハイライト行（3日目のコンサート日） */
.highlight-row {
  background: rgba(255, 107, 107, 0.05);
}

.highlight-row:hover {
  background: rgba(255, 107, 107, 0.1);
}

/* 特別イベントのハイライト */
.concert-highlight {
  background: #fff5f5;
  padding: 8px;
  border-radius: 5px;
  border-left: 4px solid #e74c3c;
  font-weight: 600;
}

.dinner-highlight {
  background: #f0fdfa;
  padding: 8px;
  border-radius: 5px;
  border-left: 4px solid #4ecdc4;
  font-weight: 600;
}

.baseball-highlight {
  background: #eff6ff;
  padding: 8px;
  border-radius: 5px;
  border-left: 4px solid #3498db;
  font-weight: 600;
}

/* 行のホバー効果 */
.schedule-table tbody tr:hover {
  background-color: rgba(0, 0, 0, 0.02);
}

/* スケジュール注意事項 */
.schedule-notes {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 10px;
  margin-top: 30px;
  border-left: 4px solid #e74c3c;
}

.schedule-notes p {
  margin: 0;
  line-height: 1.6;
  color: #333;
  font-size: 14px;
}

/* ===== スケジュール - レスポンシブ対応 ===== */
@media (max-width: 768px) {
  .schedule-table-wrapper {
    margin: 15px -15px;
    border-radius: 0;
  }
  
  .schedule-table {
    font-size: 14px;
    min-width: 700px;
  }
  
  .schedule-table thead th {
    padding: 10px 5px;
    font-size: 12px;
  }
  
  .schedule-table tbody td {
    padding: 8px 5px;
    font-size: 14px;
  }
  
  .day-number {
    font-size: 16px;
  }
  
  .meal-item {
    font-size: 12px;
  }
  
  .concert-highlight,
  .dinner-highlight,
  .baseball-highlight {
    padding: 5px;
    font-size: 14px;
  }
  
  .schedule-notes {
    padding: 20px;
    margin: 20px 0;
    font-size: 14px;
  }
}

@media (max-width: 480px) {
  .schedule-table {
    min-width: 600px;
    font-size: 14px;
  }
  
  .schedule-table thead th {
    padding: 8px 3px;
    font-size: 12px;
  }
  
  .schedule-table tbody td {
    padding: 6px 3px;
    font-size: 14px;
  }
  
  .day-number {
    font-size: 14px;
  }
  
  .meal-item {
    font-size: 12px;
  }
  
  .schedule-notes {
    padding: 15px;
    font-size: 14px;
  }
}

.day{
	font-size: 120%;
	color: red;
	font-weight: bold;
}

/* コンサート情報 */
.concert {
  max-width: 600px;
  margin: 40px auto 0;
  padding: 20px;
  background: white;
  border: 1px solid #e0e0e0;
  text-align: center;
font-weight: bold;
}

.concert p {
  margin: 8px 0;
  line-height: 1.4;
  color: #333;
	  font-size: 1.1rem;

}

.concert p:first-child {
  margin-bottom: 12px;
}

.concert p strong {
  font-size: 1.3rem;
  color: #e74c3c;
  font-weight: 600;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .concert {
    max-width: 100%;
    margin: 30px auto 0;
    padding: 18px;
  }
  
  .concert p {
    font-size: 14px;
  }
  
  .concert p strong {
    font-size: 15px;
  }
}

@media (max-width: 480px) {
  .concert {
   
    margin: 25px auto 0;
    padding: 15px;
  }
  
  .concert p {
    font-size: 13px;
  }
  
  .concert p strong {
    font-size: 14px;
  }
}

/* ===== 価格詳細ノート ===== */
.pricing-notes {
  margin: 0;
}

.pricing-notes .pricing-note-block {
  margin-bottom: 30px;
}

.pricing-notes .pricing-note-block:last-child {
  margin-bottom: 0;
}

/* ===== お申込みの前に セクション ===== */
.requirements {
  background: #f8f9fa;
  padding: 80px 0;
}

.requirements h2 {
  font-size: 2.5rem;
  font-weight: 700;
  color: #333;
  text-align: center;
  margin-bottom: 50px;
  line-height: 1.3;
}

.requirements > div {
  max-width: 1000px;
  margin: 0 auto;
  padding: 0 20px;
}

.requirements ol {
  background: white;
  border-radius: 15px;
  padding: 40px;
  margin-bottom: 40px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
  border-left: 5px solid #ff6b6b;
  counter-reset: item;
  list-style: none;
  padding-left: 60px;
}

.requirements ol li {
  margin-bottom: 25px;
  line-height: 1.7;
  color: #333;
  position: relative;
  counter-increment: item;
}

.requirements ol li:before {
  content: counter(item);
  position: absolute;
  left: -40px;
  top: 0;
  background: #ff6b6b;
  color: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 14px;
}

.requirements ol li:last-child {
  margin-bottom: 0;
}

.requirements ol li a {
  color: #0066cc;
  text-decoration: underline;
}

.requirements ol li a:hover {
  opacity: 0.8;
}

/* 確認文 */
.requirements p.t-c {
  font-size: 1.2rem;
  color: #333;
  margin: 30px 0;
  padding: 20px;
  background: rgba(255, 107, 107, 0.1);
  border-radius: 10px;
  border: 2px solid #ff6b6b;
}

/* YES/NOボタン */
.yes_no {
  display: flex;
  gap: 30px;
  justify-content: center;
  margin-top: 40px;
}

.mokofo {
  display: inline-block;
  padding: 25px 40px;
  border-radius: 50px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  font-size: 1.3rem;
  min-width: 200px;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
  border: 3px solid transparent;
}

.mokofo.yes {
  background: linear-gradient(135deg, #28a745, #20c997);
  color: white;
}

.mokofo.yes:hover {
  box-shadow: 0 8px 25px rgba(40, 167, 69, 0.4);
  transform: translateY(-2px);
  color: white;
}

.mokofo.no {
  background: linear-gradient(135deg, #dc3545, #e74c3c);
  color: white;
}

.mokofo.no:hover {
  box-shadow: 0 8px 25px rgba(220, 53, 69, 0.4);
  transform: translateY(-2px);
  color: white;
}

.fs-70 {
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.9;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .requirements {
    padding: 60px 0;
  }
  
  .requirements h2 {
    font-size: 2rem;
    margin-bottom: 30px;
  }
  
  .requirements > div {
    padding: 0 15px;
  }
  
  .requirements ol {
    padding: 25px;
    padding-left: 50px;
  }
  
  .requirements ol li {
    margin-bottom: 20px;
    font-size: 14px;
  }
  
  .requirements ol li:before {
    left: -35px;
    width: 25px;
    height: 25px;
    font-size: 12px;
  }
  
  .requirements p.t-c {
    font-size: 1rem;
    padding: 15px;
  }
  
  .yes_no {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }
  
  .mokofo {
    padding: 20px 30px;
    font-size: 1.1rem;
    min-width: 250px;
  }
  
  .fs-70 {
    font-size: 0.8rem;
  }
}

@media (max-width: 480px) {
  .requirements ol {
    padding: 20px;
    padding-left: 45px;
  }
  
  .requirements ol li {
    font-size: 14px;
  }
  
  .requirements ol li:before {
    left: -30px;
    width: 22px;
    height: 22px;
    font-size: 11px;
  }
  
  .mokofo {
    padding: 18px 25px;
    font-size: 1rem;
    min-width: 200px;
  }
}

.pc{
	display: block!important;
}

@media (max-width: 768px) {
	.pc{
	display: none!important;
}
}