@charset "UTF-8";
/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : global/_index.scss
Discription: 同階層のファイルを読み込み
**************************************************/
/**************************************************
Directory  : global/_variables.scss
Discription: 変数を定義
**************************************************/
/*----------------------------------------------------

breakpoints
SP: 〜767px … spvw() でレスポンシブ
PC: 768px〜 … 600px固定 + px指定

----------------------------------------------------*/
/*----------------------------------------------------

vw計算

----------------------------------------------------*/
/*----------------------------------------------------

カラー

----------------------------------------------------*/
/*----------------------------------------------------

フォント

----------------------------------------------------*/
/**************************************************
Directory  : global/_index.scss
Discription: 同階層のファイルを読み込み
**************************************************/
/**************************************************
Directory  : global/_mixin.scss
Discription: mixinを定義
**************************************************/
/*----------------------------------------------------

ブレークポイント

----------------------------------------------------*/
/**************************************************
Directory  : global/_index.scss
Discription: 同階層のファイルを読み込み
**************************************************/
/**************************************************
Directory  : global/_function.scss
Discription: 関数を定義
**************************************************/
/*----------------------------------------------------

vw計算

----------------------------------------------------*/
/**************************************************
Directory  : common/_index.scss
Discription: 同階層のファイルを読み込み
**************************************************/
/*-------------------------------

layout

-------------------------------*/
/**************************************************
Directory  : common/layout/_index.scss
Discription: 同階層のファイルを読み込み
**************************************************/
/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/layout/_html.scss
Discription: html,body
**************************************************/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  background: #000;
  color: #fff;
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
  font-size: 3.7333333333vw;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}
@media screen and (min-width: 1000px) {
  body {
    font-size: 14px;
  }
}

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

button,
select {
  font-family: inherit;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/layout/_wrapper.scss
Discription: wrapper
**************************************************/
.quiz-wrapper {
  position: relative;
  min-height: 100vh;
  background: #333;
  overflow: hidden;
}

.quiz-container {
  position: relative;
  z-index: 2;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  overflow: hidden;
}
@media screen and (min-width: 1000px) {
  .quiz-container {
    width: 600px;
    min-width: 600px;
    max-width: 600px;
    flex-shrink: 0;
    padding: 40px 0 0;
    min-height: 100vh;
  }
}

.quiz-canvas-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.quiz-canvas-dot,
.quiz-canvas-noise {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.quiz-canvas-noise {
  z-index: 1;
  mix-blend-mode: screen;
}

.quiz-inner {
  position: relative;
  z-index: 2;
}
.quiz-bg-video {
  display: none;
}
@media screen and (min-width: 1000px) {
  .quiz-bg-video {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 0;
    overflow: hidden;
    pointer-events: none;
  }
  .quiz-bg-video::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.7);
  }
}

@media screen and (min-width: 1000px) {
  .quiz-bg-loop {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 150%;
    width: auto;
    aspect-ratio: 16/9;
    transform: translate(-50%, -50%);
    overflow: hidden;
    z-index: 0;
  }
  .quiz-bg-loop iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100% !important;
    height: 100% !important;
    border: none;
    pointer-events: none;
  }
}

/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/layout/_header.scss
Discription: header
**************************************************/
.quiz-header {
  text-align: center;
  padding-top: 16vw;
  margin-bottom: 8vw;
}
@media screen and (min-width: 1000px) {
  .quiz-header {
    padding-top: 0;
    margin-bottom: 60px;
  }
}

.quiz-title {
  margin: 0 0 7.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .quiz-title {
    margin-bottom: 28px;
  }
}
.quiz-title img {
  width: 61.8666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .quiz-title img {
    width: 232px;
  }
}

.quiz-main-ttl {
  margin: 0;
}
.quiz-main-ttl img {
  width: 100%;
  max-width: 87.4666666667vw;
  margin: 0 auto;
}
@media screen and (min-width: 1000px) {
  .quiz-main-ttl img {
    width: 90%;
  }
}

.lead {
  text-align: center;
  margin-bottom: 10.6666666667vw;
  font-size: 4.2666666667vw;
  line-height: 1.8;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .lead {
    margin-bottom: 80px;
    font-size: 20px;
  }
}
.lead p {
  margin: 0 0 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .lead p {
    margin-bottom: 16px;
  }
}

