.glide {
  position: relative;
  width: 100%;
  box-sizing: border-box;
}

.glide * {
  box-sizing: inherit;
}

.glide__track {
  overflow: hidden;
}

.glide__slides {
  position: relative;
  width: 100%;
  list-style: none;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  touch-action: pan-Y;
  overflow: hidden;
  margin: 0;
  padding: 0;
  white-space: nowrap;
  display: flex;
  flex-wrap: nowrap;
  will-change: transform;
}

.glide__slides--dragging {
  user-select: none;
}

.glide__slide {
  width: 100%;
  height: 100%;
  flex-shrink: 0;
  white-space: normal;
  user-select: none;
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
}

.glide__slide a {
  user-select: none;
  -webkit-user-drag: none;
  -moz-user-select: none;
  -ms-user-select: none;
}

.glide__arrows {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide__bullets {
  -webkit-touch-callout: none;
  user-select: none;
}

.glide--rtl {
  direction: rtl;
}

.awesomplete [hidden] {
  display: none;
}

.awesomplete .visually-hidden {
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

.awesomplete {
  display: inline-block;
  position: relative;
}

.awesomplete > input {
  display: block;
}

.awesomplete > ul {
  position: absolute;
  left: 0;
  z-index: 1;
  min-width: 100%;
  box-sizing: border-box;
  list-style: none;
  padding: 0;
  margin: 0;
  background: #fff;
}

.awesomplete > ul:empty {
  display: none;
}

.awesomplete > ul {
  border-radius: 0.3em;
  margin: 0.2em 0 0;
  background: hsla(0, 0%, 100%, 0.9);
  background: linear-gradient(to bottom right, white, hsla(0, 0%, 100%, 0.8));
  border: 1px solid rgba(0, 0, 0, 0.3);
  box-shadow: 0.05em 0.2em 0.6em rgba(0, 0, 0, 0.2);
  text-shadow: none;
}

@supports (transform: scale(0)) {
  .awesomplete > ul {
    transition: 0.3s cubic-bezier(0.4, 0.2, 0.5, 1.4);
    transform-origin: 1.43em -0.43em;
  }
  .awesomplete > ul[hidden],
  .awesomplete > ul:empty {
    opacity: 0;
    transform: scale(0);
    display: block;
    transition-timing-function: ease;
  }
}

/* Pointer */

.awesomplete > ul:before {
  content: "";
  position: absolute;
  top: -0.43em;
  left: 1em;
  width: 0;
  height: 0;
  padding: 0.4em;
  background: white;
  border: inherit;
  border-right: 0;
  border-bottom: 0;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.awesomplete > ul > li {
  position: relative;
  padding: 0.2em 0.5em;
  cursor: pointer;
}

.awesomplete > ul > li:hover {
  background: hsl(200, 40%, 80%);
  color: black;
}

.awesomplete > ul > li[aria-selected=true] {
  background: hsl(205, 40%, 40%);
  color: white;
}

.awesomplete mark {
  background: hsl(65, 100%, 50%);
}

.awesomplete li:hover mark {
  background: hsl(68, 100%, 41%);
}

.awesomplete li[aria-selected=true] mark {
  background: hsl(86, 100%, 21%);
  color: inherit;
}

/*
  Josh's Custom CSS Reset
  https://www.joshwcomeau.com/css/custom-css-reset/
*/

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

* {
  margin: 0;
}

body {
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

input,
button,
textarea,
select {
  font: inherit;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

#root,
#__next {
  isolation: isolate;
}

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

img,
picture,
video,
canvas,
svg {
  height: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
}

sup {
  font-size: 0.5em;
}

html {
  font-size: 10px;
}

@media screen and (max-width: 1440px) {
  html {
    font-size: 0.6944444444vw;
  }
}

@media screen and (max-width: 768px) {
  html {
    font-size: 2.6041666667vw;
  }
}

body {
  color: #fff;
  background: #16181E;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
  text-align: justify;
  word-break: break-all;
  font-feature-settings: "palt" 1;
  font-optical-sizing: auto;
}

@media screen and (max-width: 768px) {
  body {
    font-size: 1.2rem;
  }
}

a {
  color: #fff;
}

@media (hover: hover) {
  a:hover {
    text-decoration: none;
  }
}

@media (hover: none) {
  a:active {
    text-decoration: none;
  }
}

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

.layout-container {
  overflow: hidden;
}

.layout-content {
  padding-bottom: 10rem;
}

@media screen and (max-width: 768px) {
  .layout-content {
    padding-bottom: 6rem;
  }
}

.layout-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  transition: transform 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.layout-header.is-scrolled {
  transform: translateY(-6rem);
}

@media screen and (max-width: 768px) {
  .layout-header.is-scrolled {
    transform: translateY(-4rem);
  }
}

.layout-header .logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 6rem;
  background: #fff;
}

@media screen and (max-width: 768px) {
  .layout-header .logo {
    height: 4rem;
  }
}

.layout-header .logo img {
  width: 13rem;
}

@media screen and (max-width: 768px) {
  .layout-header .logo img {
    width: 10.2rem;
  }
}

.layout-header .nav {
  background: #000;
}

@media screen and (max-width: 768px) {
  .layout-header .nav {
    overflow: auto;
  }
}

.layout-header .category {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.5rem;
  padding: 2rem;
  font-weight: 700;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .layout-header .category {
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 1rem;
    width: fit-content;
    padding: 1.5rem 2rem;
  }
}

@media screen and (max-width: 768px) {
  .layout-header .category__item {
    white-space: nowrap;
  }
}

.layout-header .category__item.is-active a {
  color: #000;
  background: #fff;
}

@media (hover: hover) {
  .layout-header .category__item.is-active a:hover {
    background: #fff;
  }
}

@media (hover: none) {
  .layout-header .category__item.is-active a:active {
    background: #fff;
  }
}

.layout-header .category a {
  display: flex;
  align-items: center;
  height: 3.6rem;
  padding: 0rem 1.5rem;
  border-radius: 0.5rem;
  background: #222;
  text-decoration: none;
  transition: background-color 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media (hover: hover) {
  .layout-header .category a:hover {
    background: #333;
  }
}

@media (hover: none) {
  .layout-header .category a:active {
    background: #333;
  }
}

.layout-footer {
  padding: 4rem;
  background: #000;
}

.layout-footer .menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem;
  line-height: 1;
}

@media screen and (max-width: 768px) {
  .layout-footer .menu {
    gap: 2rem 2.5rem;
  }
}

.layout-footer .menu a {
  text-decoration: none;
}

.layout-footer .copyright {
  margin-top: 4rem;
  color: #999;
  font-family: "Inter", sans-serif;
  font-size: 1.4rem;
  line-height: 1;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .layout-footer .copyright {
    font-size: 1rem;
  }
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100dvh;
  background: #000;
  z-index: 9999;
}

.loading::after {
  content: "";
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: solid 0.4rem;
  border-color: #ffffff rgba(255, 255, 255, 0.062745098) rgba(255, 255, 255, 0.062745098);
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

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

.is-loaded .loading {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s, visibility 0.4s cubic-bezier(0.39, 0.575, 0.565, 1) 0.4s;
}

.hashtag {
  display: none;
}

@media screen and (max-width: 768px) {
  .pickup {
    margin-top: 1rem;
  }
}

.pickup-carousel {
  position: relative;
}

.pickup-carousel__item {
  width: 84.5rem;
  opacity: 0.4;
  transition: opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 768px) {
  .pickup-carousel__item {
    width: 32.8rem;
  }
}

.pickup-carousel__item.glide__slide--active {
  opacity: 1;
}

.pickup-carousel__item.glide__slide--active.is-ready .pickup-carousel__video iframe {
  opacity: 1;
}

.pickup-carousel__inner {
  position: relative;
  padding: 0 1rem;
}

@media screen and (max-width: 768px) {
  .pickup-carousel__inner {
    padding: 0 0.5rem;
  }
}

.pickup-carousel__image {
  width: 82.5rem;
  height: 46.4rem;
}

@media screen and (max-width: 768px) {
  .pickup-carousel__image {
    width: 31.8rem;
    height: 17.9rem;
  }
}

.pickup-carousel__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pickup-carousel__title {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .pickup-carousel__title {
    font-size: 1.2rem;
  }
}

.pickup-carousel__text {
  display: none;
}

.pickup-carousel__video {
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 84.5rem;
  height: 46.4rem;
  padding: 0 1rem;
  pointer-events: none;
}

@media screen and (max-width: 768px) {
  .pickup-carousel__video {
    width: 32.8rem;
    height: 17.9rem;
    padding: 0 0.5rem;
  }
}

.pickup-carousel__video iframe {
  width: 100%;
  height: 200%;
  transform: translateY(-25%);
  opacity: 0;
}

.pickup-carousel__button {
  position: absolute;
  top: 0;
  height: 100%;
  width: 6rem;
  appearance: none;
  outline: none;
  border: none;
  background: none;
  font-size: 0;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .pickup-carousel__button {
    width: 3rem;
    display: none;
  }
}

.pickup-carousel__button::before {
  content: "";
  position: absolute;
  top: 21.6rem;
  left: calc(50% - 0.95rem);
  width: 1.9rem;
  height: 3.2rem;
  background: url(/mic21tv/assets/img/arw_carousel.svg) no-repeat center center/contain;
}

@media screen and (max-width: 768px) {
  .pickup-carousel__button::before {
    top: 8rem;
    left: calc(50% - 0.5rem);
    width: 1rem;
    height: 1.6rem;
  }
}

.pickup-carousel__button--prev {
  left: 0;
}

.pickup-carousel__button--prev::before {
  transform: rotate(180deg);
}

.pickup-carousel__button--next {
  right: 0;
}

.search {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .search {
    margin-top: 2rem;
  }
}

.search-form {
  width: 100%;
  max-width: 95rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .search-form {
    width: 100%;
    max-width: 34.4rem;
    margin-left: auto;
    margin-right: auto;
  }
}

.search-form__input {
  width: 82rem;
  height: 5rem;
  padding: 1rem 2rem;
  border-top-left-radius: 0.6rem;
  border-bottom-left-radius: 0.6rem;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  appearance: none;
  border: none;
  outline: none;
  background: #e1e1e1;
}

@media screen and (max-width: 768px) {
  .search-form__input {
    width: 28.4rem;
    height: 5rem;
    padding: 1rem;
    font-size: 1.6rem;
  }
}

.search-form__input::placeholder {
  color: #bbb;
}

@media screen and (max-width: 768px) {
  .search-form__input::placeholder {
    font-size: 1.2rem;
  }
}

.search-form__button {
  width: 13rem;
  height: 5rem;
  padding: 1rem 2rem;
  border-top-right-radius: 0.6rem;
  border-bottom-right-radius: 0.6rem;
  appearance: none;
  border: none;
  outline: none;
  background: #000;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.2em;
  cursor: pointer;
  transition: background-color 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 768px) {
  .search-form__button {
    width: 6rem;
    height: 5rem;
    padding: 1rem 0.5rem;
    letter-spacing: 0;
  }
}

@media (hover: hover) {
  .search-form__button:hover {
    background: #222;
  }
}

@media (hover: none) {
  .search-form__button:active {
    background: #222;
  }
}

.search-form__button span {
  position: relative;
  padding-left: 2.8rem;
}

@media screen and (max-width: 768px) {
  .search-form__button span {
    padding-left: 1.4rem;
  }
}

.search-form__button span::before {
  content: "";
  position: absolute;
  top: calc(50% - 0.9rem);
  left: 0;
  width: 1.8rem;
  height: 1.8rem;
  background: url(/mic21tv/assets/img/icn_search.svg) no-repeat center center/contain;
}

@media screen and (max-width: 768px) {
  .search-form__button span::before {
    top: calc(50% - 0.5rem);
    width: 1rem;
    height: 1rem;
  }
}

.search-form .awesomplete {
  color: #000;
  font-size: 1.4rem;
}

.search-form .awesomplete > ul {
  padding: 0.5rem 0;
  background: #fff;
}

.search-form .awesomplete > ul > li {
  padding: 0.5rem 1rem;
}

.search-result {
  width: 100%;
  max-width: 132.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-top: 4rem;
  padding: 2.5rem 2.5rem;
  background: #282828;
  display: none;
}

@media screen and (max-width: 768px) {
  .search-result {
    width: 100%;
    max-width: 36.4rem;
    margin-left: auto;
    margin-right: auto;
    margin-top: 2rem;
    padding: 1.5rem 1rem;
  }
}

.search-result.is-show {
  display: block;
}

.search-result__text {
  font-size: 2rem;
  line-height: 1.5;
}

@media screen and (max-width: 768px) {
  .search-result__text {
    font-size: 1.2rem;
  }
}

.search-result__text span {
  font-size: 2.2rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .search-result__text span {
    font-size: 1.4rem;
  }
}

.search-result__content {
  margin-top: 3rem;
  display: none;
}

@media screen and (max-width: 768px) {
  .search-result__content {
    margin-top: 2rem;
  }
}

.search-result__content.is-show {
  display: block;
}

.lineup {
  display: flex;
  flex-direction: column;
  gap: 6rem;
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .lineup {
    gap: 4rem;
    margin-top: 4rem;
  }
}

.lineup-category__heading {
  padding: 0 6rem;
  font-size: 3.2rem;
  font-weight: 700;
}

@media screen and (max-width: 768px) {
  .lineup-category__heading {
    padding: 0 2rem;
    font-size: 2.4rem;
  }
}

.lineup-category__lead {
  margin-top: 1rem;
  padding: 0 6rem;
  color: #bbb;
}

@media screen and (max-width: 768px) {
  .lineup-category__lead {
    margin-top: 0.5rem;
    padding: 0 2rem;
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 768px) {
  .lineup-category__lead br {
    display: none;
  }
}

.lineup-carousel {
  margin-top: 3rem;
  z-index: 0;
}

@media screen and (max-width: 768px) {
  .lineup-carousel {
    margin-top: 2rem;
  }
}

@media (hover: hover) {
  .lineup-carousel:hover {
    z-index: 9;
  }
  .lineup-carousel:hover .lineup-carousel__button {
    opacity: 1;
  }
}

@media (hover: none) {
  .lineup-carousel:active {
    z-index: 9;
  }
  .lineup-carousel:active .lineup-carousel__button {
    opacity: 1;
  }
}

.lineup-carousel__track {
  overflow: visible;
  position: relative;
  padding-left: 6rem;
}

@media screen and (max-width: 768px) {
  .lineup-carousel__track {
    overflow: auto;
    padding-left: 2rem;
  }
}

.lineup-carousel__button {
  position: absolute;
  top: 0;
  height: 100%;
  width: 6rem;
  appearance: none;
  outline: none;
  border: none;
  background: rgba(22, 24, 30, 0.8);
  font-size: 0;
  cursor: pointer;
  opacity: 0;
  transition: opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 768px) {
  .lineup-carousel__button {
    display: none;
  }
}

.lineup-carousel__button::before {
  content: "";
  position: absolute;
  top: calc(50% - 1.6rem);
  left: calc(50% - 0.95rem);
  width: 1.9rem;
  height: 3.2rem;
  background: url(/mic21tv/assets/img/arw_carousel.svg) no-repeat center center/contain;
}

.lineup-carousel__button--prev {
  left: 0;
}

.lineup-carousel__button--prev::before {
  transform: rotate(180deg);
}

.lineup-carousel__button--next {
  right: 0;
}

.lineup-carousel__button.glide__arrow--disabled {
  display: none;
}

.lineup-carousel .glide__slides {
  overflow: visible;
}

@media screen and (max-width: 768px) {
  .video-list.glide__slides {
    touch-action: initial;
  }
}

.video-list__item {
  position: relative;
  width: 32.5rem;
}

@media screen and (max-width: 768px) {
  .video-list__item {
    width: 25rem;
  }
}

@media (hover: hover) {
  .video-list__item:hover {
    z-index: 9;
  }
  .video-list__item:hover .video-list__image {
    scale: 1.333;
  }
  .video-list__item:hover .video-popup {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.05s, visibility 0.2s cubic-bezier(0.39, 0.575, 0.565, 1) 0.05s;
  }
}

.video-list__inner {
  padding-right: 2.5rem;
}

@media screen and (max-width: 768px) {
  .video-list__inner {
    padding-right: 1rem;
  }
}

.video-list__image {
  overflow: hidden;
  width: 30rem;
  height: 16.8rem;
  border-radius: 1.2rem;
  transition: scale 0.15s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 768px) {
  .video-list__image {
    width: 24rem;
    height: 13.4rem;
    border-radius: 0.8rem;
  }
}

.video-list__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-list__title {
  display: none;
}

@media screen and (max-width: 768px) {
  .video-list__title {
    display: block;
    margin-top: 1rem;
    padding-right: 1rem;
    font-size: 1.2rem;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
  }
}

.video-list__text {
  display: none;
}

@media screen and (max-width: 768px) {
  .video-list__text {
    display: block;
    margin-top: 0.3rem;
    padding-right: 1rem;
    color: #bbb;
    font-size: 1.2rem;
    overflow: hidden;
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    text-align: left;
  }
}

.video-list__text br {
  display: none;
}

.video-list--result {
  display: flex;
  flex-wrap: wrap;
  gap: 2.5rem;
}

@media screen and (max-width: 768px) {
  .video-list--result {
    gap: 1.5rem 1.2rem;
  }
}

.video-list--result .video-list__item {
  width: 30rem;
}

@media screen and (max-width: 768px) {
  .video-list--result .video-list__item {
    width: 16.6rem;
  }
}

.video-list--result .video-list__inner {
  padding-right: 0;
}

@media screen and (max-width: 768px) {
  .video-list--result .video-list__image {
    width: 16.6rem;
    height: 9.3rem;
    border-radius: 0.6rem;
  }
}

@media screen and (max-width: 768px) {
  .video-list--result .video-list__lead {
    margin-top: 0.6rem;
  }
}

.video-popup {
  overflow: hidden;
  position: absolute;
  top: -2.8rem;
  left: -5rem;
  width: 40rem;
  border-radius: 1.2rem;
  background: #000;
  box-shadow: 0 0 3rem rgba(0, 0, 0, 0.75);
  z-index: 99;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.1s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 768px) {
  .video-popup {
    display: none;
  }
}

.video-popup__image {
  overflow: hidden;
  position: relative;
  width: 40rem;
  height: 22.4rem;
}

.video-popup__thumb {
  width: 100%;
  height: 100%;
}

.video-popup__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.video-popup__video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}

.video-popup__video::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
}

.video-popup__video.is-playing {
  opacity: 1;
}

.video-popup__video iframe {
  width: 100%;
  height: 200%;
  transform: translateY(-25%);
}

.video-popup__content {
  padding: 2rem 2rem 2.5rem;
}

.video-popup__title {
  position: relative;
  min-height: 5rem;
  padding-left: 6.5rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.3;
  transition: color 0.1s cubic-bezier(0.39, 0.575, 0.565, 1);
}

.video-popup__title::before {
  content: "";
  position: absolute;
  top: calc(50% - 2.5rem);
  left: 0;
  width: 5rem;
  height: 5rem;
  background: url(/mic21tv/assets/img/icn_play.svg) no-repeat center center/contain;
}

@media (hover: hover) {
  .video-popup__title:hover {
    color: #bbb;
  }
}

@media (hover: none) {
  .video-popup__title:active {
    color: #bbb;
  }
}

.video-popup__text {
  margin-top: 1.2rem;
  color: #bbb;
  font-size: 1.4rem;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5rem;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s cubic-bezier(0.39, 0.575, 0.565, 1), visibility 0.2s cubic-bezier(0.39, 0.575, 0.565, 1);
}

@media screen and (max-width: 768px) {
  .modal {
    padding: 1rem;
  }
}

.modal.is-show {
  opacity: 1;
  visibility: visible;
}

.modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(22, 24, 30, 0.9);
  z-index: 0;
}

.modal__content {
  position: relative;
  width: 100%;
  max-width: 80rem;
  aspect-ratio: 800/450;
  z-index: 9;
}

@media screen and (max-width: 768px) {
  .modal__content {
    width: 36.4rem;
    max-width: 100%;
    aspect-ratio: unset;
  }
}

.modal__content::before {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 2rem);
  left: calc(50% - 2rem);
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  border: solid 0.4rem;
  border-color: #ffffff rgba(255, 255, 255, 0.062745098) rgba(255, 255, 255, 0.062745098);
  animation-name: spin;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

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

.modal__inner {
  position: relative;
  z-index: 9;
  width: 100%;
  height: 100%;
  background: #000;
}

@media screen and (max-width: 768px) {
  .modal__inner {
    overflow: hidden;
    border-radius: 1.2rem;
  }
}

.modal__player {
  position: relative;
  width: 100%;
  height: 100%;
  vertical-align: top;
  z-index: 9;
}

@media screen and (max-width: 768px) {
  .modal__player {
    height: 20.5rem;
  }
}

.modal__body {
  display: none;
}

@media screen and (max-width: 768px) {
  .modal__body {
    display: block;
    padding: 2rem 2rem 2.5rem;
  }
}

.modal__title {
  position: relative;
  font-size: 1.6rem;
  font-weight: 700;
}

.modal__text {
  margin-top: 0.5rem;
  color: #bbb;
  font-size: 1.2rem;
}

.modal__close {
  position: absolute;
  top: -6rem;
  right: 0;
  width: 5rem;
  height: 5rem;
  appearance: none;
  outline: none;
  border: none;
  border-radius: 50%;
  background: #fff;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .modal__close {
    top: -4rem;
    width: 3rem;
    height: 3rem;
  }
}

.modal__close::before, .modal__close::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.1rem);
  left: calc(50% - 1.2rem);
  width: 2.4rem;
  height: 0.2rem;
  background: #000;
  border-radius: 0.1rem;
}

