@charset "UTF-8";

/*------------------------------------
  トップページ専用スタイル
  インクルーシブスポーツフェスタ広島2026
------------------------------------*/

/************************************
  #kv（キービジュアル）
************************************/
#kv {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  min-height: 740px;
  background: url("../images/kv_back.webp") center bottom / cover no-repeat;
  /*overflow: hidden;*/
}

#kv .wrapper {
  position: relative;
  max-width: 1260px;
  width: 94%;
  height: auto;
  aspect-ratio: 100 / 65;
  margin: 0;
  /*background: #ff000020;*/
}

#kv .wrapper > * {
  position: absolute;
}

#kv .wrapper img {
  width: 100%;
  height: auto;
  display: block;
}

/* ロゴ＋タイトル：左上 */
#kv .kv_ttl {
  top: 5%;
  left: 3%;
  width: 20.8%;
  z-index: 5;
}

/* 円形写真グループ：wrapper 全体を基準に配置 */
#kv .kv_img_wrap {
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  pointer-events: none;
}

#kv .kv_img_waku {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  z-index: 0;
}

#kv .kv_img_waku.is-active {
  opacity: 1;
  z-index: 1;
  pointer-events: auto;
}

#kv .kv_img1,
#kv .kv_img2,
#kv .kv_img3 {
  position: absolute;
  pointer-events: auto;
}

/* 円形写真1（バスケット）：中央やや左 */
#kv .kv_img1 {
  top: 0;
  left: 28%;
  width: 38%;
  z-index: 2;
}

/* 円形写真2（ボート）：中央やや下 */
#kv .kv_img2 {
  top: 48%;
  left: 60%;
  width: 18%;
  z-index: 2;
}

/* 円形写真3（ボルダリング）：右上 */
#kv .kv_img3 {
  top: 9%;
  right: 0;
  width: 29%;
  z-index: 3;
}

/* キャッチコピー：左下 */
#kv .kv_copy {
  bottom: 5%;
  left: 0;
  width: 51.6%;
  z-index: 4;
}

/* 日程・バッジ：右下 */
#kv .kv_day {
  bottom: 0;
  right: 0;
  width: 50%;
  z-index: 4;
}

/* KVアニメの初期状態は JS で制御（css/top.css 側では強制しない） */

/*------------------------------------
  タブレット以下
------------------------------------*/
@media only screen and (max-width: 1024px) {
  #kv {
    height: 70vw;
  }
}

/*------------------------------------
  スマホ
------------------------------------*/
@media only screen and (max-width: 600px) {
  #kv {
    height: 150vw;
    padding: 3vw 0;
}

  #kv .wrapper {
    aspect-ratio: auto;
    height: 100%;
    /*width: 92%;
    display: flex;
    flex-direction: column;
    align-items: center;*/
  }



  #kv .kv_ttl {
    width: 36%;
    margin: 0 auto 4%;
    /* order: 1; */
    top: 12%;
    left: 0;
}

#kv .kv_img1 {
  width: 65%;
  /* margin: 0 auto -8%; */
  /* order: 2; */
  /* z-index: 2; */
  top: 5%;
  left: auto;
  right: 0;
}


  #kv .kv_img2 {
    /* position: absolute; */
    top: 46%;
    left: 28%;
    width: 28%;
    /* order: 3; */
    /* z-index: 3; */
}

  #kv .kv_img3 {
    /* position: absolute; */
    top: 50%;
    right: 3%;
    /* left: auto; */
    width: 36%;
    order: 4;
    /* z-index: 3; */
}

  #kv .kv_copy {
    width: 84%;
    /* margin: 8% auto 4%; */
    /* order: 5; */
    /* z-index: 4; */
    bottom: 9%;
}

  #kv .kv_day {
    width: 68%;
  }
}

/************************************
  #introduction
************************************/
#introduction {
  background-color: #2546FC;
  padding: 0 0 100px;
  text-align: center;
}

#introduction .introduction_ttl {
  margin: 0 0 40px;
  color: var(--color-key3);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

#introduction .introduction_text {
  margin: 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.02em;
}

#introduction .introduction_text + .introduction_text {
  margin-top: 2em;
}

@media only screen and (max-width: 1024px) {
  #introduction {
    padding: 20px 0;
  }

  #introduction .introduction_ttl {
    margin-bottom: 28px;
    font-size: 1.6rem;
  }
  #introduction .introduction_text {
    font-size: 0.95rem;
    line-height: 1.9;
    text-align: left;
  }
}

@media only screen and (max-width: 600px) {
  #introduction {
    padding: 20px 0;
  }

  #introduction .introduction_ttl {
    margin-bottom: 24px;
    font-size: 5vw;
    line-height: 1.5;
  }

  #introduction .introduction_text {

  }

  #introduction .introduction_text + .introduction_text {
    margin-top: 1.5em;
  }
}

/************************************
  #kaijo
************************************/
#kaijo {
  background-color: #2546FC;
  padding: 0 0 100px;
  text-align: left;
}

/* 左端ぴったり・右に10%の余白で青枠を見せる */
#kaijo .wrapper {
  max-width: none;
  width: 90%;
  margin: 0 10% 0 0;
}

#kaijo .kaijo-panel {
  overflow: hidden;
  background-color: #fff;
  border-radius: 0 60px 60px 0;
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

#kaijo .kaijo-head {
  padding: 80px 6% 20px 12%;
}

#kaijo .kaijo-ttl {
  position: relative;
  display: inline-block;
  margin: 0 0 36px;
  color: var(--color-key1);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#kaijo .kaijo-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 72px;
  height: 5px;
  background-color: var(--color-key2);
}

#kaijo .kaijo-intro {
  display: flex;
  align-items: flex-start;
  gap: 4%;
  margin-bottom: 48px;
}

#kaijo .kaijo-intro-text {
  flex: 1 1 48%;
  color: var(--color-base);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}

#kaijo .kaijo-intro-text p {
  margin: 0;
}

#kaijo .kaijo-intro-text p + p {
  margin-top: 1.5em;
}

#kaijo .kaijo-intro-figure {
  flex: 0 1 42%;
  max-width: 480px;
  margin: 0;
}

#kaijo .kaijo-intro-figure img {
  width: 100%;
  height: auto;
  display: block;
}

#kaijo .kaijo-intro-figure figcaption {
  margin-top: 10px;
  color: var(--color-base);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.6;
  text-align: left;
}

#kaijo .kaijo-subttl {
  margin: 0 0 28px;
  color: var(--color-key1);
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: left;
}

#kaijo .kaijo-list {
  letter-spacing: 0;
}

#kaijo .kaijo-item {
  display: flex;
  align-items: flex-start;
  gap: 5%;
  padding: 48px 6% 48px 12%;
  background-color: #fff;
  letter-spacing: 0;
}
#kaijo .kaijo-item:first-child {
  padding-top: 0;
}
#kaijo .kaijo-item:nth-child(even) {
  flex-direction: row-reverse;
  background-color: var(--color-back2);
}

#kaijo .kaijo-item-img {
  flex: 0 1 42%;
  max-width: 480px;
}

#kaijo .kaijo-item-img img {
  width: 100%;
  height: auto;
  display: block;
}

#kaijo .kaijo-item-body {
  flex: 1 1 48%;
  text-align: left;
}

#kaijo .kaijo-item-ttl {
  margin: 0 0 16px;
  color: var(--color-key1);
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.03em;
}

#kaijo .kaijo-sports {
  
  margin: 0 0 24px;
  letter-spacing: 0;
}

#kaijo .kaijo-sports li {
  display: inline-block;
  padding: 2px 12px 2px 0;
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0;
  list-style: none;
  text-align: left;
}

#kaijo .kaijo-sports li::before {
  content: "●";
  margin-right: 0.4em;
}
#kaijo .kaijo-sports li.kaigyo{
display: block;  

}

#kaijo .btn-map {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-width: 180px;
  padding: 8px 28px 8px 12px;
  color: var(--color-key1);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background-color: #fff;
  border: 2px solid var(--color-key1);
  border-radius: 999px;
}

