/* ==============================================================
*  base
* ============================================================ */
@import url("https://fonts.googleapis.com/css2?family=Figtree:ital,wght@0,300..900;1,300..900&family=Noto+Sans+JP:wght@100..900&display=swap");
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
}

h1 {
  font-size: inherit;
  margin: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

a {
  background-color: transparent;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
}

button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button, input {
  overflow: visible;
}

button, select {
  text-transform: none;
}

[type=button], [type=reset], [type=submit], button {
  -webkit-appearance: button;
}

[type=button]::-moz-focus-inner, [type=reset]::-moz-focus-inner, [type=submit]::-moz-focus-inner, button::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

[type=button]:-moz-focusring, [type=reset]:-moz-focusring, [type=submit]:-moz-focusring, button:-moz-focusring {
  outline: 1px dotted ButtonText;
}

fieldset {
  padding: 0.35em 0.75em 0.625em;
}

legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

details {
  display: block;
}

summary {
  display: list-item;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

body {
  word-wrap: break-word;
}

section, main {
  display: block;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  outline: none;
}

i, em {
  font-style: normal;
}

table {
  border-collapse: collapse;
}

li {
  list-style: none;
}

img {
  max-width: 100%;
  line-height: 0;
}

* {
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}

@keyframes loop {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}
@keyframes rotate {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
/* ==============================================================
*  contents
* ============================================================ */
/* common.scss
============================== */
html,
body {
  min-height: 100%;
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
}

html {
  background: #FFFFFF;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  word-wrap: break-word;
  overflow-wrap: break-word;
  width: 100%;
  line-height: 1.4;
  letter-spacing: 0.09em;
  color: #054E5F;
  overflow-x: hidden;
  position: relative;
  isolation: isolate;
}
@media screen and (min-width: 961px) {
  body {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  body {
    font-size: 1.4rem;
  }
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  height: 100vh;
  width: 100vw;
  background: linear-gradient(-75deg, #CAD9D9 0%, #FBFBFB 100%);
  z-index: -4;
}
body .wrap {
  position: relative;
  z-index: 0;
}
body .wrap::before, body .wrap::after {
  content: "";
  position: fixed;
}
body .wrap::before {
  top: -17rem;
  left: -13rem;
  width: 50rem;
  height: 50rem;
  border-radius: 50%;
  filter: blur(clamp(4rem, 6vw, 6rem));
  background: rgba(255, 255, 255, 0.4);
  z-index: -3;
}
body .wrap::after {
  inset: 0;
  width: 100%;
  min-height: 0;
  height: auto;
  background: url(../img/bg_noise.png) repeat center/40%;
  opacity: 0.1;
  mix-blend-mode: overlay;
  pointer-events: none;
  z-index: -2;
}
body .wrap .bg--line {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  opacity: 0.6;
}
body:not(.already) #loading {
  position: fixed;
  inset: 0;
  width: 100%;
  min-height: 0;
  height: auto;
  z-index: 999;
  opacity: 1;
  transition: opacity 3s;
}
body:not(.already) #loading .logo {
  display: block;
  width: min(80%, 40rem);
  height: auto;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}
body:not(.already).loaded::before {
  opacity: 1;
}
body:not(.already).loaded_delay #loading {
  opacity: 0;
  transition: opacity 0.5s;
}
body:not(.already).all-clear {
  position: static;
}
body:not(.already).all-clear #loading {
  display: none;
}
body:not(.already).all-clear .list--sns, body:not(.already).all-clear header, body:not(.already).all-clear .section--mv, body:not(.already).all-clear .content-main, body:not(.already).all-clear h1 {
  opacity: 1;
  translate: 0 0;
}
body:not(.already).all-clear .btn--buy {
  opacity: 1;
}
body:not(.already) .list--sns, body:not(.already) header, body:not(.already) .section--mv, body:not(.already) .content-main, body:not(.already) h1 {
  translate: 0 2rem;
  opacity: 0;
  transition: 0.7s ease;
}
body:not(.already) .btn--buy {
  opacity: 0;
  transition: 0.7s ease;
}
body:not(.already) .section--mv {
  transition-delay: 0.2s;
}
body:not(.already) h1 {
  transition-delay: 0.4s;
}
body:not(.already) .content-main {
  transition-delay: 0.6s;
}
body:not(.already) .list--sns {
  transition-delay: 1s;
}
body:not(.already) header {
  transition-delay: 1.2s;
}
body:not(.already) .btn--buy {
  transition-delay: 0.6s;
}
body.already.loaded_delay #loading {
  transition: opacity 0s;
}
body.already #loading {
  display: none;
}
body.already .list--sns, body.already header, body.already .section--mv, body.already .content-main, body.already h1, body.already .btn--buy {
  transition-delay: 0.2s;
  opacity: 1;
  transition: 0.3s ease;
}
body:not(.page--info):not(.already).all-clear footer {
  opacity: 1;
  translate: 0 0;
}
body:not(.page--info):not(.already) footer {
  translate: 0 2rem;
  opacity: 0;
  transition: 0.7s ease;
  transition-delay: 0.2s;
}
body:not(.page--info).already footer {
  transition-delay: 0.2s;
  opacity: 1;
  transition: 0.3s ease;
}

