@keyframes photoSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes fuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fuyo2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(6%, 6%);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes fuyo3 {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(-360deg);
  }
}
@keyframes pagetop {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  20% {
    opacity: 0;
  }
  30% {
    transform: translateX(40%);
  }
  50% {
    transform: translateX(-40%);
    opacity: 0;
  }
  70% {
    opacity: 1;
  }
  100% {
    transform: translateX(0);
  }
}
:root {
  --color-blue: #01b3c4;
  --color-bluelight: #55ccd7;
  --color-yellow: #f8d224;
  --color-pink: #f88cd3;
  --color-black: #000;
  --color-white: #fff;
  --color-gold: #8c6d1c;
  --color-gold2: #C1A04F;
  --color-gray: #888;
}

[data-bg-item="1"] img,
[data-bg-item="2"] img {
  transition: transform 1.2s cubic-bezier(0.33, 1, 0.68, 1);
}

@media screen and (max-width: 767px) {
  .l-header__logo {
    transition: height 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  }
  .l-header__logo.is-small {
    height: 3.35rem;
  }
}

.p-hero {
  position: relative;
  padding: 87px 0 60px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-hero {
    overflow: hidden;
    padding: 0;
  }
}
.p-hero__kv {
  position: relative;
  transform: translateY(25px);
  opacity: 0;
}
.is-load .p-hero__kv {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-hero__kv {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
  }
}
.p-hero__kv-slider {
  position: relative;
  max-width: 2300px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .p-hero__kv-slider {
    padding: 65px 0 127px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
.p-hero__kv-slider-btn {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  z-index: 1;
  pointer-events: none;
  top: 0%;
  left: 50%;
  transform: translateX(-50%) scale(1.08);
  width: 84%;
  height: 100%;
  opacity: 0;
}
.is-load .p-hero__kv-slider-btn {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-hero__kv-slider-btn {
    width: 103%;
  }
}
.no-slide .p-hero__kv-slider-btn {
  display: none;
}
.p-hero__kv-slider-btn-content {
  display: flex;
  justify-content: space-between;
}
.p-hero__kv-slider-btn .swiper-button-prev, .p-hero__kv-slider-btn .swiper-button-next {
  pointer-events: all;
  position: relative;
  margin: 0;
  top: 0;
  z-index: 0;
  border: 2px solid var(--color-black);
  background-color: var(--color-bluelight);
  height: auto;
  width: 5%;
  border-radius: 50%;
}
@media (hover: hover) {
  .p-hero__kv-slider-btn .swiper-button-prev, .p-hero__kv-slider-btn .swiper-button-next {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .p-hero__kv-slider-btn .swiper-button-prev:hover, .p-hero__kv-slider-btn .swiper-button-next:hover {
    transform: scale(0.95);
  }
}
@media screen and (min-width: 768px) {
  .p-hero__kv-slider-btn .swiper-button-prev, .p-hero__kv-slider-btn .swiper-button-next {
    padding-top: 5%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__kv-slider-btn .swiper-button-prev, .p-hero__kv-slider-btn .swiper-button-next {
    width: 30px;
    height: 30px;
  }
}
.p-hero__kv-slider-btn .swiper-button-prev::after {
  font-size: 0;
  width: 28%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scaleX(-1);
  background: url(../img/common/arrow.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-hero__kv-slider-btn .swiper-button-prev::after {
    padding-top: 28%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__kv-slider-btn .swiper-button-prev::after {
    width: 10px;
    height: 10px;
  }
}
.p-hero__kv-slider-btn .swiper-button-next::after {
  font-size: 0;
  width: 28%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/common/arrow.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .p-hero__kv-slider-btn .swiper-button-next::after {
    padding-top: 28%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__kv-slider-btn .swiper-button-next::after {
    width: 10px;
    height: 10px;
  }
}
.p-hero__logo {
  position: absolute;
  top: 0;
  left: 15px;
  width: 150px;
}
.p-hero__today {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 12.3%;
  border-radius: 50%;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-hero__today {
    right: 0;
    max-width: 200px;
    transform: translateX(-15%) translateY(21%);
  }
}
@media screen and (max-width: 767px) {
  .p-hero__today {
    transform: translateX(-50%);
    left: 50%;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: 4.4rem;
    background: linear-gradient(90deg, #f3d68c 0%, #cda846 100%);
    border-radius: 100px;
    bottom: 2.1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.7rem;
    padding-right: 0.9rem;
  }
}
.p-hero__today-inner {
  position: relative;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-hero__today-inner {
    height: 100%;
    transform: scale(0.8);
    opacity: 0;
  }
  .is-load .p-hero__today-inner {
    opacity: 1;
    transform: scale(1);
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
    transition-delay: 0.6s;
  }
}
.p-hero__today-base {
  position: relative;
}
.p-hero__today-base::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/today/today_frame_pc.png) no-repeat center center;
  background-size: contain;
  animation: rotate_loop 30s linear infinite forwards;
}
@media screen and (max-width: 767px) {
  .p-hero__today-base {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__today-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 35%;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__today-content {
    display: flex;
    align-items: center;
    width: 100%;
  }
}
.p-hero__today-cap {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 1.2rem;
  line-height: 1.2;
  flex-shrink: 0;
  width: 8.3rem;
  border-right: 1px dotted var(--color-black);
}
.p-hero__today-date {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-weight: 600;
  font-size: 2.2rem;
  text-align: center;
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-hero__today-date {
    padding-right: 1.2rem;
    margin: 0 0.9rem;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__today-date {
    font-size: 1.8cqw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .p-hero__today-date {
    font-size: 32px;
  }
}
.p-hero__today-date span {
  vertical-align: baseline;
  display: block;
}
.p-hero__today-date .js-today-month {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-hero__today-date .js-today-date {
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
}
.p-hero__today-date .js-today-week {
  font-size: 0.9rem;
  writing-mode: vertical-lr;
  padding-left: 0.3rem;
}
@media screen and (max-width: 767px) {
  .p-hero__today-date .js-today-week {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding-left: 0.5rem;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__today-date .js-today-week {
    font-size: 0.65cqw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .p-hero__today-date .js-today-week {
    font-size: 11px;
  }
}
.p-hero__today-weather {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-weight: 600;
  background-color: var(--color-white);
  padding: 0 1.5rem;
  border-radius: 100px;
  color: var(--color-gold);
  font-size: 1.9rem;
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-hero__today-weather {
    margin: 0;
    padding: 6px 1.2rem 2px;
    margin-left: auto;
    height: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__today-weather {
    height: 2.3cqw;
    font-size: 1.3cqw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .p-hero__today-weather {
    font-size: 23px;
    height: 36px;
  }
}
.p-hero__today-weather-text {
  display: flex;
  align-items: baseline;
}
.p-hero__today-weather-text span {
  display: block;
}
.p-hero__today-weather-text .is-icon {
  width: 1.4cqw;
}
@media screen and (min-width: 1600px) {
  .p-hero__today-weather-text .is-icon {
    width: 22px;
  }
}
@media screen and (max-width: 767px) {
  .p-hero__today-weather-text .is-icon {
    width: 2rem;
  }
}
.p-hero__today-weather-icon {
  width: 3rem;
  margin-left: 0.2rem;
}
@media screen and (max-width: 767px) {
  .p-hero__today-weather-icon {
    margin-left: 0.4rem;
  }
}
@media screen and (min-width: 768px) {
  .p-hero__today-weather-icon {
    width: 2.2cqw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1600px) {
  .p-hero__today-weather-icon {
    width: 35px;
  }
}
.p-hero__scroll {
  position: absolute;
  bottom: 29px;
  left: 50%;
  transform: translateX(-50%);
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-weight: 600;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .p-hero__scroll {
    font-size: 1.2rem;
    bottom: 8.2rem;
  }
}
.p-hero__scroll span {
  vertical-align: baseline;
  display: inline-block;
  transform: translateY(-100%);
  opacity: 0;
}
.is-load .p-hero__scroll span {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__scroll span:nth-child(1) {
  transition-delay: 0.8s;
}
.is-load .p-hero__scroll span:nth-child(2) {
  transition-delay: 0.9s;
}
.is-load .p-hero__scroll span:nth-child(3) {
  transition-delay: 1s;
}
.is-load .p-hero__scroll span:nth-child(4) {
  transition-delay: 1.1s;
}
.is-load .p-hero__scroll span:nth-child(5) {
  transition-delay: 1.2s;
}
.is-load .p-hero__scroll span:nth-child(6) {
  transition-delay: 1.3s;
}

.kv_swiper {
  position: relative;
  padding-bottom: 27px;
}
@media screen and (max-width: 767px) {
  .kv_swiper {
    padding-bottom: 12px;
    padding: 0 6.7% 0;
  }
}
.kv_swiper .swiper-slide {
  width: 85.5%;
  margin: 0 auto;
  position: relative;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
@media screen and (max-width: 767px) {
  .kv_swiper .swiper-slide {
    width: 100%;
  }
}
.kv_swiper .swiper-slide::before {
  content: "";
  position: absolute;
  top: 2.5%;
  left: 1.5%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: 40px;
  background-color: var(--color-white);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .kv_swiper .swiper-slide::before {
    border-radius: 15px;
    top: 2.8%;
    left: 3.8%;
  }
}
.kv_swiper .swiper-slide::after {
  content: "";
  position: absolute;
  top: 1.2%;
  left: 0.8%;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: 40px;
  background-color: var(--color-white);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .kv_swiper .swiper-slide::after {
    border-radius: 15px;
    top: 1.4%;
    left: 2%;
  }
}
.kv_swiper .swiper-slide-active,
.kv_swiper .swiper-slide-duplicate-active {
  transform: scale(1);
}
@media screen and (min-width: 768px) {
  .kv_swiper .swiper-slide-prev,
  .kv_swiper .swiper-slide-duplicate-next,
  .kv_swiper .swiper-slide-next,
  .kv_swiper .swiper-slide-duplicate-prev {
    transform: scale(0.83);
  }
}
.kv_swiper__thumb {
  position: relative;
  border: 1px solid var(--color-black);
  border-radius: 40px;
  overflow: hidden;
  height: 100%;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .kv_swiper__thumb {
    border-radius: 15px;
  }
}
.kv_swiper__thumb img {
  width: 100%;
}

.p-intro {
  background-color: var(--color-bluelight);
  border-bottom: 1px solid var(--color-black);
  padding: 3.1rem 0;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-intro {
    padding: 0;
  }
}
.p-intro__bg {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  opacity: 0;
}
.p-intro.is-active .p-intro__bg {
  opacity: 1;
  transition: opacity 0.5s cubic-bezier(0.37, 0, 0.63, 1) 0.1s;
}
@media screen and (max-width: 767px) {
  .p-intro__bg {
    height: 100%;
    justify-content: space-between;
  }
}
.p-intro__bg-box {
  width: 100%;
  height: auto;
  position: relative;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 767px) {
  .p-intro__bg-box:nth-child(1) {
    transform: translateY(-5%);
  }
}
.p-intro__bg-box:nth-child(2) {
  margin-top: min(6.2%, 86px);
}
@media screen and (max-width: 767px) {
  .p-intro__bg-box:nth-child(2) {
    margin-top: 0;
    transform: translateY(5%);
  }
}
.p-intro__bg-item {
  width: 100%;
  padding-top: min(5.5%, 77px);
  background: url(../img/bg/loop_txt1.png) repeat-x 0 center;
  background-size: auto 100%;
  transition: background 1.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .p-intro__bg-item {
    padding-top: 38px;
  }
}
.p-intro__bg-item + .p-intro__bg-item {
  margin-top: min(6.2%, 86px);
}
.p-intro__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-intro__deco-item {
  position: absolute;
  transform: scale(0.7);
  opacity: 0;
}
.p-intro.is-active .p-intro__deco-item {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-intro.is-active .p-intro__deco-item:nth-child(1) {
  transition-delay: 0.2s;
}
.p-intro.is-active .p-intro__deco-item:nth-child(2) {
  transition-delay: 0.26s;
}
.p-intro.is-active .p-intro__deco-item:nth-child(3) {
  transition-delay: 0.32s;
}
.p-intro.is-active .p-intro__deco-item:nth-child(4) {
  transition-delay: 0.38s;
}
.p-intro.is-active .p-intro__deco-item:nth-child(5) {
  transition-delay: 0.44s;
}
.p-intro.is-active .p-intro__deco-item:nth-child(6) {
  transition-delay: 0.5s;
}
.p-intro.is-active .p-intro__deco-item:nth-child(7) {
  transition-delay: 0.56s;
}
.p-intro.is-active .p-intro__deco-item:nth-child(8) {
  transition-delay: 0.62s;
}
.p-intro__deco-item:nth-child(1) {
  bottom: 5.8%;
  left: 11%;
  width: 10.6%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(1) {
    bottom: 4%;
    left: 0%;
    width: 19.6%;
  }
}
.p-intro__deco-item:nth-child(1) img {
  animation: fuyo 4s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-intro__deco-item:nth-child(2) {
  bottom: 5.9%;
  right: 13.2%;
  width: 9.6%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(2) {
    bottom: 21.5%;
    right: -5.8%;
    width: 18%;
  }
}
.p-intro__deco-item:nth-child(2) img {
  animation: fuyo2 3s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-intro__deco-item:nth-child(3) {
  top: 7.9%;
  right: 9.7%;
  width: 7.6%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(3) {
    top: 5.9%;
    right: -1%;
    width: 14.6%;
  }
}
.p-intro__deco-item:nth-child(3) img {
  animation: fuyo 2s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-intro__deco-item:nth-child(4) {
  top: 35.9%;
  left: 37.5%;
  width: 1.9%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(4) {
    top: 5.5%;
    left: 44%;
    width: 3.5%;
  }
}
.p-intro__deco-item:nth-child(4) img {
  animation: fuyo3 5s linear infinite forwards;
}
.p-intro__deco-item:nth-child(5) {
  top: 12.3%;
  left: 31.3%;
  width: 5.9%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(5) {
    top: 41%;
    left: -3.7%;
    width: 10.9%;
  }
}
.p-intro__deco-item:nth-child(5) img {
  animation: fuyo 3s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-intro__deco-item:nth-child(6) {
  bottom: 18.3%;
  left: 29.7%;
  width: 2.8%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(6) {
    bottom: 7%;
    left: 37.7%;
    width: 5%;
  }
}
.p-intro__deco-item:nth-child(6) img {
  animation: fuyo2 1.5s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-intro__deco-item:nth-child(7) {
  top: 18%;
  right: 25.7%;
  width: 1.8%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(7) {
    top: 27%;
    right: 8.7%;
    width: 3.5%;
  }
}
.p-intro__deco-item:nth-child(7) img {
  animation: fuyo2 2s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-intro__deco-item:nth-child(8) {
  top: 12.5%;
  left: 9%;
  width: 8.5%;
}
@media screen and (max-width: 767px) {
  .p-intro__deco-item:nth-child(8) {
    top: 4.5%;
    left: -1%;
    width: 15%;
  }
}
.p-intro__deco-item:nth-child(8) img {
  animation: fuyo 5s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-intro__inner {
  padding: 21.2rem 12.8rem;
  margin: 0 auto;
  width: 100%;
  position: relative;
  max-width: 1600px;
  transform: scale(0.9);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-intro__inner {
    transform: scale(1.05);
  }
}
.p-intro.is-active .p-intro__inner {
  opacity: 1;
  transform: scale(1);
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (min-width: 768px) {
  .p-intro__inner {
    border-radius: 50%;
    background-color: var(--color-white);
    border: 1px solid var(--color-black);
    box-sizing: border-box;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__inner {
    padding: 7.9rem 0 9.8rem;
  }
  .p-intro__inner::before {
    content: "";
    width: 100%;
    padding-top: 7.9rem;
    position: absolute;
    top: 0;
    left: 0;
    background: url(../img/top/introduction/intro_bg_sp.png) no-repeat bottom center;
    background-size: 100%;
    transform: scaleY(-1);
  }
  .p-intro__inner::after {
    content: "";
    width: 100%;
    padding-top: 9.8rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../img/top/introduction/intro_bg_sp.png) no-repeat bottom center;
    background-size: 100%;
  }
}
.p-intro__content {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-intro__content {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 767px) {
  .p-intro__content {
    background-color: var(--color-white);
  }
}
.p-intro__catch {
  position: relative;
  width: 48.6rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-intro__catch {
    transform: translateY(0);
    margin: 0 auto;
    width: 76%;
    margin-bottom: 3rem;
  }
}
.p-intro__catch span {
  display: block;
  position: relative;
}
.p-intro__catch-top {
  font-size: 4.8rem;
  padding: 11px 18px;
  overflow: hidden;
  display: inline-block;
  vertical-align: baseline;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-intro__catch-top {
    font-size: 2.4rem;
    padding: 6px 9px;
  }
}
.p-intro__catch-top::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48.6rem;
  height: 100%;
  background: url(../img/top/introduction/intro_title_bg.jpg) repeat-y 0 0;
  background-size: 100%;
}
.p-intro__catch-main {
  font-size: 9rem;
  padding: 11px 12px 19px;
  overflow: hidden;
  display: inline-block;
  vertical-align: baseline;
  font-weight: 700;
  position: relative;
  margin-top: -2px;
}
@media screen and (max-width: 767px) {
  .p-intro__catch-main {
    font-size: 4.5rem;
    padding: 5px 7px 9px;
  }
}
.p-intro__catch-main::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 48.6rem;
  height: 100%;
  background: url(../img/top/introduction/intro_title_bg.jpg) repeat-y 0 0;
  background-size: 100%;
}
.p-intro__lead {
  position: relative;
  width: calc(100% - 48.6rem);
  padding-left: 5.1rem;
  line-height: 2;
  font-size: 2rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-intro__lead {
    margin: 0 auto;
    width: 76%;
    padding: 0;
    font-size: 1.4rem;
  }
}
.p-intro__lead-text + .p-intro__lead-text {
  margin-top: 4rem;
}
@media screen and (max-width: 767px) {
  .p-intro__lead-text + .p-intro__lead-text {
    margin-top: 2.8rem;
  }
}

.p-news {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .p-news {
    margin-bottom: 17px;
  }
}
.p-news__inner {
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-news__inner {
    margin: 0 auto;
    width: 90%;
    max-width: 1200px;
    display: flex;
  }
}
.p-news .l-section__ttl {
  height: 100%;
}
@media screen and (min-width: 768px) {
  .p-news .l-section__ttl {
    width: 38rem;
    text-align: left;
    flex-shrink: 0;
  }
}
.p-news .l-section__inner {
  position: static;
}
@media screen and (min-width: 768px) {
  .p-news .l-section__inner {
    width: calc(100% - 38rem);
    margin: 0;
  }
}
.p-news__deco {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-news__deco-item {
  position: absolute;
}
.p-news__deco-item.--r1 {
  left: 0;
  transform: translateX(-28%);
  bottom: -1.5%;
  width: 45%;
  max-width: 730px;
}
@media screen and (max-width: 767px) {
  .p-news__deco-item.--r1 {
    transform: translateX(-27%);
    bottom: auto;
    top: 100vw;
    width: 67%;
  }
}
.p-news__ttl {
  margin-bottom: 63px;
}
@media screen and (max-width: 767px) {
  .p-news__ttl {
    margin-bottom: 30px;
  }
}
.p-news__list {
  padding-top: 0.8rem;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-news__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.15s;
}
@media screen and (max-width: 767px) {
  .p-news__list {
    padding-top: 0;
    width: 97%;
  }
}
.p-news__list-item {
  position: relative;
  margin-top: -1px;
  z-index: 1;
}
@media (hover: hover) {
  .p-news__list-item {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .p-news__list-item:hover {
    transform: translate(-5px, -5px);
  }
}
@media screen and (max-width: 767px) {
  .p-news__list-item {
    border-radius: 15px 0 15px 0;
  }
}
.p-news__list-item::before {
  content: "";
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  background-color: var(--color-white);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news__list-item::before {
    border-radius: 10px;
    top: 20%;
    left: 3.4%;
  }
}
.p-news__list-item::after {
  content: "";
  position: absolute;
  top: 0.7rem;
  left: 0.7rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  background-color: var(--color-white);
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-news__list-item::after {
    border-radius: 10px;
    top: 11%;
    left: 1.8%;
  }
}
.p-news__list-item-inner {
  position: relative;
  z-index: 1;
  padding-right: 0;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  background-color: var(--color-white);
  padding: 6px 0;
  display: flex;
  text-decoration: none;
  color: var(--color-black);
  line-height: 1.5;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__list-item-inner {
    padding: 1.3rem 5.5rem;
    border-radius: 10px;
    padding-left: 1.2rem;
  }
  .p-news__list-item-inner::before {
    content: "";
    position: absolute;
    top: 50%;
    right: 4.4rem;
    width: 1px;
    height: 83%;
    background: url(../img/common/dashed_line2.png) repeat-y 0 center;
    background-size: 1px;
    transform: translateY(-50%);
  }
  .p-news__list-item-inner::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 1.6rem;
    width: 1.4rem;
    height: 100%;
    background: url(../img/common/arrow.svg) no-repeat center center;
    background-size: contain;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  .p-news__list-item-inner {
    display: block;
    line-height: 1.5;
  }
}
.p-news__list-ttl {
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  width: 11rem;
  position: relative;
  flex-shrink: 0;
  line-height: 1;
  padding-left: 2.8rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}
@media screen and (max-width: 767px) {
  .p-news__list-ttl {
    width: 100%;
    padding: 0;
    flex-direction: row;
    justify-content: flex-start;
    align-items: baseline;
    margin-bottom: 2px;
  }
}
.p-news__list-ttl .p-in_year {
  font-size: 1.1rem;
  margin-bottom: 1px;
}
@media screen and (max-width: 767px) {
  .p-news__list-ttl .p-in_year {
    font-size: 0.9rem;
    margin-right: 0.5rem;
  }
}
.p-news__list-ttl .p-in_date {
  font-size: 1.6rem;
}
@media screen and (max-width: 767px) {
  .p-news__list-ttl .p-in_date {
    font-size: 1.3rem;
    letter-spacing: 0.5px;
  }
}
.p-news__list-content {
  width: calc(100% - 11rem);
  font-size: 1.6rem;
  padding: 18px 0 20px;
  padding-right: 13rem;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-news__list-content {
    width: 100%;
    margin-top: 0;
    padding: 0;
    font-size: 1.3rem;
  }
}
.p-news__list-content-arrow {
  position: absolute;
  top: 0;
  right: 0;
  width: 9rem;
  height: 100%;
}
.p-news__list-content-arrow::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/common/dashed_line2.png) repeat-y 0 center;
  background-size: 1px;
}
.p-news__list-content-arrow::after {
  content: "";
  width: 18px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 3.2rem;
  background: url(../img/common/arrow.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-news__list-content-arrow::after {
    content: none;
  }
}
@media screen and (max-width: 767px) {
  .p-news__list-content-arrow {
    display: none;
  }
}
.p-news__list-content-text {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}
.p-news__more {
  margin: 52px auto 0;
  transform: translateY(35px);
  opacity: 0;
}
.p-news.is-active .p-news__more {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (min-width: 768px) {
  .p-news__more {
    position: absolute;
    top: 0;
    left: 0;
    margin: 10.8rem 0 0;
    width: 24rem;
  }
}
@media screen and (max-width: 767px) {
  .p-news__more {
    width: 19.5rem;
    margin: 4.2rem auto 0;
  }
}
@media screen and (min-width: 768px) {
  .p-news__more .c-btn__inner {
    padding: 13px 15% 16px;
  }
}
.p-news__bnr {
  margin: 0 auto;
  width: 90%;
  max-width: 1000px;
  transform: translateY(35px);
  opacity: 0;
}
.p-news.is-active .p-news__bnr {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.6s;
}
@media screen and (max-width: 767px) {
  .p-news__bnr {
    display: block;
    width: 87%;
  }
}
.p-news__bnr-list {
  display: flex;
  margin-top: 15.8rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .p-news__bnr-list {
    display: block;
    margin-top: 7rem;
  }
}
.p-news__bnr-list-item {
  width: 32%;
  border: 1px solid var(--color-black);
}
@media screen and (min-width: 768px) {
  .p-news__bnr-list-item + .p-news__bnr-list-item {
    margin-left: 2%;
  }
}
@media screen and (max-width: 767px) {
  .p-news__bnr-list-item {
    width: 100%;
    margin-right: 0;
  }
  .p-news__bnr-list-item + .p-news__bnr-list-item {
    margin-top: 4.5%;
  }
  .p-news__bnr-list-item:last-of-type {
    margin-bottom: 0;
  }
}
.p-news__bnr-list-item a,
.p-news__bnr-list-item span {
  display: block;
  position: relative;
  overflow: hidden;
}
.p-news__bnr-list-item a img,
.p-news__bnr-list-item span img {
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-news__bnr-list-item a::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-blue);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
@media (hover: hover) {
  .p-news__bnr-list-item a:hover::after {
    opacity: 0.3;
  }
  .p-news__bnr-list-item a:hover img {
    transform: scale(1.05);
  }
}
.p-news__bnr-list-item:last-of-type {
  margin-right: 0;
}
.p-news__bnr-list-item:nth-child(2n) {
  margin-right: 0;
}

.p-movie {
  padding-bottom: 157px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-movie {
    padding-right: 2.6%;
    padding-bottom: 22%;
  }
}
.p-movie .l-section__inner {
  max-width: none;
  width: 86%;
  max-width: 1800px;
}
@media screen and (max-width: 767px) {
  .p-movie .l-section__inner {
    width: 94%;
  }
}
.p-movie .l-section__inner::before, .p-movie .l-section__inner::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 40px;
  pointer-events: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-movie .l-section__inner::before, .p-movie .l-section__inner::after {
    border-radius: 15px;
  }
}
.p-movie .l-section__inner::before {
  top: 2.3%;
  left: 1.2%;
}
@media screen and (max-width: 767px) {
  .p-movie .l-section__inner::before {
    top: 6.5%;
    left: 3.5%;
  }
}
.p-movie .l-section__inner::after {
  top: 1.2%;
  left: 0.5%;
}
@media screen and (max-width: 767px) {
  .p-movie .l-section__inner::after {
    top: 3%;
    left: 1.8%;
  }
}
.p-movie__ttl {
  display: none;
}
.p-movie__item {
  z-index: 1;
  width: 100%;
  padding-top: 56.25%;
  position: relative;
  cursor: pointer;
  overflow: hidden;
  overflow: hidden;
  border-radius: 40px;
  border: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-movie__item {
    border-radius: 15px;
  }
}
@media (hover: hover) {
  .p-movie__item:hover .p-movie__item-thumb::after {
    opacity: 0.5;
  }
}
.p-movie__item-thumb {
  pointer-events: none;
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
  width: 150%;
  height: 150%;
}
.p-movie__item-thumb::after {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-black);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-movie__item-play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11%;
  padding-top: 11%;
  background: url(../img/top/btn_play.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-movie__item-play {
    width: 19%;
    padding-top: 19%;
  }
}
.p-movie__deco {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-movie__deco-item {
  position: absolute;
}
.p-movie__deco-item.--r1 {
  right: 0;
  bottom: 0;
  width: 35%;
  max-width: 590px;
  transform: translateX(28%) translateY(65%);
}
@media screen and (max-width: 767px) {
  .p-movie__deco-item.--r1 {
    width: 52%;
    transform: translateX(39%) translateY(80%);
  }
}

#MoviePlayer_ui {
  display: none;
}

#MoviePlayer_player_wrap {
  position: absolute !important;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding-bottom: 0 !important;
  height: 100% !important;
}

.p-event {
  padding-top: 119px;
}
@media screen and (max-width: 767px) {
  .p-event {
    padding-top: 50px;
  }
}
.p-event::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 40px 40px 0 0;
}
@media screen and (max-width: 767px) {
  .p-event::before {
    border-radius: 15px 15px 0 0;
  }
}
.p-event__deco {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-event__deco-item {
  position: absolute;
}
.p-event__deco-item.--r1 {
  left: 0;
  bottom: 0;
  width: 48.8%;
  max-width: 780px;
  transform: translateX(-41%) translateY(68%);
}
@media screen and (max-width: 767px) {
  .p-event__deco-item.--r1 {
    width: 74%;
    transform: translateX(-55%) translateY(96%);
  }
}
.p-event__ttl {
  margin-bottom: 82px;
}
@media screen and (max-width: 767px) {
  .p-event__ttl {
    margin-bottom: 3.8rem;
  }
}
.p-event .l-section__inner {
  max-width: 1400px;
  width: 89%;
  padding-bottom: 6rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-event .l-section__inner {
    padding-bottom: 2rem;
  }
}
.p-event__content {
  margin: 0 auto;
  width: 100%;
  max-width: 1200px;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-event__content {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-event__link {
  text-decoration: none;
  color: var(--color-black);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-event__more {
  margin: 4.5% auto 0;
  width: 300px;
  transform: translateY(35px);
  opacity: 0;
}
.p-event.is-active .p-event__more {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-event__more {
    margin: 27px auto 0;
    width: 19.5rem;
  }
}
.p-event__thumb {
  position: relative;
}
.p-event__thumb::before, .p-event__thumb::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .p-event__thumb::before, .p-event__thumb::after {
    border-radius: 15px;
  }
}
.p-event__thumb::before {
  top: 1.3rem;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-event__thumb::before {
    left: 4.2%;
    top: 7%;
  }
}
.p-event__thumb::after {
  top: 0.5rem;
  left: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-event__thumb::after {
    left: 2.2%;
    top: 3%;
  }
}
.p-event__thumb-main {
  position: relative;
  box-shadow: 0 0 0 1px var(--color-black);
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (max-width: 767px) {
  .p-event__thumb-main {
    border-radius: 15px;
  }
}
.p-event__thumb-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(1.01);
}
.p-event__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-radius: 20px 0 20px 0;
  color: var(--color-black);
  font-size: 2.4rem;
  padding: 1.6rem 3.4rem 2rem;
  pointer-events: none;
  z-index: 1;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-event__label {
    border-radius: 15px 0 15px 0;
    font-size: 1.3rem;
    padding: 1rem 2rem 1.1rem;
  }
}
.p-event__label.--open {
  background-color: var(--color-black);
  color: var(--color-white);
}
.p-event__label.--close {
  background-color: var(--color-gray);
  color: var(--color-white);
}
.p-event__detail {
  position: relative;
  line-height: 1.5;
  flex-grow: 1;
}
.p-event__detail::before, .p-event__detail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-event__detail::before, .p-event__detail::after {
    border-radius: 15px;
  }
}
.p-event__detail::before {
  top: 1.3rem;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-event__detail::before {
    left: 4.2%;
    top: 7%;
  }
}
.p-event__detail::after {
  top: 0.6rem;
  left: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-event__detail::after {
    left: 2.2%;
    top: 3%;
  }
}
.p-event__detail-inner {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 2.9rem 2.8rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-event__detail-inner::after {
  content: "";
  width: 93%;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/dashed_line.jpg) repeat-x center center;
  background-size: 7px;
}
@media screen and (max-width: 767px) {
  .p-event__detail-inner {
    border-radius: 15px;
    padding: 1.9rem 1.5rem;
  }
}
.p-event__detail-date {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.5rem 0.8rem;
}
@media screen and (max-width: 767px) {
  .p-event__detail-date {
    font-size: 1.1rem;
    padding: 0.6rem 0.5rem 0.4rem;
    margin-bottom: 4px;
  }
}
.p-event__detail-date span {
  font-size: 1.1rem;
  display: inline-block;
  vertical-align: baseline;
  padding-left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-event__detail-date span {
    padding-left: 0.3rem;
    font-size: 0.8rem;
  }
}
.p-event__detail-ttl {
  font-size: 2.4rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-event__detail-ttl {
    font-size: 1.6rem;
  }
}
.p-event__detail-foot {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.7rem;
}
.p-event__detail-areabox {
  padding-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-event__detail-areabox {
    padding-top: 0.6rem;
  }
}
.p-event__detail-area {
  color: var(--color-gray);
  position: relative;
  padding-left: 2.5rem;
}
@media screen and (max-width: 767px) {
  .p-event__detail-area {
    font-size: 1.2rem;
    padding-left: 1.5rem;
  }
}
.p-event__detail-area::before {
  content: "";
  width: 18px;
  height: 18px;
  position: absolute;
  top: 0.4rem;
  left: 3px;
  background: url(../img/common/icon_location.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-event__detail-area::before {
    width: 1.3rem;
    height: 1.3rem;
    left: 0px;
  }
}
.p-event__detail-category {
  background: linear-gradient(90deg, #f3d68c 0%, #cda846 100%);
  border-radius: 100px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  padding: 0.6rem 2.2rem;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-event__detail-category {
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
  }
}
.p-event__control {
  margin-top: 4.4rem;
}
.no-slide .p-event__control {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-event__control {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .event_swiper {
    padding: 0 1.5%;
  }
}
.event_swiper .swiper-wrapper {
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .event_swiper .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.event_swiper .swiper-slide {
  width: 94%;
  height: auto;
  display: flex;
  flex-direction: column;
}
@media (hover: hover) {
  .event_swiper .swiper-slide {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .event_swiper .swiper-slide:hover {
    transform: translate(-5px, -5px);
  }
}
@media screen and (min-width: 768px) {
  .event_swiper .swiper-slide {
    width: 48.7%;
    margin-right: 2.56%;
    margin-top: 4.7%;
  }
  .event_swiper .swiper-slide:nth-child(2n) {
    margin-right: 0;
  }
  .event_swiper .swiper-slide:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
  .event_swiper .swiper-slide:last-of-type {
    margin-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .p-collabo {
    padding-top: 50px;
  }
}
.p-collabo::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.3);
  border-radius: 0 0 40px 40px;
}
@media screen and (max-width: 767px) {
  .p-collabo::before {
    border-radius: 0 0 15px 15px;
  }
}
.p-collabo__deco {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-collabo__deco-item {
  position: absolute;
}
.p-collabo__deco-item.--r1 {
  right: 0;
  bottom: 0;
  width: 37%;
  max-width: 600px;
  transform: translateX(39%) translateY(52%);
}
@media screen and (max-width: 767px) {
  .p-collabo__deco-item.--r1 {
    width: 52%;
    transform: translateX(47%) translateY(64%);
  }
}
.p-collabo__deco-item.--l1 {
  left: 0;
  width: 21%;
  top: 7%;
  max-width: 400px;
  transform: translateX(-23%);
}
@media screen and (max-width: 767px) {
  .p-collabo__deco-item.--l1 {
    width: 41%;
    top: 5%;
  }
}
.p-collabo__ttl {
  margin-bottom: 82px;
}
@media screen and (max-width: 767px) {
  .p-collabo__ttl {
    margin-bottom: 3.8rem;
  }
}
.p-collabo .l-section__inner {
  max-width: 1400px;
  width: 85.6%;
  padding-bottom: 14rem;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-collabo .l-section__inner {
    padding-bottom: 21%;
  }
}
.p-collabo__more {
  margin: 4.6% auto 0;
  width: 300px;
  transform: translateY(35px);
  opacity: 0;
}
.p-collabo.is-active .p-collabo__more {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-collabo__more {
    margin: 27px auto 0;
    width: 19.5rem;
  }
}
.p-collabo__slider {
  margin: 0 auto;
  width: 100%;
  transform: translateY(35px);
  opacity: 0;
}
.p-collabo.is-active .p-collabo__slider {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-collabo__link {
  text-decoration: none;
  color: var(--color-black);
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.p-collabo__thumb {
  position: relative;
}
.p-collabo__thumb::before, .p-collabo__thumb::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-collabo__thumb::before, .p-collabo__thumb::after {
    border-radius: 15px;
  }
}
.p-collabo__thumb::before {
  top: 1.3rem;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .p-collabo__thumb::before {
    left: 4.2%;
    top: 7%;
  }
}
.p-collabo__thumb::after {
  top: 0.5rem;
  left: 0.7rem;
}
@media screen and (max-width: 767px) {
  .p-collabo__thumb::after {
    left: 2.2%;
    top: 3%;
  }
}
.p-collabo__thumb-main {
  position: relative;
  box-shadow: 0 0 0 1px var(--color-black);
  border-radius: 20px;
  overflow: hidden;
  z-index: 1;
  width: 100%;
  padding-top: 56.25%;
}
@media screen and (max-width: 767px) {
  .p-collabo__thumb-main {
    border-radius: 15px;
  }
}
.p-collabo__thumb-main img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(1.01);
}
.p-collabo__label {
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-radius: 20px 0 20px 0;
  color: var(--color-black);
  font-size: 1.6rem;
  padding: 1.1rem 2.4rem 1.5rem;
  pointer-events: none;
  z-index: 1;
  border-right: 1px solid var(--color-black);
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 767px) {
  .p-collabo__label {
    border-radius: 15px 0 15px 0;
    font-size: 1.3rem;
    padding: 1rem 2rem 1.1rem;
  }
}
.p-collabo__label.--open {
  background-color: var(--color-black);
  color: var(--color-white);
}
.p-collabo__label.--close {
  background-color: var(--color-gray);
  color: var(--color-white);
}
.p-collabo__detail {
  position: relative;
  line-height: 1.5;
  flex-grow: 1;
}
.p-collabo__detail::before, .p-collabo__detail::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail::before, .p-collabo__detail::after {
    border-radius: 15px;
  }
}
.p-collabo__detail::before {
  top: 1.3rem;
  left: 1.5rem;
}
.p-collabo__detail::after {
  top: 0.6rem;
  left: 0.7rem;
}
.p-collabo__detail-inner {
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 1px var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  padding: 2.3rem 2rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}
.p-collabo__detail-inner::after {
  content: "";
  width: 93%;
  height: 1px;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: url(../img/common/dashed_line.jpg) repeat-x center center;
  background-size: 7px;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail-inner {
    border-radius: 15px;
    padding: 1.9rem 1.5rem;
  }
}
.p-collabo__detail-date {
  background-color: var(--color-black);
  color: var(--color-white);
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  line-height: 1;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.7rem 0.7rem 0.4rem;
  font-size: 1.3rem;
  margin-bottom: 0.9rem;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail-date {
    font-size: 1.1rem;
    padding: 0.6rem 0.5rem 0.4rem;
    margin-bottom: 4px;
  }
}
.p-collabo__detail-date span {
  font-size: 0.9rem;
  display: inline-block;
  vertical-align: baseline;
  padding-left: 0.5rem;
}
.p-collabo__detail-ttl {
  font-size: 2rem;
  font-weight: 700;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail-ttl {
    font-size: 1.6rem;
  }
}
.p-collabo__detail-foot {
  display: flex;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.7rem;
}
.p-collabo__detail-areabox {
  padding-top: 0.4rem;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail-areabox {
    padding-top: 0.6rem;
  }
}
.p-collabo__detail-area {
  color: var(--color-gray);
  position: relative;
  padding-left: 1.6rem;
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail-area {
    font-size: 1.2rem;
    padding-left: 1.5rem;
  }
}
.p-collabo__detail-area::before {
  content: "";
  width: 15px;
  height: 15px;
  position: absolute;
  top: 0.4rem;
  left: -2px;
  background: url(../img/common/icon_location.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail-area::before {
    width: 1.3rem;
    height: 1.3rem;
  }
}
.p-collabo__detail-category {
  background: linear-gradient(90deg, #a5ebf1 0%, #5cc3cc 100%);
  border-radius: 100px;
  padding: 0.8rem 1.8rem;
  font-size: 1.3rem;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .p-collabo__detail-category {
    padding: 0.6rem 1.2rem;
    font-size: 1.2rem;
  }
}
.p-collabo__control {
  margin-top: 5rem;
  transform: translateY(35px);
  opacity: 0;
}
.p-collabo.is-active .p-collabo__control {
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.no-slide .p-collabo__control {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-collabo__control {
    display: none;
  }
}

.collabo_swiper .swiper-wrapper {
  align-items: stretch;
}
@media screen and (min-width: 768px) {
  .collabo_swiper .swiper-wrapper {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.collabo_swiper .swiper-slide {
  height: auto;
  display: flex;
  flex-direction: column;
  width: 94%;
}
@media (hover: hover) {
  .collabo_swiper .swiper-slide {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .collabo_swiper .swiper-slide:hover {
    transform: translate(-5px, -5px);
  }
}
@media screen and (min-width: 768px) {
  .collabo_swiper .swiper-slide {
    width: 31.6%;
    margin-right: 2.56%;
    margin-top: 4.7%;
  }
  .collabo_swiper .swiper-slide:nth-child(3n) {
    margin-right: 0;
  }
  .collabo_swiper .swiper-slide:nth-child(n+1):nth-child(-n+3) {
    margin-top: 0;
  }
  .collabo_swiper .swiper-slide:last-of-type {
    margin-right: 0;
  }
}

.p-report .l-section__inner {
  max-width: 1400px;
  width: 85.6%;
}
@media screen and (max-width: 767px) {
  .p-report .l-section__inner {
    width: 94.6%;
  }
}
.p-report__deco {
  pointer-events: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-report__deco-item {
  position: absolute;
}
.p-report__deco-item.--r1 {
  left: 0;
  bottom: 0;
  width: 45%;
  max-width: 730px;
  transform: translateX(-38%) translateY(92%);
}
@media screen and (max-width: 767px) {
  .p-report__deco-item.--r1 {
    width: 71%;
    transform: translateX(-43%) translateY(120%);
  }
}
.p-report__ttl {
  margin-bottom: 66px;
}
@media screen and (max-width: 767px) {
  .p-report__ttl {
    margin-bottom: 2.8rem;
  }
}
.p-report__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  transform: translateY(35px);
  opacity: 0;
}
@media screen and (max-width: 767px) {
  .p-report__list {
    width: 97%;
  }
}
.l-section.is-active .p-report__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-report__list-item {
  width: 48.8%;
  margin-right: 2.3%;
  margin-top: 4%;
  position: relative;
}
@media (hover: hover) {
  .p-report__list-item {
    transition: background-color 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .p-report__list-item:hover {
    transform: translate(-5px, -5px);
  }
}
.p-report__list-item::before, .p-report__list-item::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-report__list-item::before, .p-report__list-item::after {
    border-radius: 10px;
  }
}
.p-report__list-item::before {
  top: 1.6rem;
  left: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-report__list-item::before {
    left: 2.7%;
    top: 13%;
  }
}
.p-report__list-item::after {
  top: 0.8rem;
  left: 0.5rem;
}
@media screen and (max-width: 767px) {
  .p-report__list-item::after {
    left: 1.2%;
    top: 6.5%;
  }
}
.p-report__list-item:last-of-type {
  margin-right: 0;
}
@media screen and (max-width: 767px) {
  .p-report__list-item {
    width: 100%;
    margin-right: 0;
    margin-top: 0;
  }
  .p-report__list-item:last-of-type {
    margin-bottom: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-report__list-item:nth-child(2n) {
    margin-right: 0;
  }
  .p-report__list-item:nth-child(n+1):nth-child(-n+2) {
    margin-top: 0;
  }
}
.p-report__list-item-inner {
  display: flex;
  height: 100%;
}
.p-report__list-item a {
  position: relative;
  z-index: 1;
  text-decoration: none;
  display: block;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  overflow: hidden;
  border-radius: 20px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-report__list-item a {
    border-radius: 10px;
  }
}
.p-report__list-text {
  padding: 0 2rem;
  color: var(--color-black);
  line-height: 1.3;
  justify-content: center;
  display: flex;
  flex-direction: column;
  width: 62.5%;
}
@media screen and (max-width: 767px) {
  .p-report__list-text {
    width: 70.5%;
    line-height: 1.2;
    padding: 0 1.3rem;
  }
}
.p-report__list-thumb {
  width: 37.5%;
  padding-top: 20.5%;
  flex-shrink: 0;
  position: relative;
}
.p-report__list-thumb::before {
  content: "";
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  right: 0;
  background: url(../img/common/dashed_line2.png) repeat-y 0 center;
  background-size: 1px;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-report__list-thumb {
    width: 29.5%;
    padding-top: 25.5%;
  }
}
.p-report__list-thumb-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-report__list-date {
  font-family: "Josefin Sans", sans-serif;
  margin-bottom: 7px;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .p-report__list-date {
    font-size: 1rem;
    margin-bottom: 4px;
  }
}
.p-report__list-date .is-small {
  font-size: 0.9rem;
  padding: 0 0.3rem;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .p-report__list-date .is-small {
    font-size: 0.7rem;
  }
}
.p-report__list-ttl {
  font-size: 1.8rem;
  line-height: 1.4;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .p-report__list-ttl {
    line-height: 1.5;
    font-size: 1.2rem;
  }
}
.p-report__more {
  margin: 4.8% auto 0;
  width: 300px;
  transform: translateY(35px);
  opacity: 0;
}
.p-report.is-active .p-report__more {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (max-width: 767px) {
  .p-report__more {
    margin: 12.5% auto 0;
    width: 19.5rem;
  }
}

.p-shortmovie {
  margin: 0 auto;
  width: 85.5%;
  padding-top: 130px;
  margin-top: 6.5rem;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-shortmovie {
    width: 90%;
    padding-top: 70px;
    margin-top: 0;
  }
}
.p-shortmovie__ttl {
  text-align: left;
  width: 47.7rem;
  flex-shrink: 0;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .p-shortmovie__ttl {
    text-align: center;
    width: 100%;
    margin-bottom: 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-shortmovie {
    display: block;
  }
}
.p-shortmovie .l-section__inner {
  width: calc(100% - 47.7rem);
  max-width: none;
  position: static;
  padding-bottom: 2%;
  padding-top: 0.5rem;
  margin: 0;
}
@media screen and (max-width: 767px) {
  .p-shortmovie .l-section__inner {
    padding-top: 0;
    width: 100%;
  }
}
.p-shortmovie__link {
  display: block;
  position: relative;
  border: 1px solid var(--color-black);
  border-radius: 20px;
  overflow: hidden;
  box-sizing: border-box;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-shortmovie__link {
    border-radius: 15px;
  }
}
@media (hover: hover) {
  .p-shortmovie__link:hover .p-shortmovie__data-thumb::after {
    opacity: 1;
  }
  .p-shortmovie__link:hover .p-shortmovie__data-thumb img {
    transform: scale(1.05);
  }
}
.p-shortmovie__slider {
  padding-right: 7.3%;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-shortmovie__slider {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-shortmovie__slider {
    padding-right: 0;
    margin-bottom: 4rem;
  }
  .p-shortmovie__slider.no-slide {
    padding-left: 0;
  }
}
.p-shortmovie__data-thumb {
  width: 100%;
  padding-top: 177%;
  position: relative;
  overflow: hidden;
}
.p-shortmovie__data-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-shortmovie__data-thumb img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.22, 1, 0.36, 1);
}
.p-shortmovie__data-thumb::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 25%;
  padding-top: 25%;
  background: url(../img/top/btn_play.png) no-repeat center center;
  background-size: contain;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .p-shortmovie__data-thumb::before {
    width: 28%;
    padding-top: 28%;
  }
}
.p-shortmovie__links {
  width: 26rem;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-shortmovie__links {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (min-width: 768px) {
  .p-shortmovie__links {
    position: absolute;
    top: min(41rem, 313px);
    left: 0;
  }
}
@media screen and (max-width: 767px) {
  .p-shortmovie__links {
    width: 22rem;
    margin: 0 auto;
    margin-top: 3.8rem;
  }
}
.p-shortmovie__links-list-item {
  border-radius: 100px;
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  box-sizing: border-box;
  position: relative;
  transition: background-color 0.4s cubic-bezier(0.22, 1, 0.36, 1), transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}
@media (hover: hover) {
  .p-shortmovie__links-list-item:hover {
    background-color: var(--color-gold);
    transform: scale(0.97);
  }
}
.p-shortmovie__links-list-item + .p-shortmovie__links-list-item {
  margin-top: 1.2rem;
}
@media screen and (max-width: 767px) {
  .p-shortmovie__links-list-item + .p-shortmovie__links-list-item {
    margin-top: 1rem;
  }
}
.p-shortmovie__links-list a {
  display: block;
  text-decoration: none;
  font-family: "Unbounded", sans-serif;
  font-weight: 500;
  color: var(--color-white);
  padding: 1.9rem 5.5rem;
  padding-right: 3rem;
  font-size: 1.4rem;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-shortmovie__links-list a {
    padding: 1.5rem 4rem 1.6rem;
    padding-right: 2rem;
    font-size: 1.2rem;
  }
}
.p-shortmovie__links-icon {
  position: absolute;
  top: 50%;
  left: 0.5rem;
  width: 4rem;
  height: 4rem;
  background-color: var(--color-white);
  transform: translateY(-50%);
  border-radius: 50%;
}
@media screen and (max-width: 767px) {
  .p-shortmovie__links-icon {
    width: 3.6rem;
    left: 0.4rem;
    height: 3.6rem;
  }
}
.p-shortmovie__links-icon .p-in_icon {
  width: 54%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-shortmovie__links-icon .p-in_icon svg {
  display: block;
}
.p-shortmovie__control {
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-shortmovie__control {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
@media screen and (min-width: 768px) {
  .p-shortmovie__control {
    position: absolute;
    bottom: 3.5rem;
    left: 0;
    z-index: 1;
  }
}
.no-slide .p-shortmovie__control {
  display: none;
}

.is-center .shortmovie_swiper .swiper-wrapper {
  justify-content: center;
}
.shortmovie_swiper .swiper-slide {
  width: 51.5%;
  max-width: 500px;
  position: relative;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .shortmovie_swiper .swiper-slide {
    width: 71.5%;
  }
  .no-slide .shortmovie_swiper .swiper-slide {
    margin: 0 auto;
  }
}
.no-slide .shortmovie_swiper .swiper-slide + .swiper-slide {
  margin-left: 5%;
}
.shortmovie_swiper .swiper-slide::before, .shortmovie_swiper .swiper-slide::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border: 1px solid var(--color-black);
  background-color: var(--color-white);
  border-radius: 20px;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  .shortmovie_swiper .swiper-slide::before, .shortmovie_swiper .swiper-slide::after {
    border-radius: 15px;
  }
}
.shortmovie_swiper .swiper-slide::before {
  top: 1.3rem;
  left: 1.5rem;
}
@media screen and (max-width: 767px) {
  .shortmovie_swiper .swiper-slide::before {
    left: 4.2%;
    top: 2.5%;
  }
}
.shortmovie_swiper .swiper-slide::after {
  top: 0.5rem;
  left: 0.7rem;
}
@media screen and (max-width: 767px) {
  .shortmovie_swiper .swiper-slide::after {
    left: 1.8%;
    top: 1%;
  }
}
@media screen and (min-width: 768px) {
  .shortmovie_swiper .swiper-slide-prev, .shortmovie_swiper .slide-prev {
    opacity: 0;
    pointer-events: none;
  }
}

.p-photo {
  padding-top: 10.8%;
  overflow: hidden;
  display: flex;
}
@media screen and (max-width: 767px) {
  .p-photo {
    padding-top: 20%;
  }
}
.p-photo__list {
  flex-shrink: 0;
  display: flex;
}
.is-load .p-photo__list {
  animation: photoSlide 60s linear infinite forwards;
}
@media screen and (max-width: 767px) {
  .is-load .p-photo__list {
    animation: photoSlide 50s linear infinite forwards;
  }
}
.p-photo__list-item {
  width: 420px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-photo__list-item {
    width: 213px;
  }
}
.p-photo__list-thumb {
  position: relative;
  overflow: hidden;
}