/* common */
* {
  box-sizing: border-box;
}

body {
  overflow-x: hidden;
  max-width: 100vw;
}

.pc {
  display: block;
}
.sp {
  display: none;
}
.inner {
  max-width: 1080px;
  margin: 0 auto;
  padding: 20px 0;
}
.flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* ドロワーメニュー: チェックボックスを非表示 */
#drawer-toggle {
  position: absolute;
  opacity: 0;
}

/* ハンバーガーアイコンのラベル */
#drawer-toggle-label {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  height: 60px;
  width: 60px;
  display: block;
  position: relative;
  background: rgba(255, 255, 255, 0);
  z-index: 1001;
  cursor: pointer;
  transition: all 0.25s ease-in-out;
}

/* ハンバーガーアイコンの3本線 */
#drawer-toggle-label:before {
  content: "";
  display: block;
  position: absolute;
  height: 3px;
  width: 30px;
  background: #2d5016;
  right: 15px;
  top: 22px;
  box-shadow: 0 8px 0 #2d5016, 0 16px 0 #2d5016;
  transition: all 0.25s ease-in-out;
}

/* ヘッダー */
header {
  width: 100%;
  background: #fff;
  z-index: 1000;
}

header .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

header h1 {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
}

header h1 a {
  color: #2d5016;
  transition: color 0.3s ease;
}

header h1 a:hover {
  color: #ffaa00;
}

/* ドロワーメニューパネル */
#drawer {
  position: fixed;
  top: 0;
  right: -420px;
  height: 100vh;
  width: 350px;
  background: #00660e;
  overflow-x: hidden;
  overflow-y: auto;
  padding: 80px 30px 30px;
  -webkit-overflow-scrolling: touch;
  z-index: 1003;
  transition: all 0.25s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.3);
}

/* ドロワーメニューの閉じるボタン */
.drawer-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 30px;
  color: #fff;
  cursor: pointer;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: all 0.3s ease;
}

.drawer-close:hover {
  background: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

/* メニューが開いている時のオーバーレイ */
#drawer-toggle:checked ~ header::after {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1002;
}

/* メニューパネルを表示 */
#drawer-toggle:checked ~ #drawer {
  right: 0px;
}

/* ハンバーガーアイコンを×印に変更 */
#drawer-toggle:checked ~ header #drawer-toggle-label:before {
  background: transparent;
  box-shadow: none;
}

#drawer-toggle:checked ~ header #drawer-toggle-label:after {
  content: "✕";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 30px;
  color: #2d5016;
  font-weight: 300;
}

/* ドロワーメニューのリストスタイル */
#drawer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}

#drawer ul li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

#drawer ul li:last-child {
  border-bottom: none;
}

#drawer ul a {
  display: block;
  padding: 20px 15px;
  color: #fff;
  text-decoration: none;
  font-size: 18px;
  font-weight: 500;
  transition: all 0.3s ease;
}

#drawer ul a:hover {
  background: rgba(255, 255, 255, 0.15);
  padding-left: 25px;
}

/* メインビジュアル */
.main-visual {
  position: relative;
  width: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #c70010;
}

/* 装飾画像 */
.mv-deco {
  position: absolute;
  z-index: 1;
}

.mv-deco img {
  width: 100%;
  height: auto;
  display: block;
}

/* 左上 */
.mv-deco01 {
  top: 0;
  left: 0;
  width: 200px;
}

/* 右上 */
.mv-deco02 {
  top: 0;
  right: 0;
  width: 180px;
}

/* 左下 */
.mv-deco03 {
  bottom: -20px;
  left: 0;
  width: 200px;
}

/* 右下 */
.mv-deco04 {
  bottom: 0;
  left: 35%;
  width: 340px;
}

/* 中央下 */
.mv-deco05 {
  bottom: 0;
  right: 0;
  width: 200px;
}

.main-visual-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.main-visual-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.main-visual-content {
  position: relative;
  z-index: 0;
  text-align: center;
  max-width: 960px;
  padding: 100px 0 140px;
  background: url(../images/mv-bg.png) no-repeat center center / cover;
}

.main-visual-content img {
  width: 100%;
  height: auto;
  margin: 0 auto;
  animation: fadeInUp 1s ease-out;
}

