@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;
}

@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 Maru Gothic", YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-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;
  color: #644411;
}
@media not all and (max-width: 900px) {
  body,
  button,
  input,
  select,
  textarea,
  datalist {
    font-size: 16px;
  }
}

body {
  position: relative;
  background: #ffe84a;
}

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;
}

@keyframes circle_rotate {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes step_rotate {
  0% {
    transform: rotate(10deg);
  }
  100% {
    transform: rotate(-10deg);
  }
}
@keyframes scale {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
@keyframes chara_float {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4%);
  }
  100% {
    transform: translateY(0);
  }
}
@keyframes chara_float_6 {
  0% {
    transform: rotate(10deg) translateY(0);
  }
  50% {
    transform: rotate(10deg) translateY(-5%);
  }
  100% {
    transform: rotate(10deg) translateY(0);
  }
}
@keyframes bg_move {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 200px -200px;
  }
}
.l-wrapper {
  position: relative;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .l-wrapper {
  opacity: 1;
}

.l-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--win-h);
  background: url(../img/bg_pattern.png) 0 0 repeat;
  background-size: 200px 200px;
  animation: bg_move 10s linear infinite;
}
@media screen and (max-width: 900px) {
  .l-bg {
    background-size: 100px 100px;
    animation-duration: 20s;
  }
}

.l-main {
  position: relative;
  padding-bottom: 55px;
}
@media screen and (max-width: 900px) {
  .l-main {
    padding-bottom: 30px;
  }
}

