@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-blue: #069bef;
  --color-share-bg: rgba(0, 0, 0, .6);
  --color-frame: #7796bb;
  --ease-main: cubic-bezier(0.33, 1, 0.68, 1);
  --ease-bound: cubic-bezier(0.34, 1.56, 0.64, 1);
  --font-jp: "Noto Serif JP","游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  --font-en: "Cormorant Infant","游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
}

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;
  color: var(--color-white);
  font-family: var(--font-jp);
  position: relative;
}
body.is-menu-open {
  overflow: hidden;
}

h2,
h3 {
  font-weight: 400;
}

a {
  text-decoration: none;
}

.p-link__item {
  display: block;
  width: 100%;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding: 0;
  position: relative;
  cursor: pointer;
  transition: transform 0.5s var(--ease-main);
}
@media (hover: hover) {
  .p-link__item:hover {
    transform: scale(0.97);
  }
}

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

.p-link__icon {
  width: 18px;
  height: 20px;
  position: absolute;
  top: 50%;
  left: 33px;
  transform: translateY(-50%);
}
@media screen and (max-width: 899px) {
  .p-link__icon {
    width: 12px;
    height: 14px;
    left: 23px;
  }
}
.p-link__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-white);
  fill-rule: evenodd;
}

.p-link__text {
  width: 100%;
  font-family: var(--font-jp);
  font-size: 2.6rem;
  font-weight: 500;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-link__text {
    font-size: 2rem;
  }
}
.p-link__text.--en {
  font-family: var(--font-en);
  font-size: 3.3rem;
  letter-spacing: 0.08em;
  top: 47%;
}
@media screen and (max-width: 899px) {
  .p-link__text.--en {
    font-size: 1.8rem;
  }
}

.p-wrap {
  position: relative;
}
.p-wrap::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  outline: 1px solid var(--color-frame);
  outline-offset: -11px;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 899px) {
  .p-wrap::before {
    outline-offset: -6px;
  }
}

.p-type {
  width: 100%;
  min-height: 100vh;
  position: relative;
}

.p-type__bg {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  background: url(../img/bg_pc.jpg) no-repeat center/cover;
}
.p-type__bg::before, .p-type__bg::after {
  content: "";
  display: block;
  width: 100%;
  padding-top: 78px;
  position: absolute;
  left: 0;
  background: url(../img/txt_line.png) repeat-x left top/2393.33px 78px;
  opacity: 0;
  transition: opacity 0.8s var(--ease-main) 0.2s, transform 0.8s var(--ease-main) 0.2s;
}
.is-load .p-type__bg::before, .is-load .p-type__bg::after {
  opacity: 1;
  transform: translateY(0);
}
@keyframes bgRight {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 2393.33px;
  }
}
@keyframes bgLeft {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: -2393.33px;
  }
}
@media screen and (max-width: 899px) {
  .p-type__bg::before, .p-type__bg::after {
    padding-top: 42px;
    background: url(../img/txt_line.png) repeat-x left top/1288.7px 42px;
  }
  @keyframes bgRight {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: 1288.7px;
    }
  }
  @keyframes bgLeft {
    0% {
      background-position-x: 0;
    }
    100% {
      background-position-x: -1288.7px;
    }
  }
}
.p-type__bg::before {
  top: -6px;
  animation: bgLeft 30s linear infinite;
  transform: translateY(-10px);
}
.p-type__bg::after {
  bottom: -6px;
  transform: translateY(10px);
  animation: bgRight 30s linear infinite;
}
@media screen and (max-width: 899px) {
  .p-type__bg {
    background: url(../img/bg_sp.jpg) no-repeat center/cover;
  }
}

.p-type__inner {
  opacity: 0;
  transition: opacity 0.4s var(--ease-main);
}
.is-vue-loaded .p-type__inner {
  opacity: 1;
}

