@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.p-hero {
  padding-top: 82px;
}
@media screen and (max-width: 959px) {
  .p-hero {
    padding-top: 50px;
  }
}
.p-hero__date {
  margin: 0 auto;
  width: 57.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__date {
    width: 73.5%;
  }
}
.p-hero__date img {
  transform: scale(1.2);
  opacity: 0;
}
.is-load .p-hero__date img {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.3s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}

.p-staff {
  position: relative;
  margin-top: 50px;
  transform: translateY(30px);
  opacity: 0;
}
.p-staff.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-staff {
    margin-top: 39px;
  }
}
.p-staff::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 2px;
  background: url(../img/line.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-staff::before {
    width: 40%;
  }
}
.p-staff__list {
  display: flex;
  justify-content: center;
  position: relative;
  padding: 36px 0 0;
}
@media screen and (max-width: 959px) {
  .p-staff__list {
    padding: 41px 0 0;
  }
}
.p-staff__list-item {
  text-align: center;
  position: relative;
}
.p-staff__list-item + .p-staff__list-item {
  padding-left: 50px;
  margin-left: 40px;
}
@media screen and (max-width: 959px) {
  .p-staff__list-item + .p-staff__list-item {
    padding-left: 32px;
    margin-left: 27px;
  }
}
.p-staff__list-item + .p-staff__list-item::before {
  content: "";
  width: 9px;
  height: 9px;
  position: absolute;
  bottom: 16px;
  left: 0;
  background: url(../img/bullet.svg) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-staff__list-item + .p-staff__list-item::before {
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
  }
}
.p-staff__list-name {
  font-size: 35px;
}
@media screen and (max-width: 959px) {
  .p-staff__list-name {
    font-size: 24px;
    letter-spacing: 1px;
  }
}
.p-staff__list-role {
  margin-bottom: 12px;
  font-size: 18px;
  color: #729aff;
}
@media screen and (max-width: 959px) {
  .p-staff__list-role {
    margin-bottom: 6px;
    font-size: 13px;
  }
}

.p-cast {
  position: relative;
  padding-top: 50px;
  margin-top: 48px;
  transform: translateY(30px);
  opacity: 0;
}
.p-cast.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-cast {
    padding-top: 41px;
    margin-top: 41px;
  }
}
.p-cast::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 2px;
  background: url(../img/line.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-cast::before {
    width: 40%;
  }
}
.p-cast__box-cap {
  margin: 0 auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid #729aff;
  font-size: 19px;
  padding: 1px 7px 4px;
  margin-bottom: 20px;
  color: #729aff;
}
@media screen and (max-width: 959px) {
  .p-cast__box-cap {
    font-size: 13px;
    padding: 2px 6px 3px;
    margin-bottom: 13px;
  }
}
.p-cast__list {
  display: flex;
  padding: 0 2.5%;
}
@media screen and (max-width: 959px) {
  .p-cast__list {
    padding: 0;
  }
}
.p-cast__list-item {
  width: 46.5%;
  text-align: center;
  margin-right: 7%;
}
@media screen and (max-width: 959px) {
  .p-cast__list-item {
    width: 48%;
    margin-right: 4%;
  }
}
.p-cast__list-item:nth-child(2n) {
  margin-right: 0;
}
.p-cast__list-thumb {
  position: relative;
}
.p-cast__list-name {
  font-size: 37px;
  margin-bottom: 12px;
}
@media screen and (max-width: 959px) {
  .p-cast__list-name {
    font-size: 25px;
    margin-bottom: 10px;
  }
}

