/* ============================================================
   top.css — Wedding Front Page
============================================================ */

#main-content{
  /*
   * hidden → clip に変更。
   * hidden/auto はスクロールコンテナを生成し子要素の
   * position:sticky を無効化する。clip はコンテンツを
   * 切り取りつつスクロールコンテナを生成しない。
   */
  overflow-x: clip;
}

/* ================================================================
   WEDDING PLAN — 背景画像ヒーローセクション
================================================================ */
.top-plan {
  position: relative;
  min-height: 56vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: url('../img/plan.jpg') center center / cover no-repeat;
  overflow: hidden;
}

.top-plan::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.top-plan__inner {
  position: relative;
  z-index: 1;
  text-align: center;
  color: var(--color-white);
  padding: clamp(4rem, 8vw, 7rem) 1.5rem;
  max-width: 640px;
}

.top-plan__label {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-s-size);
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.7);
  margin-bottom: 3rem;
}

.top-plan__title {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.top-plan__desc {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-body-size);
  letter-spacing: var(--ja-body-ls);
  line-height: var(--ja-body-lh);
  color: rgba(255,255,255,0.85);
  margin-bottom: 2.25rem;
}

.top-plan__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.85em 2em;
  border: 1px solid rgba(255,255,255,0.7);
  border-radius: 100px;
  color: var(--color-white);
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-s-size);
  letter-spacing: var(--en-s-ls);
  transition: background-color 0.2s, border-color 0.2s;
  white-space: nowrap;
  background:var(--color-white);
  color: var(--color-dark);
}

.top-plan__btn::after {
  content: '';
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.top-plan__btn:hover,
.top-plan__btn:focus-visible {
  background-color: rgba(255,255,255,0.15);
  border-color: var(--color-white);
  color: var(--color-white);
}

@media (max-width: 768px) {
  .top-plan {
    min-height: 70vh;
  }
  .top-plan__inner {
    padding: clamp(5rem, 15vw, 7rem) 1.5rem;
  }
  .top-plan__title {
    font-size: clamp(2rem, 8vw, 2.6rem);
  }
}


/* ================================================================
   WEDDING REPORT — 暗背景 + リスト
================================================================ */
.top-report {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.top-report__inner {
  display: flex;
  gap: clamp(2.5rem, 10vw, 10rem);
  align-items: flex-start;
  padding: 0 clamp(3rem, 5vw, 5rem);
}

/* 左カラム：タイトル + CTA */
.top-report__head {
  flex: 0 0 18%;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.top-report__title {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  line-height: 1.1;

}

.top-report__subtitle {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-body-size);
  letter-spacing: var(--ja-body-ls);
  line-height: var(--ja-body-lh);

}

.top-report__btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  padding: 0.75em 1.6em;
  border: 1px solid var(--color-dark);
  border-radius: 100px;
  color: var(--color-dark);
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-s-size);
  letter-spacing: var(--en-s-ls);
  transition: background-color 0.2s;
  white-space: nowrap;
  align-self: flex-start;
  width: fit-content;
}

.top-report__btn::after {
  content: '';
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
}

.top-report__btn:hover,
.top-report__btn:focus-visible {
  background-color: var(--color-sub-bg);
}

/* 右カラム：レポートリスト */
.top-report__list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.top-report__item {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding-block: 1.25rem;
  transition: opacity 0.2s;
}

.top-report__item:hover {
  opacity: 0.75;
}

.top-report__thumb {
  flex-shrink: 0;
  width: clamp(90px, 12vw, 130px);
  aspect-ratio: 4/3;
  overflow: hidden;
  background: rgba(255,255,255,0.08);
}

.top-report__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.top-report__item:hover .top-report__thumb img {
  transform: scale(1.05);
}

.top-report__meta {
  flex: 1;
  min-width: 0;
}

.top-report__date {
  display: block;
  font-size: var(--en-s-size);
  font-family: var(--font-ja);
  margin-bottom: 0.3rem;
  color: var(--color-border);
}

.top-report__name {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-body-size);
  letter-spacing: var(--ja-body-ls);
  line-height: 1.6;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.top-report__arrow {
  flex-shrink: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-border);
  border-radius: 50%;
}

.top-report__arrow::after {
  content: '';
  display: inline-block;
  width: 0.38em;
  height: 0.38em;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg) translate(-0.05em, 0.05em);
}

/* SP */
@media (max-width: 768px) {

.top-report .top-report__btn{
  margin:0 auto;
}

  .top-report__inner {
    flex-direction: column;
    gap: 2rem;
    width:90%;
    margin:0 auto;
    padding:0;
  }

  .top-report__head {
    flex: none;
    width: 100%;
    text-align: center;
    align-items: center;
    gap:1em;
  }

  .top-report__title {
    font-size: clamp(2.8rem, 10vw, 3.4rem);
  }

  .top-report__list {
    width: 100%;
  }

  .top-report__thumb {
    width: clamp(80px, 28vw, 110px);
  }
}

/* ================================================================
   BRIDAL FAIR
================================================================ */
.top-bridal {
  padding-block: clamp(4rem, 7vw, 6rem);
}

.top-bridal__inner {
  padding: 0 clamp(3rem, 5vw, 5rem);
  max-width: 90rem;
  margin: auto;
}

