@charset "UTF-8";
/********************************
* フォント情報
********************************/
/********************************
* color
********************************/
:root {
  --color-white: #fff;
  --color-black: #231815;
  --color-green: #9bc954;
  --color-pink: #eb6d80;
  --color-orange: #ef8337;
  --color-teal: #2cb4af;
  --color-brown: #40210f;
}

/********************************
* color
********************************/
html {
  font-size: calc(16 / 375 * 100vw);
}
@media (min-width: 375px) {
  html {
    font-size: 16px;
  }
}
@media (min-width: 768px) {
  html {
    font-size: min(16 / 1920 * 100vw, 1.6vh);
  }
}
@media (min-width: 1920px) {
  html {
    font-size: 16px;
  }
}

* {
  box-sizing: border-box;
}

html,
body {
  overflow-x: hidden;
}

body {
  font-family: "Zen Maru Gothic", sans-serif;
  color: #313131;
}

textarea {
  resize: none;
}

a {
  text-decoration: none;
  transition: 0.3s;
  color: inherit;
}
@media (hover: hover) {
  a:hover {
    cursor: pointer;
  }
}

picture,
img,
a,
span {
  display: inline-block;
}

video,
img,
svg {
  width: 100%;
  height: 100%;
}

button {
  font: inherit;
  color: inherit;
  background: transparent;
  background: none;
  border: none;
}

input,
textarea,
select {
  font: inherit;
}

@media (min-width: px(768)) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
/********************************
* 数値のみを取り出す
* 参照：https://css-tricks.com/snippets/sass/strip-unit-function/
********************************/
/********************************
* pxをremに変換する関数
* ※ リキッドレイアウトでは、remがhtmlのfont-sizeに連動してスケーリングされる
*
* ▼使い方
* .element {
*     font-size: rem(16);  // 16pxをremに変換
*     padding: rem(20);
* }
********************************/
/********************************
* 数値にpxをつける関数
********************************/
/********************************
* 画面幅を基準にしたvwを返す関数
*
* ▼使い方
* .element {
*     width: vw(375, 100);  // 375pxカンプで100pxの場合
* }
********************************/
/********************************
* header
********************************/
.l-header {
  position: fixed;
  z-index: 100;
  top: 0;
  left: 0;
  width: 100%;
  height: auto;
  padding-inline: 40px;
  background: #001a75;
}

.l-header__inner {
  display: grid;
  grid-template-columns: 150px 1fr;
  align-items: center;
  padding-block: 17px;
}

.l-header__nav {
  display: none;
}
@media (width >= 1200px) {
  .l-header__nav {
    display: flex;
    align-items: center;
    justify-content: end;
    -moz-column-gap: 60px;
         column-gap: 60px;
  }
}

.l-header__list {
  display: flex;
  align-items: center;
  -moz-column-gap: 32px;
       column-gap: 32px;
}
.l-header__list li a {
  color: #fff;
  font-size: 20px;
}

.l-header__btn {
  padding: 8px 26px;
  background: #fff;
  border: 1px solid #fff;
  color: #001a75;
  font-size: 20px;
  border-radius: 100vmax;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  .l-header__btn:hover {
    background: transparent;
    color: #fff;
  }
}

