html, body {
  margin: 0;
  padding: 0;
  height: 100%;
  overflow-x: hidden; /* 横スクロールは防ぐが、縦スクロールは許可 */
  overflow-y: auto;
}

.first-view {
  position: relative;
  width: 100%;
  height: auto;  /* vhをやめる */
  overflow: hidden;
  display: block; /* flex は不要 */
}

/* 共通 img */
.first-view-img {
  display: block;
  width: 100%;
  height: auto;
  z-index: -1; /* 背景にしたいなら position: relative のままでもOK */
  position: relative; /* absoluteは外す */
}

/* PC */
.first-view-img.desktop-img {
  display: block;
}

.first-view-img.mobile-img {
  display: none;
}

/* スマホ */
@media (max-width: 767px) {
  .first-view-img.desktop-img {
    display: none;
  }
  .first-view-img.mobile-img {
    display: block;
    width: 100%;
    height: auto;
  }
}

/* iPad */
@media (min-width: 768px) and (max-width: 1024px) {
  .first-view-img.desktop-img {
    width: 100%;   /* 横幅にフィット */
    height: auto;  /* 縦は自動調整 */
  }
}

/* メインコンテンツエリアの調整 */
#primary {
  position: relative;
  z-index: 0;
}


.about-festival-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  background-color: var(--bg);
  min-height: 400px;
  flex-wrap: wrap;
}


.about-text-container {
  flex: 1;
  min-width: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-right: 40px;
  position: relative;
  height: 200px;
}

/* wellness の背景テキストのスタイル */
.wellness-bg-text {
  position: absolute;
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 8em; /* 大きめのフォントサイズ */
  color: #f5e0b0; /* 薄いオレンジ色 */
  transform: rotate(-20deg); /* 反時計回りに20度回転 */
  opacity: 0.7; /* 少し透明に */
  pointer-events: none; /* テキスト選択を無効にする */
  white-space: nowrap; /* 折り返しを防ぐ */
  z-index: 1; /* About festival より下に配置 */
}

/* About festival のタイトルのスタイル */
.about-festival-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.5em; /* フォントサイズ */
  color: #333; /* 濃いめの色 */
  font-weight: bold;
  z-index: 2; /* wellness より上に配置 */
  position: relative; /* z-index を機能させるため */
  text-shadow: 1px 1px 3px rgba(0,0,0,0.1); /* 影を追加 */
}



.about-content {
  flex: 1;
  min-width: 300px;
  text-align: left;
  padding-left: 5px; /* 画像との間にスペース */
}

.about-description {
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 23px;
  line-height: 1.8;
  color: #555;
}

@media (max-width: 768px) {

  .about-festival-section {
      flex-direction: column;
      padding: 60px 20px;
  }

  .about-text-container {
    padding-right: 0;
    margin-bottom: 30px; /* 上下にスペース */
    height: auto; /* スマートフォンでは高さの指定を解除または調整 */
  }

  .wellness-bg-text {
    font-size: 6em; /* 小さい画面では小さく */
  }

  .about-festival-title {
    font-size: 2em;
  }

  .about-content {
      text-align: center;
      padding-left: 0;
  }

  .about-description {
      font-size: 16px;
  }
}

@media (max-width: 480px) {

  .about-festival-section {
      padding: 60px 10px;
  }

}

.event-days-section {
  padding: 80px 40px;
  background-color: var(--bg);
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.event-card {
  overflow: hidden;
  width: calc(50% - 20px); /* 2つのカードとgapを考慮した幅 */
  max-width: 600px; /* カードの最大幅を設定（調整してください） */
  display: flex;
  flex-direction: column;
  padding: 40px 20px;
  box-sizing: border-box; /* paddingをwidthに含める */
}

/* レスポンシブ対応 */
@media (max-width: 1024px) { /* 2列表示から1列表示に切り替えるブレークポイント */
  .event-card {
    width: 100%; /* 1列表示の際は100%幅 */
    max-width: 760px; /* 必要に応じて調整 */
  }
}

.event-image-wrapper {
  position: relative;
  width: 100%;
  height: 430px;
  border-radius: 20px 20px 0 0;
}

.event-day-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}

/* 画像オーバーレイのスタイル */
.event-image-overlay {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px;
  box-sizing: border-box;
}

