@charset "UTF-8";
@keyframes loop_circle {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loop_circle2 {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes shootingStar-slide {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    transform: translateY(600px);
  }
  100% {
    opacity: 0;
    transform: translateY(600px);
  }
}
@keyframes shootingStar-slide-sp {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  15% {
    opacity: 0;
  }
  20% {
    transform: translateY(150px);
  }
  100% {
    opacity: 0;
    transform: translateY(150px);
  }
}
@keyframes loopTitle {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes down_animation {
  0% {
    transform: translateY(0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: translateY(88px);
    opacity: 0;
  }
}
@keyframes down_animation-scale {
  0% {
    transform: scale(0);
  }
  50% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes top_logo {
  0% {
    transform: rotateY(400deg);
  }
  100% {
    transform: rotateY(0deg);
  }
}
@keyframes modal_fadein {
  0% {
    opacity: 0;
    transform: translateY(18px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes modal_fadein-line {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes modal_fadein-scale {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes loading {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-main {
  padding-top: 0;
  padding-bottom: 0;
  overflow: hidden;
}

.p-intro__inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px;
}
.p-intro__head {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width: 899px) {
  .p-intro__head {
    line-height: 1.7;
    margin-bottom: 33px;
  }
}
.p-intro__head-catch {
  font-size: 24px;
  margin-bottom: 16px;
  transform: translateY(18px);
  opacity: 0;
}
.is-active .p-intro__head-catch {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.3s;
}
@media screen and (max-width: 899px) {
  .p-intro__head-catch {
    font-size: 16px;
    letter-spacing: 1.5px;
    margin-bottom: 13px;
  }
}
.p-intro__head-lead {
  font-size: 16px;
  font-size: min(16px, 1.5vw);
  transform: translateY(18px);
  line-height: 2.1;
  opacity: 0;
}
@media screen and (max-width: 899px) {
  .p-intro__head-lead {
    line-height: 1.75;
  }
}
.is-active .p-intro__head-lead {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 899px) {
  .p-intro__head-lead {
    font-size: 14px;
    font-size: min(14px, 4vw);
  }
}
.p-intro__main-box {
  color: #fff;
  line-height: 1.8;
  font-size: 15px;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}
.p-intro__main-box + .p-intro__main-box {
  margin-top: 74px;
}
@media screen and (max-width: 899px) {
  .p-intro__main-box + .p-intro__main-box {
    margin-top: 34px;
  }
}
.p-intro__main-box.-flex {
  display: flex;
}
@media screen and (max-width: 899px) {
  .p-intro__main-box.-flex {
    display: block;
  }
}
.p-intro__main-thumb {
  flex-shrink: 0;
  width: 41.5%;
}
@media screen and (max-width: 899px) {
  .p-intro__main-thumb {
    width: 75%;
  }
}
.p-intro__main-thumb.-flex {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 899px) {
  .p-intro__main-thumb.-flex {
    display: block;
  }
}
.p-intro__main-thumb-item {
  flex-shrink: 0;
  transform: translateY(20px);
  opacity: 0;
  overflow: hidden;
}
.p-intro__main-thumb.-flex .p-intro__main-thumb-item:nth-child(1) {
  width: 56.5%;
}
@media screen and (max-width: 899px) {
  .p-intro__main-thumb.-flex .p-intro__main-thumb-item:nth-child(1) {
    width: 100%;
  }
}
.p-intro__main-thumb.-flex .p-intro__main-thumb-item:nth-child(2) {
  width: 40%;
  margin-top: 10.8%;
}
@media screen and (max-width: 899px) {
  .p-intro__main-thumb.-flex .p-intro__main-thumb-item:nth-child(2) {
    width: 71%;
    margin-top: 8.5%;
    margin-left: auto;
    transform: translateX(8%);
  }
}
.p-intro__main-box.is-active .p-intro__main-thumb-item:nth-child(1) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0s;
}
.p-intro__main-box.is-active .p-intro__main-thumb-item:nth-child(2) {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.15s;
}
.p-intro__main-thumb-item img {
  transform: scale(1.1);
}
.is-active .p-intro__main-thumb-item img {
  transform: scale(1);
  transition: transform 8s cubic-bezier(0.33, 1, 0.68, 1);
}
.p-intro__main-lead {
  margin-top: -4%;
  font-size: 16px;
  font-size: min(16px, 1.5vw);
  letter-spacing: 1px;
  line-height: 2.1;
  width: 69%;
  position: relative;
  z-index: 1;
  transform: translateY(18px);
  opacity: 0;
}
.p-intro__main-box.is-active .p-intro__main-lead {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 899px) {
  .p-intro__main-lead {
    margin-top: 39px;
    line-height: 1.9;
    width: 100%;
    font-size: 13px;
    font-size: min(13px, 3.8vw);
    letter-spacing: 1.5px;
  }
}
.-flex .p-intro__main-lead {
  margin-top: 0;
  margin-left: 5%;
  padding-top: 12px;
  width: 100%;
}
@media screen and (max-width: 899px) {
  .-flex .p-intro__main-lead {
    margin-left: 0;
    padding-top: 33px;
  }
}
.p-intro__main-lead .p-in_text.is-large {
  font-size: 20px;
  background: linear-gradient(90deg, #fcc4a8 48%, #ffceda 50%, #dea2dd 58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
@media screen and (max-width: 899px) {
  .p-intro__main-lead .p-in_text.is-large {
    font-size: 15px;
  }
}
.p-intro__main-lead .p-in_text .is-large {
  font-size: 20px;
  font-weight: 500;
  margin-top: 4px;
}
@media screen and (max-width: 899px) {
  .p-intro__main-lead .p-in_text .is-large {
    margin-top: 7px;
    font-size: 15px;
  }
}
.p-intro__main-lead .p-in_text + .p-in_text {
  margin-top: 20px;
}
@media screen and (max-width: 899px) {
  .p-intro__main-lead .p-in_text + .p-in_text {
    margin-top: 15px;
  }
}
.p-intro__foot {
  text-align: center;
  font-size: 24px;
  font-size: min(24px, 2.2vw);
  line-height: 1.8;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  color: #fff;
  margin-top: 53px;
  font-weight: 500;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .p-intro__foot {
    margin-top: 30px;
    line-height: 1.7;
    font-size: 16px;
    font-size: min(16px, 5vw);
    letter-spacing: 1px;
  }
}
.p-intro__foot-lead {
  filter: blur(3px);
  transform: translateY(25px);
  opacity: 0;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1), filter 1.4s cubic-bezier(0.33, 1, 0.68, 1);
  background: linear-gradient(90deg, #fcc4a8 48%, #ffceda 50%, #dea2dd 58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.p-intro__foot.is-active .p-intro__foot-lead {
  filter: blur(0);
  transform: translateY(0);
  opacity: 1;
}

.p-intro__movie {
  width: 1200px;
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  margin-top: 133px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie {
    margin-top: 89px;
  }
}
.p-intro__movie::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(180deg, #6551b8 0%, rgba(102, 81, 184, 0) 100%);
  border-radius: 50% 50% 0 0;
  opacity: 0.35;
}
@media screen and (max-width: 899px) {
  .p-intro__movie::before {
    border-radius: 500px 500px 0 0;
  }
}
@media screen and (max-width: 899px) {
  .p-intro__movie {
    width: 102%;
  }
}
.p-intro__movie-contents {
  position: relative;
  padding: 126px 130px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-contents {
    padding: 84px 7%;
  }
}
.p-intro__movie-head {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  line-height: 1.3;
  margin-bottom: 27px;
  background: linear-gradient(90deg, #fcc4a8 0%, #ffceda 50%, #dea2dd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 500;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-head {
    margin-bottom: 21px;
  }
}
.p-intro__movie-head-arch {
  margin-bottom: 10px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-head-arch {
    font-size: 13px;
    margin-bottom: 8px;
  }
}
.p-intro__movie-head .p-in_caption {
  font-size: 20px;
  margin-bottom: 5px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-head .p-in_caption {
    font-size: 15px;
    margin-bottom: 7px;
  }
}
.p-intro__movie-head .p-in_ttl {
  font-size: 30px;
  letter-spacing: 3px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-head .p-in_ttl {
    font-size: 21px;
    letter-spacing: 0px;
  }
  .p-intro__movie-head .p-in_ttl.-en {
    letter-spacing: 1.5px;
    line-height: 1.4;
  }
}
.p-intro__movie-lead {
  text-align: center;
  line-height: 2.2;
  letter-spacing: 1.5px;
  font-size: 15px;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-lead {
    line-height: 2;
    font-size: 12px;
    text-align: left;
    letter-spacing: 3px;
  }
}
.p-intro__movie-lead .p-in_text + .p-in_text {
  margin-top: 10px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-lead .p-in_text + .p-in_text {
    margin-top: 11px;
  }
}
.p-intro__movie-lead .is-large {
  font-size: 22px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-lead .is-large {
    font-size: 14px;
  }
}
.p-intro__movie-box {
  position: relative;
  color: #fff;
  padding-bottom: 120px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-box {
    padding-bottom: 108px;
  }
}
.p-intro__movie-box + .p-intro__movie-box {
  margin-top: 46px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-box + .p-intro__movie-box {
    margin-top: 23px;
  }
}
.p-intro__movie-box:last-of-type {
  padding-bottom: 0;
}
.p-intro__movie-thumbs {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-intro__movie-thumbs-item {
  position: absolute;
  top: 0;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item {
    opacity: 0.6;
  }
}
.p-intro__movie-thumbs-item.item_1 {
  right: 3.5%;
  top: 9.5%;
  width: 23%;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item.item_1 {
    top: 1.5%;
    right: 5.5%;
    width: 41%;
    max-width: 150px;
  }
}
.p-intro__movie-thumbs-item.item_2 {
  left: 3.5%;
  top: 27%;
  width: 20%;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item.item_2 {
    left: 0.5%;
    top: 17.5%;
    width: 35%;
    max-width: 130px;
  }
}
.p-intro__movie-thumbs-item.item_3 {
  left: 6.5%;
  top: 47%;
  width: 27%;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item.item_3 {
    left: 0;
    top: 48%;
    width: 47%;
    max-width: 170px;
    transform: translateX(-11%);
  }
}
.p-intro__movie-thumbs-item.item_4 {
  top: 53%;
  right: 6.5%;
  width: 26.8%;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item.item_4 {
    top: 32.5%;
    right: 6.5%;
    width: 46.8%;
    max-width: 170px;
  }
}
.p-intro__movie-thumbs-item.item_4 .p-in_thumb:nth-child(2) {
  position: absolute;
  top: -56%;
  right: -23%;
  width: 74%;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item.item_4 .p-in_thumb:nth-child(2) {
    max-width: 120px;
  }
}
.p-intro__movie-thumbs-item.item_5 {
  left: 0%;
  top: 75.5%;
  width: 23.5%;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item.item_5 {
    top: 89%;
    width: 40.5%;
    max-width: 149px;
  }
}
.p-intro__movie-thumbs-item.item_6 {
  right: 6.5%;
  top: 85%;
  width: 20%;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-thumbs-item.item_6 {
    right: 0;
    top: 73.8%;
    width: 35%;
    max-width: 130px;
  }
}
.p-intro__movie-btdeco {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
}
.p-intro__movie-btdeco-icon {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
}
@media screen and (max-width: 899px) {
  .p-intro__movie-btdeco-icon {
    width: 9px;
    height: 9px;
  }
}
.p-intro__movie-btdeco-icon .p-in_inner {
  position: relative;
  width: 100%;
  height: 100%;
}
.is-load .p-intro__movie-btdeco-icon .p-in_inner {
  animation: down_animation 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
}
.p-intro__movie-btdeco-icon .p-in_inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/common/deco.svg) no-repeat center center;
  background-size: contain;
}
.is-load .p-intro__movie-btdeco-icon .p-in_inner::before {
  animation: down_animation-scale 2.3s cubic-bezier(0.65, 0, 0.35, 1) infinite both;
}

.p-intro__about {
  margin-top: 70px;
  border: 1px solid rgba(208, 212, 226, 0.2);
  padding: 3.2% 3.5% 3.8%;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  line-height: 1.8;
  transform: translateY(20px);
  opacity: 0;
}
.p-intro__about.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.7s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.p-intro__about-box {
  transform: translateY(18px);
  opacity: 0;
}
.p-intro__about.is-active .p-intro__about-box {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.5s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 899px) {
  .p-intro__about {
    padding: 8% 6.5% 8.8%;
    margin-top: 46px;
  }
}
.p-intro__about-ttl {
  text-align: center;
  margin-bottom: 22px;
  font-size: 21px;
}
@media screen and (max-width: 899px) {
  .p-intro__about-ttl {
    letter-spacing: 1.5px;
    font-size: 13px;
    margin-bottom: 8px;
  }
}
.p-intro__about-content {
  font-size: 14px;
  letter-spacing: 0.5px;
  line-height: 2.1;
}
@media screen and (max-width: 899px) {
  .p-intro__about-content {
    font-size: 11px;
    letter-spacing: 0.5px;
    line-height: 1.65;
  }
}

.l-bg {
  background: linear-gradient(180deg, #021036 0%, #1d3487 50%, #5548a6 100%);
}

.p-4dx_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  padding: 37px 25px;
  z-index: 2;
  pointer-events: none;
}
@media screen and (max-width: 899px) {
  .p-4dx_menu {
    height: 100%;
    padding: 0;
  }
}
.p-4dx_menu__btn {
  position: absolute;
  top: 15px;
  right: 15px;
  z-index: 1;
  width: 60px;
  height: 36px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  pointer-events: all;
}
@media screen and (min-width: 900px) {
  .p-4dx_menu__btn {
    display: none;
  }
}
.p-4dx_menu__btn::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(-90deg, #1d3487 0%, #5548a6 100%);
  border-radius: 100px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.is-menu-open .p-4dx_menu__btn::before {
  transform: scale(0.9);
  opacity: 0;
  transition-delay: 0s;
}
.p-4dx_menu__btn-text {
  position: relative;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  color: #fff;
  font-size: 10px;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.is-menu-open .p-4dx_menu__btn-text {
  transform: scale(0.9);
  opacity: 0;
  transition-delay: 0s;
}
.p-4dx_menu__btn-line {
  position: absolute;
  top: 4px;
  right: 8px;
  width: 29px;
  height: 20px;
  pointer-events: none;
}
.p-4dx_menu__btn-line .p-in_line {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 1px;
  background-color: #fff;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-4dx_menu__btn-line .p-in_line:nth-child(1) {
  transform: translate(-50%, -50%) rotate(15deg) scaleX(0);
}
.is-menu-open .p-4dx_menu__btn-line .p-in_line:nth-child(1) {
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  transform: translate(-50%, -50%) rotate(15deg) scaleX(1);
  transition-delay: 0.3s;
}
.p-4dx_menu__btn-line .p-in_line:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-15deg) scaleX(0);
}
.is-menu-open .p-4dx_menu__btn-line .p-in_line:nth-child(2) {
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
  transform: translate(-50%, -50%) rotate(-15deg) scaleX(1);
  transition-delay: 0.3s;
}
.p-4dx_menu__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}
@media screen and (max-width: 899px) {
  .p-4dx_menu__content {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 205px;
    padding: 11% 7% 9%;
    overflow: hidden;
    pointer-events: none;
  }
  .is-menu-open .p-4dx_menu__content {
    pointer-events: auto;
  }
  .p-4dx_menu__content::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #1d3487 0%, #5548a6 100%);
    transform-origin: right top;
    transform: scale(0);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 10px;
  }
  .is-menu-open .p-4dx_menu__content::before {
    transform: scale(1);
    opacity: 1;
    transition-delay: 0.3s;
  }
}
.p-4dx_menu__list {
  text-align: right;
}
@media screen and (min-width: 900px) {
  .p-4dx_menu__list {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}
@media screen and (max-width: 899px) {
  .p-4dx_menu__list {
    text-align: left;
  }
}
.p-4dx_menu__list-item {
  line-height: 1.1;
  transform: translateY(25px);
  opacity: 0;
}
@media screen and (min-width: 900px) {
  .p-4dx_menu__list-item {
    pointer-events: all;
  }
  .is-load .p-4dx_menu__list-item {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .is-load .p-4dx_menu__list-item:nth-child(1) {
    transition-delay: 0.8s;
  }
  .is-load .p-4dx_menu__list-item:nth-child(2) {
    transition-delay: 0.93s;
  }
  .is-load .p-4dx_menu__list-item:nth-child(3) {
    transition-delay: 1.06s;
  }
  .is-load .p-4dx_menu__list-item:nth-child(4) {
    transition-delay: 1.19s;
  }
  .is-load .p-4dx_menu__list-item:nth-child(5) {
    transition-delay: 1.32s;
  }
  .is-load .p-4dx_menu__list-item:nth-child(6) {
    transition-delay: 1.45s;
  }
  .is-load .p-4dx_menu__list-item:nth-child(7) {
    transition-delay: 1.58s;
  }
}
@media screen and (max-width: 899px) {
  .p-4dx_menu__list-item {
    line-height: 1.2;
  }
  .is-menu-open .p-4dx_menu__list-item {
    transform: translateY(0);
    opacity: 1;
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .is-menu-open .p-4dx_menu__list-item:nth-child(1) {
    transition-delay: 0.5s;
  }
  .is-menu-open .p-4dx_menu__list-item:nth-child(2) {
    transition-delay: 0.63s;
  }
  .is-menu-open .p-4dx_menu__list-item:nth-child(3) {
    transition-delay: 0.76s;
  }
  .is-menu-open .p-4dx_menu__list-item:nth-child(4) {
    transition-delay: 0.89s;
  }
  .is-menu-open .p-4dx_menu__list-item:nth-child(5) {
    transition-delay: 1.02s;
  }
  .is-menu-open .p-4dx_menu__list-item:nth-child(6) {
    transition-delay: 1.15s;
  }
  .is-menu-open .p-4dx_menu__list-item:nth-child(7) {
    transition-delay: 1.28s;
  }
}
.p-4dx_menu__list-item + .p-4dx_menu__list-item {
  margin-top: 14px;
}
@media screen and (max-width: 899px) {
  .p-4dx_menu__list-item + .p-4dx_menu__list-item {
    margin-top: 11px;
  }
}
.p-4dx_menu__list-item a {
  text-decoration: none;
  color: #fff;
  font-family: "Kalnia", serif;
  display: inline-block;
  vertical-align: baseline;
  position: relative;
  font-size: 16px;
}
@media (hover: hover) {
  .p-4dx_menu__list-item a {
    transition: color 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  }
  .p-4dx_menu__list-item a:hover {
    color: #ffbc98;
  }
  .p-4dx_menu__list-item a:hover::before {
    background-color: #ffbc98;
  }
}
@media screen and (max-width: 899px) {
  .p-4dx_menu__list-item a {
    font-size: 14px;
    letter-spacing: 0.5px;
  }
}
.p-4dx_menu__list-item a::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  top: 48%;
  right: 1px;
  transform: translateY(-50%) rotate(45deg);
  background-color: #fff;
  transition: background-color 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 899px) {
  .p-4dx_menu__list-item a::before {
    right: auto;
    left: 0;
    width: 5px;
    height: 5px;
  }
}
@media screen and (min-width: 900px) {
  .p-4dx_menu__list-item a {
    padding-right: 16px;
  }
}
@media screen and (max-width: 899px) {
  .p-4dx_menu__list-item a {
    padding-left: 15px;
  }
}

.is-orange {
  vertical-align: baseline;
  color: #ff975e;
}

.p-4dx__hero {
  margin-bottom: 26px;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-4dx__hero {
    margin-bottom: 18px;
  }
}
.p-4dx__hero-content {
  position: absolute;
  top: 49%;
  right: 14%;
  transform: translateY(-50%);
  width: 30.5%;
}
@media screen and (max-width: 899px) {
  .p-4dx__hero-content {
    width: 63.5%;
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%);
    right: auto;
  }
}
.p-4dx__hero-bg {
  overflow: hidden;
}
.p-4dx__hero-bg img {
  transform: scale(1.2);
  filter: blur(5px);
}
.is-load .p-4dx__hero-bg img {
  transform: scale(1);
  filter: blur(0);
  transition: transform 5s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s cubic-bezier(0.32, 0, 0.67, 0);
}
.p-4dx__hero-logo {
  margin: 0 auto 10%;
  width: 65%;
  transform: translateY(18px);
  opacity: 0;
}
.is-load .p-4dx__hero-logo {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.5s;
}
.is-load .p-4dx__hero-logo h1 {
  animation: top_logo 1.3s cubic-bezier(0.76, 0, 0.24, 1) both 0.5s;
}
.p-4dx__hero-text {
  transform: translateY(18px);
  opacity: 0;
}
.is-load .p-4dx__hero-text {
  opacity: 1;
  transform: translateY(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 1.2s;
}
.p-4dx__content {
  padding-top: 145px;
  padding-bottom: 160px;
  color: #fff;
}
@media screen and (max-width: 899px) {
  .p-4dx__content {
    padding-top: 67px;
    padding-bottom: 76px;
  }
}
.p-4dx__content:nth-child(2n) {
  position: relative;
  padding-bottom: 146px;
  background-color: #05143d;
}
@media screen and (max-width: 899px) {
  .p-4dx__content:nth-child(2n) {
    padding-bottom: 73px;
  }
}
.p-4dx__content-inner {
  margin: 0 auto;
  width: 90%;
  max-width: 1040px;
}
.p-4dx__content-ttl {
  text-align: center;
  position: relative;
  font-size: 55px;
  font-size: min(55px, 5vw);
  font-family: "Kalnia", serif;
  letter-spacing: 1.5px;
  line-height: 1.3;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 53px;
  transform: translateY(20px);
  opacity: 0;
}
.p-4dx__content.is-active .p-4dx__content-ttl {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (max-width: 899px) {
  .p-4dx__content-ttl {
    line-height: 1;
    font-size: 31px;
    font-size: min(31px, 9vw);
    letter-spacing: 1px;
    margin: 0 auto 40px;
  }
}
.p-4dx__content-ttl-bg {
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 60%;
  width: 280px;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
@media screen and (max-width: 899px) {
  .p-4dx__content-ttl-bg {
    width: 155px;
  }
}
.p-4dx__content-ttl-bg .p-in_item {
  position: absolute;
  left: 0;
  width: 100%;
}
.p-4dx__content-ttl-bg .p-in_item.--top {
  transform: translateY(-100%);
  top: 0;
}
.p-4dx__content-ttl-bg .p-in_item.--top img {
  transform: translate(20%, -35%);
  filter: blur(3px);
  opacity: 0;
}
.p-4dx__content.is-active .p-4dx__content-ttl-bg .p-in_item.--top img {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
.p-4dx__content-ttl-bg .p-in_item.--bottom {
  bottom: 0;
  transform: translateY(100%);
}
.p-4dx__content-ttl-bg .p-in_item.--bottom img {
  transform: translate(20%, -35%);
  filter: blur(3px);
  opacity: 0;
}
.p-4dx__content.is-active .p-4dx__content-ttl-bg .p-in_item.--bottom img {
  transform: translateY(0);
  opacity: 1;
  filter: blur(0);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1), filter 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
.p-4dx__content-ttl-sub {
  font-size: 32px;
  font-size: min(32px, 3vw);
  background: linear-gradient(90deg, #fcc4a8 48%, #ffceda 50%, #dea2dd 58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}
@media screen and (max-width: 899px) {
  .p-4dx__content-ttl-sub {
    letter-spacing: 0.5px;
    font-size: 17px;
    font-size: min(17px, 4.5vw);
  }
}
.p-4dx__content-ttl h2 {
  background: linear-gradient(90deg, #fcc4a8 48%, #ffceda 50%, #dea2dd 58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 400;
}

.p-movie {
  padding-bottom: 160px;
}
@media screen and (max-width: 899px) {
  .p-movie {
    padding-bottom: 76px;
  }
}
.p-movie__list {
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 899px) {
  .p-movie__list {
    display: block;
  }
}
.p-movie__list-item {
  width: 47.5%;
  margin-right: 5%;
  margin-bottom: 4.8%;
  transform: translateY(20px);
  opacity: 0;
}
.is-active .p-movie__list-item {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
@media screen and (min-width: 900px) {
  .p-movie__list-item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 899px) {
  .p-movie__list-item {
    width: 100%;
    margin-bottom: 5%;
    margin-right: 0;
  }
}
.p-movie__list-ttl {
  font-size: 13px;
  letter-spacing: 1px;
  line-height: 1.6;
  margin-top: 15px;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 899px) {
  .p-movie__list-ttl {
    font-size: 10px;
    margin-top: 10px;
  }
}
.p-movie__box {
  width: 100%;
  padding-top: 56.25%;
  position: relative;
}
.p-movie__box-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-movie__box-thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #05143d;
  opacity: 0.3;
  pointer-events: none;
  transition: opacity 1s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 900px) {
  .p-movie__box:hover::after {
    opacity: 0.8;
  }
  .p-movie__box:hover .p-movie__box-play {
    transform: translate(-50%, -50%) scale(1.15);
  }
}
.p-movie__box-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 19%;
  z-index: 1;
  pointer-events: none;
  transition: transform 1s cubic-bezier(0.33, 1, 0.68, 1);
}
.is-load .p-movie__box-play .p-in_base img {
  animation: loop_circle 10s linear infinite;
}
.p-movie__box-play .p-in_arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}

.p-novelty__ttl {
  margin-bottom: 59px;
}
@media screen and (max-width: 899px) {
  .p-novelty__ttl {
    margin-bottom: 45px;
  }
}
.p-novelty__list-item {
  border: 1px solid rgba(208, 212, 226, 0.8);
  transform: translateY(20px);
  opacity: 0;
}
.p-novelty__list-item.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.15s;
}
.p-novelty__list-item + .p-novelty__list-item {
  margin-top: 40px;
}
.p-novelty__list-head {
  background-color: rgba(208, 212, 226, 0.8);
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  color: #05143d;
  display: flex;
  padding: 12px 38px 13px;
  line-height: 1.8;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .p-novelty__list-head {
    display: block;
    line-height: 1.6;
    padding: 7px 18px 10px;
    text-align: center;
  }
}
.p-novelty__list-head .p-in_ttl {
  margin-right: 19px;
  font-size: 19px;
}
@media screen and (max-width: 899px) {
  .p-novelty__list-head .p-in_ttl {
    font-size: 14px;
    margin-right: 0;
  }
}
.p-novelty__list-head .p-in_caption {
  font-size: 13px;
  letter-spacing: 1px;
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 899px) {
  .p-novelty__list-head .p-in_caption {
    font-size: 10px;
  }
}
.p-novelty__list-content {
  padding: 43px 3.8% 60px;
}
@media screen and (max-width: 899px) {
  .p-novelty__list-content {
    padding: 25px 4% 40px;
  }
}
.p-novelty__box + .p-novelty__box {
  margin-top: 53px;
  padding-top: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 899px) {
  .p-novelty__box + .p-novelty__box {
    margin-top: 33px;
    padding-top: 30px;
  }
}
.p-novelty__box-cap {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  line-height: 1.4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 22px;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-cap {
    margin: 0 auto 14px;
    padding: 0 13px;
  }
}
.p-novelty__box-cap::before, .p-novelty__box-cap::after {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-cap::before, .p-novelty__box-cap::after {
    width: 5px;
    height: 5px;
  }
}
.p-novelty__box-cap::before {
  left: 0;
  background-color: #fcc4a8;
}
.p-novelty__box-cap::after {
  right: 0;
  background-color: #dea2dd;
}
.p-novelty__box-cap .p-in_ttl {
  position: relative;
  background: linear-gradient(90deg, #fcc4a8 48%, #ffceda 50%, #dea2dd 58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-cap .p-in_ttl {
    font-size: 21px;
  }
}
.p-novelty__box-thumb {
  margin: 0 auto 25px;
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-thumb {
    margin: 0 auto 14px;
  }
}
.p-novelty__box-thumb img {
  margin: 0 auto;
}
.p-novelty__box-itemname {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  line-height: 1.5;
  font-size: 20px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-itemname {
    font-size: 16px;
  }
}
.p-novelty__box-text {
  text-align: center;
  line-height: 1.6;
  margin-top: 15px;
  font-size: 14px;
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-text {
    margin-top: 10px;
    font-size: 11px;
  }
}
.p-novelty__box-note {
  text-align: center;
  margin-top: 13px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-note {
    margin-top: 10px;
  }
}
.p-novelty__box-note-item {
  font-size: 12px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-note-item {
    font-size: 10px;
  }
}
.p-novelty__box-note-item + .p-novelty__box-note-item {
  margin-top: 1px;
}
@media screen and (max-width: 899px) {
  .p-novelty__box-note-item + .p-novelty__box-note-item {
    margin-top: 4px;
  }
}

.p-ticket {
  padding-bottom: 148px;
}
@media screen and (max-width: 899px) {
  .p-ticket {
    padding-bottom: 76px;
  }
}
.p-ticket__ttl {
  margin-bottom: 58px;
}
@media screen and (max-width: 899px) {
  .p-ticket__ttl {
    margin-bottom: 45px;
  }
}
.p-ticket__box {
  transform: translateY(20px);
  opacity: 0;
}
.p-ticket__box.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.2s;
}
.p-ticket__box + .p-ticket__box {
  border-top: 1px solid rgba(208, 212, 226, 0.2);
  margin-top: 70px;
  padding-top: 63px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box + .p-ticket__box {
    padding-top: 32px;
    margin-top: 39px;
  }
}
.p-ticket__box-top {
  text-align: center;
  line-height: 1.6;
}
.p-ticket__box-top-cap {
  font-size: 19px;
  letter-spacing: 1px;
}
.p-ticket__box-top-cap .p-in_top {
  font-size: 14px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-cap .p-in_top {
    font-size: 10px;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-cap {
    font-size: 14px;
  }
}
.p-ticket__box-top-price {
  font-size: 22px;
  margin-top: 7px;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-price {
    margin-top: 0px;
    font-size: 18px;
  }
}
.p-ticket__box-top-price .is-small {
  font-size: 14px;
  display: inline-block;
  margin-left: 3px;
  vertical-align: baseline;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-price .is-small {
    font-size: 10px;
  }
}
.p-ticket__box-top-release {
  margin-top: 18px;
  font-size: 15px;
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid #fff;
  padding: 3px 12px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-release {
    font-size: 12px;
    margin-top: 5px;
    padding: 2px 15px;
    letter-spacing: 1.8px;
  }
}
.p-ticket__box-top-wn {
  font-size: 16px;
  margin-top: 12px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-wn {
    font-size: 14px;
    margin-top: 10px;
  }
}
.p-ticket__box-top-note {
  margin-top: 27px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-note {
    margin-top: 21px;
    text-align: left;
  }
}
.p-ticket__box-top-note .p-in_item {
  font-size: 11px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-top-note .p-in_item {
    font-size: 10px;
    text-indent: -0.8rem;
    padding-left: 0.8rem;
  }
  .p-ticket__box-top-note .p-in_item + .p-in_item {
    margin-top: 5px;
  }
}
.p-ticket__box-cap {
  text-align: center;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  line-height: 1.4;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
  padding: 0 20px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-cap {
    margin: 0 auto 14px;
    padding: 0 13px;
  }
}
.p-ticket__box-cap::before, .p-ticket__box-cap::after {
  content: "";
  position: absolute;
  top: 55%;
  transform: translateY(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-cap::before, .p-ticket__box-cap::after {
    width: 5px;
    height: 5px;
  }
}
.p-ticket__box-cap::before {
  left: 0;
  background-color: #fcc4a8;
}
.p-ticket__box-cap::after {
  right: 0;
  background-color: #dea2dd;
}
.p-ticket__box-cap .p-in_ttl {
  position: relative;
  background: linear-gradient(90deg, #fcc4a8 48%, #ffceda 50%, #dea2dd 58%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-size: 28px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-cap .p-in_ttl {
    font-size: 21px;
  }
}
.p-ticket__box-link {
  margin: 17px auto;
  width: 80%;
  max-width: 400px;
  line-height: 1.8;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-link {
    width: 100%;
    margin-top: 9px;
  }
}
.p-ticket__box-info {
  margin-top: 50px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info {
    margin-top: 36px;
  }
}
.p-ticket__box-info-item {
  border: 1px solid rgba(208, 212, 226, 0.8);
  transform: translateY(20px);
  opacity: 0;
}
.p-ticket__box-info-item.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
.p-ticket__box-info-item + .p-ticket__box-info-item {
  margin-top: 40px;
}
.p-ticket__box-info-ttl {
  background-color: rgba(208, 212, 226, 0.8);
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  color: #05143d;
  display: flex;
  padding: 13px 39px 12px;
  line-height: 1.8;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-ttl {
    line-height: 1.6;
    padding: 8px 20px 12px;
    display: block;
    text-align: center;
  }
}
.p-ticket__box-info-ttl .p-in_ttl {
  margin-right: 19px;
  font-size: 19px;
  flex-shrink: 0;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-ttl .p-in_ttl {
    font-size: 16px;
    margin-right: 0;
  }
}
.p-ticket__box-info-ttl .p-in_caption {
  font-size: 13px;
  letter-spacing: 1px;
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-ttl .p-in_caption {
    font-size: 10px;
  }
}
.p-ticket__box-info-content-inner {
  padding: 33px 3.8%;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-content-inner {
    padding: 19px 4.5%;
  }
}
.p-ticket__box-info-content-item {
  display: flex;
  flex-direction: row-reverse;
}
.p-ticket__box-info-content-item.-noflex {
  display: block;
}
.p-ticket__box-info-content-item + .p-ticket__box-info-content-item {
  padding-top: 55px;
  margin-top: 60px;
  border-top: 1px solid rgba(208, 212, 226, 0.3);
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-content-item + .p-ticket__box-info-content-item {
    padding-top: 35px;
    margin-top: 40px;
  }
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-content-item {
    flex-direction: column;
  }
}
.p-ticket__box-info-thumb {
  margin-left: 4.3%;
  width: 50%;
  flex-shrink: 0;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-thumb {
    width: 100%;
    margin: 0 auto 20px;
    margin-top: 24px;
  }
}
.-noflex .p-ticket__box-info-thumb {
  margin: 0;
  width: 100%;
}
.p-ticket__box-info-thumb-img + .p-ticket__box-info-thumb-img {
  margin-top: 10px;
}
.p-ticket__box-info-detail {
  flex-grow: 1;
  line-height: 1.4;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-detail {
    line-height: 1.5;
  }
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head {
    line-height: 1.5;
  }
}
.p-ticket__box-info-head-ttl {
  font-size: min(23px, 2vw);
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-ttl {
    font-size: 16px;
  }
}
.p-ticket__box-info-head-benefit {
  font-size: 19px;
  letter-spacing: 1.5px;
  margin-bottom: 20px;
  line-height: 1.5;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-benefit {
    font-size: 14px;
    margin-bottom: 13px;
  }
}
.p-ticket__box-info-head-price {
  margin: -3px 0 19px;
  font-size: min(23px, 2vw);
  letter-spacing: 2.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-price {
    margin: -3px 0 12px;
    font-size: 16px;
    letter-spacing: 2px;
  }
}
.p-ticket__box-info-head-price .is-small {
  font-size: min(13px, 1.1vw);
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-price .is-small {
    font-size: 10px;
  }
}
.p-ticket__box-info-head-ttl {
  margin-bottom: 16px;
  letter-spacing: 1.5px;
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-ttl {
    letter-spacing: 0.8px;
    margin-bottom: 10px;
  }
}
.p-ticket__box-info-head-date {
  margin-bottom: 22px;
  border: 1px solid #fff;
  display: inline-block;
  vertical-align: baseline;
  padding: 3px 14px;
  letter-spacing: 0.5px;
  font-size: 16px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-date {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 17px;
  }
}
.p-ticket__box-info-head-caption {
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-caption {
    margin-bottom: 15px;
    font-size: 13px;
  }
}
.p-ticket__box-info-head-note {
  font-size: 12px;
  text-indent: -0.8rem;
  padding-left: 0.8rem;
}
.p-ticket__box-info-head-note.margin_bottom {
  margin-bottom: 24px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-note.margin_bottom {
    margin-bottom: 17px;
  }
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-head-note {
    text-indent: -0.6rem;
    padding-left: 0.6rem;
    font-size: 10px;
  }
}
.p-ticket__box-info-head-note .p-in_item {
  letter-spacing: 0.5px;
}
.p-ticket__box-info-head-note .p-in_item + .p-in_item {
  margin-top: 2px;
}
.p-ticket__box-info-main {
  margin-top: 24px;
  line-height: 1.6;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-main {
    margin-top: 2px;
  }
}
.p-ticket__box-info-main-ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-main-ttl {
    font-size: 14px;
    letter-spacing: 0.8px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-box {
    font-size: 13px;
    letter-spacing: 1px;
  }
}
.p-ticket__box-info-box + .p-ticket__box-info-box {
  margin-top: 27px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-box + .p-ticket__box-info-box {
    margin-top: 18px;
  }
}
.p-ticket__box-info-box-btn {
  margin-top: 11px;
  line-height: 1.8;
  max-width: 438px;
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-box-btn .c-btn__text {
    letter-spacing: 0;
  }
}
.p-ticket__box-info-box-ttl {
  letter-spacing: 1px;
  margin-bottom: 3px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-box-ttl {
    letter-spacing: 1.5px;
  }
}
.p-ticket__box-info-box-ttl.-small {
  font-size: 16px;
  margin-bottom: 9px;
  padding-top: 10px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-box-ttl.-small {
    padding-top: 7px;
    font-size: 12px;
  }
}
.p-ticket__box-info-box-detail.-small {
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-box-detail.-small {
    font-size: 11px;
    line-height: 1.75;
  }
}
.p-ticket__box-info-widget {
  width: 100%;
  position: relative;
  margin-top: 23px;
}
@media screen and (min-width: 900px) {
  .p-ticket__box-info-widget {
    margin-top: 39px;
  }
}
.p-ticket__box-info-widget-inner {
  width: 80%;
  max-width: 438px;
}
.p-ticket__box-info-widget-inner #mvtk-widgets-container {
  width: 100% !important;
  height: 100% !important;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-widget-inner {
    width: 100%;
  }
}
.p-ticket__box-info-addbenefit {
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  padding: 22px 0 23px;
  margin: 21px 0 26px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-addbenefit {
    padding: 18px 0 17px;
    margin: 18px 0 18px;
  }
}
.p-ticket__box-info-addbenefit-ttl {
  font-size: 19px;
  line-height: 1.5;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-addbenefit-ttl {
    font-size: 14px;
  }
}
.p-ticket__box-info-addbenefit-note {
  margin-top: 5px;
  font-size: 12px;
  text-indent: -1rem;
  padding-left: 1rem;
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-info-addbenefit-note {
    margin-top: 11px;
    font-size: 10px;
  }
}
.p-ticket__box-info-addbenefit-note .p-in_item {
  line-height: 1.6;
  letter-spacing: 0.5px;
}
.p-ticket__box-info-addbenefit-note .p-in_item + .p-in_item {
  margin-top: 3px;
}
.p-ticket__box-onlinebenfit {
  margin: 25px 0 15px;
  display: flex;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-onlinebenfit {
    margin: 18px 0 13px;
    display: block;
  }
}
.p-ticket__box-onlinebenfit .p-in_ttl {
  flex-shrink: 0;
  width: 91px;
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-onlinebenfit .p-in_ttl {
    width: 100%;
    font-size: 13px;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
  }
}
.p-ticket__box-onlinebenfit-list {
  font-size: 14px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-onlinebenfit-list {
    font-size: 11px;
  }
}
@media screen and (max-width: 899px) {
  .p-ticket__box-onlinebenfit-list .p-in_item span {
    display: block;
  }
  .p-ticket__box-onlinebenfit-list .p-in_item span:nth-child(2) {
    padding-left: 15px;
  }
  .p-ticket__box-onlinebenfit-list .p-in_item + .p-in_item {
    margin-top: 4px;
  }
}
.p-ticket__box-onlinebenfit-tlink {
  margin-top: 18px;
}
@media screen and (max-width: 899px) {
  .p-ticket__box-onlinebenfit-tlink {
    margin-top: 14px;
    font-size: 12px;
  }
}
.p-ticket__box-onlinebenfit-tlink a {
  color: #ffbc98;
}
@media screen and (min-width: 900px) {
  .p-ticket__box-onlinebenfit-tlink a:hover {
    text-decoration: none;
  }
}
.p-ticket__end {
  margin-top: 40px;
  margin-bottom: 40px;
  border: 1px solid rgba(208, 212, 226, 0.8);
  padding: 35px 20px 42px;
}
@media screen and (max-width: 899px) {
  .p-ticket__end {
    padding: 30px 20px 38px;
    margin-top: 35px;
    margin-bottom: 35px;
  }
}
.p-ticket__end-lead {
  font-size: 15px;
  color: #ff975e;
}
@media screen and (max-width: 899px) {
  .p-ticket__end-lead {
    font-size: 13px;
  }
}
.p-ticket__end-info-ttl {
  margin-top: 18px;
  font-size: 15px;
  display: inline-block;
  vertical-align: baseline;
  border: 1px solid #fff;
  padding: 3px 12px;
  line-height: 1.5;
  letter-spacing: 1.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__end-info-ttl {
    font-size: 12px;
    margin-top: 13px;
    padding: 2px 10px;
    letter-spacing: 1px;
  }
}
.p-ticket__end-info-text {
  font-size: 15px;
  margin-top: 8px;
}
@media screen and (max-width: 899px) {
  .p-ticket__end-info-text {
    font-size: 13px;
  }
}
.p-ticket__end-list {
  margin-top: 20px;
}
@media screen and (max-width: 899px) {
  .p-ticket__end-list {
    margin-top: 15px;
    text-align: left;
  }
}
.p-ticket__end-list-item {
  font-size: 11px;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 899px) {
  .p-ticket__end-list-item {
    font-size: 10px;
    text-indent: -0.8rem;
    padding-left: 0.8rem;
  }
  .p-ticket__end-list-item + .p-in_item {
    margin-top: 5px;
  }
}

.p-event {
  padding-top: 136px;
}
@media screen and (max-width: 899px) {
  .p-event {
    padding-top: 69px;
    padding-bottom: 76px;
  }
}
.p-event__ttl {
  margin-bottom: 58px;
}
@media screen and (max-width: 899px) {
  .p-event__ttl {
    margin-bottom: 47px;
  }
}
.p-event__info-box {
  border: 1px solid rgba(208, 212, 226, 0.8);
  transform: translateY(20px);
  opacity: 0;
}
.p-event__info-box.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
.p-event__info-box + .p-event__info-box {
  margin-top: 40px;
}
.p-event__info-ttl {
  background-color: rgba(208, 212, 226, 0.8);
  font-family: YakuHanMP, "Noto Serif JP", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  color: #05143d;
  display: flex;
  padding: 12px 38px 13px;
  line-height: 1.8;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .p-event__info-ttl {
    line-height: 1.6;
    padding: 7px 18px 10px;
    text-align: center;
  }
}
.p-event__info-ttl .p-in_ttl {
  margin-right: 19px;
  font-size: 19px;
}
@media screen and (max-width: 899px) {
  .p-event__info-ttl .p-in_ttl {
    font-size: 14px;
    margin-right: 0;
  }
}
.p-event__info-ttl .p-in_caption {
  font-size: 13px;
  letter-spacing: 1px;
  font-family: YakuHanJP, "Noto Sans JP", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.p-event__info-item + .p-event__info-item {
  border-top: 1px solid rgba(208, 212, 226, 0.2);
  margin-top: 38px;
  padding-top: 36px;
}
@media screen and (max-width: 899px) {
  .p-event__info-item + .p-event__info-item {
    margin-top: 34px;
    padding-top: 32px;
  }
}
.p-event__info-content-inner {
  padding: 43px 3.8% 40px;
}
@media screen and (max-width: 899px) {
  .p-event__info-content-inner {
    padding: 25px 4% 40px;
  }
}
.p-event__info-cap {
  margin-bottom: 15px;
  font-size: 19px;
  line-height: 1.5;
}
@media screen and (max-width: 899px) {
  .p-event__info-cap {
    letter-spacing: 0.8px;
    font-size: 16px;
    margin-bottom: 18px;
  }
}
.p-event__info-about-ttl {
  margin-bottom: 10px;
}
@media screen and (max-width: 899px) {
  .p-event__info-about-ttl {
    font-size: 12px;
    margin-bottom: 10px;
  }
}
.p-event__info-about-item {
  display: flex;
  line-height: 1.6;
}
.p-event__info-about-item + .p-event__info-about-item {
  margin-top: 5px;
}
@media screen and (max-width: 899px) {
  .p-event__info-about-item + .p-event__info-about-item {
    margin-top: 7px;
  }
}
.p-event__info-about-item .p-in_ttl {
  width: 150px;
  margin-right: 7px;
  font-size: 16px;
  letter-spacing: 0.5px;
  flex-shrink: 0;
  position: relative;
}
@media screen and (max-width: 899px) {
  .p-event__info-about-item .p-in_ttl {
    font-size: 12px;
    max-width: 110px;
    width: 40%;
    margin-right: 7px;
    letter-spacing: 0.5px;
  }
}
.p-event__info-about-item .p-in_ttl::before {
  content: ":";
  position: absolute;
  top: 0;
  right: 0;
}
@media screen and (max-width: 899px) {
  .p-event__info-about-item .p-in_text {
    font-size: 11px;
  }
}
.p-event__info-about-item .p-in_text a {
  vertical-align: baseline;
  color: #ffbc98;
}
@media (hover: hover) {
  .p-event__info-about-item .p-in_text a:hover {
    text-decoration: none;
  }
}
.p-event__info-about-note {
  font-size: 12px;
  text-indent: -0.8rem;
  padding-left: 0.8rem;
  margin-top: 5px;
  margin-bottom: 6px;
}
@media screen and (max-width: 899px) {
  .p-event__info-about-note {
    margin-top: 4px;
    margin-bottom: 3px;
    font-size: 10px;
    text-indent: -0.7rem;
    padding-left: 0.7rem;
  }
}
.p-event__info-about-note .p-in_item {
  letter-spacing: 0.5px;
}
.p-event__info-about-note .p-in_item + .p-in_item {
  margin-top: 1px;
}
@media screen and (max-width: 899px) {
  .p-event__info-about-note .p-in_item + .p-in_item {
    margin-top: 2px;
  }
}
.p-event__info-note {
  margin-top: 15px;
}
@media screen and (max-width: 899px) {
  .p-event__info-note {
    margin-top: 23px;
  }
}
.p-event__info-note-item {
  font-size: 12px;
  line-height: 1.6;
  text-indent: -0.8rem;
  padding-left: 0.8rem;
}
@media screen and (max-width: 899px) {
  .p-event__info-note-item {
    font-size: 10px;
    text-indent: -0.7rem;
    padding-left: 0.7rem;
  }
}
.p-event__info-foot {
  margin-top: 20px;
  font-size: 13px;
  line-height: 1.6;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 899px) {
  .p-event__info-foot {
    font-size: 11px;
    margin-top: 15px;
  }
}
.p-event__info-foot-box + .p-event__info-foot-box {
  margin-top: 10px;
}
.p-event__info-foot-ttl {
  background-color: #e98330;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 3px;
  margin-bottom: 3px;
}
.p-event__info-foot-text {
  font-size: 12px;
}
@media screen and (max-width: 899px) {
  .p-event__info-foot-text {
    font-size: 10px;
  }
}
.p-event__attention {
  margin-top: 48px;
  transform: translateY(20px);
  opacity: 0;
}
.p-event__attention.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.1s;
}
@media screen and (max-width: 899px) {
  .p-event__attention {
    margin-top: 41px;
  }
}
.p-event__attention-ttl {
  margin-bottom: 18px;
  letter-spacing: 1px;
}
@media screen and (max-width: 899px) {
  .p-event__attention-ttl {
    margin-bottom: 19px;
    font-size: 12px;
  }
}
.p-event__attention-lead {
  line-height: 1.6;
  margin-bottom: 15px;
}
.p-event__attention-lead a {
  color: #ffbc98;
}
@media (hover: hover) {
  .p-event__attention-lead a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 899px) {
  .p-event__attention-lead {
    font-size: 12px;
  }
}
.p-event__attention-list {
  line-height: 1.6;
}
.p-event__attention-list-item {
  font-size: 12px;
  text-indent: -0.8rem;
  padding-left: 0.8rem;
}
@media screen and (max-width: 899px) {
  .p-event__attention-list-item {
    text-indent: -0.7rem;
    padding-left: 0.7rem;
    font-size: 10px;
  }
}
.p-event__attention-list-item + .p-event__attention-list-item {
  margin-top: 6px;
}
@media screen and (max-width: 899px) {
  .p-event__attention-list-item + .p-event__attention-list-item {
    margin-top: 5px;
  }
}
.p-event__attention-list-item a {
  color: #ffbc98;
}
@media (hover: hover) {
  .p-event__attention-list-item a:hover {
    text-decoration: none;
  }
}

.p-theater__ttl {
  margin-bottom: 59px;
}
@media screen and (max-width: 899px) {
  .p-theater__ttl {
    margin-bottom: 43px;
  }
}
.p-theater__text {
  margin: 0 auto;
  width: 54%;
  max-width: 510px;
  transform: translateY(20px);
  opacity: 0;
}
.is-active .p-theater__text {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.3s;
}
@media screen and (max-width: 899px) {
  .p-theater__text {
    width: 100%;
  }
}
.p-theater__btn {
  margin: 0 auto;
  width: 80%;
  max-width: 440px;
  margin-top: 40px;
  transform: translateY(20px);
  opacity: 0;
}
.is-active .p-theater__btn {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 1.2s cubic-bezier(0.33, 1, 0.68, 1);
  transition-delay: 0.5s;
}
@media screen and (max-width: 899px) {
  .p-theater__btn {
    width: 90%;
    margin-top: 24px;
  }
}
.p-theater__btn .c-btn__text {
  padding: 18px 9%;
}