.l-footer {
  position: relative;
  background: #fefbc6;
  padding-top: 74px;
  padding-bottom: 93px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .l-footer {
    padding-top: 34px;
    padding-bottom: 47px;
  }
}
.l-footer__links {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
.l-footer__links-item {
  position: relative;
}
.l-footer__links-item + .l-footer__links-item::after {
  content: "";
  position: absolute;
  top: 10px;
  left: -6px;
  width: 10px;
  height: 10px;
  background: url(../img/point.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .l-footer__links-item + .l-footer__links-item::after {
    top: 7px;
    left: -3px;
    width: 6px;
    height: 6px;
  }
}
.l-footer__links-txt {
  display: block;
  padding: 4px 17px;
  font-family: "Fredoka", "Zen Maru Gothic", YakuHanJP, -apple-system, BlinkMacSystemFont, "Helvetica Neue", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", Hiragino Kaku Gothic ProN, Arial, "メイリオ", Meiryo, sans-serif;
  letter-spacing: 0.025rem;
  white-space: nowrap;
}
@media screen and (max-width: 900px) {
  .l-footer__links-txt {
    padding: 4px 10px;
    font-size: 10.5px;
    letter-spacing: 0;
  }
}
@media (hover: hover) {
  .l-footer__links-txt {
    transition: color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  .l-footer__links-txt:hover {
    color: #F39702;
  }
}
.l-footer__note {
  position: relative;
  margin-top: 40px;
  font-size: 12px;
}
@media screen and (max-width: 900px) {
  .l-footer__note {
    margin-top: 20px;
    font-size: 10px;
  }
}
.l-footer__copy {
  position: relative;
  width: 140px;
  margin: 18px auto 0;
}
@media screen and (max-width: 900px) {
  .l-footer__copy {
    margin-top: 14px;
    width: 115px;
  }
}

.l-frame {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: var(--win-h);
  pointer-events: none;
}
.l-frame__corner {
  position: relative;
  width: 100%;
  height: 100%;
}
.l-frame__corner span {
  position: absolute;
  top: 0;
  right: 0;
  width: 84px;
  height: 84px;
  background: url(../img/corner01.png) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .l-frame__corner span {
    width: 42px;
    height: 42px;
  }
}
.l-frame__corner span:nth-child(2) {
  right: auto;
  left: 0;
  transform: scaleX(-1);
}
.l-frame__corner span:nth-child(3) {
  top: auto;
  bottom: 0;
  transform: scaleY(-1);
}
.l-frame__corner span:nth-child(4) {
  top: auto;
  right: auto;
  bottom: 0;
  left: 0;
  transform: scale(-1, -1);
}
.l-frame__line {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-frame__line span {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 21.5px;
  background: url(../img/corner02.png) left top repeat-x;
  background-size: auto 100%;
}
@media screen and (max-width: 900px) {
  .l-frame__line span {
    height: 11px;
  }
}
.l-frame__line span:nth-child(2) {
  top: auto;
  bottom: 0;
  transform: scaleY(-1);
}
.l-frame__line span:nth-child(3) {
  width: 20px;
  height: 100%;
  background: url(../img/corner03.png) top left repeat-y;
  background-size: 100% auto;
  transform: scaleX(-1);
}
@media screen and (max-width: 900px) {
  .l-frame__line span:nth-child(3) {
    width: 10.5px;
  }
}
.l-frame__line span:nth-child(4) {
  left: auto;
  right: 0;
  width: 20px;
  height: 100%;
  background: url(../img/corner03.png) top left repeat-y;
  background-size: 100% auto;
}
@media screen and (max-width: 900px) {
  .l-frame__line span:nth-child(4) {
    width: 10.5px;
  }
}

.p-logo {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-start .p-logo {
  opacity: 1;
}
@media not all and (max-width: 900px) {
  .p-logo {
    position: fixed;
    top: 61px;
    left: 58px;
    width: 214px;
  }
}
@media screen and (max-width: 900px) {
  .p-logo {
    position: absolute;
    top: 31px;
    left: 50%;
    width: 137px;
    transform: translateX(-50%);
  }
}
.p-logo__sub {
  position: relative;
  width: 66%;
  margin: 0 auto 5.3%;
}
.p-logo__main {
  position: relative;
}

.p-start {
  position: relative;
}
.is-start .p-start {
  transition: opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 0;
  pointer-events: none;
}
.is-end .p-start {
  display: none;
}
.p-start__header {
  position: relative;
}
@media not all and (max-width: 900px) {
  .p-start__header {
    width: 78.5714285714%;
    margin: 0 auto;
    padding: 11.4% 0 10%;
  }
}
@media screen and (max-width: 900px) {
  .p-start__header {
    padding: 30% 0 42%;
  }
}
.p-start__chara {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.p-start__chara-item {
  position: absolute;
  animation: chara_float 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
}
.p-start__chara-item img {
  position: relative;
  display: block;
  transform: scale(0);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-load .p-start__chara-item img {
  transform: scale(1);
  opacity: 1;
}
.p-start__chara-item:nth-child(1) {
  top: 10.5%;
  right: 12.5%;
  width: 15%;
}
@media screen and (max-width: 900px) {
  .p-start__chara-item:nth-child(1) {
    top: 5.5%;
    right: 5.3%;
    width: 26%;
  }
}
.p-start__chara-item:nth-child(1) img {
  transition-delay: 0.5s;
}
.p-start__chara-item:nth-child(2) {
  top: 38.3%;
  left: 0%;
  width: 12.8%;
  animation-delay: 0.2s;
}
@media screen and (max-width: 900px) {
  .p-start__chara-item:nth-child(2) {
    top: 1.2%;
    left: 37.2%;
    width: 22%;
  }
}
.p-start__chara-item:nth-child(2) img {
  transition-delay: 0.6s;
}
.p-start__chara-item:nth-child(3) {
  top: 12.7%;
  left: 11.5%;
  width: 14.7%;
  animation-delay: 0.7s;
}
@media screen and (max-width: 900px) {
  .p-start__chara-item:nth-child(3) {
    top: 9.7%;
    left: 4%;
    width: 25%;
  }
}
.p-start__chara-item:nth-child(3) img {
  transition-delay: 0.5s;
}
.p-start__chara-item:nth-child(4) {
  bottom: 6.5%;
  left: 12.8%;
  width: 19%;
}
@media screen and (max-width: 900px) {
  .p-start__chara-item:nth-child(4) {
    bottom: 13%;
    left: 0.5%;
    width: 32.8%;
  }
}
.p-start__chara-item:nth-child(4) img {
  transition-delay: 0.7s;
}
.p-start__chara-item:nth-child(5) {
  bottom: 6.4%;
  right: 15%;
  width: 18.5%;
  animation-delay: 0.3s;
}
@media screen and (max-width: 900px) {
  .p-start__chara-item:nth-child(5) {
    bottom: 16%;
    right: 1%;
    width: 31.5%;
  }
}
.p-start__chara-item:nth-child(5) img {
  transition-delay: 0.7s;
}
.p-start__chara-item:nth-child(6) {
  top: 40.5%;
  right: 0%;
  width: 13.6%;
  animation-delay: 0.4s;
}
@media not all and (max-width: 900px) {
  .p-start__chara-item:nth-child(6) {
    transform: rotate(10deg);
    animation: chara_float_6 5s cubic-bezier(0.37, 0, 0.63, 1) infinite;
  }
}
@media screen and (max-width: 900px) {
  .p-start__chara-item:nth-child(6) {
    top: auto;
    bottom: 11%;
    right: 36%;
    width: 23.6%;
  }
}
.p-start__chara-item:nth-child(6) img {
  transition-delay: 0.6s;
}
.p-start__deco {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.is-load .p-start__deco {
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
  opacity: 1;
}
.p-start__deco-item {
  position: absolute;
}
.p-start__deco-item img {
  position: relative;
  display: block;
  animation: scale 2s cubic-bezier(0.37, 0, 0.63, 1) alternate infinite;
}
.p-start__deco-item:nth-child(1) img {
  animation-delay: 0s;
}
.p-start__deco-item:nth-child(2) img {
  animation-delay: 0.1s;
}
.p-start__deco-item:nth-child(3) img {
  animation-delay: 0.2s;
}
.p-start__deco-item:nth-child(4) img {
  animation-delay: 0.3s;
}
.p-start__deco-item:nth-child(5) img {
  animation-delay: 0.4s;
}
.p-start__deco-item:nth-child(6) img {
  animation-delay: 0.5s;
}
.p-start__deco-item:nth-child(7) img {
  animation-delay: 0.6s;
}
.p-start__deco-item:nth-child(8) img {
  animation-delay: 0.7s;
}
.p-start__deco-item:nth-child(9) img {
  animation-delay: 0.8s;
}
.p-start__deco-item:nth-child(1) {
  bottom: 17%;
  left: 3.5%;
  width: 3%;
  animation: circle_rotate 10s linear infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(1) {
    bottom: 45%;
    left: 7.5%;
    width: 5%;
  }
}
.p-start__deco-item:nth-child(2) {
  top: 48%;
  right: 19.4%;
  width: 2.6%;
  animation: circle_rotate 10s linear reverse infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(2) {
    top: 34.2%;
    right: 10.7%;
    width: 4.6%;
  }
}
.p-start__deco-item:nth-child(3) {
  bottom: 9%;
  right: 42.6%;
  width: 4%;
  animation: circle_rotate 6s steps(6, jump-end) infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(3) {
    bottom: 3%;
    right: auto;
    left: 22.5%;
    width: 7%;
  }
}
.p-start__deco-item:nth-child(4) {
  top: 26.5%;
  left: 0%;
  width: 2.2%;
  animation: circle_rotate 5s steps(6, jump-end) infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(4) {
    top: 38.6%;
    left: 11.8%;
    width: 3.8%;
  }
}
.p-start__deco-item:nth-child(5) {
  bottom: 28.4%;
  left: 32.6%;
  width: 2.6%;
  animation: circle_rotate 5s steps(6, jump-end) reverse infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(5) {
    bottom: 29.4%;
    left: 42.6%;
    width: 4.6%;
  }
}
.p-start__deco-item:nth-child(6) {
  top: 21.5%;
  right: 0.8%;
  width: 5%;
  animation: circle_rotate 15s linear infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(6) {
    top: 44.6%;
    right: 1.3%;
    width: 9%;
  }
}
.p-start__deco-item:nth-child(7) {
  top: 10.5%;
  right: 37.3%;
  width: 3.3%;
  animation: circle_rotate 15s linear reverse infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(7) {
    top: 1.5%;
    right: 30.5%;
    width: 5.4%;
  }
}
.p-start__deco-item:nth-child(8) {
  bottom: 23%;
  right: 4.3%;
  width: 2.5%;
  animation: circle_rotate 15s linear reverse infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(8) {
    bottom: 7.5%;
    right: 20.2%;
    width: 4.5%;
  }
}
.p-start__deco-item:nth-child(9) {
  top: 13.4%;
  left: 31%;
  width: 4.5%;
  animation: step_rotate 2s steps(2, jump-none) infinite;
}
@media screen and (max-width: 900px) {
  .p-start__deco-item:nth-child(9) {
    top: 6.6%;
    left: 21.8%;
    width: 7.7%;
  }
}
.p-start__ttl {
  position: relative;
  width: 42.5%;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-start__ttl {
    width: 62.5%;
  }
}
.p-start__ttl-logo {
  position: relative;
  width: 66%;
  margin: 0 auto 5.4%;
  transform: translateY(60%);
  opacity: 0;
  transition: transform 0.7s cubic-bezier(0.54, 1.47, 0.64, 1) 0.2s, opacity 0.5s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
.p-start__ttl-logo img {
  margin: 0 auto;
}
.is-load .p-start__ttl-logo {
  transform: translateY(0);
  opacity: 1;
}
.p-start__ttl-main {
  position: relative;
  transform: scale(0.4);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.54, 1.47, 0.64, 1) 0.4s, opacity 0.55s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}
.is-load .p-start__ttl-main {
  transform: scale(1);
  opacity: 1;
}
.p-start__lead {
  position: relative;
  margin-bottom: 3.6%;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  line-height: 1.85;
}
@media screen and (max-width: 900px) {
  .p-start__lead {
    margin-bottom: 7.6%;
    font-size: 14px;
  }
}
.p-start__lead-line {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  transform: translateY(100%);
  opacity: 0;
  transition: transform 0.8s cubic-bezier(0.54, 1.47, 0.64, 1) 0.9s, opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.9s;
}
.p-start__lead-line:nth-child(1) {
  transition-delay: 0.9s;
}
.p-start__lead-line:nth-child(2) {
  transition-delay: 1s;
}
.p-start__lead-line:nth-child(3) {
  transition-delay: 1.1s;
}
.p-start__lead-line:nth-child(4) {
  transition-delay: 1.2s;
}
.p-start__lead-line:nth-child(5) {
  transition-delay: 1.3s;
}
.p-start__lead-line:nth-child(6) {
  transition-delay: 1.4s;
}
.p-start__lead-line:nth-child(7) {
  transition-delay: 1.5s;
}
.p-start__lead-line:nth-child(8) {
  transition-delay: 1.6s;
}
.p-start__lead-line:nth-child(9) {
  transition-delay: 1.7s;
}
.p-start__lead-line:nth-child(10) {
  transition-delay: 1.8s;
}
.is-load .p-start__lead-line {
  transform: translateY(0);
  opacity: 1;
}
.p-start__lead-line::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: url(../img/dot_line.png) left center repeat-x;
  background-size: auto 100%;
}
@media screen and (max-width: 900px) {
  .p-start__lead-line::after {
    height: 1.5px;
  }
}
.p-start__btn {
  position: relative;
  width: 21%;
  margin: 0 auto;
  transform: scale(0.5);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.54, 1.47, 0.64, 1) 1.1s, opacity 0.7s cubic-bezier(0.54, 1.47, 0.64, 1) 1.1s;
}
@media screen and (max-width: 900px) {
  .p-start__btn {
    width: 56%;
    max-width: 350px;
  }
}
.is-load .p-start__btn {
  transform: scale(1);
  opacity: 1;
}
.p-start__btn-inner {
  position: relative;
  display: block;
  border: none;
  margin: 0;
  padding: 0;
  cursor: pointer;
}
.p-start__btn-base {
  position: relative;
  display: block;
  animation: circle_rotate 30s linear infinite;
}
.p-start__btn-txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
@media (hover: hover) {
  .p-start__btn-txt {
    transition: transform 0.8s cubic-bezier(0.54, 1.47, 0.64, 1);
  }
  .p-start__btn-inner:hover .p-start__btn-txt {
    transform: scale(1.1);
  }
}

.p-quiz {
  position: absolute;
  top: 0%;
  left: 0;
  width: 100%;
  height: auto;
  padding: 119px 0 38px;
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
}
@media screen and (max-width: 900px) {
  .p-quiz {
    padding: 140px 0 0;
  }
}
.is-start .p-quiz {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
.is-end .p-quiz {
  opacity: 0;
}
.p-quiz__container {
  position: relative;
}
.p-quiz__spinner {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 60px;
  height: 60px;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.p-quiz__spinner svg {
  display: block;
  fill: #644411;
  animation: circle_rotate 1s linear infinite;
}
.p-quiz__inner {
  position: relative;
  width: 631px;
  margin: 0 auto;
  padding-top: 70px;
  padding-bottom: 60px;
  opacity: 0;
  transition: opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-quiz__inner {
    width: 84%;
    max-width: 600px;
    padding-top: 37px;
    padding-bottom: 0px;
  }
}
.is-show .p-quiz__inner {
  opacity: 1;
}
.p-quiz__bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transform: scale(0.6);
}
body.is-show .p-quiz__bg {
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  opacity: 1;
  transform: scale(1);
}
.p-quiz__bg-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.p-quiz__bg-item.is-show {
  opacity: 1;
}
.p-quiz__bg-item:nth-child(1) img {
  animation: none;
}
.p-quiz__bg-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  animation: circle_rotate 60s linear infinite;
}
.p-quiz__ttl {
  position: relative;
  margin-bottom: 33px;
  text-align: center;
  font-weight: 700;
  font-size: 26px;
  line-height: 1.6;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.05s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-quiz__ttl {
    margin-bottom: 16px;
    font-size: 15px;
    line-height: 1.7;
  }
}
.is-show .p-quiz__ttl {
  transition: transform 0.8s cubic-bezier(0.54, 1.47, 0.64, 1), opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1);
  transform: translateY(0);
  opacity: 1;
}
.p-quiz__img {
  position: relative;
  width: 79.4%;
  margin: 0 auto 30px;
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.05s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-quiz__img {
    margin-bottom: 20px;
    border-radius: 10px;
  }
}
.is-show .p-quiz__img {
  transition: transform 0.8s cubic-bezier(0.54, 1.47, 0.64, 1) 0.1s, opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.1s;
  transform: translateY(0);
  opacity: 1;
}
.p-quiz__img-inner {
  position: relative;
  width: 100%;
  padding-top: 56.3333333333%;
  overflow: hidden;
}
.p-quiz__img-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  transform: scale(1.1);
  transition: transform 0.05s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}
.is-show .p-quiz__img-inner img {
  transition: transform 3s cubic-bezier(0.5, 1, 0.89, 1);
  transform: scale(1);
}
.p-quiz__btn {
  position: relative;
  width: 87.3%;
  margin: 0 auto;
  display: flex;
  gap: 5.5%;
  transform: translateY(30px);
  opacity: 0;
  transition: transform 0.05s cubic-bezier(0.25, 1, 0.5, 1) 0.4s, opacity 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.is-show .p-quiz__btn {
  transition: transform 0.8s cubic-bezier(0.54, 1.47, 0.64, 1) 0.2s, opacity 0.7s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
  transform: translateY(0);
  opacity: 1;
}
.p-quiz__btn-inner {
  position: relative;
  display: block;
  margin: 0;
  padding: 0;
  border: none;
  cursor: pointer;
}
@media (hover: hover) {
  .p-quiz__btn-inner {
    transition: transform 0.7s cubic-bezier(0.54, 1.47, 0.64, 1);
  }
  .p-quiz__btn-inner:hover {
    transform: scale(1.1);
  }
}
.p-quiz__btn-base {
  display: block;
}
.p-quiz__btn-txt {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 27%;
}
.p-quiz__btn-item:nth-child(2) .p-quiz__btn-txt {
  width: 41%;
}

.p-result {
  position: relative;
  padding: 91px 0;
  display: none;
}
@media screen and (max-width: 900px) {
  .p-result {
    padding: 140px 0 12px;
  }
}
.is-end .p-result {
  display: block;
  opacity: 0;
}
.is-result .p-result {
  opacity: 1;
  transition: opacity 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}
.p-result__container {
  position: relative;
  width: 580px;
  margin: 0 auto;
}
@media screen and (max-width: 900px) {
  .p-result__container {
    width: 84%;
  }
}
.p-result__card {
  position: relative;
  margin: 0 15px 20px;
  border-radius: 30px;
  overflow: hidden;
  transform: scale(0.6);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.25, 1, 0.5, 1), opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
@media screen and (max-width: 900px) {
  .p-result__card {
    margin: 0 0 16px;
    border-radius: 15px;
  }
}
.is-result .p-result__card {
  transform: scale(1);
  opacity: 1;
}
.p-result__card-inner {
  position: relative;
  width: 100%;
  padding-top: 100%;
}
.p-result__card-inner img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.p-result__dl {
  position: relative;
  width: 340px;
  margin: 0 auto 40px;
  transform: translateY(50%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.54, 1.47, 0.64, 1) 0.2s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
}
@media screen and (max-width: 900px) {
  .p-result__dl {
    width: 73.2%;
    margin-bottom: 30px;
  }
}
.is-result .p-result__dl {
  transform: translateY(0%);
  opacity: 1;
}
.p-result__dl-btn {
  position: relative;
  display: block;
  padding: 22px 0 23px;
  background: #644411;
  color: #fff;
  font-weight: 700;
  font-size: 19px;
  text-align: center;
  border-radius: 99px;
}
@media screen and (max-width: 900px) {
  .p-result__dl-btn {
    padding: 17px 0 16px;
    font-size: 13px;
  }
}
@media (hover: hover) {
  .p-result__dl-btn {
    transition: transform 0.7s cubic-bezier(0.54, 1.47, 0.64, 1);
  }
  .p-result__dl-btn:hover {
    transform: scale(1.05);
  }
}
.p-result__dl-btn::after {
  content: "";
  position: absolute;
  top: 0;
  right: 26px;
  width: 13px;
  height: 100%;
  background: url(../img/icon_dl.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .p-result__dl-btn::after {
    right: 19px;
    width: 10px;
  }
}
.p-result__btn {
  display: flex;
  justify-content: center;
  gap: 3.5%;
  transform: translateY(50%);
  opacity: 0;
  transition: transform 1s cubic-bezier(0.54, 1.47, 0.64, 1) 0.4s, opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
}
@media screen and (max-width: 900px) {
  .p-result__btn {
    display: block;
    width: 64%;
    margin: 0 auto;
  }
}
.is-result .p-result__btn {
  transform: translateY(0%);
  opacity: 1;
}
.p-result__btn-item {
  position: relative;
}
@media screen and (max-width: 900px) {
  .p-result__btn-item + .p-result__btn-item {
    margin-top: 10px;
  }
}
.p-result__btn-inner {
  position: relative;
  display: block;
}
@media (hover: hover) {
  .p-result__btn-inner {
    transition: transform 0.7s cubic-bezier(0.54, 1.47, 0.64, 1);
  }
  .p-result__btn-inner:hover {
    transform: scale(1.05);
  }
}
.p-result__btn-inner::after {
  content: "";
  position: absolute;
  top: 0;
  left: 29px;
  width: 15px;
  height: 100%;
  background: url(../img/icon_re.svg) center center no-repeat;
  background-size: contain;
}
@media screen and (max-width: 900px) {
  .p-result__btn-inner::after {
    left: 21px;
    width: 11px;
  }
}
.--share .p-result__btn-inner::after {
  background-image: url(../img/icon_x.svg);
}
.p-result__btn-base {
  position: relative;
}
.p-result__btn-txt {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translate(0%, -50%);
  font-weight: 700;
  font-size: 17px;
}
@media screen and (max-width: 900px) {
  .p-result__btn-txt {
    font-size: 14px;
  }
}

.preload {
  display: none;
}