.d-flex {
  display: flex;
}

@-webkit-keyframes slidingLight {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -150% 0;
  }
}

@keyframes slidingLight {
  0% {
    background-position: 100% 0;
  }

  100% {
    background-position: -150% 0;
  }
}

/*Fonts*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

ul[role="list"],
ol[role="list"] {
  list-style: none;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

/*=============================================================================*/
:root {
  --primary-color: #0059bf;
  --secondary-color: #fb9c1a;
  --tertiary-color: #0082c8;
  --white-color: #ffffff;
  --pink-color: #ff83a6;
  --blue-color: #0072c8;
  font-size: 1em;
  --pTagLineHeight: 1.8em;
}

body::-webkit-scrollbar {
  width: 0em;
  background-color: #f5f5f5;
}

body::-webkit-scrollbar-thumb {
  background-color: #000000;
}

body::-webkit-scrollbar-thumb:hover {
  background-color: #555555;
}

@-webkit-keyframes bgiLoop {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -1000px 2000px;
  }
}

@keyframes bgiLoop {
  0% {
    background-position: 0 0;
  }

  100% {
    background-position: -1000px 2000px;
  }
}

.totalScore,
.quizBox,
.answerBox {
  display: none;
  opacity: 0;
}

footer {
  display: none;
}

* {
  list-style: none;
  box-sizing: border-box;
  text-decoration: none;
}

html {
  overflow-x: hidden;
}

@media screen and (min-width: 500px) {
  .hidden-pc {
    display: none;
  }
}

.hidden-sp {
  display: none;
}
@media screen and (min-width: 500px) {
  .hidden-sp {
    display: inline-block;
  }
}

body {
  overflow-x: hidden;
  max-width: 100vw;
  position: relative;
  font-size: 1em;
  margin: auto;
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  /****************************************************************************************************************************/
  /*footer*/
}

body .lpNumberLabel {
  --size: 25vw;
  --max-size: 210px;
  max-width: var(--max-size);
  max-height: var(--max-size);
  top: -30px;
  right: -20px;
  position: absolute;
  color: var(--white-color);
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  width: var(--size);
  height: var(--size);
  background-color: var(--primary-color);
  border-radius: 50%;
  z-index: 15;
  letter-spacing: -0.5px;
}

@media only screen and (max-width: 896px) {
  body .lpNumberLabel {
    --size: 30vw;
    --max-size: 210px;
    --min-size: 100px;
    --position: min(-3vw, -14px);
    min-width: var(--min-size);
    min-height: var(--min-size);
    top: var(--position);
    right: var(--position);
    letter-spacing: -1px;
  }

  body .lpNumberLabel p {
    min-width: 90px;
  }

  body .lpNumberLabel span {
    line-height: 1em;
  }
}

@media (min-width: 320px) and (max-width: 896px) {
  body .lpNumberLabel {
    font-size: 3.2vw;
  }
}

@media (min-width: 770px) {
  body .lpNumberLabel {
    font-size: 1.375em;
  }
}

body .lpNumberLabel span {
  vertical-align: sub;
  line-height: 1em;
}

