@charset "UTF-8";

/* ========================
  mv
======================== */
.section--mv {
  position: relative;
  min-height: 100svh;
  height: 100vh;
  width: 100%;
  overflow: hidden; /* はみ出しをカット */
  padding: 0;
}

/* --- 背景演出の土台 --- */
.mv__bg-container {
  position: absolute;
  inset: 0;
  z-index: 0; /* 背面 */
  overflow: hidden;
}

.mv__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 2s var(--hover-timing);
}

.mv__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1); /* 開始サイズ */
  transition: transform 8s var(--hover-timing);
  will-change: transform;
  backface-visibility: hidden;
}

/* アクティブな時 */
.mv__slide.is-active {
  opacity: 1;
  z-index: 1;
}
.mv__slide.is-active img {
  transform: scale(1.1); /* ズームイン */
}

/* --- 多重グラデーション（JSでクラスが切り替わる） --- */
/* 共通設定 */
.mv__gradient {
  position: absolute;
  inset: 0;
  z-index: 5; /* 画像(0)より上でコンテンツ(10)より下 */
  pointer-events: none;

  --grad-color: var(
    --color-bg-card
  ); /* style.cssの変数を、このコンポーネント用の名前に紐付け */
  --right-end: 0%; /* 右からの影の初期値は0%（表示されない） */
  --left-end: 39%; /* --- 横方向（固定比率） --- */
  --vertical-end: clamp(
    18%,
    1.04vw + 10.33%,
    23%
  ); /* --- 縦方向（1440pxで18% 〜 1920pxで23%） --- */

  background:
    linear-gradient(
      to bottom,
      var(--grad-color) 0%,
      transparent var(--vertical-end)
    ),
    linear-gradient(
      to top,
      var(--grad-color) 0%,
      transparent var(--vertical-end)
    ),
    linear-gradient(
      to right,
      var(--grad-color) 0%,
      transparent var(--left-end)
    ),
    linear-gradient(to left, var(--grad-color) 0%, transparent var(--right-end));
}

/* スライドごとに変えたい場合のみ、変数だけを上書き 下記は例： スライド1は右の影を追加*/
.mv__slide:nth-child(1) .mv__gradient {
  --right-end: 29%;
}

/* ロゴやinfoなどの中身（これらは動かさない） */
.mv__inner {
  position: relative;
  z-index: 10; /* 背景(z-index: 0)より上に浮かせる */
  height: 100%;

  opacity: 0;
  transform: translateY(6px); /* 少し浮き上がる演出 */
  transition:
    opacity 2s var(--hover-timing) 0.5s,
    transform 2s var(--hover-timing) 0.5s;
}

.mv__inner.is-show {
  opacity: 1;
  transform: translateY(0);
}

.mv__logo {
  position: absolute;
  top: 20%;
  right: var(--container-padding);
  /* lang-switchと中心軸を一致させる */
  width: 133px;
  display: flex;
  justify-content: center;
  margin: 0;
}

.mv__logo img {
  /* 幅の可変設定：375px(85px) 〜 1200px(133px) の間で滑らかに変化 */
  width: clamp(85px, 5.8vw + 63px, 133px);
  height: auto; /* アスペクト比を維持 */
}

[lang="en"] .mv__logo {
  position: inherit;
  top: inherit;
  right: inherit;
  width: auto;
  display: block;
  margin-bottom: var(--space-md);
}


[lang="en"] .mv__logo img{
  width:70%;
}

.mv__info {
  position: absolute;
  top: 22%;
  /* 左側も同様 */
  left: var(--container-padding);
  bottom: auto;
  right: auto;
}

/* ----------------------------------------
   mv__info-text: 画像から置き換えたテキスト開催情報
   ---------------------------------------- */
.mv__info-text {
  margin-bottom: var(--space-md-lg);
}

/* 日付: 2026.8.6 */
.mv__info-date {
  font-family: var(--font-en);
  font-weight: 400;
  font-size: var(--fs-5xl); /* 54→75px */
  line-height: 1;
  letter-spacing: var(--ls-sm);
  color: var(--color-gray-100);
  margin-bottom: 0.1em;
}