.event-catchphrase-main {
  background-color: #F89C23;
  color: #fff;
  padding: 5px 15px;
  font-size: 30px;
  margin-bottom: 5px;
  display: inline-block; /* テキストの幅に合わせて背景を調整 */
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.event-catchphrase-sub {
  background-color: #F89C23;
  color: #fff;
  padding: 5px 15px;
  font-size: 30px;
  display: inline-block; /* テキストの幅に合わせて背景を調整 */
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* 画像下部の情報エリアのスタイル */
.event-info-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 5px 0 0 0;
  text-align: center;
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* DAY1/DAY2 と日付をまとめる行のスタイル */
.event-date-row {
  display: flex; /* flexbox で横並びにする */
  align-items: center; /* 縦方向の中央揃え */
  gap: 15px; /* DAY1 と日付の間のスペース */
}

.event-day-label {
  background-color: #F89C23; /* DAY1/DAY2 の背景色 */
  color: #fff;
  padding: 0px 15px;
  font-size: 22px;
  font-weight: bold;
  display: inline-block; /* flexアイテムとして機能させるため */
  flex-shrink: 0; /* 縮小させない */
  margin-bottom: 0;
}

.event-date {
  font-size: 32px;
  color: #333;
  margin-bottom: 0;
}

.event-location {
  font-size: 25px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
}

.event-time {
  font-size: 27px;
  color: #333;
  margin-bottom: 0;
  line-height: 1.5;
}

.event-details {
  padding: 20px 30px;
  text-align: center;
}

.event-activities {
  font-size: 20px;
  line-height: 1.7;
  margin-bottom: 30px;
  color: #000;
  min-height: 90px; /* テキスト量による高さのずれを軽減 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  font-weight: bold;
}
/* デスクトップでは改行を無視 */
/* .event-activities br {
  display: none;
} */
@media (max-width: 768px) {
  .event-activities br {
      display: block; /* モバイルでは改行を有効に */
  }

  /* モバイルでの画像オーバーレイテキスト調整 */
  .event-image-overlay {
    padding: 10px;
  }
  .event-catchphrase-main {
    font-size: 16px;
    padding: 4px 12px;
  }
  .event-catchphrase-sub {
    font-size: 14px;
    padding: 4px 12px;
  }

  /* モバイルでのイベント情報テキスト調整 */
  .event-date-row {
    flex-wrap: wrap; /* 必要に応じて折り返す */
    justify-content: center;
    gap: 10px;
  }

  .event-day-label {
    font-size: 16px;
    padding: 4px 12px;
  }
  .event-date {
    font-size: 18px;
  }
  .event-location, .event-time {
    font-size: 14px;
  }  
}


@media (max-width: 480px) {
  
  .event-image-wrapper {
    height: 100px;
  }
    
  .event-day-image {
    height: auto;
  }

}


.yoga-session-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000000 !important;
  border: 4px solid #ff9900;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}

.yoga-session-button:hover {
  background-color: #ff9900;
  color: #fff;
}

.reservation-note {
  font-size: 12px;
  color: #000;
  margin-top: 15px;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .event-days-section {
      padding: 60px 20px;
      gap: 30px;
  }

  .event-card {
      max-width: none; /* 小さい画面では最大幅を解除 */
  }

  .event-details {
      padding: 25px 20px;
  }

  .event-activities {
      font-size: 14px;
      min-height: auto;
      text-align: center;
  }

  .yoga-session-button {
      font-size: 16px;
      padding: 10px 25px;
  }
}

@media (max-width: 480px) {

  .event-days-section {
      padding: 10px 10px;
  }

}

/* イベント動画セクション */
.event-movie-section {
  padding: 80px 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.movie-title-wrapper {
  position: relative;
  margin-bottom: 50px;
  text-align: left;
  padding-left: 0px;
  left: -35px;
}

.movie-section-title {
  font-family: 'Times New Roman', serif;
  font-size: 50px;
  color: #333;
  display: inline-block;
  position: relative;
  z-index: 2;
  margin: 0;
  line-height: 1;
  letter-spacing: 5px;
}

.movie-title-wrapper::before {
  content: "movie"; /* 背景に表示する文字 */
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  left: -50px;
  transform: rotate(-25deg);
  opacity: 0.8;
  z-index: 1;
  white-space: nowrap; /* 折り返しを防ぐ */
}

.movie-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 のアスペクト比を維持 */
  height: 0;
  overflow: hidden;
  max-width: 1200px; /* 動画の最大幅 */
  margin: 0 auto 15px auto; /* 中央寄せと下部の余白 */
}

.movie-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.movie-link-wrapper {
  margin-top: 20px;
  text-align: right;
}

.youtube-channel-link {
  font-size: 20px;
  color: #000000; /* ボタンと同じ色 */
  text-decoration: none;
  font-weight: bold;
  display: inline-block;
  padding: 0;
  transition: color 0.3s;
}

.youtube-channel-link:hover {
  color: #e68a00; /* ホバー時の色 */
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .movie-title-wrapper {
    left: -8px;
  }

  .movie-container {
    max-width: 850px;
  }
  
}
@media (max-width: 768px) {
  .event-movie-section {
      padding: 60px 20px;
  }

  .movie-section-title {
      font-size: 40px;
  }

  .movie-title-wrapper {
      text-align: center; /* モバイルでは中央寄せに戻す */
  }

  .movie-title-wrapper::before {
      font-size: 100px;
      top: -30px;
      left: 50%; /* モバイルでは中央寄せに戻す */
      transform: translateX(-50%) rotate(15deg); /* 中央寄せと傾き */
  }

  .movie-container {
      max-width: 100%;
      margin-left: 0;
      margin-right: 0;
  }

  .youtube-channel-link {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .movie-section-title {
      font-size: 35px;
  }

  .movie-title-wrapper::before {
      font-size: 80px;
      top: -20px;
      left: 50%;
      transform: translateX(-50%) rotate(15deg);
  }
}


.event-schedule-section {
  padding: 15px;
  background: var(--gradient-tabwaku);
  margin: 0 auto;
  font-weight: 400;
  font-style: normal;
  padding-bottom: 80px;
}

.tabs-container {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
}

.tab {
  width: 50%;
  max-width: 1200px;
  padding: 20px 0;
  text-align: center;
  background: var(--tab-hi-active);
  color: #AFAFAF;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s, color 0.3s;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  box-sizing: border-box;
  border-top: 1px solid #AFAFAF;
  border-right: 1px solid #AFAFAF;
  border-left: 1px solid #AFAFAF;
  border-bottom: 4px solid #AFAFAF;
}

.tab.active {
  background-color: var(--tab-active);
  color: #000;
  border-bottom: 4px solid black;
}

.tab-content {
  display: none;
  padding: 40px 20px;
  background: var(--gradient-tabnaka);
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.tab-content.active {
  display: block;
}

#content-day1 {
  background: var(--gradient-tabnaka);
}

.day1-content-section {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  border-radius: 10px;
  padding: 40px;
  box-sizing: border-box;
  flex-wrap: wrap;
}

.day1-image-wrapper {
  position: relative; /* オーバーレイの基準位置 */
  width: 100%;
  height: auto; /* 画像のアスペクト比を維持 */
}

.day1-left-column {
  flex: 1;
  min-width: 300px;
  padding-right: 40px;
  box-sizing: border-box;
}

.day1-left-column img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.day1-image-overlay {
  position: absolute;
  top: -40px;
  left: -40px;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* 上部に寄せる */
  align-items: flex-start; /* 左に寄せる */
  padding: 20px; /* 内側の余白 */
  box-sizing: border-box;
  pointer-events: none; /* オーバーレイ下の要素をクリック可能にする */
}

.day1-catchphrase-main {
  background-color: #F89C23; /* キャッチフレーズの背景色 */
  color: #fff;
  padding: 5px 15px;
  font-size: 30px;
  margin-bottom: 5px;
  display: inline-block;
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
}

.day1-catchphrase-sub {
  background-color: #F89C23; /* サブキャッチフレーズの背景色 */
  color: #fff;
  padding: 5px 15px;
  font-size: 30px;
  display: inline-block;
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
}


.day1-right-column {
  flex: 1;
  min-width: 300px;
  padding-left: 40px;
  box-sizing: border-box;
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.day1-info-block {
    padding: 30px 20px;
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.day1-info-block::before {
    content: "DAY1";
    font-family: duos-brush, sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 200px;
    color: #e0d9cd;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-15deg);
    z-index: 0;
    white-space: nowrap;
    opacity: 0.7;
}

.day1-info-block p {
    position: relative;
    z-index: 1;
    color: #333;
    line-height: 1.3;
}

.day1-date {
  font-size: 35px;
  font-weight: bold;
  margin-bottom: 5px;
  text-align: center;
  font-family: ads-ayumin, sans-serif;
}

.day1-location {
  font-size: 29px;
  margin-bottom: 5px;
  text-align: center;
  font-family: ads-ayumin, sans-serif;
}

.day1-time {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 30px;
  text-align: center;
  font-family: ads-ayumin, sans-serif;
}

.day1-description {
  font-size: 18px;
  text-align: left;
  max-width: 600px;
  margin: 0 auto;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

@media (max-width: 1024px) {
  .day1-content-section {
      flex-direction: column;
      padding: 30px;
  }

  .day1-left-column {
      padding-right: 0;
      margin-bottom: 30px;
  }

  .day1-right-column {
      padding-left: 0;
      text-align: center;
  }

  .day1-description {
    text-align: center;
  }
  

}

@media (max-width: 768px) {

  .event-schedule-section {
    padding-bottom: 60px;
  }
  .tab {
      font-size: 20px;
      padding: 15px 0;
  }

  .tab-content {
      padding: 30px 15px;
  }
  
  .day1-content-section {
      padding: 20px;
  }
  .day1-date {
      font-size: 22px;
  }
  .day1-location {
      font-size: 18px;
  }
  .day1-time {
      font-size: 22px;
  }
  .day1-description {
      font-size: 14px;
      padding: 0 10px;
  }
  .day1-info-block::before {
      font-size: 150px;
  }
}

@media (max-width: 480px) {
  .tab {
    font-size: 18px;
    padding: 12px 0;
  }

  .day1-content-section {
      padding: 15px;
  }
  .day1-left-column {
      min-width: unset;
      margin-bottom: 20px;
  }
  .day1-right-column {
      min-width: unset;
      margin-bottom: 20px;
  }
    
  .day1-catchphrase-main {
    font-size: 16px;
  }
  .day1-catchphrase-sub {
    font-size: 16px;
  }
  .day1-date {
      font-size: 20px;
  }
  .day1-location {
      font-size: 16px;
  }
  .day1-time {
      font-size: 20px;
  }
  .day1-description {
      font-size: 13px;
  }

  .day1-info-block {
      padding: 10px 0 10px;
  }

  .day1-info-block::before {
      font-size: 100px;
  }
}

/* DAY1 タイムテーブルセクションのスタイル */
.day1-timetable-section {
  max-width: 1200px;
  margin: 60px auto 0 auto;
  padding: 20px;
  border-radius: 20px;
  text-align: center;
  position: relative;
  overflow: hidden; /* 背景の文字を隠すため */
}

.day1-timetable-inner-section{
  margin-top:30px;
  padding: 40px 0;
  background: linear-gradient(to bottom, #ffcc00, #ff9900, #ff6600);
}

.day1-timetable-section .timetable-title {
  font-style: normal;
  margin-bottom: 10px;
  font-weight: bold;
}

.day1-timetable-section .timetable-title .bg-text-jp {
  font-size: 36px;
  font-family: ads-ayumin, sans-serif;
  color: #333;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}


.day1-timetable-section .timetable-title .bg-text-en {
  font-family: duos-brush, sans-serif;
  font-size: 80px;
  color: #ffffff;
  position: absolute;
  top: 50px;
  left: 13%;
  transform: translateX(-50%) rotate(-24deg);
  z-index: 0;
  white-space: nowrap;
  opacity: 0.8;
}

.day1-timetable-section .timetable-location,
.day1-timetable-section .timetable-time {
  font-family: ads-ayumin, sans-serif;
  font-style: normal;
  font-weight: 400;  
  font-size: 30px;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
}
.day1-timetable-section .timetable-time {
  font-size: 30px;
  font-weight: bold;
  color: #000;
}


.timetable-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2列 */
  gap: 15px; /* アイテム間の余白 */
  max-width: 1100px;
  margin: 30px auto 0 auto; /* 中央寄せと上部の余白 */
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.timetable-item {
  background: var(--timetable-item);
  padding: 15px 20px;
  border-radius: 10px;
  text-align: left;
  display: flex;
  align-items: flex-start; /* 垂直方向の配置を上揃えに */
  flex-wrap: wrap; /* 必要に応じて折り返す */
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

.timetable-item .item-time {
  background-color: black;
  color: white;
  padding: 5px 10px;
  border-radius: 5px;
  font-size: 18px;
  font-weight: bold;
  margin-right: 15px; /* 他の要素との間にスペース */
  flex-shrink: 0; /* 縮まないようにする */
  align-self: flex-start;
}

/* 新しく追加するコンテナのスタイル */
.timetable-item .activity-details {
  display: flex;
  flex-direction: column; /* 縦方向に並べる */
  flex-grow: 1; /* 利用可能なスペースを埋める */
}

.timetable-item .item-activity {
  font-size: 16px;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px; /* 演者名との間にスペース */
  /* 不要な flexbox 関連のプロパティを削除または調整 */
  flex-grow: 0; /* デフォルトの成長を維持 */
}

.timetable-item .item-performer {
  font-size: 19px;
  color: #000;
  margin-top: 0px;
  text-align: left; /* 左寄せに戻す */
}

.timetable-item .small-text {
  font-size: 16px;
}  


/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .tab-content {
    padding: 40px 10px;
  }

  .day1-timetable-section {
      padding: 30px 0px;
      margin-top: 40px;
  }

  .timetable-grid {
    max-width: 960px;
    margin: 30px auto 0 auto; /* 中央寄せと上部の余白 */
    gap: 5px;
  }

  .timetable-item {
    padding: 15px 10px;
  }

  .timetable-item .small-text {
    font-size: 14px;
  }
    
  .timetable-item .small-text2 {
    font-size: 17px;
  }  
    
  .timetable-item .small-text3 {
    font-size: 15px;
  }  
    
}

@media (max-width: 834px) {
  .day1-timetable-section {
      padding: 30px 20px;
      margin-top: 40px;
  }
  .day1-timetable-section .timetable-title {
      font-size: 30px;
  }
  .day1-timetable-section .timetable-title .bg-text-en {
      font-size: 80px;
      top: -20px;
  }
  .day1-timetable-section .timetable-location,
  .day1-timetable-section .timetable-time {
      font-size: 16px;
  }
  .day1-timetable-section .timetable-time {
      font-size: 20px;
  }
  .timetable-grid {
      grid-template-columns: 1fr; /* 1列にする */
      max-width: 530px;
      gap: 10px;
      margin-top: 20px;
  }
  .timetable-item {
    flex-direction: row; /* 横並びを維持 */
    align-items: flex-start; /* 上揃え */
    justify-content: flex-start;
  }
  .timetable-item .item-time {
      font-size: 16px;
      margin-right: 10px;
  }
  .timetable-item .item-activity {
    font-size: 15px; /* モバイルでのフォントサイズ調整 */
    margin-bottom: 3px; /* スペース調整 */
  }
  .timetable-item .item-performer {
      font-size: 16px; /* モバイルでのフォントサイズ調整 */
      text-align: left;
  }
}

@media (max-width: 480px) {
  .day1-timetable-section {
      padding: 20px 0px;
      margin-top: 30px;
  }
  .day1-timetable-section .timetable-title {
      font-size: 26px;
  }
  .day1-timetable-section .timetable-title .bg-text-en {
      font-size: 60px;
      top: -15px;
  }
  .day1-timetable-section .timetable-location,
  .day1-timetable-section .timetable-time {
      font-size: 14px;
      margin-bottom: 15px;
  }
  .day1-timetable-section .timetable-time {
      font-size: 18px;
  }

  .timetable-grid {
    max-width: 325px;
  }

  .timetable-item .item-time {
      font-size: 14px;
      padding: 4px 8px;
  }
  .timetable-item .item-activity {
      font-size: 13px;
      margin-bottom: 2px;
  }
  .timetable-item .item-performer {
      font-size: 12px;
  }

  .timetable-item .small-text {
    font-size: 9px;
  }  

  .timetable-item .small-text2 {
    font-size: 10px;
  }

  .timetable-item .small-text3 {
    font-size: 9px;
  }  
    
  .timetable-item .small-text4 {
    font-size: 11px;
  }  
    
  .timetable-item .small-text5 {
    font-size: 12px;
  }    

  .timetable-area {
    font-size: 20px !important;
  }
  
}

@media (max-width: 375px) {
  
  .event-schedule-section {
    padding: 15px 5px;
  }

  .day1-timetable-section {
      padding: 20px 1px;
      margin-top: 30px;
  }

}

@media (max-width: 320px) {

  .tab-content {
    padding: 30px 5px;
  }
  
  .day1-timetable-section {
      padding: 20px 0px;
  }

  .timetable-item {
    padding: 15px 7px;
  }
  .timetable-item .item-time {
    font-size: 12px;
    padding: 4px 3px;
  }
  .timetable-item .item-activity {
      font-size: 13px;
      margin-bottom: 2px;
  }
  .timetable-item .item-performer {
      font-size: 11px;
  }

  .timetable-item .small-text {
    font-size: 9px;
  }  

  .timetable-item .small-text2 {
    font-size: 10px;
  }  

  .timetable-item .small-text3 {
    font-size: 8px;
  }  
    
  .timetable-item .small-text4 {
    font-size: 10px;
  }  
    
  .timetable-item .small-text5 {
    font-size: 11px;
  }  

  .timetable-grid {
    max-width: 293px;
  }

}


/* DAY2コンテンツのスタイル */
#content-day2 {
  background-color: #f0ead6; /* DAY2コンテンツの背景色 */
  text-align: center;
}

.timetable-group{
  margin-top:30px;
  padding: 40px 10px;
  background: linear-gradient(to bottom, #ffcc00, #ff9900, #ff6600);
}

.timetable-area {
  background-color: #fff;
  border: 3px solid #f08d00;
  padding: 8px 20px;
  border-radius: 5px;
  color: #333;
  font-size: 28px;
  font-weight: bold;
  display: inline-block;
  margin: 0 auto 20px auto;
}

.day2-timetable-inner-section{
  margin-top:30px;
  padding: 40px 0;
}


.day2-info-block::before {
  content: "DAY2";
}


/* ヨガセッションハイライトセクションのスタイル */
.yoga-session-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
}

.yoga-session-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.yoga-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.yoga-session-content {
  flex: 1;
  min-width: 400px;
  padding-left: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.yoga-session-title{
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.yoga-session-title .bg-yoga-jp{
  font-size: 40px;
  color: #000;
  margin-bottom: 20px;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.yoga-session-title .bg-yoga-en {
  font-family: duos-brush, sans-serif;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -125px;
  left: 20px;
  transform: rotate(-15deg);
  z-index: 1;
  white-space: nowrap;
  opacity: 0.8;
}

.yoga-session-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.yoga-session-content .yoga-session-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #ff9900;
  border: 4px solid #ff9900;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
  margin-bottom: 15px;
  align-self: flex-start;
}

.yoga-session-content .yoga-session-button:hover {
  background-color: #ff9900;
  color: #fff;
}

.yoga-reservation-note {
  font-size: 12px;
  color: #888;
  margin-top: 0;
  margin-left: 22px;
  position: relative;
  z-index: 2;
  text-align: left;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .yoga-session-highlight {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }

  .yoga-session-image-wrapper {
      padding-right: 0;
      margin-bottom: 40px;
      min-width: unset;
  }

  .yoga-session-content {
      padding-left: 0;
      text-align: center;
      min-width: unset;
  }

  .yoga-session-title {
      font-size: 36px;
  }

  .yoga-session-title .bg-yoga-en {
      font-size: 120px;
      top: -40px;
      left: 50%;
      transform: translateX(-50%) rotate(-15deg);
  }

  .yoga-session-description {
      font-size: 15px;
  }

  .yoga-session-content .yoga-session-button {
      align-self: center;
  }

  .yoga-reservation-note {
      text-align: center;
  }
}

@media (max-width: 768px) {
  .yoga-session-highlight {
      padding: 40px 15px;
      margin-top: 30px;
  }

  .yoga-session-image-wrapper {
      margin-bottom: 30px;
  }

  .yoga-session-title {
      font-size: 30px;
  }

  .yoga-session-title .bg-yoga-en {
      font-size: 90px;
      top: -30px;
  }

  .yoga-session-description {
      font-size: 14px;
      margin-bottom: 25px;
  }

  .yoga-session-content .yoga-session-button {
      font-size: 16px;
      padding: 10px 25px;
  }
}

@media (max-width: 480px) {
  .yoga-session-title {
      font-size: 26px;
  }

  .yoga-session-title .bg-yoga-en {
      font-size: 70px;
      top: -20px;
  }

  .yoga-session-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
}


/* フラダンスハイライトセクションのスタイル */
.hula-dance-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap-reverse; /* ヨガセクションと左右を逆にする */
  position: relative;
}

.hula-dance-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hula-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.hula-dance-content {
  flex: 1;
  min-width: 400px;
  padding-right: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.hula-dance-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.hula-dance-title .bg-hula-jp {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}


.hula-dance-title .bg-hula-en {
  font-family: duos-brush, sans-serif;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  right: 20px;
  transform: rotate(15deg);
  z-index: 1;
  white-space: nowrap;
  opacity: 0.8;
}

.hula-dance-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hula-dance-highlight {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }

  .hula-dance-image-wrapper {
      padding-left: 0;
      margin-bottom: 40px; /* 画像の下に余白 */
      min-width: unset;
      order: 1; /* 画像を上に */
  }

  .hula-dance-content {
      padding-right: 0;
      text-align: center;
      min-width: unset;
      order: 2; /* テキストを下に */
  }

  .hula-dance-title {
      font-size: 36px;
  }

  .hula-dance-title .bg-hula-en {
      font-size: 120px;
      top: -40px;
      right: 50%;
      transform: translateX(50%) rotate(15deg); /* 中央寄せと傾き */
  }

  .hula-dance-description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hula-dance-highlight {
      padding: 40px 15px;
      margin-top: 30px;
  }

  .hula-dance-image-wrapper {
      margin-bottom: 30px;
  }

  .hula-dance-title {
      font-size: 30px;
  }

  .hula-dance-title .bg-hula-en {
      font-size: 90px;
      top: -30px;
  }

  .hula-dance-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .hula-dance-title .bg-hula-jp {
    font-size: 26px;
  }
  
  .hula-dance-title .bg-hula-en {
      font-size: 70px;
      top: -20px;
  }

  .hula-dance-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
}



/* スペシャルライブセクションのスタイル */
.special-live-section {
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.special-live-section::before {
  content: "LIVE";
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 250px;
  color: #f0ead6;
  position: absolute;
  top: 50px;
  right: 50px;
  transform: rotate(15deg);
  opacity: 0.8;
  z-index: 0;
  white-space: nowrap;
}

.special-live-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}

.special-live-intro {
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.artist-cards-container {
  display: flex;
  justify-content: center;
  gap: 100px;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
}

.artist-card {
  /* overflow: hidden; */
  width: 100%;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  position: relative; /* tap-hintの配置基準にするため */
}


/* タップヒントのスタイル */
.tap-hint {
  display: none; /* デフォルトは非表示 */
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-size: 15px;
  color: #000;
  text-align: center;
  margin-top: 10px; /* artist-descriptionとの間に余白 */
  bottom: 5px;
  left: 0;
  width: 100%;
  position: relative;
  z-index: 2;
}


.artist-image-wrapper {
  position: relative;
  width: 100%;
  padding-top: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover .artist-image-wrapper {
  transform: translateY(-5px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
}


.artist-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.artist-name-overlay {
  position: absolute;
  bottom: 20px;
  left: 0;
  background-color: #000;
  color: #fff;
  padding: 10px 15px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transform: translateX(-10px);
}

.artist-name-overlay .japanese-name {
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  font-size: 20px;
  font-weight: bold;
  line-height: 1.2;
}

.artist-name-overlay .english-name {
  font-family: 'Times New Roman', serif;
  font-size: 14px;
  line-height: 1.2;
  margin-top: 3px;
  font-style: italic;
}

.artist-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  padding: 20px;
  text-align: left;
  flex-grow: 1;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .special-live-section {
      padding: 60px 20px;
      margin-top: 40px;
  }
  .special-live-section::before {
      font-size: 200px;
      top: 30px;
      right: 20px;
  }
  .special-live-title {
      font-size: 36px;
  }
  .special-live-intro {
      font-size: 16px;
      margin-bottom: 40px;
  }
  .artist-cards-container {
      gap: 25px;
  }
  .artist-card {
      max-width: 300px;
  }
  .artist-name-overlay {
      padding: 8px 12px;
      transform: translateX(-8px);
  }
  .artist-name-overlay .japanese-name {
      font-size: 18px;
  }
  .artist-name-overlay .english-name {
      font-size: 13px;
  }
  .artist-description {
      font-size: 14px;
      padding: 18px;
  }
}

@media (max-width: 768px) {
  .special-live-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .special-live-section::before {
      font-size: 150px;
      top: 20px;
      right: 10px;
      transform: rotate(10deg);
  }
  .special-live-title {
      font-size: 30px;
  }
  .special-live-intro {
      font-size: 15px;
      margin-bottom: 30px;
  }
  .artist-cards-container {
      flex-direction: column; /* 縦並び */
      align-items: center;
      gap: 20px;
  }
  .artist-card {
      max-width: 90%; /* 幅を大きくする */
  }
  /* モバイルデバイスでタップヒントを表示 */
  .tap-hint {
    display: block; /* モバイルビューで表示 */
  }  
  /* モバイルではホバーエフェクトは不要なので、少し抑制 */
  .artist-card:hover .artist-image-wrapper {
    transform: none; /* ホバー時の移動を無効化 */
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1); /* ホバー時のシャドウも元に戻すか、控えめにする */
  }  
  .artist-name-overlay {
      padding: 7px 10px;
      transform: translateX(-5px);
  }
  .artist-name-overlay .japanese-name {
      font-size: 17px;
  }
  .artist-name-overlay .english-name {
      font-size: 12px;
  }
  .artist-description {
      font-size: 13px;
      padding: 15px;
  }
}

@media (max-width: 480px) {
  .special-live-section::before {
      font-size: 100px;
      top: 10px;
      right: 5px;
      transform: rotate(5deg);
  }
  .special-live-title {
      font-size: 26px;
  }
  .special-live-intro {
      font-size: 14px;
      margin-bottom: 25px;
  }
  .artist-card {
      max-width: 100%;
  }
  .tap-hint {
    font-size: 12px; /* 小さい画面ではフォントサイズを少し小さく */
  }  
  .artist-name-overlay .japanese-name {
      font-size: 16px;
  }
  .artist-name-overlay .english-name {
      font-size: 11px;
  }
  .artist-description {
      font-size: 12px;
      padding: 12px;
  }
}

/* ハワイ＆オキナワマルシェセクションのスタイル */
.hawaii-okinawa-marche-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
}

.marche-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.marche-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.marche-content {
  flex: 1;
  min-width: 400px;
  padding-left: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.marche-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.marche-title .bg-marche-jp {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.marche-title .bg-marche-en {
  font-family: duos-brush, sans-serif;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  right: 20px;
  transform: rotate(15deg);
  z-index: 1;
  white-space: nowrap;
  opacity: 0.8;
}

.marche-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hawaii-okinawa-marche-section {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }

  .marche-image-wrapper {
      padding-right: 0;
      margin-bottom: 40px;
      min-width: unset;
  }

  .marche-content {
      padding-left: 0;
      text-align: center;
      min-width: unset;
  }

  .marche-title {
      font-size: 36px;
  }

  .marche-title .bg-marche-en {
      font-size: 120px;
      top: -40px;
      right: 50%;
      transform: translateX(50%) rotate(15deg);
  }

  .marche-description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hawaii-okinawa-marche-section {
      padding: 40px 15px;
      margin-top: 30px;
  }

  .marche-image-wrapper {
      margin-bottom: 30px;
  }

  .marche-title {
      font-size: 30px;
  }

  .marche-title .bg-marche-en {
      font-size: 90px;
      top: -30px;
  }

  .marche-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .marche-title .bg-marche-jp {
      font-size: 26px;
  }
  
  .marche-title .bg-marche-en {
      font-size: 70px;
      top: -20px;
  }

  .marche-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
}


/* MC紹介セクションのスタイル */
.mc-section {
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.mc-cards-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px;
}

.mc-card {
  border: 1px solid #ddd;
  padding: 30px;
  display: flex;
  align-items: center;
  max-width: 800px;
  width: 100%;
}

.mc-icon-wrapper {
  flex-shrink: 0; /* 縮まないようにする */
  width: 120px;
  height: 120px;
  border-radius: 50%;
  overflow: hidden;
  margin-right: 30px;
  background-color: #e0e0e0; /* プレースホルダーの背景色 */
  display: flex;
  justify-content: center;
  align-items: center;
}

.mc-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mc-details {
  text-align: left;
  flex-grow: 1; /* 残りのスペースを埋める */
}

.mc-name {
  font-size: 24px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
  line-height: 1.2;
}

.mc-description {
  font-size: 18px;
  line-height: 1.7;
  color: #555;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .mc-section {
      padding: 60px 20px;
      margin-top: 40px;
  }
  .mc-card {
      padding: 25px;
      max-width: 700px;
  }
  .mc-icon-wrapper {
      width: 100px;
      height: 100px;
      margin-right: 25px;
  }
  .mc-name {
      font-size: 22px;
  }
  .mc-description {
      font-size: 14px;
  }
}

@media (max-width: 768px) {
  .mc-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .mc-cards-container {
      gap: 20px;
  }
  .mc-card {
      flex-direction: column;
      text-align: center;
      padding: 20px;
      max-width: 90%; /* 幅を広げる */
  }
  .mc-icon-wrapper {
      margin-right: 0;
      margin-bottom: 20px;
      width: 100px; /* モバイルでもサイズを維持 */
      height: 100px; /* モバイルでもサイズを維持 */
  }
  .mc-details {
      text-align: center;
  }
  .mc-name {
      font-size: 20px;
  }
  .mc-description {
      font-size: 13px;
  }
}

@media (max-width: 480px) {
  .mc-card {
      padding: 15px;
      max-width: 100%;
  }
  .mc-icon-wrapper {
      width: 80px;
      height: 80px;
      margin-bottom: 15px;
  }
  .mc-name {
      font-size: 18px;
  }
  .mc-description {
      font-size: 12px;
  }
}




/* TAMOハイライトセクションのスタイル */
.tamo-dance-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap-reverse; /* ヨガセクションと左右を逆にする */
  position: relative;
}

.tamo-dance-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tamo-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.tamo-dance-content {
  flex: 1;
  min-width: 400px;
  padding-right: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tamo-dance-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.tamo-dance-title .bg-tamo-jp {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}


.tamo-dance-title .bg-tamo-en {
  font-family: duos-brush, sans-serif;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  right: 20px;
  transform: rotate(15deg);
  z-index: 1;
  white-space: nowrap;
  opacity: 0.8;
}

.tamo-dance-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.profile-link {
  font-size: 16px;
  font-weight: bold;
  color: #f39800 !important;
  text-decoration: none;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  transition: opacity 0.3s;
}

.profile-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .tamo-dance-highlight {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }

  .tamo-dance-image-wrapper {
      padding-left: 0;
      margin-bottom: 40px; /* 画像の下に余白 */
      min-width: unset;
      order: 1; /* 画像を上に */
  }

  .tamo-dance-content {
      padding-right: 0;
      text-align: center;
      min-width: unset;
      order: 2; /* テキストを下に */
  }

  .tamo-dance-title {
      font-size: 36px;
  }

  .tamo-dance-title .bg-tamo-en {
      font-size: 120px;
      top: -40px;
      right: 50%;
      transform: translateX(50%) rotate(15deg); /* 中央寄せと傾き */
  }

  .tamo-dance-description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .tamo-dance-highlight {
      padding: 40px 15px;
      margin-top: 30px;
  }

  .tamo-dance-image-wrapper {
      margin-bottom: 30px;
  }

  .tamo-dance-title {
      font-size: 30px;
  }

  .tamo-dance-title .bg-tamo-en {
      font-size: 90px;
      top: -30px;
  }

  .tamo-dance-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
}

@media (max-width: 480px) {
  .tamo-dance-title .bg-tamo-jp {
      font-size: 26px;
  }

  .tamo-dance-title .bg-tamo-en {
      font-size: 70px;
      top: -20px;
  }

  .tamo-dance-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
}


/* スパルタンレースセクションのスタイル */
.spartan-race-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
}

.spartan-race-section::before {
  content: "Spartan";
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 82px;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 23%;
  left: 43%;
  transform: translate(-50%, -50%) rotate(-22deg);
  z-index: 0;
  white-space: nowrap;
}


.spartan-race-content {
  flex: 1;
  min-width: 400px;
  padding-right: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.spartan-race-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.spartan-race-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.spartan-race-header .collab-event-text {
  position: absolute;
  top: -58px;
  left: -6px;
  height: 100px;
  width: auto;
  margin-bottom: 8px;
}

.spartan-race-title {
  position: relative;
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  color: #333;
  margin: 0;
  left:0;
  top:0;
}

.spartan-race-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.spartan-race-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shuttle-bus-info {
  display: flex;
  align-items: center;
}

.shuttle-bus-info .bus-icon {
  width: 70px;
  height: auto;
  margin-right: 10px;
}

.shuttle-bus-text {
  font-size: 25px;
  font-weight: bold;
  color: #333;
}

.more-button {
  display: inline-block;
  color: #000 !important;
  background-color: #fff;
  border: 4px solid #ff9900;
  padding: 10px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}

.more-button:hover {
  background-color: #ff9900;
  color: #fff;
}

.spartan-race-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.spartan-race-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .spartan-race-section {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }
  .spartan-race-section::before {
      top: 23%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(25deg);
  }
  .spartan-race-content {
      padding-right: 0;
      margin-bottom: 40px;
      min-width: unset;
      text-align: center;
  }
  .spartan-race-header {
      justify-content: center;
      position: relative;
  }
  .spartan-race-image-wrapper {
      padding-left: 0;
      min-width: unset;
  }
  .spartan-race-title {
      font-size: 32px;
  }
  .spartan-race-header .collab-event-text {
    position: relative; /* absoluteを解除して自然な中央寄せに */
    top: 40px;
    left: -10px;
  }

  .spartan-race-footer {
      flex-direction: column;
      gap: 20px;
  }
  .more-button {
      align-self: center;
  }
}

@media (max-width: 768px) {
  .spartan-race-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .spartan-race-section::before {
      transform: translate(-50%, -50%) rotate(20deg);
  }
  .spartan-race-title {
      font-size: 28px;
  }
  .spartan-race-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
  .shuttle-bus-info .bus-icon {
      width: 35px;
  }
  .shuttle-bus-text {
      font-size: 16px;
  }
  .more-button {
      font-size: 16px;
      padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .spartan-race-section::before {
      font-size: 50px;
      transform: translate(-50%, -50%) rotate(15deg);
  }
  .spartan-race-title {
      font-size: 24px;
  }
  .spartan-race-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
  .shuttle-bus-info .bus-icon {
      width: 30px;
  }
  .shuttle-bus-text {
      font-size: 14px;
  }
  .more-button {
      font-size: 14px;
      padding: 7px 18px;
  }
}

/* ヨガインストラクターセクションのスタイル */
.yoga-instructors-section {
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.yoga-instructors-section .section-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 50px;
}

.yoga-instructors-section .section-title .bg-text-jp {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.yoga-instructors-section .section-title .bg-text-en {
  font-family: duos-brush, sans-serif;
  font-size: 85px;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 30px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  z-index: 0;
  white-space: nowrap;
  opacity: 0.8;
}

.instructor-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}

.yoga-instructors-section .artist-card {
  background-color: #fff;
  width: 100%;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

.yoga-instructors-section .artist-description {
  display: none;
}

.all-instructors-button-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}

.all-instructors-button {
  display: inline-block;
  background-color: #fff;
  color: #000 !important;
  border: 4px solid #ff9900;
  padding: 12px 30px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}

.all-instructors-button:hover {
  background-color: #ff9900;
  color: #000;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .yoga-instructors-section {
      padding: 60px 60px;
      margin-top: 40px;
  }
  .yoga-instructors-section .section-title {
      font-size: 36px;
      margin-bottom: 40px;
  }
  .yoga-instructors-section .section-title .bg-text-en {
      top: -40px;
  }
  .instructor-cards-container {
      grid-template-columns: repeat(2, 1fr); /* 2列表示 */
      gap: 25px;
      margin-bottom: 40px;
  }
  .yoga-instructors-section .artist-card {
      max-width: 300px;
  }
  .all-instructors-button {
      font-size: 18px;
      padding: 12px 35px;
  }
}

@media (max-width: 768px) {
  .yoga-instructors-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .yoga-instructors-section .section-title {
      font-size: 30px;
      margin-bottom: 30px;
  }
  .yoga-instructors-section .section-title .bg-text-en {
      top: -30px;
  }
  .instructor-cards-container {
      grid-template-columns: 1fr; /* 1列表示 */
      gap: 20px;
      margin-bottom: 30px;
  }
  .yoga-instructors-section .artist-card {
      max-width: 90%; /* 幅を広げる */
  }
  .all-instructors-button {
      font-size: 16px;
      padding: 10px 30px;
  }
}

@media (max-width: 480px) {
  .yoga-instructors-section .section-title {
      font-size: 26px;
      margin-bottom: 25px;
  }
  .yoga-instructors-section .section-title .bg-text-en {
      font-size: 40px;
      top: 27px;
  }
  .yoga-instructors-section .artist-card {
      max-width: 100%;
  }
  .all-instructors-button {
      font-size: 14px;
      padding: 8px 25px;
  }
}


/* フラダンスチームセクションのスタイル */
.hula-teams-section {
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.hula-teams-section .section-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.hula-teams-section .section-title .bg-text-en {
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) rotate(15deg);
  z-index: 0;
  white-space: nowrap;
  opacity: 0.8;
}

.hula-team-cards-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  justify-content: center;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
}


.hula-team-card {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  width: 100%;
  max-width: 325px;
  display: flex;
  flex-direction: column;
  margin: 0 auto;
}

/* フラダンスチームには説明文は不要なので非表示 */
.hula-team-card .artist-description {
  display: none;
}

.all-hula-teams-button-wrapper {
  text-align: center;
  position: relative;
  z-index: 1;
}

.all-hula-teams-button {
  display: inline-block;
  background-color: #ff9900;
  color: #fff;
  border: 4px solid #ff9900;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}

.all-hula-teams-button:hover {
  background-color: #fff;
  color: #ff9900;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hula-teams-section {
      padding: 60px 60px;
      margin-top: 40px;
  }
  .hula-teams-section .section-title {
      font-size: 36px;
      margin-bottom: 40px;
  }
  .hula-teams-section .section-title .bg-text-en {
      top: -40px;
  }
  .hula-team-cards-container {
      grid-template-columns: repeat(2, 1fr); /* 2列表示 */
      gap: 25px;
      margin-bottom: 40px;
  }
  .hula-team-card {
      max-width: 300px;
  }
  .all-hula-teams-button {
      font-size: 18px;
      padding: 12px 35px;
  }
}

@media (max-width: 768px) {
  .hula-teams-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .hula-teams-section .section-title {
      font-size: 30px;
      margin-bottom: 30px;
  }
  .hula-teams-section .section-title .bg-text-en {
      top: -30px;
  }
  .hula-team-cards-container {
      grid-template-columns: 1fr; /* 1列表示 */
      gap: 20px;
      margin-bottom: 30px;
  }
  .hula-team-card {
      max-width: 90%; /* 幅を広げる */
  }
  .all-hula-teams-button {
      font-size: 16px;
      padding: 10px 30px;
  }
}

@media (max-width: 480px) {
  .hula-teams-section .section-title {
      font-size: 26px;
      margin-bottom: 25px;
  }
  .hula-teams-section .section-title .bg-text-en {
      top: -20px;
  }
  .hula-team-card {
      max-width: 100%;
  }
  .all-hula-teams-button {
      font-size: 14px;
      padding: 8px 25px;
  }
}

/* 会場マップセクションのスタイル */
.venue-map-section {
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
}

.venue-map-section .section-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.venue-map-section .section-title .bg-text-en {
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  left: 50%;
  transform: translateX(-50%) rotate(-15deg);
  z-index: 0;
  white-space: nowrap;
  opacity: 0.8;
}

.map-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 のアスペクト比を維持 */
  height: 0;
  overflow: hidden;
  max-width: 900px; /* マップの最大幅 */
  margin: 0 auto 30px auto; /* 中央寄せと下部の余白 */
  position: relative;
  z-index: 1;
}

.map-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.access-info {
  margin-top: 30px;
  position: relative;
  z-index: 1;
}

.access-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.access-link {
  color: #ff9900;
  text-decoration: none;
  font-weight: bold;
}

.access-link:hover {
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .venue-map-section {
      padding: 60px 20px;
      margin-top: 40px;
  }
  .venue-map-section .section-title {
      font-size: 36px;
      margin-bottom: 40px;
  }
  .venue-map-section .section-title .bg-text-en {
      top: -40px;
  }
  .map-container {
      max-width: 100%;
      margin-bottom: 25px;
  }
  .access-description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .venue-map-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .venue-map-section .section-title {
      font-size: 30px;
      margin-bottom: 30px;
  }
  .venue-map-section .section-title .bg-text-en {
      top: -30px;
  }
  .access-description {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .venue-map-section .section-title {
      font-size: 26px;
      margin-bottom: 25px;
  }
  .venue-map-section .section-title .bg-text-en {
      font-size: 80px;
      top: -20px;
  }
  .access-description {
      font-size: 13px;
  }
}



/* オフィシャルツアーセクションのスタイル */
.official-tour-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
}

.tour-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.tour-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.tour-content {
  flex: 1;
  min-width: 400px;
  padding-left: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tour-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.tour-title .bg-tour-jp {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}


.tour-title .bg-tour-en {
  font-family: duos-brush, sans-serif;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  right: 20px;
  transform: rotate(15deg);
  z-index: 1;
  white-space: nowrap;
  opacity: 0.8;
}


.tour-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* more-button のスタイルは既存の .more-button を再利用 */
.tour-content .more-button {
  align-self: flex-start;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .official-tour-section {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }

  .tour-image-wrapper {
      padding-right: 0;
      margin-bottom: 40px;
      min-width: unset;
  }

  .tour-content {
      padding-left: 0;
      text-align: center;
      min-width: unset;
  }

  .tour-title .bg-tour-jp {
      font-size: 40px;
      transform: translateX(50%) rotate(15deg);
  }

  .tour-title .bg-tour-en {
    font-size: 100px;
    right: 130px;
  }

  .tour-description {
      font-size: 15px;
  }

  .tour-content .more-button {
      align-self: center;
  }
}

@media (max-width: 768px) {
  .official-tour-section {
      padding: 40px 15px;
      margin-top: 30px;
  }

  .tour-image-wrapper {
      margin-bottom: 30px;
  }

  .tour-title .bg-tour-en {
    font-size: 80px;
    right: 130px;
    top: -30px;
  }


  .tour-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
}

@media (max-width: 480px) {

  .tour-title .bg-tour-jp {
    font-size: 26px;
    transform: translateX(50%) rotate(15deg);
  }

  .tour-title .bg-tour-en {
    font-size: 65px;
    right: 0;
  }

  .tour-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
}

@media (max-width: 320px) {
  .tour-title .bg-tour-jp {
    font-size: 26px;
  }

  .tour-title .bg-tour-en {
    font-size: 42px;
    top: -15px;
  }
}


/* 主催者セクションのスタイル */
.organizer-section {
  padding: 80px 40px;
  margin: 0 auto;
  border-radius: 20px;
  overflow: hidden;
  text-align: center;
  position: relative;
  background: linear-gradient(to bottom, #fdf6e3, #fddcc3); 
}

.organizer-section .section-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 40px;
  color: #333;
  margin-bottom: 50px;
  position: relative;
  z-index: 1;
  line-height: 1.2;
}

.organizer-section .section-title .bg-text-en {
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 80px;
  color: #e0d9cd;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%) rotate(0deg);
  z-index: 0;
  white-space: nowrap;
  opacity: 0.8;
}

.organizer-section .section-title .bg-text-jp {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 48px; /* 英字より少し小さく */
  color: #333;
  position: relative;
  z-index: 2; /* 手前に */
  display: inline-block;
  vertical-align: middle; /* 垂直方向の中央揃え */
  margin-left: 10px; /* 英字との間隔調整 */
}


.organizer-content {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  position: relative;
  z-index: 1;
  padding: 30px;
}

.organizer-logo-wrapper {
  flex-shrink: 0;
  width: 200px; /* ロゴの幅 */
  height: auto;
  margin-right: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.organizer-logo {
  width: 100%;
  height: auto;
  display: block;
}

.organizer-details {
  flex-grow: 1;
  text-align: left;
  max-width: 600px;
}

.organizer-name {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 32px;
  color: #333;
  margin-bottom: 20px;
}

.organizer-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .organizer-section {
      padding: 60px 20px;
      margin-top: 40px;
  }
  .organizer-section .section-title {
      font-size: 36px;
      margin-bottom: 40px;
  }
  .organizer-section .section-title .bg-text-en {
      top: -40px;
  }
  .organizer-section .section-title .bg-text-jp {
      font-size: 42px;
  }
  .organizer-content {
      flex-direction: column;
      padding: 25px;
  }
  .organizer-logo-wrapper {
      margin-right: 0;
      margin-bottom: 30px;
      width: 180px;
  }
  .organizer-details {
      text-align: center;
      max-width: 100%;
  }
  .organizer-name {
      font-size: 28px;
      margin-bottom: 15px;
  }
  .organizer-description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .organizer-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .organizer-section .section-title {
      font-size: 30px;
      margin-bottom: 30px;
  }
  .organizer-section .section-title .bg-text-en {
      top: -30px;
  }
  .organizer-section .section-title .bg-text-jp {
      font-size: 36px;
  }
  .organizer-content {
      padding: 20px;
  }
  .organizer-logo-wrapper {
      width: 150px;
      margin-bottom: 25px;
  }
  .organizer-name {
      font-size: 24px;
      margin-bottom: 12px;
  }
  .organizer-description {
      font-size: 14px;
  }
}

@media (max-width: 480px) {
  .organizer-section .section-title {
      font-size: 26px;
      margin-bottom: 25px;
  }
  .organizer-section .section-title .bg-text-en {
      font-size: 40px;
      top: -20px;
  }
  .organizer-section .section-title .bg-text-jp {
      font-size: 30px;
  }
  .organizer-content {
      padding: 15px;
  }
  .organizer-logo-wrapper {
      width: 120px;
      margin-bottom: 20px;
  }
  .organizer-name {
      font-size: 20px;
      margin-bottom: 10px;
  }
  .organizer-description {
      font-size: 13px;
  }
}


/* 協賛企業セクション */
.sponsor-section {
  padding: 80px 40px;
  text-align: center;
  margin: 0 auto;
  font-weight: 400;
  font-style: normal;
}

.sponsor-section .section-title {
  position: relative;
  margin-bottom: 60px;
}

.sponsor-section .section-title .bg-text-en {
  font-family: duos-brush, sans-serif;
  font-size: 80px;
  color: #f0ead6;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  z-index: 0;
  white-space: nowrap;
  opacity: 0.8;
}

.sponsor-section .section-title .bg-text-jp {
  font-family: ads-ayumin, sans-serif;
  font-size: 40px;
  font-weight: bold;
  color: #333;
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-top: 50px; /* 英語の背景文字と重ならないように調整 */
}

.sponsor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); /* 1列の最小幅200pxで自動調整 */
  gap: 20px;
  max-width: 1000px;
  margin: 0 auto 80px auto; /* 下部に余白 */
}

.sponsor-item {
  background-color: #fff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px; /* ロゴの表示エリアを均一に */
  box-sizing: border-box;
}

.sponsor-logo {
  max-width: 100%;
  max-height: 80px; /* ロゴの最大高さを設定 */
  object-fit: contain;
}

.support-section {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.support-block {
  margin-bottom: 30px;
}

.support-title {
  font-family: ads-ayumin, sans-serif;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 10px;
  position: relative;
  display: inline-block;
}

.support-companies {
  font-size: 16px;
  line-height: 1.8;
  color: #555;
  margin-left: 20px; /* タイトルと文字の間に少しスペース */
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .sponsor-section {
      padding: 60px 20px;
  }

  .sponsor-section .section-title .bg-text-en {
      top: 60%;
  }

  .sponsor-section .section-title .bg-text-jp {
      font-size: 30px;
      padding-top: 30px;
  }

  .sponsor-grid {
      grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
      gap: 15px;
      margin-bottom: 60px;
  }

  .sponsor-item {
      height: 100px;
      padding: 15px;
  }

  .sponsor-logo {
      max-height: 70px;
  }

  .support-block {
      margin-bottom: 25px;
  }

  .support-title {
      font-size: 24px;
  }

  .support-companies {
      font-size: 14px;
      margin-left: 10px;
  }
}

@media (max-width: 480px) {
  .sponsor-section .section-title .bg-text-en {
      top: 70%;
      transform: translate(-50%, -50%) rotate(-10deg);
  }

  .sponsor-section .section-title .bg-text-jp {
      font-size: 24px;
      padding-top: 20px;
  }

  .sponsor-grid {
      grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
      gap: 10px;
      margin-bottom: 40px;
  }

  .sponsor-item {
      height: 80px;
      padding: 10px;
  }

  .sponsor-logo {
      max-height: 50px;
  }

  .support-block {
      margin-bottom: 20px;
  }

  .support-title {
      font-size: 20px;
  }

  .support-companies {
      font-size: 13px;
  }
}


/* 取材・メディアに関するお問い合わせセクション */
.media-contact-section {
  background: var(--gradient-syuzai-media);
  padding: 80px 20px;
  text-align: center;
  font-weight: 400;
  font-style: normal;
  color: #333;
}

.media-contact-title {
  font-family: ads-ayumin, sans-serif;
  font-size: 36px;
  font-weight: bold;
  margin-bottom: 40px;
  color: #000;
}

.media-contact-description {
  font-size: 18px;
  line-height: 1.8;
  margin-bottom: 20px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.media-contact-note {
  font-size: 14px;
  color: #555;
  margin-bottom: 40px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #000 !important;
  border: 4px solid #ff9900;
  border: none;
  padding: 15px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s, box-shadow 0.3s;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1); /* ボタンに影 */
}

.contact-button:hover {
  background-color: #ff9900;
  color: #000;
  box-shadow: 0 6px 12px rgba(0,0,0,0.15);
}

.contact-button .arrow {
  margin-left: 10px;
  font-size: 20px;
  transition: transform 0.3s;
}

.contact-button:hover .arrow {
  transform: translateX(5px);
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .media-contact-section {
      padding: 60px 15px;
  }
  .media-contact-title {
      font-size: 28px;
      margin-bottom: 30px;
  }
  .media-contact-description {
      font-size: 16px;
      margin-bottom: 15px;
  }
  .media-contact-note {
      font-size: 13px;
      margin-bottom: 30px;
  }
  .contact-button {
      font-size: 18px;
      padding: 12px 30px;
  }
  .contact-button .arrow {
      font-size: 18px;
  }
}

@media (max-width: 480px) {
  .media-contact-section {
      padding: 40px 10px;
  }
  .media-contact-title {
      font-size: 24px;
      margin-bottom: 25px;
  }
  .media-contact-description {
      font-size: 14px;
  }
  .media-contact-note {
      font-size: 12px;
      margin-bottom: 25px;
  }
  .contact-button {
      font-size: 16px;
      padding: 10px 25px;
  }
  .contact-button .arrow {
      font-size: 16px;
  }
}



/* FAQセクション */
.faq-section {
  max-width: 800px;
  margin: 80px auto; /* 上下の余白と中央寄せ */
  padding: 0 20px;
  font-weight: 400;
  font-style: normal;
}

.faq-title {
  font-family: ads-ayumin, sans-serif;
  font-size: 50px;
  color: #333;
  text-align: center;
  margin-bottom: 60px;
}

.faq-item {
  margin-bottom: 30px;
}

.faq-question {
  font-size: 20px;
  font-weight: bold;
  color: #333;
  margin-bottom: 10px;
}

.faq-answer {
  font-size: 16px;
  color: #555;
  line-height: 1.6;
}

.faq-divider {
  border: none;
  border-top: 1px solid #ff9900; /* オレンジ色の区切り線 */
  margin: 40px 0;
}

/* レスポンシブ対応 */
@media (max-width: 768px) {
  .faq-section {
      margin: 60px auto;
  }

  .faq-title {
      font-size: 40px;
      margin-bottom: 40px;
  }

  .faq-question {
      font-size: 18px;
  }

  .faq-answer {
      font-size: 15px;
  }

  .faq-divider {
      margin: 30px 0;
  }
}

@media (max-width: 480px) {
  .faq-section {
      margin: 40px auto;
      padding: 0 15px;
  }

  .faq-title {
      font-size: 35px;
      margin-bottom: 30px;
  }

  .faq-question {
      font-size: 16px;
  }

  .faq-answer {
      font-size: 14px;
  }

  .faq-divider {
      margin: 20px 0;
  }
}



/* photoセクションのスタイル */
.photo-dance-highlight {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap-reverse; /* ヨガセクションと左右を逆にする */
  position: relative;
}

.photo-dance-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.photo-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.photo-dance-content {
  flex: 1;
  min-width: 400px;
  padding-right: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.photo-dance-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.photo-dance-title .bg-photo-jp {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}


.photo-dance-title .bg-photo-en {
  font-family: duos-brush, sans-serif;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  right: 20px;
  transform: rotate(15deg);
  z-index: 1;
  white-space: nowrap;
  opacity: 0.8;
}

.photo-dance-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.profile-link {
  font-size: 16px;
  font-weight: bold;
  color: #f39800 !important;
  text-decoration: none;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
  transition: opacity 0.3s;
}

.profile-link:hover {
  opacity: 0.7;
  text-decoration: underline;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .photo-dance-highlight {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }

  .photo-dance-image-wrapper {
      padding-left: 0;
      margin-bottom: 40px; /* 画像の下に余白 */
      min-width: unset;
      order: 1; /* 画像を上に */
  }

  .photo-dance-content {
      padding-right: 0;
      text-align: center;
      min-width: unset;
      order: 2; /* テキストを下に */
  }

  .photo-dance-title {
      font-size: 36px;
  }

  .photo-dance-title .bg-photo-en {
      font-size: 120px;
      top: -40px;
      right: 50%;
      transform: translateX(50%) rotate(15deg); /* 中央寄せと傾き */
  }

  .photo-dance-description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .photo-dance-highlight {
      padding: 40px 15px;
      margin-top: 30px;
  }

  .photo-dance-image-wrapper {
      margin-bottom: 30px;
  }

  .photo-dance-title {
      font-size: 30px;
  }

  .photo-dance-title .bg-photo-en {
      font-size: 90px;
      top: -30px;
  }

  .photo-dance-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
}

@media (max-width: 480px) {

  .yoga-session-title .bg-yoga-jp{
    font-size: 26px;
  }
  
  .photo-dance-title .bg-photo-jp {
      font-size: 26px;
  }

  .photo-dance-title .bg-photo-en {
      font-size: 70px;
      top: -20px;
  }

  .photo-dance-description {
      font-size: 13px;
      margin-bottom: 20px;
  }

  .yoga-instructors-section .section-title .bg-text-jp {
    font-size: 26px;
  }

}

/* 花火セクションのスタイル */
.hawaii-okinawa-fireworks-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  border-radius: 20px;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
}

.fireworks-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fireworks-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

.fireworks-content {
  flex: 1;
  min-width: 400px;
  padding-left: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fireworks-title {
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  margin-bottom: 20px;
}

.fireworks-title .bg-fireworks-jp {
  font-size: 40px;
  color: #333;
  position: relative;
  z-index: 2;
  line-height: 1.2;
}

.fireworks-title .bg-fireworks-en {
  font-family: duos-brush, sans-serif;
  font-size: 150px;
  color: #f0ead6;
  position: absolute;
  top: -50px;
  right: 20px;
  transform: rotate(15deg);
  z-index: 1;
  white-space: nowrap;
  opacity: 0.8;
}

.fireworks-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  position: relative;
  z-index: 2;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .hawaii-okinawa-fireworks-section {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }

  .fireworks-image-wrapper {
      padding-right: 0;
      margin-bottom: 40px;
      min-width: unset;
  }

  .fireworks-content {
      padding-left: 0;
      text-align: center;
      min-width: unset;
  }

  .fireworks-title {
      font-size: 36px;
  }

  .fireworks-title .bg-fireworks-en {
      font-size: 120px;
      top: -40px;
      right: 50%;
      transform: translateX(50%) rotate(15deg);
  }

  .fireworks-description {
      font-size: 15px;
  }
}

@media (max-width: 768px) {
  .hawaii-okinawa-fireworks-section {
      padding: 40px 15px;
      margin-top: 30px;
  }

  .fireworks-image-wrapper {
      margin-bottom: 30px;
  }

  .fireworks-title {
      font-size: 30px;
  }

  .fireworks-title .bg-fireworks-en {
      font-size: 90px;
      top: -30px;
  }

  .fireworks-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
}

@media (max-width: 480px) {

  .fireworks-title .bg-fireworks-jp {
    font-size: 26px;
  }

  .fireworks-title .bg-fireworks-en {
      font-size: 40px;
      top: -10px;
  }

  .fireworks-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
}


/* ラグビーセクションのスタイル */
.rugby-race-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 80px 40px;
  margin: 60px auto 0 auto;
  overflow: hidden;
  flex-wrap: wrap;
  position: relative;
}

.rugby-race-section::before {
  content: "Rugby";
  font-family: duos-brush, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 82px;
  color: rgba(255, 255, 255, 0.7);
  position: absolute;
  top: 23%;
  left: 43%;
  transform: translate(-50%, -50%) rotate(-22deg);
  z-index: 0;
  white-space: nowrap;
}


.rugby-race-content {
  flex: 1;
  min-width: 400px;
  padding-right: 40px;
  box-sizing: border-box;
  text-align: left;
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.rugby-race-header {
  position: relative;
  display: flex;
  align-items: flex-start;
  margin-bottom: 20px;
}

.rugby-race-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}


.rugby-race-header .collab-event-text {
  position: absolute;
  top: -58px;
  left: -6px;
  height: 100px;
  width: auto;
  margin-bottom: 8px;
}

.rugby-race-title {
  position: relative;
  font-family: ads-ayumin, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 36px;
  color: #333;
  margin: 0;
  left:0;
  top:0;
}

.rugby-race-description {
  font-size: 18px;
  line-height: 1.8;
  color: #555;
  margin-bottom: 30px;
  font-family: 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, sans-serif;
}

.rugby-race-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.shuttle-bus-info {
  display: flex;
  align-items: center;
}

.shuttle-bus-info .bus-icon {
  width: 70px;
  height: auto;
  margin-right: 10px;
}

.shuttle-bus-text {
  font-size: 25px;
  font-weight: bold;
  color: #333;
}

.more-button {
  display: inline-block;
  color: #000 !important;
  background-color: #fff;
  border: 4px solid #ff9900;
  padding: 10px 40px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: bold;
  font-size: 18px;
  transition: background-color 0.3s, color 0.3s;
}

.more-button:hover {
  background-color: #ff9900;
  color: #fff;
}

.rugby-race-image-wrapper {
  flex: 1;
  min-width: 400px;
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;
}

.rugby-race-main-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  display: block;
}

/* レスポンシブ対応 */
@media (max-width: 1024px) {
  .rugby-race-section {
      flex-direction: column;
      padding: 60px 20px;
      margin-top: 40px;
  }
  .rugby-race-section::before {
      top: 23%;
      left: 50%;
      transform: translate(-50%, -50%) rotate(25deg);
  }
  .rugby-race-content {
      padding-right: 0;
      margin-bottom: 40px;
      min-width: unset;
      text-align: center;
  }
  .rugby-race-header {
      justify-content: center;
      position: relative;
  }
  .rugby-race-image-wrapper {
      padding-left: 0;
      min-width: unset;
  }
  .rugby-race-title {
      font-size: 32px;
  }
  .rugby-race-header .collab-event-text {
    position: relative; /* absoluteを解除して自然な中央寄せに */
    top: 40px;
    left: -10px;
  }

  .rugby-race-footer {
      flex-direction: column;
      gap: 20px;
  }
  .more-button {
      align-self: center;
  }
}

@media (max-width: 768px) {
  .rugby-race-section {
      padding: 40px 15px;
      margin-top: 30px;
  }
  .rugby-race-section::before {
      transform: translate(-50%, -50%) rotate(20deg);
  }
  .rugby-race-title {
      font-size: 28px;
  }
  .rugby-race-description {
      font-size: 14px;
      margin-bottom: 25px;
  }
  .shuttle-bus-info .bus-icon {
      width: 35px;
  }
  .shuttle-bus-text {
      font-size: 16px;
  }
  .more-button {
      font-size: 16px;
      padding: 8px 20px;
  }
}

@media (max-width: 480px) {
  .rugby-race-section::before {
      font-size: 50px;
      transform: translate(-50%, -50%) rotate(15deg);
      top: 27%;
      left: 73%;
  }
  .rugby-race-title {
      font-size: 26px;
  }
  .rugby-race-description {
      font-size: 13px;
      margin-bottom: 20px;
  }
  .shuttle-bus-info .bus-icon {
      width: 30px;
  }
  .shuttle-bus-text {
      font-size: 14px;
  }
  .more-button {
      font-size: 14px;
      padding: 7px 18px;
  }
}
