/* 固定 */
@charset "utf-8";

/* * {
  outline: 1px solid blue;
} */

@import url("https://fonts.googleapis.com/css2?family=Spectral&family=Noto+Sans+JP:wght@400&family=Noto+Serif+JP");

.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

#footer {
  margin-top: 0;
  padding-top: 80px;
  background-color: #fff;
}

img {
  width: 100%;
  height: auto;
}

.fs-l-main {
  width: 100% !important;
  max-width: 100%;
  margin: 0 auto;
  padding: 0;
  background: #fff;
  position: relative;
  z-index: 0;
}

.fs-l-pageMain {
  width: 100% !important;
  max-width: 100%;
}

.fs-c-breadcrumb {
  max-width: 800px;
  margin-inline: auto;
}

.main {
  width: 100%;
  text-align: center;
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
}

.serif {
  font-family:
    "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
    "Noto Serif JP", serif;
  font-weight: 400;
}

.seasons {
  font-family: "the-seasons", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* 固定 */

/* LP */
#popup__2602 {
  width: 100%;
  margin-inline: auto;
  line-height: 1;
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
  color: #695656;
  font-feature-settings: "palt";
}

/* main_visual */
#popup__2602 .mainvisual {
  width: 100%;
  max-width: 800px;
  margin-inline: auto;
  position: relative;
  z-index: 10;
  background-color: #ffffff; /* 必要に応じて、FVの下に隙間が透けないよう背景色を指定 */
}

#popup__2602 .mainvisual .mainvisual_rotate {
  width: calc(130 * (100vw / 800));
  height: calc(130 * (100vw / 800));
  position: absolute;
  /* bottom: calc(350*(100vw/800)); */
  top: calc(66 * (100vw / 800));
  right: calc(100 * (100vw / 800));
  animation: spin 15s linear infinite;
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

/* main_visual */

/* 260628 seciton2 sp*/

/* 260628 seciton2 sp*/

/* FV sp */
.tu-loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #eccfb0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 1;
  visibility: visible;
  transition:
    opacity 1.2s ease,
    visibility 1.2s ease;
}

.tu-loading-overlay.is-hide {
  opacity: 0;
  visibility: hidden;
}

.tu-loading-center-text {
  font-family:
    "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
    "Noto Serif JP", serif;
  font-size: calc(36 * (100vw / 800));
  color: #ffffff; /* 白文字 */
  letter-spacing: 0.2em;
  white-space: nowrap;
  opacity: 0;
  animation: tuLoadingTextSequence 4s ease forwards 0.5s;
}

@keyframes tuLoadingTextSequence {
  0% {
    opacity: 0;
    transform: translateY(5px);
    filter: blur(3px);
  }
  35% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  75% {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-5px);
    filter: blur(3px);
  }
}

.tu-loading-fv-text-wrap {
  position: absolute;
  top: 69%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
  z-index: 12;
}

.tu-loading-fv-img {
  display: block;
  height: auto;
}

.tu-fv-line-1 {
  width: calc(225 * (100vw / 800));
  margin-bottom: calc(18 * (100vw / 800));
}

.tu-fv-line-2 {
  width: calc(512 * (100vw / 800));
  margin-bottom: 1px;
}

.tu-fv-line-3 {
  width: calc(288 * (100vw / 800));
  margin-bottom: calc(9 * (100vw / 800));
}

.tu-fv-line-4 {
  width: calc(293 * (100vw / 800));
  margin-bottom: 0;
}

.tu-loading-fade-line {
  opacity: 0;
  transform: translateY(0);
  transition:
    opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
    transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.tu-loading-start-animation .tu-loading-fade-line {
  opacity: 1;
  transform: translateY(0);
  transition-delay: calc(var(--line-delay) * 0.6s);
}
/* FV sp */

/* FV pc */
@media screen and (min-width: 780px) {
  /* ===================================================
   FVテキスト「画像」：1行ずつふわっと出てくる演出
   =================================================== */

  /* ===================================================
   1. ローディング画面全体のスタイル（#ECCFB0 の背景）
   =================================================== */
  .tu-loading-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: #eccfb0; /* ご指定の背景色 */
    z-index: 9999; /* 何があっても一番手前（最前面）に表示 */
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
    visibility: visible;

    /* 背景が消える時の、じわっと滑らかなフェードアウト（1.2秒かけて消えます） */
    transition:
      opacity 1.2s ease,
      visibility 1.2s ease;
  }

  /* 🌟 背景が消える指示（JSでこのクラスがついた瞬間にフェードアウトします） */
  .tu-loading-overlay.is-hide {
    opacity: 0;
    visibility: hidden;
  }

  /* ===================================================
   2. 「ーまだ知らない、私を見つけにー」のテキストスタイル
   =================================================== */
  .tu-loading-center-text {
    font-family:
      "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
      "Noto Serif JP", serif;
    font-size: 36px; /* カンプに合わせて適宜変更してください */
    color: #ffffff; /* 白文字 */
    letter-spacing: 0.2em;
    white-space: nowrap;
    opacity: 0;

    /* 0.5秒待って、1.5秒かけてフェードイン ➔ 1.5秒維持 ➔ 1秒かけてフェードアウト */
    animation: tuLoadingTextSequence 4s ease forwards 0.5s;
  }

  /* 🌟 テキスト自体のフェードイン・アウトのキーフレーム（合計4秒の流れ） */
  @keyframes tuLoadingTextSequence {
    0% {
      opacity: 0;
      transform: translateY(5px);
      filter: blur(3px);
    } /* 最初はちょっとボケて下にいる */
    35% {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    } /* くっきり中央に表示 */
    75% {
      opacity: 1;
      transform: translateY(0);
      filter: blur(0);
    } /* 表示をキープ */
    100% {
      opacity: 0;
      transform: translateY(-5px);
      filter: blur(3px);
    } /* 上に消えていく */
  }

  /* ===================================================
   FVテキスト「画像」：各行の個別サイズ調整
   =================================================== */

  .tu-loading-fv-text-wrap {
    position: absolute;
    top: 69%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 800px;
    display: flex;
    flex-direction: column;
    align-items: center; /* 💡これで横幅を変えてもすべて綺麗な中央揃えが維持されます */
    z-index: 12;
  }

  /* 🌟 全画像共通ルール */
  .tu-loading-fv-img {
    display: block;
    height: auto; /* アスペクト比（縦横比）を崩さないための必須指定 */
  }

  /* 💡【ここから個別調整】カンプのバランスに合わせて px 数値を自由に変更してください */

  /* 1行目 (SPECIAL EVENT 01) */
  .tu-fv-line-1 {
    width: 225px; /* 横幅の指定 */
    margin-bottom: 18px; /* 2行目までの隙間 */
  }

  /* 2行目 (Discover New Me) */
  .tu-fv-line-2 {
    width: 512px; /* メインなので少し大きめに */
    margin-bottom: 1px; /* 3行目までの隙間 */
  }

  /* 3行目 (with tu-hacci) */
  .tu-fv-line-3 {
    width: 288px; /* ロゴ入りなので少しコンパクトに */
    margin-bottom: 9px; /* 4行目までの隙間 */
  }

  /* 4行目 (at LUCUA 1100) */
  .tu-fv-line-4 {
    width: 293px; /* 最後の締め */
    margin-bottom: 0; /* 最後の行なので余白は0 */
  }

  /* ===================================================
   アニメーション設定（テキスト時と同じロジックを流用）
   =================================================== */

  /* 初期状態：透明で少し下に落ちている */
  .tu-loading-fade-line {
    opacity: 0;
    transform: translateY(0);
    /* cubic-bezierで高級感のある滑らかな動きに */
    transition:
      opacity 1.2s cubic-bezier(0.25, 1, 0.5, 1),
      transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  }

  /* 🌟 アニメーション発火状態（JSによってtu-loading-overlayが消えた瞬間に始まります） */
  .tu-loading-start-animation .tu-loading-fade-line {
    opacity: 1;
    transform: translateY(0);
    /* calc(var(--line-delay) * 0.4s) で、1行目が0.4秒後、2行目が0.8秒後...とリズミカルに表示 */
    transition-delay: calc(var(--line-delay) * 0.6s);
  }
}
/* FV pc */

.tu-op-fixed-bg-section {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  position: relative;
  z-index: 5;
  background-image: url("https://tu-hacci.co.jp/img/contents/2607_lucuaosaka/fv/opening_ceremony.png");
  background-size: calc(800 * (100vw / 800)) auto;
  background-position: center top;
  background-repeat: repeat;
  background-attachment: fixed;
  padding-top: calc(100 * (100vw / 800));
}

/* .tu-op-fixed-bg-section {
  width: 100%;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 5;
  overflow: hidden;
  padding-top: calc(250 * (100vw / 800));
}

.tu-op-fixed-bg-section::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: calc(800 * (100vw / 800));
  height: 100%;
  background-image: url("https://tu-hacci.co.jp/img/contents/2607_lucuaosaka/fv/opening_ceremony.png");
  background-size: 100% auto;
  background-position: center top;
  background-repeat: no-repeat;
  background-attachment: -webkit-scroll-wrapper;
  z-index: -1;
  pointer-events: none;
} */

.tu-op-background-layer {
  display: none;
}

@keyframes tuOpFadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}

/* スクロールするコンテンツレイヤー */
.tu-op-scrolling-content {
  position: relative;
  z-index: 2;
  width: calc(800 * (100vw / 800));
  padding-top: calc(140 * (100vw / 800));
  padding-bottom: calc(100 * (100vw / 800));
  background: linear-gradient(
    to bottom,
    rgba(235, 220, 213, 0) 0%,
    rgba(235, 220, 213, 0.2) 20%,
    rgba(235, 220, 213, 0.6) 25%,
    rgba(235, 220, 213, 1) 40%
  );
}

/* 1. 最初のテキストエリア */
.tu-op-hero-lead {
  font-family:
    "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
    "Noto Serif JP", serif;
  text-align: center;
  color: #291d18;
  margin-bottom: calc(90 * (100vw / 800));
}
.tu-op-lead-line {
  font-size: calc(32 * (100vw / 800));
  line-height: 1.8;
  letter-spacing: 0.16em;
  margin: 0 0 calc(45 * (100vw / 800)) 0;
}
.tu-op-main-title {
  font-size: calc(45 * (100vw / 800));
  line-height: 1.67;
  letter-spacing: 0.16em;
  font-weight: 500;
  margin: 0;
}

.tu-op-logo-inline {
  height: calc(28 * (100vw / 800));
  width: auto;
  vertical-align: -4px;
  margin-right: 2px;
}

.tu-op-main-title img {
  width: calc(198 * (100vw / 800));
  height: auto;
}

/* 指定の「の」を小さくするパーツ */
.tu-op-small-char {
  font-size: calc(32 * (100vw / 800)); /* 24pxに対して一回り小さく調整 */
  display: inline-block;
  margin: 0 calc(-2 * (100vw / 800));
}

.tu-op-big-char {
  font-size: calc(32 * (100vw / 800));
  display: inline-block;
}

/* イベントブロック共通 */
.tu-op-event-block {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: calc(100 * (100vw / 800));
}
.tu-op-event-block:last-child {
  margin-bottom: 0;
}

/* 帯画像枠 */
.tu-op-banner-wrap {
  margin-bottom: calc(35 * (100vw / 800));
  text-align: center;
}

.tu-op-banner-wrap img {
  width: calc(600 * (100vw / 800));
}
.tu-op-banner-img {
  max-width: 100%;
  height: auto;
}

/* 🌟 上側：線1px 906c6c、塗り #fff */
.tu-op-card-type-top {
  width: calc(680 * (100vw / 800));
  background-color: #ffffff;
  border: 2px solid #906c6c;
  padding: calc(66 * (100vw / 800)) calc(40 * (100vw / 800))
    calc(74 * (100vw / 800));
  box-sizing: border-box;
  text-align: center;
  outline: 1px solid #906c6c;
  outline-offset: calc(-12 * (100vw / 800));
  background-clip: padding-box;
}

.tu-op-card-type-bottom {
  width: calc(680 * (100vw / 800));
  background-color: #fff;
  border: 2px solid #906c6c;
  padding: calc(70 * (100vw / 800)) calc(40 * (100vw / 800))
    calc(79 * (100vw / 800));
  box-sizing: border-box;
  text-align: center;
  outline: 1px solid #906c6c;
  outline-offset: calc(-12 * (100vw / 800));
  background-clip: padding-box;
}

