:root {
  --color-lightblue: #1ebcde;
  --color-red: #c7000a;
  --color-gray: #cecece;
  --color-white: #fff;
  --color-black: #000;
  --color-gray2: #414546;
  --color-pink: #efc1b4;
  --color-pink2: #e59f86;
}

:root {
  --in-sine: cubic-bezier(.47, 0, .745, .715);
  --out-sine: cubic-bezier(.39, .575, .565, 1);
  --in-out-sine: cubic-bezier(.445, .05, .55, .95);
  --in-quad: cubic-bezier(.55, .085, .68, .53);
  --out-quad: cubic-bezier(.25, .46, .45, .94);
  --in-out-quad: cubic-bezier(.455, .03, .515, .955);
  --in-cubic: cubic-bezier(.55, .055, .675, .19);
  --out-cubic: cubic-bezier(.215, .61, .355, 1);
  --in-out-cubic: cubic-bezier(.645, .045, .355, 1);
  --in-quart: cubic-bezier(.895, .03, .685, .22);
  --out-quart: cubic-bezier(.165, .84, .44, 1);
  --in-out-quart: cubic-bezier(.77, 0, .175, 1);
  --in-quint: cubic-bezier(.755, .05, .855, .06);
  --out-quint: cubic-bezier(.23, 1, .32, 1);
  --in-out-quint: cubic-bezier(.86, 0, .07, 1);
  --in-expo: cubic-bezier(.95, .05, .795, .035);
  --out-expo: cubic-bezier(.19, 1, .22, 1);
  --in-out-expo: cubic-bezier(1, 0, 0, 1);
  --in-circ: cubic-bezier(.6, .04, .98, .335);
  --out-circ: cubic-bezier(.075, .82, .165, 1);
  --in-out-circ: cubic-bezier(.785, .135, .15, .86);
  --in-back: cubic-bezier(.6, -.28, .735, .045);
  --out-back: cubic-bezier(.175, .885, .32, 1.275);
  --in-out-back: cubic-bezier(.68, -.55, .265, 1.55);
}

