@charset "UTF-8";
/* --- base reset --- */
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: none;
  text-size-adjust: none;
  margin-top: 0 !important;
}

body,
h1, h2, h3, h4,
p, figure, blockquote,
dl, dd {
  margin: 0;
}

ul[role=list],
ol[role=list] {
  list-style: none;
  padding-left: 0;
}

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

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

button {
  padding: 0;
}

:target {
  scroll-margin-top: 80px; /* 固定ヘッダー用に調整 */
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

th,
td {
  padding: 0;
  text-align: left;
  vertical-align: top;
}

th {
  font-weight: normal;
}

/* ボタンの余計な見た目リセット（必要なら） */
button {
  background: none;
  border: none;
  cursor: pointer;
}

/* フォーカス見やすく */
:focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
}

/* foundation/_base.scss */
html {
  scroll-behavior: smooth;
}
@media (min-width: 1080px) {
  html {
    scroll-padding-top: 98px;
  }
}
html {
  font-size: 100%;
}

.l-header {
  width: 100%;
  height: 52px;
}
@media (min-width: 1080px) {
  .l-header {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(25px);
    height: 98px;
    position: fixed;
    z-index: 3;
    display: flex;
    justify-content: space-between;
    align-items: center;
    top: 0;
  }
}
.l-header .logo {
  padding: 10px;
  height: 42px;
  width: 196px;
}
@media (min-width: 769px) {
  .l-header .logo {
    width: 289px;
    height: auto;
  }
}
.l-header .logo img {
  width: 100%;
}

