@charset "utf-8";
/* 変数 */
:root {
  --scale-unit: calc(100vw / 375);
}
.mv__box {
  width: 1200px;
  height: 1035px;
  margin: 0 auto;
  position: relative;
}
.mv__kv {
  width: 754px;
  margin-left: auto;
  position: absolute;
  top: 0;
  right: 0;
}
.mv__kv-inner {
  /* width: 754px;
  height: 1035px; */
  position: relative;
}
.mv__kv-img-wrap {
  width: 754px;
  height: 1035px;
  position: relative;
}
.mv__kv-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1000ms ease;
  z-index: 1;
}
.mv__kv-img.is-active {
  opacity: 1;
  z-index: 2;
}
.mv__kv-thumbnail-wrap {
  width: 150px;
  position: sticky;
  bottom: 10px;
  right: 0;
  left: 0;
  margin-left: auto;
  z-index: 10;
}
.mv__thumbnail-text {
  text-align: center;
  color: #fff;
  font-size: 12px;
  letter-spacing: -0.01em;
  line-height: 1.5;
}
.mv__thumbnail-img-wrap {
  margin-top: 10px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}
.mv__thumbnail-img {
  box-sizing: border-box;
  border: 1px solid #F00014;
  cursor: pointer;
  width: 64px;
  height: 64px;
  position: relative;
  z-index: 1;
  opacity: 1;
  transition: opacity 0.3s ease;
}
.mv__thumbnail-img:hover {
  opacity: 0.6;
}
.mv__thumbnail-img.is-active {
  border: 1px solid #F07800;
  pointer-events: none;
}
.mv__thumbnail-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.mv__thumbnail-img::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(240, 0, 20, 0.6);
  z-index: 2;
  pointer-events: none;
  opacity: 0; /* 非表示状態 */
  transition: opacity 0.3s ease;
}
.mv__thumbnail-img.is-active::before {
  opacity: 1; /* 表示させたい時に表示 */
}
.mv__sticky {
  position: sticky;
  top: 40px;
  left: 0;
}
.mv__logo-inner {
  display: block;
  width: 280px;
  -webkit-transform-origin: top left;
  -moz-transform-origin: top left;
  -o-transform-origin: top left;
  -ms-transform-origin: top left;
  transform-origin: top left;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  -webkit-transition: -webkit-transform 300ms ease;
  -moz-transition: -moz-transform 300ms ease;
  -o-transition: -o-transform 300ms ease;
  -ms-transition: -ms-transform 300ms ease;
  transition: transform 300ms ease;
  z-index: 900;
}
.mv__logo-inner:hover {
  -webkit-transform: scale(1.04);
  -moz-transform: scale(1.04);
  -o-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04);
}
.mv__copy {
  margin-top: 100px;
  /* margin-left: 50px; */
  width: 420px;
}
.mv__bnr {
  display: block;
  width: 420px;
  margin-top: 30px;
  transition: opacity 300ms ease;
  /* pointer-events: none; */
}
.mv__bnr:hover {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.mv__link {
  margin-top: 10px;
  position: relative;
  width: 123px;
  height: auto;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  -webkit-transition: -webkit-transform 300ms ease;
  -moz-transition: -moz-transform 300ms ease;
  -o-transition: -o-transform 300ms ease;
  -ms-transition: -ms-transform 300ms ease;
  transition: transform 300ms ease;
}
.mv__link:hover {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -o-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}
.mv__link:hover .mv__link-bg {
  opacity: 0.5;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: alpha(opacity=50);
}
.mv__link a {
  width: 125px;
  display: block;
  position: relative;
  z-index: 1;
}
.mv__link-textWrap {
  position: absolute;
  top: 36px;
  left: 42px;
}
.mv__link-img {
  width: 30px;
  margin: 0 auto 5px;
}
.mv__link-text {
  text-align: center;
  color: #fff;
  font-size: 13px;
  line-height: 1.384615384615385;
  letter-spacing: -0.05em;
}
.mv__link-bg {
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -o-transform-origin: center center;
  -ms-transform-origin: center center;
  transform-origin: center center;
}
@media screen and (max-width: 736px) {
  .mv__box {
    width: 100vw;
    height: auto;
  }
  .mv__kv {
    width: 100%;
    position: static;
  }
  .mv__kv-img-wrap {
    width: 100vw;
    height: calc(530 * var(--scale-unit));
  }
  .mv__kv-thumbnail-wrap {
    width: 40px;
    position: absolute;
    right: calc(10 * var(--scale-unit));
    left: auto;
    bottom: calc(10 * var(--scale-unit));
    margin-left: 0;
  }
  .mv__thumbnail-text {
    font-size: 10px;
    line-height: 1.2;
  }
  .mv__thumbnail-img-wrap {
    margin-top: calc(8 * var(--scale-unit));
    flex-direction: column;
    gap: 4px;
  }
  .mv__thumbnail-img {
    width: 32px;
    height: 32px;
  }
  .mv__thumbnail-img:hover {
    opacity: 1;
  }
  .mv__sticky {
    position: static;
  }
  .mv__copy {
    width: 80vw;
    margin: 8.53333333vw auto 0;
  }
  .mv__bnr {
    width: 89.33333333333333vw;
    margin: 8.53333333vw auto 0;
  }
  .mv__bnr:hover {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  .mv__link {
    width: 26.133333333333333vw;
    margin-top: 2.66666667vw;
    margin-left: auto;
    margin-right: 8.8vw;
  }
  .mv__link:hover {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -o-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  .mv__link:hover .mv__link-bg {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  .mv__link a {
    width: 29.333333333333332vw;
  }
  .mv__link-textWrap {
    top: 8vw;
    left: 8vw;
  }
  .mv__link-img {
    width: 6.4vw;
    margin: 0 auto 0.8vw;
  }
  .mv__link-text {
    font-size: 3.733333333333333vw;
  }
}

.movie {
  padding: 160px 0 0;
}
@media (max-width: 736px) {
  .movie {
    padding: 12.8vw 0 0;
  }
}
.movie__title {
  width: 310px;
}
@media (max-width: 736px) {
  .movie__title {
    width: 140px;
  }
}
.movie__lists {
  margin-top: 56px;
  max-width: 1200px;
  margin: 56px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 40px;
  row-gap: 48px;
}
@media (max-width: 736px) {
  .movie__lists {
    grid-template-columns: 1fr;
    column-gap: 0;
    row-gap: 24px;
    margin-top: 45px;
    padding: 0 calc(20 * var(--scale-unit));
  }
}
.movie__link {
  position: relative;
  padding: 0;
  margin: 0;
  border: none;
  margin-top: 56px;
}
.movie__link:hover .movie__image-wrap::after {
  opacity: 0;
}
.movie__link:hover .movie__play-button-image {
  transform: translate(-50%, -50%) scale(.9);
}
@media (max-width: 736px) {
  .movie__link {
    margin-top: 8.53333333vw;
  }
  .movie__link:hover .movie__image-wrap::after {
    opacity: 1;
  }
  .movie__link:hover .movie__play-button-image {
    transform: translate(-50%, -50%) scale(1);
  }
}
.movie__image-wrap {
  position: relative;
}
.movie__image-wrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s;
  background-color: rgba(0, 0, 0, 0.5);
  pointer-events: none;
}
.movie__image,
.movie__play-button-image {
  height: auto;
}
.movie__image {
  position: relative;
}
.movie__play-button-image {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 160px;
  height: 160px;
  transition: transform 0.3s;
}
@media (max-width: 736px) {
  .movie__play-button-image {
    width: 14.93333333vw;
    height: 14.93333333vw;
  }
}

.top-movie {
  text-align: center;
}
.top-movie .movie__image-wrap {
  width: 1100px;
}
@media (max-width: 736px) {
  .top-movie .movie__image-wrap {
    width: 89.33333333333333vw;
  }
}
.top-movie .movie__image {
  aspect-ratio: 1.78 / 1;
  object-fit: cover;
}
.top-movie #youtube_wrap {
  max-width: 800px;
  margin-top: 64px;
}

/* dialog */

button {
  cursor: pointer;
}
.dialog {
  box-sizing: border-box;
  width: 70%;
  max-width: 1000px;
  margin: auto;
  padding: 16px;
  border: 0;
  transition: opacity 0.3s, transform 0.3s;
}
@media (max-width: 736px) {
  .dialog {
    width: 100%;
    padding: 0;
  }
}
.dialog > iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}
.dialog.closing {
  opacity: 0;
  transform: scale(0.9);
}
.dialog::backdrop {
  opacity: 0.8;
  background: #000;
  transition: opacity 0.3s;
}
.dialog.closing::backdrop {
  opacity: 0;
}
.movie__video-dialog {
  padding: 0;
  background-color: transparent;
}
.dialog-close-button {
  padding: 0;
  margin: 20px auto 0;
  width: 70px;
  height: 70px;
  background-color: transparent;
  border: none;
  position: relative;
  display: block;
  margin-left: auto;
  overflow: hidden;
}
@media (max-width: 736px) {
  .dialog-close-button {
    width: 60px;
    height: 60px;
  }
}
.dli-close,
.dli-close::after {
  width: 70px;
  height: 1px;
  display: inline-block;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
@media (max-width: 736px) {
  .dli-close,
  .dli-close::after {
    width: 60px;
  }
}
.dli-close::after {
  content: "";
  transform: translate(-50%, -50%) rotate(-90deg);
}
@media (max-width: 736px) {
  .dialog {
    width: 100%;
    padding: 0;
  }
}







.news {
  padding: 160px 0 0;
}
.news__title {
  width: 270px;
}
.news__lists {
  margin-top: 40px;
}
.news__list {
  width: 1200px;
  margin: 0 auto;
}
.news__list:not(:first-child) {
  margin: 20px auto 0;
}
.news__list:hover p {
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
  filter: alpha(opacity=70);
}
.news__list:hover img {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.news__date {
  color: #f00014;
  font-size: 18px;
  line-height: 1.2;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.news__date p {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  -ms-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.news__date img {
  margin-left: 5px;
  width: 60px;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  -ms-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
.news__text {
  color: #fff;
  font-size: 20px;
  line-height: 1.6;
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: opacity 300ms ease;
  -moz-transition: opacity 300ms ease;
  -o-transition: opacity 300ms ease;
  -ms-transition: opacity 300ms ease;
  transition: opacity 300ms ease;
}
@media screen and (max-width: 736px) {
  .news {
    padding: 13.866666666666667vw 0 0;
  }
  .news__title {
    width: 32vw;
  }
  .news__lists {
    margin-top: 5.333333333333333vw;
  }
  .news__list {
    width: 89.33333333333333vw;
    border-bottom: solid 1px rgba(255, 255, 255, 0.6);
  }
  .news__list:not(:first-child) {
    margin: 3.2vw auto 0;
  }
  .news__list:hover p {
    opacity: 1;
    -ms-filter: none;
    filter: none;
  }
  .news__list:hover img {
    opacity: 0;
    -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
    filter: alpha(opacity=0);
  }
  .news__date {
    font-size: 4.266666666666667vw;
  }
  .news__text {
    font-size: 4.8vw;
    line-height: 1.611111111111111;
    padding-bottom: 4.8vw;
  }
}
.introduction {
  padding: 160px 0 0;
}
.introduction__title {
  width: 745px;
}
.introduction__contents {
  padding: 80px 0 100px;
  margin-top: -45px;
  background: url("../../assets/images/introduction/bg.png") no-repeat
    center/cover;
}
.introduction__text-wrap {
  width: 1200px;
  margin: 0 auto;
}
@media screen and (max-width: 736px) {
  .introduction {
    padding: 21.866666666666667vw 0 0;
  }
  .introduction__title {
    width: 86.66666666666667vw;
  }
  .introduction__contents {
    padding: 10.666666666666666vw 0;
    margin-top: -5.333333333333333vw;
    background: url("../../assets/images/introduction/bg-sp.png") no-repeat
      center/cover;
  }
  .introduction__text-wrap {
    width: 89.33333333333333vw;
  }
}
.staff {
  padding: 160px 0 80px;
}
.staff__title {
  width: 310px;
}
.staff__contents {
  margin: -30px auto 0;
  width: 1100px;
  padding: 80px 0;
  background-color: rgba(0,0,0,0.6);
}
.staff__credit {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px 60px;
}
.staff__flex {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.staff__flex-column {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -o-box-orient: vertical;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.staff__flex:not(:first-child) {
  margin-top: 40px;
}
.staff__item {
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.staff__item.no-wrap {
  white-space: nowrap;
}
.staff__item-marginLeft {
  margin-left: 50px;
}
.staff__label {
  color: #fff;
  font-size: 16px;
  letter-spacing: 0;
  line-height: 1.45;
}
.staff__label.large {
  font-size: 20px;
  padding-top: 1px;
}
.staff__label.red {
  color: #f00014;
}
.staff__label.orange {
  color: #f07800;
}
.staff__name {
  margin-left: 10px;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0;
  line-height: 1.5;
}
.staff__name.large {
  font-size: 32px;
}
.staff__name > .small {
  font-size: 16px;
}
.staff__supplement {
  color: #fff;
  font-size: 16px;
  text-align: center;
}
.staff__btn {
  margin-left: 10px;
}
@media screen and (max-width: 736px) {
  .staff {
    padding: 21.333333333333332vw 0 10.666666666666666vw;
  }
  .staff__title {
    width: 36.266666666666666vw;
  }
  .staff__contents {
    margin: -2.666666666666667vw auto 0;
    width: 89.33333333333333vw;
    padding: 10.666666666666666vw 0 7.2vw;
  }
  .staff__credit {
    margin-top: 8.533333333333333vw;
    grid-template-columns: 1fr;
    width: 80vw;
    gap: 5.333333333333333vw;
  }
  .staff__flex {
    display: block;
  }
  .staff__flex:not(:first-child) {
    margin-top: 6.666666666666667vw;
  }
  .staff__item {
    display: block;
  }
  .staff__item-marginLeft {
    margin-left: 0;
  }
  .staff__item-marginTop {
    margin-top: 2.666666666666667vw;
  }
  .staff__label {
    display: block;
    font-size: 4.266666666666667vw;
    line-height: 1;
  }
  .staff__label.large {
    font-size: 4.266666666666667vw;
    padding-top: 0;
  }
  .staff__name {
    display: inline-block;
    margin-left: 0;
    margin-top: 2.666666666666667vw;
    font-size: 5.333333333333333vw;
    line-height: 1;
  }
  .staff__name.large {
    font-size: 5.333333333333333vw;
    padding-top: 0;
  }
  .staff__name > .small {
    font-size: 4.266666666666667vw;
  }
  .staff__supplement {
    margin-left: 0;
    margin-top: 2.666666666666667vw;
    font-size: 4.266666666666667vw;
    line-height: 1.5;
    text-align: left;
  }
  .staff__btn {
    display: inline-block;
    margin-left: 0;
  }
}
.cast {
  padding: 80px 0 180px;
}
.cast__title {
  width: 270px;
}
.cast__contents {
  margin: -30px auto 0;
  background-color: rgba(0,0,0,0.6);
  width: 1200px;
  padding: 70px 0 80px;
}
.cast__items {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  grid-column-gap: 60px;
  grid-row-gap: 40px;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cast__item {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  grid-column-gap: 16px;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}
.cast__character {
  color: #f07800;
  font-size: 20px;
  letter-spacing: 0;
  line-height: 1.45;
}
.cast__cv {
  color: #fff;
  font-size: 32px;
  letter-spacing: 0;
  line-height: 1.45;
}
.cast__cv-small {
  font-size: 24px;
}
@media screen and (max-width: 736px) {
  .cast {
    padding: 10.666666666666666vw 0 24vw;
  }
  .cast__title {
    width: 31.466666666666665vw;
  }
  .cast__contents {
    margin: -2.666666666666667vw auto 0;
    width: 89.33333333333333vw;
    padding: 6.933333333333334vw 0 8.533333333333333vw;
  }
  .cast__items {
    margin-top: 6.666666666666667vw;
    grid-template-columns: repeat(1, max-content);
    grid-column-gap: 0;
    grid-row-gap: 5.333333333333333vw;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -o-box-pack: start;
    -ms-flex-pack: start;
    -webkit-justify-content: start;
    justify-content: start;
  }
  .cast__item {
    grid-template-columns: repeat(2, max-content);
    grid-column-gap: 2.666666666666667vw;
    grid-row-gap: 2.666666666666667vw;
    -webkit-box-align: center;
    -moz-box-align: center;
    -o-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
  }
  .cast__character {
    font-size: 4.266666666666667vw;
    line-height: 1;
    grid-area: 1/1/2/2;
  }
  .cast__cv {
    font-size: 5.333333333333333vw;
    line-height: 1;
    grid-area: 2/1/3/2;
  }
  .cast__cv-small {
    font-size: 3.733333333333333vw;
  }
  .cast__btn {
    grid-area: 2/2/3/3;
  }
}
.modal {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  display: -webkit-box;
  display: -moz-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: box;
  display: flex;
  -webkit-box-pack: center;
  -moz-box-pack: center;
  -o-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -moz-box-align: center;
  -o-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.4);
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  visibility: hidden;
  -webkit-transition: all 300ms ease;
  -moz-transition: all 300ms ease;
  -o-transition: all 300ms ease;
  -ms-transition: all 300ms ease;
  transition: all 300ms ease;
  overflow: scroll;
  scrollbar-width: none;
}
.modal::-webkit-scrollbar {
  display: none; /* Chrome, Safari, Edge */
}
.modal.js-open {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  visibility: visible;
}
.modal__img {
  width: 1000px;
}
.modal__close {
  position: relative;
  margin: 0 auto;
  cursor: pointer;
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
  width: 56px;
  height: 56px;
  display: block;
}
.modal__close-line,
.modal__close-line:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 90px;
  height: 2px;
  background-color: #fff;
  transform-origin: center center;
}
.modal__close-line {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal__close-line:after {
  transform: translate(-50%, -50%) rotate(90deg);
}

/* YouTubeサムネイルをモーダルウィンドウで再生する */
#youtube_wrap {
  width: 100%;
  max-width: 580px;
  margin: 0 auto;
}
.youtube_modal {
  display: block;
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding-top: 56.25%;
}
.youtube_modal iframe, .youtube_modal a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.lity .lity-close {
  position: absolute;
  top: 0;
  right: 0;
  width: 64px;
  height: 64px;
  transform: translateY(-100%);
}
.lity-close::before,
.lity-close::after {
  content: "";
  display: inline-block;
  visibility: visible;
  vertical-align: middle;
  width: 64px;
  height: 2px;
  line-height: 1;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.lity-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
@media (max-width: 736px) {
  .lity-close {
    width: calc(48 * var(--scale-unit));
    height: calc(48 * var(--scale-unit));
  }
  .lity-close::before,
  .lity-close::after {
    width: calc(48 * var(--scale-unit));
  }
}