@media screen and (max-width: 768px) {
  .modal__close::before, .modal__close::after {
    top: calc(50% - 0.1rem);
    left: calc(50% - 0.8rem);
    width: 1.6rem;
  }
}

.modal__close::before {
  transform: rotate(45deg);
}

.modal__close::after {
  transform: rotate(-45deg);
}

.helper-align-center {
  text-align: center;
}

.helper-mt-5 {
  margin-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-5 {
    margin-top: 0.375rem;
  }
}

.helper-mt-10 {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-10 {
    margin-top: 0.75rem;
  }
}

.helper-mt-15 {
  margin-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-15 {
    margin-top: 1.125rem;
  }
}

.helper-mt-20 {
  margin-top: 2rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-20 {
    margin-top: 1.5rem;
  }
}

.helper-mt-25 {
  margin-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-25 {
    margin-top: 1.875rem;
  }
}

.helper-mt-30 {
  margin-top: 3rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-30 {
    margin-top: 2.25rem;
  }
}

.helper-mt-35 {
  margin-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-35 {
    margin-top: 2.625rem;
  }
}

.helper-mt-40 {
  margin-top: 4rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-40 {
    margin-top: 3rem;
  }
}

.helper-mt-45 {
  margin-top: 4.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-45 {
    margin-top: 3.375rem;
  }
}