#kaijo .btn-map img {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}

#kaijo .btn-map:hover {
  opacity: 1;
  background-color: var(--color-key1);
  color: #fff;
}

@media only screen and (max-width: 1024px) {
  #kaijo {
    padding-bottom: 70px;
  }

  #kaijo .kaijo-panel {
    border-radius: 0 40px 40px 0;
  }

  #kaijo .kaijo-head {
    padding: 40px 5% 16px;
  }

  #kaijo .kaijo-ttl {
    font-size: 1.5rem;
    margin-bottom: 28px;
  }

  #kaijo .kaijo-intro {
    gap: 3%;
    margin-bottom: 36px;
  }

  #kaijo .kaijo-subttl {
    font-size: 1.15rem;
  }

  #kaijo .kaijo-item {
    gap: 4%;
    padding: 36px 5%;
  }

  #kaijo .kaijo-item-ttl {
    font-size: 1.1rem;
  }

  #kaijo .kaijo-sports li {
    font-size: 0.9rem;
  }
}

@media only screen and (max-width: 600px) {
  #kaijo {
    padding-bottom: 50px;
  }

  #kaijo .kaijo-panel {
    border-radius: 0 24px 24px 0;
  }

  #kaijo .kaijo-head {
    padding: 32px 5% 12px;
  }

  #kaijo .kaijo-ttl {
    font-size: 1.25rem;
    margin-bottom: 24px;
  }

  #kaijo .kaijo-ttl::after {
    width: 56px;
    height: 4px;
    bottom: -6px;
  }

  #kaijo .kaijo-intro {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
  }

  #kaijo .kaijo-intro-text,
  #kaijo .kaijo-intro-figure {
    flex: none;
    width: 100%;
    max-width: none;
  }

  #kaijo .kaijo-intro-text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #kaijo .kaijo-subttl {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }

  #kaijo .kaijo-item,
  #kaijo .kaijo-item:nth-child(even) {
    flex-direction: column;
    align-items: stretch;
    gap: 20px;
    padding: 28px 5%;
  }

  #kaijo .kaijo-item-img,
  #kaijo .kaijo-item-body {
    flex: none;
    width: 100%;
    max-width: none;
  }

  #kaijo .kaijo-item-ttl {
    font-size: 1.05rem;
  }

  #kaijo .kaijo-sports li {
    width: 100%;
    font-size: 0.9rem;
  }

  #kaijo .btn-map {
    min-width: 0;
    width: 100%;
    max-width: 220px;
    justify-content: center;
  }
}

/************************************
  #entry
************************************/
#entry {
  position: relative;
  background-color: #2546FC;
  padding: 80px 0 0;
  color: #fff;
  text-align: left;
}

#entry .entry-lead {
  display: flex;
  align-items: center;
  gap: 5%;
  margin-bottom: 50px;
}

#entry .entry-lead-text {
  flex: 1 1 55%;
}

#entry .entry-ttl {
  position: relative;
  display: inline-block;
  margin: 0 0 28px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#entry .entry-ttl::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100px;
  height: 5px;
  background-color: var(--color-sun);
}

#entry .entry-lead-text p {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}

#entry .entry-lead-text p + p {
  margin-top: 1.2em;
}

#entry .entry-note {
  margin-top: 1.2em !important;
  font-size: 0.85rem !important;
  opacity: 0.95;
}

#entry .entry-lead-img {
  flex: 0 0 32%;
  max-width: 360px;
}

#entry .entry-lead-img img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50%;
}

/* 共通ボックス（タイムテーブル・マップ） */
#entry .entry-box {
  margin-bottom: 40px;
  padding: 40px 4%;
  background-color: var(--color-key1);
  border-radius: 24px;
}

#entry .entry-box-ttl {
  margin: 0 0 20px;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.08em;
  text-align: center;
}

/* タイムテーブル：見出し＋閉じる */
#timetable .entry-box-head {
  position: relative;
  margin-bottom: 20px;
  min-height: 2.2em;
}

#entry #timetable .entry-box-ttl {
  margin: 0;
  padding: 0 130px;
}

#timetable .entry-table-scroll-note {
  display: none;
  margin: 8px 0 0;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.92;
}

#timetable .entry-table-close {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

#timetable .entry-table-close[hidden] {
  display: none;
}

/* タイムテーブル：続きを見る／閉じる共通ボタン */
#timetable .entry-table-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin: 0;
  padding: 8px 16px 8px 10px;
  border: none;
  border-radius: 10px;
  background-color: #c94b5c;
  color: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

#timetable .entry-table-action:hover {
  background-color: #b53f4f;
}

#timetable .entry-table-action-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.55em;
  height: 1.55em;
  border-radius: 50%;
  background-color: #fff;
  color: #c94b5c;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}

#timetable .entry-table-more .entry-table-action-icon {
  font-size: 0.7em;
}

#timetable .entry-table-close .entry-table-action-icon {
  font-size: 1.15em;
  line-height: 0.9;
}

#timetable .entry-table-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

#timetable.is-open .entry-table-more-wrap {
  display: none;
}

#timetable .entry-table-close-bottom-wrap {
  display: none;
  justify-content: center;
  margin-top: 20px;
}

#timetable.is-open .entry-table-close-bottom-wrap {
  display: flex;
}

#timetable .entry-table-close-bottom[hidden] {
  display: none;
}

/* タイムテーブル：折りたたみ＋グラデーション */
#timetable .entry-table-slide {
  position: relative;
  overflow: hidden;
  max-height: 320px;
  transition: max-height 0.5s ease-in-out;
}

#timetable .entry-table-slide::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 90px;
  background-image: linear-gradient(
    to bottom,
    rgba(23, 44, 159, 0) 0%,
    rgba(23, 44, 159, 0.55) 45%,
    rgba(23, 44, 159, 1) 100%
  );
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s ease-in-out;
}

#timetable.is-open .entry-table-slide::after {
  opacity: 0;
}

/* タイムテーブル */
#entry .entry-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#entry .entry-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 5px;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0;
  
}

#entry .entry-table th,
#entry .entry-table td {
  padding: 7px;
  vertical-align: middle;
  text-align: left;
}

#entry .entry-table thead th {
  background-color: rgba(255, 226, 0, 0.52);
  font-weight: 700;
  white-space: nowrap;
}



#entry .entry-table tbody td {
  background-color: rgba(255, 255, 255, 0.52);
}

#entry .entry-table td small {
  font-size: 0.85em;
}

#entry .entry-table th:nth-child(1),
#entry .entry-table th:nth-child(3),
#entry .entry-table td:nth-child(1),
#entry .entry-table td:nth-child(3) {
  white-space: nowrap;
}

#entry .entry-table-kyogi {
  text-align: left;
  vertical-align: middle;
}

#entry .entry-table-kyogi-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

#entry .entry-table-kyogi-name {
  flex: 1 1 auto;
  min-width: 0;
  padding-right: 4px;
  line-height: 1.5;
  word-break: break-word;
}

#entry .btn-detail {
  flex: 0 0 auto;
  display: inline-block;
  margin: 0;
  padding: 4px 12px;
  color: var(--color-key1);
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  background-color: #fff;
  border-radius: 999px;
  border: 2px solid var(--color-key1);
}

#entry .btn-detail:hover {
  opacity: 0.85;
}

#entry .entry-period {
  margin: 20px 0 0;
  color: #fff;
  font-size: 1rem;
  font-weight: 500;
  strong{
    font-size: 1.1rem;
    padding-right: 5px;;
  }
  small{
    font-weight: 400;
  }
}

/* 会場マップ */
#entry .entry-map-day {
  overflow: hidden;
  margin-bottom: 28px;
  background-color: #fff;
  border-radius: 16px;
}

#entry .entry-map-day:last-child {
  margin-bottom: 0;
}

#entry .entry-map-day-head {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 16px;
}

#entry .entry-map-day--sat .entry-map-day-head {
  background-color: var(--color-sat);
}

#entry .entry-map-day--sun .entry-map-day-head {
  background-color: var(--color-sun);
}

