@charset "UTF-8";
.p-top {
  display: block;
  position: relative;
}
.p-top__container {
  min-height: var(--svh);
  display: block;
  position: relative;
}
.p-top__header {
  min-height: calc(var(--svh) * 2);
  display: block;
  position: relative;
  margin-bottom: calc(var(--svh) * -1);
  background-color: var(--color-gray-white);
}
.p-top__header::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  background: url("../img/common/bg_noise.png") repeat left top/10rem auto;
}
.p-top__inner {
  display: block;
  position: relative;
  overflow: hidden;
  background-color: var(--color-gray-white);
  z-index: 0;
}
.p-top__inner::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;
  z-index: -1;
}

.p-hero {
  display: block;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  overflow: hidden;
}
.p-hero__container {
  min-height: var(--svh);
  display: block;
  position: relative;
  z-index: 0;
}
.p-hero__circle {
  width: 60vw;
  min-width: 115vh;
  height: 60vw;
  min-height: 115vh;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1) translate(-50%, -50%);
}
.is-load .p-hero__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-hero__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;
}
@media screen and (max-width: 960px) {
  .p-hero__circle::before {
    width: 80vw;
    min-width: 80vh;
    height: 80vw;
    min-height: 80vh;
  }
}
.is-load .p-hero__circle::before {
  animation: rotate 240s linear infinite;
}
.p-hero__deco {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
}
.is-load .p-hero__deco {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.3s, transform 2s cubic-bezier(0.5, 1, 0.89, 1) 0.3s;
}
.p-hero__deco-img {
  position: absolute;
  transform: translate(-50%, -50%);
}
.p-hero__deco-img.--img1 {
  width: 28rem;
  top: 0%;
  left: 27%;
  transform: translate(-50%, -50%) rotate(20deg);
}
@media screen and (max-width: 960px) {
  .p-hero__deco-img.--img1 {
    width: 15rem;
    top: 0%;
    left: 50%;
  }
}
.p-hero__deco-img.--img2 {
  width: 20rem;
  top: 20%;
  left: 97%;
  transform: translate(-50%, -50%) rotate(-20deg);
}
@media screen and (max-width: 960px) {
  .p-hero__deco-img.--img2 {
    width: 10rem;
    top: 18%;
    left: 98%;
    transform: translate(-50%, -50%) rotate(-30deg);
  }
}
.p-hero__deco-img.--img3 {
  width: 15rem;
  top: 60%;
  left: 30%;
  transform: translate(-50%, -50%) rotate(-20deg);
}
@media screen and (max-width: 960px) {
  .p-hero__deco-img.--img3 {
    width: 8rem;
    top: 50%;
    left: 50%;
  }
}
.p-hero__deco-img.--img4 {
  width: 13rem;
  top: 27%;
  left: 4%;
  transform: translate(-50%, -50%) rotate(-20deg);
}
@media screen and (max-width: 960px) {
  .p-hero__deco-img.--img4 {
    width: 7rem;
    top: 60%;
    left: 98%;
  }
}
.p-hero__line {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
}
.is-load .p-hero__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-hero__line-bar {
  width: 100%;
  height: 6.4rem;
  display: block;
  position: absolute;
}
@media screen and (max-width: 960px) {
  .p-hero__line-bar {
    width: 120%;
    height: 3.2rem;
  }
}
.p-hero__line-bar.--line1 {
  top: 30%;
  left: 0;
  transform: rotate(-15deg);
  transform-origin: left bottom;
}
@media screen and (max-width: 960px) {
  .p-hero__line-bar.--line1 {
    top: 18%;
  }
}
.p-hero__line-bar.--line2 {
  top: 70%;
  left: 0;
  transform: rotate(32deg);
  transform-origin: left top;
  animation-direction: reverse;
}
@media screen and (max-width: 960px) {
  .p-hero__line-bar.--line2 {
    top: 62%;
  }
}
.p-hero__line-bar.--line3 {
  top: 65%;
  right: 0;
  transform: rotate(-40deg);
  transform-origin: right top;
}
@media screen and (max-width: 960px) {
  .p-hero__line-bar.--line3 {
    top: 79%;
  }
}
.p-hero__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-hero__line-bar::before {
    background-size: 155.75rem auto;
  }
}
.p-hero__line-bar.--line3::before {
  animation-direction: reverse;
}