.top-bridal__inner header{
  width:fit-content;
  margin-inline:auto;
  text-align: center;
  margin-bottom: 3em;
}

.top-bridal__inner header h2{
  font-family: var(--font-latin);
}

.top-bridal__inner iframe{
  width:100%;
  border: none;
}

.top-bridal .btn--primary{
  margin: 4em auto;
  justify-content: center;
  display: flex;
  width: fit-content;
  padding: 0.85em 2em;
  font-size: var(--en-s-size);
  height: auto;
 }

 .swiper-container-wrapper {}


/* ================================================================
   FAQ — アコーディオン
================================================================ */
.top-faq {
  background: var(--color-sub-bg);
  padding-top: clamp(4rem, 7vw, 6rem);
}

.top-faq__inner {
  display: flex;
  gap: clamp(3rem, 8vw, 8rem);
  align-items: flex-start;
  padding: 0 clamp(3rem, 5vw, 5rem);
}

.top-faq__head {
  flex: 0 0 clamp(140px, 14vw, 500px);
  padding-top: 0.25rem;
}

.top-faq__title {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  letter-spacing: 0.1em;
  line-height: 1;
  color: var(--color-dark);
  margin-bottom: 0.35rem;
}

.top-faq__subtitle {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-sm-size);
  letter-spacing: var(--ja-sm-ls);
  color: var(--color-dark);
}

.top-faq__list {
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* アコーディオンアイテム */

.faq-item__trigger {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 100%;
  padding: 1.1rem 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--color-dark);
}

.faq-item__icon {
  flex-shrink: 0;
  width: 1.1em;
  height: 1.1em;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

/* ＋アイコン */
.faq-item__icon::before,
.faq-item__icon::after {
  content: '';
  position: absolute;
  background: var(--color-dark);
  border-radius: 1px;
}

.faq-item__icon::before {
  width: 100%;
  height: 1px;
  top: 50%;
  transform: translateY(-50%);
}

.faq-item__icon::after {
  width: 1px;
  height: 103%;
  left: 50%;
  transform: translateX(-50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

/* 開いている状態は × になる */
.faq-item.is-open .faq-item__icon::before {
  transform: translateY(-50%) rotate(45deg);
}
.faq-item.is-open .faq-item__icon::after {
  transform: translateX(-50%) rotate(45deg);
}

.faq-item__question {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-body-size);
  letter-spacing: var(--ja-body-ls);
  line-height: var(--ja-body-lh);
}

/* .faq-item__body {
  display: block;
  max-height: 0;
  opacity: 0;
  filter: blur(8px);
  overflow: hidden;
  transition:
    max-height 0.4s ease,
    opacity 0.3s ease,
    filter 0.3s ease;
  padding: 0 0 1.25rem calc(1.1em + 1rem);
} */
.faq-item__body {
  height: 0;
  opacity: 0;
  filter: blur(6px);
  transform: translateY(-8px);
  overflow: hidden;
  transition:
    height 0.5s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 0.4s ease,
    filter 0.4s ease,
    transform 0.4s ease;
  padding: 0 0 1.25rem calc(1.1em + 1rem);
}

.faq-item.is-open .faq-item__body {
  opacity: 1;
  filter: blur(0);
}

.faq-item__answer {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-sub-size);
  letter-spacing: var(--ja-sub-ls);
  line-height: var(--ja-body-lh);
  color: var(--color-dark);
}

.faq-item__answer li {
  list-style: disc;
  margin-left: 1.2em;
  margin-bottom: 0.25em;
}

/* SP */
@media (max-width: 768px) {
  .top-faq__inner {
    flex-direction: column;
    gap: 2rem;
    padding: 0 5%;
  }

  .top-faq__head {
    flex: none;
    padding-top: 0;
    margin: 0 auto;
    width: fit-content;
  }

  .top-faq__list {
    width: 100%;
  }
}


/* ================================================================
   ACCESS — マップ + 住所情報
================================================================ */
.top-access {
  background: var(--color-sub-bg);
  padding-block: clamp(4rem, 7vw, 6rem);
}

.top-access__inner {
  display: grid;
  grid-template-columns: 55fr 40fr;
  grid-template-rows: auto auto;   /* ← 1fr → auto に変更 */
  grid-template-areas:
    "map  title"
    "map  info";
  column-gap: clamp(2.5rem, 5vw, 5rem);
  row-gap: 0;                      /* ← 行間を0に */
  padding: 0 clamp(3rem, 5vw, 5rem);
}

.top-access__title {
  grid-area: title;
  align-self: end;
  padding-bottom: 1.5rem;          /* ← この値だけで余白を調整 */
}

.top-access__map   { grid-area: map; }
.top-access__info  { grid-area: info; }

.top-access__map iframe {
  width: 100%;
  height: clamp(280px, 35vw, 450px);
  border: 0;
  display: block;
}

.top-access__info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.top-access__title {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  color: var(--color-dark);
}

.top-access__address {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-body-size);
  letter-spacing: var(--ja-body-ls);
  line-height: var(--ja-body-lh);
  color: var(--color-dark);
  font-style: normal;
}

.top-access__tel-block {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.top-access__tel {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  letter-spacing: 0.06em;
  color: var(--color-dark);
}

.top-access__hours {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-sm-size);
  letter-spacing: var(--ja-sm-ls);
  line-height: var(--ja-sm-lh);
  color: var(--color-dark);
}