#entry .entry-map-date {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #fff;
  line-height: 1;
}

#entry .entry-map-date em {
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-en);
  letter-spacing: 0.02em;
  line-height: 0.9;
}

#entry .entry-map-date i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.3em;
  height: 2.3em;
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  color: var(--color-sat);
  background-color: #fff;
  border-radius: 50%;
}

#entry .entry-map-day--sun .entry-map-date i {
  color: var(--color-sun);
}

#entry .entry-map-day-body {
  padding: 28px 4% 36px;
}

#entry .entry-map-venue {
  margin-bottom: 36px;
  text-align: center;
}

#entry .entry-map-venue:last-child {
  margin-bottom: 0;
}

#entry .entry-map-venue-ttl {
  margin: 0 0 20px;
  color: var(--color-key1);
  font-size: 1.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#entry .entry-map-figure {
  max-width: 860px;
  margin: 15px 0;
}

#entry .entry-map-figure.small {
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

#entry .entry-map-figure img {
  width: 100%;
  height: auto;
  display: block;
}

#entry .entry-map-arena {
  /* display: flex; */
  /* flex-wrap: wrap; */
  /* justify-content: center; */
  /* gap: 20px 3%; */
}

#entry .entry-map-arena .entry-map-figure {
  /* width: 48%; */
}

#entry .entry-map-row {
  display: flex;
  gap: 4%;
  margin-top: 40px;
}

#entry .entry-map-row .entry-map-venue {
  flex: 1 1 48%;
  margin-bottom: 0;
}

/* 波型区切り */
#entry .entry-wave {
  margin-top: 100px;
  line-height: 0;
}

#entry .entry-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

#entry .entry-wave path {
  fill: #E8F4FF;
}

/************************************
  #kyogi（体験できる競技の紹介）
************************************/
#kyogi {
  position: relative;
  z-index: 2;
  background-color: #E8F4FF;
  padding: 0;
  text-align: left;
  overflow: visible;
}

#kyogi .wrapper {
  position: relative;
}

#kyogi .kyogi-intro {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 4%;
  position: relative;
}

#kyogi .kyogi-intro-text {
  flex: 1 1 48%;
  padding: 48px 0;
  position: relative;
  z-index: 1;
}

#kyogi h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 28px;
  color: var(--color-key1);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#kyogi h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 72px;
  height: 5px;
  background-color: var(--color-key2);
}

#kyogi .kyogi-lead {
  margin: 0;
  color: var(--color-base);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}

#kyogi .kyogi-lead-note {
  color: var(--color-base);
}

#kyogi .kyogi-photo {
  position: relative;
  z-index: 3;
  flex: 0 0 42%;
  max-width: 480px;
  width: 42%;
  margin-top: -160px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
}

#kyogi .kyogi-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 競技リスト */
#kyogi .kyogi-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 0px 3.5%;
  margin: 0 0 0;
  padding: 0 0 40px;
  letter-spacing: 0;
  list-style: none;
}

#kyogi .kyogi-item {
  letter-spacing: 0;
  list-style: none;
}

/* 左→右へ段階的に下げる */
#kyogi .kyogi-item:nth-child(3n + 2) {
  margin-top: 40px;
}

#kyogi .kyogi-item:nth-child(3n) {
  margin-top: 80px;
}

#kyogi .kyogi-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 100%;
  padding: 28px 6% 32px;
  color: var(--color-base);
  text-align: center;
  background-color: #fff;
  border-radius: 20px;
  box-shadow: 0 8px 24px rgba(23, 44, 159, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

#kyogi .kyogi-card:hover {
  opacity: 1;
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(23, 44, 159, 0.16);
}

#kyogi .kyogi-card-ttl {
  margin: 0 0 12px;
  color: var(--color-key1);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
}

#kyogi .kyogi-card-meta {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
  padding-top: 14px;
  border-top: 2px solid var(--color-key2);
  text-align: left;
  
}

#kyogi .kyogi-card-place {
  flex: 1 1 auto;
  margin: 0;
  padding-right: 8px;
  color: var(--color-key1);
  font-size: 0.8rem;
  font-weight: 500;
  line-height: 1.6;
  min-height: calc(1.6em * 2);
}

#kyogi .kyogi-card-date {
  position: relative;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 53px;
  height: 53px;
  margin-top: -5px;
  color: #fff;
  background-color: var(--color-sat);
  border-radius: 50%;
  line-height: 1;
  &.sunday{
    background-color: var(--color-sun);
  }
}

#kyogi .kyogi-card-date em {
  font-style: normal;
  font-size: 1.8rem;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
}

#kyogi .kyogi-card-date i {
  position: absolute;
  right: -15px;
  bottom: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  font-style: normal;
  font-size: 0.8rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-sat);
  border-radius: 50%;
}

#kyogi .kyogi-card-date.sunday i {
  background-color: var(--color-sun);
}

#kyogi .kyogi-card-img {
  position: relative;
  flex: 1 1 auto;
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 8px;
}

#kyogi .kyogi-card-img::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: linear-gradient(to top, #00000090 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

#kyogi .kyogi-card-img img {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

#kyogi .kyogi-card-cap {
  position: absolute;
  right: 8px;
  bottom: 6px;
  z-index: 1;
  color: #fff;
  font-size: 0.65rem;
  font-weight: 500;
  line-height: 1.3;
}

#kyogi .kyogi-card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 240px;
  width:100%;
  margin:0 auto;
  padding: 8px 12px 8px 22px;
  color: var(--color-key1);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  background-color: #fff;
  border: 1px solid var(--color-key1);
  border-radius: 999px;
  position: relative;
}

#kyogi .kyogi-card-btn::after {
  content: "";
  position: absolute;
  right: 7px;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  background-color: var(--color-key2);
  border-radius: 50%;
  background-image: url("../images/icon_yaji_r.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size:content;
}

/* #kyogi 下端の曲線区切り */
#kyogi .kyogi-wave {
  margin-top: 40px;
  line-height: 0;
}

#kyogi .kyogi-wave svg {
  display: block;
  width: 100%;
  height: 120px;
}

#kyogi .kyogi-wave path {
  fill: #fff;
}

/************************************
  競技モーダル
************************************/
.kyogi-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  visibility: hidden;
  pointer-events: none;
  transition: visibility 0.25s ease;
}

.kyogi-modal.is-open {
  visibility: visible;
  pointer-events: auto;
}

/* ぼかし本体にopacityを付けない（付くとbackdrop-filterが効かない） */
.kyogi-modal-overlay {
  position: absolute;
  inset: 0;
  z-index: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-backdrop-filter: blur(24px);
  backdrop-filter: blur(24px);
  transition: visibility 0.25s ease;
}

.kyogi-modal-overlay::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(37, 176, 252, 0.4);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.kyogi-modal.is-open .kyogi-modal-overlay {
  visibility: visible;
  pointer-events: auto;
}

.kyogi-modal.is-open .kyogi-modal-overlay::before {
  opacity: 1;
}

.kyogi-modal-scroll {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 40px 4%;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  opacity: 0;
  transition: opacity 0.25s ease;
}

.kyogi-modal.is-open .kyogi-modal-scroll {
  opacity: 1;
}

.kyogi-modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(1200px, 100%);
  margin: auto;
  padding: 36px 40px 32px;
  color: var(--color-base);
  background-color: #fff;
  border-radius: 24px;
  box-shadow: 0 12px 40px rgba(23, 44, 159, 0.18);
  overflow: visible;
}

.kyogi-modal-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 67px;
  height: 67px;
  padding: 0;
  color: var(--color-key2);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  background-color: #fff;
  border: 2px solid var(--color-key2);
  border-radius: 50%;
  cursor: pointer;
  transform: translate(50%, -50%);
}

.kyogi-modal-close:hover {
  color: #fff;
  background-color: var(--color-key2);
}

.kyogi-modal-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin: 0 0 20px;
  padding-bottom: 18px;
  border-bottom: 2px solid var(--color-key2);
}