.p-type__header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  transition: opacity 0.6s var(--ease-main);
}
.p-type__header.is-hidden {
  opacity: 0;
}
.p-type__header img {
  width: 100%;
}
.p-type__header-logo {
  width: 149px;
}
@media screen and (min-width: 900px) {
  .p-type__header-logo {
    position: absolute;
    top: 50px;
    right: 49px;
  }
}
@media screen and (max-width: 899px) {
  .p-type__header-logo {
    width: 127.5px;
    margin: 30px auto 0;
  }
}
.p-type__header-title {
  width: 480px;
  margin: 44px auto 0;
}
@media screen and (max-width: 899px) {
  .p-type__header-title {
    width: 240px;
    margin: 10px auto 0;
  }
}

.p-type__start {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-type__start {
    min-height: 790px;
  }
}
@media screen and (max-width: 899px) {
  .p-type__start {
    display: block;
    height: 100%;
    padding: 30px 0 0;
  }
}
.p-type__start-chara {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
}
.p-type__start-chara-item {
  position: absolute;
  bottom: 0;
}
.p-type__start-chara-item img {
  width: 100%;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
  opacity: 0;
  filter: blur(10px);
  transition: opacity 0.8s var(--ease-main) 0.2s, filter 0.8s var(--ease-main) 0.2s, transform 0.8s var(--ease-main) 0.2s;
}
.is-vue-loaded .p-type__start-chara-item img {
  opacity: 1;
  filter: blur(0);
}
.p-type__start-chara-item:nth-of-type(1) {
  width: 37.7%;
  max-width: 530px;
  left: 0;
  transform: translate(-22.1%, 12.2%);
}
.p-type__start-chara-item:nth-of-type(1) img {
  transform: translateX(-10px);
}
.is-vue-loaded .p-type__start-chara-item:nth-of-type(1) img {
  transform: translateX(0);
}
@media screen and (max-width: 899px) {
  .p-type__start-chara-item:nth-of-type(1) {
    width: 100%;
    max-width: 100%;
    transform: none;
  }
  .p-type__start-chara-item:nth-of-type(1) img {
    transition-delay: 0.4s;
    transform: translateY(10px);
  }
  .is-vue-loaded .p-type__start-chara-item:nth-of-type(1) img {
    transform: translateX(0);
  }
}
.p-type__start-chara-item:nth-of-type(2) {
  width: 27.8%;
  max-width: 400px;
  right: 0;
  transform: translate(-13.1%, 12.2%);
}
.p-type__start-chara-item:nth-of-type(2) img {
  transform: translateX(10px);
}
.is-vue-loaded .p-type__start-chara-item:nth-of-type(2) img {
  transform: translateX(0);
}
.p-type__start-inner {
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-type__start-inner {
    padding-bottom: 105.3%;
  }
}
.p-type__start-logo {
  width: 207px;
  margin: 0 auto;
  transition: transform 1s var(--ease-bound), opacity 1s var(--ease-main);
  opacity: 0;
  transform: translateY(10px);
}
.is-vue-loaded .p-type__start-logo {
  transform: translateY(0);
  opacity: 1;
}
.p-type__start-logo img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-type__start-logo {
    width: 127.5px;
  }
}
.p-type__start-title {
  width: 488px;
  margin: 20px auto 0;
  transition: transform 1s var(--ease-bound) 0.1s, opacity 1s var(--ease-main) 0.1s;
  opacity: 0;
  transform: translateY(10px);
}
.is-vue-loaded .p-type__start-title {
  transform: translateY(0);
  opacity: 1;
}
.p-type__start-title img {
  width: 100%;
}
@media screen and (max-width: 899px) {
  .p-type__start-title {
    width: 71%;
    margin: 43px auto 0;
  }
}
.p-type__start-lead {
  margin-top: 22px;
  font-size: 2rem;
  line-height: 1.7;
  text-align: center;
  color: var(--color-white);
  transition: transform 1s var(--ease-bound) 0.2s, opacity 1s var(--ease-main) 0.2s;
  opacity: 0;
  transform: translateY(10px);
}
.is-vue-loaded .p-type__start-lead {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-type__start-lead {
    margin-top: 24px;
    font-size: 1.3rem;
    line-height: 1.8;
  }
}
.p-type__start-link {
  width: 360px;
  margin: 45px auto 0;
  transition: transform 1s var(--ease-bound) 0.3s, opacity 1s var(--ease-main) 0.3s;
  opacity: 0;
  transform: translateY(10px);
}
.is-vue-loaded .p-type__start-link {
  transform: translateY(0);
  opacity: 1;
}
@media screen and (max-width: 899px) {
  .p-type__start-link {
    width: 72%;
    max-width: 375px;
    margin: 26px auto 0;
  }
}

