@charset "utf-8";

/* カラーパレット */
:root {
  --primary-red: #90102d;
  --primary-blue: #063356;
  --light-beige: #e8e5de;
  --text-black: #333333;
  --text-gray: #666666;
  --border-gray: #d0d0d0;
  --white: #ffffff;
  --saturday-blue: #0066cc;
  --sunday-red: #cc0000;
}

/* リセット・ベース */
* {
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.6;
  color: var(--text-black);
  background: var(--white);
  margin: 0;
  padding: 0;
  font-size: 16px;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ヒーロー */
.hero {
  background: var(--light-beige);
  padding: 100px 0 40px;
  text-align: center;
}

.hero-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 0 20px;
}

.hero h1 {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--primary-red);
  margin-bottom: 15px;
  line-height: 1.3;
}

.hero-subtitle {
  font-size: 1.2rem;
  color: var(--primary-blue);
  margin-bottom: 30px;
  font-weight: 500;
  line-height: 1.5;
}

.hero-info {
  margin-top: 25px;
}

.tour-period {
  font-size: 1.1rem;
  color: var(--primary-red);
  font-weight: 600;
  margin-bottom: 15px;
  line-height: 1.4;
}

.tour-organizer {
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 500;
  margin-bottom: 0;
}

/* セクション */
.section {
  padding: 40px 0;
}

.bg-light {
  background: var(--light-beige);
}

.section-title {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 35px;
  margin-top: 50px;
  color: var(--primary-blue);
  font-weight: 700;
  padding-bottom: 15px;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
}

/* サブ見出し */
.sub-heading {
  font-size: 1.3rem;
  background-color: #063356;
  color: #FFFFFF;
  font-weight: 600;
  margin: 50px 0 20px 0;
  padding: 10px;
}

/* 条件ボックス */
.condition-box {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border: 2px solid var(--primary-red);
  margin-bottom: 30px;
}

/* 取消料ボックス */
.cancel-box {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border: 2px solid var(--primary-blue);
  margin-bottom: 30px;
}

/* 出発設定日 */
.priority-note {
  text-align: center;
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 25px;
  font-weight: 500;
}

.redbox {
  background: rgba(144, 16, 45, 0.15);
 
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 700;
  border: 2px solid var(--primary-red);
  display: inline-block !important;
  margin: 2px 1px;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* 土曜日・日曜日の色分け */
.date-sat {
  color: var(--saturday-blue);
  font-weight: 700;
  white-space: nowrap !important;
  display: inline-block !important;
  word-break: keep-all !important;
}

.date-sun {
  color: var(--sunday-red);
  font-weight: 700;
  white-space: nowrap !important;
  display: inline-block !important;
  word-break: keep-all !important;
}

/* 赤枠内の土日色分け */
.redbox.date-sat {
  color: var(--saturday-blue);
  background: rgba(144, 16, 45, 0.15);
  border: 2px solid var(--primary-red);
}

.redbox.date-sun {
  color: var(--sunday-red);
  background: rgba(144, 16, 45, 0.15);
  border: 2px solid var(--primary-red);
}

/* 日付間の区切り文字 */
.dates-table td .date-separator {
  margin: 0 2px;
  white-space: nowrap;
}

/* 旅行代金 */
.price-notes {
  text-align: center;
  margin-bottom: 25px;
}

.note-item {
  font-size: 1rem;
  color: var(--text-gray);
  margin-bottom: 6px;
  font-weight: 500;
}

/* テーブル共通 */
table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 15px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

th {
  background: var(--primary-blue);
  color: var(--white);
  padding: 12px 10px;
  text-align: center;
  font-weight: 700;
  font-size: 1rem;
  border: 1px solid rgba(255,255,255,0.2);
}

td {
  border: 1px solid var(--border-gray);
  padding: 10px;
  text-align: center;
  line-height: 1.5;
}

/* 出発日テーブル - レスポンシブ対応 */
.dates-table-wrapper {
  width: 100%;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
  overflow: hidden;
}

.dates-table {
  width: 100%;
  table-layout: fixed;
}

.dates-table th {
  background: var(--primary-blue);
  padding: 15px 8px;
  font-size: 1.1rem;
  font-weight: 600;
  width: 15%;
  min-width: 60px;
}

.dates-table td {
  padding: 15px 12px;
  font-size: 1.1rem;
  font-weight: 600;
  line-height: 2.5;
  color: var(--text-black);
  text-align: left;
  width: 85%;
  word-break: keep-all;
  overflow-wrap: normal;
}

/* 日付と曜日の改行防止を強化 */
.dates-table td span {
  white-space: nowrap !important;
  display: inline-block !important;
  margin: 2px 1px;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
}

/* 料金テーブル - レスポンシブ対応 */
.price-table-wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
  border-radius: 8px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.1);
}