.kyogi-modal-date {
  position: absolute;
  left: -15px;
  bottom: -10px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 77px;
  height: 77px;
  color: #fff;
  background-color: var(--color-sat);
  border-radius: 50%;
  line-height: 1;
}

.kyogi-modal-date em {
  font-style: normal;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: var(--font-en);
  line-height: 1;
}

.kyogi-modal-date i {
  position: absolute;
  right: -20px;
  bottom: -7px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  font-style: normal;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  background-color: var(--color-sat);
  border-radius: 50%;
}

.kyogi-modal-date.sunday,
.kyogi-modal-date.sunday i {
  background-color: var(--color-sun);
}

.kyogi-modal-ttl {
  margin: 0;
  color: var(--color-key1);
  font-size: 1.7rem;
  font-weight: 800;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
}

.kyogi-modal-body {
  display: flex;
  gap: 28px 32px;
  align-items: flex-start;
  text-align: left;
}

.kyogi-modal-main {
  flex: 1 1 48%;
  min-width: 0;
}

.kyogi-modal-photo {
  position: relative;
  margin: 0 0 16px;
  overflow: hidden;
  border-radius: 8px;
}

.kyogi-modal-photo::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 50px;
  background: linear-gradient(to top, #00000090 0%, rgba(0, 0, 0, 0) 100%);
  pointer-events: none;
}

.kyogi-modal-photo img {
  display: block;
  width: 100%;
  height: auto;
}

.kyogi-modal-photo figcaption {
  position: absolute;
  right: 10px;
  bottom: 8px;
  z-index: 1;
  margin: 0;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 500;
  line-height: 1.3;
}

.kyogi-modal-desc {
  margin: 0;
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.8;
}

.kyogi-modal-info {
  flex: 1 1 48%;
  min-width: 0;
  margin: 0;
}

.kyogi-modal-info-row {
  display: flex;
  gap: 20px;
  margin: 0 0 12px;
}

.kyogi-modal-info-row:last-child {
  margin-bottom: 0;
}

.kyogi-modal-info-row dt {
  box-sizing: border-box;
  flex: 0 0 168px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 168px;
  min-height: 48px;
  height: auto;
  margin: 0;
  padding: 6px 10px;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  white-space: nowrap;
  background-color: var(--color-sat);
  /* border-radius: 12px; */
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
}

.kyogi-modal-info-row dt small {
  font-size: 0.75em;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.2;
}

.kyogi-modal-info-row dd {
  flex: 1 1 auto;
  min-width: 0;
  margin: 0;
  padding: 8px 0;
  color: var(--color-key1);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.55;
  min-height: 48px;
}

.kyogi-modal-notes {
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: 0;
}

.kyogi-modal-notes > li {
  list-style: none;
  letter-spacing: 0;
  margin: 0;
  padding-left: 1em;
  text-indent: -1em;
}

.kyogi-modal-notes > li:nth-child(1)::before { content: "①"; }
.kyogi-modal-notes > li:nth-child(2)::before { content: "②"; }
.kyogi-modal-notes > li:nth-child(3)::before { content: "③"; }
.kyogi-modal-notes > li:nth-child(4)::before { content: "④"; }
.kyogi-modal-notes > li:nth-child(5)::before { content: "⑤"; }
.kyogi-modal-notes > li:nth-child(6)::before { content: "⑥"; }
.kyogi-modal-notes > li:nth-child(7)::before { content: "⑦"; }
.kyogi-modal-notes > li:nth-child(8)::before { content: "⑧"; }
.kyogi-modal-notes > li:nth-child(9)::before { content: "⑨"; }
.kyogi-modal-notes > li:nth-child(10)::before { content: "⑩"; }

.kyogi-modal-foot {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.kyogi-modal-reserve {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 280px;
  padding: 7px 28px 7px 12px;
  color: #fff;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.06em;
  text-decoration: none;
  background-color: var(--color-key2);
  border-radius: 999px;
  transition: opacity 0.2s ease;
}

.kyogi-modal-reserve:hover {
  opacity: 0.88;
  color: #fff;
}

.kyogi-modal-reserve--none {
  cursor: default;
  background-color: #919191;
  pointer-events: none;
}

.kyogi-modal-reserve--none:hover {
  opacity: 1;
  color: #fff;
}

.kyogi-modal-reserve img {
  display: block;
  width: 34px;
  height: 34px;
}

body.is-kyogi-modal-open {
  position: fixed;
  left: 0;
  right: 0;
  width: 100%;
  overflow: hidden;
  overscroll-behavior: none;
}

html.is-kyogi-modal-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/************************************
  #supporter
************************************/
#supporter {
  position: relative;
  background-color: #fff;
  background-image: url("../images/supporter_back.webp");
  background-position: center top;
  background-size: cover;
  background-repeat: no-repeat;
  padding: 40px 0 0;
  text-align: left;
  overflow: hidden;
}

#supporter h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 52px;
  color: var(--color-key1);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#supporter h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -18px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#supporter .supporter-lead {
  margin: 0 0 56px;
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 2;
}

#supporter .supporter-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 56px 4%;
  margin: 0;
  padding: 0 0 80px;
  list-style: none;
  letter-spacing: 0;
}

#supporter .supporter-item {
  flex: 0 0 calc((100% - 8%) / 3);
  width: calc((100% - 8%) / 3);
  max-width: calc((100% - 8%) / 3);
  list-style: none;
  letter-spacing: 0;
}

#supporter .supporter-card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
  text-align: center;
}

#supporter .supporter-badge {
  position: absolute;
  top: 70px;
  left: 4%;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100px;
  height: 100px;
  padding: 8px;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.04em;
  text-align: center;
  border-radius: 50%;
  box-sizing: border-box;
}

#supporter .supporter-badge--supporter {
  background-color: #f1983e;
}

#supporter .supporter-badge--guest {
  background-color: var(--color-sat);
  font-size: 0.8rem;
  line-height: 1.3;
}

#supporter .supporter-photo {
  position: relative;
  z-index: 1;
  width: 78%;
  max-width: 260px;
  margin: 0 auto 0;
}

#supporter .supporter-photo img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 260 / 290;
  object-fit: cover;
  object-position: center top;
}

#supporter .supporter-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  max-width: 240px;
  margin: -28px auto 0;
  padding: 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 6px 18px rgba(23, 44, 159, 0.08);
  box-sizing: border-box;
}

#supporter .supporter-org {
  margin: 0 0 3px;
  color: var(--color-base);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.4;
}

#supporter .supporter-name {
  margin: 0;
  color: var(--color-base);
  font-size: 0.85rem;
  font-weight: 500;
  line-height: 1.4;
}

#supporter .supporter-name strong {
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

#supporter .supporter-name--solo {
  font-size: 1rem;
}

#supporter .supporter-name--solo strong {
  font-size: 1.05rem;
}

#supporter .supporter-note {
  margin: 3px 0 0;
  color: var(--color-base);
  font-size: 0.68rem;
  font-weight: 500;
  line-height: 1.35;
}

/************************************
  #subkaijo
************************************/
#subkaijo {
  background-color: var(--color-back1);
  padding: 60px 0 100px;
  color: #fff;
  text-align: left;
}

#subkaijo h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 40px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#subkaijo h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#subkaijo .subkaijo-lead {
  margin: 0 0 48px;
  color: #fff;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}

#subkaijo .subkaijo-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 32px 3%;
  margin: 0;
  padding: 0;
  list-style: none;
  letter-spacing: 0;
}

#subkaijo .subkaijo-item {
  width: calc((100% - 6%) / 3);
  max-width: 360px;
  list-style: none;
  letter-spacing: 0;
}

#subkaijo .subkaijo-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

#subkaijo .subkaijo-card-img {
  overflow: hidden;
  line-height: 0;
}

#subkaijo .subkaijo-card-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 354 / 218;
  object-fit: cover;
}

#subkaijo .subkaijo-card-head {
  padding: 14px 16px 12px;
  color: var(--color-base);
  text-align: center;
  background-color: var(--color-key3);
}

