@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 62.5%;
  scroll-behavior: smooth;
}
body {
  height: 100%;
  font-size: 1.6rem;
  font-family: 'Noto Sans JP', sans-serif;
  color: #333333;
}
a {
  text-decoration: none;
  color: #333333;
  cursor: pointer;
}
button {
  display: block;
  padding: 0;
  border: none;
  cursor: pointer;
  background: transparent;
}
button:disabled {
  opacity: 0.5;
}
img {
  display: block;
  width: 100%;
}

._none {
  display: none !important;
}
._hidden {
  visibility: hidden !important;
}

main {
  width: 100%;
  min-height: 100vh;
  background-image: url(../img/main_bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

/*------------ start ------------*/
.start {
  width: fit-content;
  position: absolute;
  top: 50%;
  left: 50%;
  translate: -50% -50%;
}
.start-ttl {
  width: min(90vw, 1240px);
  margin: 0 auto;
}
.start-btn {
  width: min(16.5%, 205px);
  position: absolute;
  top: 69%;
  left: 50%;
  translate: -50% 0;
}
/*------------ start ここまで ------------*/

/*------------ checker ------------*/
.checker {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 95%;
  max-width: 710px;
  min-height: 100vh;
  margin: 0 auto;
  padding: 50px 0;
}

/** checker-steps */
.checker-steps-area {
  width: fit-content;
  margin: 15px auto 0;
  position: relative;
}
.checker-steps-bar {
  width: 100%;
  height: 8px;
  border-radius: 9999px;
  background-color: #999;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
.checker-steps-bar::after {
  content: '';
  display: block;
  width: var(--width, 0%);
  height: 100%;
  border-radius: 9999px;
  background-color: #c1b178;
  transition: all 0.5s 0s ease-in-out;
}
.checker-steps {
  display: flex;
  justify-content: center;
  gap: 20px;
  width: fit-content;
  position: relative;
}
.checker-step {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background-color: #999;
  filter: drop-shadow(4px 4px 18px rgba(0, 34, 56, 0.45));
  color: #fff;
  font-family: 'Outfit', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-align: center;
  position: relative;
}
.checker-step._current {
  box-shadow: inset 0 0 0 2px #c1b178;
  background-color: #fff;
  color: #c1b178;
}
.checker-step._answered::before {
  content: '';
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 9999px;
  background-color: #c1b178;
  position: absolute;
}
.checker-step._answered::after {
  content: '';
  display: block;
  width: 9px;
  height: 6px;
  border-left: 3px solid #fff;
  border-bottom: 3px solid #fff;
  position: absolute;
  translate: 0 -2px;
  rotate: -45deg;
}

/** checker-contents */
.checker-contents {
  width: 100%;
}
/*** 質問文 */
.checker-text {
  margin-top: 30px;
  color: #fff;
  font-size: 24px;
  text-align: center;
}
/*** 選択肢 */
.checker-choice-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 30px;
  row-gap: 20px;
  margin-top: 25px;
}
.checker-choice {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 340px;
  height: 80px;
  border-radius: 16px;
  background-color: #fff;
  font-size: 18px;
  position: relative;
}
.checker-choice::before {
  content: '';
  display: block;
  width: 32px;
  height: 32px;
  margin-left: 20px;
  border-radius: 9999px;
  box-shadow: inset 0 0 0 1px #ccc;
}
.checker-choice:has(input:checked) {
  background-image: linear-gradient(-45deg, #006faf, #17afff);
  color: #fff;
}
.checker-choice:has(input:checked)::before {
  box-shadow: inset 0 0 0 7px #fff;
  background-color: #4ed6ff;
}
.checker-choice:has(input:checked)::after {
  content: '';
  display: block;
  width: 60px;
  height: 60px;
  background-image: url(../img/checker_choice_deco.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
.checker-choice input[type='radio'] {
  appearance: none;
  width: 100%;
  height: 100%;
  margin: 0;
  border-radius: 16px;
  position: absolute;
}
/*** ボタン */
.checker-btn-area {
  display: flex;
  flex-direction: column-reverse;
  align-items: center;
  gap: 20px;
  margin-top: 40px;
}
.checker-btn {
  border-radius: 9999px;
  color: #fff;
  position: relative;
}
.checker-btn._prev {
  width: 148px;
  height: 50px;
  border: 1px solid #fff;
}
.checker-btn._next,
.checker-btn._result {
  width: 208px;
  height: 64px;
  background-color: #17afff;
}
.checker-btn-arrow {
  display: block;
  width: 6.25%;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
._prev .checker-btn-arrow {
  left: 13%;
  rotate: 180deg;
}
._next .checker-btn-arrow,
._result .checker-btn-arrow {
  right: 13%;
}
.checker-btn-arrow img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(37%) saturate(0%) hue-rotate(233deg) brightness(104%) contrast(101%);
}
/*------------ checker ここまで ------------*/

/*------------ result ------------*/
.result {
  width: 100%;
  min-height: 100vh;
  padding-bottom: 100px;
  background-color: #006298;
  background-image: url(../img/result_bg.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: top center;
}
/** タイトル */
.result-ttl {
  width: min(80vw, 529px);
  margin: 0 auto;
  padding-top: 20px;
  translate: -3.5% 0;
}
/** 推し選手 */
.result-favorite-txt {
  margin-top: 30px;
  color: #fff;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 28px;
  letter-spacing: 0.04em;
  line-height: 1.1;
  text-align: center;
}
.result-favorite-txt ._small {
  font-size: 18px;
}
.result-favorite-name {
  margin-right: 10px;
  font-size: 50px;
}
/*** 推し選手説明 */
.result-favorite-box {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: min(90vw, 800px);
  min-height: 325px;
  margin: 30px auto 0;
  border-radius: 30px;
  background-image: url(../img/result_favorite_bg.png), linear-gradient(-45deg, #0099cb, #f2fcff 60%);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: bottom center;
  filter: drop-shadow(7px 7px 18px rgba(0, 0, 0, 0.1));
}
.result-favorite-img {
  width: 40%;
  translate: 0 -10%;
}
.result-favorite-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 48%;
}
.result-favorite-point {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #05afe3;
  font-size: 24px;
}
.result-favorite-point-txt {
  margin-top: 15px;
}
.result-favorite-explain {
  color: #333;
  letter-spacing: -0.04em;
  line-height: 1.5;
}
.result-favorite-position {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-size: 18px;
}
.result-favorite-position ._cat {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 5px 10px;
  border: 1px solid #05afe3;
  border-radius: 9999px;
  background-color: #fff;
  color: #05afe3;
  font-size: 14px;
}
/** おすすめ */
.result-recommend {
  display: flex;
  justify-content: center;
  gap: 50px;
  width: 100%;
  margin-top: 60px;
}
.result-recommend-box {
  width: min(calc((100% - 70px) / 2), 465px);
}
.result-recommend-ttl {
  display: flex;
  align-items: center;
  gap: 20px;
}
.result-recommend-ttl-txt {
  color: #fff;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: clamp(18px, 3.5vw, 42px);
  font-weight: normal;
}
.result-recommend-ttl-txt ._en {
  display: block;
  font-size: 26px;
}
.result-recommend-ttl-icon._gourmet {
  width: 20.8%;
}
.result-recommend-ttl-icon._goods {
  width: 22.1%;
}
.result-recommend-img-box {
  margin-top: 20px;
}
.result-recommend-img {
  width: 100%;
}
.result-recommend-explain {
  margin-top: 10px;
  color: #fff;
  font-size: 16.8px;
  line-height: 1.75;
}

/** その他のおすすめ */
/* .other-recommend {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 60px 0 90px;
  background-image: url(../img/other_recommend_bg.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
}
.other-recommend-ttl {
  display: flex;
  align-items: center;
  gap: 20px;
  color: #05afe3;
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 42px;
  font-weight: normal;
  letter-spacing: 0.02em;
}
.other-recommend-ttl ._small {
  font-size: 0.762em;
}
.other-recommend-ttl ._en {
  margin-left: 10px;
  font-size: 0.62em;
}
.other-recommend-ttl-icon {
  width: 97px;
}
.other-recommend-list {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  padding: 0 20px;
  overflow: scroll;
} */

/* バナー */
.result-bnr {
  margin: 30px auto 0;
  display: block;
  max-width: 600px;
  transition: opacity 0.2s;
}
@media (hover: hover) {
  .result-bnr {
    opacity: 1;
  }
  .result-bnr:hover {
    opacity: 0.8;
  }
}

/** ボタン */
.result-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-width: 280px;
  height: 72px;
  margin: 30px auto 0;
  padding: 0 50px;
  border-radius: 9999px;
  filter: drop-shadow(7px 7px 18px rgba(0, 0, 0, 0.12));
  background-image: linear-gradient(-45deg, #006faf, #17afff);
  color: #fff;
  font-size: 18px;
  position: relative;
}
.result-btn._prev {
  margin-top: 100px;
  border: 1px solid #fff;
  background-image: none;
}
.result-btn-arrow {
  display: block;
  width: 5%;
  position: absolute;
  top: 50%;
  right: 6%;
  translate: 0 -50%;
}
._prev .result-btn-arrow {
  left: 6%;
  right: auto;
  rotate: 180deg;
}
.result-btn-arrow img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(37%) saturate(0%) hue-rotate(233deg) brightness(104%) contrast(101%);
}

/** フッター */
footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 25px 20px 10px;
  background-color: #05afe3;
}
.footer-logo {
  width: min(70%, 300px);
}
.footer-share {
  display: flex;
  align-items: center;
  gap: 30px;
  margin-top: 30px;
}
.footer-share-ttl {
  color: #fff;
  font-family: 'Teko', sans-serif;
  font-size: 3.2rem;
}
.footer-share-icon-list {
  display: flex;
  gap: 20px;
}
.footer-share-icon._x {
  width: 35px;
}
.footer-share-icon._fb {
  width: 35px;
}
.copyright {
  margin-top: 30px;
  color: #fff;
  font-size: 12px;
  text-align: center;
}

@media (max-width: 768px) {
  main {
    background-image: url(../img/main_bg_sp.jpg);
  }

  /*------------ start ------------*/
  .start {
    width: 100%;
  }
  .start-ttl {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100vw;
  }
  .start-ttl img {
    height: 100vh;
    object-fit: contain;
  }
  .start-btn {
    width: min(33%, 282px);
    top: 67%;
  }
  /*------------ start ここまで ------------*/

  /*------------ checker ------------*/
  .checker {
    padding: 40px 0;
  }
  /** checker-steps */
  .checker-steps-area {
    margin-top: 10px;
  }
  .checker-steps-bar {
    height: 6px;
  }
  .checker-steps {
    gap: 15px;
  }
  .checker-step {
    width: 32px;
    height: 32px;
    font-size: 10px;
  }
  .checker-step._current {
    box-shadow: inset 0 0 0 1.5px #c1b178;
  }
  .checker-step._answered::before {
    width: 32px;
    height: 32px;
  }
  .checker-step._answered::after {
    width: 7px;
    height: 4px;
    translate: 0 -1px;
  }

  /** checker-contents */
  .checker-text {
    font-size: 21px;
  }
  /*** 選択肢 */
  .checker-choice-container {
    row-gap: 15px;
    margin-top: 25px;
  }
  .checker-choice {
    display: flex;
    align-items: center;
    gap: 10px;
    width: 340px;
    height: 65px;
    border-radius: 16px;
    background-color: #fff;
    font-size: 16px;
    position: relative;
  }
  .checker-choice::before {
    content: '';
    display: block;
    width: 27px;
    height: 27px;
    margin-left: 20px;
    border-radius: 9999px;
    box-shadow: inset 0 0 0 1px #ccc;
  }
  .checker-choice:has(input:checked) {
    background-image: linear-gradient(-45deg, #006faf, #17afff);
    color: #fff;
  }
  .checker-choice:has(input:checked)::before {
    box-shadow: inset 0 0 0 5px #fff;
    background-color: #4ed6ff;
  }
  .checker-choice:has(input:checked)::after {
    content: '';
    display: block;
    width: 60px;
    height: 60px;
    background-image: url(../img/checker_choice_deco.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    position: absolute;
    top: 50%;
    right: 20px;
    translate: 0 -50%;
  }
  .checker-choice input[type='radio'] {
    appearance: none;
    width: 100%;
    height: 100%;
    margin: 0;
    border-radius: 16px;
    position: absolute;
  }
  /*** ボタン */
  .checker-btn-area {
    flex-direction: row;
    justify-content: center;
    gap: 10px;
    margin-top: 25px;
  }
  .checker-btn {
    width: 165px !important;
    height: 60px !important;
    font-size: 16px;
  }
  .checker-btn._prev {
    border-width: 2px;
  }

  /*------------ result ------------*/
  .result {
    padding-bottom: 70px;
    background-image: url(../img/result_bg_sp.png);
  }
  /** タイトル */
  .result-ttl {
    width: min(95vw, 375px);
    margin: 0 auto;
    padding-top: 10px;
    translate: -1% 0;
  }
  /** 推し選手 */
  .result-favorite-txt {
    margin-top: 10px;
    font-size: 23px;
  }
  .result-favorite-txt ._small {
    font-size: 16px;
  }
  .result-favorite-name {
    margin-right: 5px;
    font-size: 42px;
  }
  /*** 推し選手説明 */
  .result-favorite-box {
    flex-direction: column;
    gap: 5px;
    width: min(90vw, 700px);
    margin: 15% auto 0;
    padding: 0 25px 30px;
    border-radius: 30px;
    background-image: url(../img/result_favorite_bg_sp.png), linear-gradient(-45deg, #0099cb, #f2fcff 60%);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: bottom center;
    filter: drop-shadow(7px 7px 18px rgba(0, 0, 0, 0.1));
  }
  .result-favorite-img {
    width: min(90%, 400px);
    margin-top: -18%;
    translate: 0 0;
  }
  .result-favorite-info {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
  }
  .result-favorite-point {
    margin-left: -10px;
    font-size: 21px;
  }
  .result-favorite-point-txt {
    margin-top: 15px;
  }
  .result-favorite-explain {
    font-size: 14px;
  }
  .result-favorite-position {
    font-size: 16px;
  }
  .result-favorite-position ._cat {
    font-size: 11px;
  }
  /** おすすめ */
  .result-recommend {
    flex-direction: column;
    align-items: center;
  }
  .result-recommend-box {
    width: min(90%, 700px);
  }
  .result-recommend-ttl {
    gap: 10px;
  }
  .result-recommend-ttl-txt {
    color: #fff;
    font-family: 'Dela Gothic One', sans-serif;
    font-size: clamp(20px, 9vw, 31px);
    font-weight: normal;
  }
  .result-recommend-ttl-txt ._en {
    margin-top: 5px;
    font-size: 0.55em;
  }
  .result-recommend-explain {
    font-size: 14px;
  }

  /** その他のおすすめ */
  /* .other-recommend {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 40px 0;
  }
  .other-recommend-ttl {
    gap: 10px;
    width: 100%;
    padding: 0 20px;
    font-size: 31px;
  }
  .other-recommend-ttl ._en {
    display: block;
    margin-top: 5px;
    margin-left: 0;
  }
  .other-recommend-ttl-icon {
    width: 75px;
  }
  .other-recommend-list {
    gap: 10px;
    width: 100%;
    margin-top: 20px;
    padding: 0 20px;
    overflow: scroll;
  }
  .other-recommend-list-item {
    flex-shrink: 0;
  }
  .other-recommend-list-item:first-child {
    width: 210px;
  }
  .other-recommend-list-item:nth-child(n + 2) {
    width: 105px;
  } */

  .result-bnr {
    margin-top: 25px;
    width: min(90vw, 700px);
  }

  /** ボタン */
  .result-btn {
    min-width: 230px;
    height: 60px;
    margin-top: 25px;
    padding: 0 40px;
    font-size: 16px;
  }
  .result-btn._prev {
    margin-top: 70px;
  }

  /* フッター */
  .footer-share {
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}
