@charset "utf-8";

/* =======================================
	common
======================================= */
.pc {
  display: none;
}
.sp {
  display: block;
}

body {
  position: relative;
  width: 100%;
  min-height: 100dvh;
  margin: 0 auto;
  text-align: center;
  color: white;
  line-height: 1;
  font-family: "Zen Kaku Gothic New", sans-serif;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}
table {
  width: 100%;
}
tr,
td {
  vertical-align: top;
}

a {
  outline: none;
  text-decoration: underline;
}

a:link {
  color: white;
  text-decoration: none;
}
a:visited {
  color: white;
  text-decoration: none;
}
a:hover {
  color: white;
  text-decoration: none;
}
a:active {
  text-decoration: none;
}

main {
  width: 100%;
  max-width: 600px;
  overflow: hidden;
  margin: 0 auto;
  position: relative;
}

section {
  width: 100%;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

h2 {
  z-index: 1;
}

.inner {
  width: 94.2%;
  margin: 0 auto;
  position: relative;
}

.inner.w100 {
  width: 100%;
}

/* =======================================
	background
======================================= */
.bgBlue {
  background: #00419b url("../images/ptn_white.png") left top repeat;
  background-size: 4px;
  position: relative;
  z-index: 2;
  padding: 80px 20px;
  margin-top: -60px;
  margin-bottom: -60px;
  clip-path: polygon(
    0% 0%,
    10% 0%,
    20% clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem),
    80% clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem),
    90% 0%,
    100% 0%,
    100% 100%,
    90% 100%,
    80% calc(100% - clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem)),
    20% calc(100% - clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem)),
    10% 100%,
    0% 100%
  );
}

.bgBlue.is-top-only {
  margin-bottom: 0;
  clip-path: polygon(
    0% 0%,
    10% 0%,
    20% clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem),
    80% clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem),
    90% 0%,
    100% 0%,
    100% 100%,
    0% 100%
  );
}

.bgBlue.is-bottom-only {
  margin-top: 0;
  clip-path: polygon(
    0% 0%,
    100% 0%,
    100% 100%,
    90% 100%,
    80% calc(100% - clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem)),
    20% calc(100% - clamp(1.875rem, 0.446rem + 7.14vw, 3.125rem)),
    10% 100%,
    0% 100%
  );
}

.bgWhite {
  z-index: 1;
  background: white url("../images/ptn_blue.png") left top repeat;
  background-size: 4px;
}

/* =======================================
	header
======================================= */
header {
  position: relative;
  width: 100%;
  height: 0;
  background: url("../images/header.jpg") left top no-repeat;
  padding-top: calc(1126 / 828 * 100%);
  background-size: cover;
}

.about-btn {
  position: absolute;
  bottom: 20%;
  right: 2%;
  width: 51%;
}

.play-movie {
  position: absolute;
  bottom: 37%;
  left: 3%;
  width: 18%;
}

.play-movie img {
  animation: rotateClockwise 16s linear infinite;
}

@keyframes rotateClockwise {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}

.btn_cpn {
  position: absolute;
  width: 18.5%;
  bottom: 21.5%;
  left: 2.5%;
}

.btn_youtube {
  position: absolute;
  width: 14%;
  top: calc(2% + 60px);
  right: 0;
}

.btn_x {
  position: absolute;
  width: 14%;
  top: calc(9.6% + 60px);
  right: 0;
}

.btn_discord {
  position: absolute;
  width: 14%;
  top: calc(17% + 60px);
  right: 0;
}

.btn_sp_fixed {
  z-index: 100;
  position: fixed;
  bottom: 3%;
  left: 2%;
}

.btn_sp_fixed ul {
  display: flex;
  flex-direction: column;
  gap: 3vh;
}

.btn_sp_fixed a {
  display: block;
  width: clamp(4.5rem, 1.071rem + 17.14vw, 7.5rem);
  height: clamp(4.5rem, 1.071rem + 17.14vw, 7.5rem);
}

.sns-icons {
  z-index: 100;
  position: fixed;
  right: 0;
}

.sns-icons ul {
  display: flex;
  flex-direction: column;
  gap: clamp(0.438rem, 0.223rem + 1.07vw, 0.625rem);
}

.sns-icons li {
  transform: translateX(100%);
  opacity: 0;
}

.sns-icons a {
  width: clamp(2.25rem, 0.964rem + 6.43vw, 3.375rem);
  display: block;
}