#subkaijo .subkaijo-card-city {
  margin: 0 0 4px;
  color: var(--color-key1);
  font-size: 1.3rem;
  font-weight: 800;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

#subkaijo .subkaijo-card-event {
  margin: 0;
  color: var(--color-key1);
  font-size: 1.1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.02em;
}

#subkaijo .subkaijo-card-body {
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  align-items: center;
  padding: 18px 16px 22px;
  text-align: center;
}

#subkaijo .subkaijo-card-place {
  margin: 0 0 0px;
  color: var(--color-key1);
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

#subkaijo .subkaijo-card-contact {
  margin: 0 0 0px;
  color: var(--color-key1);
  font-size: 0.85rem;
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0.02em;
}

#subkaijo .subkaijo-card-tel {
  margin: 0 0 16px;
  color: var(--color-key1);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.4;
}

#subkaijo .subkaijo-card-tel a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: inherit;
}
/*
#subkaijo .subkaijo-card-tel a::before {
  content: "";
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  background-color: var(--color-key1);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23fff' d='M6.6 10.8c1.4 2.8 3.8 5.1 6.6 6.6l2.2-2.2c.3-.3.7-.4 1.1-.2 1.2.4 2.5.6 3.8.6.6 0 1 .4 1 1V20c0 .6-.4 1-1 1C10.6 21 3 13.4 3 4c0-.6.4-1 1-1h3.5c.6 0 1 .4 1 1 0 1.3.2 2.6.6 3.8.1.4 0 .8-.3 1.1L6.6 10.8z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 10px;
}
*/
#subkaijo .subkaijo-card-map {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 150px;
  margin-top: auto;
  padding: 10px 40px 10px 16px;
  color: var(--color-key1);
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  background-color: #fff;
  border: 2px solid var(--color-key1);
  border-radius: 999px;
  box-sizing: border-box;
}

#subkaijo .subkaijo-card-map::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 8px;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  
  border-radius: 50%;
  background-image: url("../images/icon_yaji_r.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

#subkaijo .subkaijo-card-map:hover {
  opacity: 1;
  background-color: var(--color-key1);
  color: #fff;
}

/************************************
  #opening
************************************/
#opening {
  background-color: var(--color-key1);
  padding: 80px 0 100px;
  color: #fff;
  text-align: left;
}

#opening h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 48px;
  color: #fff;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#opening h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#opening .opening-card {
  margin: 0 0 36px;
  padding: 48px 6% 44px;
  background-color: #fff;
  border-radius: 16px;
  box-sizing: border-box;
}

#opening .opening-card:last-child {
  margin-bottom: 0;
}

#opening .opening-card-ttl {
  margin: 0 0 28px;
  color: var(--color-key1);
  /* font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Yu Gothic", YuGothic, Meiryo, "Noto Sans JP", sans-serif; */
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
  text-align: center;
  -webkit-font-feature-settings: "palt" 0;
  font-feature-settings: "palt" 0;
}

#opening .opening-card-text {
  margin: 0;
  color: var(--color-base);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
  text-align: left;
}

#opening .opening-video {
  position: relative;
  width: 100%;
  max-width: 660px;
  margin: 0 auto 28px;
  aspect-ratio: 16 / 9;
}

#opening .opening-video iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}

/************************************
  #event
************************************/
#event {
  background-color: #eef5fb;
  padding: 80px 0 100px;
  text-align: left;
}

#event h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 56px;
  color: var(--color-key1);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#event h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#event .event-cols {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 48px 6%;
}

#event .event-col {
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#event .event-leaflet-img {
  width: 100%;
  max-width: 320px;
  margin: 0 auto 28px;
}

#event .event-leaflet-img img {
  display: block;
  width: 100%;
  height: auto;
  box-shadow: 0 10px 28px rgba(23, 44, 159, 0.14);
}

#event .event-leaflet-text {
  margin: 0 0 24px;
  color: var(--color-base);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8;
}

#event .event-dl-btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 280px;
  padding: 12px 16px 12px 18px;
  color: var(--color-key1);
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.02em;
  background-color: #fff;
  /*border: 1px solid #d0d5e0;*/
  border-radius: 999px;
  box-shadow: 0 6px 16px rgba(23, 44, 159, 0.08);
  box-sizing: border-box;
}

#event .event-dl-btn:hover {
  opacity: 1;
  box-shadow: 0 8px 20px rgba(23, 44, 159, 0.14);
}

#event .event-dl-btn-pdf {
  width: 28px;
  height: auto;
  flex-shrink: 0;
}

#event .event-dl-btn span {
  flex: 1 1 auto;
  text-align: center;
}

#event .event-dl-btn-dl {
  width: 29px;
  height: 29px;
  flex-shrink: 0;
}

#event .event-prize-img {
  width: 100%;
  /* max-width: 420px; */
  margin: 0 auto 6px;
}

#event .event-prize-img img {
  display: block;
  width: 100%;
  height: auto;
}

#event .event-prize-text {
  margin: 0;
  color: var(--color-key1);
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: 0.04em;
}

/************************************
  #kigyo
************************************/
#kigyo {
  position: relative;
  background-color: #fff;
  padding: 80px 0 0;
  text-align: left;
}

#kigyo h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 40px;
  color: var(--color-key1);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#kigyo h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#kigyo .kigyo-lead {
  margin: 0 0 40px;
  color: var(--color-base);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}

#kigyo .kigyo-table-scroll-note {
  display: none;
  margin: -28px 0 24px;
  color: var(--color-base);
  font-size: 0.75rem;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: center;
  opacity: 0.85;
}

#kigyo .kigyo-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

#kigyo .kigyo-table {
  width: 100%;
  min-width: 720px;
  border-collapse: separate;
  border-spacing: 5px;
  table-layout: fixed;
  letter-spacing: 0;
}

#kigyo .kigyo-table th,
#kigyo .kigyo-table td {
  padding: 18px 20px;
  vertical-align: top;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.7;
  text-align: left;
  border: none;
}

#kigyo .kigyo-table thead th {
  color: var(--color-base);
  font-weight: 700;
  background-color: var(--color-key3);
  white-space: nowrap;
}

#kigyo .kigyo-table th:nth-child(1),
#kigyo .kigyo-table td:nth-child(1) {
  width: 26%;
}

#kigyo .kigyo-table th:nth-child(2),
#kigyo .kigyo-table td:nth-child(2) {
  width: 18%;
  white-space: nowrap;
}

#kigyo .kigyo-table th:nth-child(3),
#kigyo .kigyo-table td:nth-child(3) {
  width: 56%;
}

#kigyo .kigyo-table tbody tr td {
  background-color: #eaf3ff;
}



#kigyo .kigyo-wave {
  margin-top: 64px;
  line-height: 0;
}

#kigyo .kigyo-wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

#kigyo .kigyo-wave path {
  fill: #fffbd8;
}

/************************************
  #kitchencar
************************************/
#kitchencar {
  position: relative;
  background-color: #fffbd8;
  padding: 40px 0 0;
  text-align: left;
}

#kitchencar h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 40px;
  color: var(--color-key1);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#kitchencar h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#kitchencar .kitchencar-lead {
  margin: 0 0 48px;
  color: var(--color-base);
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
}

#kitchencar .kitchencar-list {
  display: flex;
  justify-content: space-between;
  gap: 40px 5%;
  margin: 0;
  padding: 0 0 56px;
  list-style: none;
  letter-spacing: 0;
}

#kitchencar .kitchencar-item {
  flex: 1 1 0;
  max-width: 545px;
  list-style: none;
  letter-spacing: 0;
}

#kitchencar .kitchencar-img {
  margin: 0 0 20px;
  overflow: hidden;
  border-radius: 16px;
}

#kitchencar .kitchencar-img img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 545 / 339;
  object-fit: cover;
}

#kitchencar .kitchencar-date {
  margin: 0 0 12px;
  color: var(--color-base);
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.5;
}

#kitchencar .kitchencar-names {
  margin: 0;
  padding: 0;
  list-style: none;
}