.mv__info-sep {
  font-size: var(--fs-mv-sep);
}

.mv__info-time {
  font-family: var(--font-en);
  font-size: var(--fs-2xl);
  line-height: 1;
  color: var(--color-gray-100);
  margin-bottom: 1em;
  letter-spacing: var(--ls-sm);
}

.mv__info-dash {
  margin-inline: 0.05em;
}

.mv__info-time-sub {
  display: inline-block;
  font-size: var(--fs-md);
  margin-left: 0.3em;
  vertical-align: baseline;
}

/* 会場: 平和記念公園元安川付近 / 原爆ドーム対岸 */
.mv__info-place {
  font-family: var(--font-mincho);
  font-weight: 400;
  font-size: var(--fs-mv-place);
  line-height: var(--lh-md);
  letter-spacing: var(--ls-sm);
  color: var(--color-gray-100);
}

.mv__info-place-note {
  font-size: var(--fs-em-sm);
  letter-spacing: var(--ls-sm);
}

/* --- 1920px以上の設定 --- 
   コンテンツの最大幅（1680px等）を基準に、位置を固定する */
@media screen and (min-width: 1920px) {
  .mv__info {
    /* 画面中央から、コンテンツ最大幅の半分だけ左に寄せた位置を基準にする */
    /* 1680pxが最大幅なら：50% - (1680px / 2) + 本来の余白 */
    left: calc(50% - 840px + var(--container-padding));
  }

  .mv__info-text {
    margin-bottom: var(--space-lg);
  }
}

.mv__notice {
  position: absolute;
  bottom: 0;
  left: 0;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

.cancel {
  position: absolute;

  bottom: 30px;
  left: 0;

  z-index: 10; /* 他の要素より上に */
  width: auto;
}

/* デフォルトは非表示 */
.mv__notice {
  display: none;
}

/* is-visible クラスがついている時だけ表示する */
.mv__notice.is-visible {
  display: block;
}

.cancel__item {
  position: relative;
  display: flex; /* または Grid */
  align-items: center;
  gap: var(--space-sm);
  padding-block: var(--space-xs);
  padding-left: var(--container-padding);
  padding-right: var(--space-lg);
  background-color: rgba(255, 255, 255, 0.9);
  transition: all var(--hover-speed) var(--hover-timing);
  cursor: pointer;
}

@media (min-width: 1680px) {
  .cancel__item {
    /* 画面幅の半分(50vw) から 1680pxの半分(840px) を引き、
       さらに中身の余白(var(--container-padding))を足す */
    padding-left: calc(50vw - 840px + var(--container-padding));
  }
}

.cancel__item:hover {
  /* ホバー時：不透明にして、少し浮かせる */
  background-color: var(--color-gray-100);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px); /* 2pxだけ上に浮かす */
}

/* タイトルボタンの背景も透明に */
.cancel__title {
  background: transparent;
  border: none;
  cursor: pointer;
  color: var(--color-text);
  text-align: left;
  line-height: 1.3;

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
  }
}

.cancel__time {
  color: var(--color-text);
  font-size: var(--fs-body); /* 16→18px */
}

/* ========================
  news
======================== */
.section--news {
  position: relative;
  background-color: #000000;
}

.section--news::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--color-bg-card);
  overflow: hidden;
}

.news__inner {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: var(--space-lg);
  align-items: center; /* タイトルがリストの高さに引っ張られないように */
  z-index: 1;
}