/* =======================================
	navigation
======================================= */
nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  width: 100%;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
  background: transparent;
  box-shadow: none;
  z-index: 10;
  overflow: visible;
}

nav.fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}

nav ul {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2.4%;
}

.menu-logo {
  width: 75%;
  margin-left: 0;
}

.hamburger {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 1001;
  width: clamp(3.5rem, 1.071rem + 12.14vw, 5.625rem);
  height: clamp(1.75rem, 0.536rem + 6.07vw, 2.813rem);
  margin: 0;
  padding: 0;
  cursor: pointer;
  border: none;
  background: #000;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: clamp(0.375rem, 0.089rem + 1.43vw, 0.625rem);
  transition: opacity 0.3s ease;
}

.hamburger span {
  display: block;
  width: clamp(2.5rem, 1.071rem + 7.14vw, 3.75rem);
  height: 2px;
  background: #fff;
}

.navigation {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: calc(var(--vh) * 100);
  background-image:
    url("../images/top_bar.png"), url("../images/bottom_bar.png"), url("../images/menu_bg.jpg");
  background-position:
    left top,
    left bottom,
    center top;
  background-repeat: no-repeat;
  background-size:
    100% auto,
    100% auto,
    cover;
  z-index: 999;
  transition: clip-path 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow-x: hidden;
  /* 上から開く：下端を100%クリップした状態から表示 */
  clip-path: inset(0 0 100% 0);
  -webkit-clip-path: inset(0 0 100% 0);
  /* 下端のフェード効果 */
  mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, black 85%, transparent 100%);
}

.navigation.active {
  clip-path: inset(0 0 0 0);
  -webkit-clip-path: inset(0 0 0 0);
}

/* 完全表示時は下端フェードを解除 */
.navigation.active.nav-fully-open {
  mask-image: none;
  -webkit-mask-image: none;
}

.navigation-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 18%;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

.navigation-close:hover {
  background-color: rgba(255, 255, 255, 0.1);
}

.navigation ul {
  width: 90%;
  margin: 0 auto;
}

.navigation ul li {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.navigation ul li:not(:first-child) {
  margin-top: 3vh;
}

.navigation ul li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1vh 3.2%;
}

.navigation ul li:not(:first-child) img {
  width: auto;
  height: 4.5vh;
  transition: transform 0.3s ease;
}

/* =======================================
	download
======================================= */
.download {
  position: relative;
  width: 100%;
  padding: 6% 0 18%;
}

.download-title {
  width: 100%;
  margin: 0 auto 3%;
}

.download-button {
  width: 78.66%;
  margin: 0 auto 2%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3%;
}

.download-button li:first-child {
  margin-right: 1%;
}

.download-link {
  width: 83.8%;
  margin: 0 auto;
}

/* =======================================
	chara
======================================= */
.chara-section {
  position: relative;
  width: 100%;
  padding: clamp(10px, -6.429vw + 48.571px, 28px) 0 clamp(5.125rem, 4.268rem + 4.29vw, 5.875rem);
}

.chara-section h2 {
  width: 100%;
  margin: 0 auto 4%;
  position: relative;
}

.characters-wrap {
  width: 100%;
  position: relative;
  background: url("../images/mark.png") center top no-repeat;
  background-size: 88% auto;
}

.characters {
  width: 100%;
}

.voice {
  position: absolute;
  bottom: 22%;
  right: 10%;
  width: 15%;
  height: 0;
  padding-top: calc(130 / 127 * 15%);
  background: url("../images/voice_btn_on.png") left top no-repeat;
  background-size: cover;
}

.voice.nowplaying {
  background: url("../images/voice_btn_off.png") left top no-repeat;
  background-size: cover;
}

.pv {
  width: 90%;
  height: 0;
  margin: 0 auto 6%;
  padding-top: calc(1080 / 1920 * 90%);
  position: relative;
}

.pv img {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}

.pv video {
  width: 100%;
  margin: auto;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 5px solid #00419b;
}

.comingsoon {
  width: 75%;
  margin: 7% auto 0;
  position: relative;
}

.chara-skills {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: clamp(1.75rem, 0.179rem + 7.86vw, 3.125rem);
}

/* =======================================
	okigae
======================================= */
.okigae-section {
  position: relative;
  width: 100%;
  padding: clamp(3.125rem, 0.696rem + 12.14vw, 5.25rem) 0 18%;
}

.okigae-section h2 {
  width: 100%;
  margin: 0 auto 4%;
  position: relative;
  padding-bottom: 8%;
}

.okigae-section h2 img {
  transform: scale(1.3);
}

