@keyframes shake {
  0% {
    transform: rotate(0);
  }
  50% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
@keyframes fuyo {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes fuyo2 {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll2 {
  0% {
    opacity: 0;
  }
  17% {
    opacity: 0;
  }
  34% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll3 {
  0% {
    opacity: 0;
  }
  34% {
    opacity: 0;
  }
  51% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll4 {
  0% {
    opacity: 0;
  }
  51% {
    opacity: 0;
  }
  68% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes scroll5 {
  0% {
    opacity: 0;
  }
  68% {
    opacity: 0;
  }
  85% {
    opacity: 1;
  }
  100% {
    opacity: 1;
  }
}
@keyframes logo {
  0% {
    transform: rotate(0);
  }
  20% {
    transform: rotate(10deg);
  }
  40% {
    transform: rotate(-6deg);
  }
  60% {
    transform: rotate(5deg);
  }
  80% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.p-head {
  display: flex;
  align-items: stretch;
  position: relative;
  padding-top: 20px;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .p-head {
    padding-top: 62px;
  }
}
.p-head__center {
  flex-shrink: 0;
  width: 57%;
  max-width: 1140px;
}
@media screen and (max-width: 959px) {
  .p-head__center {
    width: 100%;
    max-width: none;
  }
}
.p-head__side {
  flex-grow: 1;
}
.p-head__side.-left {
  background: url(../img/bg_roof_end.png) repeat-x right center;
  background-size: contain;
}
.p-head__side.-right {
  transform: translateX(-1px);
  background: url(../img/bg_roof_end.png) repeat-x left center;
  background-size: contain;
}
@media screen and (max-width: 959px) {
  .p-head__side {
    display: none;
  }
}

.p-hero {
  position: relative;
  padding-bottom: 60px;
}
@media screen and (max-width: 959px) {
  .p-hero {
    padding-bottom: 39px;
  }
}
.p-hero__head {
  width: 29%;
  max-width: 580px;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-55%);
}
@media screen and (max-width: 959px) {
  .p-hero__head {
    width: 70%;
    transform: translateX(-50%) translateY(-30%);
  }
}
.p-hero__head-onair {
  margin: 0 auto;
  margin-top: 3.5%;
  width: 73%;
  transform: translateY(30px);
  opacity: 0;
}
.is-load .p-hero__head-onair {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.4s;
}
.p-hero__head-logo {
  transform-origin: bottom center;
}
.is-load .p-hero__head-logo {
  animation: logo 0.65s linear forwards 0.6s;
}
.p-hero__head-logo img {
  transform: scale(0.65);
  opacity: 0;
}
.is-load .p-hero__head-logo img {
  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);
  transition-delay: 0.3s;
}
.p-hero__content {
  position: relative;
}
.p-hero__deco {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 119%;
  overflow: hidden;
}
@media screen and (max-width: 959px) {
  .p-hero__deco {
    height: 127%;
  }
}
.p-hero__deco-item {
  position: absolute;
  transform: scale(0.8);
  opacity: 0;
}
.is-load .p-hero__deco-item {
  transform: scale(1);
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__deco-item:nth-child(1) {
  transition-delay: 0.08s;
}
.is-load .p-hero__deco-item:nth-child(2) {
  transition-delay: 0.18s;
}
.is-load .p-hero__deco-item:nth-child(3) {
  transition-delay: 0.28s;
}
.is-load .p-hero__deco-item:nth-child(4) {
  transition-delay: 0.38s;
}
.is-load .p-hero__deco-item:nth-child(5) {
  transition-delay: 0.48s;
}
.is-load .p-hero__deco-item:nth-child(6) {
  transition-delay: 0.58s;
}
.is-load .p-hero__deco-item:nth-child(7) {
  transition-delay: 0.68s;
}
.is-load .p-hero__deco-item:nth-child(8) {
  transition-delay: 0.78s;
}
.p-hero__deco-item.-d1 {
  top: 8.5%;
  left: 6.5%;
  width: 7.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d1 {
    top: 5.5%;
    left: -2.5%;
    width: 13.5%;
  }
}
.is-load .p-hero__deco-item.-d1 img {
  animation: shake 1.5s steps(1) infinite forwards;
}
.p-hero__deco-item.-d2 {
  top: 43%;
  left: -2%;
  width: 20%;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d2 {
    top: auto;
    bottom: 13%;
    left: -3%;
    width: 37%;
  }
}
.is-load .p-hero__deco-item.-d2 img {
  animation: shake 1.5s steps(1) infinite forwards reverse;
}
.p-hero__deco-item.-d3 {
  top: 24%;
  right: 6.5%;
  width: 7.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d3 {
    right: auto;
    top: 50%;
    left: 1%;
    width: 14.5%;
  }
}
.is-load .p-hero__deco-item.-d3 img {
  animation: fuyo 2s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-hero__deco-item.-d4 {
  bottom: 24%;
  right: -2%;
  width: 26%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d4 {
    bottom: auto;
    top: 38%;
    right: -26%;
    width: 48%;
  }
}
.is-load .p-hero__deco-item.-d4 img {
  animation: shake 1.5s steps(1) infinite forwards;
}
.p-hero__deco-item.-d5 {
  top: 52%;
  left: -3%;
  width: 14.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d5 {
    top: auto;
    bottom: 30%;
    left: -18%;
    width: 24.5%;
  }
}
.is-load .p-hero__deco-item.-d5 img {
  animation: fuyo 2.5s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-hero__deco-item.-d6 {
  bottom: 7.5%;
  right: 10%;
  width: 10%;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d6 {
    bottom: 9.5%;
    right: -6%;
    width: 20%;
  }
}
.is-load .p-hero__deco-item.-d6 img {
  animation: fuyo 2.5s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-hero__deco-item.-d7 {
  top: 4%;
  right: 10.6%;
  width: 17.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d7 {
    top: 5%;
    right: 5.6%;
    width: 32.5%;
  }
}
.is-load .p-hero__deco-item.-d7 img {
  animation: fuyo2 3s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-hero__deco-item.-d8 {
  bottom: 1.2%;
  right: 13%;
  width: 24%;
}
@media screen and (max-width: 959px) {
  .p-hero__deco-item.-d8 {
    bottom: 3.5%;
    right: 3%;
    width: 39%;
  }
}
.is-load .p-hero__deco-item.-d8 img {
  animation: fuyo2 2.5s cubic-bezier(0.37, 0, 0.63, 1) infinite forwards;
}
.p-hero__kv {
  margin: 0 auto;
  width: 71%;
  max-width: 1400px;
  padding-top: 7.5%;
}
@media screen and (max-width: 959px) {
  .p-hero__kv {
    padding-top: 30.5%;
    width: 93%;
  }
}
.p-hero__kv-inner {
  position: relative;
  padding: 3.5% 3.7%;
}
@media screen and (max-width: 959px) {
  .p-hero__kv-inner {
    padding: 5.8% 4.8%;
  }
}
.p-hero__kv-decotop {
  position: absolute;
  top: 0;
  right: 0;
  width: 21.2%;
  pointer-events: none;
}
@media screen and (max-width: 959px) {
  .p-hero__kv-decotop {
    width: 38.2%;
  }
}
.p-hero__kv-decobottom {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 18%;
}
@media screen and (max-width: 959px) {
  .p-hero__kv-decobottom {
    width: 34%;
  }
}
.p-hero__kv-box {
  position: relative;
}
.p-hero__kv-box::before {
  content: "";
  position: absolute;
  top: 1%;
  left: 1.5%;
  width: 100%;
  height: 100%;
  background: url(../img/main/deco/bg_kv.png) repeat 0 0;
  background-size: 9px;
}
@media screen and (max-width: 959px) {
  .p-hero__kv-box::before {
    top: 2%;
    left: 2.5%;
    background-size: 4px;
  }
}
.p-hero__kv-img {
  position: relative;
  overflow: hidden;
}
.p-hero__kv-img .p-in_kv {
  transform: scale(1.1);
}
.is-load .p-hero__kv-img .p-in_kv {
  transform: scale(1);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-hero__kv-img .p-in_catch {
  position: absolute;
  top: 0%;
  right: 0%;
  width: 100%;
  -webkit-clip-path: inset(0 0 100% 0);
  clip-path: inset(0 0 100% 0);
}
@media screen and (max-width: 959px) {
  .p-hero__kv-img .p-in_catch {
    width: 108%;
  }
}
.is-load .p-hero__kv-img .p-in_catch {
  -webkit-clip-path: inset(0% 0 0 0);
  clip-path: inset(0% 0 0 0);
  transition: -webkit-clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  transition: clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1), -webkit-clip-path 1.2s cubic-bezier(0.76, 0, 0.24, 1);
  transition-delay: 0.4s;
}
.p-hero__view {
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}
.p-hero__view-content {
  width: 100%;
  height: 100%;
}
.p-hero__view-scroll {
  position: absolute;
  right: 20px;
  width: 18px;
  bottom: 30px;
  transform: translateY(-20px);
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1), transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__view-scroll {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}
.is-hide .p-hero__view-scroll {
  opacity: 0;
  transition: opacity 0.45s cubic-bezier(0.76, 0, 0.24, 1);
}
@media screen and (max-width: 959px) {
  .p-hero__view-scroll {
    right: 8px;
    width: 16px;
    bottom: 10px;
  }
}
.p-hero__view-scroll-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hero__view-scroll-arrow .p-in_item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-hero__view-scroll-arrow .p-in_item:nth-child(1) {
  animation: scroll 1.5s steps(1) infinite forwards;
}
.p-hero__view-scroll-arrow .p-in_item:nth-child(2) {
  animation: scroll2 1.5s steps(1) infinite forwards;
}
.p-hero__view-scroll-arrow .p-in_item:nth-child(3) {
  animation: scroll3 1.5s steps(1) infinite forwards;
}
.p-hero__view-scroll-arrow .p-in_item:nth-child(4) {
  animation: scroll4 1.5s steps(1) infinite forwards;
}
.p-hero__view-scroll-arrow .p-in_item:nth-child(5) {
  animation: scroll5 1.5s steps(1) infinite forwards;
}

.p-illustration {
  position: fixed;
  bottom: 35px;
  z-index: 1;
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-foot .p-illustration {
  pointer-events: none;
  transform: scale(0.9);
  opacity: 0;
}
@media screen and (min-width: 960px) {
  .p-illustration {
    left: 1.5%;
    width: 11.5%;
    max-width: 180px;
  }
}
@media screen and (max-width: 959px) {
  .p-illustration {
    left: 2%;
    bottom: 10px;
    width: 31%;
  }
}
.p-illustration__btn {
  cursor: pointer;
}
@media (hover: hover) {
  .p-illustration__btn {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .p-illustration__btn:hover {
    transform: scale(0.97) rotate(3deg);
  }
}
.p-illustration__btn img {
  transform: scale(0.8);
  opacity: 0;
}
.is-load .p-illustration__btn img {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.65s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-movie {
  position: relative;
  margin-bottom: 111px;
}
@media screen and (max-width: 959px) {
  .p-movie {
    margin-bottom: 7px;
  }
}

.movie_swiper {
  display: block;
  position: relative;
  overflow: hidden;
  z-index: 0;
}
.is-noslide .movie_swiper .swiper-wrapper {
  justify-content: center;
}
.movie_swiper .swiper-slide {
  width: 41%;
  cursor: pointer;
}
.is-noslide .movie_swiper .swiper-slide + .swiper-slide {
  margin-left: 3%;
}
@media (hover: hover) {
  .movie_swiper .swiper-slide:hover .movie_swiper__play {
    transform: translate(-50%, -50%) scale(0.95);
  }
  .movie_swiper .swiper-slide:hover .movie_swiper__play-text {
    transform: rotate(360deg);
  }
  .movie_swiper .swiper-slide:hover .movie_swiper__thumb-img {
    transform: scale(1.03);
  }
}
.movie_swiper .swiper-slide::before {
  content: "";
  width: 100%;
  height: 20px;
  display: block;
  background-color: #ffcee8;
  margin-bottom: 10px;
}
@media screen and (max-width: 959px) {
  .movie_swiper .swiper-slide::before {
    margin-bottom: 6px;
    height: 10px;
  }
}
.movie_swiper__window {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.movie_swiper__window::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.movie_swiper__window::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg/bg_sparkle.png) repeat 0 0;
  background-size: 12px;
  pointer-events: none;
}
.movie_swiper__window.-green {
  background-color: #a0f1e0;
}
.movie_swiper__window.-green::after {
  background: url(../img/deco_window_1_2.png) no-repeat center center;
  background-size: cover;
}
.movie_swiper__window.-yellow {
  background-color: #fbee54;
}
.movie_swiper__window.-yellow::after {
  background: url(../img/deco_window_1_1.png) no-repeat center center;
  background-size: cover;
}
.movie_swiper__inner {
  padding: 0 10px;
  border-right: 1px solid rgba(0, 0, 0, 0.2);
  border-left: 1px solid rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 959px) {
  .movie_swiper__inner {
    padding: 0 4px;
  }
}
.movie_swiper__thumb {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  overflow: hidden;
}
.movie_swiper__thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg/bg_sparkle.png) repeat 0 0;
  background-size: 12px;
  pointer-events: none;
}
.movie_swiper__thumb-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.movie_swiper__thumb-img::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 206, 232, 0.3);
  pointer-events: none;
}
.movie_swiper__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  width: 22%;
  transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.movie_swiper__play-text {
  transition: transform 0.7s cubic-bezier(0.76, 0, 0.24, 1);
}
.movie_swiper__play-icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-cast .l-section__deco {
  top: 10%;
}
.p-cast__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  max-width: 700px;
}
@media screen and (min-width: 1600px) {
  .p-cast__list {
    max-width: 850px;
  }
}
.p-cast__list-item {
  width: 43%;
  max-width: 350px;
  text-align: center;
  display: flex;
  flex-direction: column;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-cast__list-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-section.is-active .p-cast__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.l-section.is-active .p-cast__list-item:nth-child(2) {
  transition-delay: 0.33s;
}
@media screen and (max-width: 959px) {
  .p-cast__list-item {
    width: 47%;
  }
}
.p-cast__list-label {
  border-radius: 100px;
  color: #fff;
  font-size: 17px;
  letter-spacing: 0.5px;
  font-weight: 500;
  padding: 3px 0 4px;
  margin-bottom: 25px;
}
@media screen and (max-width: 959px) {
  .p-cast__list-label {
    font-size: 10px;
    padding: 4px 0 4px;
    margin-bottom: 11px;
  }
}
.-orange .p-cast__list-label {
  background-color: #ff9810;
}
.-blue .p-cast__list-label {
  background-color: #329fc8;
}
.p-cast__list-cv {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 23px;
  transform: translateX(6%);
}
@media screen and (max-width: 959px) {
  .p-cast__list-cv {
    margin-bottom: 13px;
  }
}
.p-cast__list-cv-name {
  font-size: 27px;
  letter-spacing: 4px;
}
@media screen and (max-width: 959px) {
  .p-cast__list-cv-name {
    font-size: 14px;
  }
}
.p-cast__list-cv-comment {
  width: 30px;
  margin-left: 9px;
  flex-shrink: 0;
  cursor: pointer;
}
@media (hover: hover) {
  .p-cast__list-cv-comment {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .p-cast__list-cv-comment:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 959px) {
  .p-cast__list-cv-comment {
    margin-left: 7px;
    width: 19px;
  }
}
.p-cast__list-stand {
  margin: 0 auto 20px;
  width: 85%;
}
@media screen and (max-width: 959px) {
  .p-cast__list-stand {
    margin: 0 auto 15px;
    width: 100%;
  }
}
.p-cast__list-text {
  line-height: 1.4;
  text-align: left;
  border-radius: 10px;
  flex-grow: 1;
  letter-spacing: 0.5px;
  padding: 15px 19px 17px;
}
@media screen and (max-width: 959px) {
  .p-cast__list-text {
    font-size: 12px;
    padding: 12px 14px 12px;
  }
}
.-orange .p-cast__list-text {
  background-color: #ffe0b8;
}
.-blue .p-cast__list-text {
  background-color: #c2e2ef;
}

.p-staff__list {
  width: 95%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  transform: translateY(35px);
  opacity: 0;
}
.l-section.is-active .p-staff__list {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (min-width: 1600px) {
  .p-staff__list {
    width: 100%;
  }
}
@media screen and (max-width: 959px) {
  .p-staff__list {
    width: 100%;
    margin-top: -20px;
  }
}
.p-staff__list-label {
  background-color: #000;
  color: #fff;
  border-radius: 10px;
  padding: 2px 5px 4px;
  line-height: 1;
  margin: 0 auto;
  margin-bottom: 18px;
  max-width: 200px;
  width: 90%;
  font-size: 14px;
}
@media screen and (max-width: 959px) {
  .p-staff__list-label {
    margin-bottom: 10px;
    max-width: 148px;
    font-size: 10px;
    padding: 4px 0 4px;
  }
}
.p-staff__list-item {
  text-align: center;
  width: 33.33%;
  line-height: 1.5;
  padding: 0 10px;
  margin-bottom: 6.5%;
}
@media screen and (max-width: 959px) {
  .p-staff__list-item {
    padding: 0;
    width: 50%;
    margin-bottom: 9%;
  }
  .p-staff__list-item.-all {
    width: 100%;
  }
}
.p-staff__list-name {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  letter-spacing: 4px;
}
@media screen and (max-width: 959px) {
  .p-staff__list-name {
    font-size: 15px;
    letter-spacing: 1px;
  }
}
.p-staff__list-name .p-in_comment {
  flex-shrink: 0;
  width: 27px;
  cursor: pointer;
}
@media (hover: hover) {
  .p-staff__list-name .p-in_comment {
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .p-staff__list-name .p-in_comment:hover {
    transform: scale(0.95);
  }
}
@media screen and (max-width: 959px) {
  .p-staff__list-name .p-in_comment {
    width: 20px;
  }
}
.p-staff__list-sub {
  font-size: 13px;
  margin-top: 5px;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 959px) {
  .p-staff__list-sub {
    font-size: 9px;
    margin-top: 4px;
    letter-spacing: 0;
  }
}

.p-modal {
  max-width: 800px;
  padding-bottom: 30px;
  margin: 0 auto;
  width: 100%;
  min-height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .p-modal {
    padding-bottom: 105px;
  }
}
.p-modal__head {
  padding-top: 30px;
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
  margin-bottom: 75px;
  position: relative;
}
@media screen and (max-width: 959px) {
  .p-modal__head {
    width: 93%;
    padding-top: 105px;
    margin-bottom: 30px;
  }
}
.p-modal__head::before {
  content: "";
  width: 5px;
  height: 100vh;
  position: absolute;
  bottom: 60px;
  left: 4.5%;
  background-color: #cccccc;
}
@media screen and (max-width: 959px) {
  .p-modal__head::before {
    width: 4px;
    bottom: 53px;
    left: 8.5%;
  }
}
.p-modal__head::after {
  content: "";
  width: 5px;
  height: 100vh;
  position: absolute;
  bottom: 60px;
  right: 4.5%;
  background-color: #cccccc;
}
@media screen and (max-width: 959px) {
  .p-modal__head::after {
    width: 4px;
    bottom: 53px;
    right: 8.5%;
  }
}
.p-modal__head-ttl {
  background-color: #000;
  padding: 16px 20px 18px;
  border-radius: 100px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 959px) {
  .p-modal__head-ttl {
    padding: 10px 20px 11px;
    min-height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
.p-modal__head-ttl .p-in_text {
  color: #fff;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.5;
}
@media screen and (max-width: 959px) {
  .p-modal__head-ttl .p-in_text {
    letter-spacing: 2.5px;
    font-size: 13px;
    line-height: 1.4;
  }
}
@media screen and (max-width: 959px) {
  .p-modal__inner {
    margin: 0 auto;
    width: 85%;
  }
}
.p-modal__comment {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 959px) {
  .p-modal__comment {
    display: block;
  }
}
.p-modal__comment-thumb {
  flex-shrink: 0;
  width: 37.5%;
  margin-right: 5%;
}
@media screen and (max-width: 959px) {
  .p-modal__comment-thumb {
    margin: 0 auto;
    margin-bottom: 23px;
    width: 61%;
  }
}
.p-modal__comment-text {
  font-size: 17.5px;
  text-align: left;
  letter-spacing: 3.5px;
  line-height: 1.85;
}
@media screen and (max-width: 959px) {
  .p-modal__comment-text {
    line-height: 1.8;
    font-size: 12px;
    letter-spacing: 2px;
  }
}

.p-op {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  transform: translate3d(0, 0, 0);
  z-index: 2;
  display: flex;
  align-items: center;
}
.is-op-end .p-op {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1);
}
.p-op::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  opacity: 0;
  pointer-events: none;
}
.is-op .p-op::after {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.65, 0, 0.35, 1) 1s;
}
.p-op__chara {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 80%;
  max-width: 1500px;
}
@media screen and (max-width: 959px) {
  .p-op__chara {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.p-op__chara-item {
  width: 15%;
  transform: translateY(25%);
  opacity: 0;
}
@media screen and (max-width: 959px) {
  .p-op__chara-item {
    width: 27%;
    margin: 0 3%;
    margin-bottom: 6%;
  }
}
.is-op .p-op__chara-item {
  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);
}
.is-op .p-op__chara-item:nth-child(1) {
  transition-delay: 0s;
}
.is-op .p-op__chara-item:nth-child(2) {
  transition-delay: 0.15s;
}
.is-op .p-op__chara-item:nth-child(3) {
  transition-delay: 0.3s;
}
.is-op .p-op__chara-item:nth-child(4) {
  transition-delay: 0.45s;
}
.is-op .p-op__chara-item:nth-child(5) {
  transition-delay: 0.6s;
}