@media (min-width: 981px) {
  /* 横並びの時だけ適用 */
  .section__title--small {
    color: var(--color-gray-100);
    font-size: var(--fs-2xl); /* 24→36px (旧3rem) */
    font-family: var(--font-mincho);
    position: relative;
    text-align: center;
    align-self: center;
    padding-bottom: var(--space-md-lg);

    white-space: nowrap;
    flex-shrink: 0;
  }

  .section__title--small::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 19px;
    background-image: url("../img/common/ornament-section-wave-orange.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }
}

.news__list {
  flex: 1;
  min-width: 0;
  z-index: 1;
}

.news__item {
  position: relative;
  display: grid;
  justify-items: start;
  grid-template-columns: 7em 1fr;
  column-gap: var(--space-md);
  padding: var(--space-sm);
  border-bottom: 1px solid var(--color-gray-500);
  transition: background-color var(--hover-speed) var(--hover-timing);
}

.news__item:last-child {
  border-bottom: 1px solid var(--color-gray-500);
}

.news__item:hover {
  background-color:var(--color-gray-500);
}

.news__time {
  font-size: var(--fs-lg); /* 20→24px */
  color: var(--color-accent);
}

.news__title {
  background: transparent;
  color: var(--color-gray-100);
  text-align: left;
  /* 行全体をクリック可能にする */
  &::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1; /* 行全体を覆う */
  }
}

/* ========================
  intro
======================== */
.section-group--gardient {
  background-image: linear-gradient(
    180deg,
    #000000 0%,
    var(--color-bg-primary) 59%,
    #b6b6b6 90%,
    #efefef 98%,
    var(--color-bg-secondary) 100%
  );
}

.section--intro {
  position: relative;
  z-index: 1;
}

.intro__inner {
  position: relative;
  z-index: 1;
}

.section--intro::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/top/bg-intro.webp") center / contain no-repeat;
  opacity: 0.1;
  z-index: 0;
}

.section__intro-text {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-xl);
  justify-content: space-between;
  margin-bottom: var(--space-xxl);
  line-height: var(--lh-loose);
  color: var(--color-gray-100);
}

.section__title--intro {
    font-size: var(--fs-intro-title);
    font-weight: 600;
}

.key-msg {
  font-weight:400;
  line-height: var(--lh-loose);
}

.key-msg__block {
  margin-bottom: var(--space-lg);
}

.key-msg__block--emphasis {
  font-size: var(--fs-lg); /* 20→24px */
  font-family: var(--font-mincho);
}

/* ========================
  overview
======================== */
.overview__inner {
  background-color: var(--color-bg-secondary);
  padding-block: var(--section-padding);
  position: relative;
}

.overview__inner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/common/bg-texture.webp");
  opacity: 0.25;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  border-radius: 0 32px 0 32px;
  overflow: hidden;
  z-index: 0;
}

.overview__inner > * {
  position: relative;
  z-index: 1;
}

.overview {
  display: grid;
  grid-template-columns:
    140px
    1fr
    240px;
  row-gap: var(--space-md-lg);
  position: relative;
  margin-bottom: var(--space-xl);
  margin-top: var(--space-xxl);
}
/* 日時見出しを2行分にする */
.overview dt:first-of-type {
  grid-row: span 2;
}

/* 最初のddは下線を消す */
.is-no-border::after {
  display: none !important;
}

.overview__term {
  grid-column: 1;
  position: relative;
  width: 140px;
  display: flex;
  justify-content: flex-start;
  align-items: start;
  color: var(--color-gray-400);
}

.overview__term span {
  display: inline-block;
  position: relative;
  width: 140px;
  text-align: center; /* 中身の文字を中央に */
  color: var(--color-text);
  font-family: var(--font-mincho);
  font-size: var(--fs-md);
  font-weight: 600;
}

.overview__term span::before,
.overview__term span::after {
  position: absolute;
  top: 50%;
  transform: translateY(-58%);
  font-family: var(--font-gothic);
  font-size: var(--fs-em-xl);
  font-weight: 100;
  color: currentColor;
}

.overview__term span::before {
  content: "‹"; /* ← 左用 */
  left: 0;
}

/* 右側の > */
.overview__term span::after {
  content: "›"; /* ← 右用 */
  right: 0;
}

.overview__desc {
  grid-column: 2;
  color: var(--color-gray-500);
  font-size: var(--fs-body); /* 18→20px */
  padding: 0 var(--space-lg);
}