.sp-nav {
  width: 100%;
  max-width: 750px;
  margin-inline: auto;
}
.sp-nav .l-header__sp-nav {
  display: flex;
  flex-wrap: wrap;
  border: 1px solid #E6CCE5;
  border-radius: 10px;
  padding-left: 0;
  margin-inline: 20px;
  background: linear-gradient(270deg, #F1E2F0 0%, rgba(241, 226, 240, 0.5) 100%);
}
.sp-nav .l-header__sp-nav li {
  width: 50%;
}
.sp-nav .l-header__sp-nav li:nth-of-type(2n) {
  border-left: 1px solid #E6CCE5;
}
.sp-nav .l-header__sp-nav li:nth-of-type(n + 3) {
  border-top: 1px solid #E6CCE5;
}
.sp-nav .l-header__sp-nav li a {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  text-decoration: none;
  color: #7D2A91;
  padding-inline: 10px;
}
@media (min-width: 1080px) {
  .sp-nav {
    display: none;
  }
}

.pc-nav .l-header__pc-nav {
  display: none;
}
@media (min-width: 1080px) {
  .pc-nav .l-header__pc-nav {
    display: flex;
    margin-right: 20px;
    gap: 0;
  }
  .pc-nav .l-header__pc-nav li a {
    text-decoration: none;
    color: #000;
    padding: 20px 15px;
    transition: 0.3s ease-in-out;
  }
}
@media (min-width: 1080px) and (any-hover: hover) and (pointer: fine) {
  .pc-nav .l-header__pc-nav li a:hover {
    color: #7D2A91;
  }
}
@media (min-width: 1080px) {
  .pc-nav .l-header__pc-nav {
    margin-right: clamp(0px, -192.857px + 17.857vw, 150px);
    gap: clamp(0px, -25.714px + 2.381vw, 20px);
  }
  .pc-nav .l-header__pc-nav li a {
    padding-inline: 20px;
  }
}
.pc-nav .l-header__pc-nav .current {
  position: relative;
}
.pc-nav .l-header__pc-nav .current::after {
  content: "";
  position: absolute;
  background: #7D2A91;
  width: 10px;
  height: 10px;
  border-radius: 100vmax;
  left: calc(50% - 5px);
  bottom: 0;
}

.l-footer__inner {
  background: #7D2A91;
}
.l-footer__sns {
  width: 236px;
  height: 168px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-block: 0;
}
@media (min-width: 769px) {
  .l-footer__sns {
    width: 150px;
    height: 98px;
  }
}
.l-footer__sns a {
  transition: 0.3s;
}
@media (any-hover: hover) and (pointer: fine) {
  .l-footer__sns a:hover {
    opacity: 0.8;
  }
}
@media (min-width: 769px) {
  .l-footer__sns img {
    width: 30px;
    height: auto;
  }
}

small {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #B16BA7;
  height: 62px;
}

.l-pagetop {
  position: fixed;
  right: 20px;
  z-index: 6;
}
@media (min-width: 1080px) {
  .l-pagetop {
    right: 40px;
  }
}
.l-pagetop a {
  display: inline-flex;
  width: 50px;
  aspect-ratio: 1/1;
  border-radius: 37.925px;
  border: 0.702px solid #FFF;
  background: radial-gradient(50% 50% at 50% 50%, rgba(227, 197, 226, 0.5) 0%, rgba(177, 107, 167, 0.5) 100%);
}
@media (any-hover: hover) and (pointer: fine) {
  .l-pagetop a:hover::after {
    top: 38%;
  }
}
@media (min-width: 1080px) {
  .l-pagetop a {
    width: 70px;
  }
}
.l-pagetop a::after {
  content: "";
  transition: 0.3s ease-in-out;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  rotate: -45deg;
  width: 10px;
  aspect-ratio: 1/1;
  position: absolute;
  top: 40%;
  left: 54%;
  transform: translate(-50%, -50%);
}
@media (min-width: 1080px) {
  .l-pagetop a::after {
    width: 15px;
    top: 40%;
    left: 55%;
  }
}

.c-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
  margin-bottom: 50px;
}
@media (min-width: 1080px) {
  .c-card {
    flex-direction: row-reverse;
    justify-content: space-between;
    margin-bottom: 175px;
  }
}
@media (min-width: 1080px) {
  .c-card.rev {
    flex-direction: row;
  }
}
.c-card-video {
  max-width: 700px;
  position: relative;
  transition: 0.3s ease-in-out;
}
.c-card-video:has(.soon)::before {
  content: "Coming soon";
  color: #fff;
  font-family: YuMincho, "Yu Mincho", serif, "Noto Serif JP";
  letter-spacing: 0.1em;
  background: #7D2A91;
  padding: 10px;
  position: absolute;
  width: 223px;
  height: 54px;
  display: flex;
  justify-content: center;
  align-items: center;
  top: calc(50% - 27px);
  left: 50%;
  transform: translateX(-50%);
  display: grid;
  place-items: center;
  opacity: 0.9;
  z-index: 3;
}
@media (min-width: 1080px) {
  .c-card-video:has(.soon)::before {
    width: 266px;
    height: 64px;
    top: calc(50% - 32px);
  }
}
@media (any-hover: hover) and (pointer: fine) {
  .c-card-video:hover {
    opacity: 0.8;
  }
}
@media (min-width: 1080px) {
  .c-card-video {
    max-width: unset;
    width: min(750px, 63%);
  }
}
.c-card-video__wrap {
  position: relative;
}
.c-card-video__wrap::after {
  content: "";
  border-radius: 10px;
  border: 1px solid #FFF;
  opacity: 0.3;
  background: #E6CCE5;
  width: 100%;
  aspect-ratio: 16/9;
  position: absolute;
  right: -10px;
  top: 10px;
  z-index: 0;
}
@media (min-width: 1080px) {
  .c-card-video__wrap::after {
    right: -25px;
    top: 25px;
    border-radius: 20px;
  }
}
.c-card-video__wrap.play::before {
  content: "";
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(32px, 9.099px + 6.107vw, 56px);
  aspect-ratio: 1/1;
  z-index: 2;
}
.c-card-video__wrap.soon {
  pointer-events: none;
}
.c-card-video__wrap.soon::before {
  content: "";
  background: rgba(251, 224, 255, 0.6);
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  z-index: 2;
}
@media (min-width: 1080px) {
  .c-card-video__wrap.soon::before {
    border-radius: 20px;
  }
}
.c-card-video__video {
  width: 100%;
  border-radius: 10px;
  aspect-ratio: 16/9;
  position: relative;
  z-index: 1;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 1px 2px 0px;
}
@media (min-width: 1080px) {
  .c-card-video__video {
    border-radius: 20px;
  }
}
.c-card-txt {
  color: #7D2A91;
  font-family: YuMincho, "Yu Mincho", serif, "Noto Serif JP";
  margin-top: 30px;
}
@media (min-width: 1080px) {
  .c-card-txt {
    marign-top: 0;
    width: min(375px, 31%);
  }
}
.c-card-txt__txt {
  color: #000;
  font-family: "Noto Sans JP", Verdana, Meiryo, "M+ 1p", sans-serif;
  line-height: 1.8;
  margin-top: 20px;
}

.c-over-movies {
  transition: 0.3s ease-in-out;
  position: relative;
}
.c-over-movies::after {
  content: "";
  background: url(../img/arrow.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: clamp(32px, 9.099px + 6.107vw, 56px);
  aspect-ratio: 1/1;
}
@media (min-width: 769px) {
  .c-over-movies::after {
    width: clamp(32px, 16px + 2.083vw, 56px);
  }
}
@media (any-hover: hover) and (pointer: fine) {
  .c-over-movies:hover {
    opacity: 0.8;
  }
}
.c-over-movies__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 14px;
}
@media (min-width: 1080px) {
  .c-over-movies__list {
    gap: clamp(14px, -28px + 3.889vw, 28px);
  }
}
.c-over-movies__list li {
  width: calc(50% - clamp(7px, -14px + 1.944vw, 14px));
  line-height: 0;
}
@media (min-width: 769px) {
  .c-over-movies__list li {
    width: auto;
    flex: 1;
  }
}
.c-over-movies__list li img {
  border-radius: clamp(5px, 0.229px + 1.272vw, 10px);
}
@media (min-width: 1080px) {
  .c-over-movies__list li img {
    border-radius: 10px;
  }
}