@keyframes loop_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes deco_loop {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(15%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes loading {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
  100% {
    opacity: 1;
  }
}
.p-chara__content {
  margin-top: 4%;
}
@media screen and (max-width: 767px) {
  .p-chara__content {
    margin-top: 10%;
  }
}
.p-chara__circle {
  width: 100%;
  padding-top: 43%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .p-chara__circle {
    position: absolute;
    top: 0;
    left: 0;
    padding-top: 76%;
  }
}
.p-chara__circle-main {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 43%;
  padding-top: 43%;
}
@media screen and (max-width: 767px) {
  .p-chara__circle-main {
    width: 76%;
    padding-top: 76%;
  }
}
.p-chara__circle-main-chara {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-pink);
  border-radius: 50%;
  overflow: hidden;
  transition: background 1s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-chara-change .p-chara__circle-main-chara {
  background-color: var(--color-white);
}
.p-chara__circle-main-chara.is-prev {
  transform: scale(0.28);
  right: 68%;
  top: -26%;
  transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
@media screen and (max-width: 767px) {
  .p-chara__circle-main-chara.is-prev {
    right: 56%;
    top: -37%;
  }
}
.p-chara__circle-main-chara.is-next {
  transform: scale(0.28);
  right: -68%;
  top: -40%;
  transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
@media screen and (max-width: 767px) {
  .p-chara__circle-main-chara.is-next {
    top: -45%;
    right: -53%;
  }
}
.p-chara__circle-main-chara .p-in_img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  height: 95%;
  opacity: 0;
}
.p-chara__circle-main-chara .p-in_img.is-current {
  opacity: 1;
}
.p-chara__circle-main-chara .p-in_img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 1;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.is-chara-change .p-chara__circle-main-chara .p-in_img img {
  transform: translateY(110%);
}
.p-chara__circle-sub {
  position: absolute;
  top: -40%;
  width: 100%;
  height: 100%;
  transform: scale(0.28);
  background-color: #fff;
  border-radius: 50%;
  overflow: hidden;
}
.no-slide .p-chara__circle-sub {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-chara__circle-sub {
    top: -45%;
  }
}
.p-chara__circle-sub.-left {
  transform: scale(0.28);
  right: 69%;
  top: -26%;
}
@media screen and (max-width: 767px) {
  .p-chara__circle-sub.-left {
    right: 56%;
    top: -37%;
  }
}
.p-chara__circle-sub.-left.is-prev {
  top: -40%;
  right: -68%;
}
@media screen and (max-width: 767px) {
  .p-chara__circle-sub.-left.is-prev {
    top: -45%;
    right: -53%;
  }
}
.p-chara__circle-sub.-left.is-next {
  right: 0;
  top: 0;
  transform: scale(1);
}
.p-chara__circle-sub.-right {
  right: -68%;
}
@media screen and (max-width: 767px) {
  .p-chara__circle-sub.-right {
    right: -53%;
  }
}
.p-chara__circle-sub.-right.is-prev {
  right: 69%;
  top: -26%;
}
@media screen and (max-width: 767px) {
  .p-chara__circle-sub.-right.is-prev {
    right: 56%;
    top: -37%;
  }
}
.p-chara__circle-sub.-right.is-next {
  right: 0;
  top: 0;
  transform: scale(1);
}
.p-chara__circle-sub.is-prev {
  transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.p-chara__circle-sub.is-next {
  transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
}
.p-chara__circle-sub .p-in_img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.p-chara__circle-sub .p-in_img.is-current {
  opacity: 1;
}
.p-chara__circle-sub .p-in_img[data-left-chara="2"] img {
  top: -20%;
}
.p-chara__circle-sub .p-in_img[data-left-chara="3"] img {
  top: -10%;
}
.p-chara__circle-sub .p-in_img[data-right-chara="2"] img {
  top: -20%;
}
.p-chara__circle-sub .p-in_img[data-right-chara="3"] img {
  top: -10%;
}
.p-chara__circle-sub .p-in_img img {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(0%);
  width: 200%;
  height: 175%;
  -o-object-fit: contain;
  object-fit: contain;
  transition: transform 0.6s cubic-bezier(0.76, 0, 0.24, 1);
}
.is-chara-change .p-chara__circle-sub .p-in_img img {
  transform: translateX(-50%) translateY(110%);
}
.p-chara__nav {
  margin: 0 auto 44px;
  width: 90%;
  max-width: 486px;
}
.no-slide .p-chara__nav {
  display: none;
}
@media screen and (max-width: 767px) {
  .p-chara__nav {
    margin: 0 auto 37px;
  }
}
.p-chara__nav-list {
  display: flex;
  flex-wrap: wrap;
}
.p-chara__nav-list-item {
  width: 14.6%;
  padding-top: 14.6%;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--color-white);
  box-shadow: 0 0 0 2px var(--color-gray);
  box-sizing: border-box;
  transform: translateY(30px);
  opacity: 0;
}
.l-section.is-active .p-chara__nav-list-item {
  opacity: 1;
  transform: translateY(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-section.is-active .p-chara__nav-list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(2) {
  transition-delay: 0.3s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(3) {
  transition-delay: 0.4s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(4) {
  transition-delay: 0.5s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(5) {
  transition-delay: 0.6s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(6) {
  transition-delay: 0.7s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(7) {
  transition-delay: 0.8s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(8) {
  transition-delay: 0.9s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(9) {
  transition-delay: 1s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(10) {
  transition-delay: 1.1s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(11) {
  transition-delay: 1.2s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(12) {
  transition-delay: 1.3s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(13) {
  transition-delay: 1.4s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(14) {
  transition-delay: 1.5s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(15) {
  transition-delay: 1.6s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(16) {
  transition-delay: 1.7s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(17) {
  transition-delay: 1.8s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(18) {
  transition-delay: 1.9s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(19) {
  transition-delay: 2s;
}
.l-section.is-active .p-chara__nav-list-item:nth-child(20) {
  transition-delay: 2.1s;
}
@media (hover: hover) {
  .p-chara__nav-list-item:hover img {
    opacity: 0.7;
  }
}
.is-chara-change .p-chara__nav-list-item {
  pointer-events: none;
}
.p-chara__nav-list-item.is-current {
  box-shadow: 0 0 0 2px var(--color-red);
  pointer-events: none;
}
.p-chara__nav-list-item + .p-chara__nav-list-item {
  margin-left: 2.4%;
}
.p-chara__nav-list-item img {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: none;
  pointer-events: none;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-chara__slider {
  position: relative;
  transform: scale(0.9);
  opacity: 0;
}
.l-section.is-active .p-chara__slider {
  opacity: 1;
  transform: scale(1);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.45s cubic-bezier(0.25, 1, 0.5, 1);
  transition-delay: 0.5s;
}
.p-chara__textarea {
  margin: 0 auto;
  width: 75%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .p-chara__textarea {
    position: relative;
    width: 100%;
  }
}

.chara_swiper {
  margin: 0 auto;
  width: 71%;
  height: 100%;
}
@media screen and (max-width: 767px) {
  .chara_swiper {
    width: 88%;
  }
}
@media screen and (max-width: 767px) {
  .chara_swiper .swiper-slide {
    padding-top: 86%;
  }
}
.is-chara-change .chara_swiper {
  pointer-events: none;
}
.chara_swiper__btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 3.5%;
  cursor: pointer;
}
.no-slide .chara_swiper__btn {
  display: none;
}
@media (hover: hover) {
  .chara_swiper__btn:hover img {
    transform: scale(0.9);
  }
}
@media screen and (max-width: 767px) {
  .chara_swiper__btn {
    top: 30vw;
    transform: translateY(0);
    width: 6.5%;
  }
}
.chara_swiper__btn.-prev {
  left: 0;
  transform: translateY(-50%) scaleX(-1);
}
@media screen and (max-width: 767px) {
  .chara_swiper__btn.-prev {
    transform: scaleX(-1);
  }
}
.chara_swiper__btn.-next {
  right: 0;
}
.chara_swiper__btn img {
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.chara_swiper__charadata {
  position: absolute;
  top: 47%;
  right: 0%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  padding-right: 7%;
  width: 22%;
}
@media screen and (max-width: 767px) {
  .chara_swiper__charadata {
    top: 18vw;
    transform: translateY(0);
    padding-right: 0;
    right: 10%;
    width: 15%;
  }
}
.chara_swiper__charadata-name {
  width: 50%;
  max-width: 48px;
  flex-shrink: 0;
  margin-left: 16px;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .chara_swiper__charadata-name {
    margin-left: 10px;
    width: 54%;
  }
}
.is-chara-change .chara_swiper__charadata-name {
  transform: translateY(30px);
  opacity: 0;
}
.chara_swiper__charadata-cv {
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-chara-change .chara_swiper__charadata-cv {
  transform: translateY(30px);
  opacity: 0;
}
.chara_swiper__charadata-cv-name {
  writing-mode: vertical-lr;
}
.chara_swiper__charadata-cv-cap {
  width: 100%;
  max-width: 28px;
  margin-bottom: 5px;
}
.chara_swiper__charadata-cv-name {
  font-size: min(28px, 2.9473684211vw);
  font-weight: 900;
  letter-spacing: 1px;
}
@media screen and (max-width: 767px) {
  .chara_swiper__charadata-cv-name {
    font-size: min(13px, 3.4666666667vw);
  }
}
.chara_swiper__movie {
  position: absolute;
  bottom: 0.5%;
  right: 12.9%;
  width: 22%;
  padding-top: 22%;
  overflow: hidden;
  z-index: 1;
  border-radius: 50%;
  cursor: pointer;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 767px) {
  .chara_swiper__movie {
    bottom: 0.3%;
    right: 0%;
    width: 34%;
    padding-top: 34%;
  }
}
.is-chara-change .chara_swiper__movie {
  transform: translateY(30px);
  opacity: 0;
}
@media (hover: hover) {
  .chara_swiper__movie:hover .chara_swiper__movie-thumb {
    transform: scale(1.05);
  }
}
.chara_swiper__movie-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chara_swiper__movie-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.chara_swiper__movie-thumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
.chara_swiper__movie-thumb img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.chara_swiper__movie-play {
  position: relative;
}
.chara_swiper__movie-play-arrow {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.chara_swiper__movie-play-base {
  animation: loop_rotate 5s linear infinite forwards;
}
.chara_swiper__face {
  position: absolute;
  width: 15.8%;
  top: 0;
  left: 16%;
}
@media screen and (max-width: 767px) {
  .chara_swiper__face {
    top: 32vw;
    left: 10%;
    width: 20.5%;
  }
}
.chara_swiper__face-item {
  width: 100%;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-chara-change .chara_swiper__face-item {
  transform: translateY(30px);
  opacity: 0;
}
.chara_swiper__face-item + .chara_swiper__face-item {
  margin-top: 9%;
}
.chara_swiper__prof {
  position: absolute;
  bottom: 13%;
  left: 0;
  min-height: min(107.75px, 11.3421052632vw);
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 1110px) {
  .chara_swiper__prof {
    bottom: 5%;
  }
}
@media screen and (max-width: 767px) {
  .chara_swiper__prof {
    bottom: 0;
    min-height: min(81.75px, 21.8vw);
    margin-top: 5%;
    padding-right: 37%;
    position: relative;
  }
}
.is-chara-change .chara_swiper__prof {
  transform: translateY(30px);
  opacity: 0;
}
.chara_swiper__prof-list-item {
  display: flex;
  align-items: center;
}
.chara_swiper__prof-list-item + .chara_swiper__prof-list-item {
  margin-top: 6px;
}
@media screen and (max-width: 767px) {
  .chara_swiper__prof-list-item + .chara_swiper__prof-list-item {
    margin-top: 3px;
  }
}
.chara_swiper__prof-list-label {
  background-color: var(--color-pink2);
  color: var(--color-white);
  font-weight: 700;
  border-radius: 5px;
  padding: 1px 6px;
  left: 1px;
  height: 100%;
  flex-shrink: 0;
  margin-right: 8px;
  font-size: min(16px, 1.6842105263vw);
}
@media screen and (max-width: 767px) {
  .chara_swiper__prof-list-label {
    font-size: 13px;
    margin-right: 4px;
  }
}
.chara_swiper__prof-list-text {
  line-height: 1.4;
  font-weight: 700;
  font-size: min(16px, 1.6842105263vw);
}
@media screen and (max-width: 767px) {
  .chara_swiper__prof-list-text {
    font-size: min(14px, 3.4666666667vw);
  }
}
.chara_swiper__prof-text {
  line-height: 1.7;
  font-weight: 700;
  font-size: min(15px, 1.5789473684vw);
  margin-top: 10px;
}
@media screen and (max-width: 767px) {
  .chara_swiper__prof-text {
    font-size: min(12px, 3.2vw);
  }
}