.p-type__return {
  position: fixed;
  top: 44px;
  left: 43px;
}
.is-question-change .p-type__return {
  pointer-events: none;
}
.p-type__return-item {
  display: block;
  border: none;
  padding: 0;
  padding-left: 32px;
  cursor: pointer;
  transition: transform 0.5s var(--ease-main);
}
@media (hover: hover) {
  .p-type__return-item:hover {
    transform: translateX(-5px);
  }
  .p-type__return-item:hover .p-type__return-item-icon {
    animation: arrowLeft 0.6s var(--ease-main);
  }
}
.p-type__return-item-icon {
  width: 18px;
  height: 10px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@keyframes arrowLeft {
  0% {
    opacity: 1;
    transform: translate(0, -50%);
  }
  50% {
    opacity: 0;
    transform: translate(-8px, -50%);
  }
  50.1% {
    opacity: 0;
    transform: translate(8px, -50%);
  }
  100% {
    transform: translate(0, -50%);
  }
}
.p-type__return-item-icon::before, .p-type__return-item-icon::after {
  content: "";
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background-color: var(--color-white);
}
.p-type__return-item-icon::before {
  top: 1px;
  transform: rotate(-25deg);
}
.p-type__return-item-icon::after {
  bottom: 1px;
  transform: rotate(25deg);
}
.p-type__return-item-text {
  display: block;
  font-family: var(--font-jp);
  color: var(--color-white);
  font-size: 1.9rem;
  letter-spacing: 0.02em;
}

.p-type__play {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100vh;
  position: relative;
}
@media screen and (min-width: 900px) {
  .p-type__play {
    min-height: 610px;
  }
}
.p-type__play-contents {
  color: var(--color-white);
  opacity: 0;
  transform: translateY(10px);
  filter: blur(10px);
  transition: transform 1s var(--ease-bound), opacity 1s var(--ease-main), filter 1s var(--ease-main);
}
.is-question-load .p-type__play-contents {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
.p-type__play-contents-num {
  font-family: var(--font-en);
  font-size: 7.2rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 0 5px var(--color-blue), 0 0 5px var(--color-blue), 0 0 5px var(--color-blue);
  transition: transform 1s var(--ease-bound), opacity 1s var(--ease-main), filter 1s var(--ease-main);
}
.is-question-change .p-type__play-contents-num {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(10px);
}
@media screen and (max-width: 899px) {
  .p-type__play-contents-num {
    font-size: 4rem;
  }
}
.p-type__play-contents-text {
  margin-top: 44px;
  font-size: 2.7rem;
  text-align: center;
  transition: transform 1s var(--ease-bound) 0.1s, opacity 1s var(--ease-main) 0.1s, filter 1s var(--ease-main) 0.1s;
}
.is-question-change .p-type__play-contents-text {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(10px);
}
@media screen and (max-width: 899px) {
  .p-type__play-contents-text {
    width: 90%;
    margin: 30px auto 0;
    font-size: 1.5rem;
    line-height: 1.5;
    text-align: center;
  }
}
.p-type__play-link {
  display: flex;
  gap: 40px;
  margin-top: 55px;
  opacity: 0;
  transform: translateY(10px);
  filter: blur(10px);
  transition: transform 1s var(--ease-bound) 0.1s, opacity 1s var(--ease-main) 0.1s, filter 1s var(--ease-main) 0.1s;
}
.is-question-load .p-type__play-link {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
@media screen and (max-width: 899px) {
  .p-type__play-link {
    display: block;
    margin-top: 33px;
  }
}
.p-type__play-link-item {
  width: 360px;
  transition: transform 1s var(--ease-bound), opacity 1s var(--ease-main), filter 0.8s var(--ease-main);
}
.is-question-change .p-type__play-link-item {
  opacity: 0;
  transform: scale(0.95);
  filter: blur(8px);
  pointer-events: none;
}
.p-type__play-link-item.is-current {
  opacity: 0;
  transform: scale(1.02);
  filter: blur(8px);
}
@media screen and (max-width: 899px) {
  .p-type__play-link-item {
    width: 72%;
    max-width: 375px;
    margin: 0 auto;
  }
  .p-type__play-link-item + .p-type__play-link-item {
    margin-top: 15px;
  }
}

.p-type__result {
  position: relative;
  padding: 216px 0;
}
@media screen and (max-width: 899px) {
  .p-type__result {
    padding: 173px 0 172px;
  }
}
.p-type__result-op {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  transition: opacity 1s var(--ease-main) 2.5s;
}
.is-result-load .p-type__result-op {
  opacity: 0;
  pointer-events: none;
}
.p-type__result-op-text {
  display: flex;
  align-items: center;
  font-family: var(--font-en);
  font-size: 4.2rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 0 5px var(--color-blue), 0 0 5px var(--color-blue), 0 0 5px var(--color-blue);
}
@media screen and (max-width: 899px) {
  .p-type__result-op-text {
    font-size: 2.4rem;
  }
}
.p-type__result-op-text .p-in-item {
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.5s var(--ease-main), filter 1.5s var(--ease-main), transform 3s var(--ease-main);
}
.p-type__result-op-text .p-in-item:nth-of-type(even) {
  transform: scale(1.3);
}
.is-result-load .p-type__result-op-text .p-in-item:nth-of-type(even) {
  transform: scale(1);
}
.p-type__result-op-text .p-in-item:nth-of-type(odd) {
  transform: scale(1.3);
}
.is-result-load .p-type__result-op-text .p-in-item:nth-of-type(odd) {
  transform: scale(1);
}
.is-result-load .p-type__result-op-text .p-in-item {
  opacity: 1;
  filter: blur(0);
}
.p-type__result-op-text .p-in-item:nth-of-type(1) {
  transition-delay: 0.1s;
}
.p-type__result-op-text .p-in-item:nth-of-type(2) {
  transition-delay: 0.2s;
}
.p-type__result-op-text .p-in-item:nth-of-type(3) {
  transition-delay: 0.3s;
}
.p-type__result-op-text .p-in-item:nth-of-type(4) {
  transition-delay: 0.4s;
}
.p-type__result-op-text .p-in-item:nth-of-type(5) {
  transition-delay: 0.5s;
}
.p-type__result-op-text .p-in-item:nth-of-type(6) {
  transition-delay: 0.6s;
}
.p-type__result-op-text .p-in-item:nth-of-type(7) {
  transition-delay: 0.7s;
}
.p-type__result-op-text .p-in-item:nth-of-type(8) {
  transition-delay: 0.8s;
}
.p-type__result-op-text .p-in-item:nth-of-type(9) {
  transition-delay: 0.9s;
}
.p-type__result-op-text .p-in-item:nth-of-type(10) {
  transition-delay: 1s;
}
.p-type__result-op-text .p-in-item:nth-of-type(11) {
  transition-delay: 1.1s;
}
.p-type__result-op-text .p-in-item:nth-of-type(12) {
  transition-delay: 1.2s;
}
.p-type__result-op-text .p-in-item:nth-of-type(13) {
  transition-delay: 1.3s;
}
.p-type__result-op-text .p-in-item:nth-of-type(14) {
  transition-delay: 1.4s;
}
.p-type__result-op-text .p-in-item:nth-of-type(15) {
  transition-delay: 1.5s;
}
.p-type__result-op-text .p-in-item:nth-of-type(16) {
  transition-delay: 1.6s;
}
.p-type__result-op-text .p-in-item:nth-of-type(17) {
  transition-delay: 1.7s;
}
.p-type__result-op-text .p-in-item:nth-of-type(18) {
  transition-delay: 1.8s;
}
.p-type__result-op-text .p-in-item:nth-of-type(19) {
  transition-delay: 1.9s;
}
.p-type__result-op-text .p-in-item:nth-of-type(20) {
  transition-delay: 2s;
}
.p-type__result-title-top {
  font-family: var(--font-en);
  font-size: 2.5rem;
  font-weight: 500;
  text-align: center;
  text-shadow: 0 0 5px var(--color-blue), 0 0 5px var(--color-blue), 0 0 5px var(--color-blue);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s var(--ease-main) 2.6s, transform 0.8s var(--ease-bound) 2.6s;
}
.is-result-load .p-type__result-title-top {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-type__result-title-top {
    font-size: 1.3rem;
  }
}
.p-type__result-title-main {
  margin-top: 24px;
  text-align: center;
  font-size: 6.2rem;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s var(--ease-main) 2.7s, transform 0.8s var(--ease-bound) 2.7s;
}
.is-result-load .p-type__result-title-main {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-type__result-title-main {
    width: 85%;
    margin: 15px auto 0;
    text-align: center;
    font-size: 3.6rem;
    line-height: 1.2;
  }
}
.p-type__result-title-main small {
  display: block;
  margin-top: 18px;
  font-size: 1.9rem;
}
@media screen and (max-width: 899px) {
  .p-type__result-title-main small {
    margin-top: 9px;
    font-size: 1.2rem;
  }
}
.p-type__result-image {
  width: 720px;
  margin: 50px auto 0;
  opacity: 0;
  transform: scale(1.05);
  transition: opacity 0.8s var(--ease-main) 2.8s, transform 0.8s var(--ease-bound) 2.8s;
}
.is-result-load .p-type__result-image {
  opacity: 1;
  transform: scale(1);
}
@media screen and (max-width: 899px) {
  .p-type__result-image {
    width: 89.2%;
    margin: 30px auto 0;
  }
}
.p-type__result-detail {
  width: 800px;
  margin: 48px auto 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s var(--ease-main) 2.9s, transform 0.8s var(--ease-bound) 2.9s;
}
.is-result-load .p-type__result-detail {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-type__result-detail {
    width: 80%;
    margin: 28px auto 0;
  }
}
.p-type__result-detail-head {
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 899px) {
  .p-type__result-detail-head {
    font-size: 1.4rem;
    letter-spacing: 0.02em;
  }
}
.p-type__result-detail-detail {
  margin-top: 19px;
  font-size: 1.5rem;
  letter-spacing: 0.02em;
  line-height: 2.1;
}
@media screen and (max-width: 899px) {
  .p-type__result-detail-detail {
    margin-top: 13px;
    font-size: 1.2rem;
    line-height: 1.9;
  }
}
.p-type__result-share {
  margin-top: 55px;
  padding: 38px 0 42px;
  background-color: var(--color-share-bg);
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s var(--ease-main) 3s, transform 0.8s var(--ease-bound) 3s;
}
.is-result-load .p-type__result-share {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-type__result-share {
    margin-top: 27px;
    padding: 22px 0 27px;
  }
}
.p-type__result-share-head {
  width: 200px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.8s var(--ease-main) 3.1s, transform 0.8s var(--ease-bound) 3.1s;
}
.is-result-load .p-type__result-share-head {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-type__result-share-head {
    width: 157px;
  }
}
.p-type__result-share-list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 35px;
  margin-top: 18px;
}
@media screen and (max-width: 899px) {
  .p-type__result-share-list {
    gap: 28px;
    margin-top: 13px;
  }
}
.p-type__result-share-item {
  width: 36px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s var(--ease-main) 3s, transform 0.8s var(--ease-bound) 3s;
}
.p-type__result-share-item:nth-of-type(1) {
  transition-delay: 3.1s;
}
.p-type__result-share-item:nth-of-type(2) {
  transition-delay: 3.2s;
}
.p-type__result-share-item:nth-of-type(3) {
  transition-delay: 3.3s;
}
.is-result-load .p-type__result-share-item {
  opacity: 1;
  transform: translateY(0);
}
@media screen and (max-width: 899px) {
  .p-type__result-share-item {
    width: 27px;
  }
}
.p-type__result-share-item.--x {
  width: 33px;
}
@media screen and (max-width: 899px) {
  .p-type__result-share-item.--x {
    width: 24px;
  }
}
.p-type__result-share-item.--line {
  width: 36px;
  margin-left: 2px;
}
@media screen and (max-width: 899px) {
  .p-type__result-share-item.--line {
    width: 28px;
    margin-left: 0;
  }
}
.p-type__result-share-item-link {
  display: block;
  transition: transform 0.5s var(--ease-main);
}
@media (hover: hover) {
  .p-type__result-share-item-link:hover {
    transform: scale(0.9);
  }
}
.p-type__result-share-item-link svg {
  display: block;
  width: 100%;
  height: 100%;
  fill: var(--color-white);
  fill-rule: evenodd;
}
.p-type__result-link {
  width: 360px;
  margin: 50px auto 0;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.8s var(--ease-main) 3.2s, transform 0.8s var(--ease-bound) 3.2s;
}
.is-result-load .p-type__result-link {
  opacity: 1;
  transform: translateY(0);
}
.p-type__result-link .p-link__text {
  font-size: 2.1rem;
}
@media screen and (max-width: 899px) {
  .p-type__result-link .p-link__text {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 899px) {
  .p-type__result-link {
    width: 72%;
    max-width: 375px;
    margin: 31px auto 0;
  }
}

.p-footer {
  opacity: 0;
  transition: opacity 0.8s var(--ease-main);
}
.is-vue-loaded .p-footer {
  opacity: 1;
}

.p-footer {
  padding: 40px;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 1;
}
@media screen and (max-width: 899px) {
  .p-footer {
    padding: 32px 20px;
  }
}

.p-footer__link {
  margin-bottom: 16px;
}
@media screen and (max-width: 899px) {
  .p-footer__link {
    margin-bottom: 24px;
  }
}
.p-footer__link-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 40px;
}
@media screen and (max-width: 899px) {
  .p-footer__link-list {
    justify-content: center;
    gap: 32px;
  }
}
.p-footer__link-item {
  display: block;
  position: relative;
}
.p-footer__link-item::before {
  content: "";
  display: block;
  width: 1px;
  height: 13px;
  position: absolute;
  left: -21px;
  top: 50%;
  transform: translateY(-50%);
  background-color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-footer__link-item::before {
    height: 10px;
    left: -16px;
  }
}
.p-footer__link-item:first-of-type::before {
  display: none;
}
.p-footer__link-item-link {
  font-family: var(--font-en);
  font-size: 1.4rem;
  letter-spacing: 0.02em;
  color: var(--color-white);
  position: relative;
  transition: opacity 0.6s var(--ease-main);
}
@media (hover: hover) {
  .p-footer__link-item-link:hover {
    opacity: 0.5;
  }
}
@media screen and (max-width: 899px) {
  .p-footer__link-item-link {
    font-size: 1.2rem;
  }
}

.p-footer__legal {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .p-footer__legal {
    display: block;
  }
}
.p-footer__legal-item {
  font-size: 1rem;
  letter-spacing: 0.03em;
  color: var(--color-white);
}
@media screen and (max-width: 899px) {
  .p-footer__legal-item {
    text-align: center;
    font-size: 0.85rem;
    letter-spacing: 0.08em;
    line-height: 1.4;
  }
  .p-footer__legal-item + .p-footer__legal-item {
    margin-top: 12px;
  }
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.4s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

.fade-enter-to,
.fade-leave-from {
  opacity: 1;
}