:root {
  --color-white: #fff;
  --color-black: #000;
  --color-purple: rgb(144, 18, 128);
}
html {
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: Noto Sans JP, Noto Sans Japanese, sans-serif;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
}
#search_btn img {
  vertical-align: baseline;
}
.quiz_question {
  position: absolute;
  right: -1px;
  bottom: -1px;
  cursor: pointer;
  background-color: var(--color-purple);
  width: 90px;
  height: 90px;
  z-index: 10;
  clip-path: polygon(0 100%, 100% 100%, 100% 0%);
  transition: 0.1s;
  display: flex;
  align-items: flex-start;
  text-align: justify;
  pointer-events: auto;
}
.quiz_question .quiz_question__img {
  position: absolute;
  right: 6px;
  bottom: 6px;
  width: 50px;
}
.quiz_question p {
  color: var(--color-white);
  display: none;
  font-size: 16px;
  font-weight: 700;
  position: absolute;
  right: 15px;
  top: calc(50% + 15px);
  width: calc(50% - 30px);
}
.quiz_question.-Reverse {
  left: -1px;
  right: auto;
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.quiz_question.-Reverse .quiz_question__img {
  transform: rotate(90deg);
  left: 6px;
  right: auto;
}
.quiz_question.-Reverse p {
  right: auto;
  left: 15px;
}
.quiz_question.-Reverse .quiz_question__toggle {
  right: auto;
  left: 0;
}
.quiz_question .quiz_question__toggle {
  display: none;
  position: absolute;
  right: 0;
  bottom: 8px;
  font-family: Cabin;
  letter-spacing: 0.06em;
  color: var(--color-white);
  font-size: 20px;
  font-weight: 700;
  line-height: 1;
  padding: 0 20px;
  width: 50%;
  align-items: center;
  justify-content: center;
}
.quiz_question .quiz_question__toggle__img {
  width: 17px;
  margin-left: 10px;
}
.quiz_question .quiz_question__toggle__img.is-active {
  transform: rotate(180deg);
}
.is-active .quiz_question {
  width: 202%;
  height: 202%;
  padding: 0 20px;
}
.is-active .quiz_question p {
  display: block;
}
.is-active .quiz_question .quiz_question__img {
  display: none;
}
.is-active .quiz_question .quiz_question__toggle {
  display: flex;
}
@media (hover: hover) {
  .quiz_question:hover {
    width: 202%;
    height: 202%;
    padding: 0 20px;
  }
  .quiz_question:hover p {
    display: block;
  }
  .quiz_question:hover .quiz_question__img {
    display: none;
  }
  .quiz_question:hover .quiz_question__toggle {
    display: flex;
  }
}
.kaitou {
  display: inline-block;
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  padding: 2px 4px;
  height: 20px;
  line-height: 1;
  box-sizing: border-box;
  border: 2px solid var(--color-purple);
  color: var(--color-purple);
  letter-spacing: 0.06em;
}
.quiz__answer {
    display: none;
    padding: 20px 20px 90px;
    font-size: 13px;
    font-weight: 400;
    overflow-wrap: break-word;
    text-align: justify;
}
.quiz__answer a {
  color: var(--color-black);
}
.quiz__answer.is-active {
  display: block;
}
.quiz__answer .-Emphasis {
  display: block;
  color: var(--color-purple);
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 700;
}
.quiz__answer .-ViewPoint {
  font-size: 15px;
  padding: 8px 0 4px 0;
  font-weight: 700;
}
.quiz__answer__link {
  background-color: var(--color-black);
  color: var(--color-white);
  padding: 8px 0;
  position: absolute;
  bottom: 20px;
  left: 20px;
  width: calc(100% - 40px);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.06em;
}
.quiz__answer__link:before {
  content: "";
  display: block;
  width: 20px;
  height: 16px;
  background-color: var(--color-black);
  clip-path: polygon(0 100%, 100% 100%, 50% 0%);
  position: absolute;
  top: -15px;
  left: 50%;
  margin-left: -10px;
}
.quiz__answer__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-white);
  padding: 0 0 2px;
}
.quiz__answer__link a span {
  display: inline-block;
}
.quiz__answer__link__img {
  width: 30px;
  margin: 4px 6px 0 10px;
}
.is-touch .quiz__answer {
  position: absolute;
  right: 0;
  bottom: 0;
  cursor: pointer;
  background-color: var(--color-purple);
  width: 90px;
  height: 90px;
  clip-path: polygon(0 100%, 100% 100%, 100% 0%);
  display: flex;
  align-items: flex-start;
  text-align: justify;
}
.is-touch .quiz__answer p,
.is-touch .quiz__answer .quiz_question__toggle {
  display: none;
}
.is-touch .quiz__answer.-Reverse {
  clip-path: polygon(0 0, 0% 100%, 100% 100%);
}
.is-touch .quiz__answer.-Reverse .quiz_question__img {
  transform: rotate(90deg);
  left: 6px;
  right: auto;
}
.is-touch .quiz__answer.-Reverse p {
  right: auto;
  left: 15px;
}
.is-touch .quiz__answer.-Reverse .quiz_question__toggle {
  right: auto;
  left: 0;
}
.quiz_question__wrapper {
  width: 100%;
  height: 100%;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
}
.quiz_question__wrapper.is-active {
  display: block;
}
.hl-link {
  z-index: 9;
}
.casset {
  display: none;
}
.casset figure {
  position: relative;
  width: 100%;
  max-height: 180px;
  overflow: hidden;
}
.casset figure img {
  width: 100%;
}
.casset.active {
  display: block;
  position: relative;
}
@media screen and (max-width: 1020px) {
  .quiz_question {
    width: 8.8235294118vw;
    height: 8.8235294118vw;
  }
  .quiz_question .quiz_question__img {
    width: 4.9019607843vw;
  }
  .quiz_question p {
    font-size: 1.5196078431vw;
  }
  .quiz_question .quiz_question__toggle {
    font-size: 1.8vw;
  }
  .quiz__answer .-Emphasis {
    font-size: 1.7vw;
  }
  .quiz__answer .-ViewPoint{
    font-size: 1.7vw;
  }
  .quiz__answer__link {
    font-size: 2vw;
    position: relative;
    bottom: auto;
    left: auto;
    width: 100%;
    margin: 40px auto 0;
  }
}
@media screen and (max-width: 768px) {
  .quiz_question p {
    font-size: 1.4705882353vw;
  }
}
@media screen and (max-width: 640px) {
  .quiz_question {
    width: 90px;
    height: 90px;
  }
  .quiz_question .quiz_question__img {
    width: 13.3333333333vw;
  }
  .quiz_question p {
    font-size: 4.5333333333vw;
  }
  .quiz_question .quiz_question__toggle {
    font-size: 4.8vw;
  }
  .quiz__answer {
    padding: 4vw;
  }
  .quiz__answer .-Emphasis {
    font-size: 4.2666666667vw;
  }
  .quiz__answer .-ViewPoint {
    font-size: 4.2666666667vw;
  }
  .quiz__answer__link {
    font-size: 4.8vw;
    margin: 30px auto 20px;
  }
  .casset figure {
    max-height: 52vw;
  }
}
.u-spOnly {
  display: none !important;
}
.u-noEvent {
  pointer-events: none;
}
.u-Event {
  pointer-events: auto;
}
.u-none {
  display: none !important;
}
.u-animationYureru {
  animation: anim_yureru 2s infinite;
}
@keyframes anim_yureru {
  0% {
    transform: translateY(2px);
  }
  5% {
    transform: translateY(-2px);
  }
  10% {
    transform: translateY(2px);
  }
  15% {
    transform: translateY(-2px);
  }
  20% {
    transform: translateY(2px);
  }
  25% {
    transform: translateY(-2px);
  }
  30% {
    transform: translate(0);
  }
}
.js_quiz_questionWrapper {
  cursor: pointer;
}