.price-table {
  width: 100%;
  table-layout: fixed;
}

.price-table .price-category {
  background: var(--light-beige);
  padding: 15px 12px;
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-blue);
  width: 40%;
vertical-align: middle;
}

.price-table .price-amount {
  padding: 15px 12px;
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--primary-red);
  background: var(--white);
  width: 60%;
vertical-align: middle;
}

.price-table .free-row .price-amount {
  font-size: 1.8rem;
  background: rgba(144, 16, 45, 0.1);
}

/* 行程表 */
.schedule-note {
  text-align: center;
  font-size: 1rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 20px;
  padding: 12px;
  background: rgba(6, 51, 86, 0.1);
  border-radius: 6px;
  border-left: 4px solid var(--primary-blue);
}

.table-responsive {
  overflow-x: auto;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: var(--white);
  border: 1px solid var(--border-gray);
}

.schedule-table table {
  min-width: 600px;
}

.schedule-table th {
  padding: 12px 8px;
  font-size: 0.9rem;
}

.schedule-table td {
  padding: 10px 8px;
  font-size: 0.9rem;
}

.time-cell {
  color: var(--text-black);
  min-width: 50px;
  font-size: 0.9rem;
}

.place-cell{
  min-width: 80px;
}

.abstract-cell{
  min-width: 150px;
  text-align: left!important;
}

.meal-info {
  min-width: 60px;
  font-size: 0.85rem;
  line-height: 1.3;
}

/* 料金詳細 */
.price-details {
  margin-top: 30px;
}

.detail-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
  margin-bottom: 25px;
}

.detail-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border: 2px solid var(--primary-blue);
}

.detail-item h4 {
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.includes-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.includes-list li {
  margin-bottom: 10px;
  color: var(--text-gray);
  line-height: 1.6;
  position: relative;
  padding-left: 18px;
  font-size: 1rem;
}

.includes-list li::before {
  content: "•";
  color: var(--primary-red);
  font-weight: 700;
  position: absolute;
  left: 0;
}

/* その他詳細 */
.other-details {
  margin-top: 30px;
}

.other-details .detail-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 25px;
}

.other-details .small-detail-item {
  background: var(--white);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(0,0,0,0.08);
  border: 2px solid var(--primary-blue);
  text-align: left;
}

.other-details .small-detail-item h4 {
  color: var(--primary-red);
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 15px;
}

.other-details .small-detail-item p {
  font-size: 1rem;
  line-height: 1.6;
  margin: 0;
  color: var(--text-gray);
}

/* 小さな詳細グリッド（元の） */
.detail-grid-small {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 15px;
}

.small-detail-item {
  background: var(--light-beige);
  padding: 15px;
  border-radius: 8px;
  text-align: center;
}

.small-detail-item h4 {
  color: var(--primary-blue);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.small-detail-item p {
  font-size: 0.85rem;
  line-height: 1.4;
  margin: 0;
}

/* 注意事項 */
.cancel-table th {
  background: var(--primary-blue);
  font-size: 1rem;
  padding: 12px 8px;
}

.cancel-table td {
  vertical-align: middle;
  padding: 12px 8px;
}

/* 応募スケジュール */
.schedule-content {
  max-width: 900px;
  margin: 0 auto;
}

.schedule-subtitle {
  text-align: center;
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin-bottom: 25px;
}

/* 応募スケジュールのテーブルラッパー */
.schedule-content .table-responsive {
  overflow-x: visible;
  border-radius: 8px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.1);
  background: var(--white);
  border: 1px solid var(--border-gray);
}

/* 応募スケジュールのテーブル */
.schedule-content table {
  width: 100%;
  min-width: auto;
}

.schedule-content .note {
  color: var(--text-gray);
  font-size: 0.9rem;
  text-align: left;
  margin-top: 15px;
  padding: 12px;
  background: #FFF8E1;
  border-radius: 6px;
  border-left: 4px solid var(--primary-blue);
  line-height: 1.5;
}

