@charset "UTF-8";
html {
  margin: 0;
  padding: 0;
}

body {
  margin: 0;
  padding: 0;
}

div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
}

ol, ul {
  list-style: none;
}

fieldset, img {
  border: 0;
}

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

caption, th {
  text-align: left;
}

address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

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

button {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  font-family: inherit;
  color: inherit;
  outline: none;
  cursor: pointer;
  touch-action: manipulation;
}

dialog {
  width: 100%;
  height: 100%;
  padding: 0;
  border: none;
  outline: none;
}

* {
  box-sizing: border-box;
}

html {
  font-size: 1.3020833333vw;
  line-height: 1.4;
}
@media screen and (min-width: 769px) {
  html {
    font-size: min(0.9vw, 10px);
  }
}

body {
  position: relative;
  background-color: #2471b3;
  font-family: "Inter", "Noto Sans JP", "ヒラギノ丸ゴ ProN", "Hiragino Maru Gothic ProN", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-weight: 500;
  font-style: normal;
  font-feature-settings: "palt";
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  body .pc-only {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  body .sp-only {
    display: none;
  }
}
body .btn-close {
  position: relative;
  width: 6rem;
  height: 6rem;
  border: solid 1px #fff;
  font-size: 0;
}
body .btn-close::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transform: rotate(45deg);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
body .btn-close::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 50%;
  height: 1px;
  margin: auto;
  background-color: #fff;
  transform: rotate(-45deg);
  transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}
@media (any-hover: hover) {
  body .btn-close {
    transition: border-color 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  }
  body .btn-close:hover {
    border-color: rgba(255, 255, 255, 0.3);
  }
  body .btn-close:hover::before, body .btn-close:hover::after {
    transform: rotate(0);
  }
}

#main {
  position: relative;
  padding-bottom: 3rem;
  background-color: #fcfbf4;
  font-size: 2.2rem;
  color: #856c3d;
  overflow: hidden;
}
@media screen and (min-width: 769px) {
  #main {
    padding-bottom: 0;
    font-size: 1.6rem;
  }
}
#main .btn-pagetop {
  position: relative;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #main .btn-pagetop {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: calc(infinity);
  }
  #main .btn-pagetop:not(:hover) .btn-pagetop__chr img {
    animation: pagetop_chr_anime 3s linear infinite;
    animation-fill-mode: both;
  }
}
@media screen and (min-width: 769px) and (any-hover: hover) {
  #main .btn-pagetop:hover .btn-pagetop__chr {
    top: -1rem;
    right: 38%;
    transform: scale(1);
  }
}
@media screen and (max-width: 768px) {
  #main .btn-pagetop {
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
}
#main .btn-pagetop .btn {
  position: relative;
  text-align: center;
  line-height: 1;
  display: block;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  #main .btn-pagetop .btn {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3.5rem;
  }
}
@media screen and (min-width: 769px) {
  #main .btn-pagetop .btn {
    width: 9rem;
    height: 8rem;
    padding: 1.5rem;
  }
  #main .btn-pagetop .btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: #f6c6c2;
    background-image: linear-gradient(180deg, white 0%, #f6c6c2 100%);
    border: solid 0.2rem #e09aaa;
    border-radius: 56% 44% 48% 52%/51% 45% 55% 49%;
    box-shadow: 0 0.3rem 0 0 #fff inset;
    z-index: -1;
  }
}
@media screen and (min-width: 769px) and (any-hover: hover) {
  #main .btn-pagetop .btn {
    transition: transform 0.3s;
  }
  #main .btn-pagetop .btn:hover {
    transform: scale(0.9);
  }
  #main .btn-pagetop .btn:hover::before {
    animation: radius_anime 4s linear infinite;
    animation-fill-mode: both;
  }
}
#main .btn-pagetop .btn__icon {
  width: 2rem;
  height: 2rem;
  transform: scaleY(0.9) translateY(-10%);
  display: block;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #main .btn-pagetop .btn__icon {
    width: 1.3rem;
    height: 1.3rem;
    margin: 0 auto 1rem;
    transform: scaleY(0.9);
    filter: drop-shadow(0 -0.4rem 0 #fef6f4);
  }
}
#main .btn-pagetop .btn__arrow {
  position: relative;
  width: 100%;
  height: 100%;
  background: #856c3d;
  border-top-left-radius: 50%;
  transform: rotate(30deg) skewY(30deg) scaleX(0.86666);
  display: block;
}
#main .btn-pagetop .btn__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #856c3d;
  border-top-right-radius: 50%;
  transform: skewX(-45deg) translateX(50%);
}
#main .btn-pagetop .btn__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #856c3d;
  border-bottom-left-radius: 50%;
  transform: skewY(-45deg) translateY(50%);
}
@media screen and (min-width: 769px) {
  #main .btn-pagetop .btn__arrow {
    background: #c32b51 !important;
  }
  #main .btn-pagetop .btn__arrow::before, #main .btn-pagetop .btn__arrow::after {
    background: #c32b51 !important;
  }
}
#main .btn-pagetop .btn__txt {
  font-family: "Dela Gothic One", "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 2.2rem;
  color: #856c3d;
}
@media screen and (min-width: 769px) {
  #main .btn-pagetop .btn__txt {
    font-size: 1.2rem;
    color: #c32b51 !important;
    text-shadow: 0 0.2rem 0 #fef6f4;
  }
  #main .btn-pagetop .btn__txt .is--l {
    font-size: 130%;
  }
}
#main .btn-pagetop__chr {
  width: 20%;
  max-width: 92px;
  margin: 0 auto 1.5rem;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #main .btn-pagetop__chr {
    position: absolute;
    top: 0;
    right: 1%;
    width: 125%;
    max-width: 112px;
    margin: 0;
    transform: scale(0.9);
    transform-origin: right bottom;
    transition: top 0.3s, right 0.3s, transform 0.3s;
  }
  #main .btn-pagetop__chr img {
    transform-origin: right bottom;
    display: block;
  }
}