.lead-emphasis {
  text-decoration: underline;
  text-decoration-color: #ffff21;
  text-underline-offset: 0.2em;
}

.term {
  font-family: Panchang, sans-serif;
  font-weight: 500;
  font-size: 4.8vw;
  color: #ffff21;
}
@media screen and (min-width: 1000px) {
  .term {
    font-size: 21px;
  }
}

.pc-logo {
  display: none;
}
@media screen and (min-width: 1000px) {
  .pc-logo {
    display: block;
    position: fixed;
    top: 50%;
    right: 0;
    width: calc((100vw - 600px) / 2);
    transform: translateY(-50%);
    z-index: 2;
    padding: 0 5%;
  }
}

/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/layout/_hint.scss
Discription: hint-area, hint-modal
**************************************************/
/*----------------------------------------------------
hint-area
----------------------------------------------------*/
.hint-area {
  margin-bottom: 12.8vw;
}
@media screen and (min-width: 1000px) {
  .hint-area {
    position: fixed;
    left: 0;
    top: 50%;
    width: calc((100vw - 600px) / 2);
    padding: 40px 0;
    transform: translateY(-50%);
    container-type: inline-size;
  }
}

.hint-area-ttl {
  display: flex;
  align-items: baseline;
  gap: 5.3333333333vw;
  margin: 0 0 5.3333333333vw;
  position: relative;
}
@media screen and (min-width: 1000px) {
  .hint-area-ttl {
    width: max-content;
    max-width: 100%;
    overflow: hidden;
    gap: 8px;
    margin-bottom: 20px;
  }
}

.hint-area-ttl-line {
  display: block;
  width: 58.6666666667vw;
  height: 2.6666666667vw;
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .hint-area-ttl-line {
    width: 220px;
    height: 10px;
    flex-shrink: 0;
  }
}

.hint-area-ttl-txt {
  font-family: Panchang, sans-serif;
  font-weight: 700;
  font-size: 8vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .hint-area-ttl-txt {
    font-size: 30px;
    flex-shrink: 0;
  }
}

@media screen and (min-width: 1000px) {
  @container (max-width: 300px) {
    .hint-area-ttl {
      width: 100%;
      justify-content: flex-end;
    }
  }
}
.hint-list {
  width: 80%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 2.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .hint-list {
    max-width: 300px;
    gap: 10px;
  }
}

.hint-list-item.is-locked .hint-list-btn {
  opacity: 0.2;
  cursor: default;
}

.hint-list-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 13.3333333333vw;
  padding: 0 4.2666666667vw;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  font-size: 4.2666666667vw;
  font-weight: 500;
  cursor: pointer;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .hint-list-btn {
    height: 50px;
    padding: 0 16px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .hint-list-btn:hover {
    border: 1px solid transparent;
    background: #ffff21;
    color: #000;
  }
}
.hint-list-btn:disabled {
  pointer-events: none;
}

.hint-list-dots {
  display: flex;
  gap: 1.0666666667vw;
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .hint-list-dots {
    gap: 4px;
  }
}

.hint-list-dot {
  display: block;
  width: 1.3333333333vw;
  height: 1.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .hint-list-dot {
    width: 5px;
    height: 5px;
  }
}
.hint-list-dot.hint-list-dot-pink {
  background: #ff618b;
}
.hint-list-dot.hint-list-dot-blue {
  background: #403bff;
}
.hint-list-dot.hint-list-dot-green {
  background: #68e044;
}

/*----------------------------------------------------
hint-modal
----------------------------------------------------*/
.hint-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}
.hint-modal.is-open {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}

.hint-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.hint-modal-panel {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  padding: 16vw 0 10.6666666667vw;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 1000px) {
  .hint-modal-panel {
    width: 600px;
    margin: 0 auto;
    padding: 60px 0 40px;
  }
}

.hint-modal-close {
  position: absolute;
  top: 2.6666666667vw;
  right: 2.6666666667vw;
  z-index: 2;
  width: 13.3333333333vw;
  height: 13.3333333333vw;
  border: 1px solid #fff;
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}
@media screen and (min-width: 1000px) {
  .hint-modal-close {
    top: 10px;
    right: 10px;
    width: 50px;
    height: 50px;
  }
}
.hint-modal-close::before, .hint-modal-close::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 5.3333333333vw;
  height: 1px;
  background: #fff;
}
@media screen and (min-width: 1000px) {
  .hint-modal-close::before, .hint-modal-close::after {
    width: 20px;
  }
}
.hint-modal-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.hint-modal-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.hint-modal-inner {
  position: relative;
  padding: 0 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .hint-modal-inner {
    padding: 0 40px;
  }
}