.note {
  color: var(--text-gray);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 0;
}

/* お申込み手順 */
.steps {
  max-width: 900px;
  margin: 0 auto;
}

.step {
  display: flex;
  align-items: flex-start;
  margin-bottom: 30px;
  background: var(--white);
  padding: 25px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--light-beige);
}

.step-number {
  background: var(--primary-red);
  color: var(--white);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
  margin-right: 25px;
  flex-shrink: 0;
}

.step-content h4 {
  color: var(--primary-blue);
  margin-bottom: 12px;
  font-size: 1.3rem;
  font-weight: 700;
}

.step-content p {
  font-size: 1rem;
  line-height: 1.6;
}

.btn-application {
  display: inline-block;
  background: var(--primary-red);
  color: var(--white);
  padding: 15px 25px;
  border-radius: 20px;
  text-decoration: none;
  font-weight: 700;
  transition: all 0.3s ease;
  font-size: 1.5rem;
  box-shadow: 0 3px 10px rgba(0,0,0,0.2);
  margin: 20px auto;
  width: 90%;
  text-align: center;
}

.btn-application:hover {
  background: #7a0e26;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}

/* お問合せ */
.inquiry {
  background: var(--light-beige);
  padding: 50px 0;
}

.inquiry h3 {
  font-size: 1.4rem;
  text-align: center;
  margin-bottom: 35px;
  color: var(--primary-blue);
  font-weight: 700;
  position: relative;
  padding-bottom: 15px;
}

.inquiry h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: var(--primary-red);
  border-radius: 2px;
}

.knt {
  background: var(--white);
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  margin-bottom: 30px;
  border: 2px solid var(--primary-blue);
}

.knt h4 {
  color: var(--primary-red);
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.5;
}

.knt p {
  line-height: 1.6;
}

.knt a {
  color: var(--primary-blue);
  text-decoration: underline;
}

.knt a:hover {
  color: var(--primary-red);
}

.box {
  background: var(--light-beige);
  padding: 20px;
  border-radius: 8px;
  border-left: 4px solid var(--primary-red);
  margin-top: 20px;
}

.small {
  font-size: 0.9rem;
}

.att {
  color: var(--primary-red);
  font-weight: 600;
}

/* 管理番号 */
.management_number {
  background: var(--white);
  padding: 25px 0;
  border-top: 1px solid var(--border-gray);
}

.management_number p {
  text-align: center;
  color: var(--text-gray);
  font-size: 0.9rem;
  margin: 6px 0;
}

/* フッター */
footer {
  background: var(--primary-blue);
  color: var(--white);
  padding: 30px 0;
  text-align: center;
}

.footer-inner a {
  color: #cccccc;
  text-decoration: underline;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-inner a:hover {
  color: var(--white);
}

/* pre.html専用スタイル */
.pre-title {
  font-size: 2rem;
  color: var(--primary-red);
  margin-bottom: 40px;
  font-weight: 700;
  text-align: center;
  padding-bottom: 20px;
  position: relative;
}

.pre-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 4px;
  background: var(--primary-blue);
  border-radius: 2px;
}

.pre-content {
  background: var(--light-beige);
  padding: 40px;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(0,0,0,0.08);
  border: 2px solid var(--primary-red);
  max-width: 900px;
  margin: 0 auto;
}

.pre-content ol {
  margin: 0 0 30px 0;
  padding-left: 25px;
  list-style-type: decimal;
}

.pre-content ol li {
  margin-bottom: 20px;
  color: var(--text-black);
  line-height: 1.7;
  list-style-type: decimal;
}

.pre-content a {
  color: var(--primary-red);
  text-decoration: underline;
  font-weight: 600;
}

.pre-content a:hover {
  color: var(--primary-blue);
}

.confirmation {
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-black);
  text-align: center;
  margin: 30px 0 40px 0;
  padding: 20px;
  background: var(--white);
  border-radius: 10px;
  border: 2px solid var(--primary-red);
}

/* YES/NOボタン */
.yes_no {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin: 40px 0 20px;
}

.mokofo {
  display: inline-block;
  padding: 20px 50px;
  font-size: 1.4rem;
  font-weight: 800;
  text-decoration: none;
  color: var(--white) !important;
  border-radius: 15px;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
  min-width: 150px;
  text-align: center;
}

.mokofo.yes {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.mokofo.no {
  background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
}

.mokofo:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.3);
  color: var(--white) !important;
}

