/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
@charset "utf-8";

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
form,
fieldset,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  text-size-adjust: none;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
  max-width: 100%;
  height: auto;
}

a {
  cursor: pointer;
  text-decoration: none;
}

input[type="radio"] {
  margin: 0;
}

/* ========================
  共通部分
  ======================== */

body {
  color: #363636; /* 基本フォントカラー */
  background-color: #fffce1;
  font-family: "Noto Sans JP", sans-serif; /* 基本フォント */
  padding-top: 50px;
}

.br-pc {
  display: none;
}

/* 数字・英字フォント */
.font_out {
  font-family: "Outfit", sans-serif;
}

/* ボタン */
.btn {
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  border-radius: 30px;
  background-color: #40b621;

  width: 100%;
  max-width: 310px;
  margin: 0 auto;
  font-size: 14px;

  transition-duration: 0.5s;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);

  cursor: pointer;
}

.btn:hover {
  background-color: rgb(0 65 29);
}

.btn__text {
  position: relative;
  display: flex;
  align-items: center;
  font-weight: 400;
  padding-left: 11px;
}

/* 検定レベル（S,A,B,C,D） */
.btn > .btn__text > .btn__level {
  font-weight: 600;
  font-size: 22px;
  padding-right: 3px;
}

/* 矢印 */
.btn__text__arrow__wrap {
  overflow: hidden;
}

.btn__text__arrow {
  display: flex;
  align-items: center;
  padding-left: 3px;
}
.btn:hover > .btn__text > .btn__text__arrow__wrap > .btn__text__arrow {
  animation: arrow-animation 0.5s ease-out;
}

@keyframes arrow-animation {
  0% {
    transform: translate(0);
  }

  49.5% {
    transform: translate(11px, -6.4px);
  }
  50.5% {
    transform: translate(-11px, 6.4px);
  }
  0% {
    transform: translate(0);
  }
}

@media screen and (min-width: 769px) {
  .br-pc {
    display: block;
  }
  .btn {
    max-width: 440px;
    height: 80px;
    border-radius: 42px;
    width: 100%;
  }
  .btn__text {
    font-size: 19px;
  }
  .btn__text__arrow img {
    width: 13px;
    height: 11px;
  }
}

/* ========================
ヘッダー
======================== */
.header {
  height: 50px;
  background-color: #40b621;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  padding-left: 14px;
  box-shadow: 0px 3px 8px #00000029;
  z-index: 50;

  display: flex;
  align-items: center;
}

.header__link img {
  width: 180px;
  height: 14px;
}

@media screen and (min-width: 769px) {
  .header {
    padding-left: 21px;
  }
  .header__link img {
    width: 200px;
    height: 14px;
  }
}
/* ========================
フッター
======================== */
footer {
  background-color: #000000c6;
  padding-left: 33px;
  padding-top: 55px;
  padding-bottom: 14px;
  color: #ffffff;
}

.footer__title {
  display: block;
  max-width: 275px;
  height: auto;
}

.footer__office {
  margin-top: 50px;
  font-size: 14px;
  font-weight: 600;
}

.footer__contact {
  margin-top: 28px;
}

.footer__contact__email{
  display: block;
  color: #ffffff;
  font-size: 13px;
}

.footer__contact {
  display: flex;
  align-items: center;
  gap: 14px;
}

.contact__title {
  font-size: 11px;
  font-weight: 600;
}

.contact__email {
  font-size: 13px;
}

.footer__terms {
  color: #fff;
  display: block;
  margin-top: 14px;
  font-size: 11px;
  font-weight: 600;
  cursor: pointer;
}

.footer__detail {
  font-size: 8px;
  margin-top: 41px;
  max-width: 310px;
  letter-spacing: -0.24px;
  line-height: 11px;
}

/* フッター（PC版） */
@media screen and (min-width: 769px) {
  footer {
    padding-top: 52px;
    padding-left: 0;
  }
  .footer__wrap {
    max-width: 761px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 70px;
  }
  .footer__office {
    margin-top: 0;
  }
  .footer__terms {
    display: block;
    height: 16px;
    margin-top: 0;
    padding-left: 56px;
  }
  .footer__content {
    max-width: 354px;
    width: 100%;
  }
  .footer__contact {
    margin-top: 0;
  }
  .footer__detail {
    max-width: 762px;
    font-size: 8px;
    margin: 50px auto 0px;
  }
  .footer__content__contact {
    margin-top: 21px;
    display: flex;
    align-items: center;
    line-height: 19px;
  }
}

/* ========================
タイトル
======================== */
.title__template {
  text-align: center;
}

.title__template h2 {
  font-size: 47px;
  color: #40b621;
  line-height: 60px;
}
.title__sub__template {
  font-size: 13px;
  color: #40b621;
}
.title__template img {
  width: 46px;
  height: 45px;
}

/* ========================
ランキング
======================== */
.ranking__title {
  text-align: center;
}

.ranking__title h2 {
  font-size: 47px;
  color: #40b621;
  line-height: 60px;
}
.ranking__title__sub {
  font-size: 13px;
  color: #40b621;
}
.ranking__title img {
  width: 46px;
  height: 45px;
}

.ranking__wrap {
  display: none;
  margin-top: 51px;
}

.ranking__none {
  margin-top: 51px;
  display: none;
  text-align: center;
}

.ranking__unit {
  font-size: 10px;
  margin-left: 143px;
  font-weight: 700;
  text-align: end;
}

.ranking__teams {
  margin-top: 11px;
}
.ranking__team {
  /* padding-left: 5.6%; */
  padding-left: 6.6%;
  display: flex;
  align-items: center;
  height: 60px;
}

.ranking__team__rank {
  min-width: 36px;
  align-items: baseline;
  gap: 2px;
  display: flex;
  justify-content: flex-end;
}

.ranking__team__rank__number {
  font-size: 16px;
}
.ranking__team__rank__unit {
  font-size: 10px;
}

.ranking__team.top3 > .ranking__team__rank > .ranking__team__rank__number {
  font-size: 24px;
  font-weight: 700;
}

.ranking__team__logo {
  text-align: center;
  height: auto;
  width: 35px;
  margin-left: 23px;
}
.ranking__team__logo img {
  transform: scale(0.8);
}

.top3 > .ranking__team__logo img {
  transform: scale(1);
}

.top3.ranking__team {
  height: 70px;
}

.ranking__team__result {
  margin-left: 27px;
}

.ranking__team:nth-child(2n + 1) {
  background-color: #fcfbeb;
}

.ranking__team__result {
  font-size: 15px;
}

.ranking__team__result__score {
  margin-top: 6px;
  display: flex;
  align-items: end;
}

