:root {
  --in-sine: cubic-bezier(.47, 0, .745, .715);
  --out-sine: cubic-bezier(.39, .575, .565, 1);
  --in-out-sine: cubic-bezier(.445, .05, .55, .95);
  --in-quad: cubic-bezier(.55, .085, .68, .53);
  --out-quad: cubic-bezier(.25, .46, .45, .94);
  --in-out-quad: cubic-bezier(.455, .03, .515, .955);
  --in-cubic: cubic-bezier(.55, .055, .675, .19);
  --out-cubic: cubic-bezier(.215, .61, .355, 1);
  --in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --in-quart: cubic-bezier(.895, .03, .685, .22);
  --out-quart: cubic-bezier(.165, .84, .44, 1);
  --in-out-quart: cubic-bezier(.77, 0, .175, 1);
  --in-quint: cubic-bezier(.755, .05, .855, .06);
  --out-quint: cubic-bezier(.23, 1, .32, 1);
  --in-out-quint: cubic-bezier(.86, 0, .07, 1);
  --in-expo: cubic-bezier(.95, .05, .795, .035);
  --out-expo: cubic-bezier(.19, 1, .22, 1);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(.6, .04, .98, .335);
  --out-circ: cubic-bezier(.075, .82, .165, 1);
  --in-out-circ: cubic-bezier(.785, .135, .15, .86);
  --in-back: cubic-bezier(.6, -.28, .735, .045);
  --out-back: cubic-bezier(.175, .885, .32, 1.275);
  --in-out-back: cubic-bezier(.68, -.55, .265, 1.55);
}

.l-section {
  width: 90%;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  z-index: 1;
}
@media screen and (min-width: 1900px) {
  .l-section {
    max-width: 1600px;
  }
}
@media (orientation: portrait) and (max-width: 1099px) {
  .l-section {
    display: block;
  }
}
@media screen and (max-width: 899px) {
  .l-section {
    display: block;
  }
}
.l-section__ttl {
  flex-shrink: 0;
  margin-right: 10.7rem;
  transform: translateY(25px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (orientation: portrait) and (max-width: 1099px) {
  .l-section__ttl {
    width: 100%;
    text-align: center;
    margin-bottom: 3.2rem;
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .l-section__ttl {
    width: 100%;
    text-align: center;
    margin-right: 0;
    margin-bottom: 3.2rem;
  }
}
.l-section__ttl h2 {
  font-size: 55px;
}
@media screen and (max-width: 899px) {
  .l-section__ttl h2 {
    font-size: 34px;
  }
}
.l-section__ttl-cap {
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
}
.l-section.is-active .l-section__ttl-cap {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}

.l-bg_text {
  display: none;
}

.l-content {
  position: relative;
  max-width: none;
  width: 100%;
}
.l-content .l-bg_text {
  display: block;
}
.is-movie-foot .l-content .l-bg_text {
  position: absolute;
}

.l-main {
  padding-bottom: 0;
}

.p-op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
}
.is-op-end .p-op {
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.65, 0, 0.35, 1);
}
.p-op__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C9E1FD;
  background: linear-gradient(0deg, rgb(201, 225, 253) 0%, rgb(239, 218, 249) 50%, rgb(202, 238, 254) 100%);
}
.p-op__bg::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/bg/bg_v2.jpg) no-repeat center center;
  background-size: cover;
}
.p-op__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50%;
  max-width: 600px;
}
@media screen and (max-width: 899px) {
  .p-op__content {
    width: 75%;
  }
}
.p-op__logo {
  position: relative;
}
.is-op .p-op__logo {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 2.4s;
}
.p-op__logo-base {
  transform: translateY(35px);
  opacity: 0;
}
.p-op__logo-base .p-in_base {
  transform: translateY(15%) scale(1.2);
}
.is-op .p-op__logo-base .p-in_base {
  transform: translateY(0) scale(1);
  transition: transform 0.9s cubic-bezier(0.65, 0, 0.35, 1);
  transition-delay: 1.3s;
}
.is-op .p-op__logo-base {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1), opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.is-op .p-op__logo-base img {
  animation: top_logo 1.2s cubic-bezier(0.76, 0, 0.24, 1) both 0.1s;
}
.p-op__logo-ttl {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  opacity: 0;
}
.is-op .p-op__logo-ttl {
  opacity: 1;
  transition: opacity 1.3s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.8s;
}

