@charset "UTF-8";
:where(button, [type=button], [type=reset], [type=submit]) {
  touch-action: manipulation;
}

html {
  overscroll-behavior: none;
  scrollbar-gutter: stable;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
caption,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  font-style: normal;
  font-weight: normal;
  font-size: 100%;
  list-style-type: none;
}

body {
  font-family: "YakuHanJP", "Murecho", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.7;
  color: #411a7b;
  background: #fff;
  text-align: center;
  overflow-x: hidden;
  -webkit-text-size-adjust: 100%;
}
@media only screen and (max-width: 768px) {
  body {
    font-size: 3.59cqw;
  }
}

img {
  vertical-align: bottom;
  max-width: 100%;
  width: 100%;
}

a img,
a:hover img {
  border: none;
}

a {
  color: #411a7b;
  transition: 0.3s;
  cursor: pointer;
}

a:link,
a:visited {
  color: #411a7b;
  text-decoration: none;
}

a:hover {
  color: #411a7b;
  text-decoration: none;
  opacity: 0.7;
}

ul,
ol,
dl {
  list-style-position: outside;
}

li,
dt,
dd {
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
}

button {
  background: none;
  margin: 0;
  padding: 0;
  border: none;
}

em {
  font-style: normal;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}

:root {
  --l-body-w: 100%;
  --l-deco-h: max(100vh, 640px);
}
@media print, screen and (min-width: 769px) {
  :root {
    --l-body-w: clamp(390px, 27.083vw, 768px);
  }
}

.l-contents {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
  min-height: 100vh;
}
.l-contents::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, #ffbcd6 0%, #ff488d 100%);
  background-size: 100% var(--l-deco-h);
  pointer-events: none;
}

.l-contents_body {
  position: relative;
  z-index: 1;
  flex: 0 1 auto;
  width: var(--l-body-w);
  max-width: 768px;
  container-type: inline-size;
  container-name: base;
  background: white;
}

.l-contents_side {
  display: none;
}
@media print, screen and (min-width: 769px) {
  .l-contents_side {
    display: block;
    flex: 1 1 0;
    min-width: 0;
  }
}
.l-contents_side::before {
  --l-cloud-w: min(
    100%,
    calc(var(--l-deco-h) * 0.65375)
  );
  --l-logo-w: calc(var(--l-cloud-w) * 0.7839388145);
  content: "";
  position: fixed;
  top: 0;
  z-index: 0;
  width: calc((100% - var(--l-body-w)) / 2);
  height: var(--l-deco-h);
  background-repeat: no-repeat;
  pointer-events: none;
  will-change: transform;
  opacity: 0;
  transition: opacity 0.6s ease;
}
.l-contents_side-left::before {
  left: 0;
  background-image: url("../img/logo.webp"), url("../img/bg_lt.svg"), url("../img/bg_lb-l.svg"), url("../img/bg_lb-r.svg");
  background-position: center center, left top, left bottom, right bottom;
  background-size: var(--l-logo-w) auto, var(--l-cloud-w) auto, var(--l-cloud-w) auto, var(--l-cloud-w) auto;
}
.l-contents_side-right::before {
  right: 0;
  background-image: url("../img/bg_rt.svg"), url("../img/bg_rb.svg");
  background-position: right top, right bottom;
  background-size: var(--l-cloud-w) auto, var(--l-cloud-w) auto;
}

.is-deco-ready .l-contents_side::before {
  opacity: 1;
}

.l-side_rail {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  display: flex;
  justify-content: flex-end;
  width: calc((100% - var(--l-body-w)) / 2);
  height: var(--l-deco-h);
  pointer-events: none;
}
.l-side_rail a {
  pointer-events: auto;
}

.l-side_rail_inner {
  position: relative;
  width: min(100%, var(--l-deco-h) * 0.65375);
  height: 100%;
  container-type: inline-size;
}

main {
  overflow: hidden;
}

section .inner {
  width: 100%;
  padding: 0 5.128cqw;
  margin: 0 auto;
}

.clearFix:after {
  content: "";
  display: block;
  clear: both;
}

.textL {
  text-align: left;
}

.textC {
  text-align: center;
}

.textR {
  text-align: right;
}

.ps_ab {
  position: absolute;
}

.flex {
  display: flex;
}

.none {
  display: none !important;
}