/* SP */
@media (max-width: 768px) {
  .top-access__inner {
    display: flex;           
    flex-direction: column; 
    gap: 2rem;
    padding: 0 5%;
  }

  .top-access__map iframe {
    height: 280px;
  }
  .top-access__title{
    align-self: center;
    padding:0;
  }
}


/* PAGE-IN KEYFRAME は shared.css で定義済み */

/* ================================================================
   KV — ロゴ + タグライン
================================================================ */
.wed-kv {
  padding-top: clamp(8.5rem, 10vw, 10rem);
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.7rem;
  margin-bottom: clamp(2rem, 3.5vw, 3.5rem);
  transition: filter 0.1s linear, opacity 0.1s linear;
  will-change: filter, opacity;
}

.wed-kv__logo {
  animation: fade-up-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.05s;
}
.wed-kv__logo img {
  width: clamp(220px, 40vw, 520px);
  height: auto;
  display: block;
}
.wed-kv__tagline {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-m-size);
  color: var(--color-dark);
  animation: fade-up-in 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation-delay: 0.22s;
}

/* KV上のロゴをテキストに変更⇒アニメーション実装 */
.wed-kv__logo {
  font-family: var(--font-latin);
  font-weight: 400;
  font-size: clamp(2.8rem, 8vw, 4.5rem);
  white-space: nowrap;
  display: inline-block;
  overflow: visible;
  perspective: 800px;
}

/* 各文字の初期状態: 下からブラー付きでスタート */
.wed-kv__logo .char {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.45em);
  filter: blur(6px);
  will-change: opacity, transform, filter;
}

/* JS が transition-delay をセットした後に .is-animated をトリガー */
.wed-kv__logo.is-animated .char {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
  transition:
    opacity   0.8s  ease,
    transform 1.0s  cubic-bezier(0.25, 0.46, 0.45, 0.94),
    filter    0.75s ease;
}

.wed-kv__logo .space {
  display: inline-block;
  width: 0.25em;
}

/* "not" の 'o' — アニメーション中は上付き+3D回転 */
/* .wed-kv__logo .char.o-up {

  vertical-align: 0.38em;
  display: inline-block;
  transform-origin: center;
  backface-visibility: hidden;
} */
.wed-kv__logo.is-o-jump .char.o-up {
  transform: translateY(-0.3em) rotateY(360deg);
  transition: transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.wed-kv__tagline {
  opacity: 0;
  transform: translateY(20px);
}

.wed-kv__tagline.is-show {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}



/* ================================================================
   FV LEAD
================================================================ */
.wed-lead {
  /*
   * sticky FV: フレームが開ききるまでのスクロール余白。
   * --fv-extra = アニメーション用スクロール距離。
   * 50vw = 16:8 比率・横幅 100% 時のフレーム自然高さ。
   */
  /* --fv-extra: 60vh; */
  --fv-extra: 100vh;
  --sticky-offset: 250px;
  /* height: calc(50vw + var(--fv-extra)); */
  height: calc(var(--sticky-offset) + 50vw + var(--fv-extra));
  position: relative;
  z-index: 1;
}

.wed-lead__frame {
  /*
   * sticky: section が余分にスクロールされる間、
   * フレームは top:0 に貼りついて拡大を続ける。
   * height は最終形（横幅100%・比率16:8）の自然高さ
   * 50vw で固定し、section が reflow しないようにする。
   */
  position: sticky;
  top: 250px;
  width: 50%;         /* JS が 80%→100% にアニメート */
  height: 50vw;       /* 16:8 比・全幅時の高さ = 100vw×0.5 */
  margin: 0 auto;
  overflow: hidden;
  aspect-ratio: unset; /* 高さを固定するため aspect-ratio は解除 */
  will-change: width;
}

.wed-lead__frame picture {
  display: block;
  width: 100%;
  height: 100%;
}

/* 画像：スクロールで scale(1.08)→(1.0) — CSS transition は付与しない（rAF 制御） */
.wed-lead__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
}

/* { scroll to discover } — SP のみ表示 */
.wed-lead__hint {
  position: absolute;
  top: 8rem;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-ja);
  font-size: var(--en-s-size);
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.82);
  white-space: nowrap;
  pointer-events: none;
}


/* ================================================================
   About
================================================================ */

.wed-main__portrait{
  margin-top: -4em;
  aspect-ratio: 2.5 / 1;
}

.wed-main__about{
  position: relative;
  padding: clamp(5rem, 10vw, 10rem) clamp(3rem, 5vw, 5rem) 0  clamp(3rem, 5vw, 5rem);
}

.wed-main__land-b{
  position: absolute;
  right: clamp(3rem, 5vw, 5rem);
  top:-3em;
  width:30%;
}


.wed-main__land-b img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  transform-origin: center center;
  will-change: transform;
}

.wed-main__about-lead{
  display: flex;
  width: 100%;
  gap: 17%;
}

.wed-main__label{
  font-family: var(--font-latin);
}

.wed-main__body{
  font-family: var(--font-ja);
  letter-spacing: 0.05em;
  line-height: 2;
}

.wed-main__foot{
  padding-top:15em;
  margin-left: -8em;
}

.wed-main__foot .wed-main__body{
  margin-bottom: 1.5em;
}

/* ================================================================
   ONE DAY SECTION
================================================================ */
.wed-oneday {
  padding-top: clamp(4rem, 6vw, 7rem);
}