#kitchencar .kitchencar-names li {
  margin: 0 0 6px;
  color: var(--color-base);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#kitchencar .kitchencar-names li:last-child {
  margin-bottom: 0;
}

#kitchencar .kitchencar-wave {
  margin-top: 24px;
  line-height: 0;
}

#kitchencar .kitchencar-wave svg {
  display: block;
  width: 100%;
  height: 110px;
}

#kitchencar .kitchencar-wave path {
  fill: #e8f4ff;
}

/************************************
  #faq
************************************/
#faq {
  background-color: #e8f4ff;
  padding: 48px 0 100px;
  text-align: left;
}

#faq h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 56px;
  color: var(--color-key1);
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#faq h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#faq .faq-list {
  margin: 0;
  padding: 0;
}

#faq .faq-item {
  margin: 0 0 20px;
  background-color: #fff;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(23, 44, 159, 0.08);
  overflow: hidden;
}

#faq .faq-item:last-child {
  margin-bottom: 0;
}

#faq .faq-q-wrap {
  margin: 0;
}

#faq .faq-q {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  padding: 22px 24px;
  color: var(--color-key1);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.02em;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

#faq .faq-q:hover {
  opacity: 0.85;
}

#faq .faq-q-num {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--color-key1);
  border-radius: 50%;
}

#faq .faq-q-text {
  flex: 1 1 auto;
  min-width: 0;
}

#faq .faq-q-icon {
  flex: 0 0 auto;
  width: 14px;
  height: 14px;
  margin-left: 8px;
  border-right: 2px solid #b0b8c8;
  border-bottom: 2px solid #b0b8c8;
  transform: rotate(45deg);
  transition: transform 0.3s ease;
}

#faq .faq-item.is-open .faq-q-icon {
  transform: rotate(-135deg);
}

#faq .faq-a {
  display: none;
  margin: 0;
  padding: 0 24px 24px;
  border-top: 1px dashed #c8d0dc;
}

#faq .faq-item.is-open .faq-a {
  display: block;
}

#faq .faq-a-inner {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding-top: 20px;
}

#faq .faq-a-label {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1;
  background-color: var(--color-key2);
  border-radius: 50%;
}

#faq .faq-a-text {
  flex: 1 1 auto;
  margin: 0;
  padding-top: 8px;
  color: var(--color-base);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.9;
}

/************************************
  #access
************************************/
#access {
  background-color: #e8f4ff;
  padding: 40px 0 64px;
  text-align: left;
}

#access h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 56px;
  color: var(--color-key1);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#access h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#access .access-venue {
  margin: 0 0 64px;
}

#access .access-venue:last-child {
  margin-bottom: 0;
}

#access .access-venue-ttl {
  margin: 0 0 28px;
  color: var(--color-key1);
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#access .access-venue-body {
  display: flex;
  align-items: flex-start;
  gap: 40px 5%;
}

#access .access-map {
  flex: 0 1 48%;
  width: 48%;
  max-width: 540px;
  overflow: hidden;
  border-radius: 8px;
  background-color: #dce6f2;
}

#access .access-map iframe {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  border: 0;
}

#access .access-info {
  flex: 1 1 0;
  margin: 0;
  padding: 0;
  min-width: 0;
}

#access .access-info-item {
  margin: 0 0 22px;
}

#access .access-info-item:last-child {
  margin-bottom: 0;
}

#access .access-info-item dt {
  display: inline-block;
  margin: 0 0 10px;
  padding: 4px 14px;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  background-color: var(--color-key1);
  /* border-radius: 6px; */
}

#access .access-info-item dd {
  margin: 0;
  color: var(--color-key1);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8;
}

/************************************
  #contact
************************************/
#contact {
  background-color: #e8f4ff;
  padding: 0 0 100px;
  text-align: center;
}

#contact h2 {
  position: relative;
  display: inline-block;
  margin: 0 0 40px;
  color: var(--color-key1);
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: 0.04em;
}

#contact h2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -16px;
  transform: translateX(-50%);
  width: 110px;
  height: 5px;
  background-color: var(--color-key2);
}

#contact .contact-panel {
  margin: 0 0 48px;
  padding: 48px 5% 40px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 16px rgba(23, 44, 159, 0.08);
  text-align: center;
}

#contact .contact-cols {
  display: flex;
  gap: 32px 4%;
  text-align: left;
}

#contact .contact-col {
  flex: 1 1 0;
  min-width: 0;
}

#contact .contact-col-ttl {
  margin: 0 0 20px;
  padding: 10px 16px;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.04em;
  text-align: left;
  background-color: var(--color-key1);
  border-radius: 8px;
}

#contact .contact-col-body p {
  margin: 0 0 0px;
  color: var(--color-base);
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.8;
}

#contact .contact-col-body p:last-child {
  margin-bottom: 0;
}

#contact .contact-col-body a {
  color: var(--color-key1);
  text-decoration: underline;
}

#contact .contact-col-body a:hover {
  opacity: 0.85;
}

#contact .contact-mail {
  margin-top: 20px;
  padding-top: 8px;
}

#contact .contact-col-body .contact-mail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 8px 24px 8px 14px;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
  background-color: var(--color-key1);
  border-radius: 999px;
  transition: opacity 0.2s ease;
}

#contact .contact-col-body .contact-mail-btn:hover {
  opacity: 0.88;
  color: #fff;
  text-decoration: none;
}

#contact .contact-mail-btn-icon {
  display: block;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: #fff;
}

#contact .contact-kyosan {
  margin: 0;
  line-height: 0;
}

#contact .contact-kyosan a {
  display: inline-block;
  max-width: 440px;
  width: 100%;
}

#contact .contact-kyosan img {
  display: block;
  width: 100%;
  height: auto;
}

