:root {
  --color-grad: to right,rgba(0, 180, 174, .2),rgba(170, 120, 180, .2);
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
}

img {
  max-width: 100%;
  display: block;
  vertical-align: middle;
}

@media screen and (min-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
  .is-pc-inline {
    display: inline-block;
  }
  .is-sp-inline {
    display: none;
  }
}
@media screen and (max-width: 899px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
  .is-pc-inline {
    display: none;
  }
  .is-sp-inline {
    display: inline-block;
  }
}
html {
  font-size: 0.625em;
}

body {
  font-weight: 400;
  font-family: var(--font-jp);
}

h2,
h3 {
  font-weight: 400;
}

.svg-symbol {
  display: none;
}

a {
  text-decoration: none;
}

.l-bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/bg_base.jpg) no-repeat center/cover;
}

.l-bg__main {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1s var(--ease-main), filter 1s var(--ease-main);
}
.is-particle-active .l-bg__main {
  opacity: 1;
  filter: blur(0);
}
.l-bg__main canvas {
  width: 100%;
  height: 100%;
}

.l-bg_deco {
  width: 100%;
  height: 100vh;
  margin-top: -100vh;
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}
.l-bg_deco__item {
  width: 722px;
  position: absolute;
  transition: opacity 1s var(--ease-main) 0.1s, filter 1s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
  opacity: 0;
  filter: blur(10px);
}
.is-load .l-bg_deco__item {
  opacity: 1;
  filter: blur(0);
}
@media screen and (max-width: 899px) {
  .l-bg_deco__item {
    width: 100%;
  }
}
.l-bg_deco__item:nth-of-type(1) {
  top: 0;
  left: 0;
  transform: translateX(-10px);
}
.is-load .l-bg_deco__item:nth-of-type(1) {
  transform: translateX(0);
}
.l-bg_deco__item:nth-of-type(2) {
  right: 0;
  bottom: 0;
  transform: translateX(10px);
}
.is-load .l-bg_deco__item:nth-of-type(2) {
  transform: translateX(0);
}

.l-main {
  position: relative;
  overflow: visible;
}

.l-contents {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: 100vh;
  position: relative;
  z-index: 1;
}

.l-header__logo {
  width: 330px;
  position: absolute;
  left: 50%;
  top: 20px;
  transform: translateX(-50%);
  z-index: 2;
}
.l-header__logo img {
  transition: transform 3s var(--ease-main), filter 1s var(--ease-main), opacity 1s var(--ease-main);
  transform: scale(1.05);
  opacity: 0;
  filter: blur(10px);
}
.is-load .l-header__logo img {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
@media screen and (max-width: 899px) {
  .l-header__logo {
    width: 54%;
    max-width: 300px;
    top: min(4vw, 22px);
  }
}

.c-link__text {
  display: block;
  padding: 26px;
  background: linear-gradient(var(--color-grad));
  position: relative;
  border-radius: 50rem;
  transition: color 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
@media screen and (min-width: 900px) {
  .c-link__text:hover {
    transform: scale(0.97);
    color: var(--color-green);
  }
  .c-link__text:hover svg {
    fill: var(--color-green);
  }
}
@media screen and (max-width: 899px) {
  .c-link__text {
    padding: 6.5%;
  }
}
.--border .c-link__text {
  background: transparent;
  box-sizing: border-box;
  border: 1px solid var(--color-black);
}
.c-link__text-main {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0.16em;
}
@media screen and (max-width: 899px) {
  .c-link__text-main {
    font-size: min(4vw, 2.2rem);
  }
}
.c-link__text-icon {
  width: 28px;
  height: 10px;
  position: absolute;
  top: 50%;
  right: 28px;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .c-link__text-icon {
    width: 8%;
    height: auto;
    padding-top: 3%;
    right: 6%;
  }
}
.--return .c-link__text-icon {
  right: auto;
  left: 28px;
  transform: translateY(-50%) rotateY(180deg);
}
@media screen and (max-width: 899px) {
  .--return .c-link__text-icon {
    left: 6%;
  }
}
.c-link__text-icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-black);
  transition: fill 0.8s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .c-link__text-icon svg {
    position: absolute;
    top: 0;
    left: 0;
  }
}

.p-start__inner {
  width: 100%;
  position: relative;
}