.main-visual-content img:nth-child(1) {
  max-width: 600px;
  animation-delay: 0.2s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.main-visual-content img:nth-child(2) {
  max-width: 720px;
  margin: 20px 0 60px;
  animation-delay: 0.4s;
  opacity: 0;
  animation-fill-mode: forwards;
}

.main-visual-content img:nth-child(3) {
  max-width: 580px;
  animation-delay: 0.6s;
  opacity: 0;
  animation-fill-mode: forwards;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }

  .sp {
    display: block !important;
  }

  .inner {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  /* ハンバーガーメニューのレスポンシブ */
  header .inner {
    width: 90%;
    margin: 0 auto;
  }

  header h1 {
    font-size: 12px;
  }

  header h1 a {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    max-width: 280px;
  }

  /* モバイルでは全画面メニュー */
  #drawer {
    width: 280px;
    right: -280px;
    padding: 80px 20px 20px;
  }

  #drawer ul a {
    font-size: 16px;
    padding: 18px 12px;
  }

  .drawer-close {
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    font-size: 25px;
  }

  .main-visual-content {
    max-width: 90%;
    margin: 0 auto;
    padding: 100px 0 120px;
  }

  .main-visual-content img:nth-child(1) {
    max-width: 100%;
  }

  .main-visual-content img:nth-child(2) {
    max-width: 95%;
    margin: 15px 0 40px;
  }

  .main-visual-content img:nth-child(3) {
    max-width: 100%;
  }

  /* 装飾画像のモバイル調整 */
  .mv-deco01 {
    top: 0;
    left: 0;
    width: 100px;
  }

  .mv-deco02 {
    top: 0;
    right: 0;
    width: 100px;
  }

  .mv-deco03 {
    bottom: -10px;
    left: 0;
    width: 100px;
  }

  .mv-deco04 {
    bottom: 0;
    left: 35%;
    width: 140px;
  }

  .mv-deco05 {
    bottom: 0;
    right: 0;
    width: 100px;
  }
}

/* 支援セクション（新規） */
.support-call {
  background: #ebdfcc;
  padding: 0;
}

.support-call-inner {
  max-width: 100%;
  margin: 0 auto;
}

.support-call-content {
  padding: 40px 0;
  text-align: center;
}

.support-call-content > * {
  position: relative;
  z-index: 2;
}

.support-call-message {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-bottom: 10px;
}

.support-call-message .santa-icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.support-call-message p {
  color: #00660E;
  font-size: 32px;
  font-weight: 800;
  margin-bottom: 20px;
}
.support-call-message p br {
  display: none;
}
.support-call-buttons {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin-bottom: 20px;
  flex-wrap: wrap;
}

.support-btn {
  flex: 0 1 auto;
}

.support-btn a {
  width: 480px;
  margin: 0 auto;
  display: block;
  background: #fff000;
  color: #00660e;
  font-size: 18px;
  font-weight: 800;
  padding: 30px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
  white-space: nowrap;
  text-decoration: none;
}

.support-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.4);
  background: #ffc700;
}


/* レスポンシブ対応 - 支援セクション */
@media screen and (max-width: 768px) {

.support-call-inner {
  max-width: 90%;
  margin: 0 auto;
}
  .support-call-content {
  }
  .support-call-message {
    flex-direction: column;
    gap: 10px;
    margin-bottom: 0px;
  }

  .support-call-message .santa-icon {
    width: 120px;
    height: 120px;
  }

  .support-call-message p {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .support-call-message p br {
    display: block;
  }

  .support-call-buttons {
    flex-direction: column;
    gap: 15px;
    margin-bottom: 0px;
    padding: 0;
  }

  .support-btn {
    width: 100%;
  }

  .support-btn a {
    width: 100%;
    font-size: 14px;
    padding: 20px 0;
    white-space: normal;
    line-height: 1.5;
  }

}

/* フェスティバル情報セクション */
.festival-info {
  background: #fff;
  padding: 80px 0;
}

/* 日程セクション */
.date-section {
  text-align: center;
  margin-bottom: 40px;
}

.date-box {
  width: 540px;
  margin: 0 auto;
  background: #00660e;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  padding: 10px 0;
  border-radius: 10px;
}

/* フェス選択セクション */
.fest-selection {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 0 15px;
}

.fest-buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-bottom: 45px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.fest-row {
  display: contents;
}

.fest {
  width: 100%;
  max-width: 420px;
  margin: 0 auto;
  background: #fff;
  padding: 25px 10px;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-align: center;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
}
.fest a {
  color: #c70010;
  font-size: 24px;
  font-weight: 800;
  display: block;
}

.fest:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  border-color: #c70010;
}