.ranking__pass__small {
  font-size: 13px;
}

.ranking__team__result__name {
  font-size: 12px;
}

.ranking__team.top3 > .ranking__team__result > .ranking__team__result__score {
  font-weight: 600;
}

.ranking__team.top3 > .ranking__team__result > .ranking__team__result__name {
  position: relative;
  display: inline-block;
  z-index: 1;
  font-weight: 800;
  font-size: 14px;
}

.ranking__team.top3 > .ranking__team__result > .ranking__team__result__name::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 4px;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

.ranking__note {
  font-size: 11px;
  text-align: center;
  margin-top: 36px;
}

/* ランキング（tab版 崩れない程度） */
@media (min-width: 769px) and (max-width: 1200px) {
  .ranking__teams > .ranking__team {
    padding: 0px 5% 0px 5%;
  }
  .ranking__wrap > .ranking__unit {
    padding-right: 3.5%;
  }
  .top__finished .ranking__wrap > .ranking__unit{
    padding-right: 3.5%;
  }
}

/* ランキング（PC版） */
@media screen and (min-width: 769px) {
  .ranking__team {
    padding: 0px 22% 0px 21%;
  }
  .ranking__team__result {
    flex: 1;
    display: flex;
  }
  .ranking__team > .ranking__team__result > .ranking__team__result__score {
    flex: 1;
    justify-content: flex-end;
  }
  .ranking__unit {
    padding-right: 21.5%;
    font-size: 15px;
    padding-bottom: 12px;
  }
  .ranking__title img {
    width: 66px;
    height: 78px;
  }
  .ranking__title h2 {
    font-size: 68px;
  }
  .ranking__title__sub {
    font-size: 18px;
    margin-top: 20px;
  }
  .ranking__wrap {
    margin-top: 114px;
  }
  .top3.ranking__team {
    height: 120px;
  }
  .ranking__team {
    height: 90px;
  }
  .ranking__team__rank {
    min-width: 48px;
  }
  .ranking__team.top3 > .ranking__team__rank > .ranking__team__rank__number {
    font-size: 38px;
  }
  .ranking__team__rank__number {
    font-size: 29px;
  }
  .ranking__team__rank__unit {
    font-size: 16px;
  }
  .ranking__team.top3 > .ranking__team__result > .ranking__team__result__name {
    font-size: 23px;
  }
  .ranking__team__result__name {
    font-size: 18px;
  }
  .top3 .ranking__total__score {
    font-size: 27px;
  }
  .ranking__total__score {
    font-size: 21px;
  }
  .top3 .ranking__pass__small {
    font-size: 21px;
  }
  .ranking__pass__small {
    font-size: 19px;
  }
  .ranking__team.top3 > .ranking__team__result > .ranking__team__result__name::after {
    height: 8px;
    bottom: 2px;
  }
  .ranking__team__logo {
    width: 50px;
  }
  .ranking__team__logo {
    margin-left: 79px;
  }
  .ranking__team__result {
    margin-left: 79px;
  }
  .ranking__note {
    margin-top: 60px;
    font-size: 16px;
  }
  .ranking__team__result__score {
    margin-top: 0;
  }
}

/* 選択肢 */
input[type="radio"] {
  /* ラジオボタンの外枠 */
  appearance: none; /* デフォルトのスタイルを削除 */
  width: 16px;
  min-width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1px solid #363636;
  vertical-align: -5px;
  outline: none;
  background-color: #fff;
  position: relative;
}
/* ラジオボタンの内側の● */
input[type="radio"]::before {
  display: block;
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  top: 50%;
  left: 50%;
  border-radius: 5px;
  transform: translate(-50%, -50%);
  transform-origin: center;
}

input[type="radio"]:checked::before {
  background-color: #82e863;
}
.mistake input[type="radio"]:checked::before {
  background-color: #e80000;
}

/* MY CLUB */
.team {
  padding: 0px 34px;
  width: 100%;
  display: flex;
  align-items: center;
  height: 70px;
  background-color: #fcfbeb;
  border-bottom: #40b621 1px solid;

  justify-content: center;
}

.team__myClub {
  text-align: center;
  color: #40b621;
}

.team__logo {
  min-width: 36px;
  height: 42px;
  padding-left: 18px;
}
.team__logo img {
  min-width: 36px;
  height: 42px;
}

.team__name {
  font-size: 14px;
  font-weight: 600;
  padding-left: 20px;
}

/* タイトル */
.test__title {
  display: flex;
  align-items: center;
  padding: 0px 34px;
  margin-top: 10px;
  gap: 14px;
}

.test__title h2 {
  min-width: 192px;
  font-size: 39px;
  font-weight: 600;
  position: relative;
  padding-left: 10px;
  padding-top: 10px;
}
.test__title h2::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 10px;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

/* 検定の問題 */
.test__card__question__number {
  font-size: 26px;
  font-family: "Outfit", sans-serif;
  color: #40b621;
}

.test__card__question__text {
  margin-top: 9px;
  line-height: 2;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: -0.39px;
}

.test__card__choices {
  margin-top: 14px;
}

.test__card__choice {
  display: block;
  display: flex;
  line-height: 16px;
  font-weight: 500;
  font-size: 13px;
  cursor: pointer;
}
.test__card__choice span {
  padding-left: 10px;
  line-height: 2;
}

.test__card__choice input[type="radio"] {
  margin-top: 5px;
}

@media screen and (min-width: 769px) {
  .team__logo {
    padding-left: 38px;
  }
  .test__card__question__number {
    font-size: 46px;
  }
  .test__card__question__text {
    font-size: 16px;
    margin-top: 17px;
  }
  .test__card__choices {
    margin-top: 40px;
  }
  .test__card__choice span {
    font-size: 16px;
  }
  .test__card__choice input[type="radio"] {
    margin-top: 9px;
  }
  .test__title__image {
    display: flex;
    align-items: end;
  }
  .question .test__title__image > .test__title__image__credit {
    font-size: 14px;
    padding-bottom: 16px;
  }
}

/* ========================
↓ページ別のCSS
======================== */

/* ========================
index.html(トップページ)
======================== */
.top {
  overflow: hidden;
}
.top__kv {
  padding: 6px 13px 0px;
}

.top__kv__image__credit {
  font-size: 8px;
  text-align: right;
}

.top__kv__content {
  margin-top: 12px;
  padding: 0 20px;
}

.top__kv__content__btn {
  margin-top: 32px;
}
.top__kv__content__btn > .btn > .btn__text {
  padding-left: 16px;
}
.top__kv__content__btn > .btn > .btn__text > .btn__text__mark {
  transform: rotate(20deg);
  padding: 0 4px;
}
.top__start {
  margin-top: 55px;
  padding: 0 33px;
}