.overview__desc:first-of-type {
  padding-bottom: 0;
  font-weight: 600;
}

/* ボタンがない行の解説エリアを、2列目から3列目の終わりまで広げる */
.overview__desc--full {
  grid-column: 2 / 4; /* 2列目から始まり、4列目の手前まで結合 */
  padding-right: var(--space-xs); /* 右側の余白を調整 */
}

.overview__desc--host a {
  text-decoration: none;
  font-size: var(--fs-body); /* 16→18px */
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.6px;
  display: inline;
  /* ホバー時の変化 */
  transition:
    text-shadow var(--hover-speed) var(--hover-timing),
    border-color var(--hover-speed) var(--hover-timing);
  color: inherit;
}

.overview__desc--host a:hover {
  text-shadow: 0 0 0.5px currentColor;
}

.overview__notice {
  font-size: var(--fs-body); /* 16→18px */
  color: var(--color-warning);
}

.overview__btn {
  grid-column: 3;
  /* align-self: last baseline; */
  align-self: end; /* セルの下端に揃える */
  padding-bottom: var(--space-lg); /* dt/dd の余白と同じにする */
}

.overview dt,
.overview dd {
  position: relative;
  padding-bottom: var(--space-lg);
}

.overview dt::after,
.overview dd::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--color-gray-200);
}

.overview__desc--cost span {
  font-size: var(--fs-body-lg); /* 18→20px */
}

.overview__date {
  font-family: var(--font-en);
  font-size: var(--fs-3xl); /* 40→60px (旧4.6rem) */
  line-height: 1;
}

.overview__day {
  font-family: var(--font-mincho);
  font-size: var(--fs-xl); /* 24→36px (旧3rem) */
  line-height: 1;
}

.overview__time {
  font-family: var(--font-en);
  font-size: var(--fs-heading-md); /* 24→36px */
  line-height: 1;
}

.overview__range {
  font-size: var(--fs-heading-lg); /* 32→48px */
  padding-inline: var(--space-xxs);
}

.overview__sub-range {
  font-size: var(--fs-2xl); /* 24→36px (旧3rem) */
  padding-inline: var(--space-xxs);
}

.overview__sub-time {
  font-size: var(--fs-xl); /* 32→48px */
  padding-left: 0.4em;
  font-family: var(--font-mincho);
}

.event-name-jp {
  font-size: var(--fs-lg); /* 22→28px (旧2.6rem) */
  font-family: var(--font-mincho);
}

.overview__schedule li {
  max-width: 600px;
  display: grid;
  grid-template-columns:
    100px
    1fr;
  border-bottom: solid 1px var(--color-gray-300);
  padding: var(--space-xs);
}

.schedule__notice {
  font-size: var(--fs-body); /* 16→18px */
}

@media screen and (max-width: 1023px) {
  .schedule__notice {
    display: block; /* 横並びを解除して改行させる */
    margin-top: 4px; /* 上のテキストとの詰まり具合を調整 */
  }
}

/* ========================
  access
======================== */
.access{
  background-color: var(--color-bg-secondary);
  color: var(--color-text);
}

.access .section__title{
margin-bottom: var(--space-xxl);
}

/* ========================
  how-to
======================== */
.section--how-to {
  background-color: var(--color-bg-secondary);
  position: relative;
}

.how-to__heading {
  text-align: center;
}

.how-to__method-list {
  /* style.css の共通定義に追加 */
  padding-bottom: var(--space-sm); /* topページのみ下余白を付加 */
}

.how-to__flow {
  margin-bottom: var(--space-xxl);
}

.how-to__flow-list {
  display: flex;
  justify-content: space-between;
  gap: var(--space-lg);
  list-style: none;
  padding: 0;
}

/* how-toセクション内の要素に対してだけ overflow を上書き */
.section--how-to .u-border-radius {
  overflow: visible !important;
}

.how-to__flow-item {
  flex: 1;
  position: relative;

  display: flex;
  flex-direction: column;
}