@media (min-width: 320px) and (max-width: 896px) {
  body .lpNumberLabel span {
    font-size: calc(2.0625em + 6 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body .lpNumberLabel span {
    font-size: 2.4375em;
  }
}

body .bgDots {
  position: fixed;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  z-index: -1;
  background-image: url("../images/dotted-bg.png");
  -webkit-animation: bgiLoop 100s linear infinite;
  animation: bgiLoop 100s linear infinite;
}

body header {
  --header-min-height: calc(100vw * 0.6);
  height: 100vh;
  min-height: var(--header-min-height);
  border: 10px solid var(--primary-color);
  background-image: var(--header-water-wave);
  background-position: bottom center;
  background-repeat: no-repeat;
  background-size: 100% max(460px, 60vh);
  border-bottom: none;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 896px) {
  body header {
    --header-min-height: 132vw;
    background-size: 100% 60vh;
  }
}

body header .headerContainer {
  height: 100vh;
  min-height: var(--header-min-height);
  margin: 0 auto;
  position: relative;
  overflow: visible;
}

/**
 * .headerContainer
 */
body header .headerContainer h1 {
  position: absolute;
  top: calc(100vw / 8.8);
  left: 8%;
  transform: translate(-8%, -14%);
  z-index: 10;
}

body header .headerContainer h1 img {
  margin: 0 auto;
  width: 40vw;
}

body header .headerContainer ul {
  margin: 0;
}

body header .headerContainer ul li {
  position: absolute;
  visibility: hidden;
  width: 21vw;
}

body header .headerContainer ul li img {
  width: 100%;
}

body header .headerContainer ul li:nth-of-type(1) {
  left: 57%;
  top: calc(100vw / 18);
  z-index: 7;
}

body header .headerContainer ul li:nth-of-type(2) {
  left: 47%;
  top: calc(100vw / 5);
  z-index: 9;
}

body header .headerContainer ul li:nth-of-type(3) {
  left: 69%;
  top: calc(100vw / 5);
  z-index: 9;
}

body header .headerContainer ul li:nth-of-type(4) {
  left: 73%;
  top: calc(100vw / 5.9);
  z-index: 1;
}

body header .headerContainer .headerText {
  position: absolute;
  left: 16%;
  top: calc(100vw / 2.9);
  transform: translate(-16%, -55%);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  min-width: 260px;
  color: var(--tertiary-color);
  text-shadow: 0px 0px 10px var(--white-color), 0px 0px 10px var(--white-color),
    0px 0px 10px var(--white-color), 0px 0px 10px var(--white-color),
    0px 0px 10px var(--white-color), 0px 0px 10px var(--white-color),
    0px 0px 10px var(--white-color), 0px 0px 10px var(--white-color),
    0px 0px 10px var(--white-color), 0px 0px 10px var(--white-color),
    0px 0px 10px var(--white-color), 0px 0px 10px var(--white-color);
  text-align: center;
  z-index: 10;
  line-height: 1.8em;
  font-size: 1.5vw;
}

body header .headerContainer .startButton {
  position: absolute;
  left: 50%;
  top: calc(100vw / 2.1);
  transform: translateX(-50%);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  max-width: 380px;
  width: 70%;
  height: 70px;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--white-color);
  font-size: 1.25em;
  border-radius: 40px;
  box-shadow: var(--white-color) 2px 5px 1px;
  z-index: 10;
  background: linear-gradient(
    -90deg,
    var(--secondary-color) 0%,
    #ff7900 40%,
    #ffb600 45%,
    #ff7900 55%,
    var(--secondary-color) 60%
  );
  -webkit-animation-direction: normal;
  animation-direction: normal;
  background-size: 250% 250%;
}

/**
 * .headerContainer media@896
 */
@media only screen and (max-width: 896px) {
  body header .headerContainer h1 {
    left: 50%;
    top: calc(100vw / 14);
    transform: translateX(-50%);
    z-index: 10;
  }

  body header .headerContainer h1 img {
    margin: 0 auto;
    width: 100%;
    max-width: 600px;
  }

  body header .headerContainer ul {
    margin: revert;
  }

  body header .headerContainer ul li {
    width: 40vw;
  }

  body header .headerContainer ul li:nth-of-type(1) {
    left: 51%;
    top: calc(100vw / 3.1);
    transform: translateX(-50%);
    z-index: 8;
  }

  body header .headerContainer ul li:nth-of-type(2) {
    left: 11%;
    top: calc(100vw / 2);
    z-index: 10;
  }

  body header .headerContainer ul li:nth-of-type(3) {
    left: 54%;
    top: calc(100vw / 2);
    z-index: 8;
  }

  body header .headerContainer ul li:nth-of-type(4) {
    left: 62%;
    top: calc(100vw / 1.9);
    z-index: 1;
  }

  body header .headerContainer .headerText {
    left: 50%;
    top: calc(100vw / 1.05);
    transform: translateX(-50%);
    min-width: 300px;
    line-height: 1.8em;
    width: 100%;
    font-size: 2.5vw;
  }

  body header .headerContainer .startButton {
    left: 50%;
    top: calc(100vw / 0.88);
    transform: translateX(-50%);
    width: 83%;
    height: max(50px, 8vh);
    max-width: 570px;
    min-width: 270px;
  }

  body header .headerContainer .startButton p i svg {
    transform: translateX(15px);
    max-width: 1em;
  }
}

/**
 * .headerContainer media@430
 */
@media only screen and (max-width: 431px) {
  body header .headerContainer .startButton {
    top: calc(100vw / 0.8);
  }
}

/**
 * .headerContainer media@321
 */
@media only screen and (max-width: 321px) {
  body footer .otherChallenges .history > div a span.number {
    width: 80px;
  }
}

@media only screen and (max-width: 450px) {
  body header .headerContainer .headerText {
    font-size: calc(0.875em + 4 * (100vw - 20em) / 450);
  }
  body header .headerContainer .startButton {
    font-size: calc(1em + 4 * (100vw - 20em) / 450);
  }
}

body header .headerContainer .startButton p {
  width: 100%;
}

body header .headerContainer .startButton p i {
  vertical-align: middle;
}

body header .headerContainer .startButton p i svg {
  transform: translateX(20px);
  max-width: 1.2em;
  vertical-align: middle;
}

body header .headerContainer .startButton p i svg path {
  fill: #fff;
}

body header .headerContainer .startButton:hover {
  -webkit-animation: slidingLight 3s infinite;
  animation: slidingLight 3s infinite;
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body header {
    --header-min-height: 132vw;
    background-size: 100% calc(var(--header-min-height) / 4 * 3);
  }
}

body main {
  border-left: 10px solid var(--primary-color);
  border-right: 10px solid var(--primary-color);
  /*--------------------------------------------------------------------------------------------------------------------------------------------------------*/
}

body main .quizContainer .quiz {
  position: relative;
  /*--------------------------------------------------------------------------------------------------------------------------------------------------------*/
  /*--------------------------------------------------------------------------------------------------------------------------------------------------------*/
}

body main .quizContainer .quiz:nth-of-type(1) {
  background-position: top center;
  background-repeat: no-repeat;
  background-size: 100%;
}

body main .quizContainer .quiz:nth-of-type(1) .quizBox .quizTitle {
  padding-top: 2vh;
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz:nth-of-type(1) .quizBox .quizTitle {
    padding-top: 3vh;
  }
}

body main .quizContainer .quiz .quizBox {
  max-width: 938px;
  padding: 10vh 0 14vh;
  margin: 0 auto;
  /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox {
    padding: 10vh 4% 0;
    padding: 10svh 4% 0;
  }
}

body main .quizContainer .quiz .quizBox .quizTitle {
  display: flex;
  flex-direction: row;
  align-items: center;
}

body main .quizContainer .quiz .quizBox .quizTitle .titleNumber {
  position: relative;
  background-color: var(--secondary-color);
  height: 100px;
  width: 100px;
  border-radius: 50%;
  margin-right: 3%;
}

body main .quizContainer .quiz .quizBox .quizTitle .titleNumber span {
  width: 100px;
  text-align: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--white-color);
}