.top__start__title {
  text-align: center;
  line-height: 1.7;
  font-size: 24px;
  font-weight: 600;

  position: relative;
}

.top__start__title::before {
  position: absolute;
  content: "";
  top: -30px;
  left: -13px;
  width: 46px;
  height: 41px;
  background-size: cover;
  background-image: url(../img/icon/icon-top-start-before.svg);
}
.top__start__title::after {
  position: absolute;
  content: "";
  bottom: -30px;
  right: -25px;
  width: 54px;
  height: 54px;
  background-size: cover;
  background-image: url(../img/icon/icon-top-start-after.svg);
}

.top__start__title h2 span {
  padding: 0 8px;
  display: inline;
  background: linear-gradient(transparent 84%, #82e863 0%);
}

.top__start__detail {
  margin-top: 36px;
  line-height: 2;
  font-size: 13px;
  letter-spacing: 0px;
}

.top__challenge {
  margin-top: 18px;
  text-align: center;
  padding-bottom: 50px;
}

.top__challenge h2 {
  font-size: 47px;
  color: #40b621;
  line-height: 60px;
  letter-spacing: -0.96px;
}
.top__challenge__sub {
  font-size: 13px;
  color: #40b621;
}
.top__challenge img {
  width: 78px;
  height: 76px;
}

.think__the__ball {
  background-color: #40b621;
  padding: 70px 32px 170px;
}
.think__the__ball img {
  width: 100%;
  max-width: 294px;
  margin: 0 auto;
  height: auto;
}
.think__the__ball h2 {
  text-align: center;
  padding: 0 6px;
}
.think__the__ball__detail {
  margin-top: 40px;
  font-size: 13px;
  line-height: 2;
  color: #fff;
}

.fowald__wrap {
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  height: 200px;
  margin-left: -100px;
  margin-right: -100px;
  padding-left: 100px;
  padding-right: 100px;

  background-color: #fffce1;
  margin-top: -80px;
}

.fowald__section {
  margin-top: -112px;
  text-align: center;
}
.fowald__section h2 img {
  max-width: 265px;
  margin: 0 auto;
}

.fowald__section__grid__image {
  max-width: 308px;
  margin: 20px auto 0;
}

.fowald__section__grid__content {
  line-height: 2;
  font-size: 13px;
  text-align: left;
  padding: 0 32px;
  margin-top: 13px;
}

.top .fowald {
  margin-top: 54px;
  padding: 0 47px 52px 40px;
}

.top .fowald__modal__app__title {
  font-size: 17px;
}

.fowald__modal__app__title__mark {
  display: inline-block;
  transform: rotate(20deg);
}

.top .app__download__note {
  letter-spacing: -0.27px;
  line-height: 1.3;
  font-size: 8px;
  text-align: left;
}

/* PC版 */
@media screen and (min-width: 769px) {
  .top__kv {
    padding: 36px 3.8% 0px;
    display: flex;
    align-items: center;
    gap: 60px;
    justify-content: center;
  }
  .top__kv__content {
    display: flex;
    flex-direction: column;
    margin-top: 79px;
    gap: 58px;

    max-width: 552px;
    width: 100%;
    min-width: 400px;
  }

  .top__kv__content > .top__kv__image__title {
    max-width: 552px;
    width: 100%;
    height: auto;
  }
  .top__kv__image__credit {
    text-align: left;
    font-size: 14px;
  }
  .top__kv__image {
    max-width: 650px;
    height: auto;
    width: 100%;
  }
  .top__kv__image img {
    max-width: 650px;
    height: auto;
    width: 100%;
  }
  .top__start {
    margin-top: 107px;
  }
  .top__start__title {
    max-width: 612px;
    margin: 0 auto;
  }
  .top__start__title::before {
    top: -35px;
    left: -104px;
    width: 70px;
    height: 62px;
  }
  .top__start__title::after {
    bottom: -64px;
    right: -121px;
    width: 82px;
    height: 81px;
  }

  .top__start__title br {
    display: none;
  }
  .top__start__title h2 span {
    padding: 0;
    font-size: 34px;
  }
  .top__start__detail {
    max-width: 1000px;
    text-align: center;
    margin: 58px auto 0px;
    line-height: 2.1;
    font-size: 16px;
    text-size-adjust: none;
  }
  .top__challenge h2 {
    font-size: 66px;
  }
  .top__challenge {
    margin-top: 17px;
  }
  .top__challenge img {
    width: 116px;
    height: 137px;
  }
  .think__the__ball {
    margin-top: 68px;
    display: flex;
    align-items: center;
    gap: 68px;
    justify-content: center;
  }
  .think__the__ball img {
    width: 431px;
    height: 175px;

    width: 100%;
    max-width: 431px;
    height: auto;
  }
  .think__the__ball__detail {
    max-width: 420px;
    font-size: 16px;
    margin-top: 8px;
    line-height: 2.1;
    font-weight: 500;
  }
  .fowald__wrap {
    margin-top: -93px;
    border-top-left-radius: 100%;
    border-top-right-radius: 100%;
  }
  .fowald__section {
    margin-top: -129px;
  }
  .fowald__section__grid {
    display: grid;

    max-width: 1097px;
    margin: 0 auto;
    align-items: center;
    grid-template-areas:
      "logo image"
      "content image";
  }
  .fowald__section__grid__logo {
    grid-area: logo;
    text-align: left;
    max-width: 344px;
    height: 80px;
    justify-self: center;
    align-self: end;
    padding-left: 52px;
    padding-top: 28px;
    width: 104%;
  }
  .fowald__section__grid__logo img {
    max-width: 302px;
  }
  .fowald__section h2 img {
    max-width: 302px;
  }

  .fowald__section__grid__logo img {
    max-width: 301px;
    width: 100%;
    height: 79px;
  }

  .fowald__section__grid__content {
    padding: 0;
    justify-self: end;
    align-self: flex-start;
    margin-top: 80px;
    padding-left: 24px;
    max-width: 372px;
    grid-area: content;
    font-size: 16px;
    line-height: 2.2;
    text-align: left;
  }
  .fowald__section__grid__image {
    display: flex;
    align-items: center;
    grid-area: image;
    max-width: 613px;
    height: 479px;
  }
  .fowald__section__grid__image img {
    width: 100%;
    max-width: 613px;
    height: auto;
  }
}

/* ========================
finished_week/index.html(検定終了後のトップページ)
======================== */
.top__finished__message {
  padding: 31px 27px;
  font-size: 16px;
  line-height: 2;
  color: #fff;
  background-color: #40b621;
  margin-top: 32px;
  text-align: center;
}

.top__finished > .result__retry {
  padding-bottom: 70px;
}
.top__finished > .result__retry > .result__retry__title {
  font-size: 24px;
  max-width: 168px;
}
.top__finished > .ranking {
  margin-top: 50px;
}
.ranking__title__sub__result {
  font-size: 11px;
  margin-top: 25px;
}

/* PC版 */
@media screen and (min-width: 769px) {
  .top__finished .top__kv__content {
    margin-top: 26px;
  }
  .top__finished .top__finished__message {
    margin-top: 60px;
    font-size: 22px;
    padding: 48px 27px;
  }
  .top__finished .top__finished__message br {
    display: none;
  }
  .top__finished .top__finished__message .br-pc {
    display: block;
  }
  .top__finished .top__start {
    margin-top: 75px;
  }
  .top__finished > .ranking {
    margin-top: 112px;
  }
  .top__finished .ranking__title__sub__result {
    font-size: 13px;
    margin-top: 43px;
  }
  .top__finished .ranking__wrap {
    margin-top: 86px;
  }
  .top__finished .ranking__unit {
    padding-right: 21%;
    font-size: 16px;
    padding-bottom: 16px;
  }
  .top__finished > .result__retry > .result__retry__title {
    font-size: 34px;
    max-width: 254px;
  }
  .top__finished .result__retry {
    margin-top: 70px;
  }
  .top__finished .result__retry__wrap {
    display: flex;
    max-width: 920px;
    margin: 90px auto 0px;
    column-gap: 40px;
    row-gap: 20px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  .top__finished .result__retry .btn {
    margin: 0;
  }
  .top__finished .think__the__ball {
    margin-top: 47px;
  }
  .top .app__download__note {
    text-align: center;
  }
}

/* ========================
club_selection(クラブ選定)
======================== */

.club {
  padding: 0px 32px;
}

.club__title {
  margin-top: 42px;
  text-align: center;
}

.club__title h2 {
  font-size: 24px;
  font-weight: 700;
  position: relative;
  max-width: 272px;
  margin: 0 auto;
  padding: 0 4px;
}

.club__title h2::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 5px;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

.club__title p {
  margin-top: 24px;
  font-size: 11px;
}

.club__boxes {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;

  max-width: 310px;
  margin: 36px auto 0px;
}

.club__box {
  text-align: center;
  cursor: pointer;
}

/* 選択中のクラブ */
.club__box__logo:has(input:checked) {
  border: #40b621 3px solid;
}

.club__box input[type="radio"] {
  display: none;
}

.club__box__logo {
  width: 90px;
  height: 90px;
  border-radius: 99%;
  background-color: #fcfbeb;
  border: #c6c6c6 0.3px solid;

  display: flex;
  align-items: center;
  justify-content: center;
}

.club__box__logo img {
  max-width: 70px;
  max-height: 60px;
}

.club__box__name {
  color: #363636;
  max-width: 90px;
  font-size: 10px;
  margin-top: 7px;
  font-weight: 800;
  line-height: 1.4;
}

.start__test-btn {
  margin-top: 67px;
}

.start__test-btn > .start__test-btn__wrap > .btn:not(:nth-child(1)) {
  margin-top: 20px;
}

.start__test-btn__note {
  font-size: 11px;
  text-align: center;
  margin-top: 30px;
  line-height: 1.6;
}

.club__selection > .ranking {
  margin-top: 60px;
  padding-bottom: 66px;
}

.ranking {
  margin-top: 60px;
  padding-bottom: 60px;
}

@media screen and (min-width: 769px) {
  .club__title {
    margin-top: 88px;
  }
  .club__title h2 {
    font-size: 34px;
    max-width: 400px;
  }
  .club__title h2::after {
    height: 9px;
  }
  .club__title p {
    font-size: 16px;
    margin-top: 48px;
  }
  .club__boxes {
    max-width: 920px;
    margin: 87px auto 0px;
  }
  .club__box__logo {
    width: 150px;
    height: 150px;
  }
  .club__box__logo img {
    max-width: 95px;
    max-height: 95px;
  }
  .club__boxes {
    gap: 42px;
  }
  .club__box__name {
    font-size: 16px;
    max-width: 150px;
    margin-top: 11px;
  }
  .start__test-btn {
    margin-top: 103px;
  }
  .start__test-btn__wrap {
    display: flex;
    max-width: 1000px;
    gap: 40px;
    margin: 100px auto 0px;
    justify-content: center;
    flex-wrap: wrap;
  }

  .start__test-btn__note {
    margin-top: 40px;
    font-size: 16px;
  }
  .start__test-btn__note br {
    display: none;
  }
  .start__test-btn > .start__test-btn__wrap > .btn:not(:nth-child(1)) {
    margin-top: 0px;
  }
  .start__test-btn > .start__test-btn__wrap > .btn {
    margin: 0px;
  }

  .club__selection > .ranking {
    margin-top: 120px;
    padding-bottom: 120px;
  }
}

/* ========================
question.html（検定D〜S共通）
======================== */
.question .test__title {
  padding: 0 27px;
  gap: 16px;
}

.question .test__title__wrap {
  position: relative;
  height: 56px;
  font-weight: 600;
  min-width: 192px;
}
.question .test__title__wrap::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 10px;
  bottom: -10px;
  left: 7px;
  z-index: -1;
}

.question .test__title__level {
  font-size: 63px;
  height: 56px;
  display: inline;

  position: absolute;
  top: 5px;
  left: 18px;
  width: 50px;
}

.test__title__text {
  display: block;
  font-size: 39px;
  height: 56px;

  position: absolute;
  top: 20px;
  right: 6px;
}

.question .test__title__image {
  text-align: center;
  max-width: 120px;
  height: auto;
  width: 100%;
}
.question .test__title__image img {
  max-width: 120px;
  height: auto;
  width: 100%;
}

.question .test__title__image__credit {
  font-size: 8px;
}
.question .test {
  padding-bottom: 60px;
}

.question .test__cards {
  margin-top: 23px;
  padding: 0 32px;
}

.question .test__card {
  border-radius: 10px;
  border: #c6c6c6 0.3px solid;
  padding: 22px 19px 26px;
  background-color: #fcfbeb;
}
.question .test__card:not(:first-child) {
  margin-top: 20px;
}

.question .test__toResult {
  margin-top: 40px;
}

@media screen and (min-width: 769px) {
  .team {
    justify-content: center;
    height: 77px;
  }
  .team__myClub br {
    display: none;
  }
  .team__name {
    font-size: 19px;
  }
  .team__myClub {
    font-size: 17px;
    padding-right: 10px;
  }
  .question .test {
    max-width: 974px;
    margin: 0 auto;
    padding-bottom: 120px;
  }
  .question .test__title {
    justify-content: flex-start;
    gap: 87px;
    padding-left: 190px;
  }
  .question .test__card {
    padding: 59px 54px 43px 54px;
  }
  .question .test__card:not(:first-child) {
    margin-top: 40px;
  }
  .question .test__toResult {
    margin-top: 80px;
  }
  .question .test__title__level {
    font-size: 87px;
    top: -11px;
    left: 10px;
  }
  .question .test__card__choice br {
    display: none;
  }
  .question .test__title__text {
    top: 12px;
  }
  .question .test__title__wrap::after {
    bottom: -13px;
  }
  .question .test__title__text {
    font-size: 53px;
    right: -3px;
  }
  .question .test__title__wrap {
    min-width: 243px;
  }
  .question .test__title__image {
    max-width: 165px;
    height: auto;
    width: 100%;
  }
  .question .test__title__image img {
    width: auto;
    height: 205px;

    max-width: 165px;
    height: auto;
    width: 100%;
  }
  .question .test__title {
    margin-top: 0;
  }
  .question .test__title__image {
    margin-top: 10px;
  }
}

/* ========================
answer.html(検定_答え)
======================== */
.answer.show {
  display: block;
  position: relative;
}
/* モーダル表示時の背景 */
.answer.show::after {
  content: "";
  display: block;
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
}

.answer {
  display: none;
}

.answer .test__card__question__text {
  letter-spacing: -0.6px;
}

.answer .btn {
  height: 40px;
}

.answer__modal {
  display: block;
  background: #fffce1;
  border-radius: 10px;
  z-index: 61;
  position: relative;
  top: 20px;
  margin: 0 32px 50px;

  padding: 50px 20px 30px;
}

.answer__modal__close {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
}

.answer__modal__title {
  width: 170px;
  text-align: center;
  margin: 0 auto;
}

.answer__title {
  width: 170px;
  margin: 0 auto;
}

.answer h2 {
  font-size: 22px;
  font-weight: 500;
  position: relative;
  padding-left: 6px;
}
.answer h2::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 5px;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

.answer__title__level {
  font-size: 32px;
  font-weight: 500;
}

.answer .test__card__choice {
  cursor: default;
}

.answer .test__card__question {
  padding-top: 36px;
}

.answer .test__card__question__block {
  display: flex;
  align-items: center;
}
.answer .test__card:not(:first-child) .test__card__question {
  padding-top: 42px;
}

.answer .test__card__question__judge {
  margin-left: 14px;
  color: #fff;
  width: 60px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 4px;
  background-color: #40b621;
}

.answer .mistake > fieldset > legend > .test__card__question__block > .test__card__question__judge {
  background-color: #e80000;
  letter-spacing: normal;
  margin-left: 12px;
}

.answer .test__answer {
  margin-top: 30px;
  padding-bottom: 36px;
  border-bottom: #40b621 0.5px dashed;
}

.answer .test__card:last-child > .test__answer {
  margin-top: 30px;
  padding-bottom: 60px;
  border-bottom: none;
}

.answer .test__answer__icon {
  font-size: 26px;
  font-weight: 500;
  color: #40b621;
  letter-spacing: -0.52px;
}

.answer .test__answer__choice {
  margin-top: 7px;
  color: #40b621;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.answer .test__answer__detail {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: -0.6px;
  line-height: 2;
  font-weight: 500;
}
.answer .test__answer__detail__accent {
  color: #40b621;
  border-bottom: #40b621 1px solid;
}
.answer .btn__text {
  padding-left: 0;
}

@media screen and (min-width: 769px) {
  .answer.show {
    padding-bottom: 80px;
  }
  .answer .test__card {
    margin-top: 25px;
  }
  .answer__modal {
    max-width: 920px;
    margin: 7px auto 0px;
    padding: 85px 67px 80px 59px;
  }
  .answer__title__level {
    font-size: 78px;
  }
  .answer__title {
    width: 372px;
  }
  .answer h2 {
    font-size: 48px;
    padding-left: 10px;
  }
  .answer h2::after {
    height: 9px;
  }
  .answer__modal__close {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
  }
  .answer__modal__close img {
    width: 30px;
    height: 30px;
  }
  .answer .test__card__question {
    padding-top: 60px;
  }
  .answer .test__cards > .test__card:not(:first-child) .test__card__question {
    padding-top: 40px;
  }
  .answer .test__card__question__judge {
    width: 100px;
    height: 30px;
    font-size: 18px;
    margin-left: 28px;
  }
  .answer .mistake > fieldset > legend > .test__card__question__block > .test__card__question__judge {
    margin-left: 25px;
  }
  .answer .test__answer {
    margin-top: 41px;
    padding-bottom: 60px;
  }

  .answer .test__answer__icon {
    font-size: 46px;
  }
  .answer .test__answer__choice {
    font-size: 18px;
  }
  .answer .test__answer__detail {
    font-size: 16px;
    margin-top: 10px;
  }
  .answer .test__answer__choice {
    margin-top: 20px;
    margin-right: 14px;
  }
  .answer .test__card__choice br {
    display: none;
  }
  .answer .test__answer__choice br {
    display: none;
  }
  .answer .btn {
    height: 80px;
  }
  .answer .test__card:last-child > .test__answer {
    padding-bottom: 120px;
  }
}

/* ========================
result.html(結果)
======================== */
.result .test__title {
  display: block;
  padding: 0;
  padding-left: 0px;
}

.result .test__title h2 {
  max-width: 250px;
  width: 100%;
  margin: 0 auto;
  font-size: 47px;

  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 98px;
}
.result .test__title__level {
  font-size: 75px;
  vertical-align: baseline;
}

.result .test__title__content {
  padding-top: 5px;
}
.result .test__title__mark {
  font-size: 58px;
  padding-left: 5px;
  padding-top: 5px;
  transform: rotate(20deg);
}

.result .test__title h2::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 10px;
  bottom: 9px;
  left: 0;
  z-index: -1;
}