ul.inline li {
  display: inline-block;
  vertical-align: top;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.pc-inline {
  display: inline-block !important;
}

.sp-inline {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc-inline {
    display: none !important;
  }
  .sp-inline {
    display: inline-block !important;
  }
  body {
    min-width: 100%;
    width: 100%;
  }
}
@container base (max-width: 768px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
  .pc-inline {
    display: none !important;
  }
  .sp-inline {
    display: inline-block !important;
  }
}
.btn_style-01_wrap {
  width: min(41.667cqw, 600px);
  height: min(5.694cqw, 82px);
  margin: 0 auto;
}
@container base (max-width: 768px) {
  .btn_style-01_wrap {
    width: 100%;
    height: 18.462cqw;
  }
}

.btn_style-01 {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border: solid 2px #000;
  box-shadow: 4px 4px 0 0 #000;
  font-size: min(1.389cqw, 20px);
  font-weight: 700;
  transition: 0.2s;
}
@container base (max-width: 768px) {
  .btn_style-01 {
    font-size: 4.103cqw;
    line-height: 1.3;
  }
}
.btn_style-01:hover {
  opacity: 1;
  transform: translate(4px, 4px);
  box-shadow: 0 0 0 0;
}

.side_nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 21.606cqw;
  margin-top: 5.736cqw;
  transform: translateY(-50%);
  text-align: center;
}
.side_nav a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: inherit;
}
.side_nav a:hover {
  opacity: 1;
}
.side_nav a:hover .side_nav_en {
  transform: translate(0.033em, 0.033em);
  text-shadow: 0.05em 0.05em 0 #411a7b;
}
.side_nav a:active .side_nav_en {
  transform: translate(0.083em, 0.083em);
  text-shadow: 0 0 0 #411a7b;
}
.side_nav li + li {
  margin-top: 2.677cqw;
}
.side_nav .current a {
  pointer-events: none;
}
.side_nav_en {
  font-family: "Sour Gummy", sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #c1ebdf;
  -webkit-text-stroke: 0.2em #411a7b;
  paint-order: stroke fill;
  text-shadow: 0.12em 0.12em 0 #411a7b;
  line-height: 1;
  text-transform: capitalize;
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.12s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (prefers-reduced-motion: reduce) {
  .side_nav_en {
    transition: none;
  }
}
.side_nav_en {
  display: block;
  font-size: 7.648cqw;
}
.current .side_nav_en {
  color: #ffffbb;
}
.side_nav_ja {
  display: block;
  margin-top: 2.677cqw;
  color: #fff;
  font-size: 3.824cqw;
  line-height: 1;
}

.side_btn {
  position: absolute;
  right: 3.442cqw;
  bottom: 3.824cqw;
}
.side_btn li + li {
  margin-top: 3.25cqw;
}
.side_btn a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 22.945cqw;
  height: 22.945cqw;
  border: 0.669cqw solid #fff;
  border-radius: 50%;
  box-shadow: 0 0 0 0.765cqw #391970, 0.382cqw 0.574cqw 0 1.147cqw #391970;
  color: #fff;
  text-align: center;
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.12s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.side_btn a:hover {
  opacity: 1;
  transform: translate(0.249cqw, 0.382cqw);
  box-shadow: 0 0 0 0.765cqw #391970, 0.134cqw 0.191cqw 0 0.956cqw #391970;
}
.side_btn a:active {
  transform: translate(0.382cqw, 0.574cqw);
  box-shadow: 0 0 0 0.765cqw #391970;
}
@media (prefers-reduced-motion: reduce) {
  .side_btn a {
    transition: none;
  }
}
.side_btn_icon {
  display: block;
  width: var(--icon-w, 7.648cqw);
  height: auto;
}
.side_btn_label {
  display: block;
  margin-top: 1.721cqw;
  font-size: 2.677cqw;
  line-height: 1.1;
}
.side_btn_item-x a {
  --icon-w: 6.692cqw;
  background: linear-gradient(180deg, #454553 0%, #0c0c0f 100%);
}
.side_btn_item-ticket a {
  --icon-w: 8.413cqw;
  background: linear-gradient(180deg, #f7578f 0%, #cb0f4c 100%);
}
.side_btn_item-broadcast a {
  --icon-w: 8.031cqw;
  background: linear-gradient(180deg, #1cc8af 0%, #057e6d 100%);
}

.side_btn_item.is-comingsoon,
.sp-fixed_item.is-comingsoon {
  --coming-base: #e8f1ee;
  --coming-img: url("../img/btn-ticket-broadcast-coming_pc.svg");
}
.side_btn_item.is-comingsoon a,
.sp-fixed_item.is-comingsoon a {
  position: relative;
  background: var(--coming-base);
  pointer-events: none;
  cursor: default;
}
.side_btn_item.is-comingsoon a:hover,
.sp-fixed_item.is-comingsoon a:hover {
  opacity: 1;
  transform: none;
}
.side_btn_item.is-comingsoon a::after,
.sp-fixed_item.is-comingsoon a::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  border-radius: inherit;
  background: var(--coming-base) var(--coming-img) center/100% 100% no-repeat;
}

.sp-fixed_item.is-comingsoon a::after {
  background-size: cover;
}

.pop-btn {
  --btn-main-color: #1a1459;
  --stripe-color-1: #ffffc3;
  --stripe-color-2: #ebffa5;
  --btn-face: repeating-linear-gradient(
    -45deg,
    var(--stripe-color-1),
    var(--stripe-color-1) 2.821cqw,
    var(--stripe-color-2) 2.821cqw,
    var(--stripe-color-2) 5.641cqw
  );
  --btn-text: var(--btn-main-color);
  --btn-border: 0.769cqw;
  --btn-ring: 0.897cqw;
  --btn-shadow-depth: 1.795cqw;
  --btn-shadow-x: 0px;
  --btn-press: 0.769cqw;
  --btn-font-size: 5.128cqw;
  --btn-padding: 4.359cqw 4.103cqw 4.359cqw 5.128cqw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.769cqw;
  padding: var(--btn-padding);
  font-size: var(--btn-font-size);
  letter-spacing: 0.05em;
  line-height: 1.2;
  color: var(--btn-text);
  text-decoration: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.pop-btn:link, .pop-btn:visited {
  color: var(--btn-text);
}
.pop-btn {
  background: var(--btn-face);
  border: var(--btn-border) solid var(--btn-main-color);
  border-radius: 9999px;
  box-shadow: inset 0 0 0 var(--btn-ring) #fff, var(--btn-shadow-x) var(--btn-shadow-depth) 0 var(--btn-main-color);
  transform: translateY(0);
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.12s cubic-bezier(0.34, 1.56, 0.64, 1);
  cursor: pointer;
}
.pop-btn:hover {
  opacity: 1;
  color: var(--btn-text);
  transform: translateY(var(--btn-press));
  box-shadow: inset 0 0 0 var(--btn-ring) #fff, var(--btn-shadow-x) max(0px, var(--btn-shadow-depth) - var(--btn-press)) 0 var(--btn-main-color);
}
.pop-btn {
}
.pop-btn:active {
  transform: translateY(var(--btn-shadow-depth));
  box-shadow: inset 0 0 0 var(--btn-ring) #fff, 0 0 0 var(--btn-main-color);
}
.pop-btn {
}
.pop-btn .btn-icon {
  width: 1.5em;
  height: auto;
  aspect-ratio: 30/27;
  flex-shrink: 0;
  display: inline-block;
}
.pop-btn {
}
.pop-btn .btn-detail-icon {
  width: 0.7em;
  height: auto;
  aspect-ratio: 10/8;
  flex-shrink: 0;
  display: inline-block;
}
.pop-btn {
}
.pop-btn:hover .btn-icon {
  animation: btnIconSwing 0.5s ease-in-out infinite alternate;
}
@media (prefers-reduced-motion: reduce) {
  .pop-btn {
    transition: none;
  }
  .pop-btn:hover .btn-icon {
    animation: none;
  }
}
.pop-btn {
}
.pop-btn-cream {
  --stripe-color-1: #ffffca;
  --stripe-color-2: #ffe6d5;
  --btn-main-color: #411a7b;
  --btn-border: 0.769cqw;
  --btn-ring: 0.769cqw;
  --btn-padding: 4.615cqw 7.692cqw;
  --btn-font-size: 5.128cqw;
}
.pop-btn-pink {
  --btn-padding: 2.564cqw 7.692cqw;
  --btn-face: #ff72a9;
  --btn-main-color: #411a7b;
  --btn-text: #fff;
  --btn-ring: 0px;
  --btn-border: 0.769cqw;
  --btn-shadow-depth: 1.282cqw;
  --btn-font-size: 5.128cqw;
}
.pop-btn-white {
  --btn-face: #fff;
  --btn-main-color: #411a7b;
  --btn-ring: 0px;
  --btn-border: 0.769cqw;
  --btn-shadow-x: 0.513cqw;
  --btn-shadow-depth: 1.282cqw;
  --btn-font-size: 4.103cqw;
  --btn-padding: 2.051cqw 3.59cqw;
  width: 100%;
}
.pop-btn-mint {
  --btn-face: #c1ebdf;
  --btn-main-color: #411a7b;
  --btn-ring: 0px;
  --btn-border: 0.769cqw;
  --btn-shadow-depth: 0px;
  --btn-press: 0px;
  --btn-font-size: 4.103cqw;
  --btn-padding: 2.051cqw 5.128cqw;
  gap: 4.615cqw;
}
.pop-btn-mint:hover {
  opacity: 0.8;
}
.pop-btn {
}
.pop-btn.is-disabled {
  --stripe-color-1: #e8f1ee;
  --stripe-color-2: #dce7e4;
  --btn-main-color: #e8f1ee;
  --btn-text: #b4c3bf;
  --btn-press: 0px;
  --btn-padding: 5.128cqw 16.923cqw;
  --btn-font-size: 6.41cqw;
  pointer-events: none;
  cursor: default;
}

.pop-btn_wrap {
  margin: 7.692cqw 0;
  text-align: center;
}

.deco {
  --deco-img: none;
  --deco-w: 100%;
  --deco-h: 25.641cqw;
  --deco-pos: center bottom;
  --deco-size: 100% auto;
  --deco-repeat: no-repeat;
  display: block;
  width: var(--deco-w);
  height: var(--deco-h);
  background-image: var(--deco-img);
  background-repeat: var(--deco-repeat);
  background-position: var(--deco-pos);
  background-size: var(--deco-size);
  pointer-events: none;
}
.deco > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: var(--deco-pos);
     object-position: var(--deco-pos);
}

.deco-cloud {
  --deco-h: 28.205cqw;
  --deco-size: 100% 100%;
  --deco-pos: center bottom;
  position: relative;
  z-index: 1;
  margin-bottom: -0.256cqw;
}
.deco-cloud-white {
  background-color: #fff;
}
.deco-cloud-pink {
  background-color: #ff72a9;
}

.deco-dot {
  --dot-w: 46.154cqw;
  --dot-ratio: 1;
  --dot-top: auto;
  --dot-right: auto;
  --dot-bottom: auto;
  --dot-left: auto;
  --deco-w: var(--dot-w);
  --deco-h: auto;
  --deco-size: 100% 100%;
  --deco-pos: center center;
  position: absolute;
  top: var(--dot-top);
  right: var(--dot-right);
  bottom: var(--dot-bottom);
  left: var(--dot-left);
  z-index: 0;
  aspect-ratio: var(--dot-ratio);
}

.deco-parts {
  --deco-w: 15.385cqw;
  --deco-h: 15.385cqw;
  --deco-size: contain;
  --deco-pos: center center;
  position: absolute;
  z-index: 2;
}

.sec_ttl {
  --ttl-w: 71.795cqw;
  width: var(--ttl-w);
  margin: 0 0 6.154cqw;
}
.sec_ttl img {
  display: block;
  width: 100%;
  height: auto;
}

.c-box {
  padding: 9.744cqw 5.641cqw 8.718cqw;
  background: #fff;
  border: 0.769cqw solid #411a7b;
  box-shadow: 1.795cqw 1.795cqw 0 0 #ffffca;
  color: #411a7b;
  text-align: left;
}
.c-box + .c-box {
  margin-top: 6.923cqw;
}
.c-box_ttl {
  padding: 0.513cqw 2.564cqw;
  background: #ff72a9;
  border: 0.513cqw solid #411a7b;
  color: #fff;
  font-size: 4.359cqw;
  line-height: 1.6;
  text-align: center;
}
.c-box_ttl + * {
  margin-top: 3.59cqw;
}
* + .c-box_ttl {
  margin-top: 8.718cqw;
}
.c-box_ttl-purple {
  background: #411a7b;
  border: none;
  border-radius: 9999px;
  padding: 0.769cqw 4.103cqw;
  font-size: 4.615cqw;
}

.c-text {
  font-size: 3.59cqw;
  line-height: 1.5;
}
.c-text + .c-text {
  margin-top: 5.128cqw;
}

.c-text a, .c-text a:link, .c-text a:visited,
.c-pill_note a,
.c-pill_note a:link,
.c-pill_note a:visited,
.ticket_bubble a,
.ticket_bubble a:link,
.ticket_bubble a:visited,
.ticket_term_body a,
.ticket_term_body a:link,
.ticket_term_body a:visited {
  color: inherit;
}
.c-text a,
.c-pill_note a,
.ticket_bubble a,
.ticket_term_body a {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.c-note {
  --note-gap: 2.051cqw;
  font-size: 3.59cqw;
  line-height: 1.5;
}
* + .c-note {
  margin-top: 4.103cqw;
}
.c-note > li,
.c-note > p {
  padding-left: 1em;
  text-indent: -1em;
}
.c-note > li + li,
.c-note > p + p {
  margin-top: var(--note-gap);
}

.c-hang {
  padding-left: 1em;
  text-indent: -1em;
}

.c-em {
  color: #ff4d94;
}

.c-pill_note {
  display: inline-block;
  padding: 0.769cqw 3.077cqw;
  border-radius: 9999px;
  background: #ffe0e6;
  color: #ff4d94;
  font-size: 3.59cqw;
  line-height: 1.6;
}

.c-imgbox {
  --imgbox-ratio: 4 / 3;
  aspect-ratio: var(--imgbox-ratio);
  background: #d9d9d9;
}
.c-imgbox > img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.c-dotline {
  background-image: radial-gradient(ellipse 0.641cqw 0.513cqw at center, #ffc6d2 99%, transparent 100%);
  background-size: 2.308cqw 1.026cqw;
  background-repeat: repeat-x;
  background-position: left center;
  height: 1.026cqw;
  margin: 5.641cqw 0;
}

.sec-pink {
  background: #ff72a9;
}

.sec-white {
  background: #fff;
}

#contact {
  padding: 9.231cqw 0 24.615cqw;
  color: #fff;
  text-align: center;
}
#contact .pop-btn_wrap {
  width: 71.795cqw;
  margin: 3.846cqw auto 0;
}

.contact_ttl {
  background-image: radial-gradient(ellipse 0.641cqw 0.513cqw at center, #fff 99%, transparent 100%);
  background-size: 2.308cqw 1.026cqw;
  background-repeat: space no-repeat;
  background-position: left bottom;
  width: 84.615cqw;
  margin: 0 auto 5.128cqw;
  padding-bottom: 4.103cqw;
  font-size: 5.641cqw;
  line-height: 1.2;
}

.contact_head {
  width: 71.795cqw;
  margin: 0 auto;
  padding: 2.051cqw 2.564cqw;
  background: #411a7b;
  font-size: 4.103cqw;
  line-height: 1;
}

.contact_text {
  width: 71.795cqw;
  margin: 3.59cqw auto 6.667cqw;
  font-size: 3.333cqw;
  line-height: 1.45;
  text-align: left;
}

.c-mark {
  position: relative;
  isolation: isolate;
  display: inline-block;
  padding: 0 2.308cqw;
  color: #fff;
  line-height: 1.3;
  margin: 0 0.1em;
}
.c-mark::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #ff72a9;
  transform: skewX(-12deg);
}

.c-panel {
  --panel-band: 5.128cqw;
  position: relative;
  margin: 0 -2.564cqw;
  padding: var(--panel-band);
  background: #fff;
}
.c-panel_band {
  position: absolute;
  z-index: 1;
}
.c-panel_band-top, .c-panel_band-bottom {
  --deco-h: var(--panel-band);
  --deco-size: 100% 100%;
  --deco-pos: center center;
  left: 0;
  width: 100%;
  height: var(--panel-band);
  z-index: 2;
}
.c-panel_band-top {
  --deco-img: url("../img/goods_bar_hol.svg");
  top: 0;
}
.c-panel_band-bottom {
  --deco-img: url("../img/goods_bar_hol_btm.svg");
  bottom: 0;
}
.c-panel_band-left, .c-panel_band-right {
  --deco-img: url("../img/goods_bar_ver.svg");
  --deco-w: var(--panel-band);
  --deco-h: 100%;
  --deco-size: 100% auto;
  --deco-pos: center top;
  --deco-repeat: repeat-y;
  top: 0;
  width: var(--panel-band);
  height: 100%;
}
.c-panel_band-left {
  left: 0;
}
.c-panel_band-right {
  right: 0;
}
.c-panel_inner {
  position: relative;
  padding: 5.128cqw 5.128cqw 10.256cqw;
  border: 0.769cqw solid #411a7b;
  background-color: #fdfcfe;
  background-image: linear-gradient(to right, rgba(65, 26, 123, 0.07) 1px, transparent 1px), linear-gradient(to bottom, rgba(65, 26, 123, 0.07) 1px, transparent 1px);
  background-size: 2.564cqw 2.564cqw;
}

.c-panel_ttl {
  margin: 0 auto;
  padding: 0.256cqw 2.564cqw;
  border: 0.641cqw solid #411a7b;
  background: #ff4d94;
  color: #fff;
  font-size: 5.641cqw;
  line-height: 1.4;
  text-align: center;
}

.c-goods_list {
  --goods-col: 2;
  display: grid;
  grid-template-columns: repeat(var(--goods-col), 1fr);
  gap: 6.154cqw 3.59cqw;
  margin-top: 6.154cqw;
  text-align: center;
}
.c-goods_list_ttl {
  margin-top: 2.051cqw;
  color: #411a7b;
  font-size: 3.59cqw;
  line-height: 1.5;
}
.c-goods_list_price {
  margin-top: 0.513cqw;
  color: #ff4d94;
  font-size: 4.872cqw;
  line-height: 1.3;
}
.c-goods_list_price small {
  font-size: 3.077cqw;
}

.sp-fixed {
  display: none;
}
@media only screen and (max-width: 768px) {
  .sp-fixed {
    position: fixed;
    left: 0;
    bottom: 0;
    z-index: 90;
    display: flex;
    width: 100%;
    border-top: 0.769cqw solid #411a7b;
  }
}
.sp-fixed_item {
  flex: 1 1 0;
  min-width: 0;
}
.sp-fixed_item + .sp-fixed_item {
  border-left: 0.769cqw solid #411a7b;
}
.sp-fixed a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.513cqw;
  height: 20.513cqw;
  color: #fff;
  text-align: center;
}
.sp-fixed a:hover {
  opacity: 0.85;
}
.sp-fixed_icon {
  display: block;
  width: var(--icon-w, 8.205cqw);
  height: auto;
}
.sp-fixed_label {
  margin-top: 2.821cqw;
  display: block;
  font-size: 3.59cqw;
  line-height: 1.1;
}
.sp-fixed_item-x a {
  --icon-w: 6.154cqw;
  background: linear-gradient(180deg, #454553 0%, #0c0c0f 100%);
}
.sp-fixed_item-ticket a {
  --icon-w: 10.513cqw;
  background: linear-gradient(180deg, #f7578f 0%, #cb0f4c 100%);
}
.sp-fixed_item-broadcast a {
  --icon-w: 10.769cqw;
  background: linear-gradient(180deg, #1cc8af 0%, #057e6d 100%);
}

@media only screen and (max-width: 768px) {
  body {
    padding-bottom: 20.513cqw;
  }
}

.l-if_noscript {
  padding: 20px;
  text-align: center;
  background: #eee;
}

#pagetop {
  position: fixed;
  right: min(2.083cqw, 30px);
  bottom: min(2.083cqw, 30px);
  z-index: 10;
  opacity: 0;
  pointer-events: none;
  transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
@media only screen and (max-width: 768px) {
  #pagetop {
    right: 2.564cqw;
    bottom: 23.077cqw;
  }
}
#pagetop.active {
  opacity: 1;
  pointer-events: auto;
}
#pagetop a {
  display: block;
  width: min(4.861cqw, 70px);
  height: min(4.861cqw, 70px);
}
@media only screen and (max-width: 768px) {
  #pagetop a {
    width: 14.359cqw;
    height: 14.359cqw;
  }
}
#pagetop a:hover {
  opacity: 1;
  transform: translateY(-7px);
}
@media only screen and (max-width: 768px) {
  #pagetop a:hover {
    transform: none;
  }
}