/********************************
* drawer icon
********************************/
.l-drawer__icon {
  position: fixed;
  z-index: 102;
  top: 12px;
  right: 20px;
  width: 24px;
  height: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media (width >= 1200px) {
  .l-drawer__icon {
    display: none;
  }
}

.l-drawer__icon--bar {
  width: 100%;
  height: 1px;
  background: #fff;
  transition: all 0.3s ease;
}

.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(1) {
  rotate: 45deg;
  translate: 0 7.5px;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(2) {
  display: none;
}
.l-drawer__icon.js-show .l-drawer__icon--bar:nth-of-type(3) {
  rotate: -45deg;
  translate: 0 -7.5px;
}

.l-drawer {
  position: fixed;
  z-index: 101;
  top: 0;
  right: 0;
  width: 278px;
  height: 100vh;
  height: 100svh;
  background: #001a75;
  overflow-y: scroll;
  translate: 101%;
  transition: translate 0.5s ease;
}
.l-drawer.js-show {
  translate: 0;
}

.l-drawer__body {
  width: 100%;
  height: -moz-fit-content;
  height: fit-content;
  padding-block: 88px 40px;
  padding-left: 34px;
}

.l-drawer__list {
  display: flex;
  flex-direction: column;
  row-gap: 32px;
  margin-bottom: 40px;
}
.l-drawer__list li a {
  color: #fff;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.l-drawer__btn {
  display: inline-block;
  padding: 6px 30px;
  background: #fff;
  border-radius: 100vmax;
  color: #001a75;
  font-size: 20px;
  font-weight: 400;
  line-height: normal;
}

.l-inner {
  position: relative;
  width: 100%;
  max-width: 640px;
  height: inherit;
  padding: 0 1.25rem;
  margin-inline: auto;
}
@media (min-width: 768px) {
  .l-inner {
    max-width: 1920px;
    padding: 0 2.5rem;
  }
}

.l-inner__narrow {
  max-width: 600px;
  padding: 0 1.25rem;
}
@media (min-width: 768px) {
  .l-inner__narrow {
    max-width: 50rem;
  }
}

.c-button {
  display: inline-block;
  text-align: center;
  font-size: 1.25rem;
  font-weight: 800;
  min-width: 13.75rem;
  padding-block: 0.6em;
  padding-inline: 1.4em;
  border: 0.1875rem solid var(--color-white);
  border-radius: calc(infinity * 1px);
  color: var(--color-white);
  background-color: var(--color-pink);
  box-shadow: 0 0.125rem 0.375rem rgba(0, 0, 0, 0.1);
  transition: 0.3s;
}
@media (hover: hover) {
  .c-button:hover {
    cursor: pointer;
    opacity: 0.8;
  }
}
@media (min-width: 768px) {
  .c-button {
    font-size: 2.75rem;
    min-width: 26.25rem;
    border-width: 0.375rem;
    box-shadow: 0 0.25rem 0.75rem rgba(0, 0, 0, 0.1);
  }
}

.c-button.--teal {
  background-color: var(--color-teal);
}

.c-button.--orange {
  background-color: var(--color-orange);
}

.p-quiz {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background-color: var(--color-green);
  color: var(--color-brown);
  font-family: "Zen Maru Gothic", sans-serif;
}

.p-quiz__sound {
  position: absolute;
  z-index: 10;
  top: 0.75rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0.125rem solid var(--color-white);
  border-radius: 50%;
  background-color: rgba(255, 255, 255, 0.9);
  color: var(--color-brown);
  cursor: pointer;
}
@media (min-width: 768px) {
  .p-quiz__sound {
    top: 40px;
    right: 25px;
    width: 50px;
    height: 50px;
  }
}

.p-quiz__sound-icon {
  width: 1.5rem;
  height: 1.5rem;
}
@media (min-width: 768px) {
  .p-quiz__sound-icon {
    width: 32px;
    height: 32px;
  }
}

.p-quiz__sound-icon.--off {
  display: none;
}

.p-quiz__sound.is-muted .p-quiz__sound-icon.--on {
  display: none;
}

.p-quiz__sound.is-muted .p-quiz__sound-icon.--off {
  display: block;
}

.p-quiz__screen {
  position: relative;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100dvh;
  padding: 0.5rem;
}
.p-quiz__screen.is-active {
  display: flex;
}

.p-quiz__answer {
  max-height: 100dvh;
  overflow: hidden auto;
  -webkit-overflow-scrolling: touch;
}

.p-quiz__balloon {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: min(35rem, 92vw);
  padding: 2.25rem 3rem;
  background: url("../img/svg/hukidashi.svg") center/100% 100% no-repeat;
  text-align: center;
}
@media (min-width: 768px) {
  .p-quiz__balloon {
    width: 81.25rem;
    padding: 4.375rem 10rem;
  }
}

.p-quiz__bgword {
  position: absolute;
  z-index: 0;
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1;
  color: var(--color-white);
  opacity: 0.3;
  pointer-events: none;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: min(19.2vw, 4.5rem);
}
@media (min-width: 768px) {
  .p-quiz__bgword {
    font-size: min(20.8333333333vw, 25rem);
  }
}

.p-quiz__bgword.--top {
  top: 0.5rem;
  left: 0.5rem;
}
@media (min-width: 768px) {
  .p-quiz__bgword.--top {
    top: 1.25rem;
    left: 1.875rem;
  }
}

.p-quiz__bgword.--bottom {
  right: 0.5rem;
  bottom: 0.5rem;
}
@media (min-width: 768px) {
  .p-quiz__bgword.--bottom {
    right: 1.875rem;
    bottom: 1.25rem;
  }
}

.p-quiz__deco {
  position: absolute;
  z-index: 0;
  height: auto;
  pointer-events: none;
}

.p-quiz__deco.--pen {
  top: 1rem;
  left: 1.5rem;
  width: 5.625rem;
}
@media (min-width: 768px) {
  .p-quiz__deco.--pen {
    top: 5rem;
    left: 8.125rem;
    width: 18.75rem;
  }
}

.p-quiz__deco.--kureyon {
  top: 1rem;
  right: 1.5rem;
  width: 4.375rem;
}
@media (min-width: 768px) {
  .p-quiz__deco.--kureyon {
    top: 5.625rem;
    right: 10.625rem;
    width: 13.75rem;
  }
}

@media (min-width: 768px) {
  .p-quiz__op .p-quiz__balloon {
    width: 105rem;
    min-height: 56.25rem;
    padding: 5rem 7.5rem;
  }
}

.p-quiz__fv {
  display: block;
  width: min(27.5rem, 76vw);
  height: auto;
  margin-top: -1rem;
}
@media (min-width: 768px) {
  .p-quiz__fv {
    width: 82.5rem;
    margin-top: -1.875rem;
  }
}

.p-quiz__lead {
  position: relative;
  z-index: 1;
  margin-top: -6.5rem;
  font-size: min(3.4666666667vw, 0.8125rem);
  font-weight: 700;
  line-height: 1.7;
}
@media (min-width: 768px) {
  .p-quiz__lead {
    margin-top: -18.75rem;
    font-size: min(1.5625vw, 1.875rem);
  }
}

.p-quiz__start {
  position: relative;
  z-index: 1;
  margin-top: 0.625rem;
}
@media (min-width: 768px) {
  .p-quiz__start {
    margin-top: 0.625rem;
  }
}

.p-quiz__badge {
  position: absolute;
  z-index: 2;
  top: 0.75rem;
  left: 1rem;
  min-width: 5rem;
  padding: 0.25rem 1rem;
  border-radius: calc(infinity * 1px);
  background-color: var(--color-white);
  color: var(--color-green);
  font-size: min(4.2666666667vw, 1rem);
  font-weight: 800;
  text-align: center;
}
@media (min-width: 768px) {
  .p-quiz__badge {
    top: 3.125rem;
    left: 3.75rem;
    min-width: 14.375rem;
    padding: 0.625rem 2.5rem;
    font-size: min(2.0833333333vw, 2.5rem);
  }
}
.p-quiz__badge span {
  font-family: "Poppins", sans-serif;
}

.p-quiz__chara {
  position: absolute;
  z-index: 2;
  bottom: 0;
  width: 4.375rem;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  -o-object-position: bottom center;
     object-position: bottom center;
}
@media (min-width: 768px) {
  .p-quiz__chara {
    width: 15.625rem;
  }
}

.p-quiz__chara.--left {
  left: 0.25rem;
}
@media (min-width: 768px) {
  .p-quiz__chara.--left {
    left: 3.75rem;
  }
}

.p-quiz__chara.--right {
  right: 0.25rem;
}
@media (min-width: 768px) {
  .p-quiz__chara.--right {
    right: 3.75rem;
  }
}

.p-quiz__chara.--smile {
  width: auto;
  height: 8.9375rem;
}
@media (min-width: 768px) {
  .p-quiz__chara.--smile {
    height: 31.875rem;
  }
}

.p-quiz__answer .p-quiz__chara.--smile {
  display: none;
}

.p-quiz__answer.is-correct .p-quiz__chara.--smile {
  display: block;
}

.p-quiz__answer.is-correct .p-quiz__chara.--sad {
  display: none;
}

.p-quiz ruby rt {
  font-size: max(0.5em, 7px);
  font-weight: 500;
}
@media (min-width: 768px) {
  .p-quiz ruby rt {
    font-size: max(0.5em, 10px);
  }
}

.p-quiz__text {
  font-size: min(5.3333333333vw, 1.25rem);
  font-weight: 800;
  line-height: 1.35;
  paint-order: stroke fill;
  -webkit-text-stroke: 0.1875rem var(--color-white);
}
@media (min-width: 768px) {
  .p-quiz__text {
    font-size: min(2.7083333333vw, 3.25rem);
    -webkit-text-stroke: 0.625rem var(--color-white);
  }
}

.p-quiz__choices {
  display: flex;
  flex-direction: column;
  gap: 0.3125rem;
  width: min(26.875rem, 76vw);
  margin-top: 0.375rem;
}
@media (min-width: 768px) {
  .p-quiz__choices {
    gap: 2rem;
    width: 70rem;
    margin-top: 3rem;
  }
}

.p-quiz__choice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  width: 100%;
  padding: 0.25rem 0.625rem;
  border: 2px solid var(--color-orange);
  border-radius: 0.5625rem;
  background-color: var(--color-white);
  font-size: min(3.4666666667vw, 0.8125rem);
  font-weight: 700;
  line-height: 1.3;
  text-align: left;
  color: var(--color-brown);
  transition: 0.3s;
}
@media (hover: hover) {
  .p-quiz__choice:hover {
    cursor: pointer;
    background-color: #f5f9ec;
  }
}
@media (min-width: 768px) {
  .p-quiz__choice {
    gap: 2rem;
    padding: 1.375rem 2.75rem;
    border-width: 3px;
    border-radius: 1.625rem;
    font-size: min(2.7083333333vw, 3.25rem);
  }
}

.p-quiz__choice.--b {
  border-color: var(--color-green);
}

.p-quiz__choice.--c {
  border-color: var(--color-teal);
}

.p-quiz__choice-label {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background-color: var(--color-orange);
  color: var(--color-white);
  font-size: min(2.6666666667vw, 0.625rem);
  font-weight: 800;
}
@media (min-width: 768px) {
  .p-quiz__choice-label {
    width: 4.625rem;
    height: 4.625rem;
    font-size: min(2.0833333333vw, 2.5rem);
  }
}

.p-quiz__choice.--b .p-quiz__choice-label {
  background-color: var(--color-green);
}

.p-quiz__choice.--c .p-quiz__choice-label {
  background-color: var(--color-teal);
}

.p-quiz__question .p-quiz__balloon,
.p-quiz__answer .p-quiz__balloon,
.p-quiz__result .p-quiz__balloon {
  flex-shrink: 0;
  width: min(38.75rem, 76vw + 5rem);
  min-width: min(38.75rem, 76vw + 5rem);
  min-height: 21.5rem;
  padding: 1rem 2.5rem 1.25rem;
}
@media (min-width: 768px) {
  .p-quiz__question .p-quiz__balloon,
  .p-quiz__answer .p-quiz__balloon,
  .p-quiz__result .p-quiz__balloon {
    width: 105rem;
    min-width: 105rem;
    min-height: 56.25rem;
    padding: 6.25rem 10.625rem 6.875rem;
  }
}

.p-quiz__answer .p-quiz__balloon .p-quiz__judge {
  font-size: min(10.6666666667vw, 2.5rem);
}
@media (min-width: 768px) {
  .p-quiz__answer .p-quiz__balloon .p-quiz__judge {
    font-size: min(10.9375vw, 13.125rem);
  }
}
.p-quiz__answer .p-quiz__balloon .p-quiz__correct-choice {
  width: min(26.875rem, 76vw);
  margin-top: 0.375rem;
}
@media (min-width: 768px) {
  .p-quiz__answer .p-quiz__balloon .p-quiz__correct-choice {
    width: 73.75rem;
    margin-top: 1rem;
  }
}
.p-quiz__answer .p-quiz__balloon .p-quiz__explain {
  width: min(22.5rem, 60vw);
  margin-top: 0.375rem;
  font-size: min(3.2vw, 0.75rem);
  line-height: 1.65;
}
@media (min-width: 768px) {
  .p-quiz__answer .p-quiz__balloon .p-quiz__explain {
    width: 100%;
    margin-top: 1.25rem;
    font-size: min(1.6666666667vw, 2rem);
    line-height: 1.75;
  }
}
.p-quiz__answer .p-quiz__balloon .p-quiz__next {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .p-quiz__answer .p-quiz__balloon .p-quiz__next {
    margin-top: 1.25rem;
  }
}
.p-quiz__answer .p-quiz__balloon .c-button {
  font-size: min(4.8vw, 1.125rem);
  min-width: 12.5rem;
}
@media (min-width: 768px) {
  .p-quiz__answer .p-quiz__balloon .c-button {
    font-size: min(2.0833333333vw, 2.5rem);
    min-width: 23.75rem;
  }
}

.p-quiz__explain-scrollbar {
  display: none;
}

@media (min-width: 768px) {
  .p-quiz__answer.is-long-explain .p-quiz__balloon .p-quiz__explain {
    font-size: clamp(12px, 1.1458333333vw, 22px);
  }
}

.p-quiz__answer.is-scroll-explain {
  overflow: hidden;
}
.p-quiz__answer.is-scroll-explain .p-quiz__balloon {
  max-height: 100dvh;
  justify-content: flex-start;
  min-height: auto;
}
.p-quiz__answer.is-scroll-explain .p-quiz__balloon .p-quiz__explain-wrap {
  flex: 1 1 auto;
  display: flex;
  gap: 0.25rem;
  width: min(21rem, 60vw);
  min-height: 0;
  margin-top: 0.375rem;
}
.p-quiz__answer.is-scroll-explain .p-quiz__balloon .p-quiz__explain {
  flex: 1 1 auto;
  min-height: 0;
  width: auto;
  margin-top: 0;
  overflow-y: scroll;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
  scrollbar-width: none;
}
.p-quiz__answer.is-scroll-explain .p-quiz__balloon .p-quiz__explain::-webkit-scrollbar {
  display: none;
}
@media (max-width: 767px) {
  .p-quiz__answer.is-scroll-explain .p-quiz__balloon .p-quiz__explain {
    font-size: 12px;
  }
}
@media (min-width: 768px) {
  .p-quiz__answer.is-scroll-explain .p-quiz__balloon .p-quiz__explain {
    flex: none;
    min-height: auto;
    width: 100%;
    overflow: visible;
  }
}
.p-quiz__answer.is-scroll-explain .p-quiz__explain-scrollbar {
  display: block;
  position: relative;
  flex-shrink: 0;
  width: 0.375rem;
  border-radius: calc(infinity * 1px);
  background-color: rgba(64, 33, 15, 0.15);
}
.p-quiz__answer.is-scroll-explain .p-quiz__explain-scrollbar-thumb {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  min-height: 1.5rem;
  border-radius: inherit;
  background-color: var(--color-teal);
}
@media (min-width: 768px) {
  .p-quiz__answer.is-scroll-explain {
    overflow: hidden auto;
  }
  .p-quiz__answer.is-scroll-explain .p-quiz__balloon {
    max-height: none;
    min-height: 56.25rem;
    justify-content: center;
  }
  .p-quiz__answer.is-scroll-explain .p-quiz__balloon .p-quiz__explain-wrap {
    display: block;
    flex: none;
    width: auto;
    margin-top: 1.25rem;
  }
  .p-quiz__answer.is-scroll-explain .p-quiz__explain-scrollbar {
    display: none;
  }
}

.p-quiz__result .p-quiz__balloon {
  position: relative;
  z-index: 1;
}
@media (min-width: 768px) {
  .p-quiz__result .p-quiz__balloon .p-quiz__result-title {
    font-size: min(2.7083333333vw, 3.25rem);
  }
}
@media (min-width: 768px) {
  .p-quiz__result .p-quiz__balloon .p-quiz__score {
    margin-top: 0.75rem;
    font-size: min(5.625vw, 6.75rem);
  }
}
@media (min-width: 768px) {
  .p-quiz__result .p-quiz__balloon .p-quiz__message {
    margin-top: 1rem;
    font-size: min(2.0833333333vw, 2.5rem);
  }
}
@media (min-width: 768px) {
  .p-quiz__result .p-quiz__balloon .p-quiz__result-buttons {
    gap: 2.25rem;
    margin-top: 2.25rem;
  }
}
@media (min-width: 768px) {
  .p-quiz__result .p-quiz__balloon .c-button {
    font-size: min(2.0833333333vw, 2.5rem);
    min-width: 23.75rem;
  }
}

.p-quiz__judge {
  font-size: min(9.0666666667vw, 2.125rem);
  font-weight: 800;
  line-height: 1.2;
  color: var(--color-teal);
}
@media (min-width: 768px) {
  .p-quiz__judge {
    font-size: min(6.25vw, 7.5rem);
  }
}

.p-quiz__answer.is-correct .p-quiz__judge {
  color: var(--color-pink);
}

.p-quiz__correct-choice {
  margin-top: 0.5rem;
}
@media (min-width: 768px) {
  .p-quiz__correct-choice {
    margin-top: 1.5rem;
  }
}

.p-quiz__correct-choice .p-quiz__choice {
  pointer-events: none;
}

.p-quiz__explain {
  width: min(26.875rem, 72vw);
  margin-top: 0.5rem;
  font-size: min(2.9333333333vw, 0.6875rem);
  font-weight: 500;
  line-height: 1.7;
  text-align: center;
}
@media (min-width: 768px) {
  .p-quiz__explain {
    width: 61.25rem;
    margin-top: 1.75rem;
    font-size: min(1.4583333333vw, 1.75rem);
    line-height: 1.8;
  }
}

.p-quiz__next {
  margin-top: 0.625rem;
}
@media (min-width: 768px) {
  .p-quiz__next {
    margin-top: 1.875rem;
  }
}

.p-quiz__confetti {
  position: absolute;
  z-index: 0;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: auto;
  pointer-events: none;
}

.p-quiz__answer.is-correct .p-quiz__confetti {
  display: block;
}

.p-quiz__result {
  position: relative;
  align-self: stretch;
  width: 100%;
  padding: 0;
}
.p-quiz__result::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  background: url("../img/svg/finish-bg.svg") center/100% 100% no-repeat;
  pointer-events: none;
}
.p-quiz__result.is-zero::before {
  content: none;
}