.load .delighter {
  opacity: 0;
  transform: translate3d(0, 150px, 0);
  transition: opacity 0.4s, transform 1s;
}
.load .delighter.started {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.load .section--info, .load .section--special, .load .section--live, .load .section--release, .load .section--movie {
  opacity: 0;
}

a {
  color: #054E5F;
  text-decoration: none;
  cursor: pointer;
  display: block;
  scroll-margin-top: 8rem;
}

img {
  width: 100%;
  max-width: 100%;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  line-height: 0;
  pointer-events: none;
  vertical-align: bottom;
  letter-spacing: 0.04em;
}

.arrow {
  stroke: #054E5F;
  fill: transparent;
  z-index: 4;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  margin-left: 1rem;
}

summary {
  list-style: none;
}

summary::-webkit-details-marker {
  display: none;
}

.btn {
  text-align: center;
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
  border-radius: 999px;
  padding: 15px 40px;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.btn .btn--main {
  display: block;
}
.btn .btn--main::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(-65deg, #FFFEED 0%, #FFFAAE 100%);
}
.btn .btn--main::before {
  border-radius: 999px;
}
.btn .btn--main .btn--txt {
  display: flex;
  align-items: center;
}
.btn .btn--main .arrow {
  rotate: 45deg;
}

.no-data {
  text-align: center;
  background: #fff;
  width: 100%;
  margin-inline: auto;
  padding: clamp(3rem, 4vw, 5rem) 3rem;
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
  font-size: clamp(1.4rem, 2vw, 1.8rem);
}

.bold {
  font-weight: bold;
}

.section--info .no-data {
  margin-bottom: 2rem;
}

#listBanner .no-data {
  margin-top: -24px;
}

.btn--detail {
  border: 1px solid #054E5F;
  padding: 14px 0;
  text-align: center;
  font-size: 1.3rem;
}

.btn--main, .btn--buy {
  line-height: 2;
}

.is-scroll .btn--buy {
  translate: 0% 0;
  opacity: 1;
  z-index: 20;
}

.is-footer .btn--buy {
  translate: 100% 0;
  opacity: 0;
}

.btn--buy {
  position: fixed;
  bottom: 30px;
  right: 0;
  width: 200px;
  border-radius: 999px 0 0 999px;
  padding: 15px 0 15px 30px;
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
  overflow: hidden;
  z-index: 0;
  translate: 100% 0;
  opacity: 0;
  transition: 0.3s ease;
}
.btn--buy a {
  display: flex;
  align-items: center;
}
.btn--buy a::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  background: linear-gradient(-65deg, #FFFEED 0%, #FFFAAE 100%);
}
.btn--buy.scroll {
  opacity: 1;
}
.btn--buy .loop--txt {
  overflow: hidden;
  z-index: 0;
}
.btn--buy .loop--txt .txt--wrap {
  display: flex;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  translate: 0;
  white-space: nowrap;
  will-change: transform;
  transform: translate3d(0, 0, 0);
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  animation: loop 12s linear infinite;
}
.btn--buy .loop--txt .txt--wrap .txt--line {
  display: flex;
  flex: 0 0 auto;
}
.btn--buy .loop--txt .txt--wrap .txt--line .btn--txt {
  display: flex;
  align-items: center;
  flex: 0 0 auto;
}
.btn--buy .loop--txt .txt--wrap .txt--line .btn--txt .arrow {
  margin: 0 14px;
  display: block;
  translate: 0 0.1em;
}

header, section .section-tit, .date, .section--release .release, .btn--main, .btn--buy, .toggle-ui, footer, .block--date, .time, .section--specialtopics .number, .no-data {
  font-family: "Figtree", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.list--sns {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 0 5px;
  padding: 22px 10px 12px 0;
  position: relative;
  z-index: 101;
}
.list--sns i {
  font-size: 1.6rem;
}
.list--sns a {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
  color: #114165;
}
.list--sns .music {
  width: 17px;
}

.list--sns a, .drawer__btn-bg, .nav a {
  background: rgba(233, 239, 240, 0.95);
  border: 1px solid rgba(255, 255, 255, 0.3);
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
  padding: 10px 15px;
  border-radius: 999px;
}

header {
  position: relative;
  font-size: 1.3rem;
  position: -webkit-sticky;
  position: sticky;
  top: 1.5rem;
  right: 0;
  display: flex;
  justify-content: end;
  z-index: 100;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 0 0 auto;
}
header .drawer {
  transition: 0.5s;
  text-align: right;
  pointer-events: none;
  position: absolute;
  top: 48px;
  right: 1rem;
}
header .drawer.fixed {
  position: fixed;
  top: 62px;
  right: 1rem;
}
header .drawer .nav li {
  translate: 0 -8px;
  transition: 0.3s ease;
  opacity: 0;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  margin: 0 0 0 auto;
}
header .drawer .nav li:nth-child(6) {
  transition-delay: 0s;
}
header .drawer .nav li:nth-child(5) {
  transition-delay: 0.1s;
}
header .drawer .nav li:nth-child(4) {
  transition-delay: 0.2s;
}
header .drawer .nav li:nth-child(3) {
  transition-delay: 0.3s;
}
header .drawer .nav li:nth-child(2) {
  transition-delay: 0.4s;
}
header .drawer .nav li:nth-child(1) {
  transition-delay: 0.5s;
}
header .drawer .nav li a {
  margin: 0 0 1rem auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
header .drawer__btn .drawer__btn-bg {
  height: auto;
  padding: 10px 0 10px 15px;
  width: 93px;
  margin: 0 10px 0 0;
  cursor: pointer;
}
header .drawer__btn .drawer__btn-line span {
  position: absolute;
  top: 15px;
  right: 15px;
  width: 15px;
  height: 1px;
  background-color: #054E5F;
  transition: 0.3s ease;
}
header .drawer__btn .drawer__btn-line span:last-child {
  top: 21px;
}
header .drawer__btn .drawer__btn-inner::after {
  content: "MENU";
}

.drawer-visible .drawer {
  pointer-events: auto;
}
.drawer-visible .drawer .nav li {
  opacity: 1;
  translate: 0;
}
.drawer-visible .drawer .nav li:nth-child(1) {
  transition-delay: 0s;
}
.drawer-visible .drawer .nav li:nth-child(2) {
  transition-delay: 0.1s;
}
.drawer-visible .drawer .nav li:nth-child(3) {
  transition-delay: 0.2s;
}
.drawer-visible .drawer .nav li:nth-child(4) {
  transition-delay: 0.3s;
}
.drawer-visible .drawer .nav li:nth-child(5) {
  transition-delay: 0.4s;
}
.drawer-visible .drawer .nav li:nth-child(6) {
  transition-delay: 0.5s;
}
.drawer-visible .drawer__btn .drawer__btn-line span:first-child {
  rotate: 45deg;
  top: 18px;
}
.drawer-visible .drawer__btn .drawer__btn-line span:last-child {
  rotate: -45deg;
  top: 18px;
}
.drawer-visible .drawer__btn .drawer__btn-inner::after {
  content: "CLOSE";
}

section {
  padding: clamp(14rem, 20vw, 18rem) clamp(2rem, 5vw, 5rem) 0 clamp(2rem, 5vw, 5rem);
  max-width: 1200px;
  margin-inline: auto;
}
section .section-tit {
  text-align: center;
  font-size: clamp(2.8rem, 5vw, 4rem);
  margin-bottom: 2rem;
  font-weight: 300;
  line-height: 1.2;
}

.section--mv {
  padding: 0;
  margin-top: 3rem;
  max-width: 100%;
}

h1 {
  margin: 2rem auto 0 auto;
  width: 15rem;
  position: relative;
  z-index: 10;
}

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

svg.logo {
  width: 15rem;
  height: 6rem;
}

.section--topic_movie {
  padding: 3rem clamp(2rem, 5vw, 5rem) 0 clamp(2rem, 5vw, 5rem);
}
.section--topic_movie .topic_movie {
  position: relative;
}
.section--topic_movie .movie {
  width: 100%;
  border: 1px solid #FFFFFF;
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
  display: block;
  margin: 0 auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.section--topic_movie .play-movie {
  cursor: pointer;
}
.section--topic_movie .play-movie .movie_play, .section--topic_movie .play-movie .polygon {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}
.section--topic_movie .play-movie .movie_play {
  width: clamp(9rem, 14vw, 17rem);
  animation: rotate 12s linear infinite;
}
.section--topic_movie .play-movie .polygon {
  width: clamp(1.5rem, 2vw, 3rem);
}

.section--specialtopics .list--info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media screen and (min-width: 600px) and (max-width: 960px) {
  .section--specialtopics .list--info {
    gap: 3rem;
  }
}
.section--specialtopics .list--info li {
  position: relative;
  aspect-ratio: 1/1;
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
  height: 100%;
}
.section--specialtopics .list--info li:not(.no-data)::before, .section--specialtopics .list--info li.no-data::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
}
.section--specialtopics .list--info li:not(.no-data)::before {
  background: url(../img/special_topics-bg.svg) no-repeat center/contain;
}
.section--specialtopics .list--info li.no-data {
  background: rgba(255, 255, 255, 0);
  padding: 0;
  text-align: left;
}
.section--specialtopics .list--info li.no-data::before {
  background: url(../img/special_topics-comingsoon_bg.svg) no-repeat center/contain;
}
.section--specialtopics .list--info li a {
  height: 100%;
}
.section--specialtopics .list--info li .number {
  font-size: min(6vw, 5rem);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  font-weight: 300;
  font-style: italic;
  line-height: 1;
  margin: 2px 0 0 5px;
}
.section--specialtopics .list--info li .txt {
  font-size: clamp(13px, 1.5vw, 18px);
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  width: 100%;
}
.section--specialtopics .list--info li .list-arrow {
  position: absolute;
  inset: auto -5px -2px auto;
  width: min(6vw, 4rem);
  height: min(6vw, 4rem);
  background: linear-gradient(180deg, #82C6F3 62%, #FFFCD2 97%);
  border-radius: 50%;
}
.section--specialtopics .list--info li .list-arrow .arrow {
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
  margin-left: 0;
  rotate: 45deg;
  width: min(2vw, 10px);
}

.section--info ul li, .section--live .info__item, .section--release .info__item {
  background: #FFFFFF;
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
}

.section--info ul li {
  position: relative;
  margin-bottom: 2rem;
}
.section--info ul li a {
  display: block;
  padding: 3rem;
  background: transparent;
  position: relative;
  isolation: isolate;
}
.section--info ul li a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #FFFFFF;
  z-index: -1;
}
.section--info ul li.new::before {
  content: "";
  background: url(../img/new.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  top: -2rem;
  left: -2.2rem;
  width: 8.8rem;
  height: 8.8rem;
  animation: rotate 14s linear infinite;
}
.section--info ul li::after {
  content: "";
  background: url(../img/arrow.svg) no-repeat;
  position: absolute;
  bottom: 15px;
  right: 15px;
  width: 1.1rem;
  height: 1.1rem;
  z-index: 1;
}
.section--info ul li .date {
  color: rgba(5, 78, 95, 0.8);
  font-size: 1.3rem;
  font-weight: 500;
}

.section--special, .section--movie {
  padding: clamp(14rem, 20vw, 24rem) 0 4rem 0;
  max-width: 100vw;
  position: relative;
  z-index: 20;
  overflow: hidden;
}
.section--special .single, .section--movie .single {
  padding: 0 clamp(2rem, 5vw, 5rem);
  max-width: 1024px;
  margin-inline: auto;
}
.section--special .swiper-pagination, .section--movie .swiper-pagination {
  cursor: pointer;
}

#listBanner.is-single, #listBanner.is-double, #listVideo.is-single, #listVideo.is-double {
  padding: 0 clamp(2rem, 5vw, 5rem);
  margin-inline: auto;
}
#listBanner.is-single .swiper-slide, #listBanner.is-double .swiper-slide, #listVideo.is-single .swiper-slide, #listVideo.is-double .swiper-slide {
  width: 100%;
}
#listBanner.is-single, #listVideo.is-single {
  max-width: 850px;
}
#listBanner.is-single .swiper-wrapper, #listVideo.is-single .swiper-wrapper {
  width: auto;
  justify-content: center;
}
#listBanner.is-double, #listVideo.is-double {
  max-width: 1200px;
}
#listBanner.is-double .swiper-wrapper, #listVideo.is-double .swiper-wrapper {
  gap: 2rem;
}

