@charset "UTF-8";
.p-in {
  min-height: var(--svh);
  display: block;
  position: relative;
  background-color: var(--color-gray-white);
  padding: 16rem 0 18rem;
  z-index: 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-in {
    padding: 10rem 0 12rem;
  }
}
.p-in::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/common/bg_noise.png") repeat left top/10rem auto;
}
.p-in__line {
  width: 100%;
  height: var(--svh);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
}
.is-load .p-in__line {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, transform 2s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
}
.p-in__line-bar {
  width: 100%;
  height: 6.4rem;
  display: block;
  position: absolute;
}
@media screen and (max-width: 960px) {
  .p-in__line-bar {
    width: 120%;
    height: 3.2rem;
  }
}
.p-in__line-bar.--line1 {
  top: 18rem;
  left: 0;
  transform: rotate(-15deg);
  transform-origin: left bottom;
}
@media screen and (max-width: 960px) {
  .p-in__line-bar.--line1 {
    top: 18%;
  }
}
.p-in__line-bar::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/common/bar_copy-yellow.png") repeat-x 0 50%/311.5rem auto;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-in__line-bar::before {
    background-size: 155.75rem auto;
  }
}
.p-in__line-bar.--line3::before {
  animation-direction: reverse;
}

.is-load .p-in__line-bar::before {
  width: 100%;
  transition: width 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
  animation: text_marquee 60s linear infinite reverse;
}
@media screen and (max-width: 960px) {
  .is-load .p-in__line-bar::before {
    animation-duration: 240s;
  }
}
.p-in__container {
  width: 86%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-in__header {
  display: block;
  position: relative;
}
.p-in__circle {
  width: 80rem;
  height: 80rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 15%;
  z-index: -1;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1) translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-in__circle {
    width: 54rem;
    height: 54rem;
    top: 25rem;
    left: 50%;
  }
}
.is-load .p-in__circle {
  opacity: 1;
  transform: scale3d(1, 1, 1) translate(-50%, -50%);
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1), transform 2s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-in__circle::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/common/bg_circle-txt.png") no-repeat center/contain;
}
.is-load .p-in__circle::before {
  animation: rotate 240s linear infinite;
}
.p-in__title {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-in__title {
    display: flex;
    justify-content: flex-start;
  }
}
.p-in__title-text {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  position: relative;
}
.p-in__title-text small {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
}
@media screen and (min-width: 961px) {
  .p-in__title-text + .p-in__title-text {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 960px) {
  .p-in__title-text + .p-in__title-text {
    margin-top: -0.2rem;
  }
}
.p-in__title-word {
  display: block;
  position: relative;
  font-size: 10rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.2;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-gray-white);
  text-shadow: 0.4rem 0.4rem 0 var(--color-black);
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
@media screen and (max-width: 960px) {
  .p-in__title-word {
    font-size: 4.6rem;
    letter-spacing: 0.05rem;
  }
}
.p-in__title-word.--small {
  font-size: 5rem;
  text-shadow: 0.2rem 0.2rem 0 var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-in__title-word.--small {
    font-size: 2.5rem;
  }
}
.is-load .p-in__title-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(11) {
  transition-delay: 1s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(12) {
  transition-delay: 1.1s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(13) {
  transition-delay: 1.2s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(14) {
  transition-delay: 1.3s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(15) {
  transition-delay: 1.4s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(16) {
  transition-delay: 1.5s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(17) {
  transition-delay: 1.6s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(18) {
  transition-delay: 1.7s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(19) {
  transition-delay: 1.8s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(20) {
  transition-delay: 1.9s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(21) {
  transition-delay: 2s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(22) {
  transition-delay: 2.1s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(23) {
  transition-delay: 2.2s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(24) {
  transition-delay: 2.3s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(25) {
  transition-delay: 2.4s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(26) {
  transition-delay: 2.5s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(27) {
  transition-delay: 2.6s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(28) {
  transition-delay: 2.7s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(29) {
  transition-delay: 2.8s;
}
.is-load .p-in__title-text:nth-child(1) .p-in__title-word:nth-child(30) {
  transition-delay: 2.9s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(1) {
  transition-delay: 0.4s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(2) {
  transition-delay: 0.5s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(3) {
  transition-delay: 0.6s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(4) {
  transition-delay: 0.7s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(5) {
  transition-delay: 0.8s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(6) {
  transition-delay: 0.9s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(7) {
  transition-delay: 1s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(8) {
  transition-delay: 1.1s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(9) {
  transition-delay: 1.2s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(10) {
  transition-delay: 1.3s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(11) {
  transition-delay: 1.4s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(12) {
  transition-delay: 1.5s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(13) {
  transition-delay: 1.6s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(14) {
  transition-delay: 1.7s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(15) {
  transition-delay: 1.8s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(16) {
  transition-delay: 1.9s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(17) {
  transition-delay: 2s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(18) {
  transition-delay: 2.1s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(19) {
  transition-delay: 2.2s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(20) {
  transition-delay: 2.3s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(21) {
  transition-delay: 2.4s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(22) {
  transition-delay: 2.5s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(23) {
  transition-delay: 2.6s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(24) {
  transition-delay: 2.7s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(25) {
  transition-delay: 2.8s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(26) {
  transition-delay: 2.9s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(27) {
  transition-delay: 3s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(28) {
  transition-delay: 3.1s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(29) {
  transition-delay: 3.2s;
}
.is-load .p-in__title-text:nth-child(2) .p-in__title-word:nth-child(30) {
  transition-delay: 3.3s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(1) {
  transition-delay: 0.8s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(2) {
  transition-delay: 0.9s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(3) {
  transition-delay: 1s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(4) {
  transition-delay: 1.1s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(5) {
  transition-delay: 1.2s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(6) {
  transition-delay: 1.3s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(7) {
  transition-delay: 1.4s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(8) {
  transition-delay: 1.5s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(9) {
  transition-delay: 1.6s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(10) {
  transition-delay: 1.7s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(11) {
  transition-delay: 1.8s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(12) {
  transition-delay: 1.9s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(13) {
  transition-delay: 2s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(14) {
  transition-delay: 2.1s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(15) {
  transition-delay: 2.2s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(16) {
  transition-delay: 2.3s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(17) {
  transition-delay: 2.4s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(18) {
  transition-delay: 2.5s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(19) {
  transition-delay: 2.6s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(20) {
  transition-delay: 2.7s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(21) {
  transition-delay: 2.8s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(22) {
  transition-delay: 2.9s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(23) {
  transition-delay: 3s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(24) {
  transition-delay: 3.1s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(25) {
  transition-delay: 3.2s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(26) {
  transition-delay: 3.3s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(27) {
  transition-delay: 3.4s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(28) {
  transition-delay: 3.5s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(29) {
  transition-delay: 3.6s;
}
.is-load .p-in__title-text:nth-child(3) .p-in__title-word:nth-child(30) {
  transition-delay: 3.7s;
}
.p-in__title-word::before {
  content: attr(data-title);
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-text-stroke: 0.3rem var(--color-black);
  z-index: -1;
}
.p-in__inner {
  display: block;
  position: relative;
}

.p-category {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-category {
    width: 114%;
    left: -7%;
    overflow-x: scroll;
    padding: 1rem 7%;
  }
}
.p-category__list {
  display: flex;
  justify-content: flex-start;
  gap: 1.6rem;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-category__list {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 960px) {
  .p-category__list {
    gap: 1rem;
  }
}
.p-category__list-item {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-category__list-item {
    flex-shrink: 0;
  }
}
.p-category__link {
  display: block;
  position: relative;
  padding: 1.2rem 2.85rem;
  font-size: 1.5rem;
  letter-spacing: 0.05rem;
  line-height: 1;
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-category__link {
    padding: 0.9rem 2rem;
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
  }
}
.p-category__link.is-current {
  color: var(--color-white) !important;
  background-color: var(--color-black) !important;
}
@media (hover: hover) and (pointer: fine) {
  .p-category__link {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1), background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-category__link:hover {
    color: var(--color-black);
    background-color: var(--color-yellow);
  }
}
.p-category__link::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-black);
  border-radius: 20rem;
}

.p-pagination {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-pagination {
    overflow: hidden;
    padding: 3rem 0;
  }
}
.p-pagination__inner {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-pagination__inner {
    padding: 0 9rem;
  }
  .p-pagination__inner::before {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    left: -2rem;
    transform: translate(-100%, 0);
    background: url("../img/common/btn/sideline.png") repeat-x right center/auto 1rem;
    pointer-events: none;
  }
}
@media screen and (min-width: 961px) and (max-width: 960px) {
  .p-pagination__inner::before {
    background-size: auto 0.55rem;
  }
}
@media screen and (min-width: 961px) {
  .p-pagination__inner::after {
    content: "";
    width: 100vw;
    height: 100%;
    display: block;
    position: absolute;
    top: 0;
    right: -2rem;
    transform: translate(100%, 0);
    background: url("../img/common/btn/sideline.png") repeat-x left center/auto 1rem;
    pointer-events: none;
  }
}
@media screen and (min-width: 961px) and (max-width: 960px) {
  .p-pagination__inner::after {
    background-size: auto 0.55rem;
  }
}
@media screen and (max-width: 960px) {
  .p-pagination__nav {
    display: flex;
    justify-content: center;
    position: relative;
    margin-bottom: 2.4rem;
  }
}
.p-pagination__nav-btn {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-pagination__nav-btn {
    position: absolute;
    top: 50%;
    transform: translate(0, -50%);
  }
  .p-pagination__nav-btn.--prev {
    left: 0;
  }
  .p-pagination__nav-btn.--next {
    right: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-pagination__nav-btn + .p-pagination__nav-btn {
    margin-left: 4rem;
  }
}
.p-pagination__nav-link {
  width: 6.2rem;
  height: 4.5rem;
  display: block;
  position: relative;
  border-radius: 50%;
  font-size: 0;
  background: var(--color-yellow);
}
.is-disable .p-pagination__nav-link {
  background: var(--color-gray-light);
}
@media screen and (max-width: 960px) {
  .p-pagination__nav-link {
    width: 6.2rem;
    height: 4.5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-pagination__nav-link {
    transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-pagination__nav-btn:hover .p-pagination__nav-link {
    background-color: var(--color-black);
  }
}
.p-pagination__nav-link::before {
  content: "";
  width: 0.8rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 55%;
  transform: translate(-50%, 0);
  background: url("../img/common/btn/btn_nextprev.svg") no-repeat center/contain;
}
.p-pagination__nav-btn.--prev .p-pagination__nav-link::before {
  left: 35%;
  transform: scale(-1, 1) translate(-50%, 0);
}
.p-pagination__nav-btn.is-disable .p-pagination__nav-link::before {
  filter: invert(100%);
}
@media (hover: hover) and (pointer: fine) {
  .p-pagination__nav-link::before {
    transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-pagination__nav-btn:hover .p-pagination__nav-link::before {
    filter: invert(100%);
  }
}
.p-pagination__list {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.p-pagination__list-item {
  display: block;
  position: relative;
}
.p-pagination__list-item + .p-pagination__list-item {
  margin-left: 0.15rem;
}
@media screen and (max-width: 960px) {
  .p-pagination__list-item + .p-pagination__list-item {
    margin-left: 0.2rem;
  }
}
.p-pagination__link {
  width: 3rem;
  height: 3rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  border-radius: 50%;
  color: var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-pagination__link {
    font-size: 2.4rem;
  }
}
.is-current .p-pagination__link {
  color: var(--color-black) !important;
  background-color: transparent !important;
}
.p-pagination__link[href] {
  color: var(--color-gray);
}
@media (hover: hover) and (pointer: fine) {
  .p-pagination__link {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1), background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-pagination__link[href]:hover {
    color: var(--color-black);
    background-color: var(--color-yellow);
  }
}

.p-about {
  display: block;
  position: relative;
  padding: 4.2rem 0 0;
}
.p-about__outline {
  display: block;
  position: relative;
}
.p-about__fandom {
  display: block;
  position: relative;
  margin-top: 15.7rem;
}
@media screen and (max-width: 960px) {
  .p-about__fandom {
    margin-top: 22rem;
  }
}
.p-about__fandom:first-child {
  margin-top: 0;
}
.p-about__company {
  display: block;
  position: relative;
  margin-top: 15.7rem;
}
@media screen and (max-width: 960px) {
  .p-about__company {
    margin-top: 12rem;
  }
}
.p-about__company:first-child {
  margin-top: 0;
}

.p-about_outline {
  display: block;
  position: relative;
}
.p-about_outline__lead {
  display: block;
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.85;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_outline__lead {
    font-size: 1.8rem;
    line-height: 1.7;
  }
}
.is-load .p-about_outline__lead {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-about_outline__catch {
  display: block;
  position: relative;
  margin-top: 1rem;
  font-size: 4.6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_outline__catch {
    font-size: 4rem;
  }
}
.is-load .p-about_outline__catch {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.p-about_outline__intro {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 9rem 0 0 21%;
}
@media screen and (max-width: 960px) {
  .p-about_outline__intro {
    margin: 7.6rem 0 0;
  }
}
.p-about_outline__intro-par {
  display: block;
  position: relative;
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_outline__intro-par {
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.is-load .p-about_outline__intro-par {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-about_outline__intro-par:nth-child(1) {
  transition-delay: 0.5s;
}
.is-load .p-about_outline__intro-par:nth-child(2) {
  transition-delay: 0.6s;
}
.is-load .p-about_outline__intro-par:nth-child(3) {
  transition-delay: 0.7s;
}
.is-load .p-about_outline__intro-par:nth-child(4) {
  transition-delay: 0.8s;
}
.is-load .p-about_outline__intro-par:nth-child(5) {
  transition-delay: 0.9s;
}
.is-load .p-about_outline__intro-par:nth-child(6) {
  transition-delay: 1s;
}
.is-load .p-about_outline__intro-par:nth-child(7) {
  transition-delay: 1.1s;
}
.is-load .p-about_outline__intro-par:nth-child(8) {
  transition-delay: 1.2s;
}
.is-load .p-about_outline__intro-par:nth-child(9) {
  transition-delay: 1.3s;
}
.is-load .p-about_outline__intro-par:nth-child(10) {
  transition-delay: 1.4s;
}
.p-about_outline__intro-brand {
  width: 14.8rem;
  display: inline-block;
  position: relative;
  margin: -1.5rem 1.5rem 0;
  top: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-about_outline__intro-brand {
    width: 9rem;
    top: 1.2rem;
    margin: -1.5rem 1.5rem 0;
  }
}
.p-about_outline__description {
  display: block;
  position: relative;
  margin: 12rem 0 0;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_outline__description {
    margin-top: 8rem;
  }
}
.is-load .p-about_outline__description {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.6s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
}
.p-about_outline__description-cap {
  display: block;
  position: relative;
  margin-bottom: 2.8rem;
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.85;
}
@media screen and (max-width: 960px) {
  .p-about_outline__description-cap {
    margin-bottom: 2.5rem;
    font-size: 1.8rem;
    line-height: 1.8;
  }
}
.p-about_outline__description-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.9;
  letter-spacing: 0;
  font-weight: 700;
  text-align: left;
  vertical-align: top;
}
@media screen and (max-width: 960px) {
  .p-about_outline__description-text {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}

.p-about_fandom {
  display: block;
  position: relative;
}
.p-about_fandom__bar {
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, 0) scale3d(1.1, 1.1, 1.1);
}
.is-active .p-about_fandom__bar {
  opacity: 1;
  transform: translate(-50%, 0) scale3d(1, 1, 1);
  transition: opacity 1.3s cubic-bezier(0.5, 1, 0.89, 1), transform 1.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-about_fandom__bar-img {
  position: absolute;
}
.p-about_fandom__bar-img.--img1 {
  width: 25rem;
  top: -15.5rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .p-about_fandom__bar-img.--img1 {
    width: 13rem;
    top: -17.8rem;
  }
}
.p-about_fandom__bar-img.--img2 {
  width: 12rem;
  top: -30rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-about_fandom__bar-img.--img2 {
    width: 9rem;
    top: -21rem;
  }
}
.p-about_fandom__bar-img.--img3 {
  width: 10.5rem;
  bottom: 28rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .p-about_fandom__bar-img.--img3 {
    width: 12rem;
    bottom: -10rem;
  }
}
.p-about_fandom__bar-img.--img4 {
  width: 12rem;
  bottom: -24rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-about_fandom__bar-img.--img4 {
    width: 9.8rem;
    bottom: -14rem;
  }
}
.p-about_fandom__header {
  display: block;
  position: relative;
  margin-bottom: 10.6rem;
}
@media screen and (max-width: 960px) {
  .p-about_fandom__header {
    margin-bottom: 6.8rem;
  }
}
.p-about_fandom__title {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-about_fandom__title {
    display: flex;
    justify-content: flex-start;
  }
}
.p-about_fandom__title-text {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-about_fandom__title-text + .p-about_fandom__title-text {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 960px) {
  .p-about_fandom__title-text + .p-about_fandom__title-text {
    margin-top: -0.2rem;
  }
}
.p-about_fandom__title-word {
  display: block;
  position: relative;
  font-size: 5rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_fandom__title-word {
    font-size: 4rem;
  }
}
.is-active .p-about_fandom__title-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(2) {
  transition-delay: 0.05s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(3) {
  transition-delay: 0.1s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(4) {
  transition-delay: 0.15s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(5) {
  transition-delay: 0.2s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(6) {
  transition-delay: 0.25s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(7) {
  transition-delay: 0.3s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(8) {
  transition-delay: 0.35s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(9) {
  transition-delay: 0.4s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(10) {
  transition-delay: 0.45s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(11) {
  transition-delay: 0.5s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(12) {
  transition-delay: 0.55s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(13) {
  transition-delay: 0.6s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(14) {
  transition-delay: 0.65s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(15) {
  transition-delay: 0.7s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(16) {
  transition-delay: 0.75s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(17) {
  transition-delay: 0.8s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(18) {
  transition-delay: 0.85s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(19) {
  transition-delay: 0.9s;
}
.is-active .p-about_fandom__title-text:nth-child(1) .p-about_fandom__title-word:nth-child(20) {
  transition-delay: 0.95s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(1) {
  transition-delay: 0.3s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(2) {
  transition-delay: 0.35s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(3) {
  transition-delay: 0.4s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(4) {
  transition-delay: 0.45s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(5) {
  transition-delay: 0.5s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(6) {
  transition-delay: 0.55s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(8) {
  transition-delay: 0.65s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(9) {
  transition-delay: 0.7s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(10) {
  transition-delay: 0.75s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(11) {
  transition-delay: 0.8s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(12) {
  transition-delay: 0.85s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(13) {
  transition-delay: 0.9s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(14) {
  transition-delay: 0.95s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(15) {
  transition-delay: 1s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(16) {
  transition-delay: 1.05s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(17) {
  transition-delay: 1.1s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(18) {
  transition-delay: 1.15s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(19) {
  transition-delay: 1.2s;
}
.is-active .p-about_fandom__title-text:nth-child(2) .p-about_fandom__title-word:nth-child(20) {
  transition-delay: 1.25s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(1) {
  transition-delay: 0.6s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(2) {
  transition-delay: 0.65s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(3) {
  transition-delay: 0.7s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(4) {
  transition-delay: 0.75s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(5) {
  transition-delay: 0.8s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(6) {
  transition-delay: 0.85s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(7) {
  transition-delay: 0.9s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(8) {
  transition-delay: 0.95s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(9) {
  transition-delay: 1s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(10) {
  transition-delay: 1.05s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(11) {
  transition-delay: 1.1s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(12) {
  transition-delay: 1.15s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(13) {
  transition-delay: 1.2s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(14) {
  transition-delay: 1.25s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(15) {
  transition-delay: 1.3s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(16) {
  transition-delay: 1.35s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(17) {
  transition-delay: 1.4s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(18) {
  transition-delay: 1.45s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(19) {
  transition-delay: 1.5s;
}
.is-active .p-about_fandom__title-text:nth-child(3) .p-about_fandom__title-word:nth-child(20) {
  transition-delay: 1.55s;
}
.p-about_fandom__lead {
  display: block;
  position: relative;
  margin-top: 3.8rem;
  font-size: 1.6rem;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_fandom__lead {
    margin-top: 3rem;
    font-size: 1.4rem;
    line-height: 1.7;
  }
}
.is-active .p-about_fandom__lead {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-about_fandom__inner {
  display: block;
  position: relative;
}
.p-about_fandom__main {
  width: 82.8%;
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_fandom__main {
    width: 100%;
  }
}
.is-active .p-about_fandom__main {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}

.p-about_company {
  display: block;
  position: relative;
}
.p-about_company__header {
  display: block;
  position: relative;
  margin-bottom: 6.8rem;
}
@media screen and (max-width: 960px) {
  .p-about_company__header {
    margin-bottom: 4.8rem;
  }
}
.p-about_company__title {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-about_company__title {
    display: flex;
    justify-content: flex-start;
  }
}
.p-about_company__title-text {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-about_company__title-text + .p-about_company__title-text {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 960px) {
  .p-about_company__title-text + .p-about_company__title-text {
    margin-top: -0.2rem;
  }
}
.p-about_company__title-word {
  display: block;
  position: relative;
  font-size: 5rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about_company__title-word {
    font-size: 4rem;
  }
}
.is-active .p-about_company__title-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(2) {
  transition-delay: 0.05s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(3) {
  transition-delay: 0.1s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(4) {
  transition-delay: 0.15s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(5) {
  transition-delay: 0.2s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(6) {
  transition-delay: 0.25s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(7) {
  transition-delay: 0.3s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(8) {
  transition-delay: 0.35s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(9) {
  transition-delay: 0.4s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(10) {
  transition-delay: 0.45s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(11) {
  transition-delay: 0.5s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(12) {
  transition-delay: 0.55s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(13) {
  transition-delay: 0.6s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(14) {
  transition-delay: 0.65s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(15) {
  transition-delay: 0.7s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(16) {
  transition-delay: 0.75s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(17) {
  transition-delay: 0.8s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(18) {
  transition-delay: 0.85s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(19) {
  transition-delay: 0.9s;
}
.is-active .p-about_company__title-text:nth-child(1) .p-about_company__title-word:nth-child(20) {
  transition-delay: 0.95s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(1) {
  transition-delay: 0.3s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(2) {
  transition-delay: 0.35s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(3) {
  transition-delay: 0.4s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(4) {
  transition-delay: 0.45s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(5) {
  transition-delay: 0.5s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(6) {
  transition-delay: 0.55s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(8) {
  transition-delay: 0.65s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(9) {
  transition-delay: 0.7s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(10) {
  transition-delay: 0.75s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(11) {
  transition-delay: 0.8s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(12) {
  transition-delay: 0.85s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(13) {
  transition-delay: 0.9s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(14) {
  transition-delay: 0.95s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(15) {
  transition-delay: 1s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(16) {
  transition-delay: 1.05s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(17) {
  transition-delay: 1.1s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(18) {
  transition-delay: 1.15s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(19) {
  transition-delay: 1.2s;
}
.is-active .p-about_company__title-text:nth-child(2) .p-about_company__title-word:nth-child(20) {
  transition-delay: 1.25s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(1) {
  transition-delay: 0.6s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(2) {
  transition-delay: 0.65s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(3) {
  transition-delay: 0.7s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(4) {
  transition-delay: 0.75s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(5) {
  transition-delay: 0.8s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(6) {
  transition-delay: 0.85s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(7) {
  transition-delay: 0.9s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(8) {
  transition-delay: 0.95s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(9) {
  transition-delay: 1s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(10) {
  transition-delay: 1.05s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(11) {
  transition-delay: 1.1s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(12) {
  transition-delay: 1.15s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(13) {
  transition-delay: 1.2s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(14) {
  transition-delay: 1.25s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(15) {
  transition-delay: 1.3s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(16) {
  transition-delay: 1.35s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(17) {
  transition-delay: 1.4s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(18) {
  transition-delay: 1.45s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(19) {
  transition-delay: 1.5s;
}
.is-active .p-about_company__title-text:nth-child(3) .p-about_company__title-word:nth-child(20) {
  transition-delay: 1.55s;
}
.p-about_company__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
.is-active .p-about_company__inner {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-about_company__data {
  display: block;
  position: relative;
  padding: 1.5rem 0;
}
@media screen and (min-width: 961px) {
  .p-about_company__data {
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .p-about_company__data {
    padding: 2.4rem 0;
  }
}
.p-about_company__data::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
  border-bottom: 0.1rem solid var(--color-black);
  opacity: 0.2;
}
.p-about_company__data-cap {
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 2;
  font-weight: 700;
}
@media screen and (min-width: 961px) {
  .p-about_company__data-cap {
    min-width: 27rem;
    margin-right: 4.5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-about_company__data-cap {
    margin-bottom: 0.4rem;
    font-size: 1.8rem;
    line-height: 1;
  }
}
.p-about_company__data-text {
  flex: 1 1 0;
  min-width: 0;
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (max-width: 960px) {
  .p-about_company__data-text {
    font-size: 1.8rem;
  }
}

.p-service {
  display: block;
  position: relative;
  padding: 3.4rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-service {
    padding: 4rem 0 0;
  }
}
.p-service__lead {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.7;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service__lead {
    font-size: 1.5rem;
    line-height: 1.65;
  }
}
.is-load .p-service__lead {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-service__content {
  display: block;
  position: relative;
  margin-top: 15.5rem;
}
@media screen and (max-width: 960px) {
  .p-service__content {
    margin-top: 6.8rem;
  }
}
.p-service__content:first-child {
  margin-top: 0;
}

.p-service_content {
  display: block;
  position: relative;
}
.p-service_content + .p-service_content {
  margin-top: 16rem;
}
@media screen and (max-width: 960px) {
  .p-service_content + .p-service_content {
    margin-top: 12rem;
  }
}
.p-service_content__header {
  display: block;
  position: relative;
  margin-bottom: 7.7rem;
}
@media screen and (max-width: 960px) {
  .p-service_content__header {
    margin-bottom: 6.7rem;
  }
}
.--content2 .p-service_content__header {
  margin-bottom: 13rem;
}
@media screen and (max-width: 960px) {
  .--content2 .p-service_content__header {
    margin-bottom: 6rem;
  }
}
.p-service_content__title {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  position: relative;
  text-align: center;
}
.p-service_content__title-word {
  display: block;
  position: relative;
  font-size: 5rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 900;
  line-height: 1;
  letter-spacing: 0;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service_content__title-word {
    font-size: 2.6rem;
  }
}
.p-service_content__title-word.--small {
  top: -0.2em;
  font-size: 3rem;
}
@media screen and (max-width: 960px) {
  .p-service_content__title-word.--small {
    top: -0.1em;
    font-size: 1.6rem;
  }
}
.is-load .--content1 .p-service_content__title-word, .is-active .p-service_content__title-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .--content1 .p-service_content__title-word:nth-child(1), .is-active .p-service_content__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(2), .is-active .p-service_content__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(3), .is-active .p-service_content__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(4), .is-active .p-service_content__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(5), .is-active .p-service_content__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(6), .is-active .p-service_content__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(7), .is-active .p-service_content__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(8), .is-active .p-service_content__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(9), .is-active .p-service_content__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(10), .is-active .p-service_content__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(11), .is-active .p-service_content__title-word:nth-child(11) {
  transition-delay: 1s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(12), .is-active .p-service_content__title-word:nth-child(12) {
  transition-delay: 1.1s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(13), .is-active .p-service_content__title-word:nth-child(13) {
  transition-delay: 1.2s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(14), .is-active .p-service_content__title-word:nth-child(14) {
  transition-delay: 1.3s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(15), .is-active .p-service_content__title-word:nth-child(15) {
  transition-delay: 1.4s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(16), .is-active .p-service_content__title-word:nth-child(16) {
  transition-delay: 1.5s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(17), .is-active .p-service_content__title-word:nth-child(17) {
  transition-delay: 1.6s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(18), .is-active .p-service_content__title-word:nth-child(18) {
  transition-delay: 1.7s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(19), .is-active .p-service_content__title-word:nth-child(19) {
  transition-delay: 1.8s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(20), .is-active .p-service_content__title-word:nth-child(20) {
  transition-delay: 1.9s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(21), .is-active .p-service_content__title-word:nth-child(21) {
  transition-delay: 2s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(22), .is-active .p-service_content__title-word:nth-child(22) {
  transition-delay: 2.1s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(23), .is-active .p-service_content__title-word:nth-child(23) {
  transition-delay: 2.2s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(24), .is-active .p-service_content__title-word:nth-child(24) {
  transition-delay: 2.3s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(25), .is-active .p-service_content__title-word:nth-child(25) {
  transition-delay: 2.4s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(26), .is-active .p-service_content__title-word:nth-child(26) {
  transition-delay: 2.5s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(27), .is-active .p-service_content__title-word:nth-child(27) {
  transition-delay: 2.6s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(28), .is-active .p-service_content__title-word:nth-child(28) {
  transition-delay: 2.7s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(29), .is-active .p-service_content__title-word:nth-child(29) {
  transition-delay: 2.8s;
}
.is-load .--content1 .p-service_content__title-word:nth-child(30), .is-active .p-service_content__title-word:nth-child(30) {
  transition-delay: 2.9s;
}
.p-service_content__lead {
  display: block;
  position: relative;
  margin-top: 3.8rem;
  font-size: 1.6rem;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service_content__lead {
    margin-top: 2.4rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.is-load .--content1 .p-service_content__lead, .is-active .p-service_content__lead {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-service_content__sticker {
  display: block;
  position: absolute;
  z-index: -1;
}
.p-service_content__sticker.--sticker1 {
  width: 57rem;
  top: -6rem;
  right: -3.2rem;
}
@media screen and (max-width: 960px) {
  .p-service_content__sticker.--sticker1 {
    width: 42rem;
    top: -2.6rem;
    right: -7.2rem;
  }
}
.p-service_content__sticker.--sticker2 {
  width: 42rem;
  top: -4.5rem;
  right: -1rem;
}
@media screen and (max-width: 960px) {
  .p-service_content__sticker.--sticker2 {
    width: 45rem;
    top: -2.8rem;
    right: -4.6rem;
  }
}
.p-service_content__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-service_content__sticker-img:first-child {
  position: relative;
}
.is-load .--content1 .p-service_content__sticker-img, .is-active .p-service_content__sticker-img {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(1), .is-active .p-service_content__sticker-img:nth-child(1) {
  transition-delay: 0.6s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(2), .is-active .p-service_content__sticker-img:nth-child(2) {
  transition-delay: 0.75s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(3), .is-active .p-service_content__sticker-img:nth-child(3) {
  transition-delay: 0.9s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(4), .is-active .p-service_content__sticker-img:nth-child(4) {
  transition-delay: 1.05s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(5), .is-active .p-service_content__sticker-img:nth-child(5) {
  transition-delay: 1.2s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(6), .is-active .p-service_content__sticker-img:nth-child(6) {
  transition-delay: 1.35s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(7), .is-active .p-service_content__sticker-img:nth-child(7) {
  transition-delay: 1.5s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(8), .is-active .p-service_content__sticker-img:nth-child(8) {
  transition-delay: 1.65s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(9), .is-active .p-service_content__sticker-img:nth-child(9) {
  transition-delay: 1.8s;
}
.is-load .--content1 .p-service_content__sticker-img:nth-child(10), .is-active .p-service_content__sticker-img:nth-child(10) {
  transition-delay: 1.95s;
}
.p-service_content__inner {
  display: block;
  position: relative;
}
.p-service_content__main {
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: translate3d(0, 10rem, 0);
}
.--content1 .p-service_content__main {
  width: 80.5%;
}
@media screen and (max-width: 960px) {
  .--content1 .p-service_content__main {
    width: 110%;
    left: -5%;
  }
}
.--content2 .p-service_content__main {
  width: 74%;
}
@media screen and (max-width: 960px) {
  .--content2 .p-service_content__main {
    width: 100%;
  }
}
.is-active .p-service_content__main, .is-load .--content1 .p-service_content__main {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.p-service_content__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 7rem auto 0;
  opacity: 0;
  transform: translate3d(0, 10rem, 0);
}
.is-active .p-service_content__more, .is-load .--content1 .p-service_content__more {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.5s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.5s;
}
.p-service_content__btn {
  display: block;
  position: relative;
  margin: 0 auto;
  padding-right: 8rem;
}
@media screen and (max-width: 960px) {
  .p-service_content__btn {
    padding-right: 7rem;
  }
}
.p-service_content__btn-text {
  display: block;
  position: relative;
  font-size: 2.4rem;
  font-weight: 700;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .p-service_content__btn-text {
    font-size: 1.8rem;
    letter-spacing: 0;
  }
}
.p-service_content__btn-arrow {
  width: 7rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-service_content__btn-arrow {
    width: 5rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-service_content__btn-arrow {
    transition: transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-service_content__btn:hover .p-service_content__btn-arrow {
    transform: translate(1rem, -50%);
  }
}

.p-project {
  display: block;
  position: relative;
  padding: 6.2rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-project {
    padding: 3.6rem 0 0;
  }
}
.p-project__cap {
  display: block;
  position: relative;
  font-size: 3rem;
  font-weight: 700;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.3;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-project__cap {
    font-size: 2rem;
  }
}
.is-load .p-project__cap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-project__category {
  display: block;
  position: relative;
  margin-top: 2.5rem;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-project__category {
    margin-top: 1.8rem;
  }
}
.is-load .p-project__category {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.p-project__archive {
  display: block;
  position: relative;
  margin-top: 8.2rem;
}
@media screen and (max-width: 960px) {
  .p-project__archive {
    margin-top: 5.2rem;
  }
}

.p-project_archive {
  display: block;
  position: relative;
}
.p-project_archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  gap: 9rem 5rem;
}
@media screen and (max-width: 960px) {
  .p-project_archive__list {
    gap: 4rem 2rem;
  }
}
.p-project_archive__list-item {
  width: calc(25% - 3.75rem);
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-project_archive__list-item {
    width: calc(50% - 1rem);
  }
}
[data-page="1"] .p-project_archive__list-item:nth-child(-n+4) {
  width: calc(50% - 5rem);
}
@media screen and (max-width: 960px) {
  [data-page="1"] .p-project_archive__list-item:nth-child(-n+4) {
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  [data-page="1"] .p-project_archive__list-item:nth-child(-n+4):nth-child(odd) {
    margin-right: 5rem;
  }
}
.p-project_archive__list-item:nth-child(1) {
  order: 1;
}
.p-project_archive__list-item:nth-child(2) {
  order: 2;
}
.p-project_archive__list-item:nth-child(3) {
  order: 3;
}
.p-project_archive__list-item:nth-child(4) {
  order: 4;
}
.p-project_archive__list-item:nth-child(5) {
  order: 5;
}
.p-project_archive__list-item:nth-child(6) {
  order: 6;
}
.p-project_archive__list-item:nth-child(7) {
  order: 7;
}
.p-project_archive__list-item:nth-child(8) {
  order: 8;
}
.p-project_archive__list-item:nth-child(9) {
  order: 9;
}
.p-project_archive__list-item:nth-child(10) {
  order: 10;
}
.p-project_archive__list-item:nth-child(11) {
  order: 11;
}
.p-project_archive__list-item:nth-child(12) {
  order: 12;
}
.p-project_archive__list-item:nth-child(13) {
  order: 13;
}
.p-project_archive__list-item:nth-child(14) {
  order: 14;
}
.p-project_archive__list-item:nth-child(15) {
  order: 15;
}
.p-project_archive__list-item:nth-child(16) {
  order: 16;
}
.p-project_archive__list-item:nth-child(17) {
  order: 17;
}
.p-project_archive__list-item:nth-child(18) {
  order: 18;
}
.p-project_archive__list-item:nth-child(19) {
  order: 19;
}
.p-project_archive__list-item:nth-child(20) {
  order: 20;
}
.p-project_archive__list-item:not(.--line) {
  opacity: 0;
  transform: translate3d(0, 15rem, 0);
}
.is-load .p-project_archive__list-item:not(.--line) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(1) {
  transition-delay: 0.2s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(2) {
  transition-delay: 0.25s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(3) {
  transition-delay: 0.3s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(4) {
  transition-delay: 0.35s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(5) {
  transition-delay: 0.4s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(6) {
  transition-delay: 0.45s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(7) {
  transition-delay: 0.5s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(8) {
  transition-delay: 0.55s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(9) {
  transition-delay: 0.6s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(10) {
  transition-delay: 0.65s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(11) {
  transition-delay: 0.7s;
}
.is-load .p-project_archive__list-item:not(.--line):nth-child(12) {
  transition-delay: 0.75s;
}
.p-project_archive__list-item.--line {
  width: 100%;
  display: none;
  position: relative;
  order: 4;
  margin: 7rem 0 10rem;
}
@media screen and (max-width: 960px) {
  .p-project_archive__list-item.--line {
    margin: 0;
  }
}
[data-page="1"] .p-project_archive__list-item.--line {
  display: block;
}
.p-project_archive__line {
  width: 100vw;
  display: block;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}
.p-project_archive__line-marquee {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 28%;
  left: 0;
  transform: rotate(3.5deg);
  z-index: 1;
}
.p-project_archive__line-marquee::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/common/bar_copy-outline.png") repeat-x 0 50%/311.5rem auto;
}
@media screen and (max-width: 960px) {
  .p-project_archive__line-marquee::before {
    background: url("../img/common/bar_copy-outline.png") repeat-x 0 50%/155.75rem auto;
  }
}
.is-load .p-project_archive__line-marquee::before {
  animation: text_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-project_archive__line-marquee::before {
    animation-duration: 240s;
  }
}
.p-project_archive__line-in {
  width: 96%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-project_archive__line-in {
    width: 120%;
    left: -10%;
  }
}
.p-project_archive__line-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-project_archive__line-img:first-child {
  position: relative;
}
.p-project_archive__line-img.is-active {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-project_archive__pagination {
  display: block;
  position: relative;
  margin-top: 8.5rem;
}

.p-project_data {
  display: block;
  position: relative;
}
.p-project_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 2.5rem;
  padding: 0.5rem;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-project_data__thumb {
    margin-bottom: 1rem;
  }
}
.p-project_data__thumb-img {
  padding-top: 75%;
  display: block;
  position: relative;
  background: url("../img/common/thumb_project_bg.jpg") no-repeat center/cover;
}
.p-project_data__thumb-img img {
  width: 100% !important;
  height: 100% !important;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-project_data__date {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-project_data__date {
    padding-left: 1rem;
    font-size: 1rem;
  }
}
.p-project_data__date::before {
  content: "";
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 55%;
  left: 0;
  border-bottom: 0.1rem solid var(--color-black);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-project_data__date::before {
    width: 0.8rem;
  }
}
.p-project_data__title {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 960px) {
  .p-project_data__title {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-project_data:hover .p-project_data__title {
    text-decoration: underline;
  }
}
.p-project_data__description {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 960px) {
  .p-project_data__description {
    font-size: 1.1rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.p-project_data__category {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
}
.p-project_data__category-text {
  display: block;
  position: relative;
  padding: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-project_data__category-text {
    padding: 0.4rem;
    font-size: 1rem;
  }
}
.p-project_data__category-text::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-gray);
}

.p-project_single {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
.is-load .p-project_single {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-project_single__inner {
  display: block;
  position: relative;
}
.p-project_single__thumb {
  display: block;
  position: relative;
  margin-bottom: 4.2rem;
}
.p-project_single__thumb img {
  width: 100%;
}
.p-project_single__date {
  display: block;
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-project_single__date {
    padding-left: 1rem;
    font-size: 1rem;
  }
}
.p-project_single__date::before {
  content: "";
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 55%;
  left: 0;
  border-bottom: 0.1rem solid var(--color-black);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-project_single__date::before {
    width: 0.8rem;
  }
}
.p-project_single__title {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-project_single__title {
    margin-bottom: 0.6rem;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
.p-project_single__category {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-project_single__category {
    margin-top: 1rem;
  }
}
.p-project_single__category-text {
  display: block;
  position: relative;
  padding: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-project_single__category-text {
    padding: 0.4rem;
    font-size: 1rem;
  }
}
.p-project_single__category-text::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-gray);
}
.p-project_single__description {
  display: block;
  position: relative;
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-project_single__description {
    font-size: 1.3rem;
  }
}
.p-project_single__description a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-project_single__description a:hover {
    text-decoration: none;
  }
}
.p-project_single__gallery {
  display: block;
  position: relative;
  margin-top: 8.6rem;
}
@media screen and (max-width: 960px) {
  .p-project_single__gallery {
    margin-top: 4.6rem;
  }
}
.p-project_single__gallery-item {
  display: block;
  position: relative;
}
.p-project_single__gallery-item + .p-project_single__gallery-item {
  margin-top: 10rem;
}
@media screen and (max-width: 960px) {
  .p-project_single__gallery-item + .p-project_single__gallery-item {
    margin-top: 2rem;
  }
}
.p-project_single__gallery-movie {
  width: 100%;
  padding-top: 56.25%;
  display: block;
  position: relative;
}
.p-project_single__gallery-movie iframe {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
}
.p-project_single__gallery-img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100%;
  position: relative;
  margin: 0 auto;
}
.p-project_single__credit {
  width: 100%;
  position: relative;
  margin: 11rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-project_single__credit {
    margin-top: 6.4rem;
  }
}
.p-project_single__credit::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--color-white);
}
.p-project_single__footer {
  width: 100%;
  display: block;
  position: relative;
  margin: 8.8rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-project_single__footer {
    margin-top: 6.7rem;
  }
}
.p-project_single__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-project_single__back::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -2rem;
  transform: translate(-100%, 0);
  background: url("../img/common/btn/sideline.png") repeat-x right center/auto 1rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-project_single__back::before {
    background-size: auto 1rem;
  }
}
.p-project_single__back::after {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -2rem;
  transform: translate(100%, 0);
  background: url("../img/common/btn/sideline.png") repeat-x left center/auto 1rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-project_single__back::after {
    background-size: auto 1rem;
  }
}

.p-project_credit {
  display: block;
  position: relative;
  padding: 9rem 0;
}
@media screen and (min-width: 961px) {
  .p-project_credit {
    display: flex;
    justify-content: flex-start;
  }
}
@media screen and (max-width: 960px) {
  .p-project_credit {
    padding: 5.2rem 0;
  }
}
.p-project_credit__cap {
  display: block;
  position: relative;
  font-size: 5rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1;
}
@media screen and (min-width: 961px) {
  .p-project_credit__cap {
    min-width: 25rem;
    margin-right: 5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-project_credit__cap {
    margin-bottom: 4rem;
    font-size: 2.5rem;
  }
}
.p-project_credit__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem 5.5rem;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-project_credit__list {
    flex: 1 1 0;
    min-width: 0;
  }
}
@media screen and (max-width: 960px) {
  .p-project_credit__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 2rem 3rem;
  }
}
.p-project_credit__data {
  display: block;
  position: relative;
}
.p-project_credit__data-cap {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 1.3rem;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-project_credit__data-cap {
    font-size: 1.1rem;
  }
}
.p-project_credit__data-text {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-project_credit__data-text {
    font-size: 1.4rem;
  }
}

.p-talent {
  display: block;
  position: relative;
  padding: 6.2rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-talent {
    padding: 3.6rem 0 0;
  }
}
.p-talent__sticker {
  display: block;
  position: absolute;
  width: 50rem;
  top: -13.6rem;
  right: -21rem;
}
@media screen and (max-width: 960px) {
  .p-talent__sticker {
    display: none;
  }
}
.p-talent__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-talent__sticker-img:first-child {
  position: relative;
}
.p-talent__sticker-img.is-active {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-talent__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6rem 5rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-talent__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem 1.2rem;
  }
}
.p-talent__list-item {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 5rem, 0);
}
.is-load .p-talent__list-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-talent__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.is-load .p-talent__list-item:nth-child(2) {
  transition-delay: 0.3s;
}
.is-load .p-talent__list-item:nth-child(3) {
  transition-delay: 0.4s;
}
.is-load .p-talent__list-item:nth-child(4) {
  transition-delay: 0.5s;
}
.p-talent__action {
  display: block;
  position: relative;
  margin-top: 14.8rem;
  padding: 9.5rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-talent__action {
    margin-top: 4rem;
    padding: 4.5rem 0 0;
  }
}
.p-talent__action::before {
  content: "";
  width: 100vw;
  height: calc(100% + 34rem);
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background-color: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-talent__action::before {
    height: calc(100% + 24rem);
  }
}

.p-talent_data {
  display: block;
  position: relative;
}
.p-talent_data__no {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  font-size: 1.5rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 700;
  letter-spacing: 0;
}
@media screen and (max-width: 960px) {
  .p-talent_data__no {
    margin-bottom: 0.2rem;
    font-size: 1.1rem;
  }
}
.p-talent_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-talent_data__thumb {
    margin-bottom: 0.7rem;
  }
}
.p-talent_data__title {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-talent_data__title {
    margin-bottom: 0.2rem;
    font-size: 1.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-talent_data:hover .p-talent_data__title {
    text-decoration: underline;
  }
}
.p-talent_data__info {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-talent_data__info {
    font-size: 1.1rem;
    letter-spacing: 0;
  }
}

.p-talent_single {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
.is-load .p-talent_single {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-talent_single__bar {
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  opacity: 0;
  transform: translate(-50%, 0) scale3d(1.1, 1.1, 1.1);
}
@media screen and (max-width: 960px) {
  .p-talent_single__bar {
    display: none;
  }
}
.is-load .p-talent_single__bar {
  opacity: 1;
  transform: translate(-50%, 0) scale3d(1, 1, 1);
  transition: opacity 1.3s cubic-bezier(0.5, 1, 0.89, 1), transform 1.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-talent_single__bar-img {
  position: absolute;
}
.p-talent_single__bar-img.--img1 {
  width: 19.5rem;
  top: -27rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-talent_single__bar-img.--img1 {
    width: 13rem;
    top: -17.8rem;
  }
}
.p-talent_single__inner {
  display: block;
  position: relative;
}
.p-talent_single__footer {
  width: 100%;
  display: block;
  position: relative;
  margin: 8.8rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-talent_single__footer {
    margin-top: 6.7rem;
  }
}
.p-talent_single__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-talent_single__back::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -2rem;
  transform: translate(-100%, 0);
  background: url("../img/common/btn/sideline.png") repeat-x right center/auto 1rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-talent_single__back::before {
    background-size: auto 1rem;
  }
}
.p-talent_single__back::after {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -2rem;
  transform: translate(100%, 0);
  background: url("../img/common/btn/sideline.png") repeat-x left center/auto 1rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-talent_single__back::after {
    background-size: auto 1rem;
  }
}

.p-talent_outline {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-talent_outline {
    display: flex;
    justify-content: flex-start;
  }
}
.p-talent_outline__header {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-talent_outline__header {
    width: 45rem;
    margin-right: 12rem;
  }
}
@media screen and (max-width: 960px) {
  .p-talent_outline__header {
    margin-bottom: 2.4rem;
  }
}
.p-talent_outline__inner {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-talent_outline__inner {
    flex: 1 1 0;
    min-width: 0;
    padding-top: 0.5rem;
  }
}
.p-talent_outline__title {
  display: block;
  position: relative;
  font-size: 4rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-talent_outline__title {
    font-size: 3.6rem;
  }
}
.p-talent_outline__info {
  display: block;
  position: relative;
  margin-top: 0.5rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-talent_outline__info {
    margin-top: 0.9rem;
    font-size: 1.3rem;
  }
}
.p-talent_outline__description {
  display: block;
  position: relative;
  margin-top: 4rem;
  font-size: 1.6rem;
  line-height: 1.6;
}
@media screen and (max-width: 960px) {
  .p-talent_outline__description {
    margin-top: 2.8rem;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.p-talent_outline__description a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-talent_outline__description a:hover {
    text-decoration: none;
  }
}
.p-talent_outline__sns {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  position: relative;
  gap: 2rem;
  margin-top: 4.8rem;
}
@media screen and (max-width: 960px) {
  .p-talent_outline__sns {
    gap: 2.1rem;
    margin-top: 4rem;
  }
}
.p-talent_outline__sns-item {
  min-width: 0;
  display: block;
  position: relative;
  z-index: 0;
}
.p-talent_outline__sns-img {
  width: 2rem;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-talent_outline__sns-img {
    width: 2.2rem;
  }
}
.p-talent_outline__sns-img::before {
  content: "";
  width: 4rem;
  height: 4rem;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--color-yellow);
  z-index: -1;
  border-radius: 50%;
  opacity: 0;
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
@media (hover: hover) and (pointer: fine) {
  .p-talent_outline__sns-img:hover::before {
    opacity: 1;
  }
}

.p-talent_action {
  display: block;
  position: relative;
}
.p-talent_action__header {
  display: block;
  position: relative;
  margin-bottom: 4.6rem;
}
@media screen and (max-width: 960px) {
  .p-talent_action__header {
    margin-bottom: 4.2rem;
  }
}
.p-talent_action__title {
  display: flex;
  justify-content: center;
  position: relative;
}
.p-talent_action__title-word {
  display: block;
  position: relative;
  font-size: 5rem;
  line-height: 1;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  text-align: center;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
@media screen and (max-width: 960px) {
  .p-talent_action__title-word {
    font-size: 2.6rem;
    letter-spacing: 0.03rem;
  }
}
.is-load .p-talent_action__title-word {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-talent_action__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-load .p-talent_action__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-load .p-talent_action__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-load .p-talent_action__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-load .p-talent_action__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-load .p-talent_action__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-load .p-talent_action__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-load .p-talent_action__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-load .p-talent_action__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-load .p-talent_action__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-talent_action__inner {
  display: block;
  position: relative;
}
.p-talent_action__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  position: relative;
  gap: 6rem 4.8rem;
}
@media screen and (max-width: 960px) {
  .p-talent_action__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4rem 2.5rem;
  }
}
.p-talent_action__list-item {
  min-width: 0;
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 5rem, 0);
}
.is-load .p-talent_action__list-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 1.1s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 1.1s;
}
.is-load .p-talent_action__list-item:nth-child(1) {
  transition-delay: 0s;
}
.is-load .p-talent_action__list-item:nth-child(2) {
  transition-delay: 0.1s;
}
.is-load .p-talent_action__list-item:nth-child(3) {
  transition-delay: 0.2s;
}
.is-load .p-talent_action__list-item:nth-child(4) {
  transition-delay: 0.3s;
}
.is-load .p-talent_action__list-item:nth-child(5) {
  transition-delay: 0.4s;
}
.is-load .p-talent_action__list-item:nth-child(6) {
  transition-delay: 0.5s;
}
.is-load .p-talent_action__list-item:nth-child(7) {
  transition-delay: 0.6s;
}
.is-load .p-talent_action__list-item:nth-child(8) {
  transition-delay: 0.7s;
}
.is-load .p-talent_action__list-item:nth-child(9) {
  transition-delay: 0.8s;
}
.is-load .p-talent_action__list-item:nth-child(10) {
  transition-delay: 0.9s;
}

.p-talent_action_data {
  display: block;
  position: relative;
}
.p-talent_action_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 960px) {
  .p-talent_action_data__thumb {
    margin-bottom: 1rem;
  }
}
.p-talent_action_data__thumb-img {
  display: block;
  position: relative;
}
.p-talent_action_data__title {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-talent_action_data__title {
    font-size: 1.6rem;
  }
}
.p-talent_action_data__description {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .p-talent_action_data__description {
    font-size: 1.2rem;
    line-height: 1.85;
  }
}
.p-talent_action_data a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-talent_action_data a:hover {
    text-decoration: none;
  }
}

.p-creator {
  display: block;
  position: relative;
  padding: 6.4rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-creator {
    padding: 2.5rem 0 0;
  }
}
.p-creator__times {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
@media screen and (min-width: 961px) {
  .p-creator__times {
    position: absolute;
    right: -5rem;
    top: -6rem;
  }
}
.is-load .p-creator__times {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.p-creator__btn {
  display: block;
  position: relative;
  margin: 0 auto;
  padding-right: 8rem;
}
@media screen and (max-width: 960px) {
  .p-creator__btn {
    padding-right: 5rem;
  }
}
.p-creator__btn-text {
  display: block;
  position: relative;
  font-size: 3.1rem;
  font-weight: 700;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
@media screen and (max-width: 960px) {
  .p-creator__btn-text {
    font-size: 1.7rem;
    letter-spacing: 0;
  }
}
.p-creator__btn-arrow {
  width: 7rem;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-creator__btn-arrow {
    width: 4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-creator__btn-arrow {
    transition: transform 0.2s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-creator__btn:hover .p-creator__btn-arrow {
    transform: translate(1rem, -50%);
  }
}
.p-creator__content {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-creator__content {
    margin-top: 3rem;
  }
}
.p-creator__content:first-child {
  margin-top: 0;
}

.p-creator_content {
  display: block;
  position: relative;
}
.p-creator_content__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5rem 5rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-creator_content__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 2.5rem;
  }
}
.p-creator_content__list-item {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 5rem, 0);
}
.is-load .p-creator_content__list-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 2.1s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 2.1s;
}
.is-load .p-creator_content__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.is-load .p-creator_content__list-item:nth-child(2) {
  transition-delay: 0.23s;
}
.is-load .p-creator_content__list-item:nth-child(3) {
  transition-delay: 0.26s;
}
.is-load .p-creator_content__list-item:nth-child(4) {
  transition-delay: 0.29s;
}
.is-load .p-creator_content__list-item:nth-child(5) {
  transition-delay: 0.32s;
}
.is-load .p-creator_content__list-item:nth-child(6) {
  transition-delay: 0.35s;
}
.is-load .p-creator_content__list-item:nth-child(7) {
  transition-delay: 0.38s;
}
.is-load .p-creator_content__list-item:nth-child(8) {
  transition-delay: 0.41s;
}
.is-load .p-creator_content__list-item:nth-child(9) {
  transition-delay: 0.44s;
}
.is-load .p-creator_content__list-item:nth-child(10) {
  transition-delay: 0.47s;
}
.is-load .p-creator_content__list-item:nth-child(11) {
  transition-delay: 0.5s;
}
.is-load .p-creator_content__list-item:nth-child(12) {
  transition-delay: 0.53s;
}
.is-load .p-creator_content__list-item:nth-child(13) {
  transition-delay: 0.56s;
}
.is-load .p-creator_content__list-item:nth-child(14) {
  transition-delay: 0.59s;
}
.is-load .p-creator_content__list-item:nth-child(15) {
  transition-delay: 0.62s;
}
.is-load .p-creator_content__list-item:nth-child(16) {
  transition-delay: 0.65s;
}
.is-load .p-creator_content__list-item:nth-child(17) {
  transition-delay: 0.68s;
}
.is-load .p-creator_content__list-item:nth-child(18) {
  transition-delay: 0.71s;
}
.is-load .p-creator_content__list-item:nth-child(19) {
  transition-delay: 0.74s;
}
.is-load .p-creator_content__list-item:nth-child(20) {
  transition-delay: 0.77s;
}

.p-creator_data {
  display: block;
  position: relative;
}
.p-creator_data__thumb {
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
  margin-bottom: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-creator_data__thumb {
    margin-bottom: 1rem;
  }
}
.p-creator_data__thumb-img {
  display: block;
  position: relative;
}
.p-creator_data__thumb-img img {
  width: 100%;
}
.p-creator_data__title {
  display: block;
  position: relative;
  font-size: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-creator_data__title {
    font-size: 1.4rem;
  }
}
.p-creator_data__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.3rem 1rem;
  margin-top: 1rem;
  font-size: 1.3rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-weight: 600;
}
@media screen and (max-width: 960px) {
  .p-creator_data__category {
    padding: 0.26rem 0.6rem;
    font-size: 1rem;
  }
}
.p-creator_data__category::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-black);
}
.p-creator_data__info {
  display: block;
  position: relative;
  margin-top: 1.2rem;
  font-size: 1.3rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-creator_data__info {
    margin-top: 1.3rem;
    font-size: 1.1rem;
  }
}

.p-news {
  display: block;
  position: relative;
  padding: 6.2rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-news {
    padding: 3.6rem 0 0;
  }
}
.p-news__category {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
.is-load .p-news__category {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.p-news__archive {
  display: block;
  position: relative;
  margin-top: 8.2rem;
}
@media screen and (max-width: 960px) {
  .p-news__archive {
    margin-top: 2.2rem;
  }
}
.p-news__single {
  display: block;
  position: relative;
}
.p-news__latest {
  display: block;
  position: relative;
  margin-top: 11rem;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-news__latest {
    margin-top: 4rem;
  }
}
.is-load .p-news__latest {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}

.p-news_archive {
  display: block;
  position: relative;
}
.p-news_archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  gap: 9rem 5rem;
}
@media screen and (max-width: 960px) {
  .p-news_archive__list {
    gap: 3rem 2rem;
  }
}
.p-news_archive__list-item {
  width: calc(25% - 3.75rem);
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 10rem, 0);
}
@media screen and (max-width: 960px) {
  .p-news_archive__list-item {
    width: calc(50% - 1rem);
  }
}
[data-page="1"] .p-news_archive__list-item:nth-child(-n+4) {
  width: calc(50% - 5rem);
}
@media screen and (max-width: 960px) {
  [data-page="1"] .p-news_archive__list-item:nth-child(-n+4) {
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  [data-page="1"] .p-news_archive__list-item:nth-child(-n+4):nth-child(odd) {
    margin-right: 5rem;
  }
}
.p-news_archive__list-item:nth-child(1) {
  order: 1;
}
.p-news_archive__list-item:nth-child(2) {
  order: 2;
}
.p-news_archive__list-item:nth-child(3) {
  order: 3;
}
.p-news_archive__list-item:nth-child(4) {
  order: 4;
}
.p-news_archive__list-item:nth-child(5) {
  order: 5;
}
.p-news_archive__list-item:nth-child(6) {
  order: 6;
}
.p-news_archive__list-item:nth-child(7) {
  order: 7;
}
.p-news_archive__list-item:nth-child(8) {
  order: 8;
}
.p-news_archive__list-item:nth-child(9) {
  order: 9;
}
.p-news_archive__list-item:nth-child(10) {
  order: 10;
}
.p-news_archive__list-item:nth-child(11) {
  order: 11;
}
.p-news_archive__list-item:nth-child(12) {
  order: 12;
}
.p-news_archive__list-item:nth-child(13) {
  order: 13;
}
.p-news_archive__list-item:nth-child(14) {
  order: 14;
}
.p-news_archive__list-item:nth-child(15) {
  order: 15;
}
.p-news_archive__list-item:nth-child(16) {
  order: 16;
}
.p-news_archive__list-item:nth-child(17) {
  order: 17;
}
.p-news_archive__list-item:nth-child(18) {
  order: 18;
}
.p-news_archive__list-item:nth-child(19) {
  order: 19;
}
.p-news_archive__list-item:nth-child(20) {
  order: 20;
}
.is-load .p-news_archive__list-item {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-news_archive__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.is-load .p-news_archive__list-item:nth-child(2) {
  transition-delay: 0.25s;
}
.is-load .p-news_archive__list-item:nth-child(3) {
  transition-delay: 0.3s;
}
.is-load .p-news_archive__list-item:nth-child(4) {
  transition-delay: 0.35s;
}
.is-load .p-news_archive__list-item:nth-child(5) {
  transition-delay: 0.4s;
}
.is-load .p-news_archive__list-item:nth-child(6) {
  transition-delay: 0.45s;
}
.is-load .p-news_archive__list-item:nth-child(7) {
  transition-delay: 0.5s;
}
.is-load .p-news_archive__list-item:nth-child(8) {
  transition-delay: 0.55s;
}
.is-load .p-news_archive__list-item:nth-child(9) {
  transition-delay: 0.6s;
}
.is-load .p-news_archive__list-item:nth-child(10) {
  transition-delay: 0.65s;
}
.is-load .p-news_archive__list-item:nth-child(11) {
  transition-delay: 0.7s;
}
.is-load .p-news_archive__list-item:nth-child(12) {
  transition-delay: 0.75s;
}
.p-news_archive__pagination {
  display: block;
  position: relative;
  margin-top: 8.5rem;
}

.p-news_data {
  display: block;
  position: relative;
}
.p-news_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 1.2rem;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-news_data__thumb {
    margin-bottom: 0.8rem;
  }
}
.p-news_data__thumb-img {
  display: block;
  position: relative;
}
.p-news_data__date {
  display: block;
  position: relative;
  margin-bottom: 0.5rem;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-news_data__date {
    padding-left: 1rem;
    font-size: 1rem;
  }
}
.p-news_data__date::before {
  content: "";
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 55%;
  left: 0;
  border-bottom: 0.1rem solid var(--color-black);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-news_data__date::before {
    width: 0.8rem;
  }
}
.p-news_data__title {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-news_data__title {
    margin-bottom: 0.4rem;
    font-size: 1.4rem;
    line-height: 1.4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-news_data:hover .p-news_data__title {
    text-decoration: underline;
  }
}
.p-news_data__text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7;
}
@media screen and (max-width: 960px) {
  .p-news_data__text {
    font-size: 1.2rem;
    line-height: 1.5;
  }
}
.p-news_data__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.5rem;
  margin-top: 1rem;
  font-size: 1.2rem;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-news_data__category {
    padding: 0.4rem;
    font-size: 1rem;
  }
}
.p-news_data__category::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-gray);
}

.p-news_single {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
.is-load .p-news_single {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-news_single__inner {
  display: block;
  position: relative;
}
.p-news_single__thumb {
  display: block;
  position: relative;
  margin-bottom: 4.2rem;
}
.p-news_single__thumb img {
  width: 100%;
}
.p-news_single__date {
  display: block;
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-news_single__date {
    padding-left: 1rem;
    font-size: 1rem;
  }
}
.p-news_single__date::before {
  content: "";
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 55%;
  left: 0;
  border-bottom: 0.1rem solid var(--color-black);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-news_single__date::before {
    width: 0.8rem;
  }
}
.p-news_single__title {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  font-size: 2.6rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-news_single__title {
    margin-bottom: 0.6rem;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
.p-news_single__category {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  padding: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-news_single__category {
    padding: 0.4rem;
    font-size: 1rem;
  }
}
.p-news_single__category::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-gray);
}
.p-news_single__text {
  display: block;
  position: relative;
  margin-top: 2rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-news_single__text {
    font-size: 1.3rem;
  }
}
.p-news_single__text img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-news_single__text iframe {
  max-width: 100% !important;
  display: block;
  position: relative;
  margin: 0 auto;
}
@supports (aspect-ratio: 16/9) {
  .p-news_single__text iframe {
    aspect-ratio: 16/9;
    height: auto !important;
  }
}
.p-news_single__text a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_single__text a:hover {
    text-decoration: none;
  }
}
.p-news_single__credit {
  width: 100%;
  position: relative;
  margin: 11rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-news_single__credit {
    margin-top: 6.4rem;
  }
}
.p-news_single__credit::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
  background: var(--color-white);
}
.p-news_single__footer {
  width: 100%;
  display: block;
  position: relative;
  margin: 8.8rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-news_single__footer {
    margin-top: 6.7rem;
  }
}
.p-news_single__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-news_single__back::before {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: -2rem;
  transform: translate(-100%, 0);
  background: url("../img/common/btn/sideline.png") repeat-x right center/auto 1rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_single__back::before {
    background-size: auto 1rem;
  }
}
.p-news_single__back::after {
  content: "";
  width: 100vw;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  right: -2rem;
  transform: translate(100%, 0);
  background: url("../img/common/btn/sideline.png") repeat-x left center/auto 1rem;
  pointer-events: none;
}
@media screen and (max-width: 960px) {
  .p-news_single__back::after {
    background-size: auto 1rem;
  }
}

.p-news_latest {
  display: block;
  position: relative;
}
.p-news_latest__cap {
  display: block;
  position: relative;
  margin-bottom: 4.5rem;
  font-size: 3rem;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0;
  line-height: 1;
  font-weight: 900;
}
@media screen and (max-width: 960px) {
  .p-news_latest__cap {
    margin-bottom: 1.8rem;
    font-size: 3rem;
  }
}
.p-news_latest__slide {
  display: block;
  position: relative;
}
.p-news_latest__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-news_latest__list-item {
  width: 26rem;
  flex-shrink: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-news_latest__list-item {
    width: 25rem;
  }
}
.p-news_latest__controller {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 4.8rem;
}
.p-news_latest__nav {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-news_latest__nav-btn {
  width: 6.2rem;
  height: 4.5rem;
  display: block;
  position: relative;
  background: var(--color-yellow);
  border-radius: 50%;
  font-size: 0;
}
.p-news_latest__nav-btn.is-disable {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-news_latest__nav-btn {
    transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-news_latest__nav-btn:hover {
    background-color: var(--color-black);
  }
}
.p-news_latest__nav-btn::before {
  content: "";
  width: 0.8rem;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 55%;
  transform: translate(-50%, 0);
  background: url("../img/common/btn/btn_nextprev.svg") no-repeat center/contain;
  transition: filter 0.3s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-news_latest__nav-btn.--prev::before {
  left: 35%;
  transform: scale(-1, 1) translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .p-news_latest__nav-btn:hover::before {
    filter: invert(100%);
  }
}
.p-news_latest__nav-btn + .p-news_latest__nav-btn {
  margin-left: 1.2rem;
}
.p-news_latest__scrollbar {
  flex: 1 1 0;
  min-width: 0;
  height: 0.2rem;
  display: block;
  position: relative;
  background: var(--color-gray);
  margin-left: 4rem;
}
@media screen and (max-width: 960px) {
  .p-news_latest__scrollbar {
    height: 0.2rem;
    margin: 0 3.5rem 0 5.5rem;
  }
}
.p-news_latest__scrollbar-line {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
}
@media screen and (min-width: 961px) {
  .p-news_latest__pagination {
    display: none;
  }
}
.p-news_latest__pagination-num {
  position: absolute;
  top: 50%;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
}
.p-news_latest__pagination-num.-current {
  left: -1rem;
  transform: translate(-100%, -50%);
}
.p-news_latest__pagination-num.-total {
  right: -1rem;
  transform: translate(100%, -50%);
}
.p-news_latest__more {
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 961px) {
  .p-news_latest__more {
    position: absolute;
    top: -9.5rem;
    right: 0;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-news_latest__more {
    width: 14rem;
    margin-top: 5rem;
    margin-left: auto;
  }
}
.is-active .p-news_latest__more {
  opacity: 1;
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}

.p-career {
  display: block;
  position: relative;
  padding: 6.4rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-career {
    padding: 2.5rem 0 0;
  }
}
.p-career__description {
  display: block;
  position: relative;
  font-size: 1.8rem;
  line-height: 2;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
@media screen and (max-width: 960px) {
  .p-career__description {
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.is-load .p-career__description {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-career__link {
  width: 32rem;
  display: block;
  position: relative;
  margin: 10rem auto 0;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
@media screen and (max-width: 960px) {
  .p-career__link {
    width: 28rem;
    margin-top: 5rem;
  }
}
.is-load .p-career__link {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}

.p-contact {
  display: block;
  position: relative;
  padding: 6rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-contact {
    padding: 4.5rem 0 0;
  }
}
.p-contact form {
  width: 100%;
  max-width: 950px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-contact table,
.p-contact tbody {
  display: block;
  position: relative;
}
.p-contact tr {
  display: block;
  position: relative;
  font-size: 0;
  text-align: left;
}
@media screen and (min-width: 961px) {
  .p-contact tr {
    display: flex;
    align-items: center;
    justify-content: flex-start;
  }
}
.p-contact tr + tr {
  margin-top: 2.1rem;
}
@media screen and (max-width: 960px) {
  .p-contact tr + tr {
    margin-top: 3.6rem;
  }
}
.p-contact th {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-contact th {
    min-width: 20rem;
    margin-right: 5rem;
  }
}
@media screen and (max-width: 960px) {
  .p-contact th {
    margin-bottom: 1rem;
  }
}
.p-contact th p {
  display: block;
  position: relative;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-contact th p {
    font-size: 1.8rem;
    line-height: 1.2;
  }
}
.p-contact th span {
  color: red;
  margin-left: 0.4rem;
}
.p-contact td {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-contact td {
    flex: 1 1 0;
    min-width: 0;
  }
  .p-contact td p,
  .p-contact td span {
    display: block;
    position: relative;
  }
}
.p-contact td > div {
  display: flex;
  justify-content: center;
  font-size: 16px;
}
.p-contact td > div > p + div {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  margin-left: 1rem;
  line-height: 1.5;
}
.p-contact td > div > p + div a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-contact td > div > p + div a:hover {
    text-decoration: none;
  }
}
.p-contact td textarea,
.p-contact td input[type=text],
.p-contact td input[type=email],
.p-contact td input[type=tel] {
  width: 100%;
  display: block;
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 1.15rem 2rem;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  border: 0.1rem solid var(--color-black);
  border-radius: 0.4rem;
  color: var(--color-black);
}
.p-contact td textarea::-moz-placeholder, .p-contact td input[type=text]::-moz-placeholder, .p-contact td input[type=email]::-moz-placeholder, .p-contact td input[type=tel]::-moz-placeholder {
  color: var(--color-gray);
}
.p-contact td textarea::placeholder,
.p-contact td input[type=text]::placeholder,
.p-contact td input[type=email]::placeholder,
.p-contact td input[type=tel]::placeholder {
  color: var(--color-gray);
}
.p-contact td select {
  width: 100%;
  display: block;
  position: relative;
  padding: 1.15rem 2rem;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  border: 0.1rem solid var(--color-black);
  border-radius: 0.4rem;
  color: var(--color-black);
}
.p-contact td select::-moz-placeholder {
  color: var(--color-gray);
}
.p-contact td select::placeholder {
  color: var(--color-gray);
}
.p-contact td select option {
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
}
.p-contact .submit_button p {
  width: 100%;
  display: block;
  position: relative;
  margin: 4rem auto 0;
}
.p-contact .submit_button p input {
  width: 32rem;
  height: 7rem;
  display: block;
  position: relative;
  margin: 0 auto;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 16px;
  font-weight: 500;
  font-family: "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  color: var(--color-white);
  background: var(--color-black);
  border: 0.1rem solid var(--color-black);
  border-radius: 20rem;
}
@media screen and (max-width: 960px) {
  .p-contact .submit_button p input {
    width: 28rem;
    height: 6rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-contact .submit_button p input {
    transition: color 0.3s cubic-bezier(0.5, 1, 0.89, 1), background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-contact .submit_button p input:hover {
    color: var(--color-black);
    background-color: var(--color-yellow);
  }
}
.p-contact .wpcf7-response-output {
  border: 0.1rem solid red !important;
  padding: 1.6rem 3rem !important;
  color: red !important;
}

.p-privacy_policy {
  display: block;
  position: relative;
  padding: 6.4rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-privacy_policy {
    padding: 2.5rem 0 0;
  }
}
.p-privacy_policy__lead {
  display: block;
  position: relative;
  margin-bottom: 5rem;
  font-size: 1.6rem;
  letter-spacing: 0.05rem;
  line-height: 1.9;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
@media screen and (max-width: 960px) {
  .p-privacy_policy__lead {
    font-size: 1.3rem;
    line-height: 2.15;
  }
}
.is-load .p-privacy_policy__lead {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-privacy_policy__content {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
.is-load .p-privacy_policy__content {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.p-privacy_policy__cap {
  display: block;
  position: relative;
  margin-top: 5.8rem;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-privacy_policy__cap {
    margin-top: 5.2rem;
    font-size: 1.6rem;
  }
}
.p-privacy_policy__cap:first-child {
  margin-top: 0;
}
.p-privacy_policy__text {
  display: block;
  position: relative;
  margin-top: 3rem;
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.05rem;
  word-break: break-all;
}
@media screen and (max-width: 960px) {
  .p-privacy_policy__text {
    margin-top: 2rem;
    font-size: 1.3rem;
    line-height: 2.1;
    letter-spacing: 0.025rem;
  }
}
.p-privacy_policy__text:first-child {
  margin-top: 0;
}

.p-audition {
  padding: 6.4rem 0 0;
}
@media screen and (max-width: 960px) {
  .p-audition {
    padding: 3.6rem 0 0;
  }
}
.p-audition__sticker {
  display: block;
  position: absolute;
  z-index: -1;
}
.p-audition__sticker.--sticker1 {
  width: 57rem;
  top: -6rem;
  right: -3.2rem;
}
@media screen and (max-width: 960px) {
  .p-audition__sticker.--sticker1 {
    width: 42rem;
    top: -2.6rem;
    right: -7.2rem;
  }
}
.p-audition__sticker.--sticker2 {
  width: 42rem;
  top: -4.5rem;
  right: -1rem;
}
@media screen and (max-width: 960px) {
  .p-audition__sticker.--sticker2 {
    width: 45rem;
    top: -2.8rem;
    right: -4.6rem;
  }
}
.p-audition__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-audition__sticker-img:first-child {
  position: relative;
}
.is-load .p-audition__sticker-img {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-audition__sticker-img:nth-child(1) {
  transition-delay: 0.6s;
}
.is-load .p-audition__sticker-img:nth-child(2) {
  transition-delay: 0.75s;
}
.is-load .p-audition__sticker-img:nth-child(3) {
  transition-delay: 0.9s;
}
.is-load .p-audition__sticker-img:nth-child(4) {
  transition-delay: 1.05s;
}
.is-load .p-audition__sticker-img:nth-child(5) {
  transition-delay: 1.2s;
}
.is-load .p-audition__sticker-img:nth-child(6) {
  transition-delay: 1.35s;
}
.is-load .p-audition__sticker-img:nth-child(7) {
  transition-delay: 1.5s;
}
.is-load .p-audition__sticker-img:nth-child(8) {
  transition-delay: 1.65s;
}
.is-load .p-audition__sticker-img:nth-child(9) {
  transition-delay: 1.8s;
}
.is-load .p-audition__sticker-img:nth-child(10) {
  transition-delay: 1.95s;
}
.p-audition__cap {
  display: block;
  position: relative;
  font-size: 2.6rem;
  font-weight: 700;
  font-family: "Montserrat", "Zen Kaku Gothic New", -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  line-height: 1.3;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-audition__cap {
    font-size: 1.8rem;
  }
}
.is-load .p-audition__cap {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.p-audition__pickup {
  display: block;
  position: relative;
  margin-bottom: 5.5rem;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
.is-load .p-audition__pickup {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
@media screen and (max-width: 960px) {
  .p-audition__pickup {
    margin-bottom: 6.5rem;
  }
}
.p-audition__pickup-list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-audition__pickup-list-item {
  width: 80rem;
  flex-shrink: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-audition__pickup-list-item {
    width: 32.2rem;
  }
}
.p-audition__pickup-controller {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 4.8rem;
}
.p-audition__archive {
  margin-top: 3.3rem;
}
@media screen and (max-width: 960px) {
  .p-audition__archive {
    margin-top: 2.2rem;
  }
}

.p-audition_archive {
  display: block;
  position: relative;
}
.p-audition_archive__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  position: relative;
  gap: 4rem 5rem;
}
@media screen and (max-width: 960px) {
  .p-audition_archive__list {
    gap: 4rem 2rem;
  }
}
.p-audition_archive__list-item {
  width: calc(25% - 3.75rem);
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-audition_archive__list-item {
    width: calc(50% - 1rem);
  }
}
[data-page="1"] .p-audition_archive__list-item:nth-child(-n+4) {
  width: calc(50% - 5rem);
}
@media screen and (max-width: 960px) {
  [data-page="1"] .p-audition_archive__list-item:nth-child(-n+4) {
    width: 100%;
  }
}
@media screen and (min-width: 961px) {
  [data-page="1"] .p-audition_archive__list-item:nth-child(-n+4):nth-child(odd) {
    margin-right: 5rem;
  }
}
.p-audition_archive__list-item:nth-child(1) {
  order: 1;
}
.p-audition_archive__list-item:nth-child(2) {
  order: 2;
}
.p-audition_archive__list-item:nth-child(3) {
  order: 3;
}
.p-audition_archive__list-item:nth-child(4) {
  order: 4;
}
.p-audition_archive__list-item:nth-child(5) {
  order: 5;
}
.p-audition_archive__list-item:nth-child(6) {
  order: 6;
}
.p-audition_archive__list-item:nth-child(7) {
  order: 7;
}
.p-audition_archive__list-item:nth-child(8) {
  order: 8;
}
.p-audition_archive__list-item:nth-child(9) {
  order: 9;
}
.p-audition_archive__list-item:nth-child(10) {
  order: 10;
}
.p-audition_archive__list-item:nth-child(11) {
  order: 11;
}
.p-audition_archive__list-item:nth-child(12) {
  order: 12;
}
.p-audition_archive__list-item:nth-child(13) {
  order: 13;
}
.p-audition_archive__list-item:nth-child(14) {
  order: 14;
}
.p-audition_archive__list-item:nth-child(15) {
  order: 15;
}
.p-audition_archive__list-item:nth-child(16) {
  order: 16;
}
.p-audition_archive__list-item:nth-child(17) {
  order: 17;
}
.p-audition_archive__list-item:nth-child(18) {
  order: 18;
}
.p-audition_archive__list-item:nth-child(19) {
  order: 19;
}
.p-audition_archive__list-item:nth-child(20) {
  order: 20;
}
.p-audition_archive__list-item:not(.--line) {
  opacity: 0;
  transform: translate3d(0, 15rem, 0);
}
.is-load .p-audition_archive__list-item:not(.--line) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1), transform 1s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(1) {
  transition-delay: 0.4s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(2) {
  transition-delay: 0.45s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(3) {
  transition-delay: 0.5s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(4) {
  transition-delay: 0.55s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(5) {
  transition-delay: 0.6s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(6) {
  transition-delay: 0.65s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(7) {
  transition-delay: 0.7s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(8) {
  transition-delay: 0.75s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(9) {
  transition-delay: 0.8s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(10) {
  transition-delay: 0.85s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(11) {
  transition-delay: 0.9s;
}
.is-load .p-audition_archive__list-item:not(.--line):nth-child(12) {
  transition-delay: 0.95s;
}
.p-audition_archive__list-item.--line {
  width: 100%;
  display: none;
  position: relative;
  order: 4;
  margin: 7rem 0 10rem;
}
@media screen and (max-width: 960px) {
  .p-audition_archive__list-item.--line {
    margin: 0;
  }
}
[data-page="1"] .p-audition_archive__list-item.--line {
  display: block;
}
.p-audition_archive__line {
  width: 100vw;
  display: block;
  position: relative;
  left: 50%;
  transform: translate(-50%, 0);
}
.p-audition_archive__line-marquee {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 28%;
  left: 0;
  transform: rotate(3.5deg);
  z-index: 1;
}
.p-audition_archive__line-marquee::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: url("../img/common/bar_copy-outline.png") repeat-x 0 50%/311.5rem auto;
}
@media screen and (max-width: 960px) {
  .p-audition_archive__line-marquee::before {
    background: url("../img/common/bar_copy-outline.png") repeat-x 0 50%/155.75rem auto;
  }
}
.is-load .p-audition_archive__line-marquee::before {
  animation: text_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-audition_archive__line-marquee::before {
    animation-duration: 240s;
  }
}
.p-audition_archive__line-in {
  width: 96%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-audition_archive__line-in {
    width: 120%;
    left: -10%;
  }
}
.p-audition_archive__line-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-audition_archive__line-img:first-child {
  position: relative;
}
.p-audition_archive__line-img.is-active {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 0.3s cubic-bezier(0.5, 1, 0.89, 1), transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-audition_archive__pagination {
  display: block;
  position: relative;
  margin-top: 8.5rem;
}

.p-audition_data__thumb {
  margin-bottom: 1.5rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-audition_data__thumb {
    margin-bottom: 0.8rem;
  }
}
.p-audition_data__thumb::after {
  content: "";
  width: 100%;
  height: 36%;
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  background: url(../img/audition/audition_label_entry-end.png) no-repeat left top;
  background-size: contain;
}
.-fin .p-audition_data__thumb::after {
  opacity: 1;
}
.p-audition_data__date {
  display: block;
  position: relative;
  margin-bottom: 1.5rem;
  padding-left: 1.5rem;
  font-size: 1.8rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-audition_data__date {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }
}
.p-audition_data__date::before {
  content: "";
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 55%;
  left: 0;
  border-bottom: 0.1rem solid var(--color-black);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-audition_data__date::before {
    width: 0.8rem;
  }
}
.p-audition_data__title {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 960px) {
  .p-audition_data__title {
    margin-bottom: 0.6rem;
    font-size: 1.4rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-audition_data:hover .p-audition_data__title {
    text-decoration: underline;
  }
}
.p-audition_data__description {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 960px) {
  .p-audition_data__description {
    font-size: 1.1rem;
    line-height: 1.5;
    letter-spacing: 0;
  }
}
.p-audition_data__category {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1rem;
  position: relative;
}
.p-audition_data__category-text {
  display: block;
  position: relative;
  padding: 0.5rem;
  font-size: 1.2rem;
  color: var(--color-gray);
}
@media screen and (max-width: 960px) {
  .p-audition_data__category-text {
    padding: 0.4rem;
    font-size: 1rem;
  }
}
.p-audition_data__category-text::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-gray);
}

.p-audition_single {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
.is-load .p-audition_single {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-audition_single__thumb {
  display: block;
  position: relative;
  margin-bottom: 4.1rem;
}
.p-audition_single__thumb img {
  width: 100%;
}
.p-audition_single__date {
  display: block;
  position: relative;
  margin-bottom: 1.2rem;
  padding-left: 1.5rem;
  font-size: 1.4rem;
  line-height: 1;
}
@media screen and (max-width: 960px) {
  .p-audition_single__date {
    padding-left: 1rem;
    font-size: 1rem;
  }
}
.p-audition_single__date::before {
  content: "";
  width: 1rem;
  height: 0.1rem;
  position: absolute;
  top: 55%;
  left: 0;
  border-bottom: 0.1rem solid var(--color-black);
  transform: translate(0, -50%);
}
@media screen and (max-width: 960px) {
  .p-audition_single__date::before {
    width: 0.8rem;
  }
}
.p-audition_single__title {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 2.5rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-audition_single__title {
    margin-bottom: 0.6rem;
    font-size: 2rem;
    letter-spacing: 0;
    line-height: 1.4;
  }
}
.p-audition_single__text {
  display: block;
  position: relative;
  margin-top: 6.5rem;
  font-size: 1.6rem;
  line-height: 1.8;
}
@media screen and (max-width: 960px) {
  .p-audition_single__text {
    margin-top: 3.5rem;
    font-size: 1.3rem;
  }
}
.p-audition_single__text a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-audition_single__text a:hover {
    text-decoration: none;
  }
}
.p-audition_single__text img {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 100% !important;
  height: auto !important;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-audition_single__text iframe {
  max-width: 100% !important;
  display: block;
  position: relative;
  margin: 0 auto;
}
@supports (aspect-ratio: 16/9) {
  .p-audition_single__text iframe {
    aspect-ratio: 16/9;
    height: auto !important;
  }
}
.p-audition_single__info {
  margin: 0 auto;
  width: 90%;
  max-width: 945px;
  margin-top: 9rem;
}
@media screen and (max-width: 960px) {
  .p-audition_single__info {
    margin-top: 6rem;
    width: 100%;
  }
}
.p-audition_single__info-link {
  margin: 8.2rem auto 0;
  width: 45rem;
}
@media screen and (max-width: 960px) {
  .p-audition_single__info-link {
    margin: 5.2rem auto 0;
    width: 28rem;
  }
}
.p-audition_single__info-link .c-btn_round__text {
  font-size: 2.1rem;
}
@media screen and (max-width: 960px) {
  .p-audition_single__info-link .c-btn_round__text {
    font-size: 1.4rem;
  }
}
.p-audition_single__info-box + .p-audition_single__info-box {
  margin-top: 10rem;
}
@media screen and (max-width: 960px) {
  .p-audition_single__info-box + .p-audition_single__info-box {
    margin-top: 6rem;
  }
}
.p-audition_single__info-title {
  text-align: center;
  font-weight: 700;
  font-size: 3rem;
  letter-spacing: 1rem;
  border-bottom: 1px solid var(--color-black);
  padding-bottom: 4.5rem;
}
@media screen and (max-width: 960px) {
  .p-audition_single__info-title {
    font-size: 2rem;
    letter-spacing: 0.8rem;
    padding-bottom: 3rem;
  }
}
.p-audition_single__info-list-item {
  display: flex;
  padding: 2.9rem 0 2.5rem;
  border-bottom: 1px solid var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-audition_single__info-list-item {
    display: block;
    padding: 2rem 0 2rem;
  }
}
.p-audition_single__info-list-item a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-audition_single__info-list-item a:hover {
    text-decoration: none;
  }
}
.p-audition_single__info-cap {
  flex-shrink: 0;
  width: 30%;
  max-width: 24.3rem;
  font-weight: 700;
  letter-spacing: 0.25rem;
  font-size: 1.6rem;
}
@media screen and (max-width: 960px) {
  .p-audition_single__info-cap {
    width: 100%;
    max-width: none;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
  }
}
.p-audition_single__info-detail {
  margin-top: -0.8rem;
  font-size: 1.7rem;
  line-height: 1.75;
}
@media screen and (max-width: 960px) {
  .p-audition_single__info-detail {
    font-size: 1.3rem;
  }
}
.p-audition_single__pagination {
  display: block;
  position: relative;
  margin-top: 8.8rem;
}
@media screen and (max-width: 960px) {
  .p-audition_single__pagination {
    margin-top: 6.8rem;
  }
}