.fest.active {
  background: #c70010;
  border-color: #c70010;
}

.fest.active a {
  color: #fff;
}

.selection-text {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  margin-top: 30px;
}

/* レスポンシブ対応 - フェスティバル情報 */
@media screen and (max-width: 768px) {
  .festival-info {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0;
  }

  .fest-selection {
    max-width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }
  .date-section {
    width: 100％;
    margin-bottom: 40px;
  }

  .date-box {
    max-width: 100%;
    width: 100％;
    margin: 0 auto;
    font-size: 18px;
    padding: 14px 0;
    border-radius: 30px;
  }

  .fest-buttons {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 28px;
  }

  .fest-row {
    display: flex;
    flex-direction: column;
    gap: 14px;
  }

  .fest {
    padding: 16px 0;
    width: 100%;
    max-width: 100%;
    margin: 0;
    border-radius: 10px;
  }

  .fest a {
    font-size: 18px;
  }

  .selection-text {
    font-size: 16px;
    font-weight: 500;
  }
}

.main-content {
  background: #c70010;
  padding: 120px 0 80px;
  border-radius: 50% 50% 0 0 / 200px 200px 0 0;
  overflow: hidden;
}
.main-content h1 {
  font-size: 42px;
  font-weight: 900;
  color: #fff;
  text-align: center;
  margin-bottom: 40px;
  padding: 0 15px;
}
.main-content > section {
  background: #fff;
  max-width: 1080px;
  margin: 0 auto 40px;
  padding: 40px 0 60px;
  border-radius: 10px;
  width: calc(100% - 30px);
}

.main-content > section h2 {
  font-size: 42px;
  font-weight: 900;
  margin-bottom: 40px;
  text-align: center;
}

.main-content > section .number {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}

.main-content > section .number span {
  font-family: "Alumni Sans Inline One", sans-serif;
  display: inline-block;
  font-size: 32px;
  font-weight: 400;
  width: 60px;
  height: 60px;
  margin: auto;
  line-height: 60px;
  text-align: center;
  border-radius: 50%;
}

.main-content > section h3 {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  margin-top: -30px;
  margin-bottom: 40px;
}

.main-content > section h4 {
  font-size: 20px;
  font-weight: 800;
  color: #000;
  margin-bottom: 10px;
}

.main-content > section .textarea {
  margin-top: 30px;
}

.main-content > section .textarea p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.sec-inner {
  max-width: 960px;
  margin: 0 auto;
}

/* セクション00 はじめに 
---------------------------------*/
.sec00 {
  background: transparent;
}

.sec00 .number span {
  color: #000;
  background: #ebdfcc;
}

.sec00 .textarea {
  margin-top: 30px;
}