.hint-modal-ttl {
  display: flex;
  align-items: flex-start;
  gap: 3.2vw;
  margin: 0 0 6.4vw;
}
@media screen and (min-width: 1000px) {
  .hint-modal-ttl {
    gap: 12px;
    margin-bottom: 24px;
  }
}

.hint-modal-ttl-line {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 2.6666666667vw;
  height: 58.6666666667vw;
  flex-shrink: 0;
}
@media screen and (min-width: 1000px) {
  .hint-modal-ttl-line {
    width: 10px;
    height: 220px;
  }
}

.hint-modal-ttl-txt {
  font-family: Panchang, sans-serif;
  font-weight: 700;
  font-size: 8vw;
  line-height: 1;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .hint-modal-ttl-txt {
    font-size: 30px;
  }
}

.hint-modal-body {
  font-size: 3.7333333333vw;
  line-height: 7.4666666667vw;
  white-space: pre-wrap;
}
@media screen and (min-width: 1000px) {
  .hint-modal-body {
    font-size: 14px;
    line-height: 28px;
  }
}

/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/layout/_form.scss
Discription: form-area, quiz-item
**************************************************/
.form-area {
  margin-bottom: 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .form-area {
    margin-bottom: 40px;
  }
}

.quiz-item {
  position: relative;
}
.quiz-item:not(:last-of-type) {
  margin-bottom: 21.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .quiz-item:not(:last-of-type) {
    margin-bottom: 100px;
  }
}

.quiz-item-inner {
  padding: 0 10.6666666667vw;
}
@media screen and (min-width: 1000px) {
  .quiz-item-inner {
    padding: 0 60px;
  }
}

.quiz-item-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 2.6666666667vw;
  height: auto;
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  .quiz-item-line {
    width: 16px;
  }
}

.quiz-item-title {
  display: block;
  position: relative;
  text-align: center;
  margin: 0 0 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .quiz-item-title {
    margin-bottom: 20px;
  }
}

.quiz-item-num {
  position: absolute;
  top: 0;
  left: 0;
  font-family: Panchang, sans-serif;
  font-weight: 700;
  font-size: 5.3333333333vw;
  line-height: 1;
  padding-top: 0.5333333333vw;
  color: #ffff21;
}
@media screen and (min-width: 1000px) {
  .quiz-item-num {
    font-size: 20px;
    padding-top: 2px;
  }
}

.quiz-item-q1 .quiz-item-logo {
  margin-top: 0.5333333333vw;
}
@media screen and (min-width: 1000px) {
  .quiz-item-q1 .quiz-item-logo {
    margin-top: 2px;
  }
}

.quiz-item-q2 .quiz-item-logo {
  margin-top: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .quiz-item-q2 .quiz-item-logo {
    margin-top: 20px;
  }
}

.quiz-item-q3 .quiz-item-logo {
  margin-top: 3.4666666667vw;
}
@media screen and (min-width: 1000px) {
  .quiz-item-q3 .quiz-item-logo {
    margin-top: 13px;
  }
}

.quiz-item-logo {
  display: block;
  width: 56vw;
  height: auto;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (min-width: 1000px) {
  .quiz-item-logo {
    width: 210px;
  }
}

.char-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 5.3333333333vw 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .char-list {
    gap: 30px;
  }
}

.char-item {
  display: flex;
  flex-direction: column;
  gap: 2.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .char-item {
    gap: 12px;
  }
}

.char-card {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.char-card-img {
  aspect-ratio: 1/1;
  overflow: hidden;
  background: #111;
}
.char-card-img picture {
  display: block;
  width: 100%;
  height: 100%;
}
.char-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.char-select {
  position: relative;
}
.char-select::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 3.2vw;
  width: 0;
  height: 0;
  margin-top: -3px;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #333;
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  .char-select::after {
    right: 12px;
  }
}