.c-video-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
}
.c-video-modal[hidden] {
  display: none;
}
.c-video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
}
.c-video-modal__content {
  position: absolute;
  top: 50%;
  left: 50%;
  width: min(90vw, 1390px);
  transform: translate(-50%, -50%);
}
.c-video-modal__iframe {
  width: 100%;
  aspect-ratio: 16/9;
  border: 0;
}
.c-video-modal__close {
  position: absolute;
  top: -20px;
  right: -15px;
  color: #7D2A91;
  font-size: 1.5rem;
  background: #fff;
  width: 40px;
  aspect-ratio: 1/1;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vmax;
}
@media (min-width: 769px) {
  .c-video-modal__close {
    width: 60px;
    font-size: 2.2rem;
    right: -20px;
  }
}

body {
  overflow-x: hidden;
}

.br-pc {
  display: none;
}
@media (min-width: 1080px) {
  .br-pc {
    display: inline-block;
  }
}

.l-main {
  font-size: 0.875rem;
}
@media (min-width: 769px) {
  .l-main {
    font-size: 1rem;
  }
}
@media (min-width: 1921px) {
  .l-main {
    background: url(../img/1921over.svg) no-repeat;
    background-size: cover;
    width: 100%;
    height: 3389px;
    position: absolute;
    inset: 0;
    z-index: 0;
  }
}