.page_ttl {
  background: #fff;
  color: #411a7b;
  text-align: center;
  background: #ff72a9;
}
.page_ttl_img {
  --ttl-w: 100%;
  width: var(--ttl-w);
  margin: 0 auto;
}
.page_ttl_img img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes fadeUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes pop {
  0% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes btnIconSwing {
  from {
    transform: translateX(-0.1em);
  }
  to {
    transform: translateX(0.3em);
  }
}
#header .header-logo {
  position: fixed;
  top: min(1.389cqw, 20px);
  left: min(1.389cqw, 20px);
  z-index: 110;
  width: min(13.889cqw, 200px);
}
@media only screen and (max-width: 768px) {
  #header .header-logo {
    top: 3.59cqw;
    left: 3.59cqw;
    width: 20.513cqw;
  }
}
#header {
}
#header .menu-trigger {
  position: fixed;
  top: 2px;
  right: 0;
  z-index: 120;
  display: none;
  justify-content: center;
  align-items: center;
  width: 15.385cqw;
  height: 15.385cqw;
  background: url("../img/menu.svg") no-repeat center center;
  background-size: contain;
  border: none;
  cursor: pointer;
}
@media only screen and (max-width: 768px) {
  #header .menu-trigger {
    display: flex;
  }
}
#header .menu-trigger span {
  position: absolute;
  display: block;
  width: 5.128cqw;
  height: 3px;
  border-radius: 9999px;
  background: #411a7b;
  transform-origin: center center;
  transition: all 0.4s;
}
#header .menu-trigger span:nth-child(1) {
  top: calc(43.7% - 2.051cqw);
  transform: translateY(-50%);
}
#header .menu-trigger span:nth-child(2) {
  top: 43.7%;
  transform: translateY(-50%);
}
#header .menu-trigger span:nth-child(3) {
  top: calc(43.7% + 2.051cqw);
  transform: translateY(-50%);
}
.is-open #header .menu-trigger span {
  width: min(6.667cqw, 96px);
  top: 43.7%;
}
.is-open #header .menu-trigger span:nth-child(1) {
  transform: translateY(-50%) rotate(45deg);
}
.is-open #header .menu-trigger span:nth-child(2) {
  opacity: 0;
  transform: translateY(-50%) scale(0);
}
.is-open #header .menu-trigger span:nth-child(3) {
  transform: translateY(-50%) rotate(-45deg);
}
#header {
}
#header .menu-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background-color: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(2px);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s;
}
.is-open #header .menu-overlay {
  opacity: 1;
  visibility: visible;
}
#header {
}
#header .menu-content {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 110;
  height: 100vh;
  height: 100dvh;
  padding: min(8.333cqw, 120px) min(5cqw, 72px);
  background: #ff72a9;
  transform: translateX(100%);
  transition: transform 0.4s ease-in-out;
  overflow-y: auto;
}
@media only screen and (max-width: 768px) {
  #header .menu-content {
    width: 100%;
    padding: 18.462cqw 5.128cqw 15.385cqw;
  }
}
.is-open #header .menu-content {
  transform: translateX(0);
}
#header .menu-content ul li {
  text-align: center;
}
#header .menu-content ul li + li {
  margin-top: min(1.667cqw, 24px);
}
@media only screen and (max-width: 768px) {
  #header .menu-content ul li + li {
    margin-top: 5.128cqw;
  }
}
#header .menu-content ul li a {
  display: block;
  color: #fff;
}
#header .menu-content ul li a:hover {
  opacity: 1;
}
#header .menu-content ul li a:hover .menu-content_en {
  transform: translate(0.033em, 0.033em);
  text-shadow: 0.05em 0.05em 0 #411a7b;
}
#header .menu-content ul li a:active .menu-content_en {
  transform: translate(0.083em, 0.083em);
  text-shadow: 0 0 0 #411a7b;
}
#header .menu-content ul li.current a {
  pointer-events: none;
}
#header .menu-content ul li.current a .menu-content_en {
  color: #ffffbb;
}
#header .menu-content_en {
  font-family: "Sour Gummy", sans-serif;
  font-weight: 800;
  font-style: italic;
  color: #c1ebdf;
  -webkit-text-stroke: 0.14em #411a7b;
  paint-order: stroke fill;
  text-shadow: 0.1em 0.1em 0 #411a7b;
  line-height: 1;
  text-transform: capitalize;
  transition: transform 0.12s cubic-bezier(0.34, 1.56, 0.64, 1), text-shadow 0.12s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (prefers-reduced-motion: reduce) {
  #header .menu-content_en {
    transition: none;
  }
}
#header .menu-content_en {
  display: block;
  font-size: 15.385cqw;
}
#header .menu-content_ja {
  display: block;
  margin-top: 4.615cqw;
  font-size: 5.128cqw;
  line-height: 1;
  color: #fff;
}