.char-select-input {
  width: 100%;
  height: 10.6666666667vw;
  padding: 0 7.4666666667vw 0 3.2vw;
  border: none;
  background: #fff;
  color: #333;
  font-size: 3.2vw;
  appearance: none;
  cursor: pointer;
  border-radius: 3.2vw;
}
@media screen and (min-width: 1000px) {
  .char-select-input {
    height: 40px;
    padding: 0 30px 0 20px;
    font-size: 14px;
    border-radius: 12px;
  }
}
.char-select-input.is-error {
  background: #ff437d;
  color: #fff;
}

.char-select:has(.char-select-input.is-error)::after {
  border-top-color: #fff;
}

.form-error {
  display: none;
  padding: 0 10.6666666667vw;
  margin: 0 0 4.2666666667vw;
  color: #ff437d;
  font-size: 3.2vw;
  font-weight: 700;
  line-height: 1.8;
  text-align: left;
}
@media screen and (min-width: 1000px) {
  .form-error {
    margin-bottom: 16px;
    font-size: 12px;
  }
}
.form-error.is-show {
  display: block;
}

.button-area {
  text-align: center;
  margin: 10.6666666667vw 0;
}
@media screen and (min-width: 1000px) {
  .button-area {
    margin: 40px 0;
  }
}

.quiz-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  min-width: 34.6666666667vw;
  height: 13.3333333333vw;
  padding: 0 6.4vw;
  border: none;
  background: #ffff21;
  color: #000;
  font-size: 4.2666666667vw;
  font-weight: 700;
  cursor: pointer;
  border: 1px solid #ffff21;
}
@media screen and (min-width: 1000px) {
  .quiz-button {
    min-width: 289px;
    height: 50px;
    padding: 0 24px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .quiz-button:hover {
    background: transparent;
    color: #ffff21;
  }
}

.kiyaku {
  padding: 0 10.6666666667vw;
  margin-bottom: 12.8vw;
  color: #848484;
}
.kiyaku a {
  color: #848484;
}
@media screen and (min-width: 1000px) {
  .kiyaku {
    padding: 0 60px;
    margin-bottom: 48px;
  }
}

.kiyaku-ttl {
  margin: 0 0 4.2666666667vw;
  font-size: 3.7333333333vw;
  font-weight: 700;
}
@media screen and (min-width: 1000px) {
  .kiyaku-ttl {
    margin-bottom: 16px;
    font-size: 14px;
  }
}

.kiyaku-list-item {
  position: relative;
  padding-left: 1em;
  font-size: 3.2vw;
  line-height: 1.8;
}
@media screen and (min-width: 1000px) {
  .kiyaku-list-item {
    font-size: 12px;
  }
}
.kiyaku-list-item::before {
  content: "・";
  position: absolute;
  left: 0;
}

/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/layout/_result.scss
Discription: result-area
**************************************************/
.result-area {
  text-align: center;
  margin-bottom: 12.8vw;
  padding-top: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .result-area {
    margin: 60px auto 100px;
    padding-top: 20px;
  }
}
.result-area.is-perfect {
  margin-bottom: 12.8vw;
}
@media screen and (min-width: 1000px) {
  .result-area.is-perfect {
    margin-bottom: 60px;
  }
}
.result-area.is-perfect .result-message {
  font-size: 14.9333333333vw;
}
@media screen and (min-width: 1000px) {
  .result-area.is-perfect .result-message {
    font-size: 56px;
  }
}

.result-score {
  margin: 0 0 2.1333333333vw;
  font-family: Panchang, sans-serif;
  font-weight: 500;
  font-size: 5.3333333333vw;
  color: #ff437d;
}
@media screen and (min-width: 1000px) {
  .result-score {
    margin-bottom: 8px;
    font-size: 20px;
  }
}

.result-message {
  margin: 0 0 8.5333333333vw;
  font-size: 6.9333333333vw;
  font-weight: 700;
  line-height: 1.4;
}
@media screen and (min-width: 1000px) {
  .result-message {
    margin-bottom: 32px;
    font-size: 26px;
  }
}

.result-note {
  margin: -4.2666666667vw 0 8.5333333333vw;
  font-size: 3.7333333333vw;
  font-weight: 500;
  line-height: 1.6;
  color: #ff437d;
}
@media screen and (min-width: 1000px) {
  .result-note {
    margin: -16px 0 32px;
    font-size: 14px;
  }
}

.result-action {
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .result-action {
    gap: 16px;
  }
}

.result-top-action {
  margin: 0 0 6.4vw;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .result-top-action {
    margin-bottom: 24px;
  }
}

.result-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 77.0666666667vw;
  height: 13.3333333333vw;
  padding: 0 6.4vw;
  border: 1px solid transparent;
  background: transparent;
  font-size: 4.2666666667vw;
  font-weight: 500;
  text-decoration: none;
  cursor: pointer;
}
@media screen and (min-width: 1000px) {
  .result-btn {
    min-width: 289px;
    height: 50px;
    padding: 0 24px;
    font-size: 16px;
    transition: all 0.3s ease;
  }
  .result-btn:hover {
    border: 1px solid transparent !important;
    background: #ffff21;
    color: #000 !important;
  }
}
.result-btn.result-btn-share {
  border-color: #403bff;
  color: #403bff;
}
.result-btn.result-btn-retry {
  border-color: #02e200;
  color: #02e200;
}
.result-btn.result-btn-top {
  min-width: 53.3333333333vw;
  border-color: #fff;
  color: #fff;
}
@media screen and (min-width: 1000px) {
  .result-btn.result-btn-top {
    min-width: 200px;
  }
}