#screen {
  position: fixed;
  inset: 0;
  background: #fcfbf4;
  z-index: calc(infinity);
}

#footer {
  position: relative;
  background-color: #459eeb;
  font-weight: 400;
  font-size: 2.6rem;
  text-align: center;
  color: #fff;
}
@media screen and (min-width: 769px) {
  #footer {
    font-size: 1.6rem;
    text-align: left;
  }
}
#footer .footer__inner {
  max-width: 1200px;
  margin: auto;
  padding: 8rem 2rem;
}
@media screen and (min-width: 769px) {
  #footer .footer__inner {
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7rem;
  }
}
@media screen and (min-width: 769px) {
  #footer .footer__inner {
    padding: 5rem 2rem;
  }
}
#footer .footer__official {
  width: 50%;
  margin: 0 auto 6rem;
}
@media screen and (min-width: 769px) {
  #footer .footer__official {
    width: 25%;
    max-width: 265px;
    margin: 0;
  }
}
@media (any-hover: hover) {
  #footer .footer__official a {
    transition: opacity 0.3s;
  }
  #footer .footer__official a:hover {
    opacity: 0.7;
  }
}
#footer .footer__ttl {
  margin-bottom: 3rem;
  padding: 0.4rem 2.5rem;
  background-color: #2471b3;
  border-radius: 0.5rem;
  font-weight: 500;
  font-size: 2.4rem;
  display: inline-block;
}
@media screen and (min-width: 769px) {
  #footer .footer__ttl {
    margin-bottom: 1rem;
    padding: 0.4rem 1.5rem;
    font-size: 1.4rem;
  }
}
#footer .pf-list {
  margin-bottom: 5rem;
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (min-width: 769px) {
  #footer .pf-list {
    margin-bottom: 2.5rem;
  }
}
@media screen and (max-width: 768px) {
  #footer .pf-list {
    justify-content: center;
  }
}
@media (any-hover: hover) {
  #footer .pf-list a {
    transition: opacity 0.3s;
  }
  #footer .pf-list a:hover {
    opacity: 0.7;
  }
}
#footer .pf-list img {
  width: auto;
  height: 8rem;
}
@media screen and (min-width: 769px) {
  #footer .pf-list img {
    height: 6rem;
  }
}
#footer .sns-list {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  #footer .sns-list {
    justify-content: center;
  }
}
#footer .sns-list__item:nth-of-type(2) .sns-link__icon {
  width: 4rem;
}
@media screen and (min-width: 769px) {
  #footer .sns-list__item:nth-of-type(2) .sns-link__icon {
    width: 2rem;
  }
}
#footer .sns-link {
  position: relative;
  padding: 0 1.5rem 1rem;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
#footer .sns-link::before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 1px;
  background-color: #fff;
  pointer-events: none;
  transition: width 0.2s;
}
@media (any-hover: hover) {
  #footer .sns-link:hover::before {
    width: 0;
  }
}
@media screen and (min-width: 769px) {
  #footer .sns-link {
    padding: 0 0.5rem 0.5rem;
  }
}
#footer .sns-link__icon {
  width: 2.8rem;
  display: block;
}
@media screen and (min-width: 769px) {
  #footer .sns-link__icon {
    width: 1.4rem;
  }
}
#footer .sns-link__icon svg {
  fill: #fff;
  display: block;
}
#footer .footer__copyright {
  padding: 1rem 2rem;
  background-color: #2471b3;
  font-size: 2.2rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #footer .footer__copyright {
    font-size: 1.3rem;
  }
}