body.is-open {
  overflow: hidden;
}

.footer {
  padding: 0 0 10.256cqw;
  color: #411a7b;
  position: relative;
  z-index: 1;
  top: -12.821cqw;
  margin-bottom: -12.821cqw;
}
.footer_cloud {
  --deco-img: url("../img/deco_cloud06.webp");
  --deco-size: 100% auto;
  --deco-pos: center top;
  --deco-h: 33.333cqw;
}
.footer a {
  display: inline-block;
  color: inherit;
}
.footer a:link,
.footer a:visited {
  color: inherit;
}
.footer .inner {
  max-width: 100%;
  padding: 0 5.128cqw;
  margin: 0 auto;
}
.footer {
}
.footer_logo {
  width: 34.359cqw;
  margin: 0 auto -11.795cqw auto;
  z-index: 1;
  position: relative;
  top: -11.795cqw;
}
.footer_logo a {
  display: block;
  width: 100%;
}
.footer_logo img {
  display: block;
  width: 100%;
  height: auto;
}
.footer {
}
.footer_brand {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.385cqw 3.077cqw;
  margin-top: 8.205cqw;
}
.footer_brand li {
  aspect-ratio: 169/57;
  overflow: hidden;
}
.footer_brand a {
  display: block;
  width: 100%;
  height: 100%;
}
.footer_brand img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.footer {
}
.footer_abema {
  width: 43.333cqw;
  margin: 5.385cqw auto 0;
}
.footer {
}
.footer_copy {
  display: block;
  margin-top: 8.974cqw;
  font-size: 3.077cqw;
  line-height: 1.4;
}
.footer_copy span + span {
  margin-left: 5.128cqw;
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}
.modal.is-show {
  opacity: 1;
  visibility: visible;
}
.modal_overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 114, 169, 0.7);
}
.modal_body {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: var(--l-body-w);
  max-width: 768px;
  max-height: 100%;
  margin: 0 auto;
  container-type: inline-size;
  container-name: base;
}
.modal_inner {
  flex: 1 1 auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  margin: 0 5.128cqw 1.795cqw;
  padding: 8.718cqw 5.641cqw 7.692cqw;
  background: #fff;
  border: 0.769cqw solid #411a7b;
  box-shadow: 1.795cqw 1.795cqw 0 0 #ffffca;
  color: #411a7b;
  text-align: left;
}
.modal_ttl {
  font-size: 5.385cqw;
  line-height: 1.4;
  text-align: center;
}
* + .modal_ttl {
  margin-top: 11.795cqw;
}
.modal {
}
.modal_close_star {
  position: absolute;
  top: -12.821cqw;
  right: 0cqw;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 25.641cqw;
  cursor: pointer;
}
.modal_close_star img {
  width: 100%;
  height: auto;
}
.modal_close_star:hover {
  opacity: 0.85;
}
.modal {
}
.modal_close_cloud {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.051cqw;
  width: 38.462cqw;
  height: 18.462cqw;
  margin: 7.692cqw auto 0;
  cursor: pointer;
}
.modal_close_cloud_img {
  --deco-w: 100%;
  --deco-h: 100%;
  --deco-size: contain;
  --deco-pos: center center;
  position: absolute;
  inset: 0;
}
.modal_close_cloud_label {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 2.051cqw;
  padding: 1.282cqw 4.103cqw;
  border: 0.641cqw solid #411a7b;
  border-radius: 9999px;
  background: #fff;
  color: #411a7b;
  font-size: 3.846cqw;
  line-height: 1.2;
  letter-spacing: 0.04em;
}
.modal_close_cloud_icon {
  width: 3.077cqw;
  height: 3.077cqw;
  flex-shrink: 0;
}
.modal_close_cloud:hover {
  opacity: 0.85;
}

body.is-modal-open {
  overflow: hidden;
}

.f-jakarta {
  font-family: "Plus Jakarta Sans", sans-serif !important;
}

.f-murecho {
  font-family: "YakuHanJP", "Murecho", sans-serif !important;
}

.f-sour {
  font-family: "Sour Gummy", sans-serif !important;
}

.fw-500 {
  font-weight: 500 !important;
}

.fw-600 {
  font-weight: 600 !important;
}

.fw-800 {
  font-weight: 800 !important;
}

.fw-900 {
  font-weight: 900 !important;
}

.fs-roman {
  font-style: normal !important;
}

.fs-italic {
  font-style: italic !important;
}
.fs-italic * {
  font-style: italic !important;
}