/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/layout/_footer.scss
Discription: footer
**************************************************/
.quiz-footer {
  text-align: center;
  padding-bottom: 5.3333333333vw;
}
@media screen and (min-width: 1000px) {
  .quiz-footer {
    padding-bottom: 20px;
  }
}

.quiz-footer-bnr {
  display: block;
  width: 72vw;
  margin: 0 auto 4.2666666667vw;
}
@media screen and (min-width: 1000px) {
  .quiz-footer-bnr {
    width: 270px;
    margin-bottom: 16px;
  }
}
.quiz-footer-bnr img {
  display: block;
  width: 100%;
  height: auto;
}

.quiz-footer-aniplex {
  margin-bottom: 3.2vw;
  font-family: Panchang, sans-serif;
  text-align: center;
}
@media screen and (min-width: 1000px) {
  .quiz-footer-aniplex {
    margin-bottom: 12px;
  }
}

.quiz-footer-aniplex-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin: 0 0 2.1333333333vw;
  padding: 0;
  list-style: none;
}
@media screen and (min-width: 1000px) {
  .quiz-footer-aniplex-list {
    margin-bottom: 8px;
  }
}

.quiz-footer-aniplex-item:not(:last-child)::after {
  content: "|";
  margin: 0 2.1333333333vw;
}
@media screen and (min-width: 1000px) {
  .quiz-footer-aniplex-item:not(:last-child)::after {
    margin: 0 8px;
  }
}

.quiz-footer-aniplex-link {
  color: #fff;
  font-size: 2.6666666667vw;
  text-decoration: none;
}
@media screen and (min-width: 1000px) {
  .quiz-footer-aniplex-link {
    font-size: 10px;
    transition: color 0.3s ease;
  }
  .quiz-footer-aniplex-link:hover {
    color: #ffff21;
  }
}

.quiz-footer-notice {
  margin: 0;
  font-family: YakuHanJP, "IBM Plex Sans JP", sans-serif;
  font-size: 2.6666666667vw;
  line-height: 1.8;
  color: #848484;
}
@media screen and (min-width: 1000px) {
  .quiz-footer-notice {
    font-size: 10px;
  }
}

.quiz-footer-copy {
  margin: 0;
  font-family: Panchang, sans-serif;
  font-size: 2.6666666667vw;
  line-height: 1.8;
}
@media screen and (min-width: 1000px) {
  .quiz-footer-copy {
    font-size: 10px;
  }
}

/*-------------------------------

modules

-------------------------------*/
/**************************************************
Directory  : style.scss
Discription: クイズページ
**************************************************/
/**************************************************
Directory  : common/modules/_index.scss
Discription: 汎用モジュール
**************************************************/
.w100 {
  width: 100%;
  height: auto;
}

.pc {
  display: block;
}
@media screen and (max-width: 999px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 999px) {
  .sp {
    display: block;
  }
}

body.is-modal-open {
  overflow: hidden;
}