.result__video {
  display: flex;
  margin: 0 auto;
  overflow: hidden;
  justify-content: center;
  align-items: center;
  max-width: 375px;
  width: 100%;
  height: 303px;
  position: relative;
}

.result__video video {
  position: absolute;
  top: 4px;
  left: -12px;
  max-width: 375px;
  width: 100%;
  height: 303px;
  transform-origin: 50% 50%;
  transform: scale(1.48);
  border: none;
  filter: drop-shadow(0px 0px #000);
}
.result__video__credit {
  padding: 0px 32px;
  font-size: 8px;
  text-align: end;
}
.result__reward .btn:not(:first-child) {
  margin-top: 20px;
}
.result__reward {
  margin-top: 25px;
}
.result__retry {
  margin-top: 38px;
}

.result__retry > .btn:first-of-type {
  margin-top: 35px;
}
.result__retry .btn {
  margin-top: 20px;
}
.result__retry__title {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  position: relative;
  max-width: 144px;
  margin: 0 auto;
}
.result__retry__title::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 5px;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

.result__retry__note {
  margin-top: 30px;
  text-align: center;
  font-size: 11px;
  /* padding-bottom: 60px; */
  line-height: 1.6;
}

.result__retry__level {
  font-family: "Outfit", sans-serif;
  font-size: 22px;
  padding-right: 3px;
  font-weight: 600;
}
.result__retry__btns {
  margin-top: 33px;
}

/*PC版 result.html(結果) */
@media screen and (min-width: 769px) {
  .result .test__title__level {
    font-size: 87px;
    padding-left: 2px;
  }
  .result .test__title {
    justify-content: center;
  }
  .result .test__title h2 {
    margin: 0;
    font-size: 53px;
    max-width: 279px;
    padding-top: 0;
    padding-left: 15px;
  }
  .result .test__title h2::after {
    bottom: 11px;
    left: 11px;
  }
  .result .test__title__mark {
    font-size: 60px;
  }
  .result .test__title__content {
    padding-left: 11px;
  }
  .result__video {
    margin: 0;
    margin-top: 11px;
    max-width: 585px;
    height: 473px;
  }
  .result__video video {
    max-width: 585px;
    height: 473px;
  }
  .result .test__title {
    display: flex;
  }
  .result__video__credit {
    padding: 0 23%;
    font-size: 14px;
  }
  .result__reward {
    display: flex;
    max-width: 960px;
    margin: 34px auto 0px;
  }
  .result__reward .btn:not(:first-child) {
    margin-top: 0;
  }
  .result .result__retry {
    margin-top: 87px;
  }
  .result__retry__title {
    font-size: 26px;
    max-width: 250px;
  }
  .result__retry__btns {
    display: flex;
    flex-wrap: wrap;
    max-width: 920px;
    margin: 47px auto 0px;
    column-gap: 40px;
    justify-content: center;
  }

  .result__retry .btn {
    margin: 20px 0px 0px;
  }
  .result__retry__level {
    font-size: 27px;
  }
  .result .btn__text {
    padding-left: 22px;
  }
  .result__retry__note br {
    display: none;
  }
  .result__retry__note {
    font-size: 16px;
  }
  .result .ranking {
    margin-top: 121px;
    padding-bottom: 120px;
  }
}

/* ========================
不合格
======================== */

.result.failure .test__title h2 {
  font-size: 47px;
  max-width: 350px;
  padding-left: 23px;
  letter-spacing: -0.4px;
}

.result.failure .test__title h2::after {
  bottom: 16px;
  max-width: 312px;
  left: 13px;
}

.result__reward__thanks {
  text-align: center;
  margin-top: 40px;
  font-weight: 500;
  line-height: 2;
  font-size: 13px;
}

.result__reward__thanks .br-pc {
  display: block;
}
.failure .result__reward {
  margin-top: 40px;
}
.failure .result__retry {
  margin-top: 48px;
}

/* PC版 */
@media screen and (min-width: 769px) {
  .failure .result__reward {
    display: block;
    margin: 112px auto 0px;
  }
  .failure .result__retry__btns {
    display: flex;
    flex-wrap: wrap;
    max-width: 920px;
    margin: 47px auto 0px;
    column-gap: 40px;
    justify-content: center;
  }
  .result.failure .test__title h2 {
    font-size: 60px;
    max-width: 442px;
  }
  .result.failure .test__title h2::after {
    max-width: 390px;
    bottom: 14px;
  }
  .result.failure .test__title {
    margin-top: 112px;
  }
  .result__reward__thanks {
    font-size: 16px;
    margin-top: 57px;
  }
  .result__reward__thanks br {
    display: none;
  }
  .result__reward__thanks .br-pc {
    display: block;
  }
}

/* ========================
reward.html(リワード）
======================== */
.reward.show {
  display: block;
  position: relative;
}
/* モーダル表示時の背景 */
.reward.show::after {
  content: "";
  display: block;
  position: fixed;
  z-index: 60;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.4;
}

.reward {
  display: none;
}

.reward .btn {
  height: 40px;
}

.reward__modal {
  display: block;
  background: #fffce1;
  border-radius: 10px;
  z-index: 61;
  position: relative;
  top: 20px;
  margin: 0 32px 50px;

  padding: 26.8px 15px 24px;
}

.reward__modal__close {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
}

.reward__modal__code {
  margin-top: 35px;
  text-align: center;
}

.reward__modal__code__text {
  letter-spacing: 0.5px;
  line-height: 1.5;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  font-weight: 700;
  padding: 11px 16px 9px;
  border: #40b621 1px solid;
  background-color: #fff;
}

.reward .title__template img {
  margin-bottom: -10px;
  width: 55px;
  height: 55px;
}
.reward__modal__code__note {
  font-size: 11px;
  margin-top: 10px;
  line-height: 1.6;
}
.reward__modal__code__note.bold {
  font-weight: 600;
  margin-top: 21px;
}

.reward__modal__instruction {
  margin-top: 25px;
  text-align: center;
}

.reward .fowald {
  margin-top: 38px;
}

.fowald__modal__app__mock img {
  width: 100%;
  max-width: 161px;
  height: auto;
}
.fowald__modal__app__logo img {
  width: 92px;
  height: 92px;
}

.fowald__modal__app__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
}