.how-to__flow-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background-image: url("../img/common/shape-tri.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: -30px;
  transform: translateY(-50%);
  z-index: 1;
}

.how-to__flow-card {
  display: grid;
  /* 1:タイトル / 2:時間(高さ固定) / 3:説明文(伸縮) / 4:画像 / 5:キャプション */
  grid-template-rows: 130px 28px 1fr auto auto;
  height: 100%;
  background-color: var(--color-bg-card);
}

.how-to__flow-content {
  display: contents;
}

.how-to__flow-heading {
  grid-row: 1; /* 1行目に配置 */
  padding: var(--space-md) var(--space-md) 0;
}

.how-to__flow-time {
  color: var(--color-gray-200);
  font-size: var(--fs-body); /* 16→18px */

  grid-row: 2; /* 2行目に配置 */
  margin-inline: var(--space-md);
  align-self: center;
  border-top: solid 1px currentColor;
  border-bottom: solid 1px currentColor;
  padding: var(--space-xxs);
  margin-block: 0; /* Gridの行の高さで制御するためmarginは0に */
}

.how-to__flow-text {
  grid-row: 3; /* 3行目に配置 */
  padding-inline: var(--space-md);
  margin-top: var(--space-sm);
  align-self: start;
}

.how-to__flow-price .text-en {
  font-size: var(--fs-2xl); /* 40→60px */
  letter-spacing: var(--ls-sm);
}

.how-to__flow-image {
  grid-row: 4;
  margin-top: var(--space-md);
  width: 100%;
  aspect-ratio: 1.618 / 1;
  display: flex;
  overflow: hidden;
}

.how-to__flow-image02 {
  display: flex;
  justify-content: space-between;
}

.how-to__flow-image02 img {
  width: 49%;
  aspect-ratio: 1 /1;
  object-fit: cover;
  object-position: 70% center;
}

.how-to__flow-caption {
  grid-row: 5;
  padding: var(--space-xs) var(--space-md-lg) var(--space-md);
  font-size: var(--fs-body); /* 16→18px */
}

/* ========================
  parallel-event
======================== */
.section--parallel-event {
  background-color: var(--color-bg-secondary);
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.section--parallel-event::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/common/bg-texture.webp");
  opacity: 0.25;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  z-index: -2;
}

.section--parallel-event::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: -1;

  background-image: 
    /* 右上：さらに小さく、さらに薄く */
    radial-gradient(
      circle at 85% 25%,
      rgba(239, 163, 0, 0.1) 0%,
      /* 不透明度を 0.1 にダウン */ rgba(239, 163, 0, 0) 25% /* 20%で消える */
    ),
    /* 左下：さらに控えめに */
    radial-gradient(
        circle at 15% 52%,
        rgba(239, 163, 0, 0.15) 0%,
        /* 不透明度を 0.15 にダウン */ rgba(239, 163, 0, 0) 25%
          /* 20%で消える */
      );

  /* ぼかしを 25px まで下げて、円の存在をコンパクトに留める */
  filter: blur(25px);
}

.parallel-event__inner {
  color: var(--color-text);
}

.parallel-event__inner > * {
  position: relative;
  z-index: 1;
}

.parallel-event__item:last-child .section__heading--parallel-event {
  margin-block: var(--space-lg) var(--space-lg);
}

.parallel-event__content {
  display: grid;
  grid-template-columns: 1fr 370px;
  gap: var(--space-xl);
}

.parallel-event__text {
  margin-bottom: var(--space-md);
}

.parallel-event__img {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: start;
  gap: var(--space-lg);
}

.parallel-event__item--bottom .parallel-event__img {
  align-self: end;
}

/*.parallel-event__img--music {
  width: 220px;
}*/

.music-event__place span {
  font-size: var(--fs-body-lg); /* 18→20px */
  color: var(--color-gray-400);
}

.parallel-event__link {
  font-size: var(--fs-body); /* 16→18px */
}