.mokofo.yes:hover {
  background: linear-gradient(135deg, #218838 0%, #1e7e34 100%);
}

.mokofo.no:hover {
  background: linear-gradient(135deg, #c82333 0%, #bd2130 100%);
}

.yes_no-caption {
  text-align: center;
  font-size: 1rem;
  color: var(--text-gray);
  font-weight: 500;
  margin-top: 15px;
}

/* pre.html専用のセクション調整 */
#overview {
  padding-top: 120px;
}

/* ユーティリティクラス */
.p-red {
  color: #90102d;
  font-weight: bold;
}

/* レスポンシブ */
@media (max-width: 768px) {
  body {
    font-size: 15px;
  }

  .hero {
    padding: 90px 0 35px;
  }

  .hero h1 {
    font-size: 1.8rem;
  }

  .hero-subtitle {
    font-size: 1rem;
  }

  .tour-period {
    font-size: 1rem;
  }

  .section {
    padding: 35px 0;
  }

  .section-title,
  .sub-heading {
    font-size: 1.5rem;
    margin-bottom: 25px;
  }

  .condition-box,
  .cancel-box {
    padding: 20px 15px;
    margin-bottom: 25px;
  }

  .dates-table th {
    font-size: 1rem;
    padding: 12px 6px;
    width: 20%;
  }

  .dates-table td {
    padding: 12px 10px;
    font-size: 1rem;
    width: 80%;
    line-height: 2.2;
  }

  .dates-table td span {
    margin: 1px 0;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }

  .redbox {
    font-size: 1rem;
    padding: 3px 5px;
    margin: 1px 0;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }

  .price-table .price-category,
  .price-table .price-amount {
    font-size: 0.9rem;
    padding: 12px 8px;
  }

  .price-table .price-amount {
    font-size: 1.3rem;
  }

  .price-table .free-row .price-amount {
    font-size: 1.5rem;
  }

  .step {
    flex-direction: column;
    text-align: center;
    padding: 20px;
  }

  .step-number {
    margin-right: 0;
    margin-bottom: 15px;
    width: 60px;
    height: 60px;
    font-size: 1rem;
  }

  .detail-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .other-details .detail-grid-small {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
  }

  .other-details .small-detail-item {
    padding: 20px 15px;
  }

  .detail-grid-small {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
  }

  .detail-item,
  .small-detail-item {
    padding: 20px 15px;
  }

  /* 行程表のスクロール表示 */
  .table-responsive::after {
    content: "← 横にスクロールできます →";
    display: block;
    text-align: center;
    color: var(--text-gray);
    font-size: 0.8rem;
    margin-top: 8px;
    padding: 5px;
  }

  /* 応募スケジュールのスクロールヒントを非表示 */
  .schedule-content .table-responsive::after {
    display: none !important;
  }

  /* pre.html用レスポンシブ */
  .pre-title {
    font-size: 1.6rem;
    margin-bottom: 30px;
  }

  .pre-content {
    padding: 30px 25px;
  }

  .pre-content ol {
    padding-left: 20px;
  }

  .pre-content ol li {
    margin-bottom: 15px;
    font-size: 0.95rem;
  }

  .confirmation {
    font-size: 1.1rem;
    padding: 15px;
    margin: 25px 0 30px 0;
  }

  .yes_no {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  .mokofo {
    padding: 18px 40px;
    font-size: 1.2rem;
    min-width: 200px;
    max-width: 280px;
    width: 100%;
  }

  .yes_no-caption {
    font-size: 0.9rem;
  }

  #overview {
    padding-top: 100px;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .container {
    padding: 0 15px;
  }

  .hero h1 {
    font-size: 1.6rem;
  }

  .section-title,
  .sub-heading {
    font-size: 1.3rem;
  }

  .condition-box,
  .cancel-box,
  .detail-item,
  .knt {
    padding: 20px 15px;
  }

  .dates-table th {
    padding: 10px 4px;
    width: 25%;
    font-size: 1rem;
  }

  .dates-table td {
    padding: 10px 8px;
    width: 75%;
    line-height: 2;
    font-size: 1rem;
  }

  .dates-table td span {
    margin: 1px 0;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }

  .redbox {
    padding: 2px 4px;
    margin: 1px 0;
    font-size: 1rem;
    white-space: nowrap !important;
    word-break: keep-all !important;
  }

  .price-table .price-category,
  .price-table .price-amount {
    font-size: 1rem;
    padding: 10px 6px;
  }

  .price-table .price-amount {
    font-size: 1.2rem;
  }

  .price-table .free-row .price-amount {
    font-size: 1.4rem;
  }

  .other-details .detail-grid-small {
    grid-template-columns: 1fr;
  }

  .detail-grid-small {
    grid-template-columns: 1fr;
  }

  .schedule-table th,
  .schedule-table td {
    padding: 8px 4px;
    font-size: 0.75rem;
  }

  /* pre.html用レスポンシブ */
  .pre-title {
    font-size: 1.4rem;
    margin-bottom: 25px;
  }

  .pre-content {
    padding: 25px 20px;
  }

  .pre-content ol li {
    font-size: 0.9rem;
    line-height: 1.6;
  }

  .confirmation {
    font-size: 1rem;
    padding: 12px;
  }

  .yes_no {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .mokofo {
    padding: 16px 35px;
    font-size: 1.1rem;
    min-width: 180px;
    max-width: 250px;
    width: 90%;
  }

  .yes_no-caption {
    font-size: 0.85rem;
    line-height: 1.4;
  }

  #overview {
    padding-top: 90px;
  }
}

/* 青枠スタイルを修正 - より青く見えるように */
.bluebox {
  background: rgba(0, 102, 204, 0.1); /* より青い背景 */
  color: var(--primary-blue);
  padding: 4px 6px;
  border-radius: 4px;
  font-weight: 700;
  border: 2px solid #0F00D1!important; /* より明るい青のボーダー */
  display: inline-block !important;
  margin: 2px 1px;
  white-space: nowrap !important;
  word-break: keep-all !important;
  overflow-wrap: normal !important;
	line-height: 1.4;
}

/* 青枠内の土日色分け */
.bluebox.date-sat {
  color: var(--saturday-blue);
  background: rgba(0, 102, 204, 0.1);
  border: 2px solid #0066cc;
}

.bluebox.date-sun {
  color: var(--sunday-red);
  background: rgba(0, 102, 204, 0.1);
  border: 2px solid #0066cc;
}

.daycaption{
	color: #0F00D1;
	font-size: 85%;
	font-weight: 400;
	text-align: center;
}

/* 行程表のサブタイトル */
.schedule-sub-title {
  font-size: 1.1rem;
  color: var(--primary-blue);
  font-weight: 600;
  margin: 30px 0 15px 0;
  padding: 8px 12px;
  background: rgba(6, 51, 86, 0.1);
  border-left: 4px solid var(--primary-blue);
  border-radius: 4px;
}

.schedule-sub-title:first-of-type {
  margin-top: 20px;
}

/* ヒーロー画像 */
.hero-content img {
  width: 48%;
  height: auto;
  margin: 0 1% 40px 1%;
  
  box-shadow: 0 3px 15px rgba(0,0,0,0.2);
  display: inline-block;
  vertical-align: top;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .hero-content img {
    width: 100%;
    margin: 0 0 15px 0;
    display: block;
  }
}

@media (max-width: 480px) {
  .hero-content img {
    margin-bottom: 10px;
  }
}

/* レスポンシブ時のセクションタイトル調整 */
@media (max-width: 768px) {
  .section-title {
    font-size: 1.5rem;
    margin-bottom: 25px;
    margin-top: 30px; /* 50pxから30pxに縮小 */
  }

  .sub-heading {
    font-size: 1.5rem;
    margin: 30px 0 20px 0; /* 50px 0 20px 0から30px 0 20px 0に縮小 */
  }

  .section {
    padding: 25px 0; /* 35px 0から25px 0に縮小 */
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 1.3rem;
    margin-top: 20px; /* さらに縮小 */
    margin-bottom: 20px;
  }

  .sub-heading {
    font-size: 1.3rem;
    margin: 20px 0 15px 0; /* さらに縮小 */
  }

  .section {
    padding: 30px 0; /* さらに縮小 */
  }
}

/* 最初のセクションタイトルの上マージンを調整 */
.section:first-of-type .section-title {
  margin-top: 0;
}

/* レスポンシブ時も同様 */
@media (max-width: 768px) {
  .section:first-of-type .section-title {
    margin-top: 0;
  }
}

@media (max-width: 480px) {
  .section:first-of-type .section-title {
    margin-top: 0;
  }
}

.no-phone {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
}