/* カード共通タイトル画像枠 */
.tu-op-card-title-wrap {
  margin-bottom: calc(38 * (100vw / 800));
}

.tu-op-card-title-wrap img {
  width: calc(540 * (100vw / 800));
}

.tu-op-card-title-img {
  max-width: 100%;
  height: auto;
}

/* カード内部コンテンツエリア */
.tu-op-card-body {
  width: 100%;
  margin-bottom: calc(52 * (100vw / 800));
}

/* Discover New Me 画像枠 */
.tu-op-discover-wrap {
  margin-bottom: calc(85 * (100vw / 800));
}

.tu-op-discover-wrap img {
  width: calc(408 * (100vw / 800));
}

.tu-op-discover-img {
  max-width: 100%;
  height: auto;
}

/* テーブル風2カラム詳細リスト */
.tu-op-detail-list {
  width: 100%;
  width: calc(460 * (100vw / 800));
  margin: 0 auto;
}
.tu-op-detail-row {
  display: flex;
  margin-bottom: calc(29 * (100vw / 800));
}
.tu-op-detail-row:last-child {
  margin-bottom: 0;
}
.tu-op-detail-list dt {
  width: calc(80 * (100vw / 800));
  height: calc(28 * (100vw / 800));
  padding: calc(5 * (100vw / 800)) 0 calc(4 * (100vw / 800));
  background-color: #bd9e97; /* 支給色 */
  color: #ffffff;
  font-size: calc(20 * (100vw / 800));
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
.tu-op-detail-list dd {
  margin: calc(-1 * (100vw / 800)) 0 0 calc(18 * (100vw / 800));
  font-size: calc(20 * (100vw / 800));
  font-weight: 500;
  line-height: 1.6;
  color: #291d18;
  text-align: left;
  letter-spacing: 0.16em; /* VA 160 */
}

/* セレモニー用ロゴ調整 */
.tu-op-logo-center-wrap {
  margin-bottom: calc(25 * (100vw / 800));
}
.tu-op-logo-center {
  height: calc(35 * (100vw / 800));
  width: auto;
}

/* 場所のテキストブロック */
.tu-op-location-box {
  display: inline-flex;
  align-items: center;
  margin-bottom: calc(58 * (100vw / 800));
}
.tu-op-location-label {
  width: calc(80 * (100vw / 800));
  height: calc(28 * (100vw / 800));
  background-color: #bd9e97;
  color: #ffffff;
  font-size: calc(20 * (100vw / 800));
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: calc(3 * (100vw / 800));
  letter-spacing: 0.05em;
}
.tu-op-location-text {
  font-size: calc(20 * (100vw / 800));
  font-weight: 500;
  color: #291d18;
  margin-left: calc(18 * (100vw / 800));
  letter-spacing: 0.16em;
}

/* ゲストフレックスボックス */
.tu-op-guest-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 526px;
  margin: 0 auto;
}
.tu-op-guest-left {
  flex-shrink: 0;
}

.tu-op-guest-circle {
  display: none;
}

.tu-op-guest-circle {
  width: calc(147 * (100vw / 800));
  height: calc(147 * (100vw / 800));
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tu-op-circle-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tu-op-guest-right {
  margin-left: calc(30 * (100vw / 800));
  text-align: left;
}
.tu-op-guest-text {
  font-family:
    "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
    "Noto Serif JP", serif;
  font-size: calc(26 * (100vw / 800));
  line-height: 1.8;
  color: #291d18;
  margin: 0;
  letter-spacing: 0.16em;
  text-align: left;
  /* 調整用 */
}
.tu-op-guest-highlight {
  font-family:
    "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
    "Noto Serif JP", serif;
  font-size: calc(26 * (100vw / 800));
  color: #291d18;
}

/* ボタン（画像）ホバー共通 */
.tu-op-btn-wrap {
  width: 100%;
  text-align: center;
  margin-bottom: calc(95 * (100vw / 800));
}

.tu-op-btn-wrap:last-child {
  margin-bottom: 0;
}

.tu-op-btn-wrap img {
  width: calc(300 * (100vw / 800));
}

.tu-op-btn-link {
  display: inline-block;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.3s ease;
}

.tu-op-btn-link img {
  width: calc(300 * (100vw / 800));
}

.tu-op-btn-link:hover {
  opacity: 0.9;
}
.tu-op-btn-img {
  width: calc(380 * (100vw / 800));
  height: auto;
  display: block;
}
.tu-op-btn-img-insta {
  width: calc(320 * (100vw / 800));
  height: auto;
  display: block;
}

.tu-op-insta-announce {
  font-family:
    "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: calc(22 * (100vw / 800));
  line-height: 1.8;
  color: #79635e;
  margin: calc(40 * (100vw / 800)) 0 calc(20 * (100vw / 800)) 0;
  letter-spacing: 0.16em;
}
/* ceremony event sp*/

/* ceremony event pc*/
@media screen and (min-width: 780px) {
  /* ===================================================
   OPENING CEREMONY SECTION (800px FIXED & PARALLAX)
   =================================================== */

  /* セクション全体コンテナ（800px固定） */
  .tu-op-fixed-bg-section {
    width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 5;
    background-image: url("https://tu-hacci.co.jp/img/contents/2607_lucuaosaka/fv/opening_ceremony.png");
    background-size: 800px auto; /* 横幅をセクションと同じ800pxに固定 */
    background-position: center top;
    background-repeat: no-repeat;
    background-attachment: fixed; /* 💡これで画像だけが画面にピン留めされます */
    /* スマホ用の上下余白（padding）をPC版（0）にリセット */
    padding-top: 0;
    padding-bottom: 0;
  }

  /* .tu-op-fixed-bg-section::before {
    display: none !important;
  } */

  /* 🌟 背景画像の固定レイヤー＋スクロール連動フェードアウト */
  .tu-op-background-layer {
    display: none;
  }

  @keyframes tuOpFadeOut {
    from {
      opacity: 1;
    }
    to {
      opacity: 0;
    }
  }

  /* スクロールするコンテンツレイヤー */
  .tu-op-scrolling-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding-top: 140px;
    padding-bottom: 100px;
    /* 背景をスムーズに透過させるため、グラデーションで繋ぎます */
    background: linear-gradient(
      to bottom,
      rgba(235, 220, 213, 0) 0%,
      /* 開始位置：完全に透明 */ rgba(235, 220, 213, 0.2) 20%,
      /* 20%の位置でもまだかなり透明 */ rgba(235, 220, 213, 0.6) 25%,
      /* 中間地点でようやく半分くらい */ rgba(235, 220, 213, 1) 40%
        /* 💡60%くらいの位置をかけて完全に不透明にする */
    );
  }

  /* 1. 最初のテキストエリア */
  .tu-op-hero-lead {
    font-family:
      "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
      "Noto Serif JP", serif;
    text-align: center;
    color: #291d18;
    margin-bottom: 90px;
  }
  .tu-op-lead-line {
    font-size: 32px;
    line-height: 1.8; /* 行送り48px ÷ 20px = 2.4 */
    letter-spacing: 0.16em; /* VA 160 */
    margin: 0 0 45px 0;
  }
  .tu-op-main-title {
    font-size: 45px;
    line-height: 1.67; /* 行送り40px ÷ 24px = 1.666... */
    letter-spacing: 0.16em; /* VA 160 */
    font-weight: 500;
    margin: 0;
  }
  /* テキスト中のインラインロゴ調整 */
  .tu-op-logo-inline {
    height: 28px; /* 文字サイズ24pxの高さに自然に馴染むバランス */
    width: auto;
    vertical-align: -4px;
    margin-right: 2px;
  }

  .tu-op-main-title img {
    width: 198px;
    height: auto;
  }

  /* 指定の「の」を小さくするパーツ */
  .tu-op-small-char {
    font-size: 32px; /* 24pxに対して一回り小さく調整 */
    display: inline-block;
    margin: 0 -2px;
  }

  .tu-op-big-char {
    font-size: 32px;
    display: inline-block;
  }

  /* イベントブロック共通 */
  .tu-op-event-block {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 100px;
  }
  .tu-op-event-block:last-child {
    margin-bottom: 0;
  }

  /* 帯画像枠 */
  .tu-op-banner-wrap {
    margin-bottom: 35px;
    text-align: center;
  }

  .tu-op-banner-wrap img {
    width: 600px;
  }
  .tu-op-banner-img {
    max-width: 100%;
    height: auto;
  }

  /* 🌟 上側：線1px 906c6c、塗り #fff */
  .tu-op-card-type-top {
    width: 680px;
    background-color: #ffffff;
    border: 2px solid #906c6c;
    padding: 66px 40px 74px;
    box-sizing: border-box;
    text-align: center;
    outline: 1px solid #906c6c;
    outline-offset: -12px;
    background-clip: padding-box;
  }

  .tu-op-card-type-bottom {
    width: 680px;
    background-color: #fff;
    border: 2px solid #906c6c;
    padding: 70px 40px 79px;
    box-sizing: border-box;
    text-align: center;
    outline: 1px solid #906c6c;
    outline-offset: -12px;
    background-clip: padding-box;
  }

  /* カード共通タイトル画像枠 */
  .tu-op-card-title-wrap {
    margin-bottom: 38px;
  }

  .tu-op-card-title-wrap img {
    width: 540px;
  }

  .tu-op-card-title-img {
    max-width: 100%;
    height: auto;
  }

  /* カード内部コンテンツエリア */
  .tu-op-card-body {
    width: 100%;
    margin-bottom: 52px;
  }

  /* Discover New Me 画像枠 */
  .tu-op-discover-wrap {
    margin-bottom: 85px;
  }

  .tu-op-discover-wrap img {
    width: 408px;
  }

  .tu-op-discover-img {
    max-width: 100%;
    height: auto;
  }

  /* テーブル風2カラム詳細リスト */
  .tu-op-detail-list {
    width: 100%;
    width: 460px;
    margin: 0 auto;
  }
  .tu-op-detail-row {
    display: flex;
    margin-bottom: 29px;
  }
  .tu-op-detail-row:last-child {
    margin-bottom: 0;
  }
  .tu-op-detail-list dt {
    width: 80px;
    height: 28px;
    padding: 7px 0 4px;
    background-color: #bd9e97; /* 支給色 */
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    letter-spacing: 0.05em;
  }
  .tu-op-detail-list dd {
    margin: -1px 0 0 18px;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.6;
    color: #291d18;
    text-align: left;
    letter-spacing: 0.16em; /* VA 160 */
  }

  /* セレモニー用ロゴ調整 */
  .tu-op-logo-center-wrap {
    margin-bottom: 25px;
  }
  .tu-op-logo-center {
    height: 35px;
    width: auto;
  }

  /* 場所のテキストブロック */
  .tu-op-location-box {
    display: inline-flex;
    align-items: center;
    margin-bottom: 58px;
  }
  .tu-op-location-label {
    width: 80px;
    height: 28px;
    background-color: #bd9e97;
    color: #ffffff;
    font-size: 20px;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: calc(3 * (100vw / 800));
    letter-spacing: 0.05em;
  }
  .tu-op-location-text {
    font-size: 20px;
    font-weight: 500;
    color: #291d18;
    margin-left: 18px;
    letter-spacing: 0.16em;
  }

  /* ゲストフレックスボックス */
  .tu-op-guest-flex {
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 526px;
    margin: 0 auto;
  }
  .tu-op-guest-left {
    flex-shrink: 0;
  }

  .tu-op-guest-circle {
    display: none;
  }

  .tu-op-guest-circle {
    width: 147px;
    height: 147px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .tu-op-circle-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  .tu-op-guest-right {
    margin-left: 30px;
    text-align: left;
  }
  .tu-op-guest-text {
    font-family:
      "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
      "Noto Serif JP", serif;
    font-size: 26px;
    line-height: 1.8;
    color: #291d18;
    margin: 0;
    letter-spacing: 0.16em; /* VA 160 */
    text-align: left;
    /* 調整用 */
  }
  .tu-op-guest-highlight {
    font-family:
      "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
      "Noto Serif JP", serif;
    font-size: 26px;
    color: #291d18;
  }

  /* ボタン（画像）ホバー共通 */
  .tu-op-btn-wrap {
    width: 100%;
    text-align: center;
    margin-bottom: 95px;
  }

  .tu-op-btn-wrap:last-child {
    margin-bottom: 0;
  }

  .tu-op-btn-wrap img {
    width: 300px;
  }

  .tu-op-btn-link {
    display: inline-block;
    cursor: pointer;
    transition:
      opacity 0.3s ease,
      transform 0.3s ease;
  }

  .tu-op-btn-link img {
    width: 300px;
  }

  .tu-op-btn-link:hover {
    opacity: 0.9;
  }
  .tu-op-btn-img {
    width: 380px; /* カンプのバランスに合わせて適宜変更してください */
    height: auto;
    display: block;
  }
  .tu-op-btn-img-insta {
    width: 320px; /* インスタボタンは少しコンパクトに */
    height: auto;
    display: block;
  }

  /* インスタ案内テキスト */
  .tu-op-insta-announce {
    font-family:
      "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
      "Hiragino Mincho Pro", "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 22px;
    line-height: 1.8;
    color: #79635e;
    margin: 40px 0 20px 0;
    letter-spacing: 0.16em; /* VA 160 */
  }
}
/* ceremony event pc*/

/* tab sp*/
.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

.tu-tab-section_bg {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  padding: 100px 0 90px;
  background-color: #ebd7ce;
}

.tu-tab-section-container {
  width: calc(764 * (100vw / 800));
  margin: 0 auto;
  background-color: #af8484;
  box-sizing: border-box;
}

.tu-tab-toggle-menu {
  display: flex;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  background-color: #ebd7ce;
  box-sizing: border-box;
}

@font-face {
  font-family: "Ampersand-TheSeasons";
  src: local("the-seasons"), local("TheSeasons"), local("the-seasons-regular");
  unicode-range: U+0026;
}

.tu-tab-trigger-item {
  display: flex;
  align-items: center;
  justify-content: center;
  width: calc(50% - 2px);
  text-align: center;
  padding: calc(35 * (100vw / 800)) calc(10 * (100vw / 800));
  font-family:
    "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-weight: 400;
  font-size: calc(30 * (100vw / 800));
  line-height: 1.4;
  letter-spacing: 0.05em;
  cursor: pointer;
  box-sizing: border-box;
  color: #8b6965;
  background-color: #faf3f0;
  border: 1px solid #906c6c;
  transition: all 0.2s ease;
}

#js-tu-tab-btn-left:not(.tu-active) {
  margin-bottom: calc(10 * (100vw / 800));
  margin-right: calc(10 * (100vw / 800));
}