.parallel-event__link--box {
  display: inline-flex;
  justify-content: center;
  align-items: center;

  max-width: 370px;
  width: 100%;
  padding: var(--space-sm);

  background-color: var(--color-gray-100);
  border: 1px solid var(--color-gray-400);
  transition: all var(--hover-speed) var(--hover-timing);
}

.parallel-event__link--box:hover {
  background-color: var(--color-accent-light);
  border-color: var(--color-accent-light);
  color: var(--color-text);
}

.parallel-event__link--tsuguten {
  font-weight: 400;
  margin-top: var(--space-xs);
}

.parallel-event__note {
  font-size: var(--fs-lg); /* 20→24px */
  margin-bottom: var(--space-sm);
  font-family: var(--font-mincho);
}

.parallel-event__annotation-list {
  font-size: var(--fs-body); /* 16→18px */
  color: var(--color-gray-400);
  background-color: var(--color-gray-100);
  margin-block: var(--space-md-lg);
  padding: var(--space-sm);
}

.parallel-event__overview {
  border: solid 1px var(--color-gray-300);
  padding: var(--space-sm);
}

.parallel-event__subheading {
  width: 100%;
  background-color: var(--color-gray-400);
  font-size: var(--fs-body); /* 16→18px */
  color: var(--color-gray-100);
  padding: var(--space-xs) var(--space-sm);
}

.parallel-event__btn {
  margin-top: var(--space-xxl);
}

/* 日時・場所・主催のすべてにインデントを適用 */
.parallel-event__place,
.parallel-event__host {
  display: block; /* インデントを効かせるためにブロック化 */
  padding-left: 3em; /* 「項目名：」の幅に合わせて調整（3.5〜4em程度） */
  text-indent: -3em; /* 1行目だけ左に戻す */
}

/* リンクが「主催：」の横から落ちるのを防ぐ */
.parallel-event__link--tsuguten.u-link {
  display: inline; /* inline-flexを解除し、普通の文字として扱う */
  width: auto; /* fit-contentを解除 */
  padding-inline: 0; /* 左右の余白をリセットして、文字のすぐ横に配置 */
}

/* アイコンが文字と一緒に改行されるように調整 */
.parallel-event__link--tsuguten.u-link::after {
  display: inline-block;
  transform: translateY(-2px);
  vertical-align: middle;
  margin-left: var(--space-sm);
}