@media (min-width: 769px) {
  .p-hero {
    position: relative;
  }
}
.p-hero__inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  background: url(../img/bg_sp_1.svg) no-repeat top right;
  background-size: cover;
  padding-top: 112px;
  align-items: center;
  margin-top: -52px;
  min-height: clamp(513px, 334.565px + 47.583vw, 700px);
  position: relative;
  z-index: -1;
  overflow-x: hidden;
}
.p-hero__inner::after {
  content: "";
  position: absolute;
  background: url(../img/hero-text_sp.png) no-repeat;
  background-size: contain;
  width: min(724px, 50%);
  aspect-ratio: 724/356;
  top: 55px;
  right: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  .p-hero__inner::after {
    background: url(../img/hero-text.png) no-repeat;
    background-size: contain;
    z-index: 0;
  }
}
@media (min-width: 1080px) {
  .p-hero__inner::after {
    width: min(724px, 45%);
    top: 150px;
    right: unset;
    left: 3%;
  }
}
@media (min-width: 1921px) {
  .p-hero__inner::after {
    left: calc(50% - 600px);
  }
}
@media (min-width: 769px) {
  .p-hero__inner {
    background: url(../img/bg_pc_1.svg) no-repeat top center;
    flex-direction: row;
    background-size: cover;
    justify-content: flex-end;
    padding-right: clamp(20px, -55.429px + 9.821vw, 86px);
    position: absolute;
    top: 0;
    gap: 20px;
    padding-block: 200px;
    position: relative;
    z-index: -2;
  }
}
@media (min-width: 1080px) {
  .p-hero__inner {
    gap: 50px;
  }
}
@media (min-width: 1921px) {
  .p-hero__inner {
    background: none;
    padding-inline: calc(50% - 950px);
  }
}
.p-hero__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-family: YuMincho, "Yu Mincho", serif, "Noto Serif JP";
  color: #7D2A91;
  letter-spacing: 0.05em;
  position: relative;
  z-index: 1;
  margin-bottom: 20px;
}
@media (min-width: 769px) {
  .p-hero__ttl {
    width: min(200px, 30%);
    margin-bottom: 0;
  }
}
@media (min-width: 1080px) {
  .p-hero__ttl {
    width: min(300px, 40%);
  }
}
.p-hero__ttl--sub-name {
  font-size: 0.89rem;
}
@media (min-width: 769px) {
  .p-hero__ttl--sub-name {
    font-size: clamp(1.2rem, 0.327rem + 1.818vw, 1.964rem);
  }
}
.p-hero__ttl--name {
  font-size: 1.6rem;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  .p-hero__ttl--name {
    font-size: clamp(2.188rem, 0.688rem + 3.125vw, 3.5rem);
  }
}
.p-hero__ttl--en {
  font-size: 0.4919rem;
}
@media (min-width: 769px) {
  .p-hero__ttl--en {
    font-size: 1.08rem;
  }
}
.p-hero__video-wrap {
  width: 100%;
  position: relative;
}
.p-hero__video-wrap::after {
  content: "";
  opacity: 0.3;
  background: #E6CCE5;
  width: 100%;
  display: inline-block;
  aspect-ratio: 1189/606;
  position: absolute;
  bottom: -10px;
  left: 10px;
  z-index: -1;
}
@media (min-width: 769px) {
  .p-hero__video-wrap::after {
    background: linear-gradient(106deg, #CED8F8 37.63%, #6B87B1 95.65%);
    background-blend-mode: color-dodge;
    border-radius: 22px;
    box-shadow: none;
    aspect-ratio: 1189/606;
    position: absolute;
    bottom: unset;
    left: unset;
    top: clamp(10px, -24.286px + 4.464vw, 40px);
    right: clamp(-40px, 24.2857px - 4.4643vw, -10px);
    border-radius: 20px;
  }
}
@media (min-width: 769px) {
  .p-hero__video-wrap {
    width: min(1189px, 70%);
    max-width: 1189px;
    aspect-ratio: 1189/606;
    position: relative;
  }
}
@media (min-width: 1080px) {
  .p-hero__video-wrap {
    width: min(1189px, 66%);
  }
}
.p-hero__video {
  width: 100%;
  aspect-ratio: 375/200;
  object-fit: cover;
}
@media (min-width: 769px) {
  .p-hero__video {
    width: 100%;
    border-radius: 20px;
    position: absolute;
    z-index: 0;
    aspect-ratio: 1189/606;
  }
}

.top-bg2 {
  padding-top: 20px;
}
@media (min-width: 1080px) {
  .top-bg2 {
    background: url(../img/bg_pc_2.svg) no-repeat;
    background-size: cover;
    padding-top: 100px;
    width: 100%;
    height: 1200px;
  }
}
@media (min-width: 1921px) {
  .top-bg2 {
    background: none;
  }
}

.top-bg3 {
  background: url(../img/bg_sp_4.svg) no-repeat center;
  background-size: contain;
}
@media (min-width: 1080px) {
  .top-bg3 {
    background: none;
  }
}

.section-top__02 {
  background: url(../img/bg_sp_2.svg) no-repeat bottom center;
  background-size: contain;
}
@media (min-width: 1080px) {
  .section-top__02 {
    background: none;
  }
}
.section-top__03 {
  background: url(../img/bg_sp_3.png) no-repeat bottom;
  background-size: contain;
}
@media (min-width: 1080px) {
  .section-top__03 {
    background: url(../img/bg_pc_3.svg) no-repeat top 140px center;
    background-size: contain;
    padding-block: 100px 30px;
  }
}
@media (min-width: 1921px) {
  .section-top__03 {
    background: none;
  }
}
@media (min-width: 1080px) {
  .section-top__04 {
    background: url(../img/bg_pc_4.svg) no-repeat bottom center;
    background-size: contain;
    transform: translateY(-50px);
    padding-block: 50px;
  }
}
@media (min-width: 1921px) {
  .section-top__04 {
    background: none;
  }
}
@media (min-width: 1080px) {
  .section-top__04 .c-card {
    margin-bottom: 111px;
  }
}

@media (min-width: 1080px) and (max-width: 1500px) {
  .section-top__04 {
    background-position: center center;
  }
}
.p-ttl__index {
  display: flex;
  flex-direction: column;
  text-align: center;
}
@media (min-width: 1080px) {
  .p-ttl__index {
    text-align: left;
  }
}
.p-ttl__index--en {
  color: #E6CCE5;
  letter-spacing: 0.1em;
  font-family: "Noto Sans JP", Verdana, Meiryo, "M+ 1p", sans-serif;
  font-weight: normal;
  font-size: 1rem;
  margin-bottom: 10px;
}
.p-ttl__index--jp {
  font-size: 1.625rem;
  line-height: 1.4;
}
@media (min-width: 1080px) {
  .p-ttl__index--jp {
    font-size: 2rem;
  }
}
.p-ttl__index--sub {
  font-size: 1.125rem;
  margin-left: 10px;
}
@media (min-width: 1080px) {
  .p-ttl__index--sub {
    margin-left: unset;
  }
}
.p-ttl--over-movies {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}
.p-ttl--over-movies img {
  width: clamp(188px, 157.014px + 8.263vw, 276px);
  height: auto;
}

.p-info {
  margin-block: 100px 70px;
  transform: translateY(-30px);
}
@media (min-width: 1080px) {
  .p-info {
    margin-top: 0;
  }
}
.p-info__inner {
  max-width: 1240px;
  margin-inline: auto;
  padding-inline: 20px;
}