#js-tu-tab-btn-right:not(.tu-active) {
  margin-bottom: calc(10 * (100vw / 800));
  margin-left: calc(10 * (100vw / 800));
}

.tu-tab-trigger-item.tu-active {
  margin: 0 !important;
  width: calc(50% + 10px);
  background-color: #af8484;
  color: #ffffff;
  font-weight: 400;
  border: none;
}

.tu-tab-content-pane {
  width: 100%;
  padding: calc(30 * (100vw / 800)) calc(45 * (100vw / 800))
    calc(45 * (100vw / 800)) calc(45 * (100vw / 800));
  box-sizing: border-box;
}

.tu-tab-anchor-grid {
  display: block;
  width: 100%;
}

.tu-anchor-btn.tu-btn-active img,
.tu-anchor-btn img {
  background-color: #ffffff;
  box-shadow: 0 4px 8px rgba(112, 78, 78, 0.4);
}

.tu-anchor-btn {
  display: block;
  width: 100%;
  margin-bottom: calc(20 * (100vw / 800));
  box-sizing: border-box;
  text-decoration: none;
  background-color: transparent;
  transition:
    opacity 0.2s ease,
    box-shadow 0.2s ease;
}

.tu-anchor-btn:last-child {
  margin-bottom: 0;
}

.tu-anchor-btn img {
  display: block;
  width: 100%;
  height: auto;
}

.no-click {
  cursor: not-allowed;
}

.tu-anchor-btn.tu-btn-active {
  background-color: #ffffff;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}
.tu-anchor-btn:hover {
  opacity: 0.85;
}

.tu-tab-details-outer-container .tu-details-inner-wrap {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  box-sizing: border-box;
}

.tu-ceremony-content-box {
  padding: calc(163 * (100vw / 800)) 0 calc(105 * (100vw / 800));
  box-sizing: border-box;
  text-align: center;
  background-color: #c3a39c;
}

.tu-ceremony-title-wrap {
  width: 100%;
  margin-bottom: calc(35 * (100vw / 800));
}
.tu-ceremony-title-img {
  display: inline-block;
  width: calc(511 * (100vw / 800));
  height: auto;
}

/* 2. サブタイトル（テキスト） */
.tu-ceremony-sub-title {
  font-family:
    "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: calc(36 * (100vw / 800));
  font-weight: 400;
  color: #ffffff;
  margin: 0 0 calc(45 * (100vw / 800)) 0;
  letter-spacing: 0.1em;
  line-height: 1.61;
}

.tu-ceremony-circle-zone {
  width: 100%;
  margin-bottom: calc(50 * (100vw / 800));
  display: flex;
  justify-content: center;
}

.tu-ceremony-main-circle {
  width: calc(260 * (100vw / 800));
  height: calc(260 * (100vw / 800));
  object-fit: cover;
  border-radius: 50%;
  background-color: #ffffff;
}

.tu-ceremony-circle-zone.tu-hide-circle {
  display: none;
  display: block;
  width: calc(270 * (100vw / 800));
  margin: 0 auto;
}

.tu-ceremony-info-table {
  width: calc(580 * (100vw / 800));
  margin: 0 auto calc(50 * (100vw / 800)) auto;
  text-align: left;
}
.tu-ceremony-info-row {
  display: flex;
  align-items: flex-start;
  margin-bottom: calc(25 * (100vw / 800));
}
.tu-ceremony-info-row:last-child {
  margin-bottom: 0;
}

.tu-ceremony-info-label {
  flex-shrink: 0;
  background-color: #ffffff;
  padding: calc(6 * (100vw / 800)) calc(10 * (100vw / 800));
  box-sizing: border-box;
  text-align: center;
  margin-right: calc(20 * (100vw / 800));
}
.tu-ceremony-info-label span {
  font-size: calc(20 * (100vw / 800));
  font-weight: 500;
  color: #af8484;
  letter-spacing: 0.05em;
  display: inline-block;
}

/* 右側のテキスト内容 */
.tu-ceremony-info-value {
  font-size: calc(20 * (100vw / 800));
  color: #ffffff;
  line-height: 1.6;
  letter-spacing: 0.05em;
  padding-top: calc(3 * (100vw / 800));
}

/* 5. 下部インフォメーション */
.tu-ceremony-foot-notice {
  margin-bottom: calc(35 * (100vw / 800));
}
.tu-ceremony-notice-text {
  font-family:
    "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: calc(22 * (100vw / 800));
  color: #ffffff;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin: 0;
}

/* 6. Instagramリンクボタン */
.tu-ceremony-action-wrap {
  width: calc(300 * (100vw / 800));
  margin: 0 auto;
  /* display: flex;
  justify-content: center; */
}

.tu-ceremony-insta-btn {
  display: inline-block;
  max-width: 340px;
  width: 100%;
  text-decoration: none;
  transition: opacity 0.2s ease;
}
.tu-ceremony-insta-btn img {
  display: block;
  width: 100%;
  height: auto;
}
.tu-ceremony-insta-btn:hover {
  opacity: 0.85;
}
/* tab sp*/

/* tab pc*/
@media screen and (min-width: 780px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }
  /* ==========================================================================
   tu-hacci 告知LP：タブ切り替えセクション専用スタイル
   ※他のセクションと絶対干渉しないよう「tu-」接頭辞で統一しています。
   ========================================================================== */

  .tu-tab-section_bg {
    width: 800px;
    margin: 0 auto;
    padding: 100px 0 90px;
    background-color: #ebd7ce;
  }

  /* --- 1. セクション全体の大枠（固定幅800px） --- */
  .tu-tab-section-container {
    width: 764px;
    margin: 0 auto;
    background-color: #af8484; /* 画像やボタンの隙間から見える背景色（くすみピンクブラウン） */
    box-sizing: border-box;
  }

  /* --- 2. 上部タブメニュー（Flexboxによる横並びと余白制御） --- */
  .tu-tab-toggle-menu {
    display: flex;
    width: 100%;
    padding: 0;
    margin: 0;
    list-style: none;
    background-color: #ebd7ce; /* タブの外側の薄ベージュ地 */
    box-sizing: border-box;
  }

  @font-face {
    font-family: "Ampersand-TheSeasons"; /* 任意の識別名 */
    /* * Webフォント（Adobe Fonts等）やローカルにある the-seasons を呼び出します。
   * ※実際の環境に合わせて src のパスやフォント名は適宜調整してください。
   */
    src:
      local("the-seasons"), local("TheSeasons"), local("the-seasons-regular");

    /* ★ここが魔法のコード：アンパサンド（&）のUnicode「U+0026」だけを指定 */
    unicode-range: U+0026;
  }

  /* タブボタンの共通基本スタイル */
  .tu-tab-trigger-item {
    display: flex;
    align-items: center;
    justify-content: center;
    width: calc(50% - 2px); /* 50% からボタン自身の左右枠線分（計2px）を引く */
    text-align: center;
    padding: 35px 10px;
    font-family:
      "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
      "Hiragino Mincho Pro", "Noto Serif JP", serif;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    cursor: pointer;
    box-sizing: border-box;
    color: #8b6965;
    background-color: #faf3f0; /* 非アクティブ時の背景色（薄ベージュ） */
    border: 1px solid #906c6c; /* ボタンの境界枠線 */
    transition: all 0.2s ease;
  }

  /* * 【重要】非アクティブ（選択されていない側）のみにマージンを適用する設定
 * これによって段崩れ（レイアウト崩れ）を完全に防ぎます。
 */

  /* 左側ボタンが非アクティブのとき（＝右側が選択されているとき）下に10px、右に10px */
  #js-tu-tab-btn-left:not(.tu-active) {
    margin-bottom: 10px;
    margin-right: 10px;
  }

  /* 右側ボタンが非アクティブのとき（＝左側が選択されているとき）下に10px、左に10px */
  #js-tu-tab-btn-right:not(.tu-active) {
    margin-bottom: 10px;
    margin-left: 10px;
  }

  /* * ★アクティブ（現在選択されている側）のタブボタンのスタイル
 */
  .tu-tab-trigger-item.tu-active {
    margin: 0 !important; /* アクティブ時は余白（margin）を強制ゼロにして大枠に密着 */
    width: calc(
      50% + 10px
    ); /* 非アクティブ側がマージンで縮んだ分、幅を「50% + 10px」に広げる */
    background-color: #af8484; /* 親要素の背景色と完全に一体化させる */
    color: #ffffff; /* 文字色を白に */
    font-weight: 400;
    border: none; /* 枠線を消してシームレスに繋げる */
  }

  /* --- 3. 下部コンテンツ・ボタンエリアの大枠 --- */
  .tu-tab-content-pane {
    width: 100%;
    padding: 30px 45px 45px 45px; /* 上・左右・下に適切なマージンを確保 */
    box-sizing: border-box;
  }

  /* --- 4. png画像ボタンを縦一列に並べるための設定 --- */
  .tu-tab-anchor-grid {
    display: block;
    width: 100%;
  }

  .tu-anchor-btn.tu-btn-active img,
  .tu-anchor-btn img {
    background-color: #ffffff; /* 画像の後ろを純白にする（透過PNG用） */

    /* * デザイナーさんからいただいたシャドウ数値をimgに適用
   * 角度90度・距離4px ➔ 下(Y軸)に4px / サイズ8px ➔ ぼかし8px
   */
    box-shadow: 0 4px 8px rgba(112, 78, 78, 0.4);
  }

  /* 各画像メニューボタン（リンクの親要素） */
  .tu-anchor-btn {
    display: block;
    width: 100%;
    margin-bottom: 20px; /* ボタン同士の上下の余白（ここで後ろのピンクブラウン背景が見えます） */
    box-sizing: border-box;
    text-decoration: none;
    background-color: transparent; /* 基本は背景透明 */
    transition:
      opacity 0.2s ease,
      box-shadow 0.2s ease;
  }

  /* 一番最後のボタンだけは下の余白をリセット */
  .tu-anchor-btn:last-child {
    margin-bottom: 0;
  }

  /* 枠内に収まるようpng画像を100%幅でフィットさせる */
  .tu-anchor-btn img {
    display: block;
    width: 100%;
    height: auto;
  }

  .no-click {
    cursor: not-allowed; /* マウスカーソルを禁止マーク（バツ）にする */
  }

  /* * ★アクティブ状態（デザインにおける白背景のボタン）のスタイル
 */
  .tu-anchor-btn.tu-btn-active {
    background-color: #ffffff; /* 背景を純白にする（png画像が透過していてもここが白になります） */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08); /* 視認性を高めるための微細なシャドウ */
  }

  /* マウスホバー・スマホタップ時の微弱な透明度変化（クリックできることを伝える演出） */
  .tu-anchor-btn:hover {
    opacity: 0.85;
  }
  /* タブ機能 */

  /* ==========================================================================
   tu-hacci 告知LP：セレモニーイベント詳細セクション
   ========================================================================== */

  .tu-tab-details-outer-container .tu-details-inner-wrap {
    width: 800px; /* ★タブコンテナと同じ幅（または800px）にする */
    margin: 0 auto; /* 中央寄せ */
    box-sizing: border-box;
  }

  /* コンテンツ全体の大枠（背景色 ebd7ce の上に綺麗に載るように余白を設計） */
  .tu-ceremony-content-box {
    /* width: 800px;
    margin: 0 auto; */
    padding: 163px 0 105px;
    box-sizing: border-box;
    text-align: center;
    background-color: #c3a39c;
  }

  /* 1. タイトル画像 */
  .tu-ceremony-title-wrap {
    width: 100%;
    margin-bottom: 35px;
  }
  .tu-ceremony-title-img {
    display: inline-block;
    width: 511px;
    height: auto;
  }

  /* 2. サブタイトル（テキスト） */
  .tu-ceremony-sub-title {
    font-family:
      "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
      "Hiragino Mincho Pro", "Noto Serif JP", serif;
    font-size: 36px;
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 45px 0;
    letter-spacing: 0.1em;
    line-height: 1.61;
  }

  /* 3. 中央の丸画像エリア */
  .tu-ceremony-circle-zone {
    width: 100%;
    margin-bottom: 50px;
    display: flex;
    justify-content: center;
  }
  /* 円形をCSS側できれいに維持するマスク設定（四角い写真が来ても丸に切り抜かれます） */
  .tu-ceremony-main-circle {
    width: 260px;
    height: 260px;
    object-fit: cover;
    border-radius: 50%;
    background-color: #ffffff; /* 画像がない時の仮の白い丸 */
  }

  /* ★画像が支給されず非表示にしたい場合は、HTML側でこのクラスを追加するか、ここの display を none にしてください */
  .tu-ceremony-circle-zone.tu-hide-circle {
    display: none;
    display: block;
    width: 270px;
    margin: 0 auto;
  }

  /* 4. イベント詳細情報（場所・内容） */
  .tu-ceremony-info-table {
    width: 580px;
    margin: 0 auto 50px auto;
    text-align: left;
  }
  .tu-ceremony-info-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 25px;
  }
  .tu-ceremony-info-row:last-child {
    margin-bottom: 0;
  }

  /* 見出しの白い四角（場所 / イベント内容） */
  .tu-ceremony-info-label {
    flex-shrink: 0;
    /* width: 110px; */
    background-color: #ffffff;
    padding: 6px 10px;
    box-sizing: border-box;
    text-align: center;
    margin-right: 20px;
  }
  .tu-ceremony-info-label span {
    font-size: 20px;
    font-weight: 500;
    color: #af8484; /* 文字色は背景のピンクブラウン系に馴染む色 */
    letter-spacing: 0.05em;
    display: inline-block;
  }

  /* 右側のテキスト内容 */
  .tu-ceremony-info-value {
    font-size: 20px;
    color: #ffffff;
    line-height: 1.6;
    letter-spacing: 0.05em;
    padding-top: 3px;
  }

  /* 5. 下部インフォメーション */
  .tu-ceremony-foot-notice {
    margin-bottom: 35px;
  }
  .tu-ceremony-notice-text {
    font-family:
      "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
      "Hiragino Mincho Pro", "Noto Serif JP", serif;
    font-size: 22px;
    color: #ffffff;
    line-height: 1.7;
    letter-spacing: 0.08em;
    margin: 0;
  }

  /* 6. Instagramリンクボタン */
  .tu-ceremony-action-wrap {
    width: 300px;
    margin: 0 auto;
    /* display: flex;
    justify-content: center; */
  }

  .tu-ceremony-insta-btn {
    display: inline-block;
    max-width: 340px; /* カンプのバランスに合わせたボタンサイズ */
    width: 100%;
    text-decoration: none;
    transition: opacity 0.2s ease;
  }
  .tu-ceremony-insta-btn img {
    display: block;
    width: 100%;
    height: auto;
  }
  .tu-ceremony-insta-btn:hover {
    opacity: 0.85;
  }
}
/* tab pc*/