.okigae01 {
  width: 100%;
  position: relative;
  margin: 0 auto 2%;
}

.okigae01 .voice {
  bottom: 18%;
  right: 10%;
}

.okigae02 {
  width: 100%;
  position: relative;
  margin: 0 auto 8%;
  padding-left: 2.5%;
}

.okigae02 .voice {
  bottom: 20%;
  left: 10%;
  right: auto;
}

.okigae03 {
  width: 100%;
  position: relative;
  margin: 0 auto;
}

/* =======================================
	voicepack
======================================= */
.voicepack-section {
  position: relative;
  width: 100%;
  padding: clamp(26px, -5vw + 56px, 40px) 0 18%;
}

.voicepack-section h2 {
  width: 100%;
  margin: 0 auto;
  position: relative;
  padding-bottom: 5%;
}

.voicepack-section h2 img {
  transform: scale(1.21);
}

/* =======================================
	event
======================================= */
.event-section {
  position: relative;
  width: 100%;
  padding: clamp(3.125rem, 0.696rem + 12.14vw, 5.25rem) 0 20%;
}

.event-section h2 {
  width: 100%;
  margin: 0 auto 10%;
  position: relative;
}

.event-section h2 img {
  transform: scale(1.3);
}

.event01,
.event02,
.event03,
.event04,
.event05,
.event06,
.event07,
.event08,
.event09 {
  position: relative;
  width: 100%;
  height: 0;
}

.event01,
.event02,
.event03,
.event04,
.event05,
.event06,
.event07,
.event08 {
  margin-bottom: 7%;
}

.event01 {
  padding-top: calc(1139 / 828 * 100%);
  background: url("../full/images/event_01_bg.png") left top no-repeat;
  background-size: cover;
}

.event02 {
  padding-top: calc(1139 / 828 * 100%);
  background: url("../full/images/event_02_bg.png") left top no-repeat;
  background-size: cover;
}

.event03 {
  padding-top: calc(1139 / 828 * 100%);
  background: url("../full/images/event_03_bg.png") left top no-repeat;
  background-size: cover;
}
.event04 {
  padding-top: calc(1139 / 828 * 100%);
  background: url("../full/images/event_04_bg.png") left top no-repeat;
  background-size: cover;
}

.event05 {
  padding-top: calc(640 / 789 * 100%);
  background: url("../full/images/event_05_bg.png") left top no-repeat;
  background-size: cover;
}

.event06 {
  padding-top: calc(640 / 789 * 100%);
  background: url("../full/images/event_06_bg.png") left top no-repeat;
  background-size: cover;
}

.event07 {
  padding-top: calc(640 / 789 * 100%);
  background: url("../full/images/event_07_bg.png") left top no-repeat;
  background-size: cover;
}

.event08 {
  padding-top: calc(640 / 789 * 100%);
  background: url("../full/images/event_08_bg.png") left top no-repeat;
  background-size: cover;
}

.event09 {
  padding-top: calc(650 / 789 * 100%);
  background: url("../full/images/event_09_bg.png") left top no-repeat;
  background-size: cover;
}

/* =======================================
	cp
======================================= */
.cp-section {
  position: relative;
  width: 100%;
  padding: clamp(26px, -5vw + 56px, 40px) 0 20%;
}

.cp-section h2 {
  width: 100%;
  margin: 0 auto 1%;
  position: relative;
}

.cp-section h2 img {
  transform: scale(1.26);
}

.cp01,
.cp02,
.cp03,
.cp04 {
  position: relative;
  width: 100%;
  margin: 0 auto;
  height: 0;
}

.cp01 {
  margin: 0 auto 5%;
  width: 96.7%;
  padding-top: calc(1743 / 801 * 96.7%);
  background: url("../images/cp01.png") left top no-repeat;
  background-size: cover;
}

.cp02 {
  margin: 0 auto 5%;
  width: 96.7%;
  padding-top: calc(1583 / 801 * 96.7%);
  background: url("../full/images/cp02.png") left top no-repeat;
  background-size: cover;
}

.cp03 {
  margin: 0 auto 5%;
  width: 96.7%;
  padding-top: calc(1583 / 801 * 96.7%);
  background: url("../full/images/cp03.png") left top no-repeat;
  background-size: cover;
}

.cp04 {
  width: 96.7%;
  padding-top: calc(792 / 801 * 96.7%);
  background: url("../images/cp04.png") left top no-repeat;
  background-size: cover;
}