.wed-oneday__inner {
  padding:0 clamp(3rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  align-items: start;
  gap: clamp(2.5rem, 6vw, 6rem);
}

/* 左縦長写真 */
.wed-oneday__photo-l {
  overflow: hidden;
  aspect-ratio: 3 / 4;
}
.wed-oneday__photo-l img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wed-oneday__photo-l:hover img { transform: scale(1.04); }

.wed-oneday__photo-r{
  order:3;
}

/* テキストブロック */
.wed-oneday__text {
  display: flex;
  flex-direction: column;
  gap: clamp(1.25rem, 3vw, 3rem);
  padding-top: clamp(5rem, 18vw, 18rem);
  order:2;
}

.wed-oneday__title {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  line-height: 1.1;
  color: var(--color-dark);
}

.wed-oneday__desc {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-body-size);
  line-height: var(--ja-body-lh);
  color: var(--color-dark);
}

/* 右小写真（少し下がった位置） */
.wed-oneday__photo-r {
  overflow: hidden;
  aspect-ratio: 1.5 / 1;
  margin-top: clamp(5rem, 10vw, 10rem);
}
.wed-oneday__photo-r img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.wed-oneday__photo-r:hover img { transform: scale(1.04); }

/* 下段ワイド写真（右寄せ） */
.wed-oneday__wide {
  width: 30%;
  margin-left: auto;
  margin-right: 12%;
  overflow: hidden;
}
.wed-oneday__wide img {
  width: 100%;
  height: auto;
  display: block;
}


/* .wed-anim / .wed-anim-img / .wed-is-visible は shared.css で定義済み */

/* ================================================================
   PARALLAX — [data-parallax] 内の画像に連続スクロール視差を付与
   JS が --py CSS変数をスクロールのたびに更新し続ける。
   figure（reveal用）と img（parallax用）を分離して競合回避。
================================================================ */

/* コンテナは overflow:hidden が必須（未設定のものを補完） */
.wed-main__portrait,
.wed-main__land-b {
  overflow: hidden;
}

[data-parallax] img {
  /* パララックス移動量を確保するため高さを少し余分に取る */
  height: 120%;
  width: 100%;
  object-fit: cover;
  object-position: center;
  transform: translateY(var(--py));
  will-change: transform;
  transition: none;
}

/* land-b は元の scale(1.08) をパララックスで代替 */
.wed-main__land-b img {
  transform: translateY(var(--py, 0px));
}

/* wide は元々 height:auto だったので object-fit 指定も補完 */
.wed-oneday__wide img {
  height: 115%;
  object-fit: cover;
}

/* ホバー時の scale を parallax translateY と共存させる */
.wed-oneday__photo-l:hover img {
  transform: scale(1.04) translateY(var(--py, 0px));
}
.wed-oneday__photo-r:hover img {
  transform: scale(1.04) translateY(var(--py, 0px));
}

/* アクセシビリティ：motion低減設定では parallax を完全無効化 */
@media (prefers-reduced-motion: reduce) {
  [data-parallax] img {
    transform: none !important;
    height: 100%;
    transition: none;
  }
}



/* ================================================================
   SP (〜768px)
================================================================ */
@media (max-width: 768px) {

  .wed-kv { padding-top: 14.5rem; padding-bottom: 3em; gap:0;}
  .wed-kv__logo img { width: clamp(200px, 80vw, 300px); }

  .wed-lead {
    height: calc(250px + 50vw + 100vh);
  }
  .wed-lead__frame {
    position: sticky;
    top: 250px;
    width: 50%;
    height: 50vw;
    margin: 0 auto;
    will-change: width, height, top;
  }

  .wed-lead__hint {
    color: var(--color-dark);
  }

  /* ──────────────────────────────────────────
     Main Grid SP:
  ────────────────────────────────────────── */
  .wed-main__portrait {
    aspect-ratio: 1.15 / 1;
  }

  .wed-main__about{
    width:90%;
    margin:0 auto;
    padding: 28% 0 5em 0;
  }

  .wed-main__about-lead{
    flex-direction: column;
    gap:3em;
  }

  .wed-main__foot{
    padding:0;
    margin-left: auto;
    width: fit-content;
  }

  .wed-main__foot .top-report__btn{
    width: fit-content;
    margin-left: auto;
    display: flex;
  }

  .wed-main__land-b{
  right:0;
  aspect-ratio: 1 / 1.3;
  }

  /* ──────────────────────────────────────────
     One Day SP:
  ────────────────────────────────────────── */
  .wed-oneday { padding-top: 0; }
.wed-oneday__inner{
  width: 90%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 5em 0;
}
.wed-oneday__photo-l{
  width:50%;
}
.wed-oneday__photo-r{
  width:30%;
  order:2;
  aspect-ratio: 4 / 3;
}
.wed-oneday__text{
  width:100%;
  order:3;
  width: 100%;
  order: 3;
  padding-top: 0;
  text-align: center;
  padding-bottom: 5em;
}
.wed-oneday__wide{
  width:70%;
  margin:0 auto;
}
}