.p-quiz__result-title {
  font-size: min(4.8vw, 1.125rem);
  font-weight: 800;
}
@media (min-width: 768px) {
  .p-quiz__result-title {
    font-size: min(3.125vw, 3.75rem);
  }
}

.p-quiz__score {
  margin-top: 0.25rem;
  font-size: min(10.1333333333vw, 2.375rem);
  font-weight: 800;
  line-height: 1.3;
  color: var(--color-pink);
}
.p-quiz__score span {
  font-family: "Poppins", sans-serif;
}
@media (min-width: 768px) {
  .p-quiz__score {
    margin-top: 1rem;
    font-size: min(6.7708333333vw, 8.125rem);
  }
}

.p-quiz__message {
  margin-top: 0.25rem;
  font-size: min(4vw, 0.9375rem);
  font-weight: 800;
  line-height: 1.6;
}
@media (min-width: 768px) {
  .p-quiz__message {
    margin-top: 1.25rem;
    font-size: min(2.5vw, 3rem);
  }
}

.p-quiz__result-buttons {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-top: 0.875rem;
}
@media (min-width: 768px) {
  .p-quiz__result-buttons {
    gap: 3.125rem;
    margin-top: 3.125rem;
  }
}

.p-quiz__result .p-quiz__chara {
  z-index: 1;
  display: none;
}