.section--movie {
  position: relative;
  z-index: 1;
}
.section--movie .swiper-container .swiper .swiper-slide {
  position: relative;
  width: 80%;
}
.section--movie .swiper-container .swiper .swiper-slide a, .section--movie .swiper-container .swiper .swiper-slide .block--item {
  transition: all 1s;
}
.section--movie .swiper-container .swiper .view_detail {
  opacity: 0;
  transition: 0.5s ease;
  pointer-events: none;
  will-change: transform;
}
.section--movie .swiper-container .swiper .swiper-slide-active {
  scale: 1;
  position: relative;
  z-index: -1 !important;
}
.section--movie .swiper-container .swiper .swiper-slide-active .view_detail {
  background: url(../img/play.svg) no-repeat center/contain;
  display: block;
  position: absolute;
  top: -3rem;
  right: -3rem;
  width: 10rem;
  height: 10rem;
  animation: rotate 14s linear infinite;
  z-index: -1;
}
.section--movie .swiper-container .swiper .swiper-slide-active .view_detail.is-show {
  opacity: 1;
}
.section--movie .video {
  position: relative;
  padding-top: 56.25%;
}
.section--movie .video iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 50% auto auto 50%;
  translate: -50% -50%;
}

.youtubeThumb.is-hidden {
  display: none;
}