.p-start__logo {
  width: 584px;
  margin: 0 auto 8px;
  transition: transform 3s var(--ease-main), filter 1s var(--ease-main), opacity 1s var(--ease-main);
  transform: scale(1.05);
  opacity: 0;
  filter: blur(10px);
}
.is-load .p-start__logo {
  opacity: 1;
  filter: blur(0);
  transform: scale(1);
}
@media screen and (max-width: 899px) {
  .p-start__logo {
    width: 90%;
    max-width: 600px;
    margin: 0 auto;
  }
}

.p-start__link {
  width: 400px;
  margin: 0 auto;
  transition: opacity 1s var(--ease-main) 0.1s, filter 1s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
}
.is-load .p-start__link {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-start__link {
    width: 73%;
    max-width: 438px;
  }
}
.p-play {
  width: 60%;
  margin: 0 auto;
  padding: 150px 0;
}
@media screen and (min-width: 900px) {
  .p-play {
    min-width: 700px;
  }
}
@media screen and (max-width: 899px) {
  .p-play {
    width: 100%;
  }
}

.p-play__inner {
  width: 100%;
  margin-top: 33px;
}
@media screen and (max-width: 899px) {
  .p-play__inner {
    margin-top: 0;
  }
}

.p-play__question {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 60px;
  transition: opacity 1s var(--ease-main) 0.1s, filter 1s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
}
.is-load .p-play__question {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-play__question {
    display: block;
    width: 90%;
    margin: 0 auto 45px;
  }
}
.p-play__question-icon {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
  margin-right: 16px;
}
@media screen and (max-width: 899px) {
  .p-play__question-icon {
    margin-bottom: 15px;
    margin-right: 0;
    font-size: 2rem;
    text-align: center;
  }
}
.p-play__question-text {
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 899px) {
  .p-play__question-text {
    font-size: min(4.8vw, 2.5rem);
    line-height: 1.6;
    text-align: center;
  }
}

.p-play__link-item {
  width: 500px;
  margin: 0 auto 14px;
  transition: opacity 1s var(--ease-main) 0.1s, filter 1s var(--ease-main) 0.1s, transform 1s var(--ease-main) 0.1s;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
}
.p-play__link-item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.p-play__link-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-play__link-item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.p-play__link-item:nth-of-type(4) {
  transition-delay: 0.5s;
}
.p-play__link-item:nth-of-type(5) {
  transition-delay: 0.6s;
}
.is-load .p-play__link-item {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-play__link-item {
    width: 74%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
}
.p-play__link-item:last-of-type {
  margin-bottom: 0;
}

.p-result {
  width: 62%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 200px 0 85px;
}
@media screen and (min-width: 900px) {
  .p-result {
    min-width: 700px;
  }
}
@media screen and (max-width: 899px) {
  .p-result {
    width: 86%;
    padding: 100px 0 130px;
  }
}

.p-result__op {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background: url(../img/bg_base.jpg) no-repeat center/cover;
  pointer-events: none;
  transition: opacity 1s var(--ease-main) 2.5s, filter 1s var(--ease-main) 2.5s;
}
.is-load .p-result__op {
  opacity: 0;
}
.p-result__op-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}
.p-result__op-text .p-in-item {
  display: block;
  font-size: min(7.5vw, 6rem);
  letter-spacing: 0.05em;
  opacity: 0;
  transform: scale(1.2);
  filter: blur(10px);
  transition: transform 3s var(--ease-main), opacity 1s var(--ease-main), filter 1s var(--ease-main);
}
.is-load .p-result__op-text .p-in-item {
  opacity: 1;
  transform: scale(1);
  filter: blur(0);
}
.p-result__op-text .p-in-item:nth-of-type(1) {
  transition-delay: 0.15s;
}
.p-result__op-text .p-in-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.p-result__op-text .p-in-item:nth-of-type(3) {
  transition-delay: 0.45s;
}
.p-result__op-text .p-in-item:nth-of-type(4) {
  transition-delay: 0.6s;
}
.p-result__op-text .p-in-item:nth-of-type(5) {
  transition-delay: 0.75s;
}
.p-result__op-text .p-in-item:nth-of-type(6) {
  transition-delay: 0.9s;
}
.p-result__op-text .p-in-item:nth-of-type(7) {
  transition-delay: 1.05s;
}
.p-result__op-text .p-in-item:nth-of-type(8) {
  transition-delay: 1.2s;
}
.p-result__op-text .p-in-item:nth-of-type(9) {
  transition-delay: 1.35s;
}
.p-result__op-text .p-in-item:nth-of-type(10) {
  transition-delay: 1.5s;
}
.p-result__op-text .p-in-item:nth-of-type(11) {
  transition-delay: 1.65s;
}

