@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, caption, tbody, tfoot, thead, tr, th, td,
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;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: 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;
}

.swiper-container {
  position: relative;
  padding: 0;
  overflow: hidden;
}
.swiper-container.swiper-container-autoheight {
  height: auto;
}

.swiper-wrapper {
  position: relative;
  padding: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: flex-start;
  transition-property: transform;
  box-sizing: content-box;
}
.swiper-container-vertical .swiper-wrapper {
  flex-direction: column;
}
.swiper-container-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-slide {
  position: relative;
  width: 100%;
  height: 100%;
  flex-shrink: 0;
}
.swiper-slide.swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-lazy-preloader {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #d9d9d9;
  overflow: hidden;
}
.swiper-lazy-preloader::before {
  position: absolute;
  pointer-events: none;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgba(217, 217, 217, 0) 0, rgba(255, 255, 255, 0.35) 50%, rgba(217, 217, 217, 0) 100%);
  background-size: 100% 100%;
  animation: loading_skeleton 1s linear infinite;
}

.swiper-pagination {
  margin-top: 6px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .swiper-pagination {
    margin-top: 8px;
  }
}

body.is-modal-open {
  overflow: hidden;
}
body .m-modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  overflow: auto;
  touch-action: none;
  pointer-events: none;
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
}
body .m-modal.is-open {
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0s;
  opacity: 1;
  visibility: visible;
  touch-action: auto;
  pointer-events: auto;
}
body .m-modal .m-modal__content {
  position: relative;
  width: 100%;
  max-width: none;
  min-width: 0;
  pointer-events: none;
  text-align: left;
  overflow: hidden;
}
body .m-modal__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  cursor: pointer;
}
body .m-modal__close-btn {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
@media not all and (max-width: 900px) {
  body .m-modal__close-btn {
    transform-origin: top right;
    transition: transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  body .m-modal__close-btn:hover {
    transform: scale(1.1);
  }
}
body .m-modal__close-btn::before, body .m-modal__close-btn::after {
  content: "";
  position: absolute;
  top: 24px;
  right: -9px;
  width: 70px;
  height: 4px;
}
@media screen and (max-width: 900px) {
  body .m-modal__close-btn::before, body .m-modal__close-btn::after {
    top: 15px;
    right: -6px;
    width: 48px;
    height: 3px;
  }
}
body .m-modal__close-btn::before {
  transform: rotate(45deg);
}
body .m-modal__close-btn::after {
  transform: rotate(-45deg);
}

@media not all and (max-width: 900px) {
  .is-pc {
    display: block;
  }
  .is-sp {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .is-pc {
    display: none;
  }
  .is-sp {
    display: block;
  }
}
html {
  touch-action: manipulation;
}

body,
button,
input,
select,
textarea,
datalist {
  font-family: "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-wrap: break-word;
  font-size: 13px;
  line-height: 1.3;
  letter-spacing: normal;
}
@media not all and (max-width: 900px) {
  body,
  button,
  input,
  select,
  textarea,
  datalist {
    font-size: 16px;
  }
}

body {
  position: relative;
  color: #fff;
}

h2 {
  font-weight: 400;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  vertical-align: baseline;
}

* {
  -webkit-tap-highlight-color: transparent;
}

main {
  display: block;
}

a {
  color: currentColor;
  text-decoration: none;
}

svg {
  fill-rule: evenodd;
  width: 100%;
  height: 100%;
}

[data-modal] {
  cursor: pointer;
}

[tabindex] {
  cursor: pointer;
}
[tabindex].focus-visible {
  outline: 1px solid;
}

.js-focus-visible :focus:not(:focus-visible) {
  outline: 0;
}

.visually-hidden {
  font-size: 0;
  opacity: 0;
}

.l-wrapper {
  position: relative;
  min-height: 100vh;
  opacity: 0;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  overflow: hidden;
}
.is-load .l-wrapper {
  opacity: 1;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../img/bg_pc.jpg) center center no-repeat;
  background-size: cover;
  transform: translate3d(0, 0, 0);
}
@media screen and (max-width: 900px) {
  .l-bg {
    background-image: url(../img/bg_sp.jpg);
  }
}
.l-bg__circle {
  position: absolute;
  top: 0;
  left: 50%;
  width: 72%;
  padding-top: 72%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 900px) {
  .l-bg__circle {
    width: 140%;
    padding-top: 140%;
    transform: translate(-50%, -37%);
  }
}
.l-bg__circle::before, .l-bg__circle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-bg__circle::before {
  background: url(../img/bg_moon.png) center center no-repeat;
  background-size: contain;
}
.l-bg__circle::after {
  background: url(../img/bg_moon_txt.png) center center no-repeat;
  background-size: contain;
  animation: rotate_bg_txt 40s linear infinite;
}
.l-bg__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: url(../img/bg_repeat.png) center center repeat;
  background-size: 50px auto;
}
@media screen and (max-width: 900px) {
  .l-bg__inner {
    background-size: 25px auto;
  }
}

@keyframes rotate_bg_txt {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(360deg);
  }
}
.l-frame {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  pointer-events: none;
  z-index: 1;
}
.l-frame__center {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
}
.l-frame__center-img {
  position: absolute;
  left: 50%;
  top: 13px;
  width: 140px;
  transform: translateX(-50%);
}
@media screen and (max-width: 900px) {
  .l-frame__center-img {
    top: 7px;
    width: 65px;
  }
}
.l-frame__center-img:nth-child(2) {
  top: auto;
  bottom: 13px;
}
.l-frame__corner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-frame__corner-img {
  position: absolute;
  width: 175px;
}
@media screen and (max-width: 900px) {
  .l-frame__corner-img {
    width: 90px;
  }
}
.l-frame__corner-img:nth-child(1) {
  top: 20px;
  left: 20px;
}
@media screen and (max-width: 900px) {
  .l-frame__corner-img:nth-child(1) {
    top: 10px;
    left: 10px;
  }
}
.l-frame__corner-img:nth-child(2) {
  top: 20px;
  right: 20px;
  transform: scaleX(-1);
}
@media screen and (max-width: 900px) {
  .l-frame__corner-img:nth-child(2) {
    top: 10px;
    right: 10px;
  }
}
.l-frame__corner-img:nth-child(3) {
  bottom: 20px;
  left: 20px;
  transform: scaleY(-1);
}
@media screen and (max-width: 900px) {
  .l-frame__corner-img:nth-child(3) {
    top: 10px;
    left: 10px;
  }
}
.l-frame__corner-img:nth-child(4) {
  bottom: 20px;
  right: 20px;
  transform: scale(-1, -1);
}
@media screen and (max-width: 900px) {
  .l-frame__corner-img:nth-child(4) {
    top: 10px;
    right: 10px;
  }
}

