@keyframes rotate_loop {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes loop_x {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes scrollAnime {
  0% {
    transform: translateY(-100%);
  }
  40% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}
@keyframes kv_spin {
  0% {
    opacity: 0;
    transform: rotateY(360deg);
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    transform: rotateY(0deg);
  }
}
@media screen and (max-width: 767px) {
  .l-section__ttl h2 {
    letter-spacing: 4px;
  }
}

.p-chara {
  padding: 43px 0 162px;
}
@media screen and (max-width: 767px) {
  .p-chara {
    padding: 33px 0 96px;
  }
}
.p-chara__ttl {
  margin-bottom: 69px;
}
@media screen and (max-width: 767px) {
  .p-chara__ttl {
    margin-bottom: 43px;
  }
}

@media screen and (max-width: 767px) {
  .p-chara_other__list {
    padding: 0 5%;
  }
}
.p-chara_other__list-item {
  display: flex;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .p-chara_other__list-item {
    display: block;
  }
}
.p-chara_other__list-item + .p-chara_other__list-item {
  margin-top: 51px;
}
@media screen and (max-width: 767px) {
  .p-chara_other__list-item + .p-chara_other__list-item {
    margin-top: 56px;
  }
}
.p-chara_other__list-thumb {
  flex-shrink: 0;
  width: 60%;
  margin-right: 4.7%;
  transform: translateX(35px);
  opacity: 0;
  overflow: hidden;
}
.is-active .p-chara_other__list-thumb {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
@media screen and (max-width: 767px) {
  .p-chara_other__list-thumb {
    margin-bottom: 16px;
    width: 100%;
    margin-right: 0;
  }
}
.p-chara_other__list-thumb img {
  transform: scale(1.1);
}
.is-active .p-chara_other__list-thumb img {
  transform: scale(1);
  transition: transform 5s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-chara_other__list-content {
  position: relative;
  margin-top: -1.3%;
  transform: translateX(-35px);
  opacity: 0;
}
.is-active .p-chara_other__list-content {
  opacity: 1;
  transform: translateX(0);
  transition: transform 1.2s cubic-bezier(0.25, 1, 0.5, 1), opacity 1s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.2s;
}
.p-chara_other__list-head {
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  .p-chara_other__list-head {
    margin-bottom: 14px;
  }
}
.p-chara_other__list-head-chara {
  line-height: 0.8;
  font-size: 65px;
}
@media screen and (max-width: 767px) {
  .p-chara_other__list-head-chara {
    font-size: 48px;
  }
}
.p-chara_other__list-head-cv {
  background-color: #b20000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 24px;
  font-size: 16px;
  font-weight: 700;
  padding: 4px 20px 6px;
}
@media screen and (max-width: 767px) {
  .p-chara_other__list-head-cv {
    margin-top: 11px;
    font-size: 12px;
    padding: 3px 19px 4px;
  }
}
.p-chara_other__list-prof {
  font-size: 14px;
  line-height: 2.15;
}
@media screen and (max-width: 767px) {
  .p-chara_other__list-prof {
    font-size: 13px;
    line-height: 1.8;
  }
}