.app__download__link {
  max-width: 190px;
}

.fowald .app__download__qr {
  max-width: 123px;
  min-width: 104px;
  min-height: 105px;
}

.fowald__modal__app__image {
  margin-top: 27px;
  display: flex;
  align-items: center;
  gap: 27px;

  justify-content: center;
}

.fowald__fee {
  margin-top: 22px;
  text-align: center;
  font-size: 14px;
  line-height: 1.4;
}

.fowald__fee__note {
  margin-top: 2px;
  font-size: 9px;
  text-align: center;
}

.app__download {
  margin-top: 28px;
  display: flex;
  gap: 13px;

  justify-content: center;
}
.top .app__download {
  align-items: center;
}

.app__download__ios,
.fowald__modal__android {
  display: inline-block;
}

.fowald__modal__android {
  margin-top: 10px;
}

.top .app__download__qr {
  min-width: 105px;
  max-width: 110px;
  max-height: 111px;
  min-height: 106px;
  width: 100%;
}
.top .app__download__qr img {
  max-height: 111px;
  min-width: 105px;
  max-width: 110px;
  min-height: 106px;
}

.app__download__note {
  margin-top: 20px;
  font-size: 9px;
  line-height: 1.3;
}

.fowald__btn {
  margin-top: 30px;
  cursor: pointer;
}
.fowald__btn.btn:hover > .btn__text > .btn__text__arrow__wrap > .btn__text__arrow {
  animation: none;
}