/* ================================================================
   WED-BOTTOM — onedaybottom.jpg × 2 + 散らしロゴ
   背景: about-bg.jpg（空・雲）全面
================================================================ */
.wed-bottom {
  position: relative;
  overflow: hidden;
  background: url('../img/about-bg.jpg') center center / cover no-repeat;
  padding: clamp(8rem, 14vw, 14rem) 0 clamp(8rem, 14vw, 14rem);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -5em;
  z-index: -1;
}

/* ── 2枚写真コンテナ ── */
.wed-bottom__photos {
  position: relative;
  z-index: 2;
  display: flex;
  gap: clamp(0.5rem, 1.2vw, 1.5rem);
  align-items: center;
  justify-content: center;
  width: 60%;
}

.wed-bottom__photo {
  flex: 1 1 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.wed-bottom__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* ── 散らしロゴテキスト ── */
.wed-bottom__word {
  position: absolute;
  z-index: 3;
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  color: var(--color-white);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}


/* "nᵒt" — 左上 */
.wed-bottom__word--not {
  font-size: clamp(1.4rem, 2.2vw, 2.8rem);
  letter-spacing: 0.02em;
  top:-0.6em;
  left: -0.6em;
}

.wed-bottom__word--not span{
  position: relative;
 top:-0.2em;
}

/* "the" — 中央やや上 */
.wed-bottom__word--the {
  font-size: clamp(1.2rem, 1.8vw, 2.2rem);
  letter-spacing: 0.08em;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* "wedding" — 右下 */
.wed-bottom__word--wedding {
  font-size: clamp(1.4rem, 2.2vw, 2.8rem);
  bottom: -0.4em;
  right:-0.4em;
}


/* ================================================================
   WED-BOTTOM — SP (〜768px)
================================================================ */
@media (max-width: 768px) {

  .wed-bottom {
    padding: 20em 0;
  }


  .wed-bottom__photos {
    width: 80%;
    gap: clamp(0.3rem, 1.5vw, 0.8rem);
    align-items: stretch;
  }

  .wed-bottom__photo {
    aspect-ratio: 1.2 / 2;
  }

}


/* ================================================================
   SPACE & CONTENTS
================================================================ */

/* ── セクション全体：相対配置で背景を内包 ── */
.top-space {
  position: relative;
  overflow: hidden;
  padding-top: clamp(5rem, 8vw, 9rem);
  padding-bottom: clamp(5rem, 8vw, 9rem);
}

/* ── 背景動画レイヤー ── */
.top-space__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.top-space__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* #A6F2B6 を 10% 透明度でかぶせる */
.top-space__overlay {
  position: absolute;
  inset: 0;
  background-color: #4E7456;
  opacity: 0.5;
}

/* ── ヘッダー ── */
.top-space__header {
  position: relative;
  z-index: 1;
  text-align: center;
  margin-bottom: clamp(3rem, 5vw, 5rem);
  color: var(--color-white);
}

.top-space__eyebrow {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-s-size);
  letter-spacing: var(--en-s-ls);
  opacity: 0.85;
  margin-bottom: 0.6rem;
}

.top-space__title {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  line-height: 1.1;
  margin-bottom: clamp(1.5rem, 2.5vw, 2.5rem);
}

.top-space__desc {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-body-size);
  letter-spacing: var(--ja-body-ls);
  line-height: var(--ja-body-lh);
  opacity: 0.9;
}

/* ── カードリスト：4列グリッド ── */
.top-space__list {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.2em;
  margin: 0 clamp(3rem, 5vw, 5rem);

  overflow: hidden;
}

/* ── カード1枚 ── */
.top-space__card {
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 4px;
  padding: clamp(2rem, 4vw, 4rem) clamp(1rem, 1vw, 1rem);
}
.top-space__card:last-child {
  border-right: none;
}

/* ── カード写真エリア ── */
.top-space__card-img {
  position: relative;
  overflow: hidden;
  aspect-ratio:1 / 1;
}

.top-space__card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.top-space__card:hover .top-space__card-img img {
  transform: scale(1.04);
}


.top-space-cap{
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin-top:0.5em;
  margin-bottom: 2em;
}
/* #01 番号 — 左下 */
.top-space__card-num {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-s-size);
  letter-spacing: 0.1em;
}

/* タグ — 右下 */
.top-space__card-tag {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-s-size);
  letter-spacing: 0.06em;
}

/* ── カード本文エリア ── */
.top-space__card-body {
  text-align: center;
}

.top-space__card-title {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  line-height: 1.1;
  color: var(--color-dark);
  margin-bottom: 0.2em;
}

.top-space__card-sub {
  font-family: var(--font-ja);
  font-weight: var(--fw-ja);
  font-size: var(--ja-sm-size);
  letter-spacing: var(--ja-sm-ls);
  line-height: var(--ja-sm-lh);
  color: var(--color-dark);
  margin-bottom: 2rem;
}

.top-space__card-body .btn--primary{
  padding: 0.8em 2em;
  font-size: var(--en-s-size);
  height: auto;
}

.top-space__card-body .btn--primary::after{
  content: '+';
  border: none;
  transform: none;
  font-size: 1.5em;
  position: relative;
  top: -0.4em;
}

/* ================================================================
   SPACE & CONTENTS — TABLET (769〜1100px)
================================================================ */
@media (max-width: 900px) {
  .top-space__list {
    grid-template-columns: repeat(2, 1fr);
    margin: 0 clamp(1.5rem, 3vw, 3rem);
  }
}