.helper-mt-50 {
  margin-top: 5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-50 {
    margin-top: 3.75rem;
  }
}

.helper-mt-55 {
  margin-top: 5.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-55 {
    margin-top: 4.125rem;
  }
}

.helper-mt-60 {
  margin-top: 6rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-60 {
    margin-top: 4.5rem;
  }
}

.helper-mt-65 {
  margin-top: 6.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-65 {
    margin-top: 4.875rem;
  }
}

.helper-mt-70 {
  margin-top: 7rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-70 {
    margin-top: 5.25rem;
  }
}

.helper-mt-75 {
  margin-top: 7.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-75 {
    margin-top: 5.625rem;
  }
}

.helper-mt-80 {
  margin-top: 8rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-80 {
    margin-top: 6rem;
  }
}

.helper-mt-85 {
  margin-top: 8.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-85 {
    margin-top: 6.375rem;
  }
}

.helper-mt-90 {
  margin-top: 9rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-90 {
    margin-top: 6.75rem;
  }
}

.helper-mt-95 {
  margin-top: 9.5rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-95 {
    margin-top: 7.125rem;
  }
}

.helper-mt-100 {
  margin-top: 10rem;
}

@media screen and (max-width: 768px) {
  .helper-mt-100 {
    margin-top: 7.5rem;
  }
}