/* Layout & Cards調整のためのレスポンシブ */
@media screen and (max-width: 981px) {
  /* ========================
  mv
  ======================== */

  /* タブレット: 日付・時刻フォントをビューポートに合わせてスケール */
  .mv__info-date {
    font-size: var(--fs-sp-display);
  }

  .mv__info-time {
    font-size: var(--fs-sp-body-lg);
  }

  .mv__info-place {
    font-size: var(--fs-sm); /* 14→16px */
  }

  /* ========================
  news
  ======================== */
  .news__inner {
    grid-template-columns: 1fr;
  }

  .section__title--small{
    color: var(--color-gray-100);
  }

  /* ========================
  intro
  ======================== */
  .section__intro-text {
    grid-template-columns: 1fr;
    margin-bottom: var(--space-xl);
  }

  .section__title--intro {
    line-height: var(--lh-md);
  }

  /* ========================
  overview
  ======================== */
  .overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: var(--space-md-lg);
    padding-bottom: var(--space-md-lg);
  }

  /* PC版の「grid-column」指定をすべて解除 */
  .overview__term,
  .overview__desc,
  .overview__desc--full,
  .overview__btn {
    grid-column: auto !important;
    width: 100%;
    padding-inline: 0;
  }

  .overview dt,
  .overview dd {
    padding-bottom: 0;
  }

  /* 説明文は基本左寄せ、ただし幅を担保する */
  .overview__desc {
    text-align: left;
  }

  .u-text-center {
    text-align: center !important;
  }

  .overview__desc:first-of-type {
    text-align: center;
    max-width: fit-content;
  }

  /* スケジュール（箇条書き）部分の調整 */
  .overview__schedule li {
    max-width:inherit;
  }

  /* ボタンを中央に配置 */
  .overview__btn {
    display: flex;
    justify-content: center;
    padding-bottom: 0;
    /* margin-block: var(--space-sm); */
  }

  /* PC版の下線(::after)は消去、調整 */
  .overview dt::after,
  .overview dd::after {
    display: none; /* SPデザインに下線がなければ非表示に */
  }

  .overview__term {
      padding-top: var(--space-xl);
    justify-content: center;
  }

  .overview__term:first-child {
    border-top: none;
    padding-top: 0;
  }

  /* ========================
  how-to
  ======================== */
  .how-to__method-list {
    flex-direction: column;
    gap: var(--space-lg);
  }

  .how-to__method {
    flex: none;
    margin-inline: auto;
    width: min(580px, 100%);
  }

  .how-to__method-info {
    flex-grow: 0;
    padding: var(--space-md);
  }

  /* 1. リストを縦並びにする */
  .how-to__flow-list {
    flex-direction: column;
    gap: var(--space-lg); /* カード同士の縦の隙間。矢印が入るスペースを確保 */
  }

  .how-to__flow-item {
    margin-inline: auto;
    width: min(580px, 100%);
  }

  /* 2. Gridの「棚」をリセットして縦に詰める */
  .how-to__flow-card {
    /* すべて auto（中身の高さに合わせる）にする */
    grid-template-rows: auto;
    /* 棚の指定（grid-row）を解除するか、順番通りに並ぶよう row-gap を設定 */
    row-gap: 0;
  }

  /* display: contents を解除して、通常のブロックとして扱う（その方がSPでは楽です） */
  .how-to__flow-content {
    display: flex;
    flex-direction: column;
    padding: var(--space-md);
  }

  /* 3. 矢印を「右」から「下」へ移動し、回転させる */
  .how-to__flow-item:not(:last-child)::after {
    top: auto; /* 中央配置を解除 */
    right: 50%; /* 左右の中央へ */
    bottom: -40px; /* カードの下側に配置（gapの値に合わせて調整） */
    transform: translateX(50%) rotate(90deg); /* 半分戻して、90度右回転 */
    width: 36px;
    height: 40px;
  }

  .how-to__flow-time {
    display: block;
    width: 100%;
  }

  .how-to__flow-heading,
  .how-to__flow-time,
  .how-to__flow-text,
  .how-to__flow-price,
  .how-to__flow-notice {
    padding-inline: 0 !important; /* 強制的に個別余白を消す */
    margin-inline: 0;
  }

  /* ========================
  parallel-event
  ======================== */
  .section--parallel-event::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: -1;

    background-image: 
    /* 右上：さらに小さく、さらに薄く */
      radial-gradient(
        circle at 89% 15%,
        rgba(239, 163, 0, 0.1) 0%,
        /* 不透明度を 0.1 にダウン */ rgba(239, 163, 0, 0) 10% /* 20%で消える */
      ),
      /* 左下：さらに控えめに */
        radial-gradient(
          circle at 10% 62%,
          rgba(239, 163, 0, 0.15) 0%,
          /* 不透明度を 0.15 にダウン */ rgba(239, 163, 0, 0) 15%
            /* 15%で消える */
        );

    filter: blur(4px);
  }

  .section__heading--parallel-event {
    text-align: center;
  }

  .parallel-event__item:last-child .section__heading--parallel-event {
    margin-block: var(--space-xxl) var(--space-lg);
  }

  .parallel-event__content {
    margin-inline: auto;
    width: min(630px, 100%);

    grid-template-columns: 1fr;
    gap: var(--space-md-lg);
  }

  .music-event__place span {
    font-size: var(--fs-body); /* 16→18px */
  }
}