.is--anime-bottom {
  opacity: 0;
  transform: translateY(5rem);
  pointer-events: none;
}
.is--anime-bottom.is--animation {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.is--anime-opacity {
  opacity: 0;
  pointer-events: none;
}
.is--anime-opacity.is--animation {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
}

.is--anime-bounce {
  opacity: 0;
  pointer-events: none;
}
.is--anime-bounce.is--animation {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
  animation: bounce 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: both;
}

.is--anime-answer {
  opacity: 0;
  pointer-events: none;
}
.is--anime-answer.is--animation {
  opacity: 1;
  pointer-events: auto;
  transition: opacity 0.3s;
  animation: bounce 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  animation-fill-mode: both;
}

.is--anime-mask {
  opacity: 0;
  -webkit-clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
          clip-path: polygon(0 0, 0 0, 0 100%, 0% 100%);
  pointer-events: none;
}
.is--anime-mask.is--animation {
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
          clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  pointer-events: auto;
  transition: -webkit-clip-path 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: clip-path 0.5s cubic-bezier(0.25, 1, 0.5, 1);
  transition: clip-path 0.5s cubic-bezier(0.25, 1, 0.5, 1), -webkit-clip-path 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

.is--anime-label {
  opacity: 0;
  transform: translate(2rem, -3rem);
  pointer-events: none;
}
.is--anime-label.is--animation {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
  transition: opacity 0.3s, transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.is--anime-artist .quiz-artist__img-wrapper,
.is--anime-artist .result-img__anime-wrapper {
  opacity: 0;
  transform: translateY(5rem) rotate(-5deg);
  transform-origin: top right;
  pointer-events: none;
}
.is--anime-artist .quiz-artist__pin,
.is--anime-artist .result-img__pin {
  opacity: 0;
  transform: translate(2rem, -1rem);
  pointer-events: none;
}
.is--anime-artist.is--animation .quiz-artist__img-wrapper,
.is--anime-artist.is--animation .result-img__anime-wrapper {
  opacity: 1;
  transform: translateY(0) rotate(0deg);
  pointer-events: auto;
  transition: opacity 0.2s, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.is--anime-artist.is--animation .quiz-artist__pin,
.is--anime-artist.is--animation .result-img__pin {
  opacity: 1;
  transform: translate(0, 0);
  pointer-events: auto;
  transition: opacity 0.2s 0.1s, transform 0.3s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is--anime-scale {
  opacity: 0;
  transform: scale(1.2);
  pointer-events: none;
}
.is--anime-scale.is--animation {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 0.2s 0.2s, transform 0.3s 0.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.is--anime-intro {
  pointer-events: none;
}
.is--anime-intro::before {
  opacity: 0;
  transform: translate(2rem, 5rem) rotate(-10deg) !important;
}
.is--anime-intro::after {
  opacity: 0;
  transform: translate(2rem, 5rem) rotate(-1.4deg) !important;
}
.is--anime-intro .intro__txt {
  opacity: 0;
  transform: translate(2rem, 5rem) rotate(-6deg) !important;
}
.is--anime-intro.is--animation {
  pointer-events: auto;
}
.is--anime-intro.is--animation::before {
  opacity: 1;
  transform: translate(0, 0) rotate(-5deg) !important;
  transition: opacity 0.3s 0.1s, transform 0.5s 0.1s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is--anime-intro.is--animation::after {
  opacity: 1;
  transform: translate(0, 0) rotate(-0.7deg) !important;
  transition: opacity 0.3s 0.3s, transform 0.5s 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.is--anime-intro.is--animation .intro__txt {
  opacity: 1;
  transform: translate(0, 0) rotate(-3deg) !important;
  transition: opacity 0.3s 0.5s, transform 0.5s 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes blink {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0.5;
  }
}
@keyframes sticker_anime {
  0% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
@keyframes stripe_anime {
  0% {
    background-position: 100% 100%;
  }
  100% {
    background-position: 0 0;
  }
}
@keyframes radius_anime {
  0%, 100% {
    border-radius: 56% 44% 48% 52%/51% 45% 55% 49%;
  }
  25%, 75% {
    border-radius: 38% 62% 39% 61%/61% 53% 47% 39%;
  }
  50% {
    border-radius: 52% 48% 50% 50%/50% 51% 49% 50%;
  }
}
@keyframes pagetop_chr_anime {
  0%, 21% {
    transform: rotate(0deg);
  }
  3%, 18% {
    transform: rotate(-3deg);
  }
  9% {
    transform: rotate(3deg);
  }
}
@keyframes bounce {
  0% {
    transform: scale(0.5);
  }
  30% {
    transform: scale(1.1);
  }
  65% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.swal2-container .swal2-popup {
  width: 93%;
  padding: 3rem 3rem 4.5rem;
  background: url("../img/common/paper_texture.webp") repeat-y center top;
  background-size: 100% auto;
  font-size: 2.2rem;
  color: #856c3d;
}
@media screen and (min-width: 769px) {
  .swal2-container .swal2-popup {
    max-width: 550px;
    font-size: 1.6rem;
  }
}
.swal2-container .swal2-title {
  margin-top: 1rem;
  padding: 0;
  font-size: 2.6rem;
}
@media screen and (min-width: 769px) {
  .swal2-container .swal2-title {
    font-size: 2rem;
  }
}
.swal2-container .swal2-html-container {
  margin-left: 0;
  margin-right: 0;
  font-weight: 500;
}
.swal2-container .swal2-icon.swal2-question,
.swal2-container .swal2-icon.swal2-info {
  margin-top: 0;
  color: #cb2d4e;
  border-color: #cb2d4e;
}
.swal2-container .swal2-actions {
  width: 100%;
  margin: 0;
  gap: 4%;
}
.swal2-container .swal2-actions button {
  width: 48%;
  margin: 2rem 0 0;
  font-size: 2.4rem;
}
@media screen and (min-width: 769px) {
  .swal2-container .swal2-actions button {
    font-size: 1.8rem;
  }
}
.swal2-container .swal2-styled:hover, .swal2-container .swal2-styled:active {
  background-image: inherit;
}
.swal2-container .swal2-styled:focus {
  box-shadow: none;
}
.swal2-container .swal2-styled.swal2-confirm,
.swal2-container .swal2-styled.swal2-deny {
  position: relative;
  padding: 1.5rem 2.5rem;
  box-sizing: border-box;
  background-color: #ff476e;
  background-image: repeating-linear-gradient(-45deg, #ff476e, #ff476e 0.8rem, #ff5a7d 0, #ff5a7d 1.6rem) !important;
  background-size: 500% 500%;
  border: solid 0.5rem #b11b3a;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1rem 0 0 #b11b3a !important;
  transform-origin: center bottom;
  transition: box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  text-shadow: 0px 0.2rem 0px #b11b3a, 0px 0.4rem 0px #b11b3a;
}
.swal2-container .swal2-styled.swal2-confirm::after,
.swal2-container .swal2-styled.swal2-deny::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1.2rem 2.2rem 0 rgba(255, 188, 202, 0.4) inset, 0 -0.8rem 0.5rem 0 rgba(177, 27, 58, 0.4) inset, 0 0.3rem 0 0 #ffbcca inset;
}
@media (any-hover: hover) {
  .swal2-container .swal2-styled.swal2-confirm:hover,
  .swal2-container .swal2-styled.swal2-deny:hover {
    box-shadow: 0 0.3rem 0 0 #b11b3a !important;
    transform: translateY(0.5rem);
    animation: stripe_anime 30s linear infinite;
    animation-fill-mode: both;
  }
}
@media screen and (min-width: 769px) {
  .swal2-container .swal2-styled.swal2-confirm,
  .swal2-container .swal2-styled.swal2-deny {
    border-width: 0.3rem;
    box-shadow: 0 0.8rem 0 0 #b11b3a;
  }
}
.swal2-container .swal2-styled.swal2-cancel {
  position: relative;
  padding: 1.5rem 2.5rem;
  box-sizing: border-box;
  background-color: #4990f1;
  background-image: repeating-linear-gradient(-45deg, #4990f1, #4990f1 0.8rem, #5c9bf2 0, #5c9bf2 1.6rem) !important;
  background-size: 500% 500%;
  border: solid 0.5rem #1f65c5;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1rem 0 0 #1f65c5 !important;
  transform-origin: center bottom;
  transition: box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  text-shadow: 0px 0.2rem 0px #1f65c5, 0px 0.4rem 0px #1f65c5;
}
.swal2-container .swal2-styled.swal2-cancel::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1.2rem 2.2rem 0 rgba(184, 213, 255, 0.4) inset, 0 -0.8rem 0.5rem 0 rgba(31, 101, 197, 0.4) inset, 0 0.3rem 0 0 #b8d5ff inset;
}
@media (any-hover: hover) {
  .swal2-container .swal2-styled.swal2-cancel:hover {
    box-shadow: 0 0.3rem 0 0 #1f65c5 !important;
    transform: translateY(0.5rem);
    animation: stripe_anime 30s linear infinite;
    animation-fill-mode: both;
  }
}
@media screen and (min-width: 769px) {
  .swal2-container .swal2-styled.swal2-cancel {
    border-width: 0.3rem;
    box-shadow: 0 0.8rem 0 0 #1f65c5;
  }
}

#main {
  background: url("../img/common/bg_pattern.webp") repeat 0 0;
  background-size: 45rem 40rem;
}

#header {
  position: relative;
  overflow: hidden;
  -webkit-clip-path: url(#header-shape-sp);
          clip-path: url(#header-shape-sp);
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #header {
    -webkit-clip-path: url(#header-shape);
            clip-path: url(#header-shape);
  }
}
#header .header__bg {
  position: absolute;
  inset: 0;
  -webkit-clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
          clip-path: polygon(0 0, 0 100%, 100% 100%, 100% 0);
  overflow: hidden;
  z-index: -1;
}
#header .header__bg::before {
  content: "";
  position: fixed;
  inset: 0;
  background: url("../img/common/bg_section_sp.webp") no-repeat center center;
  background-size: cover;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #header .header__bg::before {
    background-image: url("../img/common/bg_section.webp");
  }
}
#header .header__logo {
  position: absolute;
  top: 2rem;
  left: 2rem;
  width: 20%;
  max-width: 150px;
  filter: drop-shadow(0px 0px 1rem rgba(65, 84, 91, 0.4));
  z-index: 10;
}
#header .header__inner {
  max-width: 1200px;
  margin: auto;
  padding: 9rem 2rem 14rem;
  filter: drop-shadow(0px 0px 0.5rem rgba(65, 84, 91, 0.4));
}
@media screen and (min-width: 769px) {
  #header .header__inner {
    padding: 9rem 5rem 14rem;
  }
}
@media screen and (min-width: 769px) {
  #header .header-main {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
}
#header .header-main__ttl {
  width: 80%;
  max-width: 537px;
  margin: 0 auto 7rem;
}
@media screen and (min-width: 769px) {
  #header .header-main__ttl {
    width: 50%;
    max-width: 538px;
    margin: 0;
  }
}
#header .header-main__artist {
  position: relative;
  max-width: 70%;
  margin: auto;
}
@media screen and (min-width: 769px) {
  #header .header-main__artist {
    margin: 0;
  }
}
#header .artist-frame {
  padding: 3rem;
  background-color: #fff;
  border-radius: 3rem;
  border: solid 0.3rem #e2e1c0;
  box-shadow: 0 1rem 0 0 #e2e1c0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
#header .artist-frame__ttl {
  padding: 0 1rem 0.5rem;
  background: url("../img/common/ttl_line.webp") no-repeat center bottom;
  background-size: auto 0.5rem;
  font-family: "Dela Gothic One", "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 2.2rem;
}
@media screen and (min-width: 769px) {
  #header .artist-frame__ttl {
    font-size: 1.8rem;
  }
}
#header .artist-frame__logo {
  max-width: 204px;
}
#header .header-main__sticker {
  position: absolute;
  top: -5rem;
  left: -3rem;
  width: 36%;
  max-width: 146px;
  animation: sticker_anime 2s steps(2) infinite;
  animation-fill-mode: both;
}
@media screen and (min-width: 769px) {
  #header .header-main__sticker {
    top: -4rem;
  }
}

