@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
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;
}

/* 表示状態 */
.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: #666;
}
.movie h2, .movie h3, .movie h4 {
  border: none;
  padding: 0;
  margin: 0;
}
.movie * {
  font-family: "M PLUS 1", 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-ttl {
  position: relative;
  z-index: 1;
  width: max-content;
  margin-left: auto;
  margin-right: auto;
}
.movie .c-ttl::before, .movie .c-ttl::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.8s ease-in-out;
  transition-delay: 0.2s;
  opacity: 0;
  z-index: -1;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl::before, .movie .c-ttl::after {
    top: -20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl::before, .movie .c-ttl::after {
    top: calc(-12 / 375 * 100vw);
  }
}
.movie .c-ttl::before {
  background-image: url(../images/dc-ttl-star.png);
  transform: rotate(-45deg);
}
@media screen and (min-width: 641px) {
  .movie .c-ttl::before {
    width: 83px;
    height: 86px;
    left: -37px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl::before {
    width: calc(70 / 375 * 100vw);
    height: calc(72 / 375 * 100vw);
    left: calc(-25 / 375 * 100vw);
  }
}
.movie .c-ttl::after {
  background-image: url(../images/dc-ttl-moon.png);
  transform: rotate(45deg);
}
@media screen and (min-width: 641px) {
  .movie .c-ttl::after {
    width: 84px;
    height: 88px;
    right: -30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl::after {
    width: calc(70 / 375 * 100vw);
    height: calc(73 / 375 * 100vw);
    right: calc(-25 / 375 * 100vw);
  }
}
.movie .c-ttl-txt {
  transition: all 0.8s ease-in-out;
  opacity: 0;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl-txt {
    width: 223px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl-txt {
    width: calc(174 / 375 * 100vw);
  }
}
.movie .c-ttl-star {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: max-content;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl-star {
    column-gap: 44px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl-star {
    column-gap: calc(34 / 375 * 100vw);
  }
}
.movie .c-ttl-star::before, .movie .c-ttl-star::after {
  position: absolute;
  content: "";
  display: block;
  height: 1px;
  background-color: #918BF0;
  transform: scaleX(0);
  transition: all 0.4s ease;
  transition-delay: 0.6s;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl-star::before, .movie .c-ttl-star::after {
    width: 40px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl-star::before, .movie .c-ttl-star::after {
    width: calc(30 / 375 * 100vw);
  }
}
.movie .c-ttl-star::before {
  transform-origin: right;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl-star::before {
    left: 14px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl-star::before {
    left: calc(12 / 375 * 100vw);
  }
}
.movie .c-ttl-star::after {
  transform-origin: left;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl-star::after {
    right: 14px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl-star::after {
    right: calc(12 / 375 * 100vw);
  }
}
.movie .c-ttl-star-left, .movie .c-ttl-star-right {
  opacity: 0;
  transition: all 0.4s ease-in-out;
  transition-delay: 0.8s;
}
@media screen and (min-width: 641px) {
  .movie .c-ttl-star-left, .movie .c-ttl-star-right {
    width: 12px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl-star-left, .movie .c-ttl-star-right {
    width: calc(10 / 375 * 100vw);
  }
}
.movie .c-ttl-star-main {
  opacity: 0;
  transition: all 0.5s ease-in-out;
  transition-delay: 0.4s;
  transform: scale(0.1);
}
@media screen and (min-width: 641px) {
  .movie .c-ttl-star-main {
    width: 24px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-ttl-star-main {
    width: calc(20 / 375 * 100vw);
  }
}
.movie .c-ttl.appear::before, .movie .c-ttl.appear::after {
  opacity: 1;
  transform: rotate(0);
}
.movie .c-ttl.appear .c-ttl-txt {
  opacity: 1;
}
.movie .c-ttl.appear .c-ttl-star::before, .movie .c-ttl.appear .c-ttl-star::after {
  transform: scaleX(1);
}
.movie .c-ttl.appear .c-ttl-star-main {
  opacity: 1;
  transform: scale(1);
}
.movie .c-ttl.appear .c-ttl-star-left, .movie .c-ttl.appear .c-ttl-star-right {
  opacity: 1;
}
.movie .c-box {
  position: relative;
  overflow: hidden;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .movie .c-box {
    border: 8px solid #FF9FDF;
    border-radius: 30px;
    padding: 80px 100px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-box {
    border: calc(4 / 375 * 100vw) solid #FF9FDF;
    padding: calc(60 / 375 * 100vw) calc(16 / 375 * 100vw) calc(40 / 375 * 100vw);
    border-radius: calc(20 / 375 * 100vw);
  }
}
.movie .c-box::before {
  position: absolute;
  content: "";
  display: block;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: linear-gradient(180deg, #FF9FDF 73.8%, #F8F4B5 100%);
}
@media screen and (min-width: 641px) {
  .movie .c-box::before {
    width: 500px;
    height: 500px;
    top: -360px;
  }
}
@media screen and (max-width: 640px) {
  .movie .c-box::before {
    width: calc(240 / 375 * 100vw);
    height: calc(240 / 375 * 100vw);
    top: calc(-120 / 375 * 100vw);
  }
}
.movie .c-box-star, .movie .c-box-moon {
  position: absolute;
  z-index: -1;
}
.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: center/cover no-repeat url(../images/bg-kv.jpg);
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__bg {
    padding-bottom: calc(45 / 375 * 100vw);
    background: center/cover no-repeat url(../images/bg-kv-sp.jpg);
  }
}
.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: 90px;
  }
}
@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;
}
@media screen and (min-width: 641px) {
  .movie .kv__stars {
    animation-delay: 0.5s;
    width: 49.8%;
    top: 126px;
    left: 78px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__stars {
    top: max(83.99999916px, calc(126 / 1400 * 100vw));
    left: max(51.99999948px, calc(78 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__stars {
    animation-delay: 0.3s;
    width: calc(365 / 375 * 100vw);
    top: 0;
    left: 0;
  }
}
.movie .kv__text {
  text-align: center;
  position: relative;
  z-index: 3;
}
.movie .kv__text__ttl {
  margin-left: auto;
  margin-right: auto;
  animation-delay: 0.1s;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__ttl {
    width: 640px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__ttl {
    width: max(426.6666624px, calc(640 / 1400 * 100vw));
    margin-bottom: max(6.6666666px, calc(10 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__ttl {
    width: 100%;
    margin-bottom: calc(560 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv__text__txt {
    animation-delay: 0.2s;
    width: 745px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__txt {
    width: max(496.6666617px, calc(745 / 1400 * 100vw));
    margin-bottom: max(26.6666664px, calc(40 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__txt {
    width: calc(335 / 375 * 100vw);
    margin: 0 auto calc(16 / 375 * 100vw);
  }
}
.movie .kv__text__link {
  display: flex;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__link {
    animation-delay: 0.3s;
    justify-content: center;
    column-gap: 20px;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__link {
    column-gap: max(13.3333332px, calc(20 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__link {
    flex-direction: column;
    align-items: center;
    row-gap: calc(10 / 375 * 100vw);
  }
}
.movie .kv__text__link__btn {
  display: flex;
  transition: all 0.3s;
}
@media screen and (min-width: 641px) {
  .movie .kv__text__link__btn {
    width: 336px;
  }
  .movie .kv__text__link__btn:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 1400px) and (min-width: 641px) {
  .movie .kv__text__link__btn {
    width: max(223.99999776px, calc(336 / 1400 * 100vw));
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__text__link__btn {
    width: calc(335 / 375 * 100vw);
  }
}
.movie .kv__text__link__btn img {
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
}
.movie .kv__img {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 641px) {
  .movie .kv__img {
    animation-delay: 0.4s;
    text-align: left;
    width: 44.8%;
  }
}
@media screen and (max-width: 640px) {
  .movie .kv__img {
    animation-delay: 0.2s;
    position: absolute;
    width: 100%;
    left: 0;
    top: calc(212 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .kv__img img {
    max-width: 656px;
  }
}
.movie .video__bg {
  overflow: hidden;
  background: linear-gradient(270deg, #76ADFF 0%, #8A7EEB 50%, #BB66E3 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(70 / 375 * 100vw) 0 calc(55 / 375 * 100vw);
  }
}
.movie .video__text01 {
  display: flex;
  align-items: flex-end;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
.movie .video__text01.appear span {
  opacity: 1;
  transform: translateY(0) !important;
}
.movie .video__text01 span {
  opacity: 0;
  transition: all 0.8s;
}
@media screen and (min-width: 641px) {
  .movie .video__text01 span:not(:last-of-type) {
    margin-left: -8px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text01 span:not(:last-of-type) {
    margin-left: calc(-3 / 375 * 100vw);
  }
}
.movie .video__text01 span:nth-of-type(2n) {
  transform: translateY(-50px);
}
.movie .video__text01 span:nth-of-type(2n+1) {
  transform: translateY(50px);
}
.movie .video__text01 span:nth-child(1) {
  transition-delay: 0.2s;
}
.movie .video__text01 span:nth-child(2) {
  transition-delay: 0.4s;
}
.movie .video__text01 span:nth-child(3) {
  transition-delay: 0.6s;
}
.movie .video__text01 span:nth-child(4) {
  transition-delay: 0.8s;
}
.movie .video__text01 span:nth-child(5) {
  transition-delay: 1s;
}
.movie .video__text01 span:nth-child(6) {
  transition-delay: 1.2s;
}
.movie .video__text01 span:nth-child(7) {
  transition-delay: 1.4s;
}
@media screen and (min-width: 641px) {
  .movie .video__text01__l1 {
    width: 166.5px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text01__l1 {
    width: calc(60 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__text01__u {
    width: 189px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text01__u {
    width: calc(66 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__text01__l2 {
    width: 78.3px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text01__l2 {
    width: calc(28 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__text01__t {
    width: 108px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text01__t {
    width: calc(38 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__text01__o {
    width: 157.5px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text01__o {
    width: calc(54 / 375 * 100vw);
  }
}
.movie .video__text02 {
  display: flex;
  align-items: flex-start;
  position: absolute;
  right: 0;
}
@media screen and (min-width: 641px) {
  .movie .video__text02 {
    bottom: 0;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text02 {
    bottom: calc(-12 / 375 * 100vw);
  }
}
.movie .video__text02.appear span {
  opacity: 1;
  transform: translateY(0) !important;
}
.movie .video__text02 span {
  opacity: 0;
  transition: all 0.8s;
}
@media screen and (min-width: 641px) {
  .movie .video__text02 span:nth-of-type(n+3) {
    margin-left: -8px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text02 span:nth-of-type(n+3) {
    margin-left: calc(-3 / 375 * 100vw);
  }
}
.movie .video__text02 span:nth-of-type(2n) {
  transform: translateY(-50px);
}
.movie .video__text02 span:nth-of-type(2n+1) {
  transform: translateY(50px);
}
.movie .video__text02 span:nth-child(1) {
  transition-delay: 0.2s;
}
.movie .video__text02 span:nth-child(2) {
  transition-delay: 0.4s;
}
.movie .video__text02 span:nth-child(3) {
  transition-delay: 0.6s;
}
.movie .video__text02 span:nth-child(4) {
  transition-delay: 0.8s;
}
.movie .video__text02 span:nth-child(5) {
  transition-delay: 1s;
}
@media screen and (min-width: 641px) {
  .movie .video__text02__l1 {
    width: 166.5px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text02__l1 {
    width: calc(60 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__text02__i {
    width: 76.5px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text02__i {
    width: calc(27.5 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__text02__l2 {
    width: 78.3px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text02__l2 {
    width: calc(28 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__text02__y {
    width: 171px;
    margin-top: 66px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__text02__y {
    width: calc(60 / 375 * 100vw);
    margin-top: calc(22 / 375 * 100vw);
  }
}
.movie .video__movie {
  position: relative;
  z-index: 3;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .movie .video__movie {
    max-width: 800px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie {
    max-width: calc(335 / 375 * 100vw);
  }
}
.movie .video__movie__thumb {
  position: relative;
  z-index: 2;
}
.movie .video__movie__thumb::before, .movie .video__movie__thumb::after {
  position: absolute;
  content: "";
  z-index: -1;
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (min-width: 641px) {
  .movie .video__movie__thumb::before {
    background-image: url(../images/dc-video01.png);
    width: 259px;
    height: 233px;
    bottom: -20px;
    left: -239px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie__thumb::before {
    background-image: url(../images/dc-video01-sp.png);
    width: calc(164 / 375 * 100vw);
    height: calc(162 / 375 * 100vw);
    bottom: calc(-56 / 375 * 100vw);
    left: calc(-44 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .video__movie__thumb::after {
    background-image: url(../images/dc-video02.png);
    width: 277px;
    height: 194px;
    top: -13px;
    right: -257px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie__thumb::after {
    background-image: url(../images/dc-video02-sp.png);
    width: calc(44 / 375 * 100vw);
    height: calc(49 / 375 * 100vw);
    right: calc(-15 / 375 * 100vw);
    top: calc(-14 / 375 * 100vw);
    transform: translateY(-100%);
  }
}
.movie .video__movie__thumb a {
  position: relative;
  border: 2px solid #fff;
  display: block;
  overflow: hidden;
}
@media screen and (min-width: 641px) {
  .movie .video__movie__thumb a {
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie__thumb a {
    border-radius: calc(15 / 375 * 100vw);
  }
}
.movie .video__movie__thumb a::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 a::after {
    width: 100px;
    height: 100px;
  }
}
@media screen and (max-width: 640px) {
  .movie .video__movie__thumb a::after {
    width: calc(60 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .bg-fix {
    padding-top: 120px;
  }
}
@media screen and (max-width: 640px) {
  .movie .bg-fix {
    padding-top: calc(75 / 375 * 100vw);
  }
}
.movie .bg-fix.is-fixed::before {
  opacity: 1;
}
.movie .bg-fix::before {
  position: fixed;
  content: "";
  display: block;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  opacity: 0;
}
@media screen and (min-width: 641px) {
  .movie .bg-fix::before {
    background: center/cover no-repeat url(../images/bg-kv.jpg);
  }
}
@media screen and (max-width: 640px) {
  .movie .bg-fix::before {
    background: center/cover no-repeat url(../images/bg-kv-sp.jpg);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.movie .intro__wrap {
  position: relative;
}
.movie .intro__gallery {
  position: relative;
  z-index: 5;
}
.movie .intro__gallery__img {
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  overflow: hidden;
}
@media screen and (min-width: 641px) {
  .movie .intro__gallery__img {
    border-radius: 20px;
  }
}
.movie .intro__gallery__img .layer {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
}
.movie .intro__gallery__img .layer.is-active {
  opacity: 1;
}
@media screen and (min-width: 641px) {
  .movie .intro__gallery__img01 {
    width: 320px;
    height: 180px;
    box-shadow: 0px 0px 20px #C3A5F6;
    left: -40px;
    top: 900px;
  }
}
@media (max-width: 1180px) and (min-width: 641px) {
  .movie .intro__gallery__img01 {
    width: 240px;
    height: 135px;
    left: -16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__gallery__img01 {
    width: calc(320 / 375 * 100vw);
    height: calc(180 / 375 * 100vw);
    top: calc(320 / 375 * 100vw);
    right: calc(-20 / 375 * 100vw);
    box-shadow: 0px 0px 10px #95FFEA;
    border-radius: calc(15 / 375 * 100vw) 0px 0px calc(15 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__gallery__img02 {
    width: 240px;
    height: 135px;
    box-shadow: 0px 0px 20px #76ADFF;
    top: 1141px;
    left: -60px;
  }
}
@media (max-width: 1180px) and (min-width: 641px) {
  .movie .intro__gallery__img02 {
    left: -26px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__gallery__img02 {
    width: calc(320 / 375 * 100vw);
    height: calc(180 / 375 * 100vw);
    box-shadow: 0px 0px 10px #FF9FDF;
    border-radius: 0px calc(15 / 375 * 100vw) calc(15 / 375 * 100vw) 0px;
    left: calc(-20 / 375 * 100vw);
    top: calc(530 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__gallery__img03 {
    width: 240px;
    height: 135px;
    box-shadow: 0px 0px 20px #BB66E3;
    top: 821px;
    right: 20px;
  }
}
@media (max-width: 1180px) and (min-width: 641px) {
  .movie .intro__gallery__img03 {
    right: -16px;
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__gallery__img04 {
    width: 320px;
    height: 180px;
    box-shadow: 0px 0px 20px #FFEF47;
    top: 1016px;
    right: -40px;
  }
}
@media (max-width: 1180px) and (min-width: 641px) {
  .movie .intro__gallery__img04 {
    right: -26px;
    width: 240px;
    height: 135px;
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__box .c-box-star {
    opacity: 0.5;
    width: 400px;
    top: 172px;
    left: -40px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__box .c-box-star {
    opacity: 0.3;
    width: calc(240 / 375 * 100vw);
    top: calc(675 / 375 * 100vw);
    left: calc(-26 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__box .c-box-moon {
    opacity: 0.5;
    width: 400px;
    top: 341px;
    right: -40px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__box .c-box-moon {
    opacity: 0.3;
    width: calc(240 / 375 * 100vw);
    right: calc(-84 / 375 * 100vw);
    bottom: calc(575 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__ttl {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__ttl {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.movie .intro__lead {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .intro__lead {
    width: 477px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__lead {
    width: calc(256 / 375 * 100vw);
    margin-bottom: calc(450 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__img {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    column-gap: 40px;
    margin-bottom: 40px;
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__img img {
    max-width: 480px;
    width: 45.11%;
    border-radius: 20px;
  }
}
.movie .intro__img__img01 {
  box-shadow: 0px 0px 20px #95FFEA;
}
.movie .intro__img__img02 {
  margin-top: 40px;
  box-shadow: 0px 0px 10px #FF9FDF;
}
.movie .intro__text {
  text-align: center;
  line-height: 2;
  font-weight: 500;
}
@media screen and (min-width: 641px) {
  .movie .intro__text {
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__text {
    font-size: calc(14 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__text.mt-s {
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__text.mt-s {
    margin-top: calc(10 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__text.mt-l {
    margin-top: 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__text.mt-l {
    margin-top: calc(20 / 375 * 100vw);
  }
}
.movie .intro__text rt {
  font-size: 56%;
}
.movie .intro__maintext {
  text-align: center;
}
@media screen and (min-width: 641px) {
  .movie .intro__maintext {
    margin: 30px 0;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__maintext {
    margin: calc(20 / 375 * 100vw) 0;
  }
}
.movie .intro__maintext__lead {
  line-height: 2;
  font-weight: 700;
  color: #FF5AAE;
}
@media screen and (min-width: 641px) {
  .movie .intro__maintext__lead {
    font-size: 20px;
    margin-bottom: 4px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__maintext__lead {
    font-size: calc(14 / 375 * 100vw);
    margin-bottom: calc(4 / 375 * 100vw);
  }
}
.movie .intro__maintext__txt {
  display: inline-block;
  background-color: #FF5AAE;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
@media screen and (min-width: 641px) {
  .movie .intro__maintext__txt {
    font-size: 20px;
    padding: 12px 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__maintext__txt {
    font-size: calc(14 / 375 * 100vw);
    padding: calc(8 / 375 * 100vw) calc(12 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__maintext__txt:not(:last-of-type) {
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__maintext__txt:not(:last-of-type) {
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .intro__castbox {
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .movie .intro__castbox {
    padding: 40px;
    border-radius: 20px;
    margin-top: 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__castbox {
    padding: calc(40 / 375 * 100vw) calc(20 / 375 * 100vw);
    border-radius: calc(20 / 375 * 100vw);
    margin-top: calc(40 / 375 * 100vw);
  }
}
.movie .intro__castbox__ttl {
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 641px) {
  .movie .intro__castbox__ttl {
    width: 213px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__castbox__ttl {
    width: calc(213 / 375 * 100vw);
    margin-bottom: calc(10 / 375 * 100vw);
  }
}
.movie .intro__castbox__txt {
  font-weight: 500;
  line-height: 1.75;
  color: #918BF0;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .movie .intro__castbox__txt {
    font-size: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__castbox__txt {
    font-size: calc(14 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .intro__castbox__txt + .intro__castbox__ttl {
    margin-top: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .intro__castbox__txt + .intro__castbox__ttl {
    margin-top: calc(20 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .creamymami {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.movie .creamymami__box {
  background-color: #FFF6D5;
}
@media screen and (min-width: 641px) {
  .movie .creamymami__box {
    text-align: left;
    border: 8px solid #6BCACC;
    border-radius: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__box {
    border: 4px solid #6BCACC;
    border-radius: calc(20 / 375 * 100vw);
  }
}
.movie .creamymami__head {
  position: relative;
  background-color: #6BCACC;
}
@media screen and (min-width: 641px) {
  .movie .creamymami__head {
    text-align: left;
    border-radius: 12px 12px 0 0;
    padding: 16px 52px;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__head {
    text-align: center;
    border-radius: calc(12 / 375 * 100vw) calc(12 / 375 * 100vw) 0 0;
    padding: calc(20 / 375 * 100vw) 0 calc(18 / 375 * 100vw);
  }
}
.movie .creamymami__head::after {
  position: absolute;
  content: "";
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
}
@media screen and (min-width: 641px) {
  .movie .creamymami__head::after {
    background-image: url(../images/dc-creamymami.png);
    width: 250px;
    height: 99px;
    top: -22px;
    left: 765px;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__head::after {
    background-image: url(../images/dc-creamymami-sp.png);
    width: calc(346 / 375 * 100vw);
    height: calc(90 / 375 * 100vw);
    top: calc(-3 / 375 * 100vw);
    left: calc(-12 / 375 * 100vw);
  }
}
.movie .creamymami__head img {
  position: relative;
  z-index: 3;
}
@media screen and (min-width: 641px) {
  .movie .creamymami__head img {
    width: 692px;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__head img {
    width: calc(260 / 375 * 100vw);
  }
}
.movie .creamymami__body {
  position: relative;
}
@media screen and (min-width: 641px) {
  .movie .creamymami__body {
    padding: 20px 52px 30px;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__body {
    padding: calc(30 / 375 * 100vw) calc(30 / 375 * 100vw) calc(25 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .creamymami__body__img {
    position: absolute;
    z-index: 1;
    width: 210px;
    transform: rotate(15deg);
    bottom: -30px;
    left: 79%;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__body__img {
    width: calc(180 / 375 * 100vw);
    display: block;
    margin: 0 auto calc(20 / 375 * 100vw);
  }
}
.movie .creamymami__body__txt {
  line-height: 1.75;
  font-weight: 500;
}
@media screen and (min-width: 641px) {
  .movie .creamymami__body__txt {
    font-size: 16px;
    width: 78%;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__body__txt {
    font-size: calc(14 / 375 * 100vw);
  }
}
.movie .creamymami__body__note {
  line-height: 1.75;
}
@media screen and (min-width: 641px) {
  .movie .creamymami__body__note {
    font-size: 12px;
    margin-top: 10px;
  }
}
@media screen and (max-width: 640px) {
  .movie .creamymami__body__note {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(10 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .theater {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.movie .theater__box .c-box-star {
  opacity: 0.3;
}
@media screen and (min-width: 641px) {
  .movie .theater__box .c-box-star {
    width: 320px;
    top: -38px;
    left: -9px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__box .c-box-star {
    transform: rotate(-39.22deg);
    top: calc(155 / 375 * 100vw);
    right: calc(-25 / 375 * 100vw);
    width: calc(200 / 375 * 100vw);
  }
}
.movie .theater__box .c-box-moon {
  opacity: 0.3;
}
@media screen and (min-width: 641px) {
  .movie .theater__box .c-box-moon {
    width: 320px;
    right: 19px;
    bottom: -18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__box .c-box-moon {
    width: calc(200 / 375 * 100vw);
    right: calc(36 / 375 * 100vw);
    bottom: calc(-16 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .theater__ttl {
    margin-bottom: 60px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__ttl {
    margin-bottom: calc(40 / 375 * 100vw);
  }
}
.movie .theater__bar {
  border-top: 1px dashed #FF9FDF;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 641px) {
  .movie .theater__bar {
    width: calc(100% - 40px);
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__bar {
    width: calc(100% - calc(25 / 375 * 100vw));
  }
}
.movie .theater__bar::before, .movie .theater__bar::after {
  position: absolute;
  content: "";
  display: block;
  background: center/contain no-repeat url(../images/ic-star-pk.png);
  top: 50%;
}
@media screen and (min-width: 641px) {
  .movie .theater__bar::before, .movie .theater__bar::after {
    width: 16px;
    height: 16px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__bar::before, .movie .theater__bar::after {
    width: calc(10 / 375 * 100vw);
    height: calc(10 / 375 * 100vw);
  }
}
.movie .theater__bar::before {
  left: 0;
  transform: translate(-125%, -50%);
}
.movie .theater__bar::after {
  right: 0;
  transform: translate(125%, -50%);
}
.movie .theater__item {
  display: flex;
  overflow: hidden;
  text-align: left;
}
@media screen and (min-width: 641px) {
  .movie .theater__item {
    padding: 28px 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__item {
    flex-direction: column;
    padding: calc(25 / 375 * 100vw) calc(20 / 375 * 100vw);
  }
}
.movie .theater__item__ttl {
  color: #FF5AAE;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .theater__item__ttl {
    width: 240px;
    font-size: 18px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__item__ttl {
    width: 100%;
    font-size: calc(16 / 375 * 100vw);
    margin-bottom: calc(20 / 375 * 100vw);
  }
}
.movie .theater__item__list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width: 641px) {
  .movie .theater__item__list {
    column-gap: 40px;
    row-gap: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__item__list {
    row-gap: calc(20 / 375 * 100vw);
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__item__list li {
    width: 100%;
  }
}
.movie .theater__item__list li a {
  position: relative;
  font-weight: 500;
  line-height: 1.4;
  color: #666;
}
@media screen and (min-width: 641px) {
  .movie .theater__item__list li a {
    font-size: 18px;
    padding-left: 28px;
  }
  .movie .theater__item__list li a:hover::before {
    opacity: 0;
  }
  .movie .theater__item__list li a:hover::after {
    opacity: 1;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__item__list li a {
    font-size: calc(16 / 375 * 100vw);
    padding-left: calc(28 / 375 * 100vw);
  }
}
.movie .theater__item__list li a::before, .movie .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 .theater__item__list li a::before, .movie .theater__item__list li a::after {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .theater__item__list li a::before, .movie .theater__item__list li a::after {
    width: calc(20 / 375 * 100vw);
    height: calc(20 / 375 * 100vw);
  }
}
.movie .theater__item__list li a::before {
  background-image: url(../images/ic-arrow-wh.jpg);
}
.movie .theater__item__list li a::after {
  opacity: 0;
  background-image: url(../images/ic-arrow-pk.jpg);
}
@media screen and (min-width: 641px) {
  .movie .link {
    padding-bottom: 120px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link {
    padding-bottom: calc(60 / 375 * 100vw);
  }
}
.movie .link__sns {
  display: flex;
  justify-content: center;
}
@media screen and (min-width: 641px) {
  .movie .link__sns {
    column-gap: 20px;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__sns {
    column-gap: calc(10 / 375 * 100vw);
    margin-bottom: calc(30 / 375 * 100vw);
  }
}
.movie .link__sns__item a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
@media screen and (min-width: 641px) {
  .movie .link__sns__item a {
    width: 80px;
    height: 80px;
  }
  .movie .link__sns__item a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__sns__item a {
    width: calc(60 / 375 * 100vw);
    height: calc(60 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .link__sns__item a img {
    width: 46px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__sns__item a img {
    width: calc(34.5 / 375 * 100vw);
  }
}
.movie .link__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.2));
  background-repeat: no-repeat;
  background-size: contain;
  transition: all 0.3s;
}
@media screen and (min-width: 641px) {
  .movie .link__btn {
    background-image: url(../images/bg-official-btn.png);
    width: 476px;
    height: 66px;
    column-gap: 10px;
  }
  .movie .link__btn:hover {
    opacity: 0.7;
  }
  .movie .link__btn:hover .link__btn__icon {
    transform: rotateY(360deg);
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn {
    background-image: url(../images/bg-official-btn-sp.png);
    width: calc(335 / 375 * 100vw);
    height: calc(66 / 375 * 100vw);
    column-gap: calc(10 / 375 * 100vw);
  }
}
.movie .link__btn__icon {
  transition: all 0.6s ease-in-out;
}
@media screen and (min-width: 641px) {
  .movie .link__btn__icon {
    width: 27px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn__icon {
    width: calc(27 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .link__btn__txt {
    width: 130px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn__txt {
    width: calc(108 / 375 * 100vw);
  }
}
@media screen and (min-width: 641px) {
  .movie .link__btn__arrow {
    width: 20px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__btn__arrow {
    width: calc(20 / 375 * 100vw);
  }
}
.movie .link__copy {
  text-align: center;
  line-height: 1.4;
}
@media screen and (min-width: 641px) {
  .movie .link__copy {
    font-size: 14px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 640px) {
  .movie .link__copy {
    font-size: calc(12 / 375 * 100vw);
    margin-top: calc(30 / 375 * 100vw);
  }
}

/* modaal */
.luluttolilly .modaal-video-wrap {
  max-width: 100%;
  max-height: calc(100vh - 180px);
  width: auto;
  aspect-ratio: 16/9;
  margin: auto;
}

.luluttolilly .modaal-inner-wrapper {
  vertical-align: top;
  padding: 120px 30px 0;
}

.luluttolilly .modaal-close {
  right: 30px;
}

.luluttolilly .modaal-close {
  width: 60px;
  height: 60px;
}

.luluttolilly .modaal-close:before,
.luluttolilly .modaal-close:after {
  top: 0;
  left: 28px;
  width: 3px;
  height: 60px;
  border-radius: 5px;
}

.luluttolilly .modaal-close:focus,
.luluttolilly .modaal-close:hover {
  background: transparent;
}

.luluttolilly .modaal-close:focus::before,
.luluttolilly .modaal-close:hover::after {
  width: 4px;
}

@media only screen and (min-width: 1400px) {
  .luluttolilly .modaal-video-container {
    max-width: 90%;
    max-height: none;
    height: 90%;
  }
}
@media screen and (min-height: 901px) and (min-width: 1400px) {
  .luluttolilly .modaal-inner-wrapper {
    padding-top: 180px;
  }
  .luluttolilly .modaal-video-container {
    max-height: calc(100vh - 240px);
  }
  .luluttolilly .modaal-close {
    top: 50px;
  }
}
@media screen and (max-height: 900px) {
  .luluttolilly .modaal-video-container {
    max-width: unset;
    max-height: unset;
  }
}
@media screen and (max-height: 900px) and (min-width: 1400px) {
  .luluttolilly .modaal-video-container {
    max-width: unset;
    max-width: 100%;
    height: 100%;
  }
}
@media only screen and (max-width: 900px) {
  .luluttolilly .modaal-inner-wrapper {
    padding: 120px 20px 0;
  }
  .luluttolilly .modaal-close {
    width: 50px;
    height: 50px;
    top: 40px;
    right: 20px;
  }
}
@media only screen and (max-width: 640px) {
  .luluttolilly .modaal-close {
    width: 7.8125vw;
    height: 7.8125vw;
    top: 6.25vw;
    right: 3.125vw;
  }
  .luluttolilly .modaal-close:before,
  .luluttolilly .modaal-close:after {
    top: 0;
    left: 3.125vw;
    height: 7.8125vw;
    border-radius: 3px;
  }
}
@media screen and (max-width: 500px) {
  .luluttolilly .modaal-inner-wrapper {
    padding: 100px 12px 0;
  }
  .luluttolilly .modaal-close {
    width: 40px;
    height: 40px;
    top: 30px;
  }
  .luluttolilly .modaal-close:before,
  .luluttolilly .modaal-close:after {
    top: 0;
    left: 18px;
    height: 40px;
    border-radius: 3px;
  }
}