/* discription sp*/
.sp_only {
  display: block;
}

.pc_only {
  display: none;
}

.tu-desc-content-box {
  width: 100%;
  padding: calc(147 * (100vw / 800)) 0 0;
  box-sizing: border-box;
  text-align: center;
  background-color: #c3a39c;
}

.tu-desc-main-title,
.tu-desc-catch-img,
.tu-desc-visual-wrap,
.tu-desc-oval-separator,
.tu-desc-ornament-line {
  width: 100%;
  margin-bottom: calc(40 * (100vw / 800));
}

.tu-desc-content-box img {
  display: inline-block;
  height: auto;
}

.tu-desc-main-title {
  margin-bottom: calc(61 * (100vw / 800));
}

.tu-desc-main-title img {
  width: calc(397 * (100vw / 800));
}

.tu-desc-catch-img {
  margin-bottom: calc(68 * (100vw / 800));
}

.tu-desc-catch-img img {
  width: calc(502 * (100vw / 800));
}

.tu-desc-visual-wrap img {
  width: calc(699 * (100vw / 800));
}

.tu-desc-lead-text {
  margin-bottom: calc(68 * (100vw / 800));
}
.tu-desc-paragraph-em {
  font-size: calc(22 * (100vw / 800));
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.08em;
  font-weight: 500;
  margin: 0 0 calc(53 * (100vw / 800)) 0;
}
.tu-desc-paragraph {
  font-size: calc(22 * (100vw / 800));
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0;
}

.tu-desc-bg-container {
  width: 100%;
  background: url("https://tu-hacci.co.jp/img/contents/2607_lucuaosaka/opening_ceremony_bg.png")
    no-repeat top center;
  background-size: 100% 100%;
  padding: calc(90 * (100vw / 800)) 0 calc(100 * (100vw / 800)) 0;
  box-sizing: border-box;
  text-align: center;
}

.tu-desc-journey-banner {
  width: 100%;
  padding-top: calc(95 * (100vw / 800));
  margin: 0 auto calc(69 * (100vw / 800));
  box-sizing: border-box;
}
.tu-desc-journey-banner img {
  width: calc(610 * (100vw / 800));
  height: auto;
}

.tu-desc-cards-wrap {
  padding: 0 calc(40 * (100vw / 800));
  box-sizing: border-box;
}

.tu-desc-card-item {
  width: 100%;
  background-color: #f7efeb;
  border-radius: calc(50 * (100vw / 800));
  padding: calc(50 * (100vw / 800)) calc(40 * (100vw / 800))
    calc(45 * (100vw / 800)) calc(40 * (100vw / 800));
  box-sizing: border-box;
  margin-bottom: calc(61 * (100vw / 800));
  position: relative;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
}
.tu-desc-card-item:last-child {
  margin-bottom: 0;
}

.tu-desc-card-pin {
  width: 100%;
  margin-bottom: calc(19 * (100vw / 800));
  display: flex;
  justify-content: center;
}
.tu-desc-card-pin img {
  width: calc(40 * (100vw / 800));
  height: auto;
}

.tu-desc-card-badge {
  position: absolute;
  left: 10px;
  top: 42px;
  width: auto;
  margin-bottom: 0;
}

.tu-desc-card-badge img {
  display: block;
  width: calc(36 * (100vw / 800));
  height: auto;
}

.tu-desc-card-title {
  font-size: calc(45 * (100vw / 800));
  font-weight: 500;
  color: #111111;
  margin: 0 0 calc(31 * (100vw / 800)) 0;
  letter-spacing: 0.05em;
  text-shadow: 0 2px 4px rgba(121, 99, 94, 0.47);
}

.tu-desc-card-line img {
  width: calc(350 * (100vw / 800));
  height: calc(1 * (100vw / 800));
  margin: 0 auto calc(39 * (100vw / 800));
}

/* テキストスタイル */
.tu-desc-card-intro,
.tu-desc-card-body-text,
.tu-desc-card-outro {
  font-size: calc(22 * (100vw / 800));
  color: #291d18;
  line-height: 1.75;
  letter-spacing: 0.04em;
  margin: 0;
}
.tu-desc-card-intro {
  margin-bottom: calc(25 * (100vw / 800));
}
.tu-desc-card-outro {
  margin-top: calc(25 * (100vw / 800));
}

.tu-desc-card-white-box {
  background-color: #ffffff;
  border-radius: calc(20 * (100vw / 800));
  padding: calc(42 * (100vw / 800)) calc(59 * (100vw / 800))
    calc(39 * (100vw / 800));
  box-sizing: border-box;
  text-align: left;
  max-width: 580px;
  margin: 0 auto;
  box-shadow: 0 6px 9px 0 rgba(143, 117, 104, 0.16);
}
.tu-desc-sub-step {
  display: flex;
  align-items: flex-start;
  margin-bottom: calc(16 * (100vw / 800));
}
.tu-desc-sub-step:last-child {
  margin-bottom: 0;
}
.tu-desc-step-label {
  flex-shrink: 0;
  background-color: #aa8982;
  color: #ffffff;
  font-size: calc(20 * (100vw / 800));
  font-weight: 400;
  padding: calc(8 * (100vw / 800)) calc(8 * (100vw / 800))
    calc(7 * (100vw / 800));
  border-radius: calc(8 * (100vw / 800));
  margin-right: calc(17 * (100vw / 800));
  margin-top: calc(2 * (100vw / 800));
}
.tu-desc-step-desc {
  font-size: calc(22 * (100vw / 800));
  color: #291d18;
  line-height: 1.5;
  margin: 0;
  font-weight: 500;
}

.tu-desc-passport-media-zone {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: calc(35 * (100vw / 800));
  gap: calc(20 * (100vw / 800));
}
.tu-desc-passport-img-box {
  width: calc(300 * (100vw / 800));
}
.tu-desc-passport-img-box img {
  width: 100%;
  height: auto;
  border-radius: 50%;
}
.tu-desc-passport-text-box {
  width: calc(321 * (100vw / 800));
  margin-left: calc(-50 * (100vw / 800));
}
.tu-desc-passport-text-box img {
  width: 100%;
  height: auto;
}
.tu-desc-thumb-note {
  font-size: calc(18 * (100vw / 800));
  color: #291d18;
  margin: calc(15 * (100vw / 800)) 0 0 0;
}

.tu-desc-card-caution {
  font-size: calc(18 * (100vw / 800));
  color: #291d18;
  font-weight: 400;
  line-height: 1.5;
  margin: calc(20 * (100vw / 800)) 0 0 0;
}
.tu-desc-card-sub-caption {
  font-size: calc(24 * (100vw / 800));
  color: #111111;
  font-weight: 400;
  letter-spacing: 0.05em;
  margin: 0 0 calc(30 * (100vw / 800)) 0;
}

.tu-desc-footer-notice {
  margin-top: calc(78 * (100vw / 800));
  padding: 0 calc(45 * (100vw / 800));
  box-sizing: border-box;
}
.tu-desc-reserve-text {
  font-size: calc(22 * (100vw / 800));
  color: #ffffff;
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin: 0 0 calc(64 * (100vw / 800)) 0;
}
.tu-desc-action-button {
  width: calc(375 * (100vw / 800));
  margin: 0 auto;
}
.tu-desc-action-button a {
  display: block;
  transition: opacity 0.2s ease;
}
.tu-desc-action-button a:hover {
  opacity: 0.85;
}
.tu-desc-action-button img {
  width: 100%;
  height: auto;
}
/* discription sp*/