/* ================================================================
   SPACE & CONTENTS — SP (〜768px)
================================================================ */
@media (max-width: 500px) {
  .top-space__list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
.top-bridal__inner{
  padding:0;
  width:90%;
  margin:0 auto;
}

}

/* ================================================================
   CEREMONY MODAL
================================================================ */

/* ── ベース：固定オーバーレイ ── */
.wed-modal {
  position: fixed;
  inset: 0;
  z-index: 2;
  display: flex;
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wed-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

/* hidden 属性があるときは完全に非表示 */
.wed-modal[hidden] {
  display: none !important;
}

/* ── 左余白（PC：クリックで閉じる） ── */
.wed-modal__backdrop {
  flex: 0 0 15%;
  background: rgba(5, 30, 5, 0.72);
  cursor: pointer;
}

/* ── パネル本体 ── */
.wed-modal__panel {
  flex: 1;
  position: relative;
  background: var(--color-white, #fff);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transform: translateX(40px);
  transition: transform 0.55s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wed-modal.is-open .wed-modal__panel {
  transform: translateX(0);
}

/* ── スクロール可能エリア ── */
.wed-modal__body {
  flex: 1;
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding:1em;
}

/* ── 縦書きラベル (PC) ── */
.wed-modal__vert-label {
  position: absolute;
  left: 2em;
  top: 50%;
  white-space: nowrap;
  font-family: var(--font-latin, serif);
  font-size: 0.72rem;
  color: var(--color-dark);
  pointer-events: none;
  z-index: 2;
  writing-mode: vertical-rl;
}

/* ── PC Closeボタン（ヒーロー内右上） ── */
.wed-modal__close{
  position: fixed;
  bottom: 2rem;
  right: 4rem;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background:var(--color-dark);
  color: var(--color-white);
  cursor: pointer;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
  border:none;
  font-family: var(--font-latin);
  border-color: transparent;
}

.wed-modal__close:hover {
  background-color: var(--color-border);
}

.wed-modal__close-icon {
  display: block;
  position: relative;
  width: 1.5rem;
  height: 1rem;
}

.wed-modal__close-icon::before,
.wed-modal__close-icon::after {
  content: '';
  position: absolute;
  inset: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #fff;
}

.wed-modal__close-icon::before { transform: rotate(26deg); }
.wed-modal__close-icon::after  { transform: rotate(-26deg); }


/* ── ヒーロー ── */
.wed-modal__hero {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.25 / 1;
}

.wed-modal__hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wed-modal__hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.1) 60%, transparent 100% ,rgba(0,0,0,0.55) 0%);
  display: flex;
  flex-direction: column;
  padding:10em clamp(1.5rem, 3vw, 2.5rem) 0;
}

.wed-modal__hero-eyebrow {
  font-family: var(--font-ja);
  font-size: var(--ja-sm-size);
  color:var(--color-white);
  margin-bottom: 0.3rem;
}

.wed-modal__hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background-color:var(--color-white);
  margin-right: 0.7em;
  position: relative;
  top:-0.2em;
}

.wed-modal__hero-title {
  font-family: var(--font-latin);
  font-weight: 300;
  font-size: var(--en-xxl-size);
  color:var(--color-white);
  line-height: 1;
  margin: 0;
}

/* カウンター */
.wed-modal__counter {
  position: absolute;
  top: 6rem;
  right: 3rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.15rem;
  color: var(--color-white);
  font-family: var(--font-latin);
  font-size:var(--ja-sm-size);
}

/* ── リードテキスト ── */
.wed-modal__lead {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 2rem;
  padding: clamp(2.5rem, 6vw, 6rem) clamp(2rem, 6vw, 6rem);
}

.wed-modal__lead-head {
  font-family: var(--font-ja);
  font-size: var(--ja-h-size);
  font-weight: 600;
  line-height: 1.75;
  letter-spacing: 0.06em;
  color: var(--color-dark);
}

.wed-modal__lead-body {
  font-family: var(--font-ja);
  font-size: var(--ja-body-size);
  line-height: 1.85;
  color: var(--font-ja);
}

.wed-modal__detail {
  margin-top: 1.5rem;
  padding-top: 1.25rem;
}

.wed-modal__detail-label {
  font-family: var(--font-latin);
  font-size: var(--en-ml-size);
  color: var(--color-dark);
  margin-bottom: 0.8rem;
}

.wed-modal__detail-item {
  font-size: var(--ja-sm-size);
  color: var(--color-border);
  margin-top:1em;
}

dl.wed-modal__detail-item{
  display: flex;
}

dl.wed-modal__detail-item dt{
  flex-shrink: 0;
  width: 5em;
  width: fit-content;
}

dl.wed-modal__detail-item dd{
  color: var(--color-dark);
}

dl.wed-modal__detail-item dd img{
  display: inline;
}

dl.wed-modal__detail-item::before{
  top:0.5em;
}

.underline{
  text-decoration: underline;
}

.wed-modal__detail-item.cap{
  margin-top:-1em;
}

.wed-modal__detail-item::before {
  content: '';
  display: inline-block;
  width: 0.4em;
  height: 0.4em;
  border-radius: 50%;
  background-color:var(--color-border);
  margin-right: 0.7em;
  position: relative;
  top:-0.2em;
}

.wed-modal__detail-item.cap::before{
  display: none;
}