@media (min-width: 320px) and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizTitle .titleNumber span {
    font-size: calc(0.875em + 1 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body main .quizContainer .quiz .quizBox .quizTitle .titleNumber span {
    font-size: 0.9375em;
  }
}

body main .quizContainer .quiz .quizBox .quizTitle .titleNumber span b {
  vertical-align: -2px;
  margin: 0 2px;
}

@media (min-width: 320px) and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizTitle .titleNumber span b {
    font-size: calc(1.5625em + 2 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body main .quizContainer .quiz .quizBox .quizTitle .titleNumber span b {
    font-size: 1.6875em;
  }
}

body main .quizContainer .quiz .quizBox .quizTitle h2 {
  color: var(--blue-color);
  font-weight: 800;
}

body main .quizContainer .quiz .quizBox .quizTitle h2 .under-line {
  text-decoration: underline;
}

@media (min-width: 320px) and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizTitle h2 {
    font-size: calc(1.125em + 12 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body main .quizContainer .quiz .quizBox .quizTitle h2 {
    font-size: 1.875em;
  }
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizTitle {
    flex-direction: column;
  }

  body main .quizContainer .quiz .quizBox .quizTitle .titleNumber {
    --size-title-span: 13vw;
    min-width: 80px;
    min-height: 80px;
    height: var(--size-title-span);
    width: var(--size-title-span);
    margin-right: 0;
    margin-bottom: 2%;
  }

  body main .quizContainer .quiz .quizBox .quizTitle .titleNumber span b {
    vertical-align: -2px;
    margin: 0 2px;
  }
}

body main .quizContainer .quiz .quizBox .quizContent {
  flex-direction: row;
  padding: 2vh 0;
  justify-content: space-between;
  /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
}

body main .quizContainer .quiz .quizBox .quizContent .quizDescription {
  max-width: 442px;
  width: 100%;
  height: 320px;
  border: 4px solid var(--secondary-color);
  background-color: var(--white-color);
  border-radius: 15px;
  padding: 4%;
  position: relative;
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizContent .quizDescription {
    padding: 4% 4% 70px;
    height: auto;
  }
}

body main .quizContainer .quiz .quizBox .quizContent .quizDescription p {
  line-height: var(--pTagLineHeight);
  transform: rotateZ(0.03deg);
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .quizDescription
  p
  .under-line {
  color: var(--blue-color);
  text-decoration: underline;
}

@media (min-width: 320px) and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizContent .quizDescription p {
    font-size: calc(0.9375em + 3 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body main .quizContainer .quiz .quizBox .quizContent .quizDescription p {
    font-size: 1.125em;
  }
}

body main .quizContainer .quiz .quizBox .quizContent .quizDescription img {
  position: absolute;
  transform: scale(1);
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizContent .quizDescription img {
    position: absolute;
    transform: scale(0.8);
    max-width: 140px;
  }
}

@media only screen and (max-width: 600px) {
  body main .quizContainer .quiz .quizBox .quizContent .quizDescription img {
    max-width: 100px;
  }
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .quizDescription
  img.kurappi-name {
  left: 160px;
  bottom: -60px;
  max-width: 180px;
  width: 47% !important;
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .quizDescription
  img.masutarou-name {
  left: 172px;
  max-width: 160px;
  bottom: -92px;
}

@media only screen and (max-width: 768px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.masutarou {
    left: 0px;
    bottom: -75px;
  }
}

@media only screen and (max-width: 768px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.masutarou-name {
    left: 122px;
    max-width: 160px;
    bottom: -52px;
  }
}

body main .quizContainer .quiz .quizBox .quizContent .answerContainer {
  width: 100%;
  max-width: 522px;
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .quizDescription
  img.position01 {
  bottom: -87px;
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .quizDescription
  img.position02 {
  bottom: -105px;
}

@media only screen and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position02 {
    bottom: -75px;
    max-width: 100px;
  }
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .quizDescription
  img.position03 {
  bottom: -127px;
}

@media only screen and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position03 {
    bottom: -67px;
  }
}

body main .quizContainer .quiz .quizBox .quizContent .answerContainer ul {
  width: 100%;
  margin: 0;
  padding-left: 30px;
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .answerContainer
  ul
  .answer {
  position: relative;
  background-color: var(--primary-color);
  color: var(--white-color);
  margin-bottom: 3vh;
  padding: 2vh 1.6vw;
  width: 100%;
  height: 74px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 1.188em;
  transition: all 0.3s ease-in-out;
  border-radius: 20px;
}

@media (min-width: 320px) and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer {
    font-size: calc(0.9375em + 4 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer {
    font-size: 1.1875em;
  }
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .answerContainer
  ul
  .answer
  span:first-child {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  border: 2px solid var(--white-color);
  margin-right: 3%;
  display: flex;
  justify-content: center;
  align-items: center;
  --size: 40px;
  width: var(--size);
  height: var(--size);
  font-weight: 700;
  background-color: var(--secondary-color);
  min-width: 40px;
}

@media (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer
    span:first-child {
    min-width: auto;
  }
}

@media (min-width: 320px) and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer
    span:first-child {
    font-size: calc(0.9375em + 9 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer
    span:first-child {
    font-size: 1.5em;
  }
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .answerContainer
  ul
  .answer
  .passFailIcon
  img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 100px;
}

body
  main
  .quizContainer
  .quiz
  .quizBox
  .quizContent
  .answerContainer
  ul
  .answer:hover {
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz .quizBox .quizContent {
    flex-direction: column;
  }

  body main .quizContainer .quiz .quizBox .quizContent .quizDescription,
  body main .quizContainer .quiz .quizBox .quizContent .answerContainer {
    width: 100%;
    max-width: 100%;
  }

  body main .quizContainer .quiz .quizBox .quizContent .answerContainer ul {
    padding: 0;
    margin-top: 10vh;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer {
    height: max(50px, 8vh);
    border-radius: max(8px, 2vw);
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer
    span:first-child {
    border: 2px solid var(--white-color);
    --size: max(30px, 6vw);
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer
    .passFailIcon
    img {
    width: 18vw;
  }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body main .quizContainer .quiz .quizBox .quizContent .answerContainer ul {
    margin-top: 25vh;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer {
    height: max(60px, 8vh);
    margin-bottom: 5vh;
    border-radius: max(8px, 2vw);
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer
    span:first-child {
    border: 2px solid var(--white-color);
    --size: max(30px, 6vw);
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .answerContainer
    ul
    .answer
    .passFailIcon
    img {
    max-width: 72px;
  }
}

body main .quizContainer .quiz .quizDescription img {
  max-width: 160px;
  left: 20px;
  bottom: -77px;
}

body main .quizContainer .quiz .quizDescription img.masutarou {
  max-width: 172px;
  left: 20px;
  bottom: -97px;
}

@media only screen and (max-width: 800px) and (orientation: landscape) {
  body main .quizContainer .quiz .quizDescription img {
    transform: scale(0.8);
  }

  body main .quizContainer .quiz .quizDescription img.masutarou {
    transform: scale(0.8);
  }
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz:nth-of-type(1) {
    --firstQuizTopWave: url("../images/quiz-one-top-water-wave-sp.png");
  }

  body main .quizContainer .quiz .quizDescription img {
    transform: scale(0.8);
    width: max(30vw, 30%);
    max-width: unset;
  }

  body main .quizContainer .quiz .quizDescription img.masutarou {
    transform: scale(0.8);
    width: max(30vw, 30%);
    max-width: unset;
  }

  body main .quizContainer .quiz:nth-of-type(3) .quizDescription img,
  body main .quizContainer .quiz:nth-of-type(5) .quizDescription img {
    width: 18vw;
    max-width: 130px;
  }

  body main .quizContainer .quiz:nth-of-type(6) .quizDescription img,
  body main .quizContainer .quiz:nth-of-type(9) .quizDescription img {
    width: 27vw;
    max-width: 112px;
  }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body main .quizContainer .quiz .quizDescription img {
    transform: scale(0.5);
  }
}

@media only screen and (max-width: 896px) and (min-height: 950px) {
  body main .quizContainer .quiz:nth-of-type(6) .quizDescription img,
  body main .quizContainer .quiz:nth-of-type(9) .quizDescription img {
    width: 23vw;
    max-width: 175px;
  }
}

@media only screen and (max-width: 500px) {
  body main .quizContainer .quiz .quizDescription img {
    position: absolute;
    left: 70%;
    top: 100%;
    transform: translate(-2%, -60%);
  }

  .firstkura {
    left: 2% !important;
  }
}

body main .quizContainer .quiz .rightAnswerContainer {
  /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
  /*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
}

body main .quizContainer .quiz .rightAnswerContainer .answerBox {
  --answerBox-bg-img: url("../images/answer-bg.png");
  position: relative;
  background-image: var(--answerBox-bg-img);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  padding: 15vh 0 21vh;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner {
  position: relative;
  background-color: #ffffff;
  max-width: 938px;
  margin: 0 auto;
  padding-bottom: 10vh;
  border-radius: 30px;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  h2 {
  text-align: center;
  font-weight: 800;
  color: var(--secondary-color);
  padding: 2vw 2vw 0;
}

@media (min-width: 320px) and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    h2 {
    font-size: calc(1.875em + 10 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    h2 {
    font-size: 2.5em;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer {
  flex-direction: row;
  justify-content: space-between;
  margin-top: 30px;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText {
  max-width: 420px;
  width: 100%;
  padding: 0 calc(6% + 4px) calc(4% + 4px) calc(4% + 4px);
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText.rightspace {
  width: 100%;
  padding: 0 calc(10% + 4px) calc(0% + 4px) calc(4% + 4px);
}

@media only screen and (max-width: 768px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace {
    max-width: 100%;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText.rightspace02 {
  padding: 0 calc(11% + 2px) calc(4% + 4px) calc(4% + 4px);
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText.rightspace03 {
  padding: 0 calc(12% + 4px) calc(4% + 4px) calc(4% + 4px);
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText.rightspaceM01 {
  padding: 0 calc(0% + 4px) calc(4% + 4px) calc(4% + 4px);
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText
  h4 {
  color: var(--blue-color);
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText
  h4
  span {
  color: var(--secondary-color);
  margin-right: 2%;
  display: block;
}

@media (min-width: 320px) and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    h4 {
    font-size: calc(1.125em + 6 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    h4 {
    font-size: 1.5em;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerText
  p {
  padding-top: 3%;
  line-height: var(--pTagLineHeight);
}

@media (min-width: 770px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    p {
    font-size: 1.125em;
  }
}

@media (min-width: 320px) and (max-width: 850px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    p {
    font-size: 1em !important;
  }
}

@media only screen and (max-width: 850px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    p {
    font-size: 1em !important;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage {
  padding: 0 calc(1% + 5px) calc(1% + 5px);
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-right: calc(8% + 4px);
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  .answerImageBorder {
  border: 4px solid var(--secondary-color);
  border-radius: 15px;
  padding: calc(5% + 5px);
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage.answersize01 {
  max-height: 450px;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  .answersize02 {
  max-width: 300px;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  .answersize03 {
  max-width: 180px;
}
@media only screen and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerImage
    .answersize03 {
    max-width: 280px;
  }
}
@media only screen and (max-width: 650px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerImage
    .answersize03 {
    max-width: 220px;
  }
}
@media only screen and (max-width: 450px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerImage
    .answersize03 {
    max-width: 180px;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  .answerImageImage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 320px;
}
body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  img.answerImageLeft {
  position: absolute;
  left: 12%;
  bottom: 0;
  z-index: 6;
}
body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  img.answerImageRight {
  position: absolute;
  right: 12%;
  top: 0;
  z-index: 5;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  p.answerImageNote {
  text-align: center;
  font-weight: 400;
  font-size: 0.9em;
  margin-top: calc(1% + 5px);
  font-family: initial;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  p.answerImageClick {
  color: var(--pink-color);
  font-size: 1.25em;
  flex-basis: 100%;
  text-align: center;
}

@media only screen and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerImage
    p.answerImageClick {
    margin-bottom: 0.5em;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  p.answerImageClick::before {
  display: inline-block;
  background-image: url("../images/left-bars.png");
  background-size: 100%;
  background-repeat: no-repeart;
  margin-right: 10px;
  width: 23px;
  height: 18px;
  content: "";
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  p.answerImageClick::after {
  display: inline-block;
  background-image: url("../images/right-bars.png");
  background-size: 100%;
  background-repeat: no-repeart;
  margin-left: 10px;
  width: 23px;
  height: 18px;
  content: "";
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  p.answerImageLink {
  flex-basis: 100%;
  text-align: center;
}

@media only screen and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerImage
    .answerImageLink {
    margin-bottom: 1em;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  a.answerImageButton {
  max-width: 380px;
  height: 70px;
  width: 100%;
  background-color: var(--primary-color);
  color: var(--blue-color);
  border-radius: 35px;
  box-shadow: var(--white-color) 2px 5px 1px;
  border: none;
  -webkit-animation-direction: normal;
  animation-direction: normal;
  background-size: 250% 250%;
  text-align: center;
  display: inline-block;
  font-size: 1.1em;
  line-height: 70px;
}
body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .rightAnswer
  .answerImage
  a.answerImageButton:hover {
  background-color: var(--secondary-color);
  transition: all 0.3s ease-in-out;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  button.nextQuiz {
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, -120%);
  max-width: 380px;
  height: 70px;
  width: 80%;
  background-color: var(--secondary-color);
  color: var(--white-color);
  border-radius: 35px;
  box-shadow: var(--white-color) 2px 5px 1px;
  border: none;
  background: linear-gradient(
    -90deg,
    var(--secondary-color) 0%,
    #ff7900 40%,
    #ffb600 45%,
    #ff7900 55%,
    var(--secondary-color) 60%
  );
  -webkit-animation-direction: normal;
  animation-direction: normal;
  background-size: 250% 250%;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  button.nextQuiz.answersizebtn01 {
}

@media (min-width: 320px) and (max-width: 896px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    button.nextQuiz {
    font-size: calc(0.9375em + 5 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    button.nextQuiz {
    font-size: 1.25em;
  }
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  button.nextQuiz
  i
  svg {
  fill: #fff;
  position: absolute;
  left: 90%;
  top: 50%;
  transform: translate(-90%, -50%);
  max-width: 1.2em;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  button.nextQuiz
  i
  svg
  path {
  fill: #fff;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  button.nextQuiz:hover {
  -webkit-animation: slidingLight 3s infinite;
  animation: slidingLight 3s infinite;
}

body
  main
  .quizContainer
  .quiz
  .rightAnswerContainer
  .answerBox
  .answerBoxInner
  .kurappiAnswerImage {
  position: absolute;
  left: 107%;
  top: 115%;
  transform: translate(-107%, -111%);
  width: 182px;
}

@media only screen and (max-width: 938px) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .kurappiAnswerImage {
    left: auto;
    top: auto;
    transform: unset;
    width: 110px;
    right: 0;
    bottom: 20px;
  }
}

@media only screen and (max-width: 896px) {
  body main .quizContainer .quiz .rightAnswerContainer .answerBox {
    --answerBox-bg-img: url("../images/answer-bg-sp.png");
    padding: 10vh 0 15vh;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner {
    border-radius: 20px;
    padding-bottom: 8vh;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    h2 {
    padding: 5vh 2vw 2vh;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer {
    flex-direction: column;
    justify-content: space-between;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText {
    max-width: 100%;
    padding: 0 5%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerImage {
    padding: 4%;
    width: 100%;
    display: flex;
    align-items: flex-end;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .kurappiAnswerImage {
    display: none;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    button.nextQuiz {
    position: absolute;
    left: 50%;
    top: 105%;
    transform: translate(-50%, -105%);
    max-width: 500px;
    border-radius: 44px;
    height: max(50px, 8vh);
    width: 80%;
  }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    button.nextQuiz {
    max-width: 300px;
  }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body main .quizContainer .quiz .rightAnswerContainer .answerBox {
    padding: 30vh 0 40vh;
  }
}

body main .totalScore {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  padding: 0 0 10vh;
}

#resultContainer {
  scroll-margin-top: 10vh;
}

body main .totalScore .scoreInner {
  margin-top: 7vh;
  padding: 0 20px;
  position: relative;
}

body main .totalScore {
  padding: 7vh 0 10vh;
  padding: 7svh 0 10svh;
}

body main .totalScore .scoreInner {
  margin-top: 0;
}

body main .totalScore .scoreInner .scoreTitle {
  text-align: center;
  color: var(--secondary-color);
  padding: 2vw;
}

@media (min-width: 320px) and (max-width: 896px) {
  body main .totalScore .scoreInner .scoreTitle {
    font-size: calc(1.625em + 14 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body main .totalScore .scoreInner .scoreTitle {
    font-size: 2.5em;
  }
}

body main .totalScore .scoreInner .scoreTitle span {
  color: var(--pink-color);
  font-size: 1.7em;
}

body main .totalScore .scoreInner .scoreTitle::before {
  display: inline-block;
  content: url("../images/left-bars.png");
  margin-right: 30px;
}

body main .totalScore .scoreInner .scoreTitle::after {
  content: url("../images/right-bars.png");
  margin-left: 30px;
  display: inline-block;
}

body main .totalScore .scoreInner .scoreContainer {
  max-width: 938px;
  border: 4px solid var(--secondary-color);
  background-color: var(--white-color);
  margin: 0 auto;
  height: 260px;
  border-radius: 30px;
  padding: 4% 0 4% 4%;
  position: relative;
}

body main .totalScore .scoreInner .scoreContainer .scoreComment {
  color: var(--blue-color);
  line-height: var(--pTagLineHeight);
}

@media (min-width: 320px) and (max-width: 896px) {
  body main .totalScore .scoreInner .scoreContainer .scoreComment {
    font-size: calc(1em + 4 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body main .totalScore .scoreInner .scoreContainer .scoreComment {
    font-size: 1.25em;
  }
}

body
  main
  .totalScore
  .scoreInner
  .scoreContainer
  .characterContainer
  .nextTimeComment {
  opacity: 0;
  color: var(--blue-color);
  background-image: url("../images/comment-container.png");
  background-size: contain;
  background-repeat: no-repeat;
  width: 230px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 140px;
  position: absolute;
  left: 90%;
  top: 40%;
  transform: translate(-90%, -40%);
}

@media (min-width: 320px) and (max-width: 896px) {
  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .nextTimeComment {
    font-size: calc(0.8125em + 2 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .nextTimeComment {
    font-size: 0.9375em;
  }
}

body
  main
  .totalScore
  .scoreInner
  .scoreContainer
  .characterContainer
  .nextTimeComment
  p {
  margin-top: -20px;
}

body
  main
  .totalScore
  .scoreInner
  .scoreContainer
  .characterContainer
  .characterImage
  #characterImg_01 {
  display: none;
  max-width: 147px;
  min-width: 147px;
  position: absolute;
  left: 92%;
  top: 260%;
  transform: translate(-92%, -260%);
}

body
  main
  .totalScore
  .scoreInner
  .scoreContainer
  .characterContainer
  .characterImage
  #characterImg_02 {
  display: none;
  max-width: 190px;
  min-width: 182px;
  position: absolute;
  left: 92%;
  top: 200%;
  transform: translate(-92%, -200%);
}

body
  main
  .totalScore
  .scoreInner
  .scoreContainer
  .characterContainer
  .characterImage
  #characterImg_03 {
  max-width: 98px;
  display: none;
  min-width: 97px;
  position: absolute;
  left: 95%;
  top: 85%;
  transform: translate(-95%, -85%);
}

body main .totalScore .scoreInner .tryAgainButton {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 50%;
  top: 110%;
  transform: translate(-50%, -110%);
  max-width: 380px;
  height: 70px;
  width: 80%;
  padding: min(2vh, 20px);
  color: var(--white-color);
  border-radius: 35px;
  box-shadow: var(--white-color) 2px 5px 1px;
  border: none;
  background: linear-gradient(
    -90deg,
    var(--secondary-color) 0%,
    #ff7900 40%,
    #ffb600 45%,
    #ff7900 55%,
    var(--secondary-color) 60%
  );
  -webkit-animation-direction: normal;
  animation-direction: normal;
  background-size: 250% 250%;
}

@media (min-width: 320px) and (max-width: 896px) {
  body main .totalScore .scoreInner .tryAgainButton {
    font-size: calc(1em + 4 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body main .totalScore .scoreInner .tryAgainButton {
    font-size: 1.25em;
  }
}

body main .totalScore .scoreInner .tryAgainButton i svg {
  fill: #fff;
  position: absolute;
  left: 90%;
  top: 50%;
  transform: translate(-90%, -50%);
  max-width: 1.2em;
}

body main .totalScore .scoreInner .tryAgainButton i svg path {
  fill: #fff;
}

body main .totalScore .scoreInner .tryAgainButton:hover {
  -webkit-animation: slidingLight 3s infinite;
  animation: slidingLight 3s infinite;
}

@media only screen and (max-width: 896px) {
  body main .totalScore .scoreInner {
    padding: 0 4%;
  }

  body main .totalScore .scoreInner .scoreTitle {
    padding: 2vh 0;
  }

  body main .totalScore .scoreInner .scoreTitle::before {
    margin-right: 0%;
    transform: scale(0.7);
  }

  body main .totalScore .scoreInner .scoreTitle::after {
    margin-left: 0%;
    transform: scale(0.7);
  }

  body main .totalScore .scoreInner .scoreContainer {
    border-radius: 20px;
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .nextTimeComment {
    width: max(160px, 26vw);
    height: max(100px, 16vw);
    position: absolute;
    left: 80%;
    top: 80%;
    transform: translate(-80%, -80%);
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_01 {
    min-width: unset;
    width: max(70px, 12vw);
    position: absolute;
    left: 75%;
    top: 125%;
    transform: translate(-75%, -125%);
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_02 {
    min-width: unset;
    max-width: 120px;
    width: 120px;
    position: absolute;
    left: 92%;
    top: 60%;
    transform: translate(-92%, -60%);
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_03 {
    min-width: unset;
    width: max(70px, 12vw);
    position: absolute;
    left: 92%;
    top: 60%;
    transform: translate(-92%, -60%);
  }

  body main .totalScore .scoreInner .tryAgainButton {
    height: max(50px, 8vh);
    width: 80%;
    max-width: 500px;
    border-radius: 44px;
  }
}

@media only screen and (max-width: 768px) {
  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_01 {
    left: 75%;
    top: 155%;
    transform: translate(-75%, -155%);
  }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body main .totalScore .scoreInner .tryAgainButton {
    max-width: 300px;
  }
}

@media only screen and (max-width: 896px) and (min-height: 950px) {
  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .nextTimeComment {
    position: absolute;
    left: 85%;
    top: 45%;
    transform: translate(-85%, -45%);
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_01 {
    position: absolute;
    left: 80%;
    top: 115%;
    transform: translate(-80%, -115%);
  }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body main .totalScore {
    padding-bottom: 20vh;
  }

  body main .totalScore .scoreInner .scoreContainer {
    border-radius: 20px;
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_01 {
    min-width: unset;
    width: max(70px, 12vw);
    position: absolute;
    left: 80%;
    top: 130%;
    transform: translate(-80%, -130%);
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_02 {
    min-width: unset;
    width: max(100px, 20vw);
    position: absolute;
    left: 92%;
    top: 60%;
    transform: translate(-92%, -60%);
  }

  body
    main
    .totalScore
    .scoreInner
    .scoreContainer
    .characterContainer
    .characterImage
    #characterImg_03 {
    min-width: unset;
    width: max(70px, 12vw);
    position: absolute;
    left: 92%;
    top: 60%;
    transform: translate(-92%, -60%);
  }
}

body footer {
  --footerBgWave: url("../images/footer-water-wave.png");
  background-image: var(--footerBgWave);
  background-position: bottom;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  color: var(--white-color);
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 800;
  padding: 15vh 0 4vh;
  border-left: 10px solid var(--primary-color);
  border-right: 10px solid var(--primary-color);
}

body footer .otherChallenges {
  max-width: 938px;
  background-color: var(--white-color);
  margin: 0 auto;
  border-radius: 15px;
  border: 4px solid var(--secondary-color);
  padding: 0 3.2%;
  margin-bottom: 3%;
  padding-bottom: 60px;
}

@media only screen and (max-width: 896px) {
  body footer .otherChallenges {
    border: none;
  }
}

.body footer .otherChallenges .backnumbertit {
  text-align: center;
}

body footer .otherChallenges h3 {
  color: var(--primary-color);
  text-align: center;
  transform: translateY(-27%);
  background: #fff;
  -webkit-clip-path: polygon(100% 0, 100% 50%, 50% 70%, 0 50%, 0 0);
  clip-path: polygon(100% 0, 100% 50%, 50% 70%, 0 50%, 0 0);
  height: 80px;
  position: relative;
  z-index: 2;
}

body footer .otherChallenges .backnumbertit > img {
  max-width: 386px;
  margin: 0 auto;
  transform: translateY(-50%);
}

body footer .otherChallenges h3::before {
  content: "";
  position: absolute;
  top: -2px;
  /* ボーダーの太さに合わせて調整 */
  right: -2px;
  /* ボーダーの太さに合わせて調整 */
  bottom: -2px;
  /* ボーダーの太さに合わせて調整 */
  left: -2px;
  /* ボーダーの太さに合わせて調整 */
  -webkit-clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%);
  border: 2px solid red;
  /* ボーダーの色と太さを設定 */
}

@media (min-width: 320px) and (max-width: 896px) {
  body footer .otherChallenges h3 {
    font-size: calc(1em + 12 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body footer .otherChallenges h3 {
    font-size: 1.313em;
    display: inline-block;
    text-align: center;
    margin: 0 auto;
  }
}

body footer .otherChallenges .history > div {
  max-width: 380px;
  width: 100%;
}

body footer .otherChallenges .history > div:nth-child(-n + 2) {
  margin-bottom: 35px;
}

body footer .otherChallenges .history > div a {
  max-width: 380px;
  width: 100%;
}

body footer .otherChallenges .history {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

body footer .otherChallenges .history > div a {
  max-width: 380px;
  height: 70px;
  display: flex;
  width: 100%;
  align-items: center;
  border-radius: 40px;
  color: #fff;
  text-align: center;
}

body footer .otherChallenges .history > div a span.number {
  width: 170px;
}

body footer .otherChallenges .history > div a span.numbertit {
  width: 100%;
  text-align: left;
  margin-left: -15px;
}

body footer .otherChallenges .history > div.archies01 a {
  background-color: rgb(255, 123, 171);
}

body footer .otherChallenges .history > div.archies02 a {
  background-color: rgb(2, 169, 249);
}

body footer .otherChallenges .history > div.archies03 a {
  background-color: rgb(27, 179, 181);
}

body footer .otherChallenges .history > div.archies04 a {
  background-color: rgb(255, 237, 124);
  color: rgb(0, 89, 191);
}

@media (max-width: 896px) {
  body footer .otherChallenges .history > div {
    width: 100%;
    margin: 0 20px;
    margin-bottom: 20px;
  }

  body footer .otherChallenges .history > div a {
    max-width: 100%;
  }
}

body footer .footer-info {
  max-width: 938px;
  margin: auto;
  display: flex;
  flex-direction: column;
  color: var(--white-color);
}

body footer .footer-info a {
  color: var(--white-color);
}

body footer .footer-info h4 {
  text-align: center;
}

@media (min-width: 320px) and (max-width: 896px) {
  body footer .footer-info h4 {
    font-size: calc(0.9375em + 6 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body footer .footer-info h4 {
    font-size: 1.3125em;
  }
}

body footer .footer-info div {
  justify-content: center;
}

body footer .footer-info div p {
  margin: 0;
  white-space: nowrap !important;
}

body footer .footer-info div p svg {
  max-width: 1em;
  vertical-align: middle;
}

body footer .footer-info div p svg path {
  fill: var(--white-color);
}

body footer .footer-info div p:first-child {
  margin-right: 5%;
  min-width: 210px;
}

@media (min-width: 320px) and (max-width: 896px) {
  body footer .footer-info div p:first-child {
    font-size: calc(1.125em + 5 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body footer .footer-info div p:first-child {
    font-size: 1.4375em;
  }
}

body footer .footer-info div p:last-child {
  min-width: 395px;
}

@media (min-width: 320px) and (max-width: 896px) {
  body footer .footer-info div p:last-child {
    font-size: calc(0.9375em + 6 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body footer .footer-info div p:last-child {
    font-size: 1.3125em;
  }
}

body footer .footer-info .contact-info {
  padding-top: 2vh;
}

body footer .footer-info p {
  padding: 2vh 0;
  margin: 0 auto;
}

@media (min-width: 320px) and (max-width: 896px) {
  body footer .footer-info p {
    font-size: calc(0.875em + 3 * (100vw - 20em) / 450);
  }
}

@media (min-width: 770px) {
  body footer .footer-info p {
    font-size: 1.0625em;
  }
}

@media only screen and (max-width: 896px) {
  body footer {
    --footerBgWave: url("../images/footer-water-wave-sp.png");
    padding: 15vh 0 4vh;
  }

  body footer .otherChallenges {
    height: auto;
    flex-direction: column;
    justify-content: left;
    padding: 1vh 0;
    padding-bottom: 30px;
  }

  body footer .otherChallenges a {
    --size: max(60px, 10vw);
    margin: 0;
  }

  body footer .footer-info {
    margin-top: 3vh;
  }

  body footer .footer-info div {
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }

  body footer .footer-info div p {
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0;
  }

  body footer .footer-info div p:first-child {
    margin-right: 0;
    min-width: unset;
  }

  body footer .footer-info div p:first-child svg {
    max-width: 0.8em;
  }

  body footer .footer-info div p:last-child {
    min-width: 100%;
  }
}

@media only screen and (max-width: 896px) and (orientation: landscape) {
  body footer {
    padding: 20vh 0 2vh;
  }
}

.junkan {
  max-width: 1200px;
  width: 80vw;
  transform: translate(-50%, -10%);
  position: absolute;
  left: 50%;
  z-index: -1;
}

.junkan img {
  -webkit-animation: junkan 40s infinite linear;
  animation: junkan 40s infinite linear;
}

/*アニメーションの開始から終了までを指定する*/
@-webkit-keyframes junkan {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}
@keyframes junkan {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media only screen and (max-width: 1000px) {
  .junkan {
    max-width: 110vw;
    width: 110vw;
  }

  body main .quizContainer .quiz .quizBox {
    padding: 10vh 20px 14vh;
  }
}

@media only screen and (max-width: 896px) {
  .firstkura {
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.kurappi-name {
    left: 116px;
    bottom: -60px;
  }
}

@media only screen and (max-width: 500px) {
  body footer .otherChallenges .history {
    justify-content: center;
  }

  body footer .otherChallenges .history > div {
    max-width: 100%;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.kurappi-name {
    left: 95px;
    bottom: -70px;
  }

  body main .quizContainer .quiz:nth-of-type(6) .quizDescription img,
  body main .quizContainer .quiz:nth-of-type(9) .quizDescription img {
    top: unset;
    bottom: -60px;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.masutarou-name {
    bottom: -60px;
    left: 110px;
  }

  body main .quizContainer .quiz:nth-of-type(7) .quizDescription img,
  body main .quizContainer .quiz:nth-of-type(9) .quizDescription img {
    top: unset;
    bottom: -60px;
  }

  body main .quizContainer .quiz:nth-of-type(8) .quizDescription img,
  body main .quizContainer .quiz:nth-of-type(9) .quizDescription img {
    top: unset;
    bottom: -60px;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position03 {
    bottom: -165px;
  }
}

@media only screen and (max-width: 414px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position03 {
    max-width: 80px;
    bottom: -110px;
  }

  body footer .otherChallenges .backnumbertit > img {
    width: 270px;
  }
}

@media only screen and (max-width: 376px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    p
    br.resbr {
    display: none;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.masutarou-name {
    bottom: -60px;
  }
}

@media only screen and (max-width: 830px) {
  body footer .otherChallenges .history > div {
    max-width: 100%;
  }

  body footer .otherChallenges .history > div a {
    max-width: 100%;
  }
}

@media only screen and (max-width: 800px) and (orientation: landscape) {
  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    button.nextQuiz {
    height: 55px !important;
    transform: translate(-50%, -120%);
  }
}

@media only screen and (max-width: 1000px) and (orientation: landscape) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.firstkura {
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace {
    max-width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace02 {
    max-width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace03 {
    max-width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspaceM01 {
    max-width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    p
    br.resbr {
    display: none;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    p
    br {
    display: none;
  }

  body
    main
    .quizContainer
    .quiz:first-child
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    p {
    font-size: 1.25em !important;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText
    p {
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.kurappi-name {
    bottom: -45px;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position01 {
    bottom: -50px;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position02 {
    bottom: -50px;
    max-width: 70px;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position03 {
    bottom: -50px;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText {
    max-width: 100%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace {
    max-width: 100%;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.masutarou-name {
    left: 132px;
    max-width: 120px;
    bottom: -52px;
  }
}

@media screen and (max-width: 600px) {
  body main .quizContainer .quiz .quizBox .quizContent .quizDescription img {
    top: unset;
    transform: scale(1) translate(0, -20px);
    width: auto;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText {
    max-width: 100%;
    width: 100%;
    padding: 0 4%;
    margin-top: -20px;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace {
    max-width: 100%;
    width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace02 {
    max-width: 100%;
    width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspace03 {
    max-width: 100%;
    width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .rightAnswerContainer
    .answerBox
    .answerBoxInner
    .rightAnswer
    .answerText.rightspaceM01 {
    max-width: 100%;
    width: 100%;
    padding: 0 4%;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position01 {
    max-width: 130px;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position02 {
    max-width: 80px;
    bottom: -75px;
    left: 10px;
  }

  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position03 {
    bottom: -100px;
  }

  body main .quizContainer .quiz .quizDescription img.masutarou {
    max-width: 100px;
  }

  body main .quizContainer .quiz:nth-of-type(2) .quizDescription img {
    max-width: 130px;
    bottom: -60px;
  }

  body main .quizContainer .quiz:nth-of-type(3) .quizDescription img {
  }

  body main .totalScore .scoreInner .scoreContainer {
    padding: 4%;
  }
}

@media screen and (max-width: 415px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position03 {
    bottom: -60px;
  }
}

@media screen and (max-width: 375px) {
  body main .quizContainer .quiz:nth-of-type(2) .quizDescription img {
    max-width: 110px;
  }

  body main .quizContainer .quiz:nth-of-type(3) .quizDescription img {
  }
}

@media screen and (max-width: 320px) {
  body
    main
    .quizContainer
    .quiz
    .quizBox
    .quizContent
    .quizDescription
    img.position03 {
    bottom: -70px;
  }
}
