@charset "UTF-8";
/*!
  Reset Stylesheet
  Author: yama-dev - https://github.com/yama-dev
  */
html, body, div, span, object, iframe, embed, main,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
abbr, address, cite, code,
del, dfn, em, img, ins, kbd, q, samp,
small, strong, sub, sup, var,
b, u, i,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, tbody, tfoot, thead, tr, th, td, caption,
article, aside, canvas, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, summary,
time, mark, audio, video, source {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: middle;
  background: transparent;
  box-sizing: border-box;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

blockquote, q {
  quotes: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title], dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

button, input, select, textarea, datalist {
  vertical-align: middle;
  min-height: 1.5em;
  background-color: transparent;
}

input[type=submit], input[type=reset] {
  cursor: pointer;
}

input:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset;
}

a[href^=tel] {
  display: inline-block;
  color: inherit;
}

.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

iframe {
  border: none;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

[tabindex="-1"]:focus:not(:focus-visible) {
  outline: 0;
}

[role=button] {
  cursor: pointer;
}

[aria-busy=true] {
  cursor: progress;
}

[aria-controls] {
  cursor: pointer;
}

[aria-disabled=true],
[disabled] {
  cursor: not-allowed;
}

body {
  line-height: 1;
}

body, button, input, select, textarea, datalist {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  word-wrap: break-word;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-pink: #EB619F;
  --color-select-bg: rgba(26,30,36,0.8);
  --color-play-text-bg: rgba(255,255,255,0.9);
  --color-play-text-border: #aed0f3;
  --color-play-frame-bg: rgba(57,64,80,0.7);
  --color-copy: #62433b;
  --color-frame: #ff993e;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-bound: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-in: cubic-bezier(0.64, 0, 0.78, 0);
  --font-family: "M PLUS 1p","Noto Sans JP","游ゴシック", YuGothic, "Helvetica", "ヒラギノ角ゴ ProN W3", "HiVragino Kaku Gothic ProN", "メイリオ", Meiryo, "Helvetica Neue", Arial, sans-serif;
}

:root {
  --color-black: #000;
  --color-white: #fff;
  --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;
  position: relative;
}
html.is-start {
  overflow: hidden;
}
html.is-result {
  overflow: visible;
}

body {
  color: var(--color-white);
  background-color: var(--color-white);
  font-family: var(--font-family);
  font-weight: 500;
  position: relative;
}
body.is-selection {
  overflow: hidden;
}

.svg-symbol {
  display: none;
}

a {
  text-decoration: none;
}

.c-link__item {
  display: block;
  position: relative;
  cursor: pointer;
  transition: transform 0.6s var(--ease-main);
}
@media (hover: hover) {
  .c-link__item:hover {
    transform: scale(0.98);
  }
}

.c-link__bg {
  width: 100%;
}
.c-link__bg img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}