.p-quiz__result.is-high .p-quiz__chara {
  display: block;
}

.p-quiz__result.is-high .p-quiz__chara.--right {
  z-index: 2;
}

.p-rotate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  background-color: var(--color-green);
}

.p-rotate__img {
  width: auto;
  height: 100%;
  max-width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

@media (orientation: portrait) and (max-width: 767px) {
  .p-rotate {
    display: flex;
  }
  .p-quiz {
    display: none;
  }
}
.u-sp {
  display: block !important;
}
@media (min-width: 768px) {
  .u-sp {
    display: none !important;
  }
}

.u-pc {
  display: none !important;
}
@media (min-width: 768px) {
  .u-pc {
    display: block !important;
  }
}

.u-font {
  font-family: "Zen Maru Gothic", sans-serif;
}
.u-font__jp {
  font-family: "Zen Maru Gothic", sans-serif;
}
.u-font__en {
  font-family: "Roboto", sans-serif;
}

.u-pointer__none {
  pointer-events: none !important;
}

@media (min-width: 768px) {
  .u-pointer__none--pc {
    pointer-events: none !important;
  }
}
.u-text__center {
  text-align: center !important;
}

.u-text__left {
  text-align: left !important;
}

.u-text__right {
  text-align: right !important;
}

.u-text__nowrap {
  white-space: nowrap;
}

@media (min-width: 768px) {
  .u-text__center--pc {
    text-align: center !important;
  }
  .u-text__left--pc {
    text-align: left !important;
  }
  .u-text__right--pc {
    text-align: right !important;
  }
  .u-text__nowrap--pc {
    white-space: nowrap;
  }
}