/* discription pc*/
@media screen and (min-width: 780px) {
  .sp_only {
    display: block;
  }

  .pc_only {
    display: none;
  }

  /* ==========================================================================
   tu-hacci 告知LP：イベント内容詳細（右側タブ）セクション
   ========================================================================== */

  /* コンテンツ全体の大枠 */
  .tu-desc-content-box {
    width: 100%;
    padding: 147px 0 0;
    box-sizing: border-box;
    text-align: center;
    background-color: #c3a39c;
  }

  /* 各画像ラッパー共通 */
  .tu-desc-main-title,
  .tu-desc-catch-img,
  .tu-desc-visual-wrap,
  .tu-desc-oval-separator,
  .tu-desc-ornament-line {
    width: 100%;
    margin-bottom: 40px;
  }

  .tu-desc-content-box img {
    display: inline-block;
    /* max-width: 100%; 一旦外す*/
    height: auto;
  }

  .tu-desc-main-title {
    margin-bottom: 61px;
  }

  .tu-desc-main-title img {
    width: 397px;
  }

  .tu-desc-catch-img {
    margin-bottom: 68px;
  }

  .tu-desc-catch-img img {
    width: 502px;
  }

  .tu-desc-visual-wrap img {
    width: 699px;
  }

  /* 3. リード文テキスト */
  .tu-desc-lead-text {
    margin-bottom: 68px;
  }
  .tu-desc-paragraph-em {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.08em;
    font-weight: 500;
    margin: 0 0 53px 0;
  }
  .tu-desc-paragraph {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin: 0;
  }

  /* 楕円の背景画像を敷くエリア */
  .tu-desc-bg-container {
    width: 100%;
    /* 添付のOPENING_CEREMONY_bgを背景に指定（上部中央配置、横幅いっぱいにフィット） */
    background: url("https://tu-hacci.co.jp/img/contents/2607_lucuaosaka/opening_ceremony_bg.png")
      no-repeat top center;
    background-size: 100% 100%;
    padding: 90px 0 100px 0; /* カンプの楕円のカーブ位置と下部リボンに合わせた上下余白 */
    box-sizing: border-box;
    text-align: center;
  }

  /* 一体型ジャーニーバナー画像 */
  .tu-desc-journey-banner {
    width: 100%;
    padding-top: 95px;
    margin: 0 auto 69px;
    box-sizing: border-box;
  }
  .tu-desc-journey-banner img {
    width: 610px;
    height: auto;
  }

  /* カードを包むラッパー */
  .tu-desc-cards-wrap {
    padding: 0 40px;
    box-sizing: border-box;
  }

  /* 白い角丸カード共通 */
  .tu-desc-card-item {
    width: 100%;
    background-color: #f7efeb;
    border-radius: 50px;
    /* 上下左右のパディング。左側にバッジが被るので、左側の余白（padding-left）を少し広めに確保しておきます */
    padding: 50px 40px 45px 40px;
    box-sizing: border-box;
    margin-bottom: 61px;
    position: relative; /* ★絶対配置の基準にする */
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  }
  /* 最後のカードの下部マージンは不要 */
  .tu-desc-card-item:last-child {
    margin-bottom: 0;
  }

  /* ピンアイコンの配置 */
  .tu-desc-card-pin {
    width: 100%;
    margin-bottom: 19px;
    display: flex;
    justify-content: center;
  }
  .tu-desc-card-pin img {
    width: 40px; /* ピンのサイズ感調整 */
    height: auto;
  }

  /* 2. 左側のバッジ（Destination 01〜05の縦型画像） */
  .tu-desc-card-badge {
    position: absolute; /* ★絶対配置にする */
    left: 10px; /* カードの左端から少し内側に配置（カンプに合わせて微調整してください） */
    top: 42px; /* 上下中央に配置するための起点 */
    width: auto;
    margin-bottom: 0; /* absolute化するのでマージンはリセット */
  }

  .tu-desc-card-badge img {
    display: block;
    width: 36px; /* カンプの縦長バッジのサイズ感に合わせて調整してください */
    height: auto;
  }

  /* 各カードの見出し（Destinationタイトル） */
  .tu-desc-card-title {
    font-size: 45px;
    font-weight: 500;
    color: #111111;
    margin: 0 0 31px 0;
    letter-spacing: 0.05em;
    text-shadow: 0 2px 4px rgba(121, 99, 94, 0.47);
  }

  .tu-desc-card-line img {
    width: 350px;
    height: 1px;
    margin: 0 auto 39px;
  }

  /* テキストスタイル */
  .tu-desc-card-intro,
  .tu-desc-card-body-text,
  .tu-desc-card-outro {
    font-size: 22px;
    color: #291d18;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin: 0;
  }
  .tu-desc-card-intro {
    margin-bottom: 25px;
  }
  .tu-desc-card-outro {
    margin-top: 25px;
  }

  /* -----------------------------------------
   Destination 01 特有：グレーの内側ステップボックス
   ----------------------------------------- */
  .tu-desc-card-white-box {
    background-color: #ffffff; /* 薄いグレーベージュ背景 */
    border-radius: 20px;
    padding: 42px 59px 39px;
    box-sizing: border-box;
    text-align: left;
    max-width: 580px;
    margin: 0 auto;
    box-shadow: 0 6px 9px 0 rgba(143, 117, 104, 0.16);
  }
  .tu-desc-sub-step {
    display: flex;
    align-items: flex-start;
    margin-bottom: 16px;
  }
  .tu-desc-sub-step:last-child {
    margin-bottom: 0;
  }
  .tu-desc-step-label {
    flex-shrink: 0;
    background-color: #aa8982; /* パスポートに合わせたブラウンピンク */
    color: #ffffff;
    font-size: 20px;
    font-weight: 400;
    padding: 8px 8px 7px;
    border-radius: 8px;
    margin-right: 17px;
    margin-top: 2px;
  }
  .tu-desc-step-desc {
    font-size: 22px;
    color: #291d18;
    line-height: 1.5;
    margin: 0;
    font-weight: 500;
  }

  /* パスポート画像 ＆ 筆記体画像の並列エリア */
  .tu-desc-passport-media-zone {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 35px;
    gap: 20px; /* 画像同士の隙間 */
  }
  .tu-desc-passport-img-box {
    width: 300px; /* パスポート丸画像の幅設定 */
  }
  .tu-desc-passport-img-box img {
    width: 100%;
    height: auto;
    border-radius: 50%; /* 完全な正円 */
  }
  .tu-desc-passport-text-box {
    width: 321px; /* 筆記体英語画像の幅設定 */
    margin-left: -50px;
  }
  .tu-desc-passport-text-box img {
    width: 100%;
    height: auto;
  }
  .tu-desc-thumb-note {
    font-size: 18px;
    color: #291d18;
    margin: 15px 0 0 0;
  }

  /* -----------------------------------------
   Destination 03, 04 特有のスタイル
   ----------------------------------------- */
  .tu-desc-card-caution {
    font-size: 18px;
    color: #291d18; /* 注意書き用の少し目立つ色、または#777777に変更可 */
    font-weight: 400;
    line-height: 1.5;
    margin: 20px 0 0 0;
  }
  .tu-desc-card-sub-caption {
    font-size: 24px;
    color: #111111;
    font-weight: 400;
    letter-spacing: 0.05em;
    margin: 0 0 30px 0;
  }

  /* -----------------------------------------
   下部事前予約エリア
   ----------------------------------------- */
  .tu-desc-footer-notice {
    margin-top: 78px;
    padding: 0 45px;
    box-sizing: border-box;
  }
  .tu-desc-reserve-text {
    font-size: 22px;
    color: #ffffff;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin: 0 0 64px 0;
  }
  .tu-desc-action-button {
    width: 375px;
    margin: 0 auto;
  }
  .tu-desc-action-button a {
    display: block;
    transition: opacity 0.2s ease;
  }
  .tu-desc-action-button a:hover {
    opacity: 0.85;
  }
  .tu-desc-action-button img {
    width: 100%;
    height: auto;
  }
}
/* discription pc*/

/* pre-order sp*/
.tu-po-container {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  padding: calc(109 * (100vw / 800)) 0 calc(103 * (100vw / 800)) 0;
  box-sizing: border-box;
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
  text-align: center;
  color: #79635e;
  background: url("https://tu-hacci.co.jp/img/contents/2607_lucuaosaka/bg_b99.png")
    no-repeat top center;
}

.tu-po-header {
  margin-bottom: calc(35 * (100vw / 800));
}
.tu-po-header-img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: inline-block;
}

.tu-po-header img {
  width: calc(335 * (100vw / 800));
}

.tu-po-lead-text {
  font-size: calc(22 * (100vw / 800));
  line-height: 1.8;
  letter-spacing: 0.06em;
  margin-bottom: calc(145 * (100vw / 800));
}
.tu-po-lead-sub {
  margin-top: calc(25 * (100vw / 800));
}

.tu-po-hero-area {
  width: 100%;
  position: relative;
  margin-bottom: calc(76 * (100vw / 800));
}
.tu-po-hero-bg {
  width: 100%;
  display: block;
}

.tu-po-badge-wrap {
  position: absolute;
  top: calc(-92 * (100vw / 800));
  right: calc(62 * (100vw / 800));
  z-index: 10;
  width: calc(224 * (100vw / 800));
}

.tu-po-badge-img {
  width: 100%;
  height: auto;
  display: block;
}

.tu-po-badge-wrap img {
  width: calc(224 * (100vw / 800));
}