.is-load .p-hero__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;
}
@media screen and (max-width: 960px) {
  .is-load .p-hero__line-bar::before {
    animation-duration: 240s;
  }
}
.p-hero__header {
  display: block;
  position: absolute;
  bottom: 6.8rem;
  left: 5rem;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .p-hero__header {
    bottom: 7.5%;
    left: 2.4rem;
  }
}
.p-hero__catch {
  display: block;
  position: relative;
  margin-bottom: 0.4rem;
  font-size: 1.8rem;
  font-weight: 700;
  opacity: 0;
  transform: translateY(100%);
}
@media screen and (max-width: 960px) {
  .p-hero__catch {
    margin-bottom: 1rem;
    font-size: 1.3rem;
    line-height: 1.5;
  }
}
.is-load .p-hero__catch {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, transform 0.5s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
.p-hero__lead {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-hero__lead {
    display: flex;
    justify-content: flex-start;
  }
}
.p-hero__lead-text {
  display: flex;
  justify-content: flex-start;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 961px) {
  .p-hero__lead-text + .p-hero__lead-text {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 960px) {
  .p-hero__lead-text + .p-hero__lead-text {
    margin-top: -0.2rem;
  }
}
.p-hero__lead-word {
  display: block;
  position: relative;
  font-size: 6rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.01rem;
  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: translateY(100%);
}
@media screen and (max-width: 960px) {
  .p-hero__lead-word {
    font-size: 4rem;
    font-weight: 700;
    letter-spacing: -0.15rem;
  }
}
.is-load .p-hero__lead-word {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.1s cubic-bezier(0.5, 1, 0.89, 1), transform 0.5s cubic-bezier(0.5, 1, 0.89, 1);
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(1) {
  transition-delay: 0.4s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(2) {
  transition-delay: 0.45s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(3) {
  transition-delay: 0.5s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(4) {
  transition-delay: 0.55s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(5) {
  transition-delay: 0.6s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(6) {
  transition-delay: 0.65s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(7) {
  transition-delay: 0.7s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(8) {
  transition-delay: 0.75s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-load .p-hero__lead-text:nth-child(1) .p-hero__lead-word:nth-child(10) {
  transition-delay: 0.85s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(1) {
  transition-delay: 0.8s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(2) {
  transition-delay: 0.85s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(3) {
  transition-delay: 0.9s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(4) {
  transition-delay: 0.95s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(5) {
  transition-delay: 1s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(6) {
  transition-delay: 1.05s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(7) {
  transition-delay: 1.1s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(8) {
  transition-delay: 1.15s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(9) {
  transition-delay: 1.2s;
}
.is-load .p-hero__lead-text:nth-child(2) .p-hero__lead-word:nth-child(10) {
  transition-delay: 1.25s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(1) {
  transition-delay: 1.2s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(2) {
  transition-delay: 1.25s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(3) {
  transition-delay: 1.3s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(4) {
  transition-delay: 1.35s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(5) {
  transition-delay: 1.4s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(6) {
  transition-delay: 1.45s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(7) {
  transition-delay: 1.5s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(8) {
  transition-delay: 1.55s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(9) {
  transition-delay: 1.6s;
}
.is-load .p-hero__lead-text:nth-child(3) .p-hero__lead-word:nth-child(10) {
  transition-delay: 1.65s;
}
.p-hero__inner {
  width: 100%;
  display: block;
  position: absolute;
  top: 45%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 960px) {
  .p-hero__inner {
    top: 40%;
  }
}
.p-hero__scroll {
  display: block;
  position: absolute;
  bottom: 0;
  right: 4.5rem;
  z-index: 1;
  padding-bottom: 1rem;
  opacity: 0;
}
@media screen and (max-width: 960px) {
  .p-hero__scroll {
    right: 1.4rem;
    padding-bottom: 1.5rem;
  }
}
.is-load .p-hero__scroll {
  opacity: 1;
  transition: opacity 1s cubic-bezier(0.5, 1, 0.89, 1) 0.6s;
}
.p-hero__scroll-cap {
  display: block;
  position: relative;
  font-size: 1rem;
  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;
  color: var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-hero__scroll-cap {
    width: 1.3rem;
    writing-mode: vertical-lr;
  }
}
.p-hero__scroll-bar {
  width: 0.1rem;
  height: 5.5rem;
  display: block;
  position: relative;
  overflow: hidden;
  margin: 1rem auto 0;
}
@media screen and (max-width: 960px) {
  .p-hero__scroll-bar {
    height: 7.8rem;
    margin-top: 1rem;
  }
}
.p-hero__scroll-bar::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
  animation: scroll_bar 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}
@keyframes scroll_bar {
  0% {
    transform: translateY(-100%);
  }
  50% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(100%);
  }
}

.p-hero_lineup {
  width: calc(100% - 8rem);
  display: block;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
  transform-origin: center;
}
@media screen and (max-width: 960px) {
  .p-hero_lineup {
    width: calc(100% - 4rem);
  }
}
.is-load .p-hero_lineup {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.9s, transform 1.8s cubic-bezier(0.5, 1, 0.89, 1) 0.9s;
}
.p-hero_lineup__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-hero_lineup__list-item {
  width: min(39.2857142857%, 70vh);
  min-width: 45rem;
  flex-shrink: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-hero_lineup__list-item {
    width: min(66.6666666667%, 50rem);
    min-width: 30rem;
  }
}

.p-hero_lineup_data {
  display: block;
  position: relative;
}
.p-hero_lineup_data__thumb {
  display: block;
  position: relative;
  padding: 0.5rem;
  background: var(--color-white);
}
.p-hero_lineup__list-item:nth-child(odd) .p-hero_lineup_data__thumb {
  transform: rotate(5deg);
}
.p-hero_lineup__list-item:nth-child(even) .p-hero_lineup_data__thumb {
  transform: rotate(-5deg);
}
.p-hero_lineup_data__thumb-img {
  padding-top: 75%;
  display: block;
  position: relative;
  background: url("../img/common/thumb_project_bg.jpg") no-repeat center/cover;
}
.p-hero_lineup_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-hero_lineup_data__title {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 70%;
  display: block;
  position: absolute;
  left: 0;
  bottom: -3rem;
  padding: 0.8rem 1rem;
  margin-top: 1rem;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-hero_lineup_data__title {
    padding: 0.2rem 0.4rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-hero_lineup_data:hover .p-hero_lineup_data__title {
    text-decoration: underline;
  }
}
.p-hero_lineup_data__title::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-black);
}
.p-hero_lineup_data__title-text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.5;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 960px) {
  .p-hero_lineup_data__title-text {
    font-size: 1rem;
    line-height: 1.3;
  }
}

.p-about {
  display: block;
  position: relative;
  padding: 18.4rem 0 22.8rem;
  background: var(--color-white);
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-about {
    padding: 11.8rem 0 13.4rem;
  }
}
.p-about__bar {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transform: scale3d(1.1, 1.1, 1.1);
}
.is-active .p-about__bar {
  opacity: 1;
  transform: 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__bar-img {
  position: absolute;
}
.p-about__bar-img.--img1 {
  width: 24.5rem;
  top: -4.6rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .p-about__bar-img.--img1 {
    width: 14rem;
    top: -5.1rem;
  }
}
.p-about__bar-img.--img2 {
  width: 12rem;
  top: -8rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-about__bar-img.--img2 {
    width: 15rem;
    top: -5rem;
  }
}
.p-about__bar-img.--img3 {
  width: 19.5rem;
  bottom: 14rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .p-about__bar-img.--img3 {
    width: 6rem;
    bottom: -15rem;
  }
}
.p-about__bar-img.--img4 {
  width: 20rem;
  bottom: 4rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-about__bar-img.--img4 {
    width: 8rem;
    bottom: -16rem;
  }
}
.p-about__container {
  width: 86%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-about__header {
  display: block;
  position: relative;
  z-index: 0;
  margin-bottom: 4rem;
}
.p-about__title {
  display: flex;
  justify-content: center;
  position: relative;
  text-align: center;
}
.p-about__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;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-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-about__title-word {
    font-size: 4.8rem;
  }
}
.is-active .p-about__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__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-about__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-about__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-about__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-about__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-about__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-about__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-about__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-about__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-about__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-about__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-about__inner {
  display: block;
  position: relative;
}
.p-about__description {
  display: block;
  position: relative;
}
.p-about__description-par {
  display: block;
  position: relative;
  font-size: 3rem;
  line-height: 1.8;
  letter-spacing: 0;
  font-weight: 700;
  text-align: center;
  vertical-align: top;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about__description-par {
    line-height: 1.9;
    font-size: 1.8rem;
  }
}
.is-active .p-about__description-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-active .p-about__description-par:nth-child(1) {
  transition-delay: 0.5s;
}
.is-active .p-about__description-par:nth-child(2) {
  transition-delay: 0.6s;
}
.is-active .p-about__description-par:nth-child(3) {
  transition-delay: 0.7s;
}
.is-active .p-about__description-par:nth-child(4) {
  transition-delay: 0.8s;
}
.is-active .p-about__description-par:nth-child(5) {
  transition-delay: 0.9s;
}
.is-active .p-about__description-par:nth-child(6) {
  transition-delay: 1s;
}
.is-active .p-about__description-par:nth-child(7) {
  transition-delay: 1.1s;
}
.is-active .p-about__description-par:nth-child(8) {
  transition-delay: 1.2s;
}
.is-active .p-about__description-par:nth-child(9) {
  transition-delay: 1.3s;
}
.is-active .p-about__description-par:nth-child(10) {
  transition-delay: 1.4s;
}
.p-about__description-brand {
  width: 17rem;
  display: inline-block;
  position: relative;
  margin: -1.5rem 1.5rem 0;
  top: 1.8rem;
}
@media screen and (max-width: 960px) {
  .p-about__description-brand {
    width: 9rem;
    top: 1.2rem;
    margin: -1.5rem 1.5rem 0;
  }
}
.p-about__more {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 8.6rem auto 0;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-about__more {
    margin-top: 5.8rem;
  }
}
.is-active .p-about__more {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.8s cubic-bezier(0.5, 1, 0.89, 1) 0.8s, transform 1s cubic-bezier(0.5, 1, 0.89, 1) 0.8s;
}
.p-about__marquee {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.p-about__marquee::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border-top: 0.1rem solid var(--color-black);
  border-bottom: 0.1rem solid var(--color-black);
}
.p-about__marquee-text {
  width: 100%;
  height: 2.6rem;
  display: block;
  position: relative;
  background: url("../img/top/about/bar_word.png") repeat-x left center/186.4rem auto;
}
@media screen and (max-width: 960px) {
  .p-about__marquee-text {
    height: 2.2rem;
    background-size: 149.12rem auto;
  }
}
.is-load .p-about__marquee-text {
  animation: about_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-about__marquee-text {
    animation: about_marquee_sp 60s linear infinite;
  }
}
@keyframes about_marquee {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: -186.4rem 50%;
  }
}
@keyframes about_marquee_sp {
  0% {
    background-position: 0 50%;
  }
  100% {
    background-position: -149.12rem 50%;
  }
}

.p-service {
  display: block;
  position: relative;
  padding: 16rem 0 36rem;
}
@media screen and (max-width: 960px) {
  .p-service {
    padding: 17.8rem 0 24.6rem;
  }
}
.p-service::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-service__line {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
  z-index: -1;
}
.p-service__line-marquee {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 6%;
  left: 0;
  transform: rotate(-3.5deg);
  z-index: 1;
}
.p-service__line-marquee::before {
  content: "";
  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;
  width: 0;
}
@media screen and (max-width: 960px) {
  .p-service__line-marquee::before {
    background: url("../img/common/bar_copy-outline.png") repeat-x 0 50%/155.75rem auto;
  }
}
.is-load .p-service__line-marquee::before {
  animation: text_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-service__line-marquee::before {
    animation-duration: 240s;
  }
}
.p-service__line-marquee.is-active::before {
  width: 100%;
  transition: width 1s cubic-bezier(0.5, 1, 0.89, 1);
}

.p-service__line-in {
  width: 96%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-service__line-in {
    width: 120%;
    left: -10%;
  }
}
.p-service__line-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-service__line-img:first-child {
  position: relative;
}
.p-service__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-service__sticker {
  width: 57rem;
  display: block;
  position: absolute;
  top: -7.4rem;
  right: -2rem;
  z-index: -2;
}
@media screen and (max-width: 960px) {
  .p-service__sticker {
    width: 34.5rem;
    top: -14.8rem;
    right: -0.8rem;
  }
}
.p-service__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-service__sticker-img:first-child {
  position: relative;
}
.p-service__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-service__container {
  width: 86%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-service__container {
    width: 88%;
  }
}
.p-service__header {
  display: block;
  position: relative;
  z-index: 0;
  margin-bottom: 8.8rem;
}
@media screen and (min-width: 961px) {
  .p-service__header {
    padding-right: 20rem;
  }
}
@media screen and (max-width: 960px) {
  .p-service__header {
    margin-bottom: 5.6rem;
  }
}
.p-service__title {
  display: flex;
  justify-content: flex-start;
  position: relative;
  text-align: center;
}
.p-service__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;
  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-service__title-word {
    font-size: 4.9rem;
  }
}
.is-active .p-service__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-service__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-service__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-service__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-service__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-service__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-service__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-service__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-service__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-service__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-service__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-service__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-service__lead {
  display: block;
  position: relative;
  margin-top: 3.8rem;
  font-size: 2rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service__lead {
    margin-bottom: 2rem;
    font-size: 1.8rem;
  }
}
.is-active .p-service__lead {
  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-service__intro {
  width: 56%;
  display: block;
  position: relative;
  margin-top: 3.6rem;
  font-size: 1.6rem;
  line-height: 1.8;
  letter-spacing: 0;
  opacity: 0;
  transform: translate3d(0, 6rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service__intro {
    margin-top: 2rem;
    width: 100%;
    font-size: 1.3rem;
    line-height: 1.85;
  }
}
.is-active .p-service__intro {
  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__inner {
  display: block;
  position: relative;
}
.p-service__content {
  width: 100%;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 961px) {
  .p-service__content {
    display: flex;
    justify-content: center;
  }
}
.p-service__content-item {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-service__content-item {
    flex: 1;
    max-width: 50rem;
  }
}
@media screen and (max-width: 960px) {
  .p-service__content-item {
    width: 100%;
    max-width: 29rem;
    margin: 0 auto;
  }
}
@media screen and (min-width: 961px) {
  .p-service__content-item + .p-service__content-item {
    margin-left: 8.6rem;
  }
}
@media screen and (max-width: 960px) {
  .p-service__content-item + .p-service__content-item {
    margin-top: 3rem;
  }
}
.p-service__more {
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 961px) {
  .p-service__more {
    position: absolute;
    top: -9.6rem;
    right: 0;
    transform: translate(0, -100%);
  }
}
@media screen and (max-width: 960px) {
  .p-service__more {
    margin-top: 5.5rem;
    margin-left: auto;
    margin-right: -2rem;
  }
}
.is-active .p-service__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-service_content {
  display: block;
  position: relative;
  z-index: 0;
}
.p-service_content__bg {
  width: 100%;
  padding-top: 100%;
  display: block;
  position: relative;
  z-index: -1;
}
.p-service_content__bg::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-yellow);
  border-radius: 50%;
  opacity: 0;
  transform: translate3d(0, 0, 0);
}
.is-content-active .p-service_content__bg::before {
  opacity: 1;
  transform: translate3d(0.5rem, 0.5rem, 0);
  transition: opacity 0s cubic-bezier(0.5, 1, 0.89, 1) 0.4s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.4s;
}
@media screen and (max-width: 960px) {
  .is-content-active .p-service_content__bg::before {
    transform: translate3d(-0.4rem, 0.4rem, 0);
  }
}
.p-service_content__bg::after {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--color-white);
  border-radius: 50%;
  opacity: 0;
}
.is-content-active .p-service_content__bg::after {
  opacity: 1;
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-service_content__circle {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  transform: scale3d(1.02, 1.02, 1.02) rotate(-90deg);
  z-index: 1;
}
.p-service_content__circle-path {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  fill: none;
  stroke: var(--color-black);
  stroke-width: 0.2rem;
  vector-effect: non-scaling-stroke;
  stroke-dasharray: 1600;
  stroke-dashoffset: 1600;
}
@media screen and (max-width: 960px) {
  .p-service_content__circle-path {
    stroke-width: 0.1rem;
  }
}
.p-service_content__inner {
  width: 90%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-service_content__text {
  display: block;
  position: relative;
  margin-bottom: 2.4rem;
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.5;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service_content__text {
    margin-bottom: 2rem;
    font-size: 1rem;
  }
}
.is-content-active .p-service_content__text {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1), transform 0.6s cubic-bezier(0.5, 1, 0.89, 1);
}
.p-service_content__title {
  display: block;
  position: relative;
  font-size: 4.6rem;
  text-align: center;
  font-weight: 900;
  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.01rem;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service_content__title {
    font-size: 2.5rem;
  }
}
.is-content-active .p-service_content__title {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.1s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.1s;
}
.p-service_content__title small {
  display: block;
  position: relative;
  font-size: 0.5em;
}
.p-service_content__data {
  display: block;
  position: relative;
  margin-top: 2.6rem;
  opacity: 0;
  transform: translate3d(0, 2rem, 0);
}
@media screen and (max-width: 960px) {
  .p-service_content__data {
    margin-top: 1.4rem;
  }
}
.is-content-active .p-service_content__data {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: opacity 0.4s cubic-bezier(0.5, 1, 0.89, 1) 0.2s, transform 0.6s cubic-bezier(0.5, 1, 0.89, 1) 0.2s;
}
.p-service_content__data-text {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0.3rem 1rem;
  font-size: 1.7rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-service_content__data-text {
    padding: 0.1rem 0.6rem 0.2rem;
    font-size: 1rem;
  }
}
.p-service_content__data-text::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-black);
}
.p-service_content__data-text + .p-service_content__data-text {
  margin-top: -0.1rem;
}

.p-projects {
  display: block;
  position: relative;
  padding: 16.6rem 0 32rem;
}
@media screen and (max-width: 960px) {
  .p-projects {
    padding: 7rem 0 18rem;
  }
}
.p-projects__bar {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}
.p-projects__bar-img {
  position: absolute;
}
.p-projects__bar-img.--img1 {
  width: 26rem;
  top: -2rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-projects__bar-img.--img1 {
    width: 18rem;
    top: -13rem;
  }
}
.p-projects__bar-img.--img2 {
  width: 38rem;
  top: 42rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .p-projects__bar-img.--img2 {
    width: 14rem;
    top: 7rem;
  }
}
.p-projects__bar-img.--img3 {
  width: 22rem;
  bottom: 21rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-projects__bar-img.--img3 {
    width: 10rem;
    bottom: 9rem;
    left: 0;
  }
}
.p-projects__line {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
}
.p-projects__line-marquee {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 21%;
  left: 0;
  transform: rotate(3.5deg);
  z-index: 1;
}
.is-load .p-projects__line-marquee {
  animation: text_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-projects__line-marquee {
    animation-duration: 240s;
  }
}
.p-projects__line-marquee::before {
  content: "";
  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;
  width: 0;
}
@media screen and (max-width: 960px) {
  .p-projects__line-marquee::before {
    background: url("../img/common/bar_copy-outline.png") repeat-x 0 50%/155.75rem auto;
  }
}
.is-load .p-projects__line-marquee::before {
  animation: text_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-projects__line-marquee::before {
    animation-duration: 240s;
  }
}
.p-projects__line-marquee.is-active::before {
  width: 100%;
  transition: width 1s cubic-bezier(0.5, 1, 0.89, 1);
}

.p-projects__line-in {
  width: 96%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-projects__line-in {
    width: 120%;
    left: -10%;
  }
}
.p-projects__line-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-projects__line-img:first-child {
  position: relative;
}
.p-projects__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-projects__container {
  width: 86%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-projects__container {
    width: 88%;
  }
}
.p-projects__header {
  display: block;
  position: relative;
  z-index: 0;
  margin-bottom: 6.2rem;
}
@media screen and (min-width: 961px) {
  .p-projects__header {
    padding-right: 20rem;
  }
}
@media screen and (max-width: 960px) {
  .p-projects__header {
    margin-bottom: 4.2rem;
  }
}
.p-projects__title {
  display: flex;
  justify-content: flex-start;
  position: relative;
  text-align: center;
}
.p-projects__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;
  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-projects__title-word {
    font-size: 4.9rem;
  }
}
.is-active .p-projects__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-projects__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-projects__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-projects__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-projects__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-projects__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-projects__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-projects__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-projects__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-projects__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-projects__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-projects__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-projects__inner {
  display: block;
  position: relative;
}
.p-projects__more {
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 961px) {
  .p-projects__more {
    position: absolute;
    top: -10rem;
    right: 0;
    transform: translate(0, -100%);
  }
}
@media screen and (max-width: 960px) {
  .p-projects__more {
    margin-top: 5.2rem;
    margin-left: auto;
    margin-right: -2rem;
  }
}
.is-active .p-projects__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-projects__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem 10rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-projects__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 6rem 0;
  }
}
.p-projects__list-item {
  min-width: 0;
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 15rem, 0);
}
@media screen and (min-width: 961px) {
  .p-projects__list-item:nth-child(even) {
    margin-top: 11.5rem;
  }
}
.is-active .p-projects__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-active .p-projects__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.is-active .p-projects__list-item:nth-child(2) {
  transition-delay: 0.3s;
}
.is-active .p-projects__list-item:nth-child(3) {
  transition-delay: 0.4s;
}
.is-active .p-projects__list-item:nth-child(4) {
  transition-delay: 0.5s;
}

.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);
}
.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 {
    font-size: 1.3rem;
  }
}
.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%);
}
.p-project_data__title {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 2rem;
  line-height: 1.5;
  font-weight: 700;
}
@media screen and (max-width: 960px) {
  .p-project_data__title {
    font-size: 1.6rem;
  }
}
@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.3rem;
    line-height: 1.5;
  }
}
.p-project_data__category {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
  position: relative;
  margin-top: 1rem;
}
.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-produce {
  display: block;
  position: relative;
  padding: 19.7rem 0 20rem;
}
@media screen and (max-width: 960px) {
  .p-produce {
    padding: 10rem 0 12.2rem;
  }
}
.p-produce::before {
  content: "";
  width: 100%;
  height: calc(100% - 62rem);
  display: block;
  position: absolute;
  top: 62rem;
  left: 0;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-produce::before {
    height: calc(100% - 38rem);
    top: 38rem;
  }
}
.p-produce__sticker {
  display: block;
  position: absolute;
}
.p-produce__sticker.--sticker1 {
  width: 43rem;
  top: -5.8rem;
  right: -12rem;
}
@media screen and (max-width: 960px) {
  .p-produce__sticker.--sticker1 {
    display: none;
  }
}
.p-produce__sticker.--sticker2 {
  width: 9rem;
  top: -4.5rem;
  right: 4rem;
}
@media screen and (max-width: 960px) {
  .p-produce__sticker.--sticker2 {
    width: 6rem;
    top: -2.5rem;
    right: -4rem;
  }
}
.p-produce__sticker.--sticker3 {
  width: 36rem;
  bottom: 3rem;
  left: 3rem;
}
@media screen and (max-width: 960px) {
  .p-produce__sticker.--sticker3 {
    width: 20rem;
    bottom: 1.5rem;
    left: -5rem;
  }
}
.p-produce__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-produce__sticker-img:first-child {
  position: relative;
}
.p-produce__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-produce__container {
  width: 93%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-produce__container {
    width: 88%;
  }
}
.p-produce__header {
  display: block;
  position: relative;
  margin: 0 auto 4rem;
  z-index: 0;
}
@media screen and (min-width: 961px) {
  .p-produce__header {
    width: 93%;
    padding-right: 25%;
  }
}
@media screen and (max-width: 960px) {
  .p-produce__header {
    margin-bottom: 4.5rem;
  }
}
.p-produce__title {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
  position: relative;
  text-align: center;
}
.p-produce__title small {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
  flex-wrap: wrap;
}
.p-produce__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-produce__title-word {
    font-size: 4.8rem;
    letter-spacing: 0.05rem;
  }
}
.p-produce__title-word.--small {
  font-size: 5rem;
  text-shadow: 0.2rem 0.2rem 0 var(--color-black);
}
@media screen and (max-width: 960px) {
  .p-produce__title-word.--small {
    font-size: 2.5rem;
  }
}
.is-active .p-produce__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-produce__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-produce__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-produce__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-produce__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-produce__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-produce__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-produce__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-produce__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-produce__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-produce__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.is-active .p-produce__title-word:nth-child(11) {
  transition-delay: 1s;
}
.is-active .p-produce__title-word:nth-child(12) {
  transition-delay: 1.1s;
}
.is-active .p-produce__title-word:nth-child(13) {
  transition-delay: 1.2s;
}
.is-active .p-produce__title-word:nth-child(14) {
  transition-delay: 1.3s;
}
.is-active .p-produce__title-word:nth-child(15) {
  transition-delay: 1.4s;
}
.is-active .p-produce__title-word:nth-child(16) {
  transition-delay: 1.5s;
}
.is-active .p-produce__title-word:nth-child(17) {
  transition-delay: 1.6s;
}
.is-active .p-produce__title-word:nth-child(18) {
  transition-delay: 1.7s;
}
.is-active .p-produce__title-word:nth-child(19) {
  transition-delay: 1.8s;
}
.is-active .p-produce__title-word:nth-child(20) {
  transition-delay: 1.9s;
}
.is-active .p-produce__title-word:nth-child(21) {
  transition-delay: 2s;
}
.is-active .p-produce__title-word:nth-child(22) {
  transition-delay: 2.1s;
}
.is-active .p-produce__title-word:nth-child(23) {
  transition-delay: 2.2s;
}
.is-active .p-produce__title-word:nth-child(24) {
  transition-delay: 2.3s;
}
.is-active .p-produce__title-word:nth-child(25) {
  transition-delay: 2.4s;
}
.is-active .p-produce__title-word:nth-child(26) {
  transition-delay: 2.5s;
}
.is-active .p-produce__title-word:nth-child(27) {
  transition-delay: 2.6s;
}
.is-active .p-produce__title-word:nth-child(28) {
  transition-delay: 2.7s;
}
.is-active .p-produce__title-word:nth-child(29) {
  transition-delay: 2.8s;
}
.is-active .p-produce__title-word:nth-child(30) {
  transition-delay: 2.9s;
}
.p-produce__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-produce__inner {
  display: block;
  position: relative;
}
.p-produce__talent {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
.is-active .p-produce__talent {
  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-produce__action {
  display: block;
  position: relative;
  margin-top: 7.8rem;
}
@media screen and (max-width: 960px) {
  .p-produce__action {
    margin-top: 6.4rem;
  }
}
.p-produce__footer {
  width: 90%;
  display: block;
  position: relative;
  margin: 13.4rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-produce__footer {
    width: 98%;
    margin-top: 9rem;
  }
}
.p-produce__more {
  width: 11.5rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-produce__more {
    width: 10rem;
  }
}
.p-produce__more::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-produce__more::before {
    background-size: auto 0.55rem;
  }
}
.p-produce__more::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-produce__more::after {
    background-size: auto 0.55rem;
  }
}

.p-produce_talent {
  display: block;
  position: relative;
}
.p-produce_talent__slide {
  display: block;
  position: relative;
}
.p-produce_talent__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-produce_talent__list-item {
  width: 32.5rem;
  flex-shrink: 0;
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 15rem, 0);
}
@media screen and (max-width: 960px) {
  .p-produce_talent__list-item {
    width: 22.6rem;
  }
}
.is-active .p-produce_talent__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-active .p-produce_talent__list-item:nth-child(1) {
  transition-delay: 0.2s;
}
.is-active .p-produce_talent__list-item:nth-child(2) {
  transition-delay: 0.3s;
}
.is-active .p-produce_talent__list-item:nth-child(3) {
  transition-delay: 0.4s;
}
.is-active .p-produce_talent__list-item:nth-child(4) {
  transition-delay: 0.5s;
}
.is-active .p-produce_talent__list-item:nth-child(5) {
  transition-delay: 0.6s;
}
.is-active .p-produce_talent__list-item:nth-child(6) {
  transition-delay: 0.7s;
}
.is-active .p-produce_talent__list-item:nth-child(7) {
  transition-delay: 0.8s;
}
.is-active .p-produce_talent__list-item:nth-child(8) {
  transition-delay: 0.9s;
}
.is-active .p-produce_talent__list-item:nth-child(9) {
  transition-delay: 1s;
}
.is-active .p-produce_talent__list-item:nth-child(10) {
  transition-delay: 1.1s;
}
.p-produce_talent__controller {
  display: block;
  position: relative;
  margin-top: 8.8rem;
}
@media screen and (min-width: 961px) {
  .p-produce_talent__controller {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-direction: row-reverse;
  }
}
@media screen and (max-width: 960px) {
  .p-produce_talent__controller {
    margin-top: 6.8rem;
  }
}
.p-produce_talent__nav {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-produce_talent__nav {
    margin-top: 2.4rem;
  }
}
.p-produce_talent__nav-btn {
  width: 6.2rem;
  height: 4.5rem;
  display: block;
  position: relative;
  background: var(--color-yellow);
  border-radius: 50%;
  font-size: 0;
}
.p-produce_talent__nav-btn.is-disable {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-produce_talent__nav-btn {
    transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-produce_talent__nav-btn:hover {
    background-color: var(--color-black);
  }
}
.p-produce_talent__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;
}
.p-produce_talent__nav-btn.--prev::before {
  left: 35%;
  transform: scale(-1, 1) translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .p-produce_talent__nav-btn:hover::before {
    filter: invert(100%);
  }
}
.p-produce_talent__nav-btn + .p-produce_talent__nav-btn {
  margin-left: 1.2rem;
}
.p-produce_talent__scrollbar {
  height: 0.2rem;
  position: relative;
  background: var(--color-gray);
}
@media screen and (min-width: 961px) {
  .p-produce_talent__scrollbar {
    flex: 1 1 0;
    min-width: 0;
    margin-left: 4rem;
  }
}
@media screen and (max-width: 960px) {
  .p-produce_talent__scrollbar {
    width: 100%;
    height: 0.1rem;
  }
}
.p-produce_talent__scrollbar-line {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
}

.p-produce_talent_data {
  display: block;
  position: relative;
}
.p-produce_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-produce_talent_data__no {
    font-size: 1.3rem;
  }
}
.p-produce_talent_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 2.4rem;
}
@media screen and (max-width: 960px) {
  .p-produce_talent_data__thumb {
    margin-bottom: 4rem;
  }
}
.p-produce_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-produce_talent_data__title {
    font-size: 1.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-produce_talent_data:hover .p-produce_talent_data__title {
    text-decoration: underline;
  }
}
.p-produce_talent_data__info {
  display: block;
  position: relative;
  font-size: 1.6rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-produce_talent_data__info {
    font-size: 1.3rem;
  }
}

.p-produce_action {
  display: block;
  position: relative;
}
.p-produce_action__header {
  display: block;
  position: relative;
  margin-bottom: 5.8rem;
}
@media screen and (max-width: 960px) {
  .p-produce_action__header {
    margin-bottom: 4.2rem;
  }
}
.p-produce_action__title {
  display: flex;
  justify-content: center;
  position: relative;
}
.p-produce_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-produce_action__title-word {
    font-size: 4rem;
    letter-spacing: 0.03rem;
  }
}
.is-active .is-active .p-produce_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-active .is-active .p-produce_action__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .is-active .p-produce_action__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-produce_action__inner {
  display: block;
  position: relative;
}
.p-produce_action__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  gap: 0 4.8rem;
}
@media screen and (max-width: 960px) {
  .p-produce_action__list {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.5rem 2.5rem;
  }
}
.p-produce_action__list-item {
  min-width: 0;
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 5rem, 0);
}
.is-active .is-active .p-produce_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-active .is-active .p-produce_action__list-item:nth-child(1) {
  transition-delay: 0s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .is-active .p-produce_action__list-item:nth-child(10) {
  transition-delay: 0.9s;
}

.p-produce_action_data {
  display: block;
  position: relative;
}
.p-produce_action_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 2.2rem;
}
@media screen and (max-width: 960px) {
  .p-produce_action_data__thumb {
    margin-bottom: 1rem;
  }
}
.p-produce_action_data__thumb-img {
  padding-top: 56.25%;
  display: block;
  position: relative;
}
.p-produce_action_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-produce_action_data__title {
  display: block;
  position: relative;
  margin-bottom: 1rem;
  font-size: 1.8rem;
  line-height: 1.4;
}
@media screen and (max-width: 960px) {
  .p-produce_action_data__title {
    font-size: 1.3rem;
  }
}
.p-produce_action_data__description {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-produce_action_data__description {
    font-size: 1.2rem;
    line-height: 1.4;
  }
}
.p-produce_action_data__description a {
  text-decoration: underline;
}
@media (hover: hover) and (pointer: fine) {
  .p-produce_action_data__description a:hover {
    text-decoration: none;
  }
}

.p-creator {
  display: block;
  position: relative;
  padding: 18.4rem 0 40rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-creator {
    padding: 12.4rem 0 20.5rem;
  }
}
.p-creator__bar {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-creator__bar-img {
  position: absolute;
}
.p-creator__bar-img.--img1 {
  width: 28rem;
  top: -8.5rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-creator__bar-img.--img1 {
    width: 10rem;
    top: -7.5rem;
  }
}
.p-creator__bar-img.--img2 {
  width: 22rem;
  bottom: 6rem;
  left: 0;
}
@media screen and (max-width: 960px) {
  .p-creator__bar-img.--img2 {
    width: 8rem;
    bottom: 2rem;
    left: -2rem;
  }
}
.p-creator__sticker {
  width: 20rem;
  display: block;
  position: absolute;
  top: -15rem;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 960px) {
  .p-creator__sticker {
    width: 11.6rem;
    top: -16.3rem;
  }
}
.p-creator__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-creator__sticker-img:first-child {
  position: relative;
}
.p-creator__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-creator__line {
  width: 100%;
  display: block;
  position: absolute;
  bottom: 0;
  right: 0;
  overflow: hidden;
}
.p-creator__line-marquee {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 6%;
  left: 0;
  transform: rotate(-3.5deg);
  z-index: 1;
}
.is-load .p-creator__line-marquee {
  animation: text_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-creator__line-marquee {
    animation-duration: 240s;
  }
}
.p-creator__line-marquee::before {
  content: "";
  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;
  width: 0;
}
@media screen and (max-width: 960px) {
  .p-creator__line-marquee::before {
    background: url("../img/common/bar_copy-outline.png") repeat-x 0 50%/155.75rem auto;
  }
}
.is-load .p-creator__line-marquee::before {
  animation: text_marquee 60s linear infinite;
}
@media screen and (max-width: 960px) {
  .is-load .p-creator__line-marquee::before {
    animation-duration: 240s;
  }
}
.p-creator__line-marquee.is-active::before {
  width: 100%;
  transition: width 1s cubic-bezier(0.5, 1, 0.89, 1);
}

.p-creator__line-in {
  width: 100%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-creator__line-in {
    width: 100%;
    left: 5.5%;
  }
}
.p-creator__line-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-creator__line-img:first-child {
  position: relative;
}
.p-creator__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-creator__container {
  width: 86%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-creator__header {
  display: block;
  position: relative;
  z-index: 0;
  margin-bottom: 5rem;
}
.p-creator__title {
  display: flex;
  justify-content: flex-start;
  position: relative;
  text-align: center;
}
.p-creator__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;
  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-creator__title-word {
    font-size: 4.9rem;
  }
}
.is-active .p-creator__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-creator__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-creator__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-creator__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-creator__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-creator__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-creator__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-creator__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-creator__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-creator__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-creator__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-creator__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-creator__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
.is-active .p-creator__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-creator__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 5rem 5rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-creator__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 5rem 2.5rem;
  }
}
.p-creator__list-item {
  display: block;
  position: relative;
}
.p-creator__footer {
  width: 90%;
  display: block;
  position: relative;
  margin: 8.8rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-creator__footer {
    width: 95%;
    margin-top: 6rem;
  }
}
.p-creator__more {
  width: 11.5rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-creator__more {
    width: 10rem;
  }
}
.p-creator__more::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-creator__more::before {
    background-size: auto 0.55rem;
  }
}
.p-creator__more::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-creator__more::after {
    background-size: auto 0.55rem;
  }
}

.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.8rem 0 20rem;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .p-news {
    padding: 8.5rem 0 17.6rem;
  }
}
.p-news__bar {
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
.p-news__bar-img {
  position: absolute;
}
.p-news__bar-img.--img1 {
  width: 32rem;
  bottom: 2rem;
  right: 0;
}
@media screen and (max-width: 960px) {
  .p-news__bar-img.--img1 {
    width: 18rem;
    left: 0;
    bottom: 12rem;
  }
}
.p-news__sticker {
  width: 28rem;
  display: block;
  position: absolute;
  bottom: -19.5rem;
  right: -2.5rem;
}
@media screen and (max-width: 960px) {
  .p-news__sticker {
    width: 14rem;
    bottom: -8rem;
    left: -2rem;
  }
}
.p-news__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-news__sticker-img:first-child {
  position: relative;
}
.p-news__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-news__container {
  width: 93%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-news__container {
    width: 88%;
  }
}
.p-news__header {
  display: block;
  position: relative;
  margin: 0 auto 5rem;
  z-index: 0;
}
@media screen and (min-width: 961px) {
  .p-news__header {
    width: 93%;
    padding-right: 20rem;
  }
}
.p-news__title {
  display: flex;
  justify-content: flex-start;
  position: relative;
  text-align: center;
}
.p-news__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;
  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-news__title-word {
    font-size: 4.9rem;
  }
}
.is-active .p-news__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-news__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-news__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-news__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-news__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-news__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-news__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-news__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-news__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-news__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-news__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-news__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-news__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
.is-active .p-news__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-news__slide {
  display: block;
  position: relative;
}
.p-news__list {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-news__list-item {
  width: 55rem;
  flex-shrink: 0;
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-news__list-item {
    width: 25rem;
  }
}
.p-news__controller {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  margin-top: 4.8rem;
}
.p-news__nav {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
.p-news__nav-btn {
  width: 6.2rem;
  height: 4.5rem;
  display: block;
  position: relative;
  background: var(--color-yellow);
  border-radius: 50%;
  font-size: 0;
}
.p-news__nav-btn.is-disable {
  display: none;
}
@media (hover: hover) and (pointer: fine) {
  .p-news__nav-btn {
    transition: background-color 0.3s cubic-bezier(0.5, 1, 0.89, 1);
  }
  .p-news__nav-btn:hover {
    background-color: var(--color-black);
  }
}
.p-news__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;
}
.p-news__nav-btn.--prev::before {
  left: 35%;
  transform: scale(-1, 1) translate(-50%, 0);
}

@media (hover: hover) and (pointer: fine) {
  .p-news__nav-btn:hover::before {
    filter: invert(100%);
  }
}
.p-news__nav-btn + .p-news__nav-btn {
  margin-left: 1.2rem;
}
.p-news__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__scrollbar {
    height: 0.2rem;
    margin: 0 3.5rem 0 5.5rem;
  }
}
.p-news__scrollbar-line {
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: var(--color-black);
}
@media screen and (min-width: 961px) {
  .p-news__pagination {
    display: none;
  }
}
.p-news__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__pagination-num.-current {
  left: -1rem;
  transform: translate(-100%, -50%);
}
.p-news__pagination-num.-total {
  right: -1rem;
  transform: translate(100%, -50%);
}
.p-news__more {
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 961px) {
  .p-news__more {
    position: absolute;
    top: -9.5rem;
    right: 0;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-news__more {
    margin-top: 5.2rem;
    margin-left: auto;
    margin-right: -2rem;
  }
}
.is-active .p-news__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-news_data {
  display: block;
  position: relative;
}
.p-news_data__thumb {
  display: block;
  position: relative;
  margin-bottom: 2.2rem;
}
@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: 1rem;
  font-size: 2rem;
  line-height: 1.5;
}
@media screen and (max-width: 960px) {
  .p-news_data__title {
    margin-bottom: 0.8rem;
    font-size: 1.7rem;
  }
}
@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: 2;
  }
}
.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-times {
  display: block;
  position: relative;
  padding: 18.4rem 0 19rem;
  background: var(--color-white);
}
@media screen and (max-width: 960px) {
  .p-times {
    padding: 11.6rem 0 12.6rem;
  }
}
.p-times__sticker {
  width: 28rem;
  display: block;
  position: absolute;
  bottom: -25rem;
  left: -4.5rem;
}
@media screen and (max-width: 960px) {
  .p-times__sticker {
    width: 16rem;
    bottom: -12rem;
    left: -2.5rem;
  }
}
.p-times__sticker-img {
  width: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transform: scale3d(1.05, 1.05, 1.05);
}
.p-times__sticker-img:first-child {
  position: relative;
}
.p-times__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-times__container {
  width: 86%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-times__container {
    width: 88%;
  }
}
.p-times__header {
  display: block;
  position: relative;
  z-index: 0;
  margin-bottom: 5rem;
}
@media screen and (min-width: 961px) {
  .p-times__header {
    padding-right: 20rem;
  }
}
@media screen and (max-width: 960px) {
  .p-times__header {
    margin-bottom: 4rem;
  }
}
.p-times__title {
  display: block;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-times__title {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.p-times__title-text {
  display: flex;
  justify-content: flex-start;
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-times__title-text + .p-times__title-text {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 960px) {
  .p-times__title-text + .p-times__title-text {
    margin-top: -0.2rem;
  }
}
.p-times__title-word {
  display: block;
  position: relative;
  font-size: 8.2rem;
  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;
  font-weight: 700;
  letter-spacing: 0.1rem;
  color: var(--color-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-times__title-word {
    font-size: 3.8rem;
  }
}
.is-active .p-times__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-times__title-text:nth-child(1) .p-times__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(11) {
  transition-delay: 1s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(12) {
  transition-delay: 1.1s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(13) {
  transition-delay: 1.2s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(14) {
  transition-delay: 1.3s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(15) {
  transition-delay: 1.4s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(16) {
  transition-delay: 1.5s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(17) {
  transition-delay: 1.6s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(18) {
  transition-delay: 1.7s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(19) {
  transition-delay: 1.8s;
}
.is-active .p-times__title-text:nth-child(1) .p-times__title-word:nth-child(20) {
  transition-delay: 1.9s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(1) {
  transition-delay: 1s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(2) {
  transition-delay: 1.1s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(3) {
  transition-delay: 1.2s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(4) {
  transition-delay: 1.3s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(5) {
  transition-delay: 1.4s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(6) {
  transition-delay: 1.5s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(7) {
  transition-delay: 1.6s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(8) {
  transition-delay: 1.7s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(9) {
  transition-delay: 1.8s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(10) {
  transition-delay: 1.9s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(11) {
  transition-delay: 2s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(12) {
  transition-delay: 2.1s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(13) {
  transition-delay: 2.2s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(14) {
  transition-delay: 2.3s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(15) {
  transition-delay: 2.4s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(16) {
  transition-delay: 2.5s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(17) {
  transition-delay: 2.6s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(18) {
  transition-delay: 2.7s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(19) {
  transition-delay: 2.8s;
}
.is-active .p-times__title-text:nth-child(2) .p-times__title-word:nth-child(20) {
  transition-delay: 2.9s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(1) {
  transition-delay: 2s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(2) {
  transition-delay: 2.1s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(3) {
  transition-delay: 2.2s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(4) {
  transition-delay: 2.3s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(5) {
  transition-delay: 2.4s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(6) {
  transition-delay: 2.5s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(7) {
  transition-delay: 2.6s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(8) {
  transition-delay: 2.7s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(9) {
  transition-delay: 2.8s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(10) {
  transition-delay: 2.9s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(11) {
  transition-delay: 3s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(12) {
  transition-delay: 3.1s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(13) {
  transition-delay: 3.2s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(14) {
  transition-delay: 3.3s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(15) {
  transition-delay: 3.4s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(16) {
  transition-delay: 3.5s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(17) {
  transition-delay: 3.6s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(18) {
  transition-delay: 3.7s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(19) {
  transition-delay: 3.8s;
}
.is-active .p-times__title-text:nth-child(3) .p-times__title-word:nth-child(20) {
  transition-delay: 3.9s;
}
.p-times__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-times__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
.is-active .p-times__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-times__list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6rem 4rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-times__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem 2.2rem;
  }
}
.p-times__list-item {
  display: block;
  position: relative;
}
.p-times__list-item:first-child {
  grid-column: 1/-1;
}
.p-times__more {
  display: block;
  position: relative;
  opacity: 0;
}
@media screen and (min-width: 961px) {
  .p-times__more {
    position: absolute;
    top: -9rem;
    right: 0;
    transform: translate(0, -50%);
  }
}
@media screen and (max-width: 960px) {
  .p-times__more {
    margin-top: 3.8rem;
    margin-left: auto;
    margin-right: -2rem;
  }
}
.is-active .p-times__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-times_data {
  position: relative;
}
@media screen and (min-width: 961px) {
  .p-times_data {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  .p-times__list-item:first-child .p-times_data {
    display: grid;
    grid-template-columns: min(80%, 79rem) 1fr;
    gap: 2rem 4rem;
  }
}
@media screen and (min-width: 961px) and (min-width: 961px) and (max-width: 1200px) {
  .p-times__list-item:first-child .p-times_data {
    grid-template-columns: 1fr 300px;
  }
}
.p-times_data__header {
  display: block;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-times_data__header {
    margin-bottom: 1.2rem;
  }
}
.p-times_data__thumb {
  display: block;
  position: relative;
}
.p-times_data__thumb-img {
  display: block;
  position: relative;
}
.p-times_data__thumb-img img {
  width: 100%;
}
.p-times_data__inner {
  display: block;
  position: relative;
  opacity: 0;
  transform: translate3d(0, 3rem, 0);
}
.p-times__list-item:first-child .p-times_data__inner {
  padding-top: 1.5rem;
}
.is-active .p-times_data__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-times_data__title {
  display: block;
  position: relative;
  margin-bottom: 1.8rem;
  font-size: 1.7rem;
  line-height: 1.5;
  font-weight: 700;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (max-width: 960px) {
  .p-times_data__title {
    font-size: 1.3rem;
    margin-bottom: 0.6rem;
  }
  .p-times__list-item:first-child .p-times_data__title {
    font-size: 1.6rem;
    margin-bottom: 1.8rem;
  }
}
@media (hover: hover) and (pointer: fine) {
  .p-times_data:hover .p-times_data__title {
    text-decoration: underline;
  }
}
.p-times__list-item:first-child .p-times_data__title {
  -webkit-line-clamp: 5;
}
@media screen and (min-width: 961px) {
  .p-times__list-item:first-child .p-times_data__title {
    -webkit-line-clamp: 3;
  }
}
.p-times_data__text {
  display: block;
  position: relative;
  font-size: 1.4rem;
  line-height: 1.7;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
@media screen and (max-width: 960px) {
  .p-times_data__text {
    font-size: 1.2rem;
    letter-spacing: 0;
    line-height: 1.5;
  }
}
@media screen and (max-width: 960px) {
  .p-times_data__text {
    -webkit-line-clamp: 3;
  }
}
.p-times__list-item:first-child .p-times_data__text {
  display: block;
  -webkit-line-clamp: none;
}
.p-times_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);
}
.p-times_data__category::before {
  content: "";
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  border: 0.1rem solid var(--color-gray);
}

.p-client {
  display: block;
  position: relative;
  padding: 18.4rem 0 20.4rem;
}
@media screen and (max-width: 960px) {
  .p-client {
    padding: 11.5rem 0 11.4rem;
  }
}
.p-client__container {
  width: 90%;
  max-width: 1600px;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-client__container {
    width: 88%;
  }
}
.p-client__header {
  display: block;
  position: relative;
  z-index: 0;
  margin-bottom: 10rem;
}
@media screen and (max-width: 960px) {
  .p-client__header {
    margin-bottom: 4.5rem;
  }
}
.p-client__title {
  display: flex;
  justify-content: center;
  position: relative;
}
.p-client__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;
  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-client__title-word {
    font-size: 4.9rem;
  }
}
.is-active .p-client__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-client__title-word:nth-child(1) {
  transition-delay: 0s;
}
.is-active .p-client__title-word:nth-child(2) {
  transition-delay: 0.1s;
}
.is-active .p-client__title-word:nth-child(3) {
  transition-delay: 0.2s;
}
.is-active .p-client__title-word:nth-child(4) {
  transition-delay: 0.3s;
}
.is-active .p-client__title-word:nth-child(5) {
  transition-delay: 0.4s;
}
.is-active .p-client__title-word:nth-child(6) {
  transition-delay: 0.5s;
}
.is-active .p-client__title-word:nth-child(7) {
  transition-delay: 0.6s;
}
.is-active .p-client__title-word:nth-child(8) {
  transition-delay: 0.7s;
}
.is-active .p-client__title-word:nth-child(9) {
  transition-delay: 0.8s;
}
.is-active .p-client__title-word:nth-child(10) {
  transition-delay: 0.9s;
}
.p-client__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-client__inner {
  display: block;
  position: relative;
  margin: 0 auto;
}
.p-client__list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 4rem 1rem;
  position: relative;
}
@media screen and (max-width: 960px) {
  .p-client__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.5rem 1rem;
  }
}
.p-client__list-item {
  display: block;
  position: relative;
}
.p-client__footer {
  width: 90%;
  display: block;
  position: relative;
  margin: 8.8rem auto 0;
  overflow: hidden;
}
@media screen and (max-width: 960px) {
  .p-client__footer {
    width: 95%;
    margin-top: 6rem;
  }
}
.p-client__more {
  width: 11.5rem;
  display: block;
  position: relative;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .p-client__more {
    width: 10rem;
  }
}
.p-client__more::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-client__more::before {
    background-size: auto 0.55rem;
  }
}
.p-client__more::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-client__more::after {
    background-size: auto 0.55rem;
  }
}