.reward__last__week > .reward__modal > .fowald__btn > .btn__text {
  padding-left: 0;
}

@media screen and (min-width: 769px) {
  .reward.show {
    padding-bottom: 60px;
  }
  .reward__modal {
    max-width: 920px;
    margin: 7px auto 0px;
    padding: 50px 0px 60px;
  }

  .reward__modal__code__text {
    max-width: 680px;
    margin: 0 auto;
  }

  .reward__modal__close {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
  }
  .reward .title__template img {
    width: 70px;
    height: 70px;
  }
  .reward .title__sub__template {
    margin-top: 19px;
  }
  .reward__modal__instruction {
    margin-top: 38px;
    text-align: center;
  }
  .reward__modal__instruction img {
    width: 400px;
    height: auto;
  }
  .reward__modal__close img {
    width: 30px;
    height: 30px;
  }
  .reward .btn {
    height: 80px;
  }
  .reward .btn__text__arrow {
    padding-top: 4px;
    padding-left: 6px;
  }
  .reward .btn:hover > .btn__text > .btn__text__arrow__wrap > .btn__text__arrow {
    animation: none;
  }
  .reward .btn__text__arrow img {
    height: 16px;
  }
  .reward .fowald__btn {
    margin-top: 38px;
  }
  .reward.reward__last__week .fowald__btn {
    margin-top: 56px;
  }
  .fowald__btn {
    margin-top: 40px;
  }

  .reward__modal__code {
    margin-top: 42px;
  }
  .reward__modal__code__text {
    font-size: 22px;
    letter-spacing: 0px;
  }
  .reward__modal__code__note.bold {
    margin-top: 25px;
  }
  .reward__modal__code__note br {
    display: none;
  }
  .reward__modal__code__note {
    font-size: 16px;
  }
  .reward .title__template h2 {
    font-size: 62px;
  }
  .reward .title__sub__template {
    font-size: 16px;
  }

  .reward .fowald {
    max-width: 500px;
    margin: 64px auto 0px;
  }
  .reward .fowald__modal__app__title {
    font-size: 23px;
  }
  .reward .fowald__modal__app__mock img {
    width: 304px;
    height: 298px;
  }
  .reward .fowald__modal__app__image {
    margin-top: 42px;
    gap: 64px;
  }
  .reward .fowald__modal__app__logo img {
    width: 131px;
    height: 131px;
  }
  .reward .fowald__fee {
    font-size: 16px;
    margin-top: 48px;
  }
  .reward .fowald__fee__note {
    font-size: 11px;
    margin-top: 5px;
  }

  .fowald .app__download__link {
    max-width: 192px;
    min-width: 170px;
  }
  .fowald .app__download__link img {
    max-width: 192px;
    min-width: 170px;
  }
  .app__download__qr {
    max-width: 123px;
    max-height: 123px;
  }
  .reward .app__download {
    justify-content: center;
  }
  .reward .app__download__note {
    text-align: center;
    margin-top: 27px;
  }
  .reward .app__download__note .br-sp {
    display: none;
  }

  /* トップページ */
  .top .fowald {
    max-width: 922px;
    margin: 50px auto 120px;
    padding: 0;
    display: grid;
    align-items: center;
    grid-template-rows: 50px 258px 96px 50px;
    /* grid-template-columns: 531px 1fr; */
    column-gap: 61px;
    grid-template-areas:
      "title title"
      "image download"
      "image fee"
      "note note";
  }
  .top .app__download__link {
    max-width: 190px;
    min-width: 170px;
  }
  .top .app__download__link img {
    max-width: 190px;
    min-width: 170px;
  }
  .top .app__download__qr {
    max-height: 124px;
    min-width: 124px;
  }
  .top .app__download__qr img {
    min-width: 124px;
    max-height: 124px;
  }
  .top .fowald__modal__app__title {
    grid-area: title;
    font-size: 23px;
    padding-left: 40px;
  }
  .top .fowald__modal__app__title__mark {
    font-size: 23px;
  }
  .top .fowald__modal__app__image {
    grid-area: image;
    margin-top: 50px;
    gap: 54px;
  }

  .top .fowald__fee {
    font-size: 16px;
  }

  .top .fowald__fee__note {
    font-size: 11px;
    margin-top: 5px;
  }
  .top .app__download__link {
    max-width: 192px;
    min-width: 170px;
  }
  .top .app__download__link img {
    max-width: 192px;
    min-width: 170px;
  }

  .top .fowald__fee__wrap {
    grid-area: fee;
    align-self: start;
    justify-self: end;
  }
  .top .app__download {
    grid-area: download;
    align-self: end;
  }
  .top .app__download__note {
    grid-area: note;
    /* text-align: left; */
    text-align: center;
    font-size: 9px;
    margin-top: 30px;
  }
  .top .app__download__note br {
    display: none;
  }

  .top .fowald__modal__app__mock img {
    width: 100%;
    max-width: 335px;
    height: auto;
  }
  .top .fowald__modal__app__logo img {
    width: 100%;
    max-width: 145px;
    height: auto;
  }

  /* 最終週（５周目） */
  .reward__last__week .reward__modal__instruction {
    margin-top: 47px;
    text-align: center;
  }
  .reward__last__week .reward__modal__instruction img {
    width: 500px;
    height: auto;
  }
  .reward__last__week.reward .title__template h2 {
    margin-top: 10px;
  }
  .reward__last__week .reward__modal {
    padding: 50px 0px 72px;
  }
}