.cpBtns {
  width: 85%;
  position: absolute;
  bottom: -1.5%;
  left: 0;
  right: 0;
  margin: 0 auto 10%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: start;
}

.cpBtns.cp2Btn {
  margin: 0 auto;
  bottom: 2.7%;
}

.cpBtns li:nth-child(1) {
  width: 100%;
  margin: 0 auto 2%;
}

.cpBtns li:nth-child(2) {
  width: 40%;
  margin: 0 auto;
}

.cpBtns li:nth-child(3) {
  width: 56%;
  margin: 0 auto;
}

/* =======================================
	movie
======================================= */
.movie-section {
  position: relative;
  width: 100%;
  padding: clamp(2.25rem, 0.25rem + 10vw, 4rem) 0 6.8%;
}

.movie-section h2 {
  width: 100%;
  margin: 0 auto 3%;
  position: relative;
}

.movie-section h2 img {
  transform: scale(1.3);
}

.copyright {
  color: black;
  background: white;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  margin: 0 auto;
  padding: 2.5em 0 2em;
  font-size: clamp(0.48rem, 2.4vw, 0.9rem);
}

/* =======================================
	footer
======================================= */
footer {
  width: 100%;
  margin: 0 auto;
}

footer ul.foot-menu {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  padding: 1em 0;
  background: black;
  border-top: clamp(0.125rem, -0.018rem + 0.71vw, 0.25rem) solid gainsboro;
  border-bottom: clamp(0.125rem, -0.018rem + 0.71vw, 0.25rem) solid gainsboro;
}

footer ul.foot-menu li {
  display: flex;
  align-items: center;
  padding: 0 5%;
  border-right: 2px solid gainsboro;
}

footer ul.foot-menu li:nth-child(3),
footer ul.foot-menu li:last-child {
  border: none;
}

footer ul.foot-menu li.flexwrapper {
  width: 100%;
  height: 2vh;
  border: none;
}

footer ul.foot-menu li img {
  vertical-align: middle;
  height: clamp(0.875rem, 0.018rem + 4.29vw, 1.625rem);
  padding: 0;
}

.foot-etc {
  width: 100%;
  margin: 0 auto;
  padding: 1em 0 1.5em;
  background: black;
}

.foot-buttons {
  width: 95.16%;
  margin: 0 auto 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.54%;
}

.foot-spec {
  width: 84.54%;
  margin: 0 auto 5%;
  display: flex;
  justify-content: center;
  align-items: start;
  gap: 2.85%;
}

.foot-spec li:nth-child(1) {
  width: 12.85%;
}

.foot-spec li:nth-child(2) {
  flex: 1;
  text-align: left;
  font-size: clamp(0.563rem, 0.134rem + 2.14vw, 0.938rem);
  line-height: 1.4;
}

.foot-spec li:nth-child(2) span {
  display: inline-block;
  margin-left: 5em;
}

.foot-bars {
  width: 100%;
  margin: 0 auto;
}

.foot-bars li {
  width: 100%;
  text-align: left;
  border-bottom: 1px solid gainsboro;
  position: relative;
}

.foot-bars li:first-child {
  border-top: 1px solid gainsboro;
}

.foot-bars li a {
  display: block;
  padding: clamp(0.75rem, 0.321rem + 2.14vw, 1.125rem) 5%;
  font-size: clamp(0.625rem, 0.196rem + 2.14vw, 1rem);
}

.foot-bars li a::after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f054";
  position: absolute;
  right: 5%;
  color: #888;
}

.foot-logo {
  width: 18%;
  margin: 4% auto 0;
}

.foot-copyright {
  width: 100%;
  margin: 0 auto;
  padding: 1em 0;
  text-align: center;
  font-size: clamp(0.5rem, 0.271rem + 1.14vw, 0.7rem);
  line-height: 1.4;
}

.gototop {
  z-index: 100;
  position: fixed;
  bottom: 5%;
  right: 3%;
}

.gototop a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: clamp(2.4rem, 1.029rem + 6.86vw, 3.6rem);
  height: clamp(2.4rem, 1.029rem + 6.86vw, 3.6rem);
  color: #2e2e2e;
  text-align: center;
  font-size: clamp(1rem, 0.314rem + 3.43vw, 1.6rem);
  text-decoration: none;
  background: white;
  border-radius: 50%;
}