#listVideo .view_detail {
  opacity: 0;
  transition: opacity 0.5s ease;
}

#listVideo .view_detail.is-show {
  opacity: 1;
}

.swiper-container {
  position: relative;
}
.swiper-container .swiper {
  overflow: visible;
}
.swiper-container .swiper .swiper-slide {
  filter: drop-shadow(0px 4px 4px rgba(39, 110, 169, 0.1));
}
.swiper-container .swiper .swiper-slide .thumb {
  overflow: hidden;
}
.swiper-container .swiper .swiper-slide a, .swiper-container .swiper .swiper-slide .block--item {
  cursor: pointer;
  background: #FFFFFF;
  padding: 4px;
}
.swiper-container .swiper-pagination {
  bottom: -38px;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet {
  background: rgba(5, 78, 95, 0);
  border: 1px solid #054E5F;
  opacity: 1;
}
.swiper-container .swiper-pagination .swiper-pagination-bullet-active {
  background: #054E5F;
}

.section--live .info__item {
  padding: 3rem 3rem 5rem 3rem;
  position: relative;
  transition: padding-bottom 0.3s ease;
  margin-bottom: 2rem;
  cursor: pointer;
}
.section--live .info__item:last-child {
  margin-bottom: 0;
}
.section--live .info__item::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 10rem;
  height: 10rem;
  -webkit-clip-path: polygon(100% 0, 0 100%, 100% 100%);
          clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.section--live .info__item.navy::before {
  background: linear-gradient(-45deg, #7f9abb 0%, rgba(127, 154, 187, 0) 40%);
}
.section--live .info__item.blue::before {
  background: linear-gradient(-45deg, #ACD0FF 0%, rgba(172, 208, 255, 0) 40%);
}
.section--live .info__item .block--head .live-logo {
  width: 22rem;
  max-height: 8rem;
  display: block;
}
.section--live .info__item .block--head .head-tit {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  line-height: 1.6;
}
.section--live .info__item .block--head .head-txt {
  display: block;
  flex: 1 1 auto;
  min-width: 0;
}
.section--live .info__item .block--head .head-tit,
.section--live .info__item .block--head .block--date,
.section--live .info__item .block--head .time, .section--live .info__item .block--head .guest {
  display: block;
}
.section--live .info__item .block--head .block--date {
  font-size: clamp(1.2rem, 2vw, 1.3rem);
  margin-top: 1em;
}
.section--live .info__item .block--head .block--date .date {
  font-size: clamp(1.6rem, 2vw, 1.8rem);
  padding-right: 4px;
}
.section--live .info__item .block--head .block--date .date.two-day {
  position: relative;
  margin-left: 32px;
}
.section--live .info__item .block--head .block--date .date.two-day::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -24px;
  width: 15px;
  height: 1px;
  background: #054E5F;
}
.section--live .info__item .block--head .venue, .section--live .info__item .block--head .time, .section--live .info__item .block--head .guest {
  font-size: 1.3rem;
}
.section--live .info__item .block--head .venue {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media screen and (min-width: 961px) {
  .section--live .info__item .block--head .venue {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .section--live .info__item .block--head .venue {
    font-size: 1.4rem;
  }
}
.section--live .info__item .block--head .guest {
  margin-top: -5px;
}
.section--live .info__item .block--txt {
  background: linear-gradient(to right, #054E5F 5px, transparent 0px) repeat-x top/10px 1px;
  margin-top: 3rem;
  padding: 3rem 0;
  display: block;
  overflow: hidden;
}
.section--live .info__item .block--txt dl {
  margin-bottom: 2rem;
}
.section--live .info__item .block--txt .block-tit {
  background-color: rgba(5, 78, 95, 0.05);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 6px 7px;
  font-size: 1.3rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}
.section--live .info__item .block--txt .list--notes, .section--live .info__item .block--txt .contact {
  font-size: 1.2rem;
}
.section--live .info__item .block--txt .list--notes a {
  text-decoration: underline;
}
.section--live .info__item .btn--detail {
  background: #054E5F;
  color: #FFFFFF;
  margin-bottom: 2rem;
}
.section--live .info__item .btn--detail .arrow {
  stroke: #FFFFFF;
}
.section--live .info__item .toggle-ui {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 12rem;
  height: 4rem;
}
.section--live .info__item .toggle-ui .toggle-icon::before, .section--live .info__item .toggle-ui .toggle-icon::after {
  right: 12px;
  bottom: 20px;
}
.section--live .info__item .toggle-text {
  right: 36px;
  bottom: 8px;
}

.block--head {
  list-style: none;
  line-height: 1.8;
}

.info__item .toggle-ui {
  cursor: pointer;
}
.info__item .toggle-ui .toggle-icon::before, .info__item .toggle-ui .toggle-icon::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 1px;
  background: #054E5F;
}
.info__item .toggle-ui .toggle-icon::after {
  rotate: 90deg;
  transition: 0.3s ease;
}
.info__item .toggle-text {
  font-size: 1.3rem;
  text-align: right;
  position: absolute;
  width: 90px;
}
.info__item .is-open {
  opacity: 1;
}
.info__item .is-close {
  opacity: 0;
}
.info__item[open] .toggle-icon::after {
  rotate: 180deg;
  scale: 1 0;
}
.info__item[open] .is-open {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.info__item[open] .is-close {
  opacity: 1;
  transition: opacity 0.5s 0.3s ease;
}
.info__item:not([open]) .is-open {
  transition: opacity 0.5s 0.3s ease;
}
.info__item:not([open]) .is-close {
  transition: opacity 0.3s ease;
}

.section--release {
  position: relative;
  z-index: 2;
}
.section--release .info__item {
  padding: clamp(5rem, 10vw, 12rem) clamp(3rem, 8vw, 8rem) 6rem clamp(3rem, 8vw, 8rem);
  border-radius: 999px 999px 0 0;
  position: relative;
  scroll-margin-top: -70vh;
  margin-bottom: clamp(8rem, 8vw, 10rem);
}
.section--release .info__item:last-child {
  margin-bottom: 0;
}
.section--release .info__item[open] .is-open {
  display: none;
}
.section--release .info__item[open] .is-close {
  display: inline;
}
.section--release .info__item .is-close {
  display: none;
}
.section--release .info__item .btn {
  position: absolute;
  bottom: -24px;
  left: 50%;
  translate: -50% 0;
  width: 178px;
  height: 53px;
  cursor: pointer;
}
.section--release .info__item .btn .btn--main::before {
  width: 178px;
}
.section--release .info__item .btn .btn--main::after {
  display: none;
}
.section--release .info__item .toggle-ui {
  position: relative;
}
.section--release .info__item .toggle-ui .toggle-icon::before, .section--release .info__item .toggle-ui .toggle-icon::after {
  right: -5px;
  top: 12px;
}
.section--release .info__item .toggle-text {
  top: 25%;
  width: 90px;
}
.section--release .info__item .toggle-text.is-open {
  left: -7%;
}
.section--release .info__item .toggle-text.is-close {
  right: 2rem;
}
.section--release .info__item[open] .btn, .section--release .info__item[open] .btn--main::before {
  width: 144px;
}
.section--release .block--head {
  text-align: center;
  display: block;
}
.section--release .block--head .head-txt,
.section--release .block--head .label, .section--release .block--head .tit, .section--release .block--head .release,
.section--release .block--head .block--jacket,
.section--release .block--head .block--grid,
.section--release .block--head .jacket-detail,
.section--release .block--head .jacket-tit,
.section--release .block--head .btn,
.section--release .block--head .btn--main,
.section--release .block--head .toggle-ui {
  display: block;
}
.section--release .block--head .head-txt .label {
  font-size: 1.2rem;
}
.section--release .block--head .head-txt .tit {
  font-size: clamp(2.4rem, 3vw, 3rem);
  line-height: 1.8;
  margin-bottom: 8px;
}
.section--release .block--head .head-txt .block--date, .section--release .block--head .head-txt .release {
  font-size: clamp(1.3rem, 2vw, 1.4rem);
}
.section--release .block--head .head-txt .block--date {
  font-weight: 500;
}
.section--release .block--head .head-txt .date {
  font-size: clamp(1.8rem, 2.4vw, 2.4rem);
  padding: 0 5px;
}
.section--release .block--jacket {
  padding: 4rem 0;
}
.section--release .block--jacket .block--grid {
  display: grid;
  gap: 3rem;
}
.section--release .block--jacket .block--grid .jacket-detail {
  margin-inline: auto;
  max-width: 40rem;
}
.section--release .block--jacket .jacket-tit {
  font-size: 1.2rem;
  margin-top: 1rem;
}
.section--release .block--jacket .btn--detail {
  margin-top: 3rem;
}
.section--release .block--txt {
  background: linear-gradient(to right, #114165 5px, transparent 0px) repeat-x top/10px 1px;
  margin-top: 1rem;
  padding-top: clamp(3rem, 5vw, 6rem);
  font-size: clamp(1.3rem, 2vw, 1.4rem);
  line-height: 1.8;
}
.section--release .block--txt p, .section--release .block--txt ol, .section--release .block--txt ul {
  margin-bottom: 1.6rem;
}
.section--release .block--txt p:last-child, .section--release .block--txt .cd, .section--release .block--txt .dvd {
  margin-bottom: 0;
}
.section--release .block--txt ol, .section--release .block--txt ul {
  padding-left: 1.6em;
}
.section--release .block--txt ol li {
  list-style: decimal;
}
.section--release .block--txt ul li {
  list-style: disc;
}
.section--release .block--txt a {
  text-decoration: underline;
}

footer {
  padding: 12rem 0 6rem 0;
  margin-inline: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
footer a {
  width: 11rem;
  margin-inline: auto;
}
footer .logo {
  margin: 0 auto 3rem auto;
  width: 11rem;
}
footer .copyright {
  text-align: center;
  line-height: 0;
}
@media screen and (min-width: 961px) {
  footer .copyright {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  footer .copyright {
    font-size: 1.2rem;
  }
}

.page--info .iframe {
  position: relative;
  padding-top: 56.25%;
  margin-top: 1rem;
}
.page--info .iframe iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.page--info #loading, .page--info .list--sns, .page--info .mainvisual, .page--info footer a {
  display: none;
}
.page--info h1 {
  position: absolute;
  top: 0;
  left: clamp(2rem, 5vw, 5rem);
}
.page--info section {
  padding: clamp(8rem, 10vw, 12rem) clamp(2rem, 5vw, 5rem) 0 clamp(2rem, 5vw, 5rem);
}
.page--info .section--mv {
  padding: 0;
}
.page--info .btn {
  margin-top: 4rem;
}
.page--info .btn .btn--main .btn--txt {
  flex-direction: row-reverse;
}
.page--info .btn .btn--main .arrow {
  rotate: -135deg;
  margin-left: 0;
  margin-right: 1rem;
}
.page--info .section--info, .page--info .section--detail {
  min-height: calc(100vh - 180px);
}
.page--info .section--detail .inner {
  background: #FFFFFF;
  padding: 3rem;
}
.page--info .section--detail .inner .date {
  opacity: 0.8;
  font-size: 1.3rem;
  font-weight: 500;
}
.page--info .section--detail .inner .tit {
  font-size: 1.6rem;
  padding: 4px 0 8px 0;
}
.page--info .section--detail .inner .txt {
  background: linear-gradient(to right, #114165 5px, transparent 0px) repeat-x top/10px 1px;
  margin-top: 2rem;
  padding-top: 2rem;
}
.page--info.load .section--info, .page--info.load header, .page--info.load .section--mv, .page--info.load .content-main, .page--info.load h1 {
  opacity: 1;
  translate: 0;
  transition-delay: 0s;
}

.page--detail .wrap {
  overflow-x: hidden;
}
.page--detail .wrap .txt p span {
  font-size: 1.4rem !important;
}
.page--detail .wrap .txt a {
  text-decoration: underline;
}
.page--detail .wrap .ph, .page--detail .wrap .thumb {
  position: relative;
  line-height: 0;
  text-align: center;
  margin-top: 1rem;
}
.page--detail .wrap .ph .dummy, .page--detail .wrap .thumb .dummy {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  .wrap .bg--line {
    background: url(../img/bg--line_pc.svg) no-repeat top/cover;
  }
  .list--sns {
    padding: 0;
    position: absolute;
    top: 32px;
    right: 124px;
  }
  .list--sns a {
    width: 36px;
    height: 36px;
    transition: 0.3s ease;
  }
  .list--sns a:hover {
    opacity: 0.7;
  }
  .list--sns i {
    font-size: 1.8rem;
  }
  .list--sns .music {
    width: 19px;
  }
  header {
    top: 3rem;
  }
  header .drawer {
    right: 2rem;
  }
  header .drawer .nav li a {
    display: block;
    will-change: transform;
    transition: transform 0.15s ease;
  }
  header .drawer__btn .drawer__btn-bg {
    margin: 0 20px 0 0;
  }
  header .drawer__btn .drawer__btn-line span {
    right: 11px;
  }
  .btn--buy {
    width: 300px;
  }
  .btn--buy a:hover .loop--txt .txt--wrap .txt--line .btn--txt {
    scale: 1.1;
  }
  .btn--buy a:hover .loop--txt .txt--wrap .txt--line .btn--txt svg {
    margin: 0 30px 0 15px;
  }
  .btn--main .arrow, .btn--buy a .arrow {
    stroke: currentColor;
    transition: stroke 0.5s ease;
  }
  .btn--main::before, .btn--main .btn--txt, .btn--main .btn--txt svg, .btn--buy a::before, .btn--buy a .btn--txt, .btn--buy a .btn--txt svg {
    transition: 0.3s ease;
  }
  .btn--main::after, .btn--buy a::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: -2;
    top: 0;
    left: 0;
    background: linear-gradient(-65deg, #054E5F 0%, #8ED0E0 100%);
  }
  .btn--main:hover, .btn--buy a:hover {
    opacity: 1;
    color: #FFFFFF;
  }
  .btn--main:hover::before, .btn--buy a:hover::before {
    opacity: 0;
  }
  .btn--main::after {
    border-radius: 999px;
  }
  .btn--main .arrow {
    rotate: 0deg;
    translate: 0;
  }
  .btn--main:hover .arrow {
    translate: 3px 0;
  }
  .section--mv {
    margin-top: -1rem;
    padding: 0 2rem;
  }
  .section--mv .mainvisual {
    margin: 3rem auto;
  }
  h1 {
    margin: -1rem 0 0 2rem;
  }
  .section--topic_movie {
    padding: 16rem clamp(2rem, 5vw, 5rem) 0 clamp(2rem, 5vw, 5rem);
  }
  .section--specialtopics .list--info {
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
  }
  .section--specialtopics .list--info li::before, .section--specialtopics .list--info li .list-arrow {
    transition: 0.3s ease;
  }
  .section--specialtopics .list--info li:has(a:hover)::before {
    opacity: 0.5;
  }
  .section--specialtopics .list--info li a:hover p {
    opacity: 0.5;
  }
  .section--specialtopics .list--info li a:hover .list-arrow svg {
    scale: 1.3;
  }
  .section--specialtopics .list--info li .txt {
    text-align: center;
    justify-content: center;
    padding: 0 1rem;
  }
  .section--specialtopics .list--info li .list-arrow {
    inset: auto -10px -10px auto;
  }
  .section--info ul li a {
    transition: 0.3s ease;
    position: relative;
    display: flex;
    align-items: baseline;
    gap: 0 2rem;
  }
  .section--info ul li a:hover {
    letter-spacing: 0.12em;
    padding: 3rem 2rem 3rem 3rem;
  }
  .section--info ul li a .date {
    margin-bottom: 0;
  }
  .section--info ul li.new::before {
    left: -2.5rem;
  }
  .arrow, .section--info li::after {
    transition: 0.3s ease;
  }
  .btn--detail:hover .arrow {
    transform-origin: left bottom;
  }
  .section--info li:hover::after {
    transform-origin: left bottom;
    scale: 1.3;
  }
  .btn--detail:hover .arrow {
    scale: 1.2;
  }
  .section--movie .swiper-container .swiper .swiper-slide-active a, .section--movie .swiper-container .swiper .swiper-slide-active .block--item, .section--movie .swiper-slide-duplicate-active a, .section--movie .swiper-slide-duplicate-active .block--item {
    padding: 5px;
  }
  #listBanner.is-double .swiper-slide, #listVideo.is-double .swiper-slide {
    flex-shrink: inherit;
  }
  #listBanner.is-double .swiper-pagination, #listVideo.is-double .swiper-pagination {
    display: none;
  }
  #listBanner .no-data, #listVideo .no-data {
    margin-top: 2rem;
  }
  .swiper-container .swiper .swiper-slide a, .swiper-container .swiper .swiper-slide .block--item {
    overflow: hidden;
    padding: 6px;
  }
  .swiper-container .swiper .swiper-slide a img, .swiper-container .swiper .swiper-slide .block--item img {
    -o-object-fit: cover;
       object-fit: cover;
    transition: 0.3s ease;
  }
  .swiper-container .swiper .swiper-slide a:hover img, .swiper-container .swiper .swiper-slide .block--item:hover img {
    scale: 1.05;
  }
  .section--movie .swiper-container .swiper .swiper-slide {
    width: 60%;
  }
  .section--movie .swiper-container .swiper .swiper-slide-active .view_detail {
    top: -5vw;
    right: -5vw;
    width: 14vw;
    height: 14vw;
  }
  .section--live .info__item {
    padding: 3rem;
  }
  .section--live .info__item .block--head {
    display: flex;
    align-items: center;
    gap: 0 3rem;
  }
  .section--live .info__item .block--head .block--date {
    line-height: 1.2;
  }
  .section--live .info__item .block--head .live-logo {
    width: 20rem;
    max-height: 6rem;
  }
  .section--live .info__item .block--head .venue {
    margin-left: 1rem;
  }
  .section--live .info__item .block--txt {
    padding: 6rem 3rem 0 3rem;
  }
  .section--live .info__item .btn--detail:hover {
    background: #FFFFFF;
    color: #054E5F;
  }
  .section--live .info__item .btn--detail:hover .arrow {
    stroke: #054E5F;
  }
  .section--live .info__item .list--notes a {
    transition: 0.3s ease;
  }
  .section--live .info__item .list--notes a:hover {
    opacity: 0.7;
  }
  .btn--detail {
    padding: 14px 34px;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    transition: 0.3s ease;
  }
  .section--release .btn .btn--main {
    pointer-events: none;
  }
  .section--release .btn .btn--main::before {
    transition: none;
  }
  .section--release .block--head .head-txt .tit {
    margin-bottom: 16px;
  }
  .section--release .block--jacket .block--grid {
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
  }
  .section--release .block--jacket .btn--detail {
    margin: 4rem auto 0 auto;
  }
  .section--release .block--jacket .btn--detail:hover {
    background: #054E5F;
    color: #FFFFFF;
  }
  .section--release .block--jacket .btn--detail:hover .arrow {
    stroke: #FFFFFF;
  }
  .section--release .block--txt {
    margin-top: 0;
  }
  footer {
    padding: 25rem 0 8rem 0;
  }
  footer a, footer .logo {
    width: 15rem;
  }
  .page--info h1 {
    top: 3rem;
    margin: 0;
  }
  .page--info .btn--main:hover .arrow {
    translate: -3px 0;
  }
  .page--info footer {
    padding: 12rem 0 6rem 0;
  }
  .page--detail .wrap .txt a {
    transition: 0.3s ease;
  }
  .page--detail .wrap .txt a:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 1px) and (max-width: 960px) {
  .pc {
    display: none !important;
  }
  h1 {
    width: 17rem;
  }
  .page--info h1 {
    width: 15rem;
  }
  .wrap .bg--line {
    background: url(../img/bg--line_sp.svg) no-repeat top/100%;
  }
  .section--specialtopics .list--info li .txt {
    padding: 0 2vw;
  }
  .section--info ul li .date {
    margin-bottom: 0.6em;
    line-height: 1;
  }
  #listBanner.is-double .swiper-wrapper, #listVideo.is-double .swiper-wrapper {
    flex-direction: column;
  }
  .section--live .info__item .block--head {
    text-align: center;
  }
  .section--live .info__item .block--head img {
    margin-inline: auto;
  }
  .section--live .info__item .block--head .live-logo {
    padding-bottom: 2rem;
  }
  .section--live .info__item .block--head .block--date {
    line-height: 1.5;
  }
  .section--live .info__item .block--txt .list--notes li {
    margin-bottom: 5px;
  }
  .section--live .info__item .block--txt .list--notes li:last-child {
    margin-bottom: 0;
  }
  .section--release .block--jacket {
    padding: 5vw 8vw 2vw 8vw;
  }
}