/* ========================
terms(利用規約)
======================== */
.terms.show {
  visibility: visible;
  color: #ffffff;
  font-weight: 400;
  background: rgba(0,0,0,40%);
  opacity: 1;
}

.terms {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  overflow: auto;
  z-index: 81;
  visibility: hidden;
  opacity: 0;
  transition: .3s;
}

.terms .btn {
  height: 40px;
}

.terms__modal {
  display: block;
  background: #40b621;
  border-radius: 10px;
  position: relative;
  top: 20px;
  margin: 0 32px 50px;

  padding: 50px 20px 46px;
}

.terms__modal__close {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
}

.terms__title {
  text-align: center;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: -0.45px;
}

.terms__content {
  letter-spacing: -0.39px;
  margin-top: 30px;
  font-weight: 400;
  line-height: 2;
  font-size: 13px;
}
.terms__content p:not(:last-child) {
  margin-bottom: 12px;
}
.terms__section__title {
  font-weight: 700;
}

@media screen and (min-width: 769px) {
  .terms__modal {
    max-width: 920px;
    margin: 40px auto;
    padding: 79px 60px 60px;
  }

  .terms__modal__code__text {
    max-width: 680px;
    margin: 0 auto;
  }
  .terms__title {
    font-size: 26px;
  }
  .terms__content {
    margin-top: 48px;
    font-size: 16px;
    line-height: 2.2;
  }

  .terms__modal__close {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
  }
  .terms__modal__close img {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
  }
}