@media screen and (min-width: 601px) {
  button,
  .mySwiper01Thumb .swiper-slide,
  .mySwiper02 .swiper-slide,
  .cpBtns a,
  .gototop a {
    cursor: pointer;
  }

  a,
  button,
  .swiper-button-prev01,
  .swiper-button-next01,
  .swiper-button-prevEV1,
  .swiper-button-nextEV1,
  .swiper-button-prevEV2,
  .swiper-button-nextEV2,
  .swiper-button-prevEV3,
  .swiper-button-nextEV3,
  .swiper-button-prevEV4,
  .swiper-button-nextEV4,
  .swiper-button-prevMOVIE,
  .swiper-button-nextMOVIE {
    cursor: pointer;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .swiper-button-prev01:hover,
  .swiper-button-next01:hover,
  .swiper-button-prevEV1:hover,
  .swiper-button-nextEV1:hover,
  .swiper-button-prevEV2:hover,
  .swiper-button-nextEV2:hover,
  .swiper-button-prevEV3:hover,
  .swiper-button-nextEV3:hover,
  .swiper-button-prevEV4:hover,
  .swiper-button-nextEV4:hover,
  .swiper-button-prevMOVIE:hover,
  .swiper-button-nextMOVIE:hover,
  .comingsoon a:hover,
  .download a:hover,
  .cpBtns a:hover,
  .foot-menu a:hover,
  .foot-buttons a:hover,
  .foot-bars a:hover,
  .gototop a:hover {
    -moz-opacity: 0.5;
    opacity: 0.5;
  }

  .banners a img,
  .play-movie a img,
  .sns-icons a img,
  .main-visual-btns a img {
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .banners a img:hover,
  .play-movie a img:hover,
  .sns-icons a img:hover,
  .main-visual-btns a img:hover {
    scale: 1.1;
  }

  .pc {
    display: block;
  }
  .sp {
    display: none;
  }

  body {
    overflow-x: hidden;
  }

  nav {
    display: none;
  }

  .pc-wrapper {
    position: relative;
    width: 100%;
    min-height: calc(var(--vh) * 100);
    margin: 0 auto;
    display: flex;
  }

  aside.sideL {
    position: sticky;
    top: 0;
    height: 100vh;
    padding: 0 20px;
    flex: 54 1 0;
    order: 1;
    background-color: white;
    background-image:
      url("../images/mark_chain.png"), url("../images/bgtxt.png"), url("../images/ptn_blue.png");
    background-position:
      right center,
      right center,
      left top;
    background-repeat: no-repeat, no-repeat, repeat;
    background-size:
      auto 45%,
      auto 100%,
      4px;
    overflow: hidden;
  }

  main {
    width: 600px;
    flex: 0 0 600px;
    order: 2;
    overflow: visible;
    box-shadow:
      -6px 0 6px -4px rgba(0, 0, 0, 0.4),
      6px 0 6px -4px rgba(0, 0, 0, 0.4);
    z-index: 99;
  }

  aside.sideR {
    position: sticky;
    top: 0;
    height: 100vh;
    flex: 46 1 0;
    order: 3;
    background-color: #00419b;
    background-image: url("../images/white_chain.png"), url("../images/ptn_white.png");
    background-position:
      left 80%,
      left top;
    background-repeat: no-repeat, repeat;
    background-size:
      100% auto,
      4px;
    overflow: hidden;
  }

  .main-visual {
    width: 100%;
    min-width: 320px;
    max-width: 615px;
    height: 100%;
    margin-left: auto;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 5%;
    justify-content: center;
    align-items: center;
  }

  .main-visual-btns {
    width: 72%;
    margin: 0 auto;
  }

  .menu-list {
    width: 100%;
    min-width: 400px;
    max-width: 596px;
    position: absolute;
    top: 20%;
    left: 20px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    text-align: left;
  }

  .menu-list li {
    position: relative;
    width: 100%;
    margin: 0 auto;
  }

  .menu-list li:not(:last-child) {
    margin-bottom: 30px;
  }

  .menu-img-wrap {
    position: relative;
    display: inline-block;
  }

  .menu-img-wrap img {
    width: auto;
    height: 30px;
    display: block;
  }

  .menu-img-on {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.25s ease;
    pointer-events: none;
  }

  .menu-list li a:hover .menu-img-on {
    opacity: 1;
  }

  .gototop {
    right: auto;
    left: calc(54% + 300px + 20px);
    bottom: 5%;
  }

  .banners {
    width: 120px;
    position: absolute;
    bottom: 5%;
    right: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .banners li {
    opacity: 0;
    transform: translateX(-50px);
  }

  .play-movie {
    bottom: 27%;
  }
}