.c-link__text {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .c-link__text {
    font-size: 2rem;
  }
}
@media screen and (max-width: 1300px) {
  .c-link__text {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 899px) {
  .c-link__text {
    font-size: 1.2rem;
  }
}

.l-wrap {
  min-height: 100vh;
  min-height: 100svh;
  position: relative;
}
@media screen and (min-width: 900px) {
  .l-wrap {
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 1300px) {
  .l-wrap {
    max-width: 460px;
  }
}
@media screen and (max-width: 899px) {
  .l-wrap {
    max-width: 100%;
    overflow: hidden;
  }
}
.l-wrap.is-start {
  display: grid;
  place-items: center;
  overflow: hidden;
}
.l-wrap.is-play {
  display: grid;
  place-items: center;
  height: 100vh;
  height: 100svh;
  position: relative;
}
@media screen and (min-width: 900px) {
  .l-wrap.is-play {
    min-height: 1076px;
  }
}
@media screen and (max-width: 1300px) {
  .l-wrap.is-play {
    min-height: 852px;
  }
}
@media screen and (max-width: 899px) {
  .l-wrap.is-play {
    min-height: auto;
    background-color: var(--color-frame);
  }
}

.l-wrap__inner {
  position: relative;
  box-sizing: content-box;
  position: relative;
}
@media screen and (min-width: 900px) {
  .l-wrap__inner {
    max-width: 600px;
    margin: 0 auto;
    border-right: 6px solid var(--color-frame);
    border-left: 6px solid var(--color-frame);
  }
  .l-wrap__inner::before, .l-wrap__inner::after {
    content: none;
  }
}
@media screen and (min-width: 900px) and (min-width: 900px) and (min-height: 976px) and (max-width: 1300px), screen and (min-width: 900px) and (min-width: 1301px) and (min-height: 1238px) {
  .l-wrap__inner::before, .l-wrap__inner::after {
    content: "";
    display: block;
    width: calc(100% + 12px);
    height: 6px;
    position: absolute;
    left: 50%;
    background-color: var(--color-frame);
  }
  .l-wrap__inner::before {
    top: 0;
    transform: translate(-50%, -100%);
  }
  .l-wrap__inner::after {
    bottom: 0;
    transform: translate(-50%, 100%);
  }
}
@media screen and (max-width: 1300px) {
  .l-wrap__inner {
    max-width: 460px;
  }
}
@media screen and (max-width: 899px) {
  .l-wrap__inner {
    max-width: 100%;
    overflow: hidden;
  }
}
.is-play .l-wrap__inner {
  width: 100%;
  position: relative;
}

.l-bg {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/bg_pc.jpg) no-repeat center/cover;
}
@media screen and (max-width: 899px) {
  .l-bg {
    display: none;
  }
}

.l-bg__block {
  display: grid;
  place-items: center;
  width: calc(50% - 300px);
  height: 100%;
}
@media screen and (max-width: 1300px) {
  .l-bg__block {
    width: calc(50% - 230px);
  }
}
.l-bg__block-inner {
  width: 100%;
}

.l-bg__title {
  width: 80%;
  margin: 0 auto;
  transform: rotate(-10deg) scale(1.1);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main), transform 0.5s var(--ease-bound);
}
.is-load .l-bg__title {
  opacity: 1;
  transform: rotate(0) scale(1);
}
.l-bg__title img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.l-bg__logo {
  width: 72%;
  margin: 0 auto 30px;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
.is-load .l-bg__logo {
  opacity: 1;
  transform: translateY(0);
}
.l-bg__logo img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.l-bg__caution {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 0.1s, transform 0.8s var(--ease-main) 0.1s;
}
@media screen and (max-width: 1300px) {
  .l-bg__caution {
    font-size: 0.8rem;
  }
}
.is-load .l-bg__caution {
  opacity: 1;
  transform: translateY(0);
}

.l-bg__copy {
  font-size: 1rem;
  line-height: 1.5;
  text-align: center;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 0.1s, transform 0.8s var(--ease-main) 0.1s;
}
@media screen and (max-width: 1300px) {
  .l-bg__copy {
    font-size: 0.8rem;
  }
}
@media screen and (max-width: 899px) {
  .l-bg__copy {
    font-size: 0.6rem;
  }
}
.is-load .l-bg__copy {
  opacity: 1;
  transform: translateY(0);
}

.p-start {
  width: 100%;
  position: relative;
}
.p-start::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 80%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/bg_sun.png) no-repeat center top/contain;
  filter: brightness(2);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s var(--ease-main), transform 2s var(--ease-main), filter 0.8s var(--ease-main);
  z-index: 1;
}
.is-load .p-start::before {
  filter: brightness(1);
  opacity: 1;
  transform: translateY(0);
}

.p-start__bg {
  position: relative;
}