@media only screen and (max-width: 1024px) {
  #entry {
    padding-top: 60px;
  }

  #entry .entry-ttl {
    font-size: 1.5rem;
  }

  #entry .entry-lead-img {
    flex-basis: 36%;
  }

  #entry .entry-box {
    padding: 32px 3%;
    border-radius: 18px;
  }

  #entry .entry-box-ttl {
    font-size: 1.3rem;
  }

  #entry #timetable .entry-box-ttl {
    margin: 0;
    padding: 0 110px;
  }

  #timetable .entry-table-action {
    padding: 6px 12px 6px 8px;
    font-size: 0.85rem;
    border-radius: 8px;
  }

  #entry .entry-map-venue-ttl {
    font-size: 1rem;
    margin-top: 1.5rem;
  }

  #entry .entry-map-arena .entry-map-figure {
    width: 48%;
  }

  #kyogi .kyogi-photo {
    flex-basis: 38%;
    width: 38%;
    margin-top: -120px;
  }

  #kyogi h2 {
    font-size: 1.7rem;
  }

  #kyogi .kyogi-list {
    gap: 36px 2.5%;
    margin-top: 40px;
  }

  #kyogi .kyogi-item:nth-child(3n + 2) {
    margin-top: 40px;
  }

  #kyogi .kyogi-item:nth-child(3n) {
    margin-top: 80px;
  }

  #kyogi .kyogi-card {
    padding: 22px 5% 26px;
  }

  #kyogi .kyogi-card-ttl {
    font-size: 1.15rem;
  }

  #supporter .supporter-lead {
    margin-bottom: 40px;
  }

  #supporter .supporter-list {
    gap: 40px 3%;
    padding-bottom: 56px;
  }

  #supporter .supporter-item {
    flex-basis: calc((100% - 6%) / 3);
    width: calc((100% - 6%) / 3);
    max-width: calc((100% - 6%) / 3);
  }

  #supporter .supporter-badge {
    top: 48px;
    width: 84px;
    height: 84px;
    font-size: 0.7rem;
  }

  #supporter .supporter-badge--guest {
    font-size: 0.7rem;
  }

  #supporter .supporter-name strong {
    font-size: 1.05rem;
  }

  #subkaijo {
    padding: 48px 0 80px;
  }

  #subkaijo h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  #subkaijo .subkaijo-lead {
    margin-bottom: 36px;
  }

  #subkaijo .subkaijo-list {
    gap: 24px 2.5%;
  }

  #subkaijo .subkaijo-item {
    width: calc((100% - 5%) / 3);
  }

  #subkaijo .subkaijo-card-city {
    font-size: 1.05rem;
  }

  #subkaijo .subkaijo-card-event {
    font-size: 0.85rem;
  }

  #subkaijo .subkaijo-card-place {
    font-size: 0.7rem;
  }

  #subkaijo .subkaijo-card-contact {
    font-size: 0.7rem;
  }

  #opening {
    padding: 64px 0 80px;
  }

  #opening h2 {
    font-size: 1.6rem;
    margin-bottom: 40px;
  }

  #opening .opening-card {
    padding: 36px 5% 32px;
    margin-bottom: 28px;
  }

  #opening .opening-card-ttl {
    font-size: 1.2rem;
    margin-bottom: 22px;
  }

  #event {
    padding: 64px 0 80px;
  }

  #event h2 {
    font-size: 1.6rem;
    margin-bottom: 44px;
  }

  #event .event-cols {
    gap: 36px 4%;
  }

  #event .event-dl-btn {
    min-width: 0;
    width: 100%;
    max-width: 300px;
    font-size: 0.85rem;
    gap: 10px;
    padding: 10px 12px 10px 14px;
  }

  #event .event-prize-text {
    font-size: 1.15rem;
  }

  #kigyo {
    padding-top: 64px;
  }

  #kigyo h2,
  #kitchencar h2 {
    font-size: 1.6rem;
  }

  #kigyo .kigyo-lead {
    margin-bottom: 32px;
  }

  #kigyo .kigyo-table th,
  #kigyo .kigyo-table td {
    padding: 14px 12px;
    font-size: 0.85rem;
  }

  #kigyo .kigyo-wave {
    margin-top: 48px;
  }

  #kigyo .kigyo-wave svg {
    height: 70px;
  }

  #kitchencar {
    padding-top: 28px;
  }

  #kitchencar .kitchencar-lead {
    margin-bottom: 36px;
  }

  #kitchencar .kitchencar-list {
    gap: 28px 4%;
    padding-bottom: 40px;
  }

  #kitchencar .kitchencar-names li {
    font-size: 1.05rem;
  }

  #kitchencar .kitchencar-wave svg {
    height: 80px;
  }

  #access h2 {
    font-size: 1.6rem;
    margin-bottom: 44px;
  }

  #access .access-venue {
    margin-bottom: 48px;
  }

  #access .access-venue-ttl {
    font-size: 1.2rem;
    margin-bottom: 22px;
  }

  #access .access-venue-body {
    gap: 28px 4%;
  }

  #access .access-info-item {
    margin-bottom: 18px;
  }

  #contact h2 {
    font-size: 1.6rem;
    margin-bottom: 32px;
  }

  #contact .contact-panel {
    padding: 40px 4% 32px;
    margin-bottom: 40px;
  }

  #contact .contact-cols {
    gap: 28px 4%;
  }

  #contact .contact-col-ttl {
    font-size: 0.95rem;
    margin-bottom: 16px;
  }

  #contact .contact-col-body p {
    font-size: 0.9rem;
  }

  .kyogi-modal-scroll {
    padding: 24px 3%;
  }

  .kyogi-modal-dialog {
    padding: 28px 24px 24px;
    border-radius: 18px;
  }

  .kyogi-modal-head {
    margin: 0 0 16px 0;
    gap: 14px;
  }

  .kyogi-modal-ttl {
    font-size: 1.35rem;
  }

  .kyogi-modal-body {
    flex-direction: column;
    gap: 24px;
  }

  .kyogi-modal-info-row dt {
    flex: 0 0 148px;
    width: 148px;
    font-size: 0.85rem;
  }

  /* 線付き見出し：SP/タブレットは見出し・線とも中央寄せ */
  #kaijo .kaijo-ttl,
  #entry .entry-ttl,
  #kyogi h2,
  #supporter h2,
  #subkaijo h2,
  #opening h2,
  #event h2,
  #kigyo h2,
  #kitchencar h2,
  #faq h2,
  #access h2,
  #contact h2 {
    display: table;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }

  #kaijo .kaijo-ttl::after,
  #entry .entry-ttl::after,
  #kyogi h2::after,
  #supporter h2::after,
  #subkaijo h2::after,
  #opening h2::after,
  #event h2::after,
  #kigyo h2::after,
  #kitchencar h2::after,
  #faq h2::after,
  #access h2::after,
  #contact h2::after {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
}