.helper-mt-auto {
  margin-top: auto;
}

.helper-pt-5 {
  padding-top: 0.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-5 {
    padding-top: 0.375rem;
  }
}

.helper-pt-10 {
  padding-top: 1rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-10 {
    padding-top: 0.75rem;
  }
}

.helper-pt-15 {
  padding-top: 1.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-15 {
    padding-top: 1.125rem;
  }
}

.helper-pt-20 {
  padding-top: 2rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-20 {
    padding-top: 1.5rem;
  }
}

.helper-pt-25 {
  padding-top: 2.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-25 {
    padding-top: 1.875rem;
  }
}

.helper-pt-30 {
  padding-top: 3rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-30 {
    padding-top: 2.25rem;
  }
}

.helper-pt-35 {
  padding-top: 3.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-35 {
    padding-top: 2.625rem;
  }
}

.helper-pt-40 {
  padding-top: 4rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-40 {
    padding-top: 3rem;
  }
}

.helper-pt-45 {
  padding-top: 4.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-45 {
    padding-top: 3.375rem;
  }
}

.helper-pt-50 {
  padding-top: 5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-50 {
    padding-top: 3.75rem;
  }
}

.helper-pt-55 {
  padding-top: 5.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-55 {
    padding-top: 4.125rem;
  }
}