.p-start__inner {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (min-width: 900px) {
  .p-start__inner {
    padding: 16px 0 622px;
  }
}
@media screen and (max-width: 1300px) {
  .p-start__inner {
    padding: 16px 0 512px;
  }
}
@media screen and (max-width: 899px) {
  .p-start__inner {
    padding: 10px 0 115%;
  }
}

.p-start__logo {
  width: 120px;
  margin: 0 auto 10px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
.is-load .p-start__logo {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .p-start__logo {
    width: 32%;
    margin: 0 auto 18px;
  }
}

.p-start__title {
  width: 200px;
  margin: 0 auto 6px;
  transform: rotate(10deg) scale(1.05);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main), transform 0.5s var(--ease-bound);
}
.is-load .p-start__title {
  opacity: 1;
  transform: rotate(0) scale(1);
}
@media screen and (min-width: 900px) {
  .p-start__title {
    width: 53.3%;
    margin: 0 auto 12px;
  }
}
@media screen and (max-width: 1300px) {
  .p-start__title {
    width: 50.3%;
    margin: 0 auto 8px;
  }
}

.p-start__lead {
  margin-bottom: 12px;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.5;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.2s, transform 0.8s var(--ease-main) 0.2s;
}
.is-load .p-start__lead {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .p-start__lead {
    margin-bottom: 20px;
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1300px) {
  .p-start__lead {
    margin-bottom: 12px;
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 899px) {
  .p-start__lead {
    margin-bottom: 8px;
    font-size: 1.2rem;
  }
}

.p-start__link {
  width: 216px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.8s var(--ease-main) 0.3s, transform 0.8s var(--ease-main) 0.3s;
}
.is-load .p-start__link {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .p-start__link {
    width: 58%;
  }
}
.p-header__logo {
  width: 120px;
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
}
.p-header__logo img {
  transform: translateY(-10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
.is-load .p-header__logo img {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .p-header__logo {
    width: 32%;
  }
}
.p-header__title {
  width: 80px;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
}
.p-header__title img {
  transform: rotate(10deg) scale(1.05);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main), transform 0.5s var(--ease-bound);
}
.is-load .p-header__title img {
  opacity: 1;
  transform: rotate(0) scale(1);
}
@media screen and (min-width: 900px) {
  .p-header__title {
    width: 21.33%;
  }
}
.p-header__title img {
  width: 100%;
}

.p-play {
  width: 100%;
  height: 100vh;
  height: 100svh;
  padding: 20px 0;
  position: relative;
  top: 0;
  left: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-main);
  background: url(../img/bg.jpg) no-repeat center top/100% auto;
}
.p-play::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 80%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/bg_sun.png) no-repeat center top/contain;
  filter: brightness(2);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s var(--ease-main), transform 2s var(--ease-main), filter 0.8s var(--ease-main);
}
.is-load .p-play::before {
  filter: brightness(1);
  opacity: 1;
  transform: translateY(0);
}
@media screen and (min-width: 900px) {
  .p-play {
    max-height: 1226px;
    min-height: 1076px;
  }
}
@media screen and (min-width: 900px) and (max-height: 1236px) {
  .p-play {
    max-height: 1235px;
  }
}
@media screen and (max-width: 1300px) {
  .p-play {
    max-height: 964px;
    min-height: 852px;
  }
}
@media screen and (max-width: 1300px) and (max-height: 975px) {
  .p-play {
    max-height: 975px;
  }
}
@media screen and (max-width: 899px) {
  .p-play {
    min-height: auto;
  }
}
.is-play .p-play {
  opacity: 1;
  pointer-events: auto;
}
.is-result .p-play {
  opacity: 0;
  pointer-events: none;
  position: absolute;
}
.is-disable .p-play {
  pointer-events: none;
}

.p-play__main-character {
  pointer-events: none;
}
.is-character-selected .p-play__main-character {
  opacity: 1;
  pointer-events: auto;
}
.p-play__main-character-item {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main);
  overflow: hidden;
}
@media screen and (max-width: 899px) {
  .p-play__main-character-item {
    max-width: 420px;
  }
}
@media screen and (min-width: 900px) {
  .p-play__main-character-item {
    bottom: -20px;
  }
}
.is-character-01 .p-play__main-character-item:nth-of-type(1) {
  opacity: 1;
}
.is-character-01 .p-play__main-character-item:nth-of-type(1) .p-in-image {
  transform: translateY(0);
}
.is-character-02 .p-play__main-character-item:nth-of-type(2) {
  opacity: 1;
}
.is-character-02 .p-play__main-character-item:nth-of-type(2) .p-in-image {
  transform: translateY(0);
}
.is-character-03 .p-play__main-character-item:nth-of-type(3) {
  opacity: 1;
}
.is-character-03 .p-play__main-character-item:nth-of-type(3) .p-in-image {
  transform: translateY(0);
}
.is-character-04 .p-play__main-character-item:nth-of-type(4) {
  opacity: 1;
}
.is-character-04 .p-play__main-character-item:nth-of-type(4) .p-in-image {
  transform: translateY(0);
}
.is-character-05 .p-play__main-character-item:nth-of-type(5) {
  opacity: 1;
}
.is-character-05 .p-play__main-character-item:nth-of-type(5) .p-in-image {
  transform: translateY(0);
}
.p-play__main-character-item .p-in-image {
  width: 100%;
  position: relative;
  transform: translateY(10px);
  transition: transform 0.8s var(--ease-main);
}
.p-play__main-character-item .p-in-image:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
}
.p-play__main-character-item .p-in-image img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.p-play__main-select {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background-color: var(--color-select-bg);
  opacity: 0;
  transition: opacity 0.5s var(--ease-main);
  pointer-events: none;
  z-index: 2;
}
.is-selection .p-play__main-select {
  opacity: 1;
  pointer-events: auto;
}
.p-play__main-select-list {
  max-width: 375px;
}
@media screen and (min-width: 900px) {
  .p-play__main-select-list {
    max-width: 600px;
  }
}
.p-play__main-select-item {
  width: 78%;
  margin: 0 auto;
  opacity: 0;
  transform: scale(0.95);
  transition: opacity 0.4s var(--ease-main), transform 0.4s var(--ease-bound);
}
.is-selection .p-play__main-select-item {
  opacity: 1;
  transform: scale(1);
}
.is-selection .p-play__main-select-item:nth-of-type(1) {
  transition-delay: 0.2s;
}
.is-selection .p-play__main-select-item:nth-of-type(2) {
  transition-delay: 0.3s;
}
.is-selection .p-play__main-select-item:nth-of-type(3) {
  transition-delay: 0.4s;
}
.is-selection .p-play__main-select-item:nth-of-type(4) {
  transition-delay: 0.5s;
}
.is-selection .p-play__main-select-item:nth-of-type(5) {
  transition-delay: 0.6s;
}
.p-play__main-select-item + .p-play__main-select-item {
  margin-top: 7px;
}