.tu-po-feature-flex {
  width: 100%;
  padding: 0 50px;
  box-sizing: border-box;
  margin-bottom: calc(76 * (100vw / 800));
  display: table;
}
.tu-po-feature-left,
.tu-po-feature-right {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.tu-po-feature-left {
  text-align: left;
  padding-right: calc(20 * (100vw / 800));
}

.tu-po-feature-text-img img {
  width: calc(287 * (100vw / 800));
}

.tu-po-feature-right {
  text-align: right;
  padding-left: calc(20 * (100vw / 800));
}

.tu-po-oval-frame {
  display: inline-block;
}
.tu-po-oval-img {
  width: calc(403 * (100vw / 800));
  height: 100%;
  object-fit: cover;
}

.tu-po-card {
  width: calc(700 * (100vw / 800));
  margin: 0 auto calc(52 * (100vw / 800)) auto;
  background-color: #ffffff;
  border-radius: calc(50 * (100vw / 800));
  padding: calc(40 * (100vw / 800)) calc(30 * (100vw / 800));
  box-sizing: border-box;
  box-shadow: 0 6px 9px 0 rgba(143, 117, 104, 0.16);
}
.tu-po-card-title {
  font-family:
    "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
    "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: calc(32 * (100vw / 800));
  font-weight: 400;
  color: #765f4b;
  letter-spacing: 0.1em;
  margin-bottom: calc(23 * (100vw / 800));
  border-bottom: 1px solid #765f4b;
  padding-bottom: calc(10 * (100vw / 800));
  display: inline-block;
}

.tu-po-card-title_txt01 {
  margin-top: calc(49 * (100vw / 800));
  margin-bottom: calc(22 * (100vw / 800));
}

/* カード内部の2カラム */
.tu-po-card-content {
  display: table;
  width: 100%;
}
.tu-po-card-left,
.tu-po-card-right {
  display: table-cell;
  vertical-align: middle;
  width: 50%;
}
.tu-po-card-left {
  text-align: center;
  padding-right: calc(20 * (100vw / 800));
}

.tu-po-card-left img {
  width: calc(199 * (100vw / 800));
}

.tu-po-product-img {
  max-width: 100%;
  height: auto;
}
.tu-po-card-right {
  text-align: center;
  padding-left: calc(10 * (100vw / 800));
}
.tu-po-product-name {
  font-family:
    "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
    "Noto Serif JP", serif;
  font-size: calc(24 * (100vw / 800));
  color: #765f4b;
  line-height: 1.6;
  font-weight: 400;
  margin: 0 0 calc(15 * (100vw / 800)) 0;
}

.tu-po-product-sub_name {
  font-size: calc(20 * (100vw / 800));
}

.tu-po-color-dots {
  font-size: calc(20 * (100vw / 800));
  font-family:
    "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
    "Noto Serif JP", serif;
  color: #765f4b;
  margin-bottom: calc(20 * (100vw / 800));
  display: flex;
  justify-content: center;
  align-items: center;
}
.tu-po-dots-img {
  height: calc(16 * (100vw / 800));
  width: auto;
  margin-left: calc(5 * (100vw / 800));
}

.tu-po-color-dots img {
  width: calc(78 * (100vw / 800));
}

/* 価格情報 */
.tu-po-price-info {
  font-size: calc(15 * (100vw / 800));
  line-height: 1.6;
}
.tu-po-price-title {
  color: #765f4b;
  font-size: calc(18 * (100vw / 800));
  letter-spacing: 0.05em;
  margin-bottom: calc(5 * (100vw / 800));
}
.tu-po-price-info span {
  font-size: calc(16 * (100vw / 800));
  margin-left: calc(4 * (100vw / 800));
}
.tu-po-price-note {
  font-size: calc(16 * (100vw / 800));
  margin-top: calc(10 * (100vw / 800));
  color: #765f4b;
}

.tu-po-footer-note {
  color: #765f4b;
  font-size: calc(18 * (100vw / 800));
  letter-spacing: 0.04em;
}
/* pre-order sp*/

/* pre-order pc*/
@media screen and (min-width: 780px) {
  /* ===================================================
   PRE-ORDER SECTION (横幅800px固定・独立設計)
   =================================================== */

  /* 全体のコンテナ */
  .tu-po-container {
    width: 800px;
    margin: 0 auto;
    padding: 109px 0 103px 0;
    box-sizing: border-box;
    font-family:
      "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
      "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
      sans-serif;
    text-align: center;
    color: #79635e; /* 全体の基本文字色 */
    background: url("https://tu-hacci.co.jp/img/contents/2607_lucuaosaka/bg_b99.png")
      no-repeat top center;
  }

  /* 1. タイトルエリア */
  .tu-po-header {
    margin-bottom: 35px;
  }
  .tu-po-header-img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline-block;
  }

  .tu-po-header img {
    width: 335px;
  }

  /* 2. リード文テキスト */
  .tu-po-lead-text {
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.06em;
    margin-bottom: 145px;
  }
  .tu-po-lead-sub {
    margin-top: 25px;
  }

  /* 3. メインビジュアルエリア（重ね合わせの肝） */
  .tu-po-hero-area {
    width: 100%;
    position: relative; /* バッジの絶対配置の基準にする */
    margin-bottom: 76px;
  }
  .tu-po-hero-bg {
    width: 100%;
    display: block;
  }
  /* 予約特典ありバッジの配置 */
  .tu-po-badge-wrap {
    position: absolute;
    top: -92px; /* カンプのように画像の上端に少しハミ出すように配置 */
    right: 62px; /* 右側の位置微調整 */
    z-index: 10; /* 必ず画像より上に来るように設定 */
    width: 224px; /* バッジのサイズ（カンプに合わせて調整してください） */
  }

  .tu-po-badge-img {
    width: 100%;
    height: auto;
    display: block;
  }

  .tu-po-badge-wrap img {
    width: 224px;
  }

  /* 4. 商品特徴エリア（左右2カラム） */
  .tu-po-feature-flex {
    width: 100%;
    padding: 0 50px;
    box-sizing: border-box;
    margin-bottom: 76px;
    display: table; /* 確実に横並び＆干渉を防ぐためtableレイアウトを採用 */
  }
  .tu-po-feature-left,
  .tu-po-feature-right {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
  }
  .tu-po-feature-left {
    text-align: left;
    padding-right: 20px;
  }

  .tu-po-feature-text-img img {
    width: 287px;
  }

  .tu-po-feature-right {
    text-align: right;
    padding-left: 20px;
  }
  /* 楕円のフレームをCSSで表現（角丸50%で綺麗な丸〜楕円形にします） */
  .tu-po-oval-frame {
    display: inline-block;
  }
  .tu-po-oval-img {
    width: 403px;
    height: 100%;
    object-fit: cover; /* 枠線に合わせて綺麗に画像をトリミング配置 */
  }

  /* 5. PICK UP ITEM エリア（白背景のカード） */
  .tu-po-card {
    width: 700px; /* 800pxの中で左右に余白を持たせるため700pxに設定 */
    margin: 0 auto 52px auto;
    background-color: #ffffff;
    border-radius: 50px;
    padding: 40px 30px;
    box-sizing: border-box;
    /* 前のステップで算出したドロップシャドウを適用 */
    box-shadow: 0 6px 9px 0 rgba(143, 117, 104, 0.16);
  }
  .tu-po-card-title {
    font-family:
      "the-seasons", "游明朝", "Yu Mincho", "YuMincho", "Hiragino Mincho ProN",
      "Hiragino Mincho Pro", "Noto Serif JP", serif;
    font-size: 32px;
    font-weight: 400;
    color: #765f4b;
    letter-spacing: 0.1em;
    margin-bottom: 23px;
    border-bottom: 1px solid #765f4b;
    padding-bottom: 10px;
    display: inline-block;
  }

  .tu-po-card-title_txt01 {
    margin-top: 49px;
    margin-bottom: 22px;
  }

  /* カード内部の2カラム */
  .tu-po-card-content {
    display: table;
    width: 100%;
  }
  .tu-po-card-left,
  .tu-po-card-right {
    display: table-cell;
    vertical-align: middle;
    width: 50%;
  }
  .tu-po-card-left {
    text-align: center;
    padding-right: 20px;
  }

  .tu-po-card-left img {
    width: 199px;
  }

  .tu-po-product-img {
    max-width: 100%;
    height: auto;
  }
  .tu-po-card-right {
    text-align: center;
    padding-left: 10px;
  }
  .tu-po-product-name {
    font-family:
      "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
      "Noto Serif JP", serif;
    font-size: 24px;
    color: #765f4b;
    line-height: 1.6;
    font-weight: 400;
    margin: 0 0 15px 0;
  }

  .tu-po-product-sub_name {
    font-size: 20px;
  }

  /* カラーの●画像配置 */
  .tu-po-color-dots {
    font-size: 20px;
    font-family:
      "游明朝", "Yu Mincho", YuMincho, "Hiragino Mincho Pro", serif,
      "Noto Serif JP", serif;
    color: #765f4b;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tu-po-dots-img {
    height: 16px; /* 丸のサイズ感に合わせて微調整してください */
    width: auto;
    margin-left: 5px;
  }

  .tu-po-color-dots img {
    width: 78px;
  }

  /* 価格情報 */
  .tu-po-price-info {
    font-size: 15px;
    line-height: 1.6;
  }
  .tu-po-price-title {
    color: #765f4b;
    font-size: 18px;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
  }
  .tu-po-price-info span {
    font-size: 16px;
    margin-left: 4px;
  }
  .tu-po-price-note {
    font-size: 16px;
    margin-top: 10px;
    color: #765f4b;
  }

  /* 6. 注釈テキスト */
  .tu-po-footer-note {
    color: #765f4b;
    font-size: 18px;
    letter-spacing: 0.04em;
  }
}
/* pre-order pc*/

/* special present sp*/
.tu-sp-container {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  padding: calc(106 * (100vw / 800)) 0 calc(91 * (100vw / 800)) 0;
  background-color: #f7ece9;
  box-sizing: border-box;
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
  text-align: center;
  color: #79635e;
}

.tu-sp-header {
  margin-bottom: calc(30 * (100vw / 800));
}
.tu-sp-header-img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: inline-block;
}

.tu-sp-header img {
  width: calc(488 * (100vw / 800));
}

.tu-sp-sub-title {
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
  font-size: calc(22 * (100vw / 800));
  font-weight: 500;
  letter-spacing: 0.12em;
  margin: 0 0 calc(45 * (100vw / 800)) 0;
  color: #906c6c;
}

.tu-sp-image-area {
  width: 100%;
  margin-bottom: calc(72 * (100vw / 800));
  display: flex;
  justify-content: center;
}

.tu-sp-arch-frame {
  width: calc(550 * (100vw / 800));
  height: auto;
  overflow: hidden;
}

.tu-sp-present-img {
  width: 100%;
  height: auto;
  display: block;
}

.tu-sp-lead-text {
  font-size: calc(22 * (100vw / 800));
  line-height: 1.85;
  letter-spacing: 0.06em;
  margin-bottom: calc(72 * (100vw / 800));
  color: #906c6c;
}

.tu-sp-notice-area {
  width: calc(500 * (100vw / 800));
  margin: 0 auto;
  text-align: left;
  font-size: calc(18 * (100vw / 800));
  line-height: 1.7;
  letter-spacing: 0.04em;
  color: #906c6c;
}
.tu-sp-notice-area p {
  margin: 0 0 calc(4 * (100vw / 800)) 0;
}
.tu-sp-notice-area p:last-child {
  margin-bottom: 0;
}

/* special present sp*/

/* special present pc*/
@media screen and (min-width: 780px) {
  /* ===================================================
   SPECIAL PRESENT SECTION (横幅800px固定・独立設計)
   =================================================== */

  /* 全体のコンテナ */
  .tu-sp-container {
    width: 800px;
    margin: 0 auto;
    padding: 106px 0 91px 0;
    background-color: #f7ece9; /* カンプの淡いピンクベージュ系の背景色 */
    box-sizing: border-box;
    font-family:
      "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
      "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
      sans-serif;
    text-align: center;
    color: #79635e; /* 全体の基本文字色 */
  }

  /* 1. タイトルエリア */
  .tu-sp-header {
    margin-bottom: 30px;
  }
  .tu-sp-header-img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline-block;
  }

  .tu-sp-header img {
    width: 488px;
  }

  /* 2. サブ見出し（Instagramフォロー＆LINE追加） */
  .tu-sp-sub-title {
    font-family:
      "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
      "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
      sans-serif;
    font-size: 22px;
    font-weight: 500;
    letter-spacing: 0.12em;
    margin: 0 0 45px 0;
    color: #906c6c;
  }

  /* 3. プレゼントイメージ画像エリア */
  .tu-sp-image-area {
    width: 100%;
    margin-bottom: 72px;
    display: flex;
    justify-content: center;
  }
  /* 画像の上部をカンプ通りの美しいアーチ状（ドーム型）にする枠組み */
  .tu-sp-arch-frame {
    width: 550px; /* カンプのバランスに合わせて横幅を調整 */
    height: auto;
    overflow: hidden;
    /* 左上と右上だけを大きく丸めることで、完璧なアーチ型を作ります */
  }

  .tu-sp-present-img {
    width: 100%;
    height: auto;
    display: block;
  }

  /* 4. メインリード文テキスト */
  .tu-sp-lead-text {
    font-size: 22px;
    line-height: 1.85;
    letter-spacing: 0.06em;
    margin-bottom: 72px;
    color: #906c6c;
  }

  /* 5. 下部注釈テキストエリア */
  .tu-sp-notice-area {
    width: 500px; /* 横幅を少し絞って綺麗に中央配置 */
    margin: 0 auto;
    text-align: left; /* 注釈は左揃えが見やすいため */
    font-size: 18px;
    line-height: 1.7;
    letter-spacing: 0.04em;
    color: #906c6c; /* 本文より少しだけ不透明度を下げた上品なカラー */
  }
  .tu-sp-notice-area p {
    margin: 0 0 4px 0;
    /* text-indent: -1em;
  padding-left: 1em; */
  }
  .tu-sp-notice-area p:last-child {
    margin-bottom: 0;
  }
}
/* special present pc*/

/* fitting&display sp*/
.tu-fd-container {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  padding: calc(70 * (100vw / 800)) 0 calc(55 * (100vw / 800)) 0;
  background-color: #f7efeb;
  box-sizing: border-box;
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
  text-align: center;
  color: #333333;
}

.tu-fd-header {
  margin-bottom: calc(50 * (100vw / 800));
}
.tu-fd-header-img {
  width: auto;
  height: auto;
  display: inline-block;
}

.tu-fd-header img {
  width: calc(501 * (100vw / 800));
}

.tu-fd-grid {
  width: calc(720 * (100vw / 800));
  margin: 0 auto;
  text-align: left;
  font-size: 0;
}

.tu-fd-item {
  width: calc(220 * (100vw / 800));
  display: inline-block;
  vertical-align: top;
  margin-right: calc(30 * (100vw / 800));
  margin-bottom: calc(45 * (100vw / 800));
  font-size: calc(14 * (100vw / 800));
  text-align: center;
  box-sizing: border-box;
}

.tu-fd-item:nth-child(3n) {
  margin-right: 0;
}

.tu-fd-item:nth-child(-n + 3) {
  margin-bottom: calc(88 * (100vw / 800));
}

.tu-fd-img-wrap {
  width: 100%;
  height: calc(285 * (100vw / 800));
  margin-bottom: calc(10 * (100vw / 800));
}
.tu-fd-product-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}

.tu-fd-relative {
  position: relative;
}

.tu-fd-badge-img {
  position: absolute;
  top: calc(-31 * (100vw / 800));
  right: calc(-20 * (100vw / 800));
  width: calc(78 * (100vw / 800));
  height: auto;
  z-index: 10;
}

.tu-fd-item-name {
  font-size: calc(18 * (100vw / 800));
  line-height: 1.5;
  color: #333333;
  font-weight: 500;
  margin: 0 0 calc(19 * (100vw / 800)) 0;
  min-height: calc(42 * (100vw / 800));
}