@media only screen and (max-width: 600px) {
  #entry {
    padding-top: 20px;
  }

  #entry .entry-lead {
    flex-direction: column-reverse;
    gap: 28px;
    margin-bottom: 36px;
  }

  #entry .entry-lead-text,
  #entry .entry-lead-img {
    flex: none;
    width: 100%;
    max-width: none;
  }

  #entry .entry-lead-img {
    max-width: 240px;
    margin: 0 auto;
  }

  #entry .entry-ttl {
    font-size: 1.4rem;
  }

  #entry .entry-lead-text p {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #entry .entry-box {
    margin-bottom: 28px;
    padding: 24px 3%;
    border-radius: 14px;
  }

  #entry .entry-box-ttl {
    margin-bottom: 20px;
    font-size: 1.15rem;
  }

  #entry #timetable .entry-box-ttl {
    margin: 0;
    padding: 0;
    font-size: 1.15rem;
  }

  #timetable .entry-table-scroll-note {
    display: block;
  }

  #timetable .entry-table-action {
    gap: 6px;
    padding: 5px 10px 5px 6px;
    font-size: 0.78rem;
  }

  #timetable .entry-table-action-icon {
    width: 1.45em;
    height: 1.45em;
  }

  #entry .entry-table {
    font-size: 0.8rem;
  }

  #entry .entry-table th,
  #entry .entry-table td {
    padding: 10px 8px;
  }

  #entry .entry-map-date em {
    font-size: 2rem;
  }

  #entry .entry-map-date i {
    font-size: 0.85rem;
  }

  #entry .entry-map-day-body {
    padding: 20px 4% 24px;
  }

  #entry .entry-map-arena .entry-map-figure {
    width: 100%;
  }

  #entry .entry-map-row {
    flex-direction: column;
    gap: 28px;
    margin-top: 28px;
  }

  #entry .entry-wave {
    margin-top: 60px;
  }

  #entry .entry-wave svg {
    height: 80px;
  }

  #kyogi {
    padding: 10px 0 0;
  }

  #kyogi h2 {
    font-size: 1.4rem;
  }

  #kyogi .kyogi-lead {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #kyogi .kyogi-intro {
    flex-direction: column;
  }

  #kyogi .kyogi-intro-text {
    padding: 0;
  }

  #kyogi .kyogi-photo {
    flex: none;
    width: 70%;
    max-width: 280px;
    margin: -60px auto 24px;
    order: -1;
  }

  #kyogi .kyogi-list {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 32px;
    padding-bottom: 20px;
  }

  #kyogi .kyogi-item:nth-child(3n + 2),
  #kyogi .kyogi-item:nth-child(3n) {
    margin-top: 0;
  }

  #kyogi .kyogi-wave {
    margin-top: 24px;
  }

  #kyogi .kyogi-wave svg {
    height: 70px;
  }

  #supporter {
    padding: 24px 0 0;
  }

  #supporter h2 {
    font-size: 1.4rem;
  }

  #supporter h2::after {
    bottom: -14px;
    width: 80px;
    height: 4px;
  }

  #supporter .supporter-lead {
    margin-bottom: 36px;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #supporter .supporter-list {
    gap: 32px 4%;
    margin: 0;
    max-width: none;
    width: 100%;
    padding-bottom: 48px;
  }

  #supporter .supporter-list .supporter-item {
    flex: 0 0 calc((100% - 4%) / 2);
    width: calc((100% - 4%) / 2);
    max-width: calc((100% - 4%) / 2);
  }

  #supporter .supporter-badge {
    top: 20px;
    width: 60px;
    height: 60px;
    left: 0;
    font-size: 2.3vw;
  }

  #supporter .supporter-badge--guest {
    font-size: 2.3vw;
  }

  #supporter .supporter-info {
    max-width: 240px;
  }

  #subkaijo {
    padding: 40px 0 64px;
  }

  #subkaijo h2 {
    font-size: 1.4rem;
    margin-bottom: 28px;
  }

  #subkaijo h2::after {
    bottom: -12px;
    width: 80px;
    height: 4px;
  }

  #subkaijo .subkaijo-lead {
    margin-bottom: 28px;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #subkaijo .subkaijo-list {
    gap: 24px;
  }

  #subkaijo .subkaijo-item {
    width: 100%;
    max-width: 360px;
  }

  #opening {
    padding: 48px 0 64px;
  }

  #opening h2 {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  #opening h2::after {
    bottom: -12px;
    width: 80px;
    height: 4px;
  }

  #opening .opening-card {
    padding: 28px 5% 26px;
    margin-bottom: 20px;
    border-radius: 12px;
  }

  #opening .opening-card-ttl {
    font-size: 1.3rem;
    margin-bottom: 18px;
  }

  #opening .opening-card-text {
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #opening .opening-video {
    margin-bottom: 20px;
  }

  #event {
    padding: 48px 0 64px;
  }

  #event h2 {
    font-size: 1.4rem;
    margin-bottom: 36px;
  }

  #event h2::after {
    bottom: -12px;
    width: 80px;
    height: 4px;
  }

  #event .event-cols {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }

  #event .event-col {
    width: 100%;
    max-width: 420px;
  }

  #event .event-leaflet-img {
    max-width: 280px;
  }

  #event .event-leaflet-text {
    font-size: 0.9rem;
  }

  #event .event-prize-text {
    font-size: 1.1rem;
  }

  #kigyo {
    padding-top: 48px;
  }

  #kigyo h2,
  #kitchencar h2 {
    font-size: 1.4rem;
    margin-bottom: 32px;
  }

  #kigyo h2::after,
  #kitchencar h2::after {
    bottom: -12px;
    width: 80px;
    height: 4px;
  }

  #kigyo .kigyo-lead {
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #kigyo .kigyo-table-scroll-note {
    display: block;
    margin: 0 0 20px;
  }

  #kigyo .kigyo-table {
    min-width: 720px;
  }

  #kigyo .kigyo-table th,
  #kigyo .kigyo-table td {
    padding: 12px 10px;
    font-size: 0.8rem;
    line-height: 1.6;
  }

  #kigyo .kigyo-wave {
    margin-top: 40px;
  }

  #kigyo .kigyo-wave svg {
    height: 56px;
  }

  #kitchencar {
    padding-top: 24px;
  }

  #kitchencar .kitchencar-lead {
    margin-bottom: 32px;
    font-size: 0.95rem;
    line-height: 1.9;
  }

  #kitchencar .kitchencar-list {
    flex-direction: column;
    gap: 36px;
    padding-bottom: 36px;
  }

  #kitchencar .kitchencar-item {
    max-width: none;
  }

  #kitchencar .kitchencar-img {
    border-radius: 12px;
  }

  #kitchencar .kitchencar-names li {
    font-size: 1.05rem;
  }

  #kitchencar .kitchencar-wave svg {
    height: 64px;
  }

  #faq {
    padding: 36px 0 64px;
  }

  #faq h2 {
    font-size: 1.35rem;
    margin-bottom: 40px;
  }

  #faq h2::after {
    bottom: -12px;
    width: 80px;
    height: 4px;
  }

  #faq .faq-q {
    gap: 12px;
    padding: 18px 16px;
    font-size: 0.95rem;
  }

  #faq .faq-q-num,
  #faq .faq-a-label {
    width: 40px;
    height: 40px;
    font-size: 0.85rem;
  }

  #faq .faq-a {
    padding: 0 16px 20px;
  }

  #faq .faq-a-inner {
    gap: 12px;
    padding-top: 16px;
  }

  #faq .faq-a-text {
    font-size: 0.9rem;
    line-height: 1.8;
  }

  #access {
    padding: 32px 0 64px;
  }

  #access h2 {
    font-size: 1.35rem;
    margin-bottom: 36px;
  }

  #access h2::after {
    bottom: -12px;
    width: 80px;
    height: 4px;
  }

  #access .access-venue {
    margin-bottom: 60px;
  }

  #access .access-venue-ttl {
    font-size: 1.1rem;
    margin-bottom: 18px;
  }

  #access .access-venue-body {
    flex-direction: column;
    gap: 24px;
  }

  #access .access-map {
    flex: none;
    width: 100%;
    max-width: none;
  }

  #access .access-info-item dt {
    font-size: 0.8rem;
    padding: 3px 12px;
  }

  #access .access-info-item dd {
    font-size: 0.9rem;
    line-height: 1.7;
  }

  #contact {
    padding-bottom: 64px;
  }

  #contact h2 {
    font-size: 1.35rem;
    margin-bottom: 28px;
  }

  #contact h2::after {
    bottom: -12px;
    width: 80px;
    height: 4px;
  }

  #contact .contact-panel {
    padding: 32px 5% 28px;
    margin-bottom: 32px;
  }

  #contact .contact-cols {
    flex-direction: column;
    gap: 28px;
  }

  #contact .contact-col-ttl {
    font-size: 0.9rem;
    padding: 8px 12px;
  }

  #contact .contact-col-body p {
    font-size: 0.85rem;
    line-height: 1.7;
  }

  .kyogi-modal-dialog {
    padding: 24px 16px 20px;
    min-height: calc(100dvh - 48px);
    max-height: calc(100dvh - 48px);
  }

  .kyogi-modal-body {
    flex: 1 1 auto;
    min-height: 0;
    overflow-y: auto;
  }

  .kyogi-modal-close {
    width: 48px;
    height: 48px;
    font-size: 1.4rem;
    right: 16px;
  }

  .kyogi-modal-head {
    flex-wrap: wrap;
    justify-content: flex-start;
    margin: 0 0px 14px 0;
    flex: 0 0 auto;
  }

  .kyogi-modal-date {
    width: 52px;
    height: 52px;
    bottom: -5px;
    left: -5px;
  }

  .kyogi-modal-date em {
    font-size: 1.6rem;
  }

  .kyogi-modal-ttl {
    flex: 1 1 auto;
    font-size: 1.15rem;
    /* text-align: left; */
    padding-left: 30px;
  }

  .kyogi-modal-info {
    width: 100%;
  }

  .kyogi-modal-info-row {
    flex-direction: column;
    align-items: stretch;
    gap: 0px;
    margin-bottom: 12px;
  }

  .kyogi-modal-info-row dt {
    flex: none;
    width: 100%;
    min-height: auto;
    height: auto;
    border-radius: 5px;
  }

  .kyogi-modal-info-row dd {
    width: 100%;
  }

  .kyogi-modal-foot {
    flex: 0 0 auto;
    margin-top: auto;
    padding-top: 20px;
  }

  .kyogi-modal-reserve {
    min-width: 0;
    width: 100%;
    max-width: 320px;
    font-size: 0.95rem;
  }

  /* 線付き見出し：スマホは見出し・線とも中央寄せ（上書き保証） */
  #kaijo .kaijo-ttl,
  #entry .entry-ttl,
  #kyogi h2,
  #supporter h2,
  #subkaijo h2,
  #opening h2,
  #event h2,
  #kigyo h2,
  #kitchencar h2,
  #faq h2,
  #access h2,
  #contact h2 {
    display: table !important;
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
  }

  #kaijo .kaijo-ttl::after,
  #entry .entry-ttl::after,
  #kyogi h2::after,
  #supporter h2::after,
  #subkaijo h2::after,
  #opening h2::after,
  #event h2::after,
  #kigyo h2::after,
  #kitchencar h2::after,
  #faq h2::after,
  #access h2::after,
  #contact h2::after {
    left: 50% !important;
    right: auto !important;
    transform: translateX(-50%) !important;
  }
}