@media screen and (min-width: 900px) {
  .p-play__inner {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

.p-play__text {
  width: 90%;
  background-color: var(--color-play-text-bg);
  border: 1px solid var(--color-play-text-border);
  border-radius: 12px;
  position: fixed;
  left: 50%;
  bottom: 20px;
  cursor: pointer;
  transform: translate(-50%, 10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main), transform 0.8s var(--ease-main);
}
.is-load .p-play__text {
  opacity: 1;
  transform: translateX(-50%);
}
@media screen and (min-width: 900px) {
  .p-play__text {
    max-width: 540px;
    position: -webkit-sticky;
    position: sticky;
    bottom: 20px;
    left: 0;
    transform: translateY(10px);
    margin: 0 auto;
  }
  .is-load .p-play__text {
    transform: translateY(0);
  }
}
@media screen and (max-width: 1300px) {
  .p-play__text {
    max-width: 414px;
  }
}
@media screen and (max-width: 899px) {
  .p-play__text {
    max-width: 100%;
  }
}
.p-play__text-inner {
  padding: 25px 20px 38px;
}
.p-play__text-deco {
  width: 50px;
  position: absolute;
  left: 0;
  bottom: 0;
  transform: translate(-23%, 43%);
}
.p-play__text-name {
  width: 120px;
  position: absolute;
  left: 20px;
  top: 0;
  transform: translateY(-70%);
}
@media screen and (min-width: 900px) {
  .p-play__text-name {
    width: 32%;
  }
}
.p-play__text-name .p-in-bg {
  width: 100%;
}
.p-play__text-name .p-in-text {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  text-align: center;
  line-height: 1.3;
  font-weight: 700;
  color: var(--color-white);
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 900px) {
  .p-play__text-name .p-in-text {
    font-size: 1.8rem;
  }
}
.p-play__text-main {
  color: var(--color-black);
  font-size: 1.4rem;
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (min-width: 900px) {
  .p-play__text-main {
    font-size: 1.8rem;
  }
}
.p-play__text-arrow {
  width: 12px;
  position: absolute;
  right: 10px;
  bottom: 10px;
  animation: arrow 1s linear infinite;
}
.is-selection .p-play__text-arrow img {
  opacity: 0;
}
@keyframes arrow {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: translateY(8px);
  }
  50.1% {
    opacity: 0;
    transform: translateY(-8px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
@media screen and (min-width: 900px) {
  .p-play__text-arrow {
    width: 20px;
  }
}

.p-result {
  width: 100%;
  height: 100vh;
  height: 100svh;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  overflow: hidden;
  pointer-events: none;
  transition: opacity 0.8s var(--ease-main);
  background: url(../img/bg.jpg) no-repeat center top/100% auto;
}
.p-result::before {
  content: "";
  display: block;
  width: 100%;
  padding-top: 80%;
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/bg_sun.png) no-repeat center top/contain;
  filter: brightness(2);
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s var(--ease-main), transform 2s var(--ease-main), filter 0.8s var(--ease-main);
}
.is-load .p-result::before {
  filter: brightness(1);
  opacity: 1;
  transform: translateY(0);
}
.is-result .p-result {
  opacity: 1;
  overflow: visible;
  pointer-events: auto;
  position: relative;
}
.is-true .p-result {
  background: url(../img/bg_ture.png) no-repeat center/cover;
}
@media screen and (min-width: 900px) {
  .p-result {
    max-height: 1226px;
    min-height: 1076px;
  }
}
@media screen and (min-width: 900px) and (max-height: 1236px) {
  .p-result {
    max-height: 1235px;
  }
}
@media screen and (max-width: 1300px) {
  .p-result {
    max-height: 964px;
    min-height: 852px;
  }
}
@media screen and (max-width: 1300px) and (max-height: 975px) {
  .p-result {
    max-height: 975px;
  }
}
@media screen and (max-width: 899px) {
  .p-result {
    min-height: auto;
  }
}
@media screen and (max-width: 899px) {
  .p-result {
    min-height: auto;
  }
}

.p-result__inner {
  width: 100%;
  height: 100%;
  padding: 20px 0;
  position: relative;
  overflow: hidden;
}

.p-result__bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.6s var(--ease-main);
  pointer-events: none;
}
.is-particle-active .p-result__bg {
  opacity: 1;
}

.p-result__effect-item {
  position: absolute;
  opacity: 0;
}
.p-result__effect-item.--true {
  width: 100%;
  top: 54%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.p-result__effect-item.--true img {
  opacity: 0;
  filter: brightness(2) blur(10px);
  transform: scale(1.05);
  transition: opacity 0.8s var(--ease-main) 0.3s, transform 2s var(--ease-main) 0.3s, filter 0.8s var(--ease-main) 0.3s;
}
.is-true .p-result__effect-item.--true img {
  opacity: 1;
  filter: brightness(1) blur(0);
  transform: scale(1);
}
.is-true .p-result__effect-item.--true {
  opacity: 1;
}
.p-result__effect-item.--bad {
  width: 100%;
  top: 0;
  left: 0;
  transform: translateY(-70px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 0.3s, transform 0.8s var(--ease-main) 0.3s;
}
.is-bad .p-result__effect-item.--bad {
  transform: translateY(0);
  opacity: 1;
}

.p-result__title-item {
  position: absolute;
  opacity: 0;
  z-index: 1;
}
.p-result__title-item.--true {
  width: 70%;
  top: 11.1%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.8s var(--ease-main) 0.1s;
}
.p-result__title-item.--true img {
  transform: scale(1.1);
  transition: transform 1s var(--ease-main) 0.1s;
}
@media screen and (max-width: 899px) {
  .p-result__title-item.--true {
    max-width: 320px;
  }
}
.is-true .p-result__title-item.--true {
  opacity: 1;
}
.is-true .p-result__title-item.--true img {
  transform: translateY(0);
}
.p-result__title-item.--bad {
  width: 58%;
  top: 13.3%;
  left: 50%;
  transform: translateX(-50%);
  transition: opacity 0.8s var(--ease-main) 0.1s;
}
@media screen and (max-width: 899px) {
  .p-result__title-item.--bad {
    max-width: 320px;
  }
}
.p-result__title-item.--bad img {
  transform: scale(1.1);
  transition: transform 1s var(--ease-main) 0.1s;
}
.is-bad .p-result__title-item.--bad {
  opacity: 1;
}
.is-bad .p-result__title-item.--bad img {
  transform: translateY(0);
}

.p-result__character-item {
  width: 100%;
  position: absolute;
  bottom: -10%;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main);
}
@media screen and (max-width: 899px) {
  .p-result__character-item {
    max-width: 420px;
  }
}
.is-character-01 .p-result__character-item:nth-of-type(1) {
  opacity: 1;
}
.is-character-01 .p-result__character-item:nth-of-type(1) .p-in-image {
  transform: translateY(10px);
}
.is-character-02 .p-result__character-item:nth-of-type(2) {
  opacity: 1;
}
.is-character-02 .p-result__character-item:nth-of-type(2) .p-in-image {
  transform: translateY(10px);
}
.is-character-03 .p-result__character-item:nth-of-type(3) {
  opacity: 1;
}
.is-character-03 .p-result__character-item:nth-of-type(3) .p-in-image {
  transform: translateY(10px);
}
.is-character-04 .p-result__character-item:nth-of-type(4) {
  opacity: 1;
}
.is-character-04 .p-result__character-item:nth-of-type(4) .p-in-image {
  transform: translateY(10px);
}
.is-character-05 .p-result__character-item:nth-of-type(5) {
  opacity: 1;
}
.is-character-05 .p-result__character-item:nth-of-type(5) .p-in-image {
  transform: translateY(10px);
}
.p-result__character-item .p-in-image {
  width: 100%;
  position: relative;
  transform: translateY(10px);
  transition: transform 0.8s var(--ease-main);
}
.p-result__character-item .p-in-image:nth-of-type(2) {
  position: absolute;
  top: 0;
  left: 0;
}
.p-result__character-item .p-in-image img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}

.p-result__link {
  width: 100%;
  left: 0;
  bottom: 27px;
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 0.1s, transform 0.8s var(--ease-main) 0.1s;
}
@media screen and (min-width: 900px) {
  .p-result__link {
    margin-top: -174px;
    position: -webkit-sticky;
    position: sticky;
    left: 0;
  }
}
@media screen and (max-width: 1300px) {
  .p-result__link {
    margin-top: -150px;
  }
}
@media screen and (max-width: 899px) {
  .p-result__link {
    margin: 0;
    position: absolute;
  }
}
.is-result .p-result__link {
  transform: translateY(0);
  opacity: 1;
}
.p-result__link-item:nth-of-type(1) {
  width: 216px;
  margin: 0 auto 10px;
}
@media screen and (min-width: 900px) {
  .p-result__link-item:nth-of-type(1) {
    width: 58%;
  }
}
.p-result__link-item:nth-of-type(2) {
  width: 175px;
  margin: 0 auto;
}
@media screen and (min-width: 900px) {
  .p-result__link-item:nth-of-type(2) {
    width: 47%;
  }
}

.p-footer {
  width: 100%;
  line-height: 1.5;
  color: var(--color-copy);
  position: absolute;
  left: 0;
  bottom: 14px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-main);
}
.is-load .p-footer {
  opacity: 1;
}

.p-footer__caution {
  margin-bottom: 6px;
  font-size: 0.8rem;
  text-align: center;
}

.p-footer__copy {
  font-size: 0.8rem;
  text-align: center;
}