.tu-fd-colors {
  display: block;
  height: calc(16 * (100vw / 800));
  margin: 0 auto;
}
.tu-fd-color-dots {
  height: calc(16 * (100vw / 800));
  width: auto;
  display: inline-block;
  vertical-align: middle;
}

.tu-fd-colors_01 {
  width: calc(56 * (100vw / 800));
}

.tu-fd-colors_02 {
  width: calc(36 * (100vw / 800));
}

.tu-fd-colors_03 {
  width: calc(56 * (100vw / 800));
}

.tu-fd-colors_04 {
  width: calc(56 * (100vw / 800));
}

.tu-fd-colors_05 {
  width: calc(56 * (100vw / 800));
}

.tu-fd-colors_06 {
  width: calc(77.31 * (100vw / 800));
}

/* fitting&display sp*/

/* fitting&display pc*/
@media screen and (min-width: 780px) {
  /* ===================================================
   FITTING & DISPLAY SECTION (横幅800px固定・独立設計)
   =================================================== */

  /* 全体のコンテナ */
  .tu-fd-container {
    width: 800px;
    margin: 0 auto;
    padding: 70px 0 55px 0;
    background-color: #f7efeb; /* カンプの非常に淡いアイボリー・ベージュ系の背景色 */
    box-sizing: border-box;
    font-family:
      "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
      "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
      sans-serif;
    text-align: center;
    color: #333333; /* 商品名テキスト用の基本色 */
  }

  /* 1. タイトルエリア */
  .tu-fd-header {
    margin-bottom: 50px;
  }
  .tu-fd-header-img {
    width: auto;
    height: auto;
    display: inline-block;
  }

  .tu-fd-header img {
    width: 501px;
  }

  /* 2. 商品グリッドエリア（3カラム配置） */
  .tu-fd-grid {
    width: 720px; /* 左右に等しく余白を作るため、中で少し絞る（(800-720)/2 = 左右40pxずつの余白） */
    margin: 0 auto;
    text-align: left; /* 各アイテムを左詰めのインラインブロックで並べるため */
    font-size: 0; /* インラインブロックの隙間（バグ）を完全に無くすプロ仕様の対策 */
  }

  /* 各商品アイテムの枠（1つあたり横幅220px） */
  .tu-fd-item {
    width: 220px;
    display: inline-block;
    vertical-align: top;
    margin-right: 30px; /* 横の間隔 */
    margin-bottom: 45px; /* 縦の間隔（1行目と2行目の間） */
    font-size: 14px; /* 親のfont-size:0をここで復元 */
    text-align: center; /* アイテム内は中央揃え */
    box-sizing: border-box;
  }

  /* 3列目（商品3と商品6）だけは右マージンを0にしてぴったり右端に揃える */
  .tu-fd-item:nth-child(3n) {
    margin-right: 0;
  }

  .tu-fd-item:nth-child(-n + 3) {
    margin-bottom: 88px;
  }

  /* 商品画像を囲む共通の枠 */
  .tu-fd-img-wrap {
    width: 100%;
    height: 285px; /* カンプの縦横比に合わせて画像サイズを統一（必要に応じて微調整してください） */
    margin-bottom: 10px;
    /* overflow: hidden; */
  }
  .tu-fd-product-img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* 画像が縦長・横長でも枠内に綺麗に収まるようにトリミング表示 */
    display: block;
    cursor: pointer;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }

  /* 🌟 商品6番目の重ね合わせ用設定 */
  .tu-fd-relative {
    position: relative; /* バッジ配置の基準点にする */
  }

  /* 先行予約の丸バッジ画像の絶対配置 */
  .tu-fd-badge-img {
    position: absolute;
    top: -31px; /* 画像の右上端から少しはみ出す絶妙なポジション */
    right: -20px; /* カンプのレイアウトに合わせて数値を調整してください */
    width: 78px; /* バッジのサイズ（カンプに合わせて微調整してください） */
    height: auto;
    z-index: 10; /* 商品画像より確実に前面に配置 */
  }

  /* 商品名テキスト */
  .tu-fd-item-name {
    font-size: 18px;
    line-height: 1.5;
    color: #333333; /* 落ち着いたダークブラウン系 */
    font-weight: 500;
    margin: 0 0 19px 0;
    min-height: 42px; /* 1行の商品と2行の商品で高さがズレて下の●の位置がガタガタになるのを防ぐ設定 */
  }

  /* カラーバリエーション（●の画像が入るエリア） */
  .tu-fd-colors {
    display: block;
    height: 16px; /* 縦方向のスペース確保 */
    margin: 0 auto;
  }
  .tu-fd-color-dots {
    height: 16px; /* カンプの●のサイズ感に合わせて調整（1かたまりのpng） */
    width: auto;
    display: inline-block;
    vertical-align: middle;
  }

  .tu-fd-colors_01 {
    width: 56px;
  }

  .tu-fd-colors_02 {
    width: 36px;
  }

  .tu-fd-colors_03 {
    width: 56px;
  }

  .tu-fd-colors_04 {
    width: 56px;
  }

  .tu-fd-colors_05 {
    width: 56px;
  }

  .tu-fd-colors_06 {
    width: 77.31px;
  }
}
/* fitting&display pc*/

/* event location sp*/
.tu-loc-container {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  padding: calc(66 * (100vw / 800)) 0 calc(63 * (100vw / 800)) 0;
  background-color: #bd9e97;
  box-sizing: border-box;
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
  text-align: center;
  color: #79635e;
}

/* タイトルエリア */
.tu-loc-header {
  margin-top: calc(58 * (100vw / 800));
  margin-bottom: calc(74 * (100vw / 800));
}
.tu-loc-header-img {
  width: auto;
  height: auto;
  max-width: 100%;
  display: inline-block;
}

.tu-loc-header img {
  width: calc(504 * (100vw / 800));
}

.tu-loc-content-card {
  width: calc(700 * (100vw / 800));
  margin: 0 auto;
  background-color: #f7efeb;
  padding: calc(50 * (100vw / 800)) calc(40 * (100vw / 800))
    calc(87 * (100vw / 800));
  box-sizing: border-box;
  box-shadow: 0 calc(6 * (100vw / 800)) calc(12 * (100vw / 800))
    rgba(121, 99, 94, 0.12);
}

/* サブタイトル画像（Discover New Me~） */
.tu-loc-sub-title-wrap {
  margin-bottom: calc(68 * (100vw / 800));
}
.tu-loc-sub-title-img {
  max-width: 100%;
  height: auto;
}

.tu-loc-sub-title-wrap img {
  width: calc(419 * (100vw / 800));
}

/* 3. イベント開催情報（テーブル風2カラムレイアウト） */
.tu-loc-info-table {
  width: calc(520 * (100vw / 800)); /* 中央に綺麗に収めるために少し横幅を絞る */
  margin: 0 auto 40px auto;
  text-align: left;
}
.tu-loc-info-row {
  display: flex;
  width: 100%;
  padding: 18px 0;
}
.tu-loc-info-row:last-child {
  border-bottom: none; /* 最後の項目は線を消す */
}
/* 左側：見出し（日程・場所など） */
.tu-loc-info-label {
  display: table-cell;
  width: calc(80 * (100vw / 800));
  height: calc(34 * (100vw / 800));
  font-size: calc(20 * (100vw / 800));
  font-weight: 500;
  vertical-align: middle;
  letter-spacing: 0.1em;
  color: #ffffff;
  background-color: #af8484;
  text-align: center;
  padding: calc(7 * (100vw / 800)) calc(10 * (100vw / 800))
    calc(6 * (100vw / 800));
  margin-right: calc(22 * (100vw / 800));
}
/* 右側：具体的な中身テキスト */
.tu-loc-info-value {
  display: table-cell;
  font-size: calc(20 * (100vw / 800));
  font-weight: 500;
  line-height: 1.65;
  vertical-align: top;
  letter-spacing: 0.13em;
}

/* 時間の横の「予約入場」「フリー入場」の文字用プチ装飾（お好みで調整してください） */
.tu-loc-tag,
.tu-loc-tag-free {
  font-size: calc(20 * (100vw / 800));
  margin-left: calc(10 * (100vw / 800));
  display: inline-block;
  color: #5d4237;
}

/* 4. 地図画像エリア */
.tu-loc-map-wrap {
  margin: 0 auto calc(87 * (100vw / 800)) auto;
}
.tu-loc-map-img {
  display: block;
}

.tu-loc-map-wrap img {
  width: calc(642 * (100vw / 800));
}

/* 5. 下部のご案内・解説テキスト */
.tu-loc-guide-text {
  font-size: calc(22 * (100vw / 800));
  line-height: 1.8;
  letter-spacing: 0.05em;
  margin-bottom: calc(76 * (100vw / 800));
}
.tu-loc-guide-text p {
  margin: 0 0 calc(57 * (100vw / 800)) 0;
  color: #5d4237;
}
.tu-loc-guide-text p:last-child {
  margin-bottom: 0;
}
/* 「無料です」を目立たせる強調設定 */
.tu-loc-guide-highlight {
  font-size: calc(22 * (100vw / 800));
  color: #5d4237; /* アクセントカラーのピンクブラウン */
}
/* Instagramアカウントへのリンク調整 */
.tu-loc-guide-contact {
  font-size: calc(22 * (100vw / 800));
  color: #5d4237;
}
.tu-loc-instagram-link {
  color: #1948f5;
  text-decoration: none;
  font-weight: 500;
}
.tu-loc-instagram-link:hover {
  color: #aa8783;
}

/* 6. 事前予約ボタンエリア */
.tu-loc-btn-wrap {
  width: 100%;
  text-align: center;
}
.tu-loc-btn-wrap img {
  width: calc(375 * (100vw / 800));
}

.tu-loc-btn-link {
  display: inline-block;
  width: calc(375 * (100vw / 800));
  max-width: 100%;
  cursor: pointer;
  transition:
    transform 0.3s ease,
    opacity 0.3s ease;
}
.tu-loc-btn-img {
  width: 100%;
  height: auto;
  display: block;
}
/* ボタンにマウスを乗せた時（ホバー）に滑らかに少し大きく＆不透明にするEC風の演出 */
.tu-fd-product-img:hover,
.tu-loc-btn-link:hover {
  opacity: 0.9;
}
/* event location sp*/