.helper-pt-60 {
  padding-top: 6rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-60 {
    padding-top: 4.5rem;
  }
}

.helper-pt-65 {
  padding-top: 6.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-65 {
    padding-top: 4.875rem;
  }
}

.helper-pt-70 {
  padding-top: 7rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-70 {
    padding-top: 5.25rem;
  }
}

.helper-pt-75 {
  padding-top: 7.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-75 {
    padding-top: 5.625rem;
  }
}

.helper-pt-80 {
  padding-top: 8rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-80 {
    padding-top: 6rem;
  }
}

.helper-pt-85 {
  padding-top: 8.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-85 {
    padding-top: 6.375rem;
  }
}

.helper-pt-90 {
  padding-top: 9rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-90 {
    padding-top: 6.75rem;
  }
}

.helper-pt-95 {
  padding-top: 9.5rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-95 {
    padding-top: 7.125rem;
  }
}

.helper-pt-100 {
  padding-top: 10rem;
}

@media screen and (max-width: 768px) {
  .helper-pt-100 {
    padding-top: 7.5rem;
  }
}

.helper-bg-sky {
  background: #e6effb;
}

.helper-bg-white {
  background: #fff;
}

.helper-bg-transparent {
  background: transparent;
}

.helper-border-white {
  border-color: #fff;
}