.l-main {
  position: relative;
  z-index: 1;
  padding: 0 0 86px;
}
@media screen and (max-width: 900px) {
  .l-main {
    padding: 0 0 82px;
  }
}
.l-main::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 40vh;
  background: linear-gradient(to top, #000 0%, #000 55%, rgba(0, 0, 0, 0) 100%);
}
@media screen and (max-width: 900px) {
  .l-main::before {
    height: 34.2vh;
  }
}

.l-footer {
  position: relative;
  padding: 0 0 115px;
  background-color: #000;
}
.l-footer::before {
  content: "";
  display: block;
  width: 100%;
  height: 50vh;
  position: absolute;
  left: 0;
  bottom: 0;
  background-color: #000;
  transform: translate(0%, calc(100% - 1px));
}
@media screen and (max-width: 900px) {
  .l-footer {
    padding: 0 0 58px;
  }
}
.l-footer__container {
  position: relative;
  z-index: 1;
}
.l-footer__share {
  margin-bottom: 29px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__share-ttl {
  margin-right: 30px;
  font-family: "Red Rose", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
}
@media screen and (max-width: 900px) {
  .l-footer__share-ttl {
    margin-right: 35px;
    font-size: 12px;
  }
}
.l-footer__share-list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__share-item + .l-footer__share-item {
  margin-left: 34px;
}
.l-footer__share-link {
  display: block;
  width: 26px;
}
@media (hover: hover) {
  .l-footer__share-link:hover svg {
    fill: #b10000;
  }
}
.l-footer__share-link svg {
  fill: #fff;
  transition: fill 0.6s 0s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-footer__links {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 32px;
}
.l-footer__links-item + .l-footer__links-item {
  margin-left: 34px;
}
@media screen and (max-width: 900px) {
  .l-footer__links-item + .l-footer__links-item {
    margin-left: 26px;
  }
}
.l-footer__links-txt {
  position: relative;
  font-family: "Red Rose", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 500;
  color: #b10000;
  font-size: 14px;
}
@media not all and (max-width: 900px) {
  .l-footer__links-txt:hover::before {
    width: 100%;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__links-txt {
    font-size: 13px;
  }
}
.l-footer__links-txt::before {
  content: "";
  display: block;
  width: 0%;
  height: 1px;
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: #b10000;
  transition: width 0.6s 0s cubic-bezier(0.25, 1, 0.5, 1);
}
.l-footer__detail {
  text-align: center;
  opacity: 0.2;
  font-size: 10px;
  line-height: 2;
}
@media screen and (max-width: 900px) {
  .l-footer__detail {
    line-height: 1.8;
  }
}
@media screen and (max-width: 900px) {
  .l-footer__detail-copy {
    margin-top: 30px;
  }
}

.u-a11y-txt {
  display: block;
  font-size: 0;
  height: 0;
}

.c-btn {
  position: relative;
  cursor: pointer;
}
.c-btn__inner {
  position: relative;
  display: block;
  padding: 5px;
  background: #b10000;
  border-radius: 99px;
  border: 1px solid #000;
  transition: border-color 0.6s cubic-bezier(0.25, 1, 0.5, 1), background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1), color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media not all and (max-width: 900px) {
  .c-btn__inner:hover {
    border: 1px solid #b10000;
    background: #000;
    color: #b10000;
  }
  .c-btn__inner:hover::after {
    background-color: #b10000;
  }
  .c-btn__inner:hover .c-btn__txt {
    border-color: #b10000;
  }
  .c-btn__inner:hover .c-btn__txt-en {
    color: rgba(255, 255, 255, 0.2);
  }
}
@media screen and (max-width: 900px) {
  .c-btn__inner {
    padding: 3px;
  }
}
.--back .c-btn__inner {
  background-color: #1f1f1f;
}
.c-btn__inner::after {
  content: "";
  position: absolute;
  top: 0;
  right: 26px;
  width: 25px;
  height: 100%;
  -webkit-mask: url(../img/arrow.svg) center center no-repeat;
  mask: url(../img/arrow.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  background: #fff;
  transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .c-btn__inner::after {
    right: 19px;
    width: 17px;
  }
}
.--back .c-btn__inner::after {
  left: 26px;
  transform: scale(-1, 1);
}
@media screen and (max-width: 900px) {
  .--back .c-btn__inner::after {
    left: 19px;
  }
}
.c-btn__txt {
  position: relative;
  padding: 21px 0;
  border: 2px solid #000;
  border-radius: 99px;
  text-align: center;
  font-size: 18px;
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .c-btn__txt {
    padding: 16px 0;
    font-size: 14px;
  }
}
.c-btn__txt-en {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: auto;
  font-family: "Red Rose", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.2);
  font-size: 60px;
  transform: translateY(-50%);
  transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .c-btn__txt-en {
    font-size: 45px;
  }
}
.c-btn__txt-jp {
  position: relative;
}

.p-hero {
  position: relative;
  padding-top: 56px;
}
@media screen and (max-width: 900px) {
  .p-hero {
    padding-top: 40px;
  }
}
.p-hero__container {
  position: relative;
  max-width: 1600px;
  margin: 0 auto;
}
.p-hero__ttl {
  width: 32.2%;
  margin: 0 auto;
  opacity: 0;
  transform: translate(0, 6px);
  transition: opacity 0.6s 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__ttl {
  opacity: 1;
  transform: translate(0, 0);
}
@media not all and (max-width: 900px) {
  .p-hero__ttl {
    min-width: 450px;
  }
}
@media screen and (max-width: 900px) {
  .p-hero__ttl {
    width: 78.5%;
  }
}
.p-hero__chara {
  width: 71.5%;
  position: relative;
  margin: 0 auto;
  opacity: 0;
  z-index: -1;
  transform: translate(0, 6px);
  transition: opacity 0.6s 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1s 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__chara {
  opacity: 1;
  transform: translate(0, 0);
}
@media not all and (max-width: 900px) {
  .p-hero__chara {
    min-width: 1000px;
    margin-top: -10px;
  }
  @media screen and (max-width: 1030px) {
    .p-hero__chara {
      width: 100%;
      min-width: 0;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-hero__chara {
    width: 100%;
    margin-top: 10px;
  }
}
.p-hero__inner {
  position: absolute;
  bottom: 33px;
  left: 0;
  width: 100%;
  z-index: 1;
  opacity: 0;
  transform: translate(0, 6px);
  transition: opacity 0.6s 0.6s cubic-bezier(0.25, 1, 0.5, 1), transform 1s 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-hero__inner {
  opacity: 1;
  transform: translate(0, 0);
}
@media not all and (max-width: 900px) {
  @media screen and (max-width: 1030px) {
    .p-hero__inner {
      position: relative;
      bottom: 70px;
    }
  }
}
@media screen and (max-width: 900px) {
  .p-hero__inner {
    bottom: -4px;
  }
}
.p-hero__lead {
  text-align: center;
  line-height: 2;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .p-hero__lead {
    font-size: 15px;
    line-height: 1.8;
  }
}
.p-hero__btn {
  margin: 0 auto;
  margin-top: 52px;
}
@media not all and (max-width: 900px) {
  .p-hero__btn {
    width: 380px;
  }
}
@media screen and (max-width: 900px) {
  .p-hero__btn {
    width: 76%;
    max-width: 380px;
    margin-top: 35px;
  }
}

.p-in {
  position: relative;
  padding-top: 75px;
}
@media screen and (max-width: 900px) {
  .p-in {
    padding-top: 30px;
  }
}
.p-in__ttl {
  width: 320px;
  margin: 0 auto;
  opacity: 0;
  transform: translate(0, 6px);
  transition: opacity 0.6s 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-in__ttl {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 900px) {
  .p-in__ttl {
    width: 60%;
  }
}

.p-question {
  position: relative;
  margin: 59px auto 31px;
}
@keyframes question__area {
  0% {
    display: none;
    opacity: 0;
    transform: translate(0, 6px);
  }
  60% {
    display: block;
    opacity: 1;
  }
  100% {
    display: block;
    opacity: 1;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 900px) {
  .p-question {
    margin: 30px auto 0;
  }
}
.p-question__container {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  border: 1px solid #b10000;
  padding: 0 0 60px;
  background: #000;
  opacity: 0;
  transform: translate(0, 6px);
  transition: opacity 0.6s 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1s 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-question__container {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 900px) {
  .p-question__container {
    width: 89.5%;
    padding: 0 0 48px;
  }
}
.p-question__container::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-image: url(../img/bg_decor_corner_lt.png), url(../img/bg_decor_corner_lb.png), url(../img/bg_decor_corner_rt.png), url(../img/bg_decor_corner_rb.png);
  background-position: -10px -10px, -10px calc(100% + 10px), calc(100% + 10px) -10px, calc(100% + 10px) calc(100% + 10px);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-size: 160px auto, 160px auto, 160px auto, 160px auto;
  pointer-events: none;
  z-index: 10;
}
@media screen and (max-width: 900px) {
  .p-question__container::after {
    background-position: -6px -6px, -6px calc(100% + 6px), calc(100% + 6px) -6px, calc(100% + 6px) calc(100% + 6px);
  }
}
@media screen and (max-width: 900px) {
  .p-question__container::after {
    background-size: 115px auto, 115px auto, 115px auto, 115px auto;
  }
}
.p-question__num {
  width: 14.3em;
  margin: 0 auto;
  transition: opacity 0.6s 0.2s cubic-bezier(0.25, 1, 0.5, 1), transform 1s 0.2s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-question__num {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 900px) {
  .p-question__num {
    width: 13.3em;
  }
}
.p-question__num-inner {
  position: relative;
  padding: 7px 0 8px;
  font-family: "Red Rose", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.p-question__num-inner .p-in-current {
  position: relative;
  font-size: 24px;
}
@media screen and (max-width: 900px) {
  .p-question__num-inner .p-in-current {
    font-size: 18px;
  }
}
.p-question__num-inner .p-in-slash {
  position: relative;
  padding: 0 12px;
  font-size: 24px;
}
@media screen and (max-width: 900px) {
  .p-question__num-inner .p-in-slash {
    padding: 0 9px;
    font-size: 18px;
  }
}
.p-question__num-inner .p-in-total {
  position: relative;
  transform: translateY(-3px);
}
.p-question__num-inner::before {
  content: "";
  display: block;
  width: 100%;
  height: auto;
  padding-top: 20%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0%);
  background-color: #b10000;
  -webkit-clip-path: polygon(0 0, 24% 100%, 76% 100%, 100% 0%);
  clip-path: polygon(0 0, 24% 100%, 76% 100%, 100% 0%);
}
.p-question__lead {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 45px auto 45px;
}
@media screen and (max-width: 900px) {
  .p-question__lead {
    margin: 27px auto 27px;
  }
}
.p-question__lead-q {
  margin-right: 0.45em;
  font-family: "Red Rose", "Zen Old Mincho", "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ 明朝", "ＭＳ Ｐ明朝", serif;
  font-size: 20px;
  color: #b10000;
}
@media screen and (max-width: 900px) {
  .p-question__lead-q {
    margin-right: 0.4em;
    font-size: 15px;
  }
}
.p-question__lead-txt {
  font-size: 19px;
  letter-spacing: -0.06em;
}
@media screen and (max-width: 900px) {
  .p-question__lead-txt {
    font-size: 14px;
  }
}
.p-question__answer-item {
  width: 60%;
  max-width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-question__answer-item {
    width: 85.5%;
  }
}
.p-question__answer-item + .p-question__answer-item {
  margin-top: 21px;
}
@media screen and (max-width: 900px) {
  .p-question__answer-item + .p-question__answer-item {
    margin-top: 15px;
  }
}
.p-question__answer-item .c-btn__inner::after {
  display: none;
}
.p-question__back {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  margin: 48px auto 0;
}
@media screen and (max-width: 900px) {
  .p-question__back {
    margin-top: 40px;
  }
}
.p-question__back-inner {
  display: block;
  position: relative;
  padding-left: 2em;
  color: #b10000;
  transition: color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  cursor: pointer;
}
@media not all and (max-width: 900px) {
  .p-question__back-inner:hover {
    color: #fff;
  }
  .p-question__back-inner:hover::before {
    background-color: #fff;
  }
}
@media screen and (max-width: 900px) {
  .p-question__back-inner {
    font-weight: bold;
  }
}
.p-question__back-inner::before {
  content: "";
  display: block;
  width: 25px;
  height: 100%;
  position: absolute;
  left: 0%;
  top: 0;
  background-color: #b10000;
  -webkit-mask: url(../img/arrow.svg) center center no-repeat;
  mask: url(../img/arrow.svg) center center no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  transform: scale(-1, 1);
  transition: background-color 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.p-result {
  margin: 55px auto 31px;
  opacity: 0;
  transform: translate(0, 6px);
  transition: opacity 0.6s 0.4s cubic-bezier(0.25, 1, 0.5, 1), transform 1s 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-result {
  opacity: 1;
  transform: translate(0, 0);
}
@media screen and (max-width: 900px) {
  .p-result {
    margin: 27px auto 0;
  }
}
.p-result__container {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
}
.p-result__txt {
  text-align: center;
  font-size: 18px;
}
@media screen and (max-width: 900px) {
  .p-result__txt {
    font-size: 14px;
  }
}
.p-result__name {
  margin: 15px auto 0;
  text-align: center;
  font-size: 40px;
}
@media screen and (max-width: 900px) {
  .p-result__name {
    margin: 10px auto 0;
    font-size: 30px;
  }
}
.p-result__img {
  position: relative;
  margin: 36px auto 61px;
}
@media screen and (max-width: 900px) {
  .p-result__img {
    margin: 17px auto 28px;
  }
}
.p-result__img::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  border: 1px solid #b10000;
  box-sizing: border-box;
}
.p-result__btn-item {
  width: 60%;
  max-width: 380px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-result__btn-item {
    width: 85.5%;
  }
}
.p-result__btn-item + .p-result__btn-item {
  margin-top: 21px;
}
@media screen and (max-width: 900px) {
  .p-result__btn-item + .p-result__btn-item {
    margin-top: 15px;
  }
}

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

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