/* sp最適化のためのレスポンシブ */
@media screen and (max-width: 768px) {
  /* ========================
  mv
  ======================== */
  .mv__gradient {
    --left-end: 42%;
    --bottom-end: 41%;

    /* SPは上からの影を「なし」にするため、backgroundを再定義 */
    background:
      linear-gradient(
        to top,
        var(--grad-color) 0%,
        transparent var(--bottom-end)
      ),
      linear-gradient(
        to right,
        var(--grad-color) 0%,
        transparent var(--left-end)
      );
  }

  .mv__logo {
    top: clamp(68px, 15vw - 16px, 20%);
    right: auto;
    left: var(--container-padding);
    width: auto;
  }

  .mv__info {
    bottom: 15%;
    top: auto;
    right: var(--container-padding);
    left: auto;
  }

  :lang(en) .mv__info {
    bottom: 10%;
    right:inherit;
    left:var(--space-lg);
  }

  .mv__info-text {
    margin-bottom: var(--space-lg);
    width: 10em;
    margin-left: auto;
  }

  :lang(en) .mv__info-text {
    width: 90%;
    margin-left: 0;
  }

  /* SP: テキストを白に、暗いグロー背景で視認性を確保 */
  .mv__info-date,
  .mv__info-time,
  .mv__info-place {
    color: rgba(255, 255, 255, 0.92);
    text-shadow:
      0 0 24px rgba(0, 0, 0, 0.9),
      0 0 48px rgba(0, 0, 0, 0.7);
  }

  .mv__info-date {
    font-size: var(--fs-5xl); /* 40→60px (旧4.2rem) */
  }

  :lang(en)   .mv__info-date {
    font-size: var(--fs-4xl); 
    letter-spacing: inherit;
  }

  :lang(en)   .mv__info-sep{
    font-size: var(--fs-sm);
    letter-spacing: inherit;
  }
  .mv__info-time {
    font-size: var(--fs-2xl); /* 22→28px */
    font-weight: 600;
  }

  .mv__info-time-sub{
  margin-left:0;
  font-size: var(--fs-base);
}

  .mv__info-place {
    font-size: var(--fs-md); /* 16→18px */
    font-weight: 600;
  }

  :lang(en)    .mv__info-place {
    font-size: var(--fs-sm); /* 16→18px */
  }

  
  /* ========================
  news
  ======================== */
  .section--news::before {
    border-radius: 0 3.2rem 0 3.2rem;
  }

  .news__item {
    grid-template-columns: 1fr; /* ← 1列にする */
    row-gap: var(--space-xxs); /* ← 縦の余白追加 */
  }

  .news__time {
    font-size: var(--fs-body-lg); /* 18→20px */
  }

  .news__title {
    font-size: var(--fs-body); /* 16→18px */
  }

  /* ========================
  intro
  ======================== */
  .section--intro::before {
    content: "";
    position: absolute;
    inset: 0;
    background: url("../img/top/bg-intro-sp.webp") center / cover no-repeat;
    opacity: 0.3;
    z-index: 0;
  }

  .key-msg {
    line-height: var(--lh-body);
  }

  .key-msg__block {
    margin-bottom: var(--space-md-lg);
  }

  /* ========================
  overview
  ======================== */
.section-group--gardient .btn-row {
  display: flex;
  flex-direction: column;
  font-size: var(--fs-body-lg);
  gap: var(--space-lg);
}

.parallel-event__info{
order:2;
}

}

/* mv-sp最適化のためのレスポンシブ */
@media screen and (max-width: 425px) {
  /* ========================
  mv
  ======================== */
  .section--mv::before {
    background-image: url("../img/top/mv-sp-01.webp");
    background-position: center 40%;
  }
}

/* ========================
  お知らせモーダル：本文ブロックの余白
  （p のマージンはリセットされているため、段落・リスト間に余白を付与）
======================== */
.modal__content > * + * {
  margin-top: var(--space-sm);
}
.modal__content .u-annotation-list li + li {
  margin-top: 0.4em;
}
/* 注釈（※）は本文よりサイズを下げて表示 */
.modal__content .u-annotation-list {
  font-size: var(--fs-small);
}