.helper-border-blue {
  border-color: #005cce;
}

.helper-border-transparent {
  border-color: transparent;
}

.helper-color-white {
  color: #fff;
}

.helper-color-blue {
  color: #005cce;
}

.helper-font-en {
  font-family: "Inter", sans-serif;
}

.helper-font-ja {
  font-family: "Noto Sans JP", sans-serif;
}

.helper-hide {
  display: none;
}

.helper-spacing001 {
  letter-spacing: 0.01em;
}

.helper-spacing002 {
  letter-spacing: 0.02em;
}

.helper-spacing003 {
  letter-spacing: 0.03em;
}

.helper-spacing004 {
  letter-spacing: 0.04em;
}

.helper-spacing005 {
  letter-spacing: 0.05em;
}

.helper-spacing006 {
  letter-spacing: 0.06em;
}

.helper-spacing007 {
  letter-spacing: 0.07em;
}

.helper-spacing008 {
  letter-spacing: 0.08em;
}

.helper-spacing009 {
  letter-spacing: 0.09em;
}

.helper-spacing010 {
  letter-spacing: 0.1em;
}

@media screen and (min-width: 769px) {
  .only-sp {
    display: none !important;
  }
}

@media screen and (max-width: 768px) {
  .only-pc {
    display: none !important;
  }
}