/* ========================
  検定結果画面：リワードをもらうモーダル
======================== */
.reward_dialog_contentes {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,40%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 80;
}
.reward_dialog_contentes.is-active{
  opacity: 1;
  visibility: visible;
}
.reward_dialog_contentes:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: -0.2em;
}

.reward_dialog_contentes .btn {
  height: 40px;
}

@media screen and (min-width: 769px) {
  .reward_dialog_contentes .btn {
    height: 80px;
  }

  .reward_dialog_contentes .title__template img {
    width: 70px;
    height: 70px;
  }
  .reward_dialog_contentes .title__template h2 {
    font-size: 62px;
  }
  .reward_dialog_contentes .title__sub__template {
    margin-top: 19px;
    font-size: 16px;
  }
}

/* ========================
  検定結果画面：答えを見るモーダル
======================== */
.answer_dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,40%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 80;
}
.answer_dialog.is-active {
  opacity: 1;
  visibility: visible;
}
.answer_dialog:before {
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: -0.2em;
}
/* 各スタイル */
.answer_dialog {
  width: 100%;
  height: 100%;
}

.answer_dialog .test__card__question__text {
  letter-spacing: -0.6px;
}

.answer_dialog .btn {
  height: 40px;
}

.answer__modal__close {
  position: absolute;
  top: 12px;
  right: 15px;
  cursor: pointer;
}

.answer__modal__title {
  width: 170px;
  text-align: center;
  margin: 0 auto;
}

.answer__title {
  width: 170px;
  margin: 0 auto;
}

.answer_dialog h2 {
  font-size: 22px;
  font-weight: 500;
  position: relative;
  padding-left: 6px;
}

.answer_dialog h2::after {
  position: absolute;
  content: "";
  background-color: #82e863;
  width: 100%;
  height: 5px;
  bottom: -2px;
  left: 0;
  z-index: -1;
}

.answer__title__level {
  font-size: 32px;
  font-weight: 500;
}

.answer_dialog .test__card__choice {
  cursor: default;
}

.answer_dialog .test__card__question {
  padding-top: 36px;
}

.answer_dialog .test__card__question__block {
  display: flex;
  align-items: center;
}
.answer_dialog .test__card:not(:first-child) .test__card__question {
  padding-top: 42px;
}

.answer_dialog .test__card__question__judge {
  margin-left: 14px;
  color: #fff;
  width: 60px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  letter-spacing: 4px;
  background-color: #40b621;
}

.answer_dialog .mistake > fieldset > legend > .test__card__question__block > .test__card__question__judge {
  background-color: #e80000;
  letter-spacing: normal;
  margin-left: 12px;
}

.answer_dialog .test__answer {
  margin-top: 30px;
  padding-bottom: 36px;
  border-bottom: #40b621 0.5px dashed;
}

.answer_dialog .test__card:last-child > .test__answer {
  margin-top: 30px;
  padding-bottom: 60px;
  border-bottom: none;
}

.answer_dialog .test__answer__icon {
  font-size: 26px;
  font-weight: 500;
  color: #40b621;
  letter-spacing: -0.52px;
}

.answer_dialog .test__answer__choice {
  margin-top: 7px;
  color: #40b621;
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}

.answer_dialog .test__answer__detail {
  margin-top: 14px;
  font-size: 13px;
  letter-spacing: -0.6px;
  line-height: 2;
  font-weight: 500;
}
.answer_dialog .test__answer__detail__accent {
  color: #40b621;
  border-bottom: #40b621 1px solid;
}
.answer_dialog .btn__text {
  padding-left: 0;
}

@media screen and (min-width: 769px) {
  .answer_dialog .test__card {
    margin-top: 25px;
  }
  .answer__modal {
    max-width: 920px;
    margin: 7px auto 0px;
    padding: 85px 67px 80px 59px;
  }
  .answer__title__level {
    font-size: 78px;
  }
  .answer__title {
    width: 372px;
  }
  .answer_dialog h2 {
    font-size: 48px;
    padding-left: 10px;
  }
  .answer_dialog h2::after {
    height: 9px;
  }
  .answer__modal__close {
    width: 30px;
    height: 30px;
    top: 30px;
    right: 30px;
  }
  .answer__modal__close img {
    width: 30px;
    height: 30px;
  }
  .answer_dialog .test__card__question {
    padding-top: 60px;
  }
  .answer_dialog .test__cards > .test__card:not(:first-child) .test__card__question {
    padding-top: 40px;
  }
  .answer_dialog .test__card__question__judge {
    width: 100px;
    height: 30px;
    font-size: 18px;
    margin-left: 28px;
  }
  .answer_dialog .mistake > fieldset > legend > .test__card__question__block > .test__card__question__judge {
    margin-left: 25px;
  }
  .answer_dialog .test__answer {
    margin-top: 41px;
    padding-bottom: 60px;
  }

  .answer_dialog .test__answer__icon {
    font-size: 46px;
  }
  .answer_dialog .test__answer__choice {
    font-size: 18px;
  }
  .answer_dialog .test__answer__detail {
    font-size: 16px;
    margin-top: 10px;
  }
  .answer_dialog .test__answer__choice {
    margin-top: 20px;
    margin-right: 14px;
  }
  .answer_dialog .test__card__choice br {
    display: none;
  }
  .answer_dialog .test__answer__choice br {
    display: none;
  }
  .answer_dialog .btn {
    height: 80px;
  }
  .answer_dialog .test__card:last-child > .test__answer {
    padding-bottom: 120px;
  }
}

/* ========================
  検定結果画面：リワードをもらうモーダル（最終週）
======================== */
.reward_last_week_contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  background: rgba(0,0,0,40%);
  padding: 40px 20px;
  overflow: auto;
  opacity: 0;
  visibility: hidden;
  transition: .3s;
  box-sizing: border-box;
  z-index: 80;
}
.reward_last_week_contents.is-active{
  opacity: 1;
  visibility: visible;
}
.reward_last_week_contents:before{
  content: "";
  display: inline-block;
  vertical-align: middle;
  margin-left: -0.2em;
}