#result .result__inner {
  max-width: 1300px;
  margin: auto;
  padding: 10rem 2rem 12rem;
}
@media screen and (min-width: 769px) {
  #result .result__inner {
    padding: 10rem 5rem 12rem;
  }
}
#result .result__ttl {
  width: 80%;
  max-width: 706px;
  margin: 0 auto 5rem;
}
#result .result__board {
  position: relative;
  padding: 4rem 1.5rem 5.5rem;
  background: #c69b56 url("../img/common/bg_board.webp") repeat 0 0;
  background-size: 30rem 30rem;
  border: solid 0.5rem #856430;
  border-radius: 2rem;
  box-shadow: 0 2rem 0 0 #856430;
}
@media screen and (min-width: 769px) {
  #result .result__board {
    padding: 3rem 5rem 4.5rem;
  }
}
#result .result__block {
  position: relative;
  width: 100%;
  padding: 0 3rem 4rem;
  z-index: 1;
}
#result .result__block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/common/paper_texture.webp") repeat-y center top;
  background-size: 100% auto;
  transform: rotate(-2deg);
  filter: drop-shadow(0px 0px 0.5rem rgba(65, 84, 91, 0.4));
  z-index: -1;
}
#result .result__block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/quiz/result/bg_illust_sp.webp") no-repeat center top, url("../img/common/paper_texture.webp") repeat-y center top;
  background-size: 100% auto, 100% auto;
  filter: drop-shadow(0px 0px 0.5rem rgba(65, 84, 91, 0.4));
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #result .result__block {
    padding: 0 5rem 4rem;
  }
  #result .result__block::after {
    background: url("../img/quiz/result/bg_illust.webp") no-repeat center top, url("../img/common/paper_texture.webp") repeat-y center top;
    background-size: 100% auto, 100% auto, 100% auto;
  }
}
#result .result__content {
  padding: 3.5rem 1rem 0.5rem;
  background: url("../img/common/paper_line.webp") repeat-y center top;
  background-size: 160% auto;
  color: #856c3d;
  font-size: 3rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #result .result__content {
    background-size: 100% 11.7rem;
  }
}
#result .result__txt {
  position: relative;
  margin-bottom: 3rem;
  font-family: "Dela Gothic One", "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 9rem;
  color: #856c3d;
  line-height: 1;
  z-index: 1;
}
#result .result__txt.is--clear .is--num {
  color: #cb2d4e;
}
#result .result__txt.is--clear .result__circle svg {
  fill: #ffb6cb;
}
@media screen and (min-width: 769px) {
  #result .result__txt {
    margin-bottom: 7rem;
  }
}
#result .result__txt .is--num {
  position: relative;
  color: #0080cc;
  display: inline-block;
}
#result .result__txt .is--correct {
  font-size: 150%;
}
#result .result__circle {
  position: absolute;
  top: -2.5rem;
  left: -13rem;
  right: 0;
  width: 47.5rem;
  margin: auto;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #result .result__circle {
    left: -35rem;
  }
}
#result .result__circle svg {
  width: 100%;
  fill: #99eaff;
  display: block;
}
#result .result-img {
  position: relative;
  margin-top: 3.5rem;
}
@media screen and (min-width: 769px) {
  #result .result-img {
    margin-top: 2.5rem;
  }
}
#result .result-img__anime {
  width: 95%;
  max-width: 900px;
  margin: auto;
  box-sizing: content-box;
  border: solid #fff 1rem;
  filter: drop-shadow(0px 0px 0.5rem rgba(65, 84, 91, 0.4));
  transform: rotate(3deg);
}
@media screen and (min-width: 769px) {
  #result .result-img__anime {
    width: 88%;
  }
}
#result .result-img__pin {
  position: absolute;
  top: -1.5rem;
  left: 0;
  right: -7rem;
  width: 8%;
  max-width: 41px;
  margin: auto;
}
#result .result__sticker {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  animation: sticker_anime 2s steps(2) infinite;
  animation-fill-mode: both;
  z-index: 5;
}
#result .result__sticker.is--01 {
  top: -13rem;
  right: -55rem;
  width: 19%;
  max-width: 161px;
}
@media screen and (min-width: 769px) {
  #result .result__sticker.is--01 {
    top: -9rem;
    right: -92%;
    width: 14%;
  }
}
#result .result__sticker.is--02 {
  top: calc(50% - 10rem);
  left: -59rem;
  width: 19%;
  max-width: 169px;
}
@media screen and (min-width: 769px) {
  #result .result__sticker.is--02 {
    top: calc(50% - 15rem);
    left: -98%;
    width: 14%;
  }
}
#result .result__sticker.is--03 {
  bottom: -3.5rem;
  right: -63rem;
  width: 21%;
  max-width: 191px;
}
@media screen and (min-width: 769px) {
  #result .result__sticker.is--03 {
    bottom: 6.5rem;
    right: -99%;
    width: 17%;
  }
}
#result .detail__block {
  position: relative;
  width: 100%;
  padding: 0 3rem 4rem;
  z-index: 1;
}
#result .detail__block::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/common/paper_texture.webp") repeat-y center top;
  background-size: 100% auto;
  transform: rotate(-1deg);
  filter: drop-shadow(0px 0px 0.5rem rgba(65, 84, 91, 0.4));
  z-index: -1;
}
#result .detail__block::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/common/paper_texture.webp") repeat-y center top;
  background-size: 100% auto;
  filter: drop-shadow(0px 0px 0.5rem rgba(65, 84, 91, 0.4));
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #result .detail__block {
    padding: 0 5rem 4rem;
  }
}
#result .detail__board {
  position: relative;
  max-width: 1000px;
  margin: 10rem auto 0;
  padding: 4rem 1.5rem 5.5rem;
  background: #c69b56 url("../img/common/bg_board.webp") repeat 0 0;
  background-size: 30rem 30rem;
  border: solid 0.5rem #856430;
  border-radius: 2rem;
  box-shadow: 0 2rem 0 0 #856430;
}
@media screen and (min-width: 769px) {
  #result .detail__board {
    width: 90%;
    padding: 3rem 5rem 4.5rem;
  }
}
#result .detail__content {
  padding: 4.9rem 0 0.3rem;
  background: url("../img/common/paper_line.webp") repeat-y center top;
  background-size: 91.6610169492rem 10.4rem;
}
@media screen and (min-width: 769px) {
  #result .detail__content {
    padding: 4.1rem 0 0.3rem;
    background-size: 77.5593220339rem 8.8rem;
  }
}
#result .detail-ttl {
  position: absolute;
  top: 1rem;
  left: 2rem;
  width: 50%;
  max-width: 336px;
  filter: drop-shadow(0px 0px 0.5rem rgba(133, 108, 61, 0.4));
  z-index: 1;
}
@media screen and (min-width: 769px) {
  #result .detail-ttl {
    top: 3rem;
    width: 35%;
  }
}
#result .detail-ttl__inner {
  position: relative;
  width: 100%;
  transform: rotate(-10deg);
  transform-origin: top left;
}
#result .detail-ttl__txt {
  position: absolute;
  inset: 0;
  padding: 0 4rem;
  background-image: linear-gradient(180deg, #a0883a 0%, #6e5d2f 100%);
  -webkit-background-clip: text;
          background-clip: text;
  font-family: "Dela Gothic One", "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 4.8rem;
  color: #856c3d;
  -webkit-text-fill-color: transparent;
  display: flex;
  align-items: center;
}
#result .detail__sticker {
  position: absolute;
  left: 0;
  right: 0;
  margin: auto;
  pointer-events: none;
  animation: sticker_anime 2s steps(2) infinite;
  animation-fill-mode: both;
  z-index: 5;
}
#result .detail__sticker.is--01 {
  bottom: -3rem;
  left: -63rem;
  width: 18%;
  max-width: 180px;
}
@media screen and (min-width: 769px) {
  #result .detail__sticker.is--01 {
    bottom: 1rem;
    left: -78rem;
    width: 20%;
  }
}
#result .detail__sticker.is--02 {
  top: -10rem;
  right: -44rem;
  width: 32%;
  max-width: 320px;
}
@media screen and (min-width: 769px) {
  #result .detail__sticker.is--02 {
    top: -13rem;
    right: -82rem;
    width: 35%;
  }
}
#result .answer-detail {
  width: 100%;
  max-width: 560px;
  margin: auto;
}
#result .answer-detail thead {
  position: sticky;
  top: 0;
}
#result .answer-detail th, #result .answer-detail td {
  line-height: 5.2rem;
}
@media screen and (min-width: 769px) {
  #result .answer-detail th, #result .answer-detail td {
    line-height: 4.4rem;
  }
}
#result .answer-detail th {
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (min-width: 769px) {
  #result .answer-detail th {
    font-size: 1.8rem;
  }
}
#result .answer-detail td {
  font-weight: 700;
  font-size: 2.6rem;
  color: #d33052;
}
@media screen and (min-width: 769px) {
  #result .answer-detail td {
    font-size: 2.2rem;
  }
}
#result .answer-detail__cell {
  width: 25%;
  padding: 0 1rem;
  text-align: center;
}
@media screen and (min-width: 769px) {
  #result .answer-detail__cell {
    padding: 0 1.5rem;
  }
}
#result .is--incorrect td {
  color: #1f65c5;
}
#result .result__btn-share {
  width: 95%;
  max-width: 530px;
  margin: 4rem auto 0;
}
#result .result__btn-share .btn {
  position: relative;
  width: 100%;
  padding: 0 2.5rem;
  background-color: #ff476e;
  border: solid 0.5rem #b11b3a;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1rem 0 0 #b11b3a;
  transform-origin: center bottom;
  transition: box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 1rem;
  padding-right: 4rem;
}
#result .result__btn-share .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 99%;
  height: 99%;
  background: repeating-linear-gradient(-45deg, #ff476e, #ff476e 0.8rem, #ff5a7d 0, #ff5a7d 1.6rem);
  background-size: 500% 500%;
  border-radius: calc(infinity * 1px);
}
#result .result__btn-share .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1.2rem 2.2rem 0 rgba(255, 188, 202, 0.4) inset, 0 -0.8rem 0.5rem 0 rgba(177, 27, 58, 0.4) inset, 0 0.3rem 0 0 #ffbcca inset;
}
@media (any-hover: hover) {
  #result .result__btn-share .btn:hover {
    box-shadow: 0 0.3rem 0 0 #b11b3a;
    transform: translateY(0.5rem);
  }
  #result .result__btn-share .btn:hover::before {
    animation: stripe_anime 30s linear infinite;
    animation-fill-mode: both;
  }
}
@media screen and (min-width: 769px) {
  #result .result__btn-share .btn {
    border-width: 0.3rem;
    box-shadow: 0 0.8rem 0 0 #b11b3a;
  }
}
#result .result__btn-share .btn .btn__txt {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  text-shadow: 0px 0.2rem 0px #b11b3a, 0px 0.4rem 0px #b11b3a;
  display: block;
  flex-grow: 2;
  z-index: 1;
}
#result .result__btn-share .btn__txt {
  padding: 1.5rem 0.5rem 1.8rem;
  font-size: 3.8rem;
  line-height: 1.2 !important;
}
@media screen and (min-width: 769px) {
  #result .result__btn-share .btn__txt {
    padding: 1rem 1rem 1.5rem;
    font-size: 3.6rem;
  }
}
#result .result__btn-share .btn__share-icon {
  position: relative;
  background-color: #b11b3a;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 0.3rem 0 0 #9a0726 inset, 0 0.3rem 0 0 #ffbcca;
  font-family: "Dela Gothic One", "ヒラギノ角ゴ StdN", "Hiragino Kaku Gothic StdN", "Meiryo UI", "メイリオ", Meiryo, sans-serif;
  font-size: 5.2rem;
  line-height: 1;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 1/1;
  flex-basis: 8.2rem;
  z-index: 1;
}
#result .result__btn-share .btn__share-icon svg {
  width: 50%;
  margin: auto;
  fill: #fff;
  display: block;
}
#result .result__btn-share .btn__icon {
  width: 1.2rem;
  height: 1.2rem;
  transform: rotate(-30deg);
  filter: drop-shadow(0 0.4rem 0 #b11b3a);
  display: block;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #result .result__btn-share .btn__icon {
    width: 1rem;
    height: 1rem;
  }
}
#result .result__btn-share .btn__arrow {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-top-left-radius: 50%;
  transform: rotate(30deg) skewY(30deg) scaleX(0.86666);
  display: block;
}
#result .result__btn-share .btn__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-top-right-radius: 50%;
  transform: skewX(-45deg) translateX(50%);
}
#result .result__btn-share .btn__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-bottom-left-radius: 50%;
  transform: skewY(-45deg) translateY(50%);
}
#result .result__btn-retry {
  width: 85%;
  margin: 4rem auto 0;
}
@media screen and (min-width: 769px) {
  #result .result__btn-retry {
    max-width: 430px;
  }
}
#result .result__btn-retry .btn {
  position: relative;
  width: 100%;
  padding: 0 2.5rem;
  background-color: #ff476e;
  border: solid 0.5rem #b11b3a;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1rem 0 0 #b11b3a;
  transform-origin: center bottom;
  transition: box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#result .result__btn-retry .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 99%;
  height: 99%;
  background: repeating-linear-gradient(-45deg, #ff476e, #ff476e 0.8rem, #ff5a7d 0, #ff5a7d 1.6rem);
  background-size: 500% 500%;
  border-radius: calc(infinity * 1px);
}
#result .result__btn-retry .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1.2rem 2.2rem 0 rgba(255, 188, 202, 0.4) inset, 0 -0.8rem 0.5rem 0 rgba(177, 27, 58, 0.4) inset, 0 0.3rem 0 0 #ffbcca inset;
}
@media (any-hover: hover) {
  #result .result__btn-retry .btn:hover {
    box-shadow: 0 0.3rem 0 0 #b11b3a;
    transform: translateY(0.5rem);
  }
  #result .result__btn-retry .btn:hover::before {
    animation: stripe_anime 30s linear infinite;
    animation-fill-mode: both;
  }
}
@media screen and (min-width: 769px) {
  #result .result__btn-retry .btn {
    border-width: 0.3rem;
    box-shadow: 0 0.8rem 0 0 #b11b3a;
  }
}
#result .result__btn-retry .btn .btn__txt {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  text-shadow: 0px 0.2rem 0px #b11b3a, 0px 0.4rem 0px #b11b3a;
  display: block;
  flex-grow: 2;
  z-index: 1;
}
#result .result__btn-retry .btn__txt {
  padding: 2.5rem 0.5rem 2.8rem;
  font-size: 3.4rem;
  line-height: 1.2 !important;
}
@media screen and (min-width: 769px) {
  #result .result__btn-retry .btn__txt {
    padding: 2rem 1rem 2.5rem;
    font-size: 2.6rem;
  }
}
#result .result__btn-retry .btn__icon {
  width: 1.2rem;
  height: 1.2rem;
  transform: rotate(-30deg) translateY(-0.5rem);
  filter: drop-shadow(0 0.4rem 0 #b11b3a);
  display: block;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #result .result__btn-retry .btn__icon {
    width: 1rem;
    height: 1rem;
  }
}
#result .result__btn-retry .btn__arrow {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-top-left-radius: 50%;
  transform: rotate(30deg) skewY(30deg) scaleX(0.86666);
  display: block;
}
#result .result__btn-retry .btn__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-top-right-radius: 50%;
  transform: skewX(-45deg) translateX(50%);
}
#result .result__btn-retry .btn__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-bottom-left-radius: 50%;
  transform: skewY(-45deg) translateY(50%);
}
#result .result__btn-back {
  width: 60%;
  max-width: 340px;
  margin: 10rem auto 0;
}
#result .result__btn-back .btn {
  position: relative;
  width: 100%;
  padding: 0 2.5rem;
  background-color: #4990f1;
  border: solid 0.5rem #1f65c5;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1rem 0 0 #1f65c5;
  transform-origin: center bottom;
  transition: box-shadow 0.3s cubic-bezier(0.25, 1, 0.5, 1), transform 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#result .result__btn-back .btn::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 99%;
  height: 99%;
  background: repeating-linear-gradient(-45deg, #4990f1, #4990f1 0.8rem, #5c9bf2 0, #5c9bf2 1.6rem);
  background-size: 500% 500%;
  border-radius: calc(infinity * 1px);
}
#result .result__btn-back .btn::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: calc(infinity * 1px);
  box-shadow: 0 1.2rem 2.2rem 0 rgba(184, 213, 255, 0.4) inset, 0 -0.8rem 0.5rem 0 rgba(31, 101, 197, 0.4) inset, 0 0.3rem 0 0 #b8d5ff inset;
}
@media (any-hover: hover) {
  #result .result__btn-back .btn:hover {
    box-shadow: 0 0.3rem 0 0 #1f65c5;
    transform: translateY(0.5rem);
  }
  #result .result__btn-back .btn:hover::before {
    animation: stripe_anime 30s linear infinite;
    animation-fill-mode: both;
  }
}
@media screen and (min-width: 769px) {
  #result .result__btn-back .btn {
    border-width: 0.3rem;
    box-shadow: 0 0.8rem 0 0 #1f65c5;
  }
}
#result .result__btn-back .btn .btn__txt {
  position: relative;
  font-weight: 700;
  color: #fff;
  text-align: center;
  line-height: 1;
  text-shadow: 0px 0.2rem 0px #1f65c5, 0px 0.4rem 0px #1f65c5;
  display: block;
  flex-grow: 2;
  z-index: 1;
}
#result .result__btn-back .btn__txt {
  padding: 1.5rem 0.5rem 1.8rem;
  font-size: 2.6rem;
}
@media screen and (min-width: 769px) {
  #result .result__btn-back .btn__txt {
    padding: 1rem 1rem 1.5rem;
    font-size: 2.2rem;
  }
}
#result .result__btn-back .btn__icon {
  width: 0.8rem;
  height: 0.8rem;
  transform: rotate(-90deg);
  filter: drop-shadow(-0.4rem 0 0 #1f65c5);
  display: block;
  pointer-events: none;
}
@media screen and (min-width: 769px) {
  #result .result__btn-back .btn__icon {
    width: 0.6rem;
    height: 0.6rem;
  }
}
#result .result__btn-back .btn__arrow {
  position: relative;
  width: 100%;
  height: 100%;
  background: #fff;
  border-top-left-radius: 50%;
  transform: rotate(30deg) skewY(30deg) scaleX(0.86666);
  display: block;
}
#result .result__btn-back .btn__arrow::before {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-top-right-radius: 50%;
  transform: skewX(-45deg) translateX(50%);
}
#result .result__btn-back .btn__arrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #fff;
  border-bottom-left-radius: 50%;
  transform: skewY(-45deg) translateY(50%);
}/*# sourceMappingURL=result.css.map */