.p-4dxlink {
  position: fixed;
  bottom: 19px;
  z-index: 1;
  width: 50px;
  transform: rotateY(450deg);
}
.is-load .p-4dxlink {
  transform: rotateY(0);
  transition: transform 1.2s cubic-bezier(0.76, 0, 0.24, 1) 0.5s;
}
@media screen and (min-width: 900px) {
  .p-4dxlink {
    left: 20px;
    max-width: 160px;
    width: 20%;
  }
}
@media screen and (max-width: 899px) {
  .p-4dxlink {
    width: 90px;
    right: 6px;
    bottom: 7px;
  }
}
.is-movie-foot .p-4dxlink {
  position: absolute;
}
.p-4dxlink a {
  display: block;
}
@media (hover: hover) {
  .p-4dxlink a:hover img {
    transform: scale(0.97);
    opacity: 0.8;
  }
}
.p-4dxlink img {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-hero {
  z-index: 1;
  position: relative;
  margin-bottom: 9.5%;
  display: flex;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-hero {
    padding: 7% 0 12%;
    margin-bottom: 0;
    display: block;
  }
}
@media screen and (max-width: 899px) {
  .p-hero {
    display: block;
    padding: 7% 0 12%;
    margin-bottom: 0;
  }
}
.p-hero__kv {
  height: 100%;
  flex-grow: 1;
  padding: 2.8% 0 0 2.8%;
  margin: 0 auto;
  transform: translate(-18px, -18px);
  opacity: 0;
}
.is-load .p-hero__kv {
  opacity: 1;
  transform: translate(0, 0);
  transition: transform 2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-hero__kv {
    padding: 0 4%;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__kv {
    padding: 0 4%;
  }
}
.p-hero__kv-contents {
  width: 100%;
}
.p-hero__kv-item {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}
.p-hero__kv-item img {
  filter: blur(3px);
}
.is-load .p-hero__kv-item img {
  filter: blur(0);
  transition: filter 1.2s cubic-bezier(0.5, 0, 0.75, 0);
  transition-delay: 0.1s;
}
.p-hero__logo {
  margin: 0 auto;
  width: 71%;
  max-width: 700px;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-hero__logo {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-hero__logo {
    margin-bottom: 8%;
    width: 55%;
  }
  .p-hero__logo.is-pc {
    display: none;
  }
  .p-hero__logo.is-sp {
    display: block;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__logo {
    width: 45%;
    margin-bottom: 8%;
  }
}
.p-hero__load {
  margin: 3.5vh auto 0;
  width: 60%;
  max-width: 600px;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-hero__load {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-hero__load {
    margin: 5.5% auto 0;
    width: 62%;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__load {
    margin: 4.5% auto 0;
    width: 62%;
  }
}
.p-hero__head {
  position: relative;
  z-index: 1;
}
.p-hero__main {
  flex-shrink: 0;
  width: 44.5%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-hero__main {
    padding: 0;
    width: 100%;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__main {
    padding: 0;
    width: 100%;
  }
}
.p-hero__main-content {
  padding: 8% 0;
}
@media (orientation: landscape) and (min-width: 1100px) {
  .p-hero__main-content {
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
  }
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-hero__main-content {
    padding: 0;
  }
}
.p-hero__bnr {
  overflow: hidden;
  width: 60%;
  max-width: 610px;
  margin: 5.4vh auto 0;
  transform: translateY(35px);
  opacity: 0;
}
.is-load .p-hero__bnr {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.9s;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-hero__bnr {
    width: 60%;
    margin: 8% auto 0;
  }
}
@media screen and (max-width: 899px) {
  .p-hero__bnr {
    width: 100%;
  }
}
.p-hero__bnr .bnr_swiper .swiper-slide__inner {
  display: block;
  position: relative;
}
.p-hero__bnr .bnr_swiper .swiper-slide__inner::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(90deg, #e9578b 0%, #e6885e 50%, #e9578b 100%);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-hero__bnr .bnr_swiper .swiper-slide__inner:hover::after {
    opacity: 0.3;
  }
}
.p-hero__bnr-pagination {
  padding: 0 3%;
  position: relative;
  margin-top: 5%;
}
@media screen and (max-width: 899px) {
  .p-hero__bnr-pagination {
    margin-top: 3%;
  }
}
.p-hero__bnr-pagination .swiper-pagination {
  position: relative;
  display: flex;
  justify-content: center;
  bottom: 0;
  z-index: 0;
}
.p-hero__bnr-pagination .swiper-pagination .swiper-pagination-bullet {
  width: 15px;
  height: 15px;
  background: url(../img/top/bnr_nav.svg) no-repeat center center;
  background-size: contain;
  background-color: transparent;
  opacity: 1;
  margin: 0 5px;
  border-radius: 0;
  vertical-align: baseline;
}
@media screen and (max-width: 899px) {
  .p-hero__bnr-pagination .swiper-pagination .swiper-pagination-bullet {
    width: 11px;
    height: 11px;
    margin: 0 3px;
  }
}
.p-hero__bnr-pagination .swiper-pagination .swiper-pagination-bullet-active {
  background: url(../img/top/bnr_nav_active.svg) no-repeat center center;
  background-size: contain;
}

.p-news {
  padding-bottom: 8.1%;
}
@media screen and (max-width: 899px) {
  .p-news {
    padding-bottom: 5.9rem;
  }
}
.p-news__content {
  word-break: break-all;
  padding-top: 0.5rem;
  flex-grow: 1;
  width: 70%;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-news__content {
    width: 100%;
  }
}
@media screen and (max-width: 899px) {
  .p-news__content {
    width: 100%;
  }
}
.p-news__none {
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-news__none {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-news__list-item {
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-news__list-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-section.is-active .p-news__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.l-section.is-active .p-news__list-item:nth-child(2) {
  transition-delay: 0.35s;
}
.l-section.is-active .p-news__list-item:nth-child(3) {
  transition-delay: 0.5s;
}
.p-news__list-item + .p-news__list-item .p-news__list-inner {
  padding-top: 2.6rem;
}
@media screen and (max-width: 899px) {
  .p-news__list-item + .p-news__list-item .p-news__list-inner {
    padding-top: 2rem;
  }
}
.p-news__list-inner {
  display: block;
  text-decoration: none;
  color: #000;
  padding-bottom: 2.6rem;
  border-bottom: 1px solid rgba(179, 146, 67, 0.4);
  position: relative;
  transition: color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
@media (hover: hover) {
  .p-news__list-inner:hover {
    color: #b39242;
  }
}
@media screen and (max-width: 899px) {
  .p-news__list-inner {
    padding-bottom: 1.6rem;
  }
}
.p-news__list-inner::before, .p-news__list-inner::after {
  content: "";
  width: 1.2rem;
  height: 1.2rem;
  position: absolute;
  bottom: 0;
  background: url(../img/common/deco_line.svg) no-repeat center center;
  background-size: contain;
  opacity: 0.4;
  transform: translateY(54%);
}
@media screen and (min-width: 900px) {
  .p-news__list-inner::before, .p-news__list-inner::after {
    transform: translateY(50%);
    width: 1.7rem;
    height: 1.7rem;
  }
}
.p-news__list-inner::before {
  left: -0.1rem;
}
@media screen and (min-width: 900px) {
  .p-news__list-inner::before {
    left: -0.2rem;
  }
}
.p-news__list-inner::after {
  right: -0.1rem;
}
@media screen and (min-width: 900px) {
  .p-news__list-inner::after {
    right: -0.2rem;
  }
}
.p-news__list-content {
  position: relative;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .p-news__list-content {
    flex-wrap: wrap;
  }
}
.p-news__date {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: "Vidaloka", serif;
  font-weight: 400;
  position: relative;
  padding-right: 3.3rem;
  margin-right: 2%;
}
@media screen and (max-width: 899px) {
  .p-news__date {
    width: 8.5rem;
    padding-right: 1.4rem;
    padding-left: 3px;
  }
}
.p-news__date::after {
  content: "";
  width: 1.5rem;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/common/deco_star.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 899px) {
  .-no-category .p-news__date::after {
    content: none;
  }
}
@media screen and (max-width: 899px) {
  .p-news__date::after {
    top: -0.1rem;
    width: 1.2rem;
    right: 0.2rem;
  }
}
.p-news__date .p-in_year {
  writing-mode: vertical-lr;
  font-size: 1.4rem;
  margin-right: 0.5rem;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-news__date .p-in_year {
    padding-right: 0.3rem;
    writing-mode: unset;
    font-size: 1.2rem;
    margin-right: 0;
  }
  .p-news__date .p-in_year::after {
    content: ".";
    position: absolute;
    bottom: 0;
    right: 0;
  }
}
.p-news__date .p-in_date {
  font-size: 4.2rem;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 899px) {
  .p-news__date .p-in_date {
    font-size: 12px;
  }
}
.p-news__category {
  flex-grow: 1;
  flex-shrink: 0;
  text-align: right;
  font-size: 1.5rem;
  width: 10rem;
  color: #e9578b;
  font-family: "Vidaloka", serif;
  font-weight: 400;
}
@media screen and (max-width: 899px) {
  .p-news__category {
    position: absolute;
    flex-grow: 0;
    width: auto;
    top: 0;
    left: 9rem;
    font-size: 1.2rem;
    letter-spacing: 0.5px;
  }
}
.p-news__text {
  overflow: hidden;
  padding: 1px 0;
}
@media screen and (min-width: 900px) {
  .p-news__text {
    white-space: nowrap;
    text-overflow: ellipsis;
  }
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-news__text {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 899px) {
  .p-news__text {
    display: -webkit-box;
    text-overflow: ellipsis;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    margin-top: 10px;
    width: 100%;
    line-height: 1.7;
    font-size: 12px;
  }
}
.p-news__more {
  margin-top: 4rem;
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-news__more {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.3s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 899px) {
  .p-news__more {
    margin-top: 3rem;
  }
}
.p-news__more .c-more {
  margin-left: auto;
}

.p-movie {
  width: 100%;
}
.p-movie__content {
  width: 100%;
  padding-top: 33.5%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-movie__content {
    padding-top: 50.1%;
  }
}
@media (hover: hover) {
  .p-movie__content:hover::after {
    opacity: 0.6;
  }
  .p-movie__content:hover .p-movie__play {
    transform: translate(-50%, -50%) scale(1.15);
  }
}
.p-movie__content::after {
  content: "";
  width: 120vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #091d46;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-movie__player {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 130%;
  height: 130%;
  pointer-events: none;
}
.p-movie__play {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8.3%;
  transform: translate(-50%, -50%);
  z-index: 1;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 899px) {
  .p-movie__play {
    width: 25.3%;
  }
}
.is-load .p-movie__play-base {
  animation: loop_rotate 10s linear infinite;
}
.p-movie__play-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

[data-movie-id] {
  font-size: 0;
  pointer-events: none;
}

#movie_player_player_wrap {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#movie_player_ui {
  display: none;
}

.p-top_official {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 1;
}
@media (orientation: portrait) and (max-width: 1099px) {
  .p-top_official {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .p-top_official {
    display: none;
  }
}
.is-foot .p-top_official {
  position: absolute;
}
.p-top_official a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
  padding: 0 12px;
  height: 190px;
  position: relative;
}
.p-top_official a::before, .p-top_official a::after {
  content: "";
  width: 100%;
  padding-top: 11px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/menu/deco_sns.svg) no-repeat center center;
  background-size: contain;
}
.p-top_official a::before {
  top: 0;
}
.p-top_official a::after {
  bottom: 0;
  transform: translateX(-50%) scaleY(-1);
}
@media (hover: hover) {
  .p-top_official a:hover .p-top_official__text {
    color: #b39242;
  }
  .p-top_official a:hover .p-top_official__text::after {
    background-color: #b39242;
  }
}
.p-top_official__text {
  color: #000;
  writing-mode: vertical-lr;
  font-family: "Vidaloka", serif;
  font-weight: 400;
  font-size: 13px;
  letter-spacing: 0.3px;
  position: relative;
  padding-bottom: 34px;
  transition: color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-top_official__text::after {
  content: "";
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 2px;
  left: 65%;
  transform: translateX(-50%);
  -webkit-mask: url(../img/common/menu/icon_x.svg) no-repeat center center;
  mask: url(../img/common/menu/icon_x.svg) no-repeat center center;
  -webkit-mask-size: contain;
  mask-size: contain;
  background-color: #000;
  transition: background-color 0.6s cubic-bezier(0.33, 1, 0.68, 1);
}