.p-news {
  position: relative;
  padding-top: 48px;
  margin-top: 47px;
  transform: translateY(30px);
  opacity: 0;
}
.p-news.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-news {
    padding-top: 40px;
    margin-top: 38px;
  }
}
.p-news::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 2px;
  background: url(../img/line.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-news::before {
    width: 40%;
  }
}
.p-news__ttl {
  text-align: center;
  font-size: 30px;
  margin-bottom: 23px;
  color: #ed5500;
}
@media screen and (max-width: 959px) {
  .p-news__ttl {
    font-size: 21px;
  }
}
.p-news__ttl h2 {
  font-weight: 400;
}
@media screen and (max-width: 959px) {
  .p-news__list {
    padding: 0 3%;
  }
}
.p-news__list-item {
  display: flex;
  cursor: pointer;
  padding: 19px 0 23px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
@media screen and (max-width: 959px) {
  .p-news__list-item {
    padding: 15px 0 16px;
  }
}
@media (hover: hover) {
  .p-news__list-item {
    transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .p-news__list-item:hover {
    color: #ed5500;
  }
}
.p-news__list-date {
  flex-shrink: 0;
  width: 100px;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 959px) {
  .p-news__list-date {
    width: 85px;
  }
}
.p-news__list-date .p-in_year {
  writing-mode: vertical-rl;
  font-size: 9px;
  margin-right: 4px;
}
@media screen and (max-width: 959px) {
  .p-news__list-date .p-in_year {
    font-size: 8px;
  }
}
.p-news__list-date .p-in_day {
  font-size: 25px;
}
@media screen and (max-width: 959px) {
  .p-news__list-date .p-in_day {
    font-size: 20px;
  }
}
@media screen and (min-width: 960px) {
  .p-news__list-ttl {
    padding-top: 5px;
  }
}
@media screen and (max-width: 959px) {
  .p-news__list-ttl {
    font-size: 13px;
    line-height: 1.6;
  }
}

.p-news_modal {
  background-color: #000;
  padding: 3px;
  position: relative;
}
.p-news_modal::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #729aff;
  -o-border-image: linear-gradient(to right, #729aff 0%, #ed5500 100%);
  border-image: linear-gradient(to right, #729aff 0%, #ed5500 100%);
  border-image-slice: 1;
  opacity: 0.5;
  box-sizing: border-box;
  pointer-events: none;
}
.p-news_modal__inner {
  padding: 79px 121px;
  color: #fff;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-news_modal__inner {
    padding: 50px 20px 36px;
  }
}
.p-news_modal__inner::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border: 1px solid #729aff;
  -o-border-image: linear-gradient(to right, #729aff 0%, #ed5500 100%);
  border-image: linear-gradient(to right, #729aff 0%, #ed5500 100%);
  border-image-slice: 1;
  opacity: 0.5;
  box-sizing: border-box;
  pointer-events: none;
}
.p-news_modal__head {
  display: flex;
  line-height: 1.5;
  position: relative;
  padding-bottom: 33px;
  margin-bottom: 35px;
}
@media screen and (max-width: 959px) {
  .p-news_modal__head {
    display: block;
    margin: 0 auto;
    width: 86%;
    padding-bottom: 21px;
    margin-bottom: 26px;
  }
}
.p-news_modal__head::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 90%;
  height: 2px;
  background: url(../img/line.png) no-repeat center center;
  background-size: contain;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .p-news_modal__head::before {
    width: 56%;
  }
}
.p-news_modal__head-date {
  flex-shrink: 0;
  margin-right: 8px;
  font-size: 15px;
  letter-spacing: 1px;
}
@media screen and (max-width: 959px) {
  .p-news_modal__head-date {
    margin-bottom: 0;
    line-height: 1;
  }
}
.p-news_modal__head-title {
  flex-grow: 1;
  word-break: break-all;
  margin-top: -2px;
}
@media screen and (max-width: 959px) {
  .p-news_modal__head-title {
    margin-top: 2px;
    font-size: 14px;
  }
}
.p-news_modal__content {
  font-size: 14px;
  line-height: 1.8;
}
@media screen and (max-width: 959px) {
  .p-news_modal__content {
    padding: 0 8%;
    font-size: 12px;
    line-height: 1.5;
  }
}
.p-news_modal__content a {
  color: #fff;
}
@media screen and (min-width: 960px) {
  .p-news_modal__content a:hover {
    text-decoration: none;
  }
}
.p-news_modal__content img {
  height: auto !important;
  width: auto !important;
}
.p-news_modal__content iframe {
  width: 100% !important;
  height: auto !important;
}
@media screen and (min-width: 960px) {
  .p-news_modal__content iframe {
    aspect-ratio: 16/9;
  }
}
@media screen and (max-width: 959px) {
  .p-news_modal__content iframe {
    height: 51.73vw !important;
  }
}

.p-contact {
  position: relative;
  padding-top: 51px;
  margin-top: 48px;
  transform: translateY(30px);
  opacity: 0;
}
.p-contact.is-active {
  transform: translateY(0);
  opacity: 1;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-contact {
    padding-top: 41px;
    margin-top: 41px;
  }
}
.p-contact::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 33%;
  height: 2px;
  background: url(../img/line.png) no-repeat center center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-contact::before {
    width: 40%;
  }
}
.p-contact__btn {
  margin: 0 auto;
  width: 306px;
}
@media screen and (max-width: 959px) {
  .p-contact__btn {
    width: 270px;
  }
}
.p-contact__btn a {
  display: block;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (hover: hover) {
  .p-contact__btn a:hover {
    transform: scale(0.98);
  }
  .p-contact__btn a:hover .p-contact__btn-text {
    color: #ed5500;
  }
}
.p-contact__btn-frame {
  text-decoration: none;
}
.p-contact__btn-text {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #fff;
  transform: translate(-50%, -50%);
  width: 90%;
  text-align: center;
  font-size: 14px;
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 959px) {
  .p-contact__btn-text {
    font-size: 12px;
  }
}