@charset "UTF-8";

/* ==========================================================================
   Reset / Base
   ========================================================================== */
*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  --pad: 24px;
  --center-w: 390px;
}

html,
body {
  margin: 0;
  padding: 0;
}

html {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

html::-webkit-scrollbar {
  display: none;
}

body {
  font-family: "Noto Sans JP", "Hiragino Maru Gothic ProN", "Yu Gothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #ffffff;
  background: radial-gradient(circle farthest-corner at top right, #fffa77 0%, #e9b1d9 100%);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

button {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.side-line {
  width: 100%;
  height: auto;
  margin: 4px 0;
}

/* ==========================================================================
   Layout
   左右カラムは position:fixed でビューポートに固定。
   中央カラムは通常のドキュメントフローに置き、html を自然スクロールさせる
   ことで、画面内のどこでスクロールしても中央カラムが動くようにしている
   （JSによるスクロール制御は不要）。
   ========================================================================== */
.l-site {
  position: relative;
}

/* 全体を囲む白枠（装飾のみ・操作を奪わない） */
.l-card-frame {
  position: fixed;
  top: var(--pad);
  left: var(--pad);
  right: var(--pad);
  bottom: var(--pad);
  border: 14px solid #ffffff;
  pointer-events: none;
  z-index: 50;
}

.l-card-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 3px solid #c2c2c2;
}
/*
.l-card-frame::before{
  content: "";
  width: 100%;
  height: 100%;
  background-color: #334F6B;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
*/
/* ---- l-card-frameより前面に出すdeco ----
   .l-side は overflow:hidden のため、枠からはみ出す位置のdecoを見せるには使えない。
   .l-side と同じ寸法・座標系（%指定がそのまま揃う）のフレームを overflow なしで用意し、
   z-index を l-card-frame（50）より上げて前面に配置する */
.deco-overflow {
  position: fixed;
  top: var(--pad);
  bottom: var(--pad);
  width: calc((100% - var(--center-w)) / 2 - var(--pad));
  z-index: 60;
  pointer-events: none;
}

.deco-overflow-left {
  left: var(--pad);
}

.deco-overflow-right {
  right: var(--pad);
}

/* ---- 左右カラム：共通（PC時はビューポートに固定） ---- */
.l-side {
  position: fixed;
  top: var(--pad);
  bottom: var(--pad);
  width: calc((100% - var(--center-w)) / 2 - var(--pad));
  background-color: #334F6B;
  overflow: hidden;
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
}

.l-side-left {
  left: var(--pad);
}

.l-side-right {
  right: var(--pad);
}

.l-side-left__inner,
.l-side-right__inner {
  position: relative;
  width: 100%;
  max-width: 380px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  text-align: center;
}

.l-side-left__inner {
  gap: 0;
}

.l-side-right__inner {
  gap: 24px;
}

/* ---- 中央カラム：通常フローに配置し、html のスクロールに任せる ---- */
.l-center {
  width: 100%;
  max-width: var(--center-w);
  min-height: calc(100vh - (var(--pad) * 2));
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 100;
}

/* ==========================================================================
   左カラム
   ========================================================================== */
.deco-planet {
  position: absolute;
  top: 8%;
  right: 10%;
  max-width: 188px;
  width: 38%;
  min-width: 128px;
}

.side-logo {
  width: 100%;
  max-width: 300px;
  margin-bottom: 20px;
}

.share-block {
  text-align: center;
}

.share-heading {
  margin: 0 0 16px;
  font-size: 24px;
  font-weight: 900;
  color: #FFFA77;
  letter-spacing: 0.05em;
}

.share-list {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.share-list a {
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.share-list a:hover {
  opacity: 0.7;
  transform: scale(1.05);
}

.share-list img {
  width: 40px;
  height: 40px;
}

.deco-bottom-left {
  position: absolute;
  bottom: 8%;
  right: 15%;
  display: flex;
  align-items: flex-end;
  gap: 12px;
  max-width: 186px;
  width: 38%;
  min-width: 128px;
}

.deco-stars {
  max-width: 110px;
  width: 59%;
  min-width: 75px;
}

.deco-ufo {
  max-width: 64px;
  width: 34%;
  min-width: 43px;
}
.deco-title {
  position: absolute;
  top: 10%;
  left: 7%;
  max-width: 185px;
  min-width: 124px;
  width: 37%;
}

/* 左カラムの風船（fv_item07〜10）。位置は menu_left.png を参照 */
.deco-balloon01 {
  position: absolute;
  top: -1%;
  left: 40%;
  max-width: 139px;
  min-width: 96px;
  width: 26.5%;
}

.deco-balloon02 {
  position: absolute;
  top: 47%;
  left: 1%;
  max-width: 143px;
  min-width: 98px;
  width: 27.2%;
}

.deco-balloon03 {
  position: absolute;
  bottom: 2%;
  left: 23%;
  max-width: 159px;
  min-width: 110px;
  width: 30.3%;
}

.deco-balloon04 {
  position: absolute;
  bottom: 5%;
  left: 4%;
  max-width: 128px;
  min-width: 88px;
  width: 24.4%;
}

/* ==========================================================================
   中央カラム（KV）
   ========================================================================== */
.c-kv {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  overflow: hidden;
}

.c-kv__img {
  width: 100%;
  height: auto;
  display: block;
}

/* スクロールしても常に同じ位置に留まるよう、ビューポートに固定した
   中央カラム幅（最大390px）のコンテナを介して配置する */
.c-menu-fixed {
  display: none;
  position: fixed;
  top: 0;
  left: 50%;
  width: 100%;
  max-width: var(--center-w);
  transform: translateX(-50%);
  z-index: 120;
  pointer-events: none;
}

.c-menu-btn {
  position: absolute;
  top: 11px;
  right: 17px;
  width: 48px;
  height: 48px;
  pointer-events: auto;
}

.c-menu-btn img {
  width: 100%;
  height: 100%;
}

/* Figma実寸（kv 390x527基準）に合わせて配置。
   レインボーはTICKETSバッジの子として一緒にフローティングさせる。
   オフセットはKV内にあったときの座標差をpxに固定した値
   （top: (82.4% - 78.2%) × 527px / right: -(7.2% × 390px)）。 */
.c-kv__badge-tickets .c-kv__rainbow {
  position: absolute;
  top: 22.13px;
  right: -28.08px;
  width: 122px;
  max-width: none; /* 親(104px)より広いため、img の max-width:100% を解除 */
  z-index: 0;
  pointer-events: none;
}

/* ---- フローティングバッジ（FAQ / TICKETS） ----
   ビューポート下部に固定した「KVと同じ比率の枠」を基準に置くことで、
   バッジの % 座標は c-kv の中にあったときと同じ相対位置に落ちる
   （bottom: 28px で TICKETSバッジの下端が画面下から約32pxになる）。
   KV・フッターと重なる間は JS が .is-faded を付与して非表示にする。 */
.c-floating {
  display: none;
  position: fixed;
  bottom: 28px;
  left: 50%;
  width: 100%;
  max-width: var(--center-w);
  aspect-ratio: 390 / 527;
  transform: translateX(-50%);
  z-index: 110;
  pointer-events: none;
  opacity: 1;
  transition: opacity 0.4s ease;
}

.c-floating.is-faded {
  opacity: 0;
}

.c-floating.is-faded .c-kv__badge {
  pointer-events: none;
}

.c-kv__badge {
  position: absolute;
  display: block;
  z-index: 2;
  pointer-events: auto;
  transition: transform 0.2s ease;
}

.c-kv__badge:hover {
  transform: translateY(-2px);
}

.c-kv__badge-faq {
  top: 71.2%;
  right: 0;
  width: 106px;
}

.c-kv__badge-tickets {
  top: 78.2%;
  right: 7.2%;
  width: 104px;
}

.badge-tickets__star {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  animation: spin 8s linear infinite;
}

.badge-tickets__label {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  z-index: 2;
  transform: translate(-50%, -50%) rotate(-6deg);
}

@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

/* ==========================================================================
   スケジュール
   背景色 + schedule_bg_frame.webp（リピート）の上に、
   schedule_bg_top / center / bottom を装飾として重ねる
   ========================================================================== */
.c-schedule {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #497d95;
  overflow: hidden;
}

.c-schedule::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/schedule_bg_frame.webp");
  background-repeat: repeat;
  background-size: 39px 39px;
  z-index: 0;
}

.c-schedule__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.c-schedule__bg-top {
  top: 0;
}

.c-schedule__bg-center {
  top: 48%;
  transform: translateY(-50%);
}

.c-schedule__bg-bottom {
  bottom: 0;
}

.c-schedule__inner {
  position: relative;
  z-index: 2;
  padding: 165px 15px 160px;
  display: flex;
  flex-direction: column;
  gap: 95px;
}

/* ---- イベントブロック（大阪／東京 共通） ---- */
.c-schedule__event {
  position: relative;
}

.c-schedule__tag {
  line-height: 0;
  margin: 0;
  position: absolute;
  top: -25px;
  left: 0;
}

.c-schedule__tag img {
  width: 112px;
  height: auto;
  transform: rotate(-3deg);
}

.c-schedule__venue {
  position: relative;
  margin: 0 0 20px;
  font-size: 32px;
  text-align: center;
  font-weight: 900;
  line-height: 1.3;
  color: #ffffff;
  -webkit-text-stroke: 1.5px #463c9f;
  paint-order: stroke fill;
  text-shadow: 
    /* ① 縁取りを1px太く（2px幅のアウトラインを全方位に配置） */
    -2px -2px 0 #463c9f,  
     0px -2px 0 #463c9f,
     2px -2px 0 #463c9f,  
    -2px  0px 0 #463c9f,
     2px  0px 0 #463c9f,
    -2px  2px 0 #463c9f,  
     0px  2px 0 #463c9f,
     2px  2px 0 #463c9f,
    /* 内側の隙間を埋めるための1px補強 */
    -1px -1px 0 #463c9f,  
     1px -1px 0 #463c9f,  
    -1px  1px 0 #463c9f,  
     1px  1px 0 #463c9f,
    /* ② 立体的な厚み（4pxまで単色で押し出し） */
    3px 3px 0 #463c9f,
    4px 4px 0 #463c9f;
}

.c-schedule__dates {
  display: flex;
  gap: 10px;
  margin-bottom: 20px;
}

.c-schedule__date {
  flex: 1;
  min-width: 0;
}

.c-schedule__date-head {
  display: flex;
  align-items: baseline;
  gap: 2px;
  margin: 0 0 8px;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
  white-space: nowrap;
  justify-content: center;
}

.c-schedule__date-year {
  font-size: 12px;
  font-weight: 700;
}

.c-schedule__date-num {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: 0.02em;
}

.c-schedule__dow {
  width: 22px;
  height: 18px;
  margin-left: 3px;
}

.c-schedule__time-row {
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 3px 4px;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 700;
  color: #ffffff;
  white-space: nowrap;
}

.c-schedule__time-row:last-child {
  margin-bottom: 0;
}

.c-schedule__pill {
  display: inline-block;
  padding: 1px 6px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 900;
  flex-shrink: 0;
  -webkit-text-stroke: 2px #fff;
  paint-order: stroke fill;
  color: #463C9F;
}

.c-schedule__pill--open {
  background-color: #fefc65;
}

.c-schedule__pill--start {
  background-color: #f34d87;
}

.c-schedule__time {
  margin-right: 2px;
}

/* ---- 会場案内アコーディオン ---- */
.c-schedule__accordion {
  overflow: hidden;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.c-schedule__accordion-head {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 12px 16px;
  font-size: 16px;
  font-weight: 900;
  color: #463c9f;
  text-align: center;
}

.c-schedule__accordion-text{
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke fill;
}

.c-schedule__accordion--osaka .c-schedule__accordion-head {
  background-color: #b3ebfc;
}

.c-schedule__accordion--tokyo .c-schedule__accordion-head {
  background-color: #f3a3c6;
}

.c-schedule__accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background-color: #463c9f;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
}

.c-schedule__accordion-body-wrap {
  display: grid;
  grid-template-rows: 1fr;
  background-color: #ffffff;
  transition: grid-template-rows 0.35s ease;
}

.c-schedule__accordion.is-closed .c-schedule__accordion-body-wrap {
  grid-template-rows: 0fr;
}

.c-schedule__accordion-body {
  min-height: 0;
  overflow: hidden;
}

.c-schedule__accordion-content {
  padding: 20px 16px;
}

.c-schedule__map-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 900;
  color: #E2017E;
}
.c-schedule__map-link:hover{
  opacity: 0.7;
}

.c-schedule__contact {
  background-color: #fdfdd5;
  padding: 16px;
  text-align: center;
}

.c-schedule__contact p {
  margin: 0 0 4px;
  font-size: 12px;
  font-weight: 700;
  color: #3D3D3A;
}

.c-schedule__contact-name {
  font-size: 13px;
}

.c-schedule__contact-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #E2017E !important;
  font-size: 19px !important;
}

.c-schedule__contact-tel svg {
  color: #E2017E;
}

.c-schedule__contact-note {
  font-size: 11px !important;
  font-weight: 500 !important;
}

/* ==========================================================================
   チケット
   背景色 + tickets_bg_dot.webp（リピート）の上に、
   tickets_bg_top / bottom をノート・紙片の装飾として重ねる
   ========================================================================== */
.c-tickets {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #fff;
  overflow: hidden;
}

.c-tickets::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/tickets_bg_dot.webp");
  background-repeat: repeat;
  background-size: 16px 16px;
  z-index: 0;
}

.c-tickets__bg {
  position: absolute;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.c-tickets__bg-top {
  top: 0;
}

.c-tickets__bg-bottom {
  bottom: 0;
}

.c-tickets__inner {
  position: relative;
  z-index: 2;
  padding: 50px 15px 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-tickets__inner .c-tickets__accordion--last{
  margin-bottom: 40px;
}
.c-tickets__title {
  width: 266px;
  max-width: 74%;
  height: auto;
  margin-bottom: 50px;
}

/* ---- 料金カード ---- */
.c-tickets__price-list {
  width: 94%;
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 0 auto 40px;
}

.c-tickets__price-card {
  border: 2px solid #463c9f;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.12);
}

.c-tickets__price-head {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 16px 8px 30px;
  background: linear-gradient(90deg, #E9B1DA, #FFF87B);
  font-size: 15px;
  font-weight: 900;
  color: #463c9f;
  position: relative;
  justify-content: center;
  border-bottom: 2px solid #463c9f;
}

.c-tickets__price-head span {
  color: #ffffff;
  -webkit-text-stroke: 4px #463c9f;
  paint-order: stroke fill;
  text-align: center;
}

.c-tickets__price-head--upgrade {
  background: linear-gradient(
    35deg,
    #dcceeb 0%,
    #f7c0ab 25%,
    #d6f0f9 50%,
    #f3bcd6 75%,
    #fffa77 100%
  );
}

.c-tickets__price-clip {
  position: absolute;
  top: -17px;
  left: 15px;
  width: 27px;
  height: auto;
  transform: rotate(-8deg);
}

/* 券種の補足（※東京公演のみ 等）: 券種名と価格の間に表示する */
.c-tickets__price-note {
  margin: 0;
  padding: 10px 16px 0;
  background-color: #ffffff;
  text-align: center;
  font-size: 12px;
  font-weight: 700;
  color: #6b6b58;
}

.c-tickets__price-body {
  margin: 0;
  padding: 14px 16px;
  background-color: #ffffff;
  text-align: center;
  font-size: 26px;
  font-weight: 900;
  color: #463c9f;
}

/* 補足つきカードは価格の上余白を詰める */
.c-tickets__price-note + .c-tickets__price-body {
  padding-top: 4px;
}

.c-tickets__price-body--accent {
  color: #E2017E;
}

.c-tickets__price-unit {
  margin-left: 4px;
  font-size: 14px;
  font-weight: 700;
}

/* ---- アコーディオン共通 ---- */
.c-tickets__accordion {
  width: 100%;
  overflow: hidden;
  margin-bottom: 20px;
  border: 2px solid #A2A0B2;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

.c-tickets__accordion:last-of-type {
  margin-bottom: 0px;
}

.c-tickets__accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 14px 16px;
  background-color: rgba(249, 248, 217,0.7);
  text-align: left;
  border-bottom: 2px solid #A2A0B2;
}

.c-tickets__accordion-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  font-weight: 900;
  color: #463c9f;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke fill;
}

.c-tickets__accordion-star {
  width: 20px;
  height: auto;
  flex-shrink: 0;
}

.c-tickets__accordion-tag {
  display: inline-block;
  padding: 1px 5px;
  background-color: #e9e6f5;
  color: #463c9f;
  font-size: 10px;
  font-weight: 700;
}

.c-tickets__accordion-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background-color: #463c9f;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
}

.c-tickets__accordion-body-wrap {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}

.c-tickets__accordion.is-closed .c-tickets__accordion-body-wrap {
  grid-template-rows: 0fr;
}

.c-tickets__accordion-body {
  min-height: 0;
  overflow: hidden;
}

.c-tickets__accordion-content {
  padding: 18px 16px;
  background-color: rgba(249, 248, 217,0.7);
}

/* ---- Stella Nova最速先行（tickets01.png）：グラデーションヘッダー＋白背景 ---- */
.c-tickets__accordion--highlight {
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #e9b1da, #fff87b) 1;
}

.c-tickets__accordion--highlight .c-tickets__accordion-head {
  background: linear-gradient(90deg, #e9b1da, #fff87b);
  border-bottom: none;
}

.c-tickets__accordion--highlight .c-tickets__accordion-label {
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}

.c-tickets__accordion--highlight .c-tickets__accordion-label-text {
  color: #463c9f;
  -webkit-text-stroke: 3px #fff;
  paint-order: stroke fill;
}

.c-tickets__accordion--highlight .c-tickets__accordion-tag {
  background-color: #ffffff;
  border: 1px solid #eab3d6;
}

.c-tickets__accordion--highlight .c-tickets__accordion-content {
  background-color: #ffffff;
}

.c-tickets__accordion-content p {
  margin: 0 0 12px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: bold;
  color: #463C9F;
}

.c-tickets__accordion-content p:last-child {
  margin-bottom: 0;
}

.c-tickets__accordion-content a,
.c-qa__content a {
  color: #7B62FD;
  text-decoration: underline;
}

.c-tickets__sub-heading {
  font-weight: 900;
  color: #463c9f !important;
  margin-top: 50px !important;
}

.c-tickets__note {
  color: #6b6b58;
}
.c-tickets__note.text-pink,
.c-tickets__accordion-content .text-pink,
.c-qa__content .text-pink {
  color: #E2017E;
}

/* 注釈内の箇条書き（・）: 折り返し行を1文字分ぶら下げて揃える */
.c-tickets__note--indent {
  padding-left: 1em;
  text-indent: -1em;
}

.c-tickets__list {
  margin: 0 0 12px;
  padding-left: 1.3em;
  font-size: 12px;
  line-height: 1.7;
  color: #4a4a3c;
  list-style: none;
}

.c-tickets__list li {
  margin-bottom: 4px;
  font-size: 14px;
  line-height: 1.7;
  font-weight: bold;
  color: #463C9F;
}

.c-tickets__list:not(.c-tickets__list--num) li::before {
  content: "・";
  margin-left: -1.3em;
  padding-right: 0.2em;
}

.c-tickets__list--num {
  padding-left: 1.6em;
  counter-reset: tickets-list;
}

.c-tickets__list--num-cont {
  counter-reset: tickets-list 7;
}

.c-tickets__list--num li {
  counter-increment: tickets-list;
}

.c-tickets__list--num li::before {
  content: counter(tickets-list) ".";
  margin-left: -1.6em;
  padding-right: 0.3em;
  font-weight: 700;
}

/* ---- Stella Nova最速先行：受付期間・申込ボタン ---- */
.c-tickets__period {
  margin-bottom: 16px;
  text-align: center;
}

.c-tickets__period-label {
  margin-bottom: 3px !important;
}

.c-tickets__period-label span {
  display: block;
  border: 1px solid #463c9f;
  border-radius: 999px;
  padding: 2px 20px;
  font-size: 12px;
  font-weight: 900;
  color: #463c9f;
}

.c-tickets__period-date {
  font-size: 14px !important;
  font-weight: 900;
  color: #E2017E !important;
  margin-bottom: 0 !important;
}
.c-tickets__period-date .large{
  font-size: 20px !important;
  font-weight: 900;
}

.c-tickets__apply-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 52px;
  margin: 0 auto 16px;
  background-image: url("../img/btn_bg02.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff !important;
  text-decoration:none !important;
  text-align: center;
  transition: opacity 0.2s ease;
}

.c-tickets__apply-btn span{
  transform: translateY(-3px);
}
.c-tickets__apply-btn:hover {
  opacity: 0.7;
}

/* ---- 下部CTA ---- */
.c-tickets__bottom-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 300px;
  height: 56px;
  background-image: url("../img/btn_bg03.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 15px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  transition: opacity 0.2s ease;
}
.c-tickets__bottom-btn span{
  transform: translateY(-3px);
  color: #ffffff;
  -webkit-text-stroke: 4px #453C9F;
  paint-order: stroke fill;
}
.c-tickets__bottom-btn:hover {
  opacity: 0.7;
}

/* ==========================================================================
   グッズ
   背景は単色（文房具の装飾＋スライダー＋購入導線ボタン）
   ========================================================================== */
.c-goods {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #b6a2e1;
  overflow: hidden;
}

.c-goods__deco {
  position: absolute;
  top: 20px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.c-goods__inner {
  position: relative;
  z-index: 2;
  padding: 50px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-goods__title {
  width: 229px;
  max-width: 70%;
  height: auto;
  margin-bottom: 50px;
}

.c-goods__swiper {
  width: 100%;
  overflow: hidden;
}

.c-goods__swiper .swiper-slide img {
  width: 100%;
  height: auto;
  display: block;
}

.c-goods__nav {
  width: 100%;
  max-width: 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 14px 0 28px;
}

.c-goods__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 15px;
  height: 17px;
  flex-shrink: 0;
}

.c-goods__arrow img {
  width: 100%;
  height: 100%;
}

.c-goods__arrow--prev img {
  transform: scaleX(-1);
}

.c-goods__pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
}

.c-goods__pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0;
  background-color: #463c9f;
  opacity: 1;
}

.c-goods__pagination .swiper-pagination-bullet-active {
  width: 22px;
  height: 20px;
  background-color: transparent;
  background-image: url("../img/slide_star.webp");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  margin: 0 !important;
}

.c-goods__btn-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ==========================================================================
   ファンクラブ
   背景は単色（アルファベットブロックの装飾＋スライダー＋詳細ボタン）
   スライダー本体・ナビゲーションは .c-goods__swiper 等のクラスを共用
   ========================================================================== */
.c-fanclub {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #a9e4d2;
  overflow: hidden;
}

.c-fanclub__deco {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.c-fanclub__inner {
  position: relative;
  z-index: 2;
  padding: 50px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-fanclub__title {
  width: 305px;
  max-width: 92%;
  height: auto;
  margin-bottom: 50px;
}

/* ==========================================================================
   マップ
   背景は単色（文房具の装飾＋Coming Soon画像1枚のみ／スライダーなし）
   ========================================================================== */
.c-map {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #dcfca3;
  overflow: hidden;
}

.c-map__deco {
  position: absolute;
  top: 14px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.c-map__inner {
  position: relative;
  z-index: 2;
  padding: 50px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-map__title {
  width: 154px;
  max-width: 50%;
  height: auto;
  margin-bottom: 50px;
}

.c-map__image {
  width: 100%;
  height: auto;
  display: block;
}

/* ==========================================================================
   ムービー
   背景は単色（装飾＋スライダー／ナビ・ページネーションは .c-goods__ を共用）
   ========================================================================== */
.c-movie {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #ffb1c9;
  overflow: hidden;
}

.c-movie__deco {
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  height: auto;
  z-index: 1;
  pointer-events: none;
}

.c-movie__inner {
  position: relative;
  z-index: 2;
  padding: 50px 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-movie__title {
  width: 211px;
  max-width: 65%;
  height: auto;
  margin-bottom: 50px;
}

/* ---- MOVIE：YouTube動画スライダー（サムネタップで再生） ---- */
.c-movie__video {
  position: relative;
  width: 100%;
  aspect-ratio: 334 / 169;
  background-color: #1a1a1a;
  overflow: hidden;
  isolation: isolate;
}

.c-movie__player {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.c-movie__video > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 1;
}

.c-movie__placeholder {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  cursor: pointer;
  z-index: 2;
}

.c-movie__placeholder.is-hidden {
  display: none;
}

.c-movie__close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 3;
  width: 30px;
  height: 30px;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background-color 0.2s ease;
}

.c-movie__close:hover {
  background-color: rgba(0, 0, 0, 0.9);
}

.c-movie__close-icon {
  position: relative;
  width: 14px;
  height: 14px;
  display: inline-block;
}

.c-movie__close-icon::before,
.c-movie__close-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1.5px;
  background-color: #ffffff;
  transform-origin: center;
}

.c-movie__close-icon::before {
  transform: translateY(-50%) rotate(45deg);
}

.c-movie__close-icon::after {
  transform: translateY(-50%) rotate(-45deg);
}

.c-movie__play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

.c-movie__play-circle {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: rgba(70, 60, 159, 0.8);
  display: flex;
  align-items: center;
  justify-content: center;
}

.c-movie__play-icon {
  display: block;
  width: 0;
  height: 0;
  margin-left: 3px;
  border-style: solid;
  border-width: 8px 0 8px 14px;
  border-color: transparent transparent transparent #ffffff;
}

/* ==========================================================================
   Q&A
   背景色 #2C395A + qa_frame.webp（リピート）
   カード＝グラデーションのQ見出し＋白いA本文を1つのアコーディオンにまとめる
   ========================================================================== */
.c-qa {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #2c395a;
  overflow: hidden;
}

.c-qa::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/qa_frame.webp");
  background-repeat: repeat;
  background-size: 13.5px 13.5px;
  z-index: 0;
}

.c-qa__deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: block;
  width: 76%;
  max-width: 291px;
  height: auto;
  pointer-events: none;
}

.c-qa__inner {
  position: relative;
  z-index: 2;
  padding: 50px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-qa__title {
  width: 157px;
  max-width: 46%;
  height: auto;
  margin-bottom: 50px;
}

.c-qa__tabs {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 40px;
}

/* タブが奇数個のとき、余った最後の1つを2カラム分の中央に配置する
   （幅は他のタブと同じ1カラム分に合わせる） */
.c-qa__tab:nth-child(odd):last-child {
  grid-column: 1 / -1;
  justify-self: center;
  width: calc(50% - 5px);
}

.c-qa__tab {
  width: 100%;
  padding: 5px 10px;
  border-radius: 999px;
  border: 2px solid #AFAFAF;
  background-color: #2c395a;
  color: #AFAFAF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.c-qa__tab.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, #4f58ef, #2098fb);
  border: 2px solid #fff;
  color: #F4F0DF;
}

.c-qa__list {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.c-qa__faq {
  width: 100%;
  overflow: hidden;
  background-color: #ffffff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
  border: 2px solid transparent;
  border-image: linear-gradient(90deg, #e9b1da, #fff87b) 1;
}

.c-qa__question {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  padding: 14px 44px 14px 16px;
  background: linear-gradient(90deg, #e9b1da, #fff87b);
  text-align: left;
}

.c-qa__q-label {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 900;
  color: #463C9F;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke fill;
  line-height: 1;
}

.c-qa__q-text {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
  color: #463C9F;
  -webkit-text-stroke: 4px #fff;
  paint-order: stroke fill;
}

.c-qa__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  flex-shrink: 0;
  background-color: #463c9f;
  color: #ffffff;
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  position: absolute;
  top: 14px;
  right: 14px;
}

.c-qa__body-wrap {
  display: grid;
  grid-template-rows: 1fr;
  transition: grid-template-rows 0.35s ease;
}

.c-qa__faq.is-closed .c-qa__body-wrap {
  grid-template-rows: 0fr;
}

.c-qa__body {
  min-height: 0;
  overflow: hidden;
}

.c-qa__content {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 16px;
}

.c-qa__a-label {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 900;
  color: #463C9F;
  -webkit-text-stroke: 4px #FDD9F3;
  paint-order: stroke fill;
  line-height: 1;
}

.c-qa__content p {
  font-size: 14px;
  font-weight: 500;
  color: #2c395a;
  line-height: 1.7;
  margin: 0 0 12px;
}

.c-qa__content p:last-child {
  margin-bottom: 0;
}

/* ==========================================================================
   フッター
   背景は水色 + contact_frame.webp（リピート）
   ========================================================================== */
.c-footer {
  position: relative;
  width: 100%;
  max-width: 390px;
  margin: 0 auto;
  background-color: #B3EBFC;
  overflow: hidden;
  border-top: 4px solid #fff;
  border-bottom: 4px solid #fff;
}
.c-footer::before{
  content: "";
  width: 100%;
  height: 2px;
  background: #C2C2C2;
  position: absolute;
  top: 0;
  left: 0;
}
.c-footer::after{
  content: "";
  width: 100%;
  height: 2px;
  background: #C2C2C2;
  position: absolute;
  bottom: 0;
  left: 0;
}

.c-footer__inner {
  position: relative;
  z-index: 1;
  padding: 50px 28px 100px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.c-footer__top {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

.c-footer__top::before {
  content: "";
  position: absolute;
  inset: -20px -30px;
  background-image: radial-gradient(circle, #ffffff 3.5px, transparent 3.6px);
  background-size: 22px 22px;
  z-index: 0;
}

.c-footer__title {
  position: relative;
  z-index: 1;
  width: 112px;
  max-width: 55%;
  height: auto;
  margin-bottom: 20px;
}

.c-footer__contact {
  position: relative;
  z-index: 1;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.c-footer__contact-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 280px;
  height: 52px;
  margin: 0 auto;
  background-image: url(../img/btn_bg02.webp);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 12px;
  font-weight: 900;
  color: #ffffff !important;
  text-decoration: none !important;
  text-align: center;
  transition: opacity 0.2s ease;
}
.c-footer__contact-btn span{
  transform: translateY(-3px);
  -webkit-text-stroke: 4px #463c9f;
  paint-order: stroke fill;
}

.c-footer__contact-btn:hover {
  opacity: 0.8;
}

.c-footer__share {
  width: 100%;
  border: 3px solid #ffffff;
  background-color: #2c395a;
  padding: 20px;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}

.c-footer__share::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: url("../img/qa_frame.webp");
  background-repeat: repeat;
  background-size: 13.5px 13.5px;
  z-index: 0;
}

.c-footer__share-heading {
  position: relative;
  z-index: 1;
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 900;
  color: #fffa77;
  text-align: center;
  line-height: 1.4;
}

.c-footer__icon-list {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}

.c-footer__icon-list a {
  display: block;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.c-footer__icon-list a:hover {
  opacity: 0.8;
  transform: scale(1.05);
}

.c-footer__official {
  display: block;
  width: 181px;
  max-width: 55%;
  margin: 16px 0 12px;
  transition: opacity 0.2s ease;
}

.c-footer__official:hover {
  opacity: 0.8;
}

.c-footer__copyright {
  margin: 30px 0 0;
  font-size: 11px;
  color: #fff;
  text-align: center;
}

/* ==========================================================================
   右カラム
   ========================================================================== */
.g-nav ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: center;
}

.g-nav a {
  position: relative;
  display: inline-block;
  padding: 4px 22px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 0.05em;
}

.g-nav a::before {
  content: "";
  position: absolute;
  inset: -5px -14px;
  top: 0;
  background-image: url("../img/menu_line.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 100% 100%;
  opacity: 0;
  clip-path: inset(0 100% 0 0);
  transition: clip-path 0.45s ease, opacity 0.15s ease;
  pointer-events: none;
}

.g-nav a:hover::before {
  opacity: 1;
  clip-path: inset(0 0 0 0);
}

.g-nav li.is-current a::before {
  opacity: 1;
  clip-path: inset(0 0 0 0);
  transition: none;
}

.cta-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.cta-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 269px;
  height: 61px;
  background-image: url("../img/btn_bg01.webp");
  background-size: 100% 100%;
  background-repeat: no-repeat;
  font-size: 16px;
  font-weight: 900;
  color: #ffffff;
  text-align: center;
  padding: 0 20px;
  transition: opacity 0.2s ease;
}

.cta-btn:hover {
  opacity: 0.7;
}

.cta-btn__label {
  display: block;
  transform: translateY(-3px);
  -webkit-text-stroke: 4px #463c9f;
  paint-order: stroke fill;
}

.deco-sparkle {
  position: absolute;
  top: 15%;
  right: 10%;
  max-width: 90px;
  width: 18%;
  min-width: 60px;
}

.deco-rocket {
  position: absolute;
  bottom: 30%;
  left: 5%;
  max-width: 109px;
  width: 22%;
  min-width: 74px;
}
/* 右カラムの風船（fv_item11〜14）。位置は menu_right.png を参照 */
.deco-balloon05 {
  position: absolute;
  top: 7%;
  left: 10%;
  max-width: 133px;
  min-width: 92px;
  width: 25.3%;
}

.deco-balloon06 {
  position: absolute;
  top: 0%;
  right: 15%;
  max-width: 118px;
  min-width: 82px;
  width: 22.5%;
}

.deco-balloon07 {
  position: absolute;
  bottom: 2%;
  left: 21%;
  max-width: 129px;
  min-width: 90px;
  width: 24.6%;
}

.deco-balloon08 {
  position: absolute;
  bottom: 3%;
  right: 3%;
  max-width: 87px;
  min-width: 60px;
  width: 16.6%;
}

/* ==========================================================================
   SPメニュー（ドロワー）
   SP_menu.png のデザインに合わせて、外側にグラデーション＋白枠＋グレー枠の
   カードを表示し、その中にロゴ・ナビ・装飾を配置する
   ========================================================================== */
.c-sp-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200; /* フローティングバッジ(110)より前面に出す */
  background: radial-gradient(circle farthest-corner at top right, #fffa77 0%, #e9b1d9 100%);
  padding: 22px;
  box-sizing: border-box;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}

.c-sp-menu.is-open {
  transform: translateX(0);
}

.c-sp-menu__panel {
  position: relative;
  width: 100%;
  max-width: 390px;
  height: 100%;
  margin: 0 auto;
}

.c-sp-menu__frame {
  position: relative;
  width: 100%;
  height: 100%;
  border: 12px solid #ffffff;
  box-sizing: border-box;
  background-color: #334F6B;
  overflow-y: auto;
  overflow-x: hidden;
}

.c-sp-menu__frame::after {
  content: "";
  position: absolute;
  inset: 0;
  border: 2px solid #c2c2c2;
  pointer-events: none;
}

.c-sp-menu__close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 48px;
  height: 48px;
  z-index: 2;
}

.c-sp-menu__sparkle {
  position: absolute;
  top: 117px;
  right: 39px;
  width: 38px;
  z-index: 1;
  pointer-events: none;
}

.c-sp-menu__rocket {
  position: absolute;
  bottom: 65px;
  left: 25px;
  width: 69px;
  z-index: 1;
  pointer-events: none;
}

.c-sp-menu__title {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 133px;
  z-index: 1;
  pointer-events: none;
}

.c-sp-menu__inner {
  position: relative;
  z-index: 1;
  padding: 11px 24px 24px;
}

.c-sp-menu__logo {
  display: block;
  width: 258px;
  max-width: 100%;
  margin: 0 auto 69px;
}

.c-sp-menu .g-nav ul {
  gap: 10px;
}

/* ==========================================================================
   タブレット等の中間幅
   左右カラムの中身（__inner）のみ非表示にし、代わりにmenuアイコンを表示
   ========================================================================== */
@media (max-width: 1024px) {
  .l-side-left__inner,
  .l-side-right__inner {
    display: none;
  }

  .c-menu-fixed {
    display: block;
  }

  .c-floating {
    display: block;
  }

  .c-sp-menu {
    display: block;
  }
}

/* ==========================================================================
   SP（スマートフォン）表示
   中心のコンテンツのみ表示。左右カラムは非表示。
   ========================================================================== */
@media (max-width: 768px) {
  .l-card-frame {
    display: none;
  }

  .l-side {
    display: none;
  }

  .deco-overflow {
    display: none;
  }

  .l-center {
    min-height: 0;
    margin-top: 0;
  }

  .c-menu-fixed {
    display: block;
  }

  .c-floating {
    display: block;
  }

  .c-sp-menu {
    display: block;
  }

  .c-qa__tab {
    font-size: 12px;
  }
}

/* ==========================================================================
   画像拡大モーダル（GOODS / FAN CLUB）
   AMPTAKテーマの sec-goods-modal 実装をバニラJS向けに移植。
   背景(.c-img-modal-bg)と本体(.c-img-modal)が別々にフェード/スケールする
   2段階アニメ。z-index はSPメニュー(200)より前面に配置する
   ========================================================================== */

/* ギャラリー画像を包むボタン（見た目は素の画像のまま） */
.c-gallery-item {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  cursor: zoom-in;
}

/* モーダル表示中は背景を固定してスクロール位置を保持
   （top は JS が -scrollY を inline 指定する） */
body._pinch-zoom {
  position: fixed;
  left: 0;
  right: 0;
  height: auto;
  overflow-y: scroll;
}

.c-img-modal-bg {
  opacity: 0;
  visibility: hidden;
  z-index: 300;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 200%;
  background: rgba(0, 0, 0, 0.5);
}

.c-img-modal-bg.open-modal {
  opacity: 1;
  visibility: visible;
}

.c-img-modal {
  max-width: 1300px;
  padding: 0 50px;
  width: 100%;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  opacity: 0;
  z-index: 310;
  transition: all 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  visibility: hidden;
  pointer-events: none;
}

.c-img-modal.open-modal {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
  pointer-events: auto;
  touch-action: pinch-zoom;
}

.c-img-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  cursor: pointer;
  position: absolute;
  top: -40px;
  right: 50px;
  padding: 0;
  border: 0;
  background: none;
}

.c-img-modal__close svg {
  width: 18px;
  height: auto;
}

.c-img-modal__close span {
  font-weight: 500;
  font-size: 18px;
  line-height: 1;
  color: #fff;
}

.c-img-modal__inner {
  position: relative;
  max-height: calc(100vh - 120px);
}

.c-img-modal__container {
  overflow: visible;
  touch-action: none;
  transform-origin: center center;
  transition: transform 0.2s ease-out;
  cursor: zoom-in;
}

.c-img-modal__container.is-zoomed {
  cursor: zoom-out;
}

.c-img-modal__container.is-dragging,
.c-img-modal__container.is-zoomed.is-dragging {
  transition: none;
}

.c-img-modal__container.is-zoomed.is-dragging {
  cursor: grabbing;
}

.c-img-modal__container img {
  max-height: calc(100vh - 120px);
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
  width: 100%;
  height: auto;
  display: block;
}

@media screen and (max-width: 768px) {
  .c-img-modal {
    padding: 0;
    width: 98%;
  }

  .c-img-modal__close {
    top: -30px;
    right: 0;
    gap: 9px;
  }

  .c-img-modal__close svg {
    width: 13px;
  }

  .c-img-modal__close span {
    font-size: 15px;
  }
}