.sec00 .textarea p {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.sec00 .textarea p strong {
  color: #c70010;
  font-size: 20px;
  font-weight: 800;
}

.sec00 .images {
  margin: 40px 0;
  text-align: center;
}

.sec00 .images img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.sec00 .yellow-btn {
  width: 420px;
  margin: 0 auto;
  text-align: center;
  margin-top: 40px;
}

.sec00 .yellow-btn a {
  display: block;
  width: 420px;
  margin: 0 auto;
  background: #fff000;
  color: #00660e;
  font-size: 20px;
  font-weight: 800;
  padding: 25px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sec00 .yellow-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: #ffc700;
}

/* セクション01 まちじゅう子ども食堂 
---------------------------------*/

.sec01 .number span {
  color: #fff;
  background: #004b98;
}

.sec01 h2 {
  color: #004b98;
}

.sec01 h3 {
  color: #004b98;
}

.sec01 .images {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin: 20px 0;
}

.sec01 .images img {
  width: calc(50% - 10px);
  height: auto;
}

.sec01 ul {
  margin-top: 30px;
}

.sec01 ul li {
  border-left: 5px solid #004b98;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  position: relative;
  padding-left: 10px;
  margin: 10px 0;
  font-weight: 700;
}

/* セクション02 みんな笑顔の映画館 
---------------------------------*/

.sec02 .number span {
  color: #fff;
  background: #ff7c00;
}

.sec02 h2 {
  color: #ff7c00;
}

.sec02 h3 {
  color: #ff7c00;
}

.sec02 .textarea > h4 {
  font-size: 24px;
  color: #fff;
  background: #ff7c00;
  padding: 20px 0;
  text-align: center;
  margin-bottom: 40px;
}
/* 監督紹介セクション */
.sec02 .introd {
}
.sec02 .introd .inner{
}
.sec02 .introd .inner h5{
  font-size: 20px;
  font-weight: 800;
}

.sec02 dl {
  margin: 20px 0 60px;
}

.sec02 dt {
  font-size: 20px;
  font-weight: 800;
  background: #FFF2E5;
  padding: 5px 10px;
  display: inline-block;
  margin-bottom: 20px;
}

.sec02 dd.place {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.sec02 dd.movie {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}

.sec02 dd.movie-img {
  margin: 20px 0;
}
.sec02 dd.movie-img img {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}
.sec02 dd.flex {
  width: 100%;
  display: flex;
  gap: 20px;
  justify-content: space-around;
  align-items: center;
}

.sec02 dd.flex .movie-pa-img img{
  width: 200px
}

.sec02 dd.flex .movie-pa-info {
  width: 100%;
  max-width: 100%;
  height: auto;
  margin: 0 auto;
}

.sec02 dd.flex .movie-pa-info dl {
}
.sec02 dd.flex > .movie-pa-info dl dt {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
  padding: 5px 0;
  background: #FFF;
}
.sec02 dd.flex > .movie-pa-info dl dd {
  font-size: 16px;
  font-weight: 300;
  margin-bottom: 10px;
}

.sec02 dd.flex > .movie-pa-info dl dd > .yellow-btn{
  margin: 20px 0;
}

.sec02 dd.map iframe {
  width: 100%;
  height: 290px;
  overflow: hidden;
}

/* ゲストセクション */
.sec02 .guest {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin: 0 0 40px 0;
}

.sec02 .guest-img {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.sec02 .guest-img img {
  width: 100%;
  max-width: 293px;
  height: auto;
  object-fit: cover;
  margin-bottom: 10px;
}


.sec02 .yellow-btn {
  width: 420px;
  margin: 0 auto;
  text-align: center;
}

.sec02 .yellow-btn a {
  display: block;
  width: 420px;
  margin: 0 auto;
  background: #fff000;
  color: #00660e;
  font-size: 20px;
  font-weight: 800;
  padding: 25px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sec02 .yellow-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: #ffc700;
}

/* セクション03 歌って、踊って、朗読劇 
---------------------------------*/

.sec03 .number span {
  color: #fff;
  background: #ff4388;
}

.sec03 h2 {
  color: #ff4388;
}

.sec03 h3 {
  color: #ff4388;
}

/* メインコンテンツレイアウト */
.sec03 > .sec-inner > .flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.sec03 > .sec-inner > .flex > .left {
  flex: 1;
}

.sec03 > .sec-inner > .flex > .right {
  flex: 0 0 400px;
}

.sec03 > .sec-inner > .flex > .right img {
  width: 100%;
  height: auto;
}

/* 出演者リスト */
.sec03 .left > .flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 30px;
}

.sec03 .left dl {
  text-align: center;
}

.sec03 .left dl .image {
  margin-bottom: 10px;
}

.sec03 .left dl .image img {
  width: 100%;
  max-width: 120px;
  height: auto;
  margin: 0 auto;
}

.sec03 .left dl .name {
  font-size: 16px;
  font-weight: 700;
}

/* 期間・場所情報 */
.sec03 .left ul {
  margin-top: 30px;
}

.sec03 .left ul li {
  border-left: 5px solid #ff4388;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  position: relative;
  padding-left: 10px;
  margin: 10px 0;
  font-weight: 700;
}

/* マップ */
.sec03 .map {
  width: 100%;
  height: 290px;
  overflow: hidden;
  margin-top: 30px;
}

.sec03 .map iframe {
  width: 100%;
  height: 100%;
}

.sec03 .yellow-btn {
  width: 420px;
  margin: 0 auto;
  text-align: center;
}

.sec03 .yellow-btn a {
  display: block;
  width: 420px;
  margin: 0 auto;
  background: #fff000;
  color: #00660e;
  font-size: 20px;
  font-weight: 800;
  padding: 25px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sec03 .yellow-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: #ffc700;
}

/* セクション04 みんなのクリスマスコンサート 
---------------------------------*/

.sec04 .number span {
  color: #fff;
  background: #00660e;
}

.sec04 h2 {
  color: #c70010;
}

.sec04 h3 {
  color: #00660e;
}

/* アテンションボックス */
.sec04 .attention {
  border: 10px solid #00660e;
  border-radius: 10px;
  padding: 30px 0;
  margin: 30px 0;
}
.sec04 .attention .inner {
  width: 90%;
  margin: 0 auto;
}

.sec04 .attention h4 {
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 10px;
}

.sec04 .attention p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

.sec04 .attention .red-text {
  color: #c70010;
  font-weight: 700;
  font-size: 18px;
}

/* メインコンテンツレイアウト */
.sec04 .textarea > .flex {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  margin-top: 30px;
}

.sec04 .textarea .left {
  flex: 1;
}

.sec04 .textarea .right {
  flex: 1;
}

/* 期間・場所情報 */
.sec04 .left ul li {
  border-left: 5px solid #00660e;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
  position: relative;
  padding-left: 10px;
  margin: 10px 0;
  font-weight: 700;
}

/* マップ */
.sec04 .map {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.sec04 .map iframe {
  width: 100%;
  height: 100%;
}
.sec04 .textarea > .sp-flex {
  display: none;
}
/* 出演者情報 */
.sec04 .right > .flex {
  margin-bottom: 30px;
}

.sec04 .right > .flex:first-child {
  display: flex;
  align-items: center;
  gap: 20px;
}

.sec04 .right > .flex:last-child {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.sec04 .right dl {
  text-align: center;
}

.sec04 .right dl .image {
  margin-bottom: 10px;
}

.sec04 .right dl .image img {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  object-fit: cover;
}

.sec04 .right dl .name {
  font-size: 16px;
  font-weight: 700;
  color: #00660e;
}

.sec04 .right dl .text {
  font-size: 14px;
  line-height: 1.6;
  color: #333;
  text-align: left;
}

.sec04 .yellow-btn {
  width: 380px;
  margin: 30px 0;
  text-align: center;
}

.sec04 .yellow-btn a {
  display: block;
  width: 380px;
  margin: 0 auto;
  background: #fff000;
  color: #00660e;
  font-size: 18px;
  font-weight: 800;
  padding: 20px 0;
  border-radius: 10px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.sec04 .yellow-btn a:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.15);
  background: #ffc700;
}

/* レスポンシブ対応 - セクション00 */
@media screen and (max-width: 768px) {
  .main-content {
    padding: 80px 0 40px;
    border-radius: 50% 50% 0 0 / 100px 100px 0 0;
  }

  .main-content h1 {
    font-size: 24px;
    margin-bottom: 25px;
    padding: 0 15px;
    line-height: 1.5;
  }

  .main-content > section {
    padding: 40px 0;
    margin: 0 15px 20px;
    border-radius: 10px;
    width: calc(100% - 30px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.25);
  }

  .main-content > section h2 {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .main-content > section h3 {
    font-size: 16px;
  }
  .main-content > section h4 {
    font-size: 16px;
  }

  .main-content > section .textarea p {
    font-size: 14px;
  }

  .sec-inner {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  /* セクション00のレスポンシブ 
  ---------------------------------*/

  .sec00 .textarea {
    margin-top: 20px;
  }

  .sec00 .textarea p strong {
    font-size: 15px;
    color: #c70010;
  }

  .sec00 .images {
    margin: 0;
    width: auto;
  }

  .sec00 .images img {
    width: 100%;
    max-width: none;
  }

  .sec00 .yellow-btn {
    width: 100%;
    max-width: 100%;
    margin-top: 30px;
  }

  .sec00 .yellow-btn a {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 17px 0;
    border-radius: 10px;
    background: #fff000;
    color: #00660e;
  }

  /* セクション01のレスポンシブ 
  ---------------------------------*/

  .sec01 .images {
    display: block;
    gap: 20px;
    margin: 20px 0;
  }

  .sec01 .images img {
    width: 100%;
    height: auto;
  }

  .sec01 ul li {
    font-size: 14px;
    line-height: 1.8;
  }

  /* セクション02のレスポンシブ 
  ---------------------------------*/

.sec02 .textarea > h4 {
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 20px;
}
.sec02 .introd .inner{
   width: 100%;
}
.sec02 .introd .inner h5{
  font-size: 16px;
}

.sec02 dl {
  margin: 0px 0 30px;
}

.sec02 dt {
  font-size: 16px;
}

.sec02 dd.place {
  font-size: 14px;
}

.sec02 dd.movie {
  font-size: 14px;
}

.sec02 dd.movie-img {
  margin: 20px 0 5px;

}
.sec02 dd.movie-img img {}

.sec02 dd.map iframe {
  height: 250px;
}


.sec02 dd.flex {
  width: 100%;
  display: block!important;
  margin: 20px 0;
}

.sec02 dd.flex .movie-pa-img{
  width: 150px;
  margin: 0 auto;
  text-align: center;
}
.sec02 dd.flex .movie-pa-img img{
  width: 150px;
}

.sec02 dd.flex .movie-pa-info {
}

.sec02 dd.flex .movie-pa-info dl {
}
.sec02 dd.flex > .movie-pa-info dl dt {
  font-size: 16px;
}
.sec02 dd.flex > .movie-pa-info dl dd {
  font-size: 14px;
  margin-bottom: 5px;
}

.sec02 dd.flex > .movie-pa-info dl dd > .yellow-btn{
  margin: 20px 0;
}




  /* ゲストセクションのレスポンシブ */
  .sec02 .guest {
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    margin: 10px 0 20px 0;
  }

  .sec02 .guest-img img {
    max-width: 100%;
  margin-bottom: 0;
  }

  /* ボタンのレスポンシブ */
  .sec02 > .sec-inner > .textarea > .flex {
    display: block!important;
    flex-direction: column;
    gap: 10px;
  }

  .sec02 .yellow-btn {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
  }

  .sec02 .yellow-btn a {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 17px 0;
  }

  /* セクション03のレスポンシブ 
  ---------------------------------*/

  .sec03 > .sec-inner > .flex {
    flex-direction: column;
    gap: 30px;
  }

  .sec03 > .sec-inner > .flex > .right {
    display: none;
  }

  .sec03 > .sec-inner > .flex > .left > .sp img {
    width: 100%;
  }

  /* 出演者リストのレスポンシブ */
  .sec03 .left > .flex {
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin-bottom: 25px;
  }

  .sec03 .left dl .image img {
    max-width: 130px;
  }

  .sec03 .left dl .name {
    font-size: 14px;
  }

  /* 期間・場所情報のレスポンシブ */
  .sec03 .left ul {
    padding: 0;
    border-left-width: 4px;
    margin-bottom: 25px;
  }

  .sec03 .left ul li {
    font-size: 14px;
    line-height: 1.8;
  }

  /* マップのレスポンシブ */
  .sec03 .map {
    height: 250px;
    border-width: 1px;
  }

  /* ボタンのレスポンシブ */
  .sec03 > .sec-inner > .flex.yellow-buttons {
    flex-direction: column;
    gap: 10px;
  }

  .sec03 .yellow-btn {
    width: 100%;
    max-width: 100%;
  }

  .sec03 .yellow-btn a {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 17px 0;
  }

  /* セクション03のレスポンシブ 
  ---------------------------------*/

  /* アテンションボックスのレスポンシブ */
  .sec04 .attention {
    padding: 30px 0 20px;
    margin: 20px 0 0;
    border-width: 5px;
  }

  .sec04 .attention h4 {
    font-size: 16px;
    margin-bottom: 15px;
  }

  .sec04 .attention p {
    font-size: 14px;
    line-height: 1.6;
  }

  .sec04 .attention .red-text {
    font-size: 14px;
  }

  /* メインレイアウトのレスポンシブ */
  .sec04 .textarea > .flex {
    flex-direction: column;
    gap: 30px;
    margin-top: 10px;
    display: block;
  }

  /* 出演者リストのレスポンシブ */

  .sec04 .textarea > .sp-flex {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    margin: 30px 0 20px;
  }

  .sec04 .textarea > .sp-flex dl .image img {
    width: 140px;
    height: 140px;
  }

  .sec04 .textarea > .sp-flex dl .name {
    text-align: center;
    font-weight: 700;
    font-size: 14px;
  }

  /* 期間・場所情報のレスポンシブ */
  .sec04 .left ul {
    border-left-width: 4px;
    margin-top: 30px;
  }

  .sec04 .left ul li {
    font-size: 14px;
    line-height: 1.8;
  }

  /* マップのレスポンシブ */
  .sec04 .map {
    height: 250px;
    border-width: 1px;
  }

  /* 出演者情報のレスポンシブ */

  .sec04 .right {
    display: none;
  }

  .sec04 .yellow-btn {
    width: 100%;
    max-width: 100%;
  }

  .sec04 .yellow-btn a {
    width: 100%;
    max-width: 100%;
    font-size: 16px;
    padding: 17px 0;
  }
}

.sub-content {
  background: #ebdfcc;
  padding: 40px 0 60px;
}

.sub-content h2 {
  max-width: 960px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 10px 0;
  color: #fff;
  font-size: 28px;
  font-weight: 700;
  text-align: center;
  border-radius: 10px;
  background: #00660e;
}


/* メッセージセクション 
---------------------------------*/
.sponsor-section {
  padding: 60px 0;
}

.sponsor-section h2 {
  margin-bottom: 60px;
}

.sponsor-inner {
  max-width: 1080px;
  width: calc(100% - 30px);
  margin: 0 auto;
}

.sponsor-inner h3{
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  color: #000;
  margin-bottom: 40px;
}

.sponsor-grid {
  max-width: 1080px;
  margin: 0 auto 40px;
}
.grid-3f {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 0;
}
.grid-4f {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: center;
  padding: 0;
}
.grid-5f {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
  justify-content: center;
  padding: 0;
}
.grid-6f {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 5px;
  justify-content: center;
  padding: 0;
}
.sponsor-box {}
.sponsor-box img{
  max-width: 100%;
}

/* レスポンシブ対応 - メッセージセクション */
@media screen and (max-width: 1024px) {
  .sponsor-grid {
    flex-direction: column;
    align-items: center;
  }

}
.present-box {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 20px 0;
  width: 100%;
  max-width: 100%;
}

.present-grid {
  width: 960px;
  margin: 0 auto;
  padding:  20px 0;
}
.present-grid > .sponsor-box {
  font-size: 22px;
  font-weight: 800;
  text-align: center;
}
.present-grid > .sponsor-box > img.kidzania{
  width: 180px;
}

@media screen and (max-width: 768px) {

  .sponsor-section {
    padding: 40px 0;
  }

  .sponsor-section h2 {
    width: calc(100% - 30px);
    font-size: 20px;
    margin-bottom: 40px;
  }

  .sponsor-inner h3{
    font-size: 20px;
    margin-bottom: 20px;
  }
  .sponsor-grid {
    width: 100%;
    margin: 0 auto 40px;
    padding: 0;
  }

  .grid-3f {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 5px;
    justify-content: center;
    padding: 0;
  }
  .grid-4f {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 5px;
    justify-content: center;
    padding: 0;
  }
  .grid-5f {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    justify-content: center;
    padding: 0;
  }
  .grid-6f {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 5px;
    justify-content: center;
    padding: 0;
  }

.present-box {
  display: block;
  background: #fff;
  border-radius: 15px;
  padding: 10px 0;
  width: 100%;
  max-width: 100%;
}

.present-grid {
  width: 90%;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
}
.present-grid > .sponsor-box {
  font-size: 16px;
  font-weight: 800;
  text-align: center;
  margin: 10px 0;
}
.present-grid > .sponsor-box > img.kidzania{
  width: 140px;
}


}

/* メッセージセクション 
---------------------------------*/
.message-section {
  padding: 60px 0;
}

.message-section h2 {
  margin-bottom: 60px;
}

.message-grid {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  gap: 40px;
  justify-content: center;
  padding: 0 15px;
}

.message-box {
  background: #fff;
  border-radius: 15px;
  padding: 20px 0;
  width: 50%;
  max-width: 520px;
}

.message-box .inner {
  width: 90%;
  margin: 0 auto;
}

.message-box h4 {
  font-size: 18px;
  font-weight: 700;
  color: #333;
  margin-bottom: 30px;
}

.message-box p {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* レスポンシブ対応 - メッセージセクション */
@media screen and (max-width: 1024px) {
  .message-grid {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .message-box {
    width: 90%;
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .message-section {
    padding: 40px 0;
  }

  .message-section h2 {
    width: calc(100% - 30px);
    font-size: 20px;
    margin-bottom: 40px;
  }

  .message-grid {
    width: 90%;
    margin: 0 auto;
    padding: 0;
  }

  .message-box {
    writing-mode: horizontal-tb;
    text-orientation: mixed;
    padding: 30px 0;
    width: 100%;
  }

  .message-box h4 {
    font-size: 14px;
    margin-bottom: 15px;
    text-align: left;
  }

  .message-box p {
    font-size: 14px;
    line-height: 1.8;
    text-align: left;
  }
}

/* 応援セクション 
---------------------------------*/
.support-section {
  padding: 60px 0;
}

.support-section h2 {
  margin-bottom: 60px;
}

.support-grid {
  max-width: 1080px;
  width: calc(100% - 30px);
  margin: 0 auto;
  background: #fff;
  border-radius: 15px;
  padding: 50px 0;
}
.support-grid .inner {
  max-width: 960px;
  width: calc(100% - 60px);
  margin: 0 auto;
  display: flex;
  gap: 40px;
}

.support-list {
  flex: 1;
}

.support-list p {
  font-size: 16px;
  line-height: 1.4;
  color: #333;
  margin: 0;
  padding: 8px 0;
}

/* レスポンシブ対応 - 応援セクション */
@media screen and (max-width: 1024px) {
  .support-grid {
    gap: 50px;
    padding: 40px 40px;
  }
}

@media screen and (max-width: 768px) {
  .support-section {
    padding: 40px 0;
  }

  .support-section h2 {
    width: calc(100% - 30px);
    font-size: 20px;
    margin-bottom: 40px;
  }

  .support-grid {
    padding: 30px 0;
  }

  .support-grid .inner {
    width: calc(100% - 40px);
    flex-direction: column;
    gap: 0;
  }

  .support-grid {
    flex-direction: column;
    gap: 30px;
    padding: 30px 0;
    margin: 0 auto;
  }

  .support-list p {
    font-size: 14px;
    line-height: 2;
    padding: 5px 0;
  }
}

/* 開催概要セクション 
---------------------------------*/
.overview-section {
  padding: 60px 0;
}

.overview-section h2 {
  margin-bottom: 60px;
}

.overview-content {
  max-width: 960px;
  width: calc(100% - 30px);
  margin: 0 auto;
  padding: 0;
}

.overview-table {
  width: 100%;
  border-collapse: collapse;
}

.overview-table tr {
  border-bottom: 1px solid #bebebe;
}

.overview-table tr:last-child {
  border-bottom: none;
}

.overview-table td {
  padding: 15px 40px;
  vertical-align: top;
}

.overview-table td.label {
  width: 200px;
  font-size: 18px;
  font-weight: 700;
  color: #333;
}

.overview-table td:not(.label) {
  font-size: 16px;
  line-height: 1.8;
  color: #333;
}

/* レスポンシブ対応 - 開催概要セクション */
@media screen and (max-width: 1024px) {
  .overview-content {
    max-width: 95%;
  }

  .overview-table td {
    padding: 25px 30px;
  }

  .overview-table td.label {
    width: 150px;
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  .overview-section {
    padding: 40px 0 0;
  }

  .overview-section h2 {
    width: calc(100% - 30px);
    font-size: 20px;
    margin-bottom: 40px;
  }

  .overview-content {
    width: calc(100% - 30px);
  }

  .overview-content {
    margin: 0 auto;
    border-radius: 10px;
  }

  .overview-table tr {
    display: block;
    padding: 0 0 20px 0;
  }

  .overview-table tr:last-child {
    border-bottom: none;
  }

  .overview-table td {
    display: block;
    width: 100% !important;
    padding: 10px 0;
  }

  .overview-table td.label {
    font-size: 14px;
    font-weight: 700;
    background: transparent;
    padding-bottom: 5px;
  }

  .overview-table td:not(.label) {
    font-size: 14px;
    line-height: 1.7;
    padding-top: 0;
  }
}

.main-footer {
  padding: 10px 0;
  text-align: center;
}

.main-footer p {
  font-size: 14px;
}
