@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

@keyframes fade-in {
  0% {
    visibility: visible;
    opacity: 0;
  }
  100% {
    visibility: visible;
    opacity: 1;
  }
}
/* 初期状態 */
.fade-in {
  visibility: hidden;
}

.animate-to {
  transform: translateY(20px);
  transition: opacity 0.8s ease, transform 0.8s ease;
  opacity: 0;
}

/* 表示状態 */
@media screen and (min-width: 641px) {
  .fade-in.appear {
    animation: fade-in 0.8s ease forwards 1.4s;
  }
}
@media screen and (max-width: 640px) {
  .fade-in.appear {
    animation: fade-in 0.8s ease forwards 0s;
  }
}

.animate-to.appear {
  transform: translateY(0);
  opacity: 1;
}

/* movie */
.movie {
  position: relative;
  overflow: hidden;
  color: #333;
  background-color: #FFFAE6;
}
.movie h2, .movie h3, .movie h4 {
  border: none;
  padding: 0;
  margin: 0;
}
.movie * {
  font-family: "sicuveiw-nexus", sans-serif;
  box-sizing: border-box;
}
.movie img {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.movie a {
  text-decoration: none;
  display: inline-block;
}
.movie .c-shadow-btn {
  transition: all 0.3s ease;
}
@media screen and (min-width: 641px) {
  .movie .c-shadow-btn:hover {
    box-shadow: none;
    transform: translate(4px, 4px);
  }
}
.movie .c-ttl {
  position: relative;
  will-change: transform;
  transition: all 1.2s ease-in-out;
  opacity: 0;
}
.movie .c-ttl::before, .movie .c-ttl::after {
  position: absolute;
  content: "";
  display: block;
  background: center/contain no-repeat url(../images/dc-ttl.png);
  bottom: 0;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl::before, .movie .c-ttl::after {
    width: 90px;
    height: 101px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl::before, .movie .c-ttl::after {
    width: calc(68 / 375 * 100vw);
    height: calc(76 / 375 * 100vw);
  }
}
.movie .c-ttl::before {
  transform: translateX(-100%);
}
@media screen and (min-width: 641px) {
  .movie .c-ttl::before {
    left: -10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl::before {
    left: calc(-9 / 375 * 100vw);
  }
}
.movie .c-ttl::after {
  transform: translateX(100%) scale(-1, 1);
}
@media screen and (min-width: 641px) {
  .movie .c-ttl::after {
    right: -10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl::after {
    right: calc(-9 / 375 * 100vw);
  }
}
.movie .c-ttl__bar {
  display: block;
  height: 2px;
  background-color: #FFEF47;
  position: relative;
  border-radius: 1px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl__bar {
    margin-top: 10px;
    width: calc(100% - 8px);
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl__bar {
    margin-top: calc(12 / 375 * 100vw);
    width: calc(100% - calc(8 / 375 * 100vw));
  }
}
.movie .c-ttl__bar::after {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  transform: translateX(-50%);
  background-color: #E44371;
  z-index: -1;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl__bar::after {
    height: 10px;
    border-radius: 5px;
    top: -3px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl__bar::after {
    height: calc(8 / 375 * 100vw);
    border-radius: calc(3.75 / 375 * 100vw);
    top: calc(-2 / 375 * 100vw);
  }
}
.movie .c-ttl.appear {
  opacity: 1;
  transform: rotateY(360deg);
}
.movie .inner {
  margin: 0 auto;
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 641px) {
  .movie .inner {
    max-width: 1140px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .inner {
    max-width: calc(335 / 375 * 100vw);
  }
}
.movie .kv__bg {
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .kv__bg {
    background: linear-gradient(180deg, #EE70B1 0%, #F8D3E9 64.9%, #FFEC9E 100%);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__bg {
    background: linear-gradient(180deg, #EE70B1 0%, #F8D3E9 20%, #F8D3E9 65.38%, #FFEC9E 100%);
    padding: calc(60 / 375 * 100vw) 0 calc(40 / 375 * 100vw);
  }
}
.movie .kv__bg::before {
  position: absolute;
  z-index: 1;
  content: "";
  display: block;
  background-repeat: repeat;
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
@media screen and (min-width: 641px) {
  .movie .kv__bg::before {
    background-image: url(../images/bg-kv.png);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__bg::before {
    background-image: url(../images/bg-kv-sp.png);
  }
}
.movie .kv__wrap {
  position: relative;
  z-index: 3;
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .movie .kv__wrap {
    max-width: 1920px;
    align-items: center;
    justify-content: flex-end;
    column-gap: 100px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__wrap {
    column-gap: max(39.9999996px, calc(60 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__wrap {
    flex-direction: column;
  }
}
.movie .kv__stars {
  position: absolute;
  z-index: -1;
  width: 5px;
  height: 5px;
  top: 50%;
  left: 50%;
  transition: all 1.2s ease-in-out;
  transition-delay: 0.4s;
}
.movie .kv__star {
  position: absolute;
  width: 1px;
  transition: width 1.6s ease, top 1.6s ease, left 1.6s ease, right 1.6s ease, bottom 1.6s ease, transform 1.6s ease 1.6s;
}
.movie .kv.appear .kv__stars {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
.movie .kv.appear .kv__star01 {
  transform: rotate(-21.11deg);
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star01 {
    top: 24px;
    left: -80px;
    width: 251px;
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star01 {
    top: calc(-63 / 375 * 100vw);
    left: calc(-10 / 375 * 100vw);
    width: calc(91 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star02 {
    width: 133px;
    top: -30px;
    left: 164px;
    transform: rotate(129.99deg);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star02 {
    width: calc(133 / 375 * 100vw);
    top: calc(-83 / 375 * 100vw);
    right: calc(-30 / 375 * 100vw);
    transform: rotate(-178.25deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star03 {
    width: 175px;
    top: -33px;
    left: 669px;
    transform: rotate(-178.13deg);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star03 {
    width: calc(87 / 375 * 100vw);
    bottom: calc(288 / 375 * 100vw);
    right: calc(-10 / 375 * 100vw);
    transform: rotate(91.12deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star04 {
    width: 179px;
    top: -30px;
    right: 24px;
    transform: rotate(52.28deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star05 {
    width: 133px;
    bottom: 244px;
    left: 15px;
    transform: rotate(-47.82deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star06 {
    width: 166px;
    bottom: 300px;
    right: 140px;
    transform: rotate(-105.17deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star07 {
    width: 247px;
    top: 264px;
    right: -90px;
    transform: rotate(-174.65deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star08 {
    width: 100px;
    transform: rotate(-129.99deg);
    top: 396px;
    left: 84px;
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star08 {
    width: calc(43 / 375 * 100vw);
    transform: rotate(129.99deg);
    left: calc(93 / 375 * 100vw);
    top: calc(-36 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star09 {
    width: 66px;
    bottom: 135px;
    left: 123px;
    transform: rotate(34.86deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star10 {
    width: 90px;
    transform: rotate(114.34deg);
    top: 121px;
    left: 816px;
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star10 {
    width: calc(39 / 375 * 100vw);
    right: calc(84 / 375 * 100vw);
    top: calc(-25 / 375 * 100vw);
    transform: rotate(114.34deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star11 {
    width: 66px;
    top: 424px;
    left: 807px;
    transform: rotate(34.86deg);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star11 {
    width: calc(28 / 375 * 100vw);
    transform: rotate(34.86deg);
    top: calc(-12 / 375 * 100vw);
    left: calc(78 / 375 * 100vw);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star12 {
    width: calc(44 / 375 * 100vw);
    transform: rotate(-10.51deg);
    left: calc(20 / 375 * 100vw);
    bottom: calc(360 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star13 {
    width: 96px;
    top: 224px;
    right: 135px;
    transform: rotate(-129.99deg);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star13 {
    width: calc(34 / 375 * 100vw);
    right: calc(39 / 375 * 100vw);
    bottom: calc(380 / 375 * 100vw);
    transform: rotate(-19.47deg);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv.appear .kv__star14 {
    width: 82px;
    right: 60px;
    bottom: 144px;
    transform: rotate(114.34deg);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv.appear .kv__star14 {
    width: calc(34 / 375 * 100vw);
    transform: rotate(34.86deg);
    left: calc(53 / 375 * 100vw);
    bottom: calc(330 / 375 * 100vw);
  }
}
.movie .kv__text {
  text-align: center;
}
.movie .kv__text__ttl {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__ttl {
    width: 620px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__ttl {
    width: max(413.3333292px, calc(620 / 1400 * 100vw));
    margin-bottom: max(10.66666656px, calc(16 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__ttl {
    animation-delay: 1.4s;
    width: calc(300 / 375 * 100vw);
    margin-bottom: calc(12 / 375 * 100vw);
  }
}
.movie .kv__text__subttl {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__subttl {
    margin-bottom: 16px;
    width: 312px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__subttl {
    width: max(207.99999792px, calc(312 / 1400 * 100vw));
    margin-bottom: max(10.66666656px, calc(16 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__subttl {
    animation-delay: 1.4s;
    width: calc(234 / 375 * 100vw);
    margin-bottom: calc(568 / 375 * 100vw);
  }
}
.movie .kv__text__txt {
  color: #E44371;
  font-weight: 800;
  line-height: 1.75;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__txt {
    font-size: 24px;
    margin-bottom: 32px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__txt {
    font-size: max(15.99999984px, calc(24 / 1400 * 100vw));
    margin-bottom: max(21.33333312px, calc(32 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__txt {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(15 / 375 * 100vw);
  }
}
.movie .kv__text__date {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__date {
    width: 507px;
    margin-bottom: 36px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__date {
    width: max(337.99999662px, calc(507 / 1400 * 100vw));
    margin-bottom: max(23.99999976px, calc(36 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__date {
    width: calc(279 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .kv__text__link {
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__link {
    justify-content: space-between;
    flex-wrap: wrap;
    column-gap: 28px;
    row-gap: 20px;
    max-width: 588px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__link {
    column-gap: max(18.66666648px, calc(28 / 1400 * 100vw));
    row-gap: max(13.3333332px, calc(20 / 1400 * 100vw));
    max-width: max(391.99999608px, calc(588 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__link {
    flex-direction: column;
    align-items: center;
    row-gap: calc(15 / 375 * 100vw);
  }
}
.movie .kv__text__link__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #FFEF47;
  border: 3px solid #fff;
  box-shadow: 4px 4px 0px #E44371;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__link__btn {
    border-radius: 10px;
    width: 280px;
    height: 60px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__link__btn {
    border-radius: max(6.6666666px, calc(10 / 1400 * 100vw));
    width: max(186.6666648px, calc(280 / 1400 * 100vw));
    height: max(39.9999996px, calc(60 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__link__btn {
    width: calc(335 / 375 * 100vw);
    height: calc(48 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
}
.movie .kv__text__link__btn img {
  width: auto;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__link__btn img {
    height: 23px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__link__btn img {
    height: max(15.33333318px, calc(23 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__link__btn img {
    height: calc(20 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv__img {
    text-align: left;
    width: 50%;
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__img {
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(190 / 375 * 100vw);
    animation-delay: 1.4s;
  }
}
@media screen and (min-width: 641px) {
  .movie .kv__img img {
    max-width: 656px;
  }
}
.movie .video__bg {
  overflow: hidden;
  background: linear-gradient(to top, #F9A8D2 0%, #F6BCFF 50.48%, #B6A7F8 100%);
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .video__bg {
    padding: 100px 0;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__bg {
    padding: calc(100 / 375 * 100vw) 0 calc(40 / 375 * 100vw);
  }
}
.movie .video__bg::before, .movie .video__bg::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .movie .video__bg::before, .movie .video__bg::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__bg::before {
    background-image: url(../images/bg-video01.png);
    width: 1569px;
    height: 490px;
    left: calc((100vw - 1532px) / 2);
  }
}
@media screen and (max-width: 640px) {
  .movie .video__bg::before {
    background-image: url(../images/bg-video01-sp.png);
    width: calc(224 / 375 * 100vw);
    height: calc(84 / 375 * 100vw);
    top: calc(16 / 375 * 100vw);
    right: calc(26 / 375 * 100vw);
  }
}
.movie .video__bg::after {
  left: 0;
  right: 0;
}
@media screen and (min-width: 641px) {
  .movie .video__bg::after {
    background-image: url(../images/bg-video02.png);
    width: 100%;
    aspect-ratio: 1920/363;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__bg::after {
    background-image: url(../images/bg-video02-sp.png);
    width: calc(375 / 375 * 100vw);
    height: calc(245 / 375 * 100vw);
    top: calc(-46 / 375 * 100vw);
  }
}
.movie .video__movie {
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .movie .video__movie {
    max-width: 612px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie {
    max-width: calc(335 / 375 * 100vw);
  }
}
.movie .video__movie__icon {
  position: absolute;
  z-index: -1;
}
@media screen and (min-width: 641px) {
  .movie .video__movie__icon {
    width: 303px;
    top: -62px;
    left: -223px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie__icon {
    width: calc(151 / 375 * 100vw);
    top: calc(-108 / 375 * 100vw);
    left: calc(-20 / 375 * 100vw);
  }
}
.movie .video__movie__thumb {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 641px) {
  .movie .video__movie__thumb {
    border: 10px solid #fff;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie__thumb {
    border: calc(4 / 375 * 100vw) solid #fff;
    border-radius: calc(15 / 375 * 100vw);
  }
}
.movie .video__movie__thumb::after {
  position: absolute;
  content: "";
  display: block;
  background: center/contain no-repeat url(../images/ic-play.png);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  pointer-events: none;
}
@media screen and (min-width: 641px) {
  .movie .video__movie__thumb::after {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie__thumb::after {
    width: calc(50 / 375 * 100vw);
    height: calc(50 / 375 * 100vw);
  }
}
.movie .bg-stripe {
  background-repeat: repeat;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .movie .bg-stripe {
    background-image: url(../images/bg-stripe.png);
    padding: 160px 0 100px;
  }
}
@media screen and (max-width: 640px) {
  .movie .bg-stripe {
    background-image: url(../images/bg-stripe-sp.png);
    padding: calc(54 / 375 * 100vw) 0 calc(40 / 375 * 100vw);
  }
}
.movie .intro {
  text-align: left;
}
@media screen and (min-width: 641px) {
  .movie .intro {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro {
    margin-bottom: calc(42 / 375 * 100vw);
  }
}
.movie .intro__wrap {
  display: flex;
}
@media screen and (min-width: 641px) {
  .movie .intro__wrap {
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__wrap {
    flex-direction: column;
    row-gap: calc(40 / 375 * 100vw);
    margin-bottom: calc(50 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__ttl {
    width: 200px;
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__ttl {
    margin-left: auto;
    margin-right: auto;
    width: calc(133 / 375 * 100vw);
    margin-bottom: calc(38 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__ttl::before {
    display: none;
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__ttl__bar::after {
    width: 200px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__ttl__bar::after {
    width: calc(133 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__text {
    width: 52.13%;
  }
}
.movie .intro__text__lead {
  color: #E44371;
  font-weight: 800;
  line-height: 1.75;
}
@media screen and (min-width: 641px) {
  .movie .intro__text__lead {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__text__lead {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .intro__text__txt {
  color: #E44371;
  line-height: 1.75;
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  .movie .intro__text__txt {
    font-size: 16px;
    max-width: 550px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__text__txt {
    font-size: calc(16 / 375 * 100vw);
  }
}
.movie .intro__img {
  display: flex;
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .intro__img {
    margin-top: 15px;
    width: 44.4444444%;
  }
}
.movie .intro__img::before, .movie .intro__img::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: -1;
}
.movie .intro__img::before {
  background-image: url(../images/dc-intro01.png);
}
@media screen and (min-width: 641px) {
  .movie .intro__img::before {
    width: 205px;
    height: 321px;
    top: -106px;
    left: -50px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__img::before {
    width: calc(150 / 375 * 100vw);
    height: calc(235 / 375 * 100vw);
    top: calc(-40 / 375 * 100vw);
    left: calc(-57 / 375 * 100vw);
  }
}
.movie .intro__img::after {
  background-image: url(../images/dc-intro02.png);
}
@media screen and (min-width: 641px) {
  .movie .intro__img::after {
    width: 186px;
    height: 276px;
    bottom: -51px;
    right: -78px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__img::after {
    width: calc(154 / 375 * 100vw);
    height: calc(229 / 375 * 100vw);
    right: calc(-52 / 375 * 100vw);
    bottom: calc(-40 / 375 * 100vw);
  }
}
.movie .intro__img__wrap {
  border: 5px solid #fff;
  position: relative;
  overflow: hidden;
  width: 100%;
}
@media screen and (min-width: 641px) {
  .movie .intro__img__wrap {
    border-radius: 20px;
    aspect-ratio: 48/36;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__img__wrap {
    border-radius: calc(15 / 375 * 100vw);
    width: 100%;
    height: calc(251 / 375 * 100vw);
  }
}
.movie .intro__img__wrap img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  animation: slide-animation 10s linear infinite 0s;
}
.movie .intro__img__wrap img:nth-of-type(1) {
  animation-delay: 0s;
}
.movie .intro__img__wrap img:nth-of-type(2) {
  animation-delay: 2s;
}
.movie .intro__img__wrap img:nth-of-type(3) {
  animation-delay: 4s;
}
.movie .intro__img__wrap img:nth-of-type(4) {
  animation-delay: 6s;
}
.movie .intro__img__wrap img:nth-of-type(5) {
  animation-delay: 8s;
}
.movie .intro__box {
  background-color: #fff;
  border: 2px solid #0081CC;
}
@media screen and (min-width: 641px) {
  .movie .intro__box {
    padding: 30px 40px 40px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__box {
    padding: calc(30 / 375 * 100vw);
    border-radius: calc(15 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__box__ttl {
    width: 133px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__box__ttl {
    width: calc(133 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .intro__box__txt {
  color: #0081CC;
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (min-width: 641px) {
  .movie .intro__box__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__box__txt {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__box__txt + .intro__box__ttl {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__box__txt + .intro__box__ttl {
    margin-top: calc(20 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .ticket {
    margin-bottom: 110px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket {
    margin-bottom: calc(60 / 375 * 100vw);
  }
}
.movie .ticket__ttl {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .ticket__ttl {
    width: 496px;
    margin-bottom: 34px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__ttl {
    width: calc(184 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .ticket__ttl__bar::after {
    width: 496px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__ttl__bar::after {
    width: calc(184 / 375 * 100vw);
  }
}
.movie .ticket__lead {
  color: #E44371;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .ticket__lead {
    font-size: 24px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__lead {
    text-align: center;
    font-size: calc(20 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .ticket__watatheatre {
  background-color: #7789E1;
}
@media screen and (min-width: 641px) {
  .movie .ticket__watatheatre {
    padding: 20px 0;
    margin-bottom: 40px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__watatheatre {
    text-align: center;
    padding: calc(20 / 375 * 100vw) 0 calc(18 / 375 * 100vw);
    width: calc(285 / 375 * 100vw);
    margin: 0 auto calc(20 / 375 * 100vw);
    border-radius: calc(15 / 375 * 100vw);
  }
}
.movie .ticket__watatheatre__txt {
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .ticket__watatheatre__txt {
    font-size: 18px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__watatheatre__txt {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .ticket__watatheatre__link {
  position: relative;
  text-decoration: underline;
  color: #fff;
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  .movie .ticket__watatheatre__link {
    font-size: 16px;
    padding-left: 28px;
  }
  .movie .ticket__watatheatre__link:hover::before {
    opacity: 0;
  }
  .movie .ticket__watatheatre__link:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__watatheatre__link {
    font-size: calc(16 / 375 * 100vw);
    padding-left: calc(28 / 375 * 100vw);
  }
}
.movie .ticket__watatheatre__link::before, .movie .ticket__watatheatre__link::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 641px) {
  .movie .ticket__watatheatre__link::before, .movie .ticket__watatheatre__link::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__watatheatre__link::before, .movie .ticket__watatheatre__link::after {
    width: calc(18 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
}
.movie .ticket__watatheatre__link::before {
  background-image: url(../images/ic-arrow-down-wh.png);
}
.movie .ticket__watatheatre__link::after {
  opacity: 0;
  background-image: url(../images/ic-arrow-down-pk.png);
}
.movie .ticket__theater__item {
  display: flex;
  background-color: #fff;
  overflow: hidden;
  border: 2px solid #E44371;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item {
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__theater__item {
    flex-direction: column;
    border-radius: calc(15 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__theater__item:not(:last-of-type) {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .ticket__theater__item__ttl {
  background-color: #E44371;
  color: #fff;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item__ttl {
    width: 220px;
    font-size: 20px;
    padding: 26px 0 26px 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__theater__item__ttl {
    width: 100%;
    padding: calc(9 / 375 * 100vw) calc(20 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}
.movie .ticket__theater__item__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item__list {
    padding: 30px;
    column-gap: 40px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__theater__item__list {
    padding: calc(20 / 375 * 100vw);
    row-gap: calc(20 / 375 * 100vw);
  }
}
.movie .ticket__theater__item__list.pc-4column {
  column-gap: 0;
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item__list.pc-4column li {
    width: 23%;
  }
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item__list.pc-4column li:nth-of-type(4n+2) {
    width: 30%;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__theater__item__list li {
    width: 100%;
  }
}
.movie .ticket__theater__item__list li a {
  position: relative;
  font-weight: 600;
  line-height: 1.4;
  color: #353535;
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item__list li a {
    font-size: 18px;
    padding-left: 26px;
  }
  .movie .ticket__theater__item__list li a:hover::before {
    opacity: 0;
  }
  .movie .ticket__theater__item__list li a:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__theater__item__list li a {
    font-size: calc(16 / 375 * 100vw);
    padding-left: calc(26 / 375 * 100vw);
  }
}
.movie .ticket__theater__item__list li a::before, .movie .ticket__theater__item__list li a::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 641px) {
  .movie .ticket__theater__item__list li a::before, .movie .ticket__theater__item__list li a::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .ticket__theater__item__list li a::before, .movie .ticket__theater__item__list li a::after {
    width: calc(18 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
}
.movie .ticket__theater__item__list li a::before {
  background-image: url(../images/ic-arrow.png);
}
.movie .ticket__theater__item__list li a::after {
  opacity: 0;
  background-image: url(../images/ic-arrow-ye.png);
}
.movie .price__ttl {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .price__ttl {
    width: 200px;
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__ttl {
    width: calc(133 / 375 * 100vw);
    margin-bottom: calc(33 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .price__ttl__bar::after {
    width: 200px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__ttl__bar::after {
    width: calc(133 / 375 * 100vw);
  }
}
.movie .price__box {
  background-color: #E44371;
}
@media screen and (min-width: 641px) {
  .movie .price__box {
    padding: 40px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__box {
    padding: calc(20 / 375 * 100vw);
    border-radius: calc(15 / 375 * 100vw);
  }
}
.movie .price__item {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  color: #E44371;
}
@media screen and (min-width: 641px) {
  .movie .price__item {
    border-radius: 30px;
    height: 60px;
    column-gap: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__item {
    border-radius: calc(15 / 375 * 100vw);
    padding: calc(12 / 375 * 100vw) 0;
    column-gap: calc(20 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .price__item:not(:last-of-type) {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__item:not(:last-of-type) {
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
@media screen and (max-width: 640px) {
  .movie .price__item:last-of-type {
    flex-direction: column;
    row-gap: calc(6 / 375 * 100vw);
  }
}
.movie .price__item__ttl {
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .price__item__ttl {
    font-size: 18px;
    margin-top: 3px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__item__ttl {
    font-size: calc(16 / 375 * 100vw);
  }
}
.movie .price__item__txt {
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .price__item__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__item__txt {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .price__item__txt__num {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__item__txt__num {
    font-size: calc(20 / 375 * 100vw);
  }
}
.movie .price__note {
  text-align: left;
}
@media screen and (min-width: 641px) {
  .movie .price__note {
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__note {
    margin-top: calc(10 / 375 * 100vw);
  }
}
.movie .price__note li {
  text-indent: -1em;
  padding-left: 1em;
  color: #E44371;
}
@media screen and (min-width: 641px) {
  .movie .price__note li {
    line-height: 1.4;
    font-size: 14px;
  }
}
@media screen and (max-width: 640px) {
  .movie .price__note li {
    line-height: 1.5;
    font-size: calc(14 / 375 * 100vw);
  }
}
.movie .slider {
  display: flex;
}
.movie .slider__wrap {
  animation: infinity-scroll-left 30s infinite linear 0.5s both;
  display: flex;
  flex-shrink: 0;
}
.movie .slider__item {
  flex-shrink: 0;
}
@media screen and (min-width: 641px) {
  .movie .slider__item {
    width: 360px;
  }
}
@media screen and (max-width: 640px) {
  .movie .slider__item {
    width: calc(180 / 375 * 100vw);
  }
}
.movie .stagegreeting__bg {
  background-color: #FEEC7E;
  background-repeat: repeat;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__bg {
    background-image: url(../images/bg-stagegreeting.png);
    padding: 100px 0 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__bg {
    background-image: url(../images/bg-stagegreeting-sp.png);
    padding: calc(40 / 375 * 100vw) 0;
  }
}
.movie .stagegreeting__ttl {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ttl {
    width: 401px;
    margin-bottom: 54px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ttl {
    width: calc(125 / 375 * 100vw);
    margin-bottom: calc(36 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ttl__bar::after {
    width: 401px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ttl__bar::after {
    width: calc(125 / 375 * 100vw);
  }
}
.movie .stagegreeting__subttl {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__subttl {
    width: 775px;
    margin-bottom: 54px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__subttl {
    width: calc(261 / 375 * 100vw);
    margin-bottom: calc(36 / 375 * 100vw);
  }
}
.movie .stagegreeting__box {
  text-align: left;
  background-color: #fff;
  border: 4px solid #E44371;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__box {
    padding: 60px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__box {
    padding: calc(30 / 375 * 100vw) calc(26 / 375 * 100vw);
    border-radius: calc(15 / 375 * 100vw);
  }
}
.movie .stagegreeting__lead {
  font-weight: 600;
  line-height: 1.75;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__lead {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__lead {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail {
  border-top: 1px dotted #E44371;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item {
  display: flex;
  align-items: flex-start;
  border-bottom: 1px dotted #E44371;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item {
    padding: 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item {
    flex-direction: column;
    padding: calc(20 / 375 * 100vw) 0;
    row-gap: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__ttl {
  line-height: 1.5;
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__ttl {
    font-size: 16px;
    flex-shrink: 0;
    width: 200px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__ttl {
    font-size: 16px;
  }
}
.movie .stagegreeting__detail__item__content {
  flex: 1;
}
.movie .stagegreeting__detail__item__content .txt-l {
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .txt-l {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .txt-l {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .txt-num {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .txt-num {
    font-size: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .txt-s {
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .txt-s {
    font-size: 14px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .txt-s {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .timewrap {
  display: flex;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .timewrap {
    column-gap: 30px;
    margin-top: 8px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .timewrap {
    flex-direction: column;
    margin-top: calc(10 / 375 * 100vw);
    row-gap: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .time {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .time {
    column-gap: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .time {
    column-gap: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .time-ttl {
  background-color: #E44371;
  color: #fff;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .time-ttl {
    font-size: 14px;
    padding: 6px 10px;
    border-radius: 4px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .time-ttl {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(6 / 375 * 100vw) calc(10 / 375 * 100vw);
    border-radius: calc(4 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .access {
  display: flex;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .access {
    align-items: center;
    column-gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .access {
    flex-direction: column;
    row-gap: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .access-link {
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .access-link {
    padding-left: 28px;
  }
  .movie .stagegreeting__detail__item__content .access-link:hover::before {
    opacity: 0;
  }
  .movie .stagegreeting__detail__item__content .access-link:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .access-link {
    padding-left: calc(28 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .access-link::before, .movie .stagegreeting__detail__item__content .access-link::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .access-link::before, .movie .stagegreeting__detail__item__content .access-link::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .access-link::before, .movie .stagegreeting__detail__item__content .access-link::after {
    width: calc(18 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
}
.movie .stagegreeting__detail__item__content .access-link::before {
  background-image: url(../images/ic-arrow.png);
}
.movie .stagegreeting__detail__item__content .access-link::after {
  background-image: url(../images/ic-arrow-ye.png);
  opacity: 0;
}
.movie .stagegreeting__detail__item__content .access-link-txt {
  text-decoration: underline;
  color: #E44371;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__detail__item__content .access-link-txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__detail__item__content .access-link-txt {
    font-size: calc(14 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket {
  background-color: #FFF7D9;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket {
    border-radius: 20px;
    padding: 40px;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket {
    border-radius: calc(10 / 375 * 100vw);
    padding: calc(20 / 375 * 100vw) calc(20 / 375 * 100vw) calc(30 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__ttl {
  text-align: center;
  color: #0081CC;
  line-height: 1.5;
  font-weight: 900;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__ttl {
    font-size: 24px;
    margin-bottom: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__ttl {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__wrap {
  display: flex;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__wrap {
    justify-content: space-between;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__wrap {
    flex-direction: column;
    row-gap: calc(10 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__box {
  background-color: #fff;
  overflow: hidden;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__box {
    width: calc((100% - 30px) / 2);
    border-radius: 10px;
    padding-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__box {
    width: 100%;
    border-radius: calc(10 / 375 * 100vw);
    padding-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__box__ttl {
  background-color: #0081CC;
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__box__ttl {
    font-size: 18px;
    padding: 6px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__box__ttl {
    font-size: calc(16 / 375 * 100vw);
    padding: calc(3 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__box__txt {
  color: #0081CC;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__box__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__box__txt {
    font-size: calc(14 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__box__date {
  color: #E44371;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__box__date {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__box__date {
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__box__date .large {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__box__date .large {
    font-size: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__table {
  width: 100%;
  border: 1px solid #ccc;
  border-collapse: collapse;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__table {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__table {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__table th {
  border: 1px solid #ccc;
  background-color: #EFF2FF;
  line-height: 1.4;
  font-weight: 600;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__table th {
    width: 120px;
    height: 40px;
    padding-left: 10px;
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__table th {
    width: calc(76 / 375 * 100vw);
    padding: calc(10 / 375 * 100vw) 0 calc(10 / 375 * 100vw) calc(9 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__table td {
  font-weight: 600;
  line-height: 1.4;
  border: 1px solid #ccc;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__table td {
    font-size: 16px;
    padding-left: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__table td {
    padding: calc(10 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #E44371;
  box-shadow: 4px 4px 0 #FFEF47;
  border: 2px solid #fff;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__btn {
    width: 460px;
    height: 70px;
    column-gap: 10px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__btn {
    width: 100%;
    height: calc(70 / 375 * 100vw);
    column-gap: calc(10 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__btn__txt {
  color: #fff;
  font-weight: 800;
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__btn__txt {
    font-size: 20px;
    padding-right: 17px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__btn__txt {
    text-align: center;
    font-size: calc(18 / 375 * 100vw);
    padding-right: calc(22 / 375 * 100vw);
  }
}
.movie .stagegreeting__ticket__btn__txt::after {
  position: absolute;
  content: "";
  display: block;
  background: center/contain no-repeat url(../images/ic-link-wh.png);
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__btn__txt::after {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__btn__txt::after {
    width: calc(12 / 375 * 100vw);
    height: calc(12 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__btn__txt .small {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__btn__txt .small {
    display: block;
    font-size: calc(14 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__ticket__btn img {
    width: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__ticket__btn img {
    width: calc(24 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__item {
    margin-bottom: 28px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__item {
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__item__ttl {
  font-weight: 800;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__item__ttl {
    font-size: 16px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__item__ttl {
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__item__txt {
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__item__txt {
    font-size: 14px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__item__txt {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__item__link {
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__item__link {
    padding-left: 28px;
  }
  .movie .stagegreeting__notes__item__link:hover::before {
    opacity: 0;
  }
  .movie .stagegreeting__notes__item__link:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__item__link {
    padding-left: calc(28 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__item__link::before, .movie .stagegreeting__notes__item__link::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__item__link::before, .movie .stagegreeting__notes__item__link::after {
    width: 18px;
    height: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__item__link::before, .movie .stagegreeting__notes__item__link::after {
    width: calc(18 / 375 * 100vw);
    height: calc(18 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__item__link::before {
  background-image: url(../images/ic-arrow.png);
}
.movie .stagegreeting__notes__item__link::after {
  background-image: url(../images/ic-arrow-ye.png);
  opacity: 0;
}
.movie .stagegreeting__notes__item__link__txt {
  text-decoration: underline;
  color: #E44371;
  line-height: 1.4;
  font-weight: 600;
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__item__link__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__item__link__txt {
    font-size: calc(16 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__item__link__txt::after {
  position: absolute;
  content: "";
  display: block;
  background: center/contain no-repeat url(../images/ic-link-pk.png);
  top: 50%;
  transform: translate(100%, -50%);
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__item__link__txt::after {
    right: -5px;
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__item__link__txt::after {
    right: calc(-5 / 375 * 100vw);
    width: calc(12 / 375 * 100vw);
    height: calc(12 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__caution {
  position: relative;
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__caution {
    margin-top: calc(30 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__caution.is-hidden .stagegreeting__notes__caution__list {
    max-height: 104px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__caution.is-hidden .stagegreeting__notes__caution__list {
    max-height: calc(142 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__caution.is-hidden .stagegreeting__notes__caution__list::after {
  position: absolute;
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}
.movie .stagegreeting__notes__caution__ttl {
  font-weight: 800;
  letter-spacing: 0.05em;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__caution__ttl {
    font-size: 20px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__caution__ttl {
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__caution__list {
  transition: all 0.6s;
  overflow: hidden;
  position: relative;
  max-height: 2500px;
}
.movie .stagegreeting__notes__caution__list li {
  text-indent: -1em;
  padding-left: 1em;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.05;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__caution__list li {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__caution__list li {
    font-size: calc(16 / 375 * 100vw);
  }
}
.movie .stagegreeting__notes__caution__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  z-index: 1;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  background-color: #FFF0B3;
  color: #E44371;
  border: 1px solid #E44371;
  font-weight: 800;
  cursor: pointer;
}
@media screen and (min-width: 641px) {
  .movie .stagegreeting__notes__caution__btn {
    font-size: 14px;
    width: 200px;
    height: 40px;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .stagegreeting__notes__caution__btn {
    width: 100%;
    height: calc(40 / 375 * 100vw);
    border-radius: calc(20 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}
.movie .watatheatre__bg {
  position: relative;
  background: linear-gradient(180deg, #5B85DF 0%, #9183DE 100%);
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__bg {
    padding: 80px 0;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__bg {
    padding: calc(40 / 375 * 100vw) 0;
  }
}
.movie .watatheatre__bg::before {
  position: absolute;
  content: "";
  display: block;
  background-repeat: repeat;
  background-size: contain;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__bg::before {
    background-image: url(../images/bg-watatheatre.png);
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__bg::before {
    background-image: url(../images/bg-watatheatre-sp.png);
  }
}
.movie .watatheatre__img01 {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__img01 {
    top: 0;
    left: calc((100vw - 1620px) / 2);
    width: 343px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 641px) {
  .movie .watatheatre__img01 {
    left: -190px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__img01 {
    width: calc(59 / 375 * 100vw);
    top: calc(80 / 375 * 100vw);
    left: calc(13 / 375 * 100vw);
  }
}
.movie .watatheatre__img02 {
  position: absolute;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__img02 {
    top: 0;
    width: 343px;
    right: calc((100vw - 1620px) / 2);
  }
}
@media screen and (max-width: 1100px) and (min-width: 641px) {
  .movie .watatheatre__img02 {
    right: -190px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__img02 {
    width: calc(66 / 375 * 100vw);
    top: calc(80 / 375 * 100vw);
    right: calc(13 / 375 * 100vw);
  }
}
.movie .watatheatre__ttl {
  display: flex;
  justify-content: center;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__ttl {
    width: 720px;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__ttl {
    width: calc(280 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.movie .watatheatre__list {
  display: flex;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__list {
    justify-content: space-between;
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__list {
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__list__item {
    text-align: left;
    width: 31.5%;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__list__item {
    width: calc(295 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.movie .watatheatre__list__item__ttl {
  color: #fff;
  font-weight: 800;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__list__item__ttl {
    font-size: 20px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 641px) {
  .movie .watatheatre__list__item__ttl {
    font-size: 17px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__list__item__ttl {
    text-align: center;
    font-size: calc(18 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__list__item img {
    display: block;
    margin: 0 auto;
    width: calc(245 / 375 * 100vw);
  }
}
.movie .watatheatre__list__item__txt {
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__list__item__txt {
    font-size: 16px;
    margin-top: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__list__item__txt {
    font-size: calc(16 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__price {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__price {
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.movie .watatheatre__price__wrap {
  display: flex;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__price__wrap {
    justify-content: space-between;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__price__wrap {
    flex-direction: column;
    row-gap: calc(20 / 375 * 100vw);
  }
}
.movie .watatheatre__price__item {
  background-color: #fff;
  color: #E44371;
  font-weight: 800;
  text-align: center;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__price__item {
    width: calc((100% - 20px) / 2);
    border-radius: 20px;
    padding: 12px 0;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__price__item {
    width: 100%;
    padding: calc(15 / 375 * 100vw) 0;
    border-radius: calc(15 / 375 * 100vw);
    font-size: calc(16 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__price__item__num {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__price__item__num {
    font-size: calc(20 / 375 * 100vw);
  }
}
.movie .watatheatre__price__note {
  text-align: center;
  color: #fff;
  font-weight: 600;
  line-height: 1.5;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__price__note {
    font-size: 14px;
    margin-top: 12px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__price__note {
    margin-top: calc(20 / 375 * 100vw);
    font-size: calc(14 / 375 * 100vw);
  }
}
.movie .watatheatre__btn {
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #E44371;
  border: 2px solid #fff;
  box-shadow: 4px 4px 0 #FFEF47;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__btn {
    width: 460px;
    height: 70px;
    border-radius: 10px;
    column-gap: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__btn {
    width: calc(295 / 375 * 100vw);
    height: calc(70 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    column-gap: calc(10 / 375 * 100vw);
  }
}
.movie .watatheatre__btn__txt {
  color: #fff;
  font-weight: 800;
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__btn__txt {
    font-size: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__btn__txt {
    line-height: 1.5;
    font-size: calc(18 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .watatheatre__btn img {
    width: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .watatheatre__btn img {
    width: calc(24 / 375 * 100vw);
  }
}
.movie .link__bg {
  background-repeat: repeat-x;
  background-size: auto 100%;
}
@media screen and (min-width: 641px) {
  .movie .link__bg {
    background-image: url(../images/bg-link.png);
    padding: 80px 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__bg {
    background-image: url(../images/bg-link-sp.png);
    padding: calc(40 / 375 * 100vw) 0;
  }
}
.movie .link__wrap {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 641px) {
  .movie .link__wrap {
    column-gap: 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__wrap {
    flex-direction: column;
    row-gap: calc(22 / 375 * 100vw);
    align-items: center;
  }
}
.movie .link__btn {
  background-color: #fff;
  border: 2px solid #E44371;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  box-shadow: 4px 4px 0px #E44371;
}
@media screen and (min-width: 641px) {
  .movie .link__btn {
    width: 460px;
    max-width: calc((100% - 30px) / 2);
    height: 80px;
    border-radius: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn {
    width: calc(335 / 375 * 100vw);
    height: calc(80 / 375 * 100vw);
    border-radius: calc(10 / 375 * 100vw);
    padding-right: calc(20 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .link__btn__xicon {
    width: 46px;
    margin-right: 15px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn__xicon {
    width: calc(46 / 375 * 100vw);
    margin-right: calc(20 / 375 * 100vw);
    margin-left: calc(52 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .link__btn__logo {
    width: 148px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn__logo {
    width: calc(126 / 375 * 100vw);
    margin-right: calc(20 / 375 * 100vw);
    margin-left: calc(30 / 375 * 100vw);
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn:nth-of-type(2) .link__btn__txt {
    text-align: center;
    padding-left: calc(54 / 375 * 100vw);
  }
}
.movie .link__btn__txt {
  color: #E44371;
  font-weight: 800;
}
@media screen and (min-width: 641px) {
  .movie .link__btn__txt {
    font-size: 20px;
    margin-right: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn__txt {
    font-size: calc(18 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .link__btn__arrow {
    width: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn__arrow {
    width: calc(24 / 375 * 100vw);
    margin-left: auto;
  }
}
.movie .link__copy {
  text-align: center;
  font-weight: 600;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .link__copy {
    font-size: 14px;
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__copy {
    font-size: calc(14 / 375 * 100vw);
    margin-top: calc(20 / 375 * 100vw);
  }
}

/* modaal */
.pierrot_magicalgirls .modaal-video-wrap {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  aspect-ratio: 16/9;
  margin: auto;
}

.pierrot_magicalgirls .modaal-inner-wrapper {
  vertical-align: top;
  padding: 120px 30px 0;
}

.pierrot_magicalgirls .modaal-close {
  right: 30px;
}

.pierrot_magicalgirls .modaal-close {
  width: 60px;
  height: 60px;
}

.pierrot_magicalgirls .modaal-close:before,
.pierrot_magicalgirls .modaal-close:after {
  top: 0;
  left: 28px;
  width: 3px;
  height: 60px;
  border-radius: 5px;
}

.pierrot_magicalgirls .modaal-close:focus,
.pierrot_magicalgirls .modaal-close:hover {
  background: transparent;
}

.pierrot_magicalgirls .modaal-close:focus::before,
.pierrot_magicalgirls .modaal-close:hover::after {
  width: 4px;
}

@media only screen and (min-width: 1400px) {
  .pierrot_magicalgirls .modaal-video-container {
    max-width: 90%;
    max-height: none;
    height: 90%;
  }
}
@media screen and (min-height: 901px) and (min-width: 1400px) {
  .pierrot_magicalgirls .modaal-inner-wrapper {
    padding-top: 180px;
  }
  .pierrot_magicalgirls .modaal-video-container {
    max-height: calc(100vh - 240px);
  }
  .pierrot_magicalgirls .modaal-close {
    top: 50px;
  }
}
@media screen and (max-height: 900px) {
  .pierrot_magicalgirls .modaal-video-container {
    max-width: unset;
    max-height: unset;
  }
}
@media screen and (max-height: 900px) and (min-width: 1400px) {
  .pierrot_magicalgirls .modaal-video-container {
    max-width: unset;
    max-width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .pierrot_magicalgirls .modaal-inner-wrapper {
    padding: 120px 20px 0;
  }
  .pierrot_magicalgirls .modaal-close {
    width: 50px;
    height: 50px;
    top: 40px;
    right: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .pierrot_magicalgirls .modaal-close {
    width: 7.8125vw;
    height: 7.8125vw;
    top: 6.25vw;
    right: 3.125vw;
  }
  .pierrot_magicalgirls .modaal-close:before,
  .pierrot_magicalgirls .modaal-close:after {
    top: 0;
    left: 3.125vw;
    height: 7.8125vw;
    border-radius: 3px;
  }
}
@media screen and (max-width: 500px) {
  .pierrot_magicalgirls .modaal-inner-wrapper {
    padding: 100px 12px 0;
  }
  .pierrot_magicalgirls .modaal-close {
    width: 40px;
    height: 40px;
    top: 30px;
  }
  .pierrot_magicalgirls .modaal-close:before,
  .pierrot_magicalgirls .modaal-close:after {
    top: 0;
    left: 18px;
    height: 40px;
    border-radius: 3px;
  }
}
@keyframes slide-animation {
  0% {
    opacity: 0;
  }
  4% {
    opacity: 1;
  }
  20% {
    opacity: 1;
  }
  24% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}