.p-result__contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}
@media screen and (max-width: 899px) {
  .p-result__contents {
    display: block;
    margin-bottom: 20px;
  }
}
.p-result__contents-image {
  width: 54%;
  transition: opacity 1s var(--ease-main) 2.8s, filter 1s var(--ease-main) 2.8s, transform 1s var(--ease-main) 2.8s;
  opacity: 0;
  filter: blur(10px);
  transform: scale(1.08) rotate(8deg);
}
.is-load .p-result__contents-image {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-result__contents-image {
    width: 100%;
    margin-bottom: 14px;
  }
}
.p-result__contents-detail {
  width: 40%;
}
@media screen and (max-width: 899px) {
  .p-result__contents-detail {
    width: 100%;
  }
}
.p-result__contents-detail-name {
  margin-bottom: 15px;
  font-size: 6rem;
  letter-spacing: 0.02em;
  transition: opacity 1s var(--ease-main) 2.8s, filter 1s var(--ease-main) 2.8s, transform 1s var(--ease-main) 2.8s;
  opacity: 0;
  filter: blur(10px);
  transform: translateX(10px);
}
.p-result__contents-detail-name .p-in-sub {
  font-size: 2.2rem;
}
@media screen and (max-width: 899px) {
  .p-result__contents-detail-name .p-in-sub {
    font-size: 1.6rem;
  }
}
.p-result__contents-detail-name .p-in-main {
  margin: 12px 0;
}
@media screen and (max-width: 899px) {
  .p-result__contents-detail-name .p-in-main {
    margin: 8px 0;
  }
}
.is-load .p-result__contents-detail-name {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-result__contents-detail-name {
    text-align: center;
    font-size: 10vw;
    transform: translateY(10px);
  }
}
.p-result__contents-detail-cv {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 20px;
  padding: 2px 30px 4px 10px;
  font-size: 1.9rem;
  background: linear-gradient(var(--color-grad));
  transition: opacity 1s var(--ease-main) 2.9s, filter 1s var(--ease-main) 2.9s, transform 1s var(--ease-main) 2.9s;
  opacity: 0;
  filter: blur(10px);
  transform: translateX(10px);
}
.is-load .p-result__contents-detail-cv {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-result__contents-detail-cv {
    padding: 1% 7% 0.7% 2%;
    font-size: 4vw;
    text-align: center;
    margin: 0 auto 4%;
    transform: translateY(10px);
  }
}
.p-result__contents-detail-text {
  font-size: 1.6rem;
  line-height: 1.7;
  transition: opacity 1s var(--ease-main) 2.8s, filter 1s var(--ease-main) 2.8s, transform 1s var(--ease-main) 2.8s;
  opacity: 0;
  filter: blur(10px);
  transform: translateX(10px);
}
.is-load .p-result__contents-detail-text {
  opacity: 1;
  filter: blur(0);
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-result__contents-detail-text {
    font-size: 3.4vw;
    line-height: 1.7;
    transform: translateY(10px);
  }
}

.p-result__link-item {
  width: 400px;
  margin: 0 auto 18px;
  transition: opacity 1s var(--ease-main) 2.9s, filter 1s var(--ease-main) 2.9s, transform 1s var(--ease-main) 2.9s;
  opacity: 0;
  filter: blur(10px);
  transform: translateY(10px);
}
.p-result__link-item:nth-of-type(1) {
  transition-delay: 2.9s;
}
.p-result__link-item:nth-of-type(2) {
  transition-delay: 3s;
}
.is-load .p-result__link-item {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-result__link-item {
    width: 86%;
    max-width: 400px;
    margin: 0 auto 10px;
  }
}
.p-result__link-item:last-of-type {
  margin-bottom: 0;
}

footer {
  font-size: 1.6rem;
}
@media screen and (max-width: 899px) {
  footer {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 899px) {
  footer .aniplex_link__item {
    font-size: 1.05rem;
  }
}
@media screen and (min-width: 900px) {
  footer .footer_notice {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 899px) {
  footer .footer_notice,
  footer .footer_copyright {
    font-size: 1.05rem;
  }
}