/* ── Scene ── */
.wed-modal__scene {
  padding: clamp(3rem, 5vw, 5rem) clamp(2rem, 6vw, 6rem);
}

.wed-modal__scene-header {
  text-align: center;
  margin-bottom: clamp(2rem, 3vw, 2.5rem);
}

.wed-modal__scene-eyebrow {
  font-family: var(--font-latin);
  font-size:var(--en-m-size);
}

.wed-modal__scene-title {
  font-family: var(--font-latin);
  font-size: clamp(2.369rem, 3.974vw, 3.843rem);
  font-weight: 300;
  color: var(--color-dark);
}

/* 共通 figure スタイル */
.wed-modal__scene-main,
.wed-modal__scene-sub {
  margin: 0;
  overflow: hidden;
}

.wed-modal__scene-main img,
.wed-modal__scene-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wed-modal__scene-main {
  aspect-ratio: 4 / 3;
}

.wed-modal__scene-sub {
  aspect-ratio: 1.3 / 1;
}

/* キャプション */
.wed-modal__scene-cap {
  padding: 0.8rem 0 5em 0;
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  gap: 5em;
}

.wed-modal__scene-cap-title {
  font-family: var(--font-latin);
  font-size: var(--en-xl-size);
  color: var(--color-dark);
  margin-bottom: 0.6rem;
  flex-shrink: 0;
}

.wed-modal__scene-cap-title::before {
  content: '';
  display: inline-block;
  width: 0.2em;
  height: 0.2em;
  border-radius: 50%;
  background-color:var(--color-dark);
  margin-right: 0.2em;
  position: relative;
  top:-0.2em;
}

.wed-modal__scene-cap-title span {
  font-size: var(--en-m-size);
}

.wed-modal__scene-cap-title span::before{
  content:'/';
  margin-right:0.2em;
}

.wed-modal__scene-cap p:last-child {
  font-family: var(--font-ja);
  font-size:var(--ja-body-size);
}

/* Photo ブロック */

.wed-modal__scene-block--photo {
  display: grid;
  grid-template-columns: 5fr 6fr;
  grid-template-rows: auto 1fr auto;
  padding: 0;
  margin-bottom:5rem;
  width: 80%;
  margin-left: auto;
}
 
.wed-modal__scene-block--photo .wed-modal__scene-sub:first-child {
  grid-column: 1;
  grid-row: 1;
  margin: 0;
  overflow: hidden;
  padding: 0 0.2em 0 0;
}
 
.wed-modal__scene-block--photo .wed-modal__scene-sub:nth-child(2) {
  grid-column: 2;
  grid-row: 1 / 4;
  margin: 0;
  overflow: hidden;
}
 
.wed-modal__scene-block--photo .wed-modal__scene-cap--left {
  grid-column: 1;
  grid-row: 3;
  padding: 0 clamp(1.5rem, 2vw,2rem) 0;
  align-self: end;
  flex-direction: column;
    gap: 2em;
}
 
.wed-modal__scene-block--photo .wed-modal__scene-sub img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
 
.wed-modal__scene-block--photo .wed-modal__scene-sub:nth-child(2) {
  aspect-ratio: unset;
  min-height: 100%;
}

@media (max-width: 768px) {
  .wed-modal__close{
    right:2em;
    bottom:2em;
  }
  .wed-modal__scene-block--photo {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    gap: 0;
    width:auto;
    margin-left:inherit;
    display: flex;
    flex-direction: column;
  }
 
  .wed-modal__scene-block--photo .wed-modal__scene-sub:first-child {
    order:2;
    width:30%;
    margin-left:auto;
  }
 
  .wed-modal__scene-block--photo .wed-modal__scene-sub:nth-child(2) {
    order:1;
    width:80%;
    margin-left:auto;
    margin-bottom: 0.5em;
  }
 
  .wed-modal__scene-block--photo .wed-modal__scene-cap--left {
    order:3;
    padding:0;
    gap:0;
  }

.wed-modal__scene-block--photo .time-area.wed-modal__scene-cap--left {
  align-self: flex-start;
}
}

/* Style ブロック */
.wed-modal__style-main,
.wed-modal__style-block .wed-modal__scene-cap{
  width:80%;
}

.wed-modal__style-sub{
  aspect-ratio: 16/9;
  width:30%;
  margin-left:auto;
  margin-bottom: 1em;
}

.wed-modal__style-sub:last-of-type{
  aspect-ratio: 16/9;
  width:50%;
  margin-left:30%;
  margin-bottom:5em;
}

/* ── エンディング写真 ── */
.wed-modal__end {
  position: relative;
  margin: 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.wed-modal__end img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.wed-modal__end figcaption {
  position: absolute;
  bottom: -0.3em;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-latin);
  font-weight: 300;
  font-size: var(--en-xxl-size);
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* ── エンディング写真：ティッカー ── */
.wed-modal__end-ticker {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 2;
  display: flex;
  overflow: hidden;
  padding: 1em 0 0 0;
  pointer-events: none;
  user-select: none;
}

.wed-modal__end-ticker__track {
  display: flex;
  flex-shrink: 0;
  white-space: nowrap;
  animation: ticker-scroll 60s linear infinite;
}

.wed-modal__end-ticker__track + .wed-modal__end-ticker__track {
  animation-delay: 0s; 
}

.wed-modal__end-ticker__track span {
  font-family: var(--font-latin);
  font-weight: var(--fw-latin);
  font-size: var(--en-s-size);
  color: var(--color-white);
  padding-right: 6.5em; 
}

@keyframes ticker-scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-100%); }
}