/* event location pc*/
@media screen and (min-width: 780px) {
  /* ===================================================
   EVENT LOCATION SECTION (横幅800px固定・独立設計)
   =================================================== */

  /* 1. 全体のコンテナ（一番下の背景色は指定の #bd9e97） */
  .tu-loc-container {
    width: 800px;
    margin: 0 auto;
    padding: 66px 0 63px 0;
    background-color: #bd9e97; /* 指定の一番下の背景色 */
    box-sizing: border-box;
    font-family:
      "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
      "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
      sans-serif;
    text-align: center;
    color: #79635e; /* 基本となるブラウン系の文字色 */
  }

  /* タイトルエリア */
  .tu-loc-header {
    margin-top: 58px;
    margin-bottom: 74px;
  }
  .tu-loc-header-img {
    width: auto;
    height: auto;
    max-width: 100%;
    display: inline-block;
  }

  .tu-loc-header img {
    width: 504px;
  }

  /* 2. 内部のコンテンツカード（横幅700px固定 / 背景色 #f7efeb） */
  .tu-loc-content-card {
    width: 700px;
    margin: 0 auto;
    background-color: #f7efeb; /* 指定のコンテンツ箇所背景色 */
    padding: 50px 40px 87px;
    box-sizing: border-box;
    /* 以前のステップで計算した美しいドロップシャドウをここにも薄く適用して立体感を出します */
    box-shadow: 0 6px 12px rgba(121, 99, 94, 0.12);
  }

  /* サブタイトル画像（Discover New Me~） */
  .tu-loc-sub-title-wrap {
    margin-bottom: 68px;
  }
  .tu-loc-sub-title-img {
    max-width: 100%;
    height: auto;
  }

  .tu-loc-sub-title-wrap img {
    width: 419px;
  }

  /* 3. イベント開催情報（テーブル風2カラムレイアウト） */
  .tu-loc-info-table {
    width: 520px; /* 中央に綺麗に収めるために少し横幅を絞る */
    margin: 0 auto 40px auto;
    text-align: left;
  }
  .tu-loc-info-row {
    display: flex;
    width: 100%;
    padding: 18px 0;
  }
  .tu-loc-info-row:last-child {
    border-bottom: none; /* 最後の項目は線を消す */
  }
  /* 左側：見出し（日程・場所など） */
  .tu-loc-info-label {
    display: table-cell;
    width: 80px;
    height: 26px;
    font-size: 20px;
    font-weight: 500;
    vertical-align: middle;
    letter-spacing: 0.1em;
    color: #ffffff;
    background-color: #af8484;
    text-align: center;
    padding: 4px 10px 6px;
    margin-right: 22px;
  }
  /* 右側：具体的な中身テキスト */
  .tu-loc-info-value {
    display: table-cell;
    font-size: 20px;
    font-weight: 500;
    line-height: 1.65;
    vertical-align: top;
    letter-spacing: 0.13em;
  }

  /* 時間の横の「予約入場」「フリー入場」の文字用プチ装飾（お好みで調整してください） */
  .tu-loc-tag,
  .tu-loc-tag-free {
    font-size: 20px;
    margin-left: 10px;
    display: inline-block;
    color: #5d4237;
  }

  /* 4. 地図画像エリア */
  .tu-loc-map-wrap {
    margin: 0 auto 87px auto;
  }
  .tu-loc-map-img {
    display: block;
  }

  .tu-loc-map-wrap img {
    width: 642px;
  }

  /* 5. 下部のご案内・解説テキスト */
  .tu-loc-guide-text {
    font-size: 22px;
    line-height: 1.8;
    letter-spacing: 0.05em;
    margin-bottom: 76px;
  }
  .tu-loc-guide-text p {
    margin: 0 0 57px 0;
    color: #5d4237;
  }
  .tu-loc-guide-text p:last-child {
    margin-bottom: 0;
  }
  /* 「無料です」を目立たせる強調設定 */
  .tu-loc-guide-highlight {
    font-size: 22px;
    color: #5d4237; /* アクセントカラーのピンクブラウン */
  }
  /* Instagramアカウントへのリンク調整 */
  .tu-loc-guide-contact {
    font-size: 22px;
    color: #5d4237;
  }
  .tu-loc-instagram-link {
    color: #1948f5 !important;
    text-decoration: none;
    font-weight: 500;
  }
  .tu-loc-instagram-link:hover {
    color: #aa8783;
  }

  /* 6. 事前予約ボタンエリア */
  .tu-loc-btn-wrap {
    width: 100%;
    text-align: center;
  }
  .tu-loc-btn-wrap img {
    width: 375px;
  }

  .tu-loc-btn-link {
    display: inline-block;
    width: 375px; /* カンプのボタンのサイズに合わせて調整してください */
    max-width: 100%;
    cursor: pointer;
    transition:
      transform 0.3s ease,
      opacity 0.3s ease;
  }
  .tu-loc-btn-img {
    width: 100%;
    height: auto;
    display: block;
  }
  /* ボタンにマウスを乗せた時（ホバー）に滑らかに少し大きく＆不透明にするEC風の演出 */
  .tu-fd-product-img:hover,
  .tu-loc-btn-link:hover {
    opacity: 0.9;
  }
}
/* event location pc*/

/* q&a sp*/
/* --- Q&A全体コンテナ（800px固定） --- */
.tu-qa-outer {
  width: calc(800 * (100vw / 800));
  margin: 0 auto;
  padding: 0 0 calc(74 * (100vw / 800));
  background-color: #bd9e97; /* 指定の背景色 */
  font-family:
    "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
    "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
    sans-serif;
  box-sizing: border-box;
}

.tu-qa-header {
  text-align: center;
  margin-bottom: calc(64 * (100vw / 800));
}
.tu-qa-header-img {
  width: auto;
  max-width: 100%;
}

.tu-qa-header img {
  width: calc(200 * (100vw / 800));
}

.tu-qa-inner-card {
  width: calc(700 * (100vw / 800));
  margin: 0 auto;
  background-color: #f7efeb;
  padding: calc(77 * (100vw / 800)) 0;
  box-sizing: border-box;
}

.tu-qa-item {
  margin: 0 auto calc(20 * (100vw / 800));
  width: calc(600 * (100vw / 800));
}
.tu-qa-item:last-child {
  margin-bottom: 0;
}

.tu-qa-item summary::-webkit-details-marker {
  display: none;
}
.tu-qa-question-bar {
  display: flex;
  list-style: none;
  cursor: pointer;
  background-color: #af8484;
  padding: calc(18 * (100vw / 800)) calc(20 * (100vw / 800));
  align-items: center;
  justify-content: space-between;
  box-sizing: border-box;
}

.tu-qa-q-content {
  display: flex;
  align-items: flex-start;
}
.tu-qa-icon-img {
  height: calc(31 * (100vw / 800));
  width: auto;
  flex-shrink: 0;
  margin-top: calc(4 * (100vw / 800));
}

.tu-qa-icon-img_a {
  height: calc(26 * (100vw / 800));
  width: auto;
  margin-top: calc(5 * (100vw / 800));
}

.tu-qa-question-text {
  color: #ffffff;
  font-size: calc(24 * (100vw / 800));
  font-weight: 400;
  margin-left: calc(15 * (100vw / 800));
  text-align: left;
  line-height: 1.67;
  letter-spacing: 0.16em;
}

.tu-qa-arrow {
  position: relative;
  width: calc(12 * (100vw / 800));
  height: calc(12 * (100vw / 800));
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(135deg);
  transition: transform 0.3s ease;
  margin-right: calc(5 * (100vw / 800));
}

.tu-qa-item[open] .tu-qa-arrow {
  transform: rotate(-45deg);
  margin-top: calc(8 * (100vw / 800));
}

.tu-qa-answer-body {
  padding: calc(25 * (100vw / 800)) 0 0 calc(20 * (100vw / 800));
  display: flex;
  align-items: flex-start;
}

.tu-qa-answer-text {
  color: #291d18;
  font-size: calc(24 * (100vw / 800));
  line-height: 1.8;
  margin: 0 0 0 calc(15 * (100vw / 800));
  text-align: left;
  letter-spacing: 0.16em;
}
/* q&a sp*/

/* q&a pc*/
@media screen and (min-width: 780px) {
  /* --- Q&A全体コンテナ（800px固定） --- */
  .tu-qa-outer {
    width: 800px;
    margin: 0 auto;
    padding: 0 0 74px;
    background-color: #bd9e97; /* 指定の背景色 */
    font-family:
      "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "Noto Sans JP",
      "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo", "メイリオ",
      "ＭＳ Ｐゴシック", "MS P Gothic", Osaka, Arial, Helvetica, Verdana,
      sans-serif;
    box-sizing: border-box;
  }

  /* ヘッダー画像 */
  .tu-qa-header {
    text-align: center;
    margin-bottom: 64px;
  }
  .tu-qa-header-img {
    width: auto;
    max-width: 100%;
  }

  .tu-qa-header img {
    width: 200px;
  }

  /* コンテンツカード（700px） */
  .tu-qa-inner-card {
    width: 700px;
    margin: 0 auto;
    background-color: #f7efeb; /* カード背景色 */
    padding: 77px 0;
    box-sizing: border-box;
  }

  /* 各質問アイテム（ブロックごとの間隔） */
  .tu-qa-item {
    margin: 0 auto 20px; /* 質問ブロック同士の余白 */
    width: 600px;
  }
  .tu-qa-item:last-child {
    margin-bottom: 0;
  }

  /* ブラウザ標準の矢印を消す */
  .tu-qa-item summary::-webkit-details-marker {
    display: none;
  }
  .tu-qa-question-bar {
    display: flex;
    list-style: none;
    cursor: pointer;
    background-color: #af8484; /* カンプのピンクブラウン色 */
    padding: 18px 20px;
    align-items: center;
    justify-content: space-between;
    box-sizing: border-box;
  }

  /* Qアイコンとテキストの並び */
  .tu-qa-q-content {
    display: flex;
    align-items: flex-start;
  }
  .tu-qa-icon-img {
    height: 31px; /* カンプに合わせて調整 */
    width: auto;
    flex-shrink: 0;
    margin-top: 4px;
  }

  .tu-qa-icon-img_a {
    height: 26px; /* カンプに合わせて調整 */
    width: auto;
    margin-top: 5px;
  }

  .tu-qa-question-text {
    color: #ffffff;
    font-size: 24px;
    font-weight: 400;
    margin-left: 15px;
    text-align: left;
    line-height: 1.67;
    letter-spacing: 0.16em; /* VA 160 */
  }

  /* 🌟 右側の開閉矢印（擬似要素で自作） */
  .tu-qa-arrow {
    position: relative;
    width: 12px;
    height: 12px;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(135deg); /* 初期状態：下向き */
    transition: transform 0.3s ease;
    margin-right: 5px;
  }
  /* 開いた時の矢印の向き */
  .tu-qa-item[open] .tu-qa-arrow {
    transform: rotate(-45deg); /* 上向き */
    margin-top: 8px; /* 位置微調整 */
  }

  /* 回答エリア */
  .tu-qa-answer-body {
    padding: 25px 0 0 20px;
    display: flex;
    align-items: flex-start;
  }

  /* 回答テキスト */
  .tu-qa-answer-text {
    color: #291d18; /* カンプの文字色 */
    font-size: 24px;
    line-height: 1.8;
    margin: 0 0 0 15px;
    text-align: left;
    letter-spacing: 0.16em; /* VA 160 */
  }
}
/* q&a pc*/

/* map */
#popup__2602 .map_modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgb(0, 0, 0);
  background-color: rgba(0, 0, 0, 0.4);
}

#popup__2602 .modal-content {
  background-color: #fff;
  padding: 0;
  border: none;
  width: 100%;
  height: fit-content;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

#popup__2602 .close {
  color: #fff;
  font-size: calc(70 * (100vw / 800));
  font-weight: bold;
  position: absolute;
  right: 0;
  top: calc(-90 * (100vw / 800));
  z-index: 1;
}

#popup__2602 .close:hover,
#popup__2602 .close:focus {
  color: black;
  text-decoration: none;
  cursor: pointer;
}

#popup__2602 .map_img_btn {
  width: calc(680 * (100vw / 800));
  max-width: 680px;
  height: calc(280 * (100vw / 800));
  max-height: 280px;
  margin: calc(100 * (100vw / 800)) auto 0;
}

#nagoya_map_Img,
#shinjuku_map_Img {
  cursor: pointer;
}

#container {
  width: 100%;
  /* height: 100vh; */
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

#container .container_icon {
  width: calc(110 * (100vw / 800));
  max-width: 110px;
  height: calc(110 * (100vw / 800));
  max-height: 110px;
  position: absolute;
  right: calc(30 * (100vw / 800));
  top: calc(30 * (100vw / 800));
}

#container img {
  max-width: 100%;
  max-height: 100%;
  cursor: grab;
}

#container img:active {
  cursor: grabbing;
}

#container .zoom_btn {
  position: absolute;
  bottom: calc(40 * (100vw / 800));
  right: calc(40 * (100vw / 800));
  width: calc(60 * (100vw / 800));
  max-width: 60px;
  height: calc(140 * (100vw / 800));
  max-height: 140px;
}

#zoom-in {
  right: 0;
  top: 0;
}

#zoom-out {
  right: 0;
  bottom: 0;
}

#zoom-in,
#zoom-out {
  display: grid;
  place-content: center;
  position: absolute;
  padding: 0;
  width: calc(60 * (100vw / 800));
  max-width: 60px;
  height: calc(60 * (100vw / 800));
  max-height: 60px;
  line-height: calc(60 * (100vw / 800));
  text-align: center;
  background-color: #333;
  border: none;
  cursor: pointer;
  font-size: calc(26 * (100vw / 800));
  color: #fff;
  font-weight: bold;
}

/* event_location */

/* LP */

/* アニメーションテンプレート */
.smooth {
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}

.smooth.tate {
  clip-path: inset(0 0 100% 0);
}

.smooth._delay {
  transition-delay: 0.5s;
}

.smooth.is-active {
  clip-path: inset(0);
  transition-delay: 0.5s;
}

.fade {
  opacity: 0;
}

.fade._delay {
  animation-delay: 1.5s;
  opacity: 0;
}

.fade.is-active {
  animation-name: fade_anim;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes fade_anim {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

.fade._zoom {
  transform: scale(1.2);
}

.fade._zoom.is-active {
  animation-name: zoom_anim;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes zoom_anim {
  from {
    opacity: 0;
    transform: scale(1.2);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

.fade._blur.is-active {
  animation-name: blur_anim;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}

@keyframes blur_anim {
  from {
    opacity: 0;
    filter: blur(5px);
  }

  to {
    opacity: 1;
    filter: blur(0);
  }
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* アニメーションテンプレート */

/* PCサイズ */