/* reduced-motion 対応 */
@media (prefers-reduced-motion: reduce) {
  .wed-modal__end-ticker__track {
    animation: none;
  }
}


/* ================================================================
   CEREMONY MODAL — SP (〜768px)
================================================================ */
@media (max-width: 768px) {

  .wed-modal {
    display: block;
  }

  .wed-modal__backdrop {
    display: block;
    position: fixed;
    inset: 0;
    width: 20px;
    background: rgba(5, 30, 5, 0.72);
  }

  .wed-modal__panel {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 20px;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    padding-top: 7em;
  }

  .wed-modal.is-open .wed-modal__panel {
    transform: translateY(0);
  }

  /* SP: bodyがスクロール担当 */
  .wed-modal__body {
    flex: 1;
    overflow-y: auto;
    padding:20px 20px 0 20px;
  }

  .wed-modal__vert-label {
    position: relative;
    writing-mode: horizontal-tb;
    left: inherit;
    top: inherit;
  }

  .wed-modal__lead-head h3{
    margin:1em 0;
  }

  .wed-modal__hero-overlay {
    padding-top:3em;
  }

  .wed-modal__counter{
    top: inherit;
    right:2em;
    bottom:3em;
  }
  
  .wed-modal__lead {
    grid-template-columns: 1fr;
    padding: clamp(2.5rem, 6vw, 6rem) 0;
  }

  .wed-modal__scene{
    padding: clamp(2.5rem, 6vw, 6rem) 0;
  }

  .wed-modal__scene-cap{
    flex-direction: column;
    gap:0;
  }

  .wed-modal__scene-cap-title{
    font-size: var(--en-l-size);
    text-align: right;
  }

  .wed-modal__cuisine-item .wed-modal__scene-cap-title,  
  .wed-modal__scene-block  .wed-modal__scene-cap-title{
    text-align: left;
  }

  .wed-modal__hero,
  .wed-modal__end{
    aspect-ratio: 1 / 1.4;
  }

  .wed-modal__style-main, .wed-modal__style-block .wed-modal__scene-cap {
    width: 100%;
}

.wed-modal__style-sub{
  width:40%;
}
.wed-modal__style-sub:last-of-type {
  width:80%;
  margin-left:0;
}
}


/* ================================================================
   CUISINE MODAL
================================================================ */

.wed-modal__cuisine-maps{
  padding: 0 clamp(2rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem) ;
}

.wed-modal__cuisine-maps img {
  width: 100%;
  height: auto;
  display: block;
}

.wed-modal__cuisine-future{
  padding: 0 clamp(2rem, 6vw, 6rem) ;
}


.wed-modal__cuisine-item-img {
  margin-bottom: 1em;
  overflow: hidden;
  aspect-ratio: 16 / 9;
}

.wed-modal__cuisine-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.wed-modal__cuisine-item .wed-modal__scene-cap-title{
  margin-bottom: 1em;
}

.wed-modal__cuisine-item .wed-modal__scene-cap-title span{
  position: relative;
  top: -1em;
}

.wed-modal__cuisine-item .wed-modal__scene-cap-title::before{
  display: none;
}

.wed-modal__cuisine-item-cap{
  margin-bottom: 5em;
}

.wed-modal__scene-cap.desert{
  flex-direction: row;
}

@media (max-width: 768px) {
.wed-modal__cuisine-maps{
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}
.wed-modal__cuisine-future {
  padding: 0;
}
.wed-modal__cuisine-item .wed-modal__scene-cap-title span {
  top:-0.5em;
}
.wed-modal__scene-cap.desert{
  flex-direction: column;
}
}

/* ================================================================
   PARTY MODAL
================================================================ */

.wed-party-area{
  padding: 0 clamp(2rem, 6vw, 6rem) clamp(2.5rem, 6vw, 6rem) ;
}

.wed-modal__music-block{
  position:relative;
}

.wed-modal__music-sub-1{
  width:30%;
  margin-left: 30%;
  margin-bottom: 1em;
}

.wed-modal__music-sub-2{
  width:50%;
  margin-left:auto;
}

.wed-modal__music-sub-3{
  width:40%;
  flex-shrink: 0;
}

.wed-modal__music{
  display: flex;
  align-items: flex-end;
  gap:3em;
  margin-top:-15%;
}

.wed-modal__music .wed-modal__scene-cap{
  flex-direction: column;
  gap: 1em;
  padding-bottom: 0;
}

@media (max-width: 768px) {
.wed-party-area{
  padding: clamp(2.5rem, 6vw, 6rem) 0;
}
.wed-modal__music{
  margin-top: 0;
  flex-direction: column;
  align-items: flex-start;
  gap: 1em;
}
.wed-modal__music-sub-1 {
    width: 40%;
  margin-left:0;
}
.wed-modal__music-sub-2{
  margin-bottom: 5em;
  width: 80%;
}
.wed-modal__music-sub-3 {
  width: 80%;
}

.floormap-scroll{
  overflow-x: scroll;
}

.floormap-scroll .wed-modal__cuisine-maps{
  width:200%;
}

.item-bottom{
  margin-bottom: 5em;
}

}
