@charset "UTF-8";
/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* 基本スタイル */
* {
  font-size: 62.5%;
  box-sizing: border-box;
  line-height: 1.5;
  color: #333;
}

body, html {
  margin: 0;
  height: 100%;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
ul,
li,
option,
span,
label,
input,
dt,
dd,
rb,
strong {
  font-size: 1em;
}

a {
  text-decoration: none;
  display: block;
}

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

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

figure {
  margin: 0;
}

table {
  width: 100%;
}

/* 基本カラー */
/* 基本クラス */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.contents {
  display: contents;
}

.text-center {
  text-align: center;
}

.break-all {
  word-break: break-all;
}

.pointer-events-none {
  pointer-events: none;
}

.wrap {
  width: min(95%, 1120px);
  margin: 0 auto;
}

.basic-footer {
  justify-content: space-between;
}
.basic-footer .btn-cancel {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
  position: relative;
  padding-left: 25px;
}
.basic-footer .btn-cancel::before {
  content: "";
  background: url("/images/ico_cancel.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 17px / 2);
  left: 0;
}
.basic-footer .btn-light-blue {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  width: 116px;
  padding: 8px 0;
  background-color: #fff;
}
.basic-footer .btn-light-blue-fill {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  width: 116px;
  padding: 8px 0;
}
.basic-footer .btn-red {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
  border: 1px solid #B90E15;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  width: 116px;
  padding: 8px 0;
}
.basic-footer div.flex {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm {
    flex-direction: column;
    align-items: baseline;
    row-gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm div.flex {
    width: 100%;
    justify-content: center;
  }
}

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

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

@media screen and (max-width: 600px) {
  .w-600-grid {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  .w-600-grid.confirm {
    display: grid;
  }
}

.break-all {
  word-break: break-all;
}

.w-full {
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-50 {
  padding-bottom: 50px;
}

.justify-end {
  justify-content: flex-end;
}

.text-16 {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}

.font-normal {
  font-weight: normal !important;
}

.font-bold {
  font-weight: bold;
}

/* エラーメッセージ */
.err-msg {
  margin: 3px 0 15px;
  text-align: left;
}
.err-msg li {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  color: #B90E15;
  margin-bottom: 5px;
}
.err-msg.sp li {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
.err-msg.file {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  color: #B90E15;
}

/* パンくず */
.bread {
  background-color: #EEEEEE;
  padding: 11px 0 11px 30px;
}
.bread__page {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #A9AFAF;
}
.bread__page.home {
  color: #009CE5;
}

/* 各ページ基本wrap */
.page-wrap {
  background-color: #E6F1FE;
  padding-top: 12px;
  padding-bottom: 30px;
}
.page-wrap.no-b-padding {
  padding-bottom: 0;
}

/* 各画面のメッセージ部分(pc用) */
.msg {
  max-width: 551px;
  margin: 0 auto;
  padding-top: 94px;
}
.msg.sm-padding {
  padding-top: 30px;
}
.msg__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.msg__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  line-height: 1.8;
}
.msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 233px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 170px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill.sm-margin {
  margin-top: 40px;
}

/* 各画面のメッセージ部分(sp用) */
.sp-msg {
  padding-top: 80px;
}
.sp-msg.no-padding {
  padding-top: 20px;
}
.sp-msg.has-padding-b {
  padding-bottom: 30px;
}
.sp-msg__heading {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.sp-msg__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  line-height: 1.8;
  margin-top: 30px;
}
.sp-msg__txt.caution {
  color: #B90E15;
}
.sp-msg__txt strong {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
}
.sp-msg__link {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sp-msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: 265px;
  padding: 6px 0;
  margin: 87px auto 0;
}

/* Dropifyカスタマイズ */
.dropify-wrapper {
  position: relative;
  border: none;
  background-color: #eee;
  aspect-ratio: 61/38;
}
.dropify-wrapper::before {
  content: "";
  background-image: linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px);
  background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.dropify-wrapper .dropify-message {
  position: initial;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropify-wrapper .dropify-message .file-icon {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.dropify-wrapper .dropify-message .file-icon::before {
  content: none !important;
}
.dropify-wrapper .dropify-message .file-icon p span {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

/* 特商法ページ */
.tokushoho {
  padding-top: 80px;
}
.tokushoho__heading {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-weight: bold;
}
.tokushoho__body {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.tokushoho__body dd {
  margin-bottom: 20px;
}
.tokushoho__body dd.small-mb {
  margin-bottom: 5px;
}
.tokushoho__link {
  color: #009CE5;
  text-decoration: underline;
  word-break: break-all;
  display: inline-block;
}

/* パスワード欄の目のアイコン */
.password-wrap {
  position: relative;
}
@media screen and (min-width: 769px) {
  .password-wrap.not-login {
    max-width: 352px;
    margin: 0 auto;
  }
}
.password-ico {
  width: 35px;
  height: 19px;
  position: absolute;
  right: 10px;
  top: calc(50% - 19px / 2);
}
@media screen and (min-width: 769px) {
  .password-ico {
    right: 110px;
  }
}
@media screen and (min-width: 769px) {
  .password-ico.not-login {
    right: 10px;
  }
}

/* フッターをページ下部に固定 */
#mainContainer {
  position: relative;
  min-height: 100%;
}

.admin-main {
  padding-bottom: 65px;
}

.user-main {
  padding-bottom: 31px;
}

/* csv生成中＆アップロード中画面 */
.upload-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
}
.upload-screen__contents {
  width: 50%;
}
.upload-screen__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.upload-screen__ico {
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.upload-screen__ico img {
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ページネーション */
.pagination {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: #fff;
  padding-bottom: 20px;
}
.pagination li:not(.prev, .next) {
  border: 1px solid #009CE5;
  padding: 0 7.5px;
  margin-top: 8px;
}
.pagination li:not(.prev, .next) a {
  color: #009CE5;
}
.pagination li.active {
  background-color: #eeeeee;
  border: 1px solid #A9AFAF;
}
.pagination li.active span {
  color: #A9AFAF;
}
.pagination li.prev, .pagination li.next {
  font-size: clamp(3rem, 2.96rem + 0.2vw, 3.2rem);
}
.pagination li.prev.disabled span, .pagination li.next.disabled span {
  color: #A9AFAF;
}
.pagination li.prev:not(.disabled) a, .pagination li.next:not(.disabled) a {
  color: #009CE5;
}
.pagination li.element {
  border: none;
}
.pagination li.element span {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  color: #009CE5;
}

/* フォーム用 */
/* 支部ログイン画面 */
#mainContainer {
  /* 新規検定作成画面 */
  /* ログインエラー画面(支部、受験生共通) */
  /* 受験生ログイン画面 */
  /* 受験生登録画面関連 */
  /* stripe審査用 */
  /* 個人情報保護方針&利用者規約 */
}
#mainContainer .admin-form {
  justify-content: center;
  align-items: center;
  height: 100vh;
}
@media screen and (max-width: 768px) {
  #mainContainer .admin-form {
    height: initial;
    padding: 50px 0;
  }
}
#mainContainer .admin-form__logo {
  width: 307px;
  height: 48px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #mainContainer .admin-form__logo {
    width: min(100%, 187px);
  }
}
#mainContainer .admin-form__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
#mainContainer .admin-form__inner {
  max-width: 551px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #mainContainer .admin-form__inner {
    max-width: 100%;
  }
}
#mainContainer .admin-form__body {
  margin-top: 70px;
  border-radius: 10px;
  box-shadow: 1px 1px 5px 1px #c9c0c0;
  padding: 90px;
}
@media screen and (max-width: 768px) {
  #mainContainer .admin-form__body {
    padding: 90px 6.5%;
  }
}
#mainContainer .admin-form__item {
  margin-bottom: 15px;
}
#mainContainer .admin-form__input {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 352px);
  padding: 10px 20px;
  box-shadow: 1px 1px 5px 1px #c9c0c0;
  border: none;
  border-radius: 5px;
}
#mainContainer .admin-form__input.error {
  border: 1.5px solid #B90E15;
}
@media screen and (max-width: 768px) {
  #mainContainer .admin-form__input {
    width: 100%;
  }
}
#mainContainer .admin-form .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 50px auto 0;
  font-weight: bold;
  background-color: transparent;
  width: min(100%, 210px);
  padding: 5px 0;
}
@media screen and (max-width: 768px) {
  #mainContainer .admin-form .btn-light-blue {
    width: 80%;
  }
}
#mainContainer .exam-form {
  background-color: #fff;
  padding: 15px;
}
#mainContainer .exam-form.profile {
  padding: 0;
}
#mainContainer .exam-form__body {
  margin-top: 20px;
  border-collapse: separate;
  border-spacing: 0 30px;
}
@media screen and (max-width: 520px) {
  #mainContainer .exam-form__body {
    margin-top: 0;
  }
}
#mainContainer .exam-form__body.profile {
  margin-top: 0;
}
#mainContainer .exam-form__item th {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  width: 13%;
  font-weight: normal;
  text-align: left;
}
@media screen and (max-width: 960px) {
  #mainContainer .exam-form__item th {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #mainContainer .exam-form__item th {
    width: 30%;
  }
}
@media screen and (max-width: 520px) {
  #mainContainer .exam-form__item th {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #mainContainer .exam-form__item th.vertical {
    vertical-align: baseline;
  }
}
@media screen and (max-width: 768px) {
  #mainContainer .exam-form__item th.vertical.confirm {
    vertical-align: baseline;
  }
}
#mainContainer .exam-form__item th.confirm {
  width: 15%;
}
@media screen and (max-width: 1024px) {
  #mainContainer .exam-form__item th.confirm {
    width: 20%;
  }
}
@media screen and (max-width: 768px) {
  #mainContainer .exam-form__item th.confirm {
    width: 25%;
  }
}
@media screen and (max-width: 520px) {
  #mainContainer .exam-form__item th.confirm {
    width: 100%;
  }
}
#mainContainer .exam-form__item td {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  width: 87%;
}
#mainContainer .exam-form__item td input {
  border-radius: 5px;
  border: 1px solid #707070;
}
#mainContainer .exam-form__item td input::-moz-placeholder {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
#mainContainer .exam-form__item td input::placeholder {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
#mainContainer .exam-form__item td input[type=text] {
  width: 100%;
  padding: 2px 0 2px 10px;
}
#mainContainer .exam-form__item td input[type=text].profile-birth {
  width: 55px;
  margin-left: 10px;
}
@media screen and (max-width: 400px) {
  #mainContainer .exam-form__item td input[type=text].profile-birth {
    width: 40px;
  }
}
@media screen and (max-width: 600px) {
  #mainContainer .exam-form__item td input[type=text].profile-birth.first {
    margin-left: 0;
  }
}
#mainContainer .exam-form__item td input[type=text].profile-acquired {
  width: 50px;
}
#mainContainer .exam-form__item td input[type=text].profile-acquired--long {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  width: 70px;
}
#mainContainer .exam-form__item td input[type=text].profile-zip--first {
  width: 37px;
  padding-left: 2px;
}
#mainContainer .exam-form__item td input[type=text].profile-zip--second {
  width: 46px;
  padding-left: 2px;
}
#mainContainer .exam-form__item td input[type=text].profile-address {
  width: 63%;
}
@media screen and (max-width: 748px) {
  #mainContainer .exam-form__item td input[type=text].profile-address {
    width: 100%;
  }
}
#mainContainer .exam-form__item td input[type=text].profile-address--send {
  width: 73%;
}
@media screen and (max-width: 748px) {
  #mainContainer .exam-form__item td input[type=text].profile-address--send {
    width: 100%;
    margin-top: 10px;
  }
}
#mainContainer .exam-form__item td .address-label {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
@media screen and (max-width: 748px) {
  #mainContainer .exam-form__item td .address-label {
    display: block;
    margin-top: 10px;
  }
}
#mainContainer .exam-form__item td .hyphen-mark {
  margin: 0 -5px;
}
#mainContainer .exam-form__item td .profile-acquired--long-wrap {
  display: inline-block;
  margin-left: 10px;
}
@media screen and (max-width: 400px) {
  #mainContainer .exam-form__item td .profile-acquired--long-wrap {
    display: block;
    margin-top: 10px;
  }
}
#mainContainer .exam-form__item td .profile-acquired--long-label {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
#mainContainer .exam-form__item td input[type=datetime-local] {
  padding: 1px 0 1px 10px;
  width: 100%;
}
#mainContainer .exam-form__item td input[type=datetime-local]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
@media screen and (max-width: 520px) {
  #mainContainer .exam-form__item td {
    width: 100%;
  }
}
#mainContainer .exam-form__item td select.profile-birth {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  width: 70px;
  padding: 4.17px 0;
  border-radius: 5px;
}
@media screen and (max-width: 600px) {
  #mainContainer .exam-form__item td select.profile-birth {
    display: block;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 520px) {
  #mainContainer .exam-form__item {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
  }
}
#mainContainer .exam-form__input-wrap {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  position: relative;
  width: max(18.5%, 175px);
  display: inline-block;
}
#mainContainer .exam-form__input-wrap input[type=text] {
  padding: 5px 0 5px 10px !important;
}
#mainContainer .exam-form__input-wrap input[type=datetime-local] {
  padding: 4px 0 4px 10px !important;
  width: 100%;
  color: #707070;
}
#mainContainer .exam-form__input-wrap input[type=datetime-local]::-webkit-calendar-picker-indicator {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: auto;
  height: auto;
  background: transparent;
  z-index: 1;
}
#mainContainer .exam-form__input-wrap::before {
  content: "";
  display: inline-block;
  width: 38px;
  height: 35px;
  position: absolute;
  top: calc(50% - 35px / 2);
  right: -1px;
  border-radius: 0 5px 5px 0;
  background-color: #D3D3D3;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  #mainContainer .exam-form__input-wrap::before {
    height: 32px;
    top: calc(50% - 32px / 2);
  }
}
#mainContainer .exam-form__input-wrap::after {
  content: "";
  background: url("/images/ico_calendar.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 14px;
  height: 15px;
  position: absolute;
  top: calc(50% - 15px / 2);
  right: 12px;
  z-index: 2;
  pointer-events: none;
}
#mainContainer .exam-form__input-wrap.confirm::before {
  content: none;
}
#mainContainer .exam-form__input-wrap.confirm::after {
  content: none;
}
@media screen and (max-width: 960px) {
  #mainContainer .exam-form__input-wrap {
    width: max(25%, 175px);
  }
}
@media screen and (max-width: 768px) {
  #mainContainer .exam-form__input-wrap {
    width: max(40%, 175px);
  }
}
@media screen and (max-width: 520px) {
  #mainContainer .exam-form__input-wrap {
    width: max(46%, 175px);
  }
}
@media screen and (max-width: 400px) {
  #mainContainer .exam-form__input-wrap {
    width: max(60%, 175px);
  }
}
#mainContainer .exam-form__input-wrap.confirm {
  width: 20%;
}
@media screen and (max-width: 1024px) {
  #mainContainer .exam-form__input-wrap.confirm {
    width: 25%;
  }
}
@media screen and (max-width: 768px) {
  #mainContainer .exam-form__input-wrap.confirm {
    width: 100%;
  }
}
#mainContainer .exam-form__input-wrap span {
  position: relative;
  display: block;
}
#mainContainer .exam-form__input-wrap span.start::before {
  content: "検定開始日時";
}
#mainContainer .exam-form__input-wrap span.start.no-pseudo::before {
  content: none;
}
#mainContainer .exam-form__input-wrap span.finish::before {
  content: "検定終了日時";
}
#mainContainer .exam-form__input-wrap span.finish.no-pseudo::before {
  content: none;
}
#mainContainer .exam-form__input-wrap span.entry_start::before {
  content: "申込開始日時";
}
#mainContainer .exam-form__input-wrap span.entry_start.no-pseudo::before {
  content: none;
}
#mainContainer .exam-form__input-wrap span.entry_finish::before {
  content: "申込終了日時";
}
#mainContainer .exam-form__input-wrap span.entry_finish.no-pseudo::before {
  content: none;
}
#mainContainer .exam-form__input-wrap span.timetable::before {
  content: "時間割公開日時";
}
#mainContainer .exam-form__input-wrap span.timetable.no-pseudo::before {
  content: none;
}
#mainContainer .exam-form__input-wrap span.result::before {
  content: "成績公開日時";
}
#mainContainer .exam-form__input-wrap span.result.no-pseudo::before {
  content: none;
}
#mainContainer .exam-form__input-wrap span::before {
  display: inline-block;
  position: absolute;
  color: #757575;
  top: 50%;
  transform: translateY(-50%);
  left: 10px;
  width: 100%;
  background-color: #fff;
  pointer-events: none;
}
#mainContainer .exam-form__wavy {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  color: #707070;
  margin: 0 18px 0 18px;
  display: inline-block;
}
@media screen and (max-width: 768px) {
  #mainContainer .exam-form__wavy {
    margin: 0;
  }
}
@media screen and (max-width: 600px) {
  #mainContainer .exam-form__wavy {
    padding-left: 20px;
  }
}
@media screen and (max-width: 400px) {
  #mainContainer .exam-form__wavy {
    padding-left: 40px;
  }
}
#mainContainer .err {
  max-width: 551px;
  margin: 0 auto;
  padding-top: 94px;
}
#mainContainer .err__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
#mainContainer .err__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  line-height: 1.8;
}
#mainContainer .err .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 233px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
#mainContainer .user-form {
  padding: 50px 0;
}
#mainContainer .user-form__logo {
  width: 307px;
  height: 48px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #mainContainer .user-form__logo {
    width: min(100%, 187px);
  }
}
#mainContainer .user-form__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
#mainContainer .user-form__inner {
  max-width: 551px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #mainContainer .user-form__inner {
    max-width: 100%;
  }
}
#mainContainer .user-form__body {
  margin-top: 70px;
}
#mainContainer .user-form__body.sm-margin {
  margin-top: 30px;
}
#mainContainer .user-form__item {
  text-align: center;
  margin-bottom: 15px;
}
#mainContainer .user-form__label {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  display: inline-block;
  width: min(100%, 352px);
  text-align: left;
}
@media screen and (max-width: 768px) {
  #mainContainer .user-form__label {
    width: 100%;
  }
}
#mainContainer .user-form__input {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  border: 1.5px solid #A9AFAF;
  width: min(100%, 352px);
  padding: 10px 20px;
  border-radius: 5px;
}
@media screen and (max-width: 768px) {
  #mainContainer .user-form__input {
    width: 100%;
  }
}
#mainContainer .user-form__input.error {
  border: 1px solid #B90E15;
}
#mainContainer .user-form__note {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
#mainContainer .user-form .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 50px auto 0;
  width: min(100%, 170px);
  background-color: transparent;
  font-weight: bold;
  padding: 5px 0;
}
#mainContainer .user-form__link {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  width: -moz-fit-content;
  width: fit-content;
  margin: 20px auto 0;
  color: #009CE5;
  text-decoration: underline;
}
#mainContainer .user-form__txt {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  margin-top: 45px;
  text-align: center;
}
#mainContainer .user-form__txt--note {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 0;
  text-align: left;
}
#mainContainer .user-form .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
  width: min(100%, 170px);
  padding: 5px 0;
  margin: 0 auto;
}
#mainContainer .user-register-form {
  padding: 30px 0 40px;
}
#mainContainer .user-register-form .msg {
  padding-top: 20px;
}
#mainContainer .user-register-form__inner {
  max-width: 551px;
  margin: 0 auto;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  #mainContainer .user-register-form__inner {
    max-width: 100%;
  }
}
#mainContainer .user-register-form__item {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
#mainContainer .user-register-form__label {
  background-color: #EEEEEE;
  display: block;
  padding: 5px 10px;
  border: 1px solid #A9AFAF;
}
#mainContainer .user-register-form__label .required-label {
  background-color: #B90E15;
  color: #fff;
  font-size: 0.8em;
  font-weight: bold;
  float: right;
  padding: 0 8px;
  margin-top: 3px;
}
#mainContainer .user-register-form__label.last {
  font-weight: normal;
  padding: 3px 10px;
  margin-bottom: 0;
  border: 1px solid #707070;
}
#mainContainer .user-register-form__outer {
  padding: 13px 8px;
  border: 1px solid #A9AFAF;
  border-top: none;
}
#mainContainer .user-register-form__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin-top: 0;
}
#mainContainer .user-register-form__txt--caution {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
  margin-bottom: 0;
}
#mainContainer .user-register-form__link {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
}
#mainContainer .user-register-form__input {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  width: 100%;
  border: 1px solid #A9AFAF;
  border-radius: 5px;
  padding: 4px 15px;
}
#mainContainer .user-register-form__input.error {
  border: 1.5px solid #B90E15;
}
#mainContainer .user-register-form__input.birth {
  width: 15%;
  padding: 4px 10px;
}
#mainContainer .user-register-form__input.birth + span {
  font-size: 16px;
  vertical-align: -8px;
  margin-right: 5px;
}
#mainContainer .user-register-form__input.birth:-moz-read-only {
  background-color: rgb(216, 216, 216);
}
#mainContainer .user-register-form__input.birth:read-only {
  background-color: rgb(216, 216, 216);
}
#mainContainer .user-register-form__input.zip1 {
  width: 35%;
}
#mainContainer .user-register-form__input.zip2 {
  width: 40%;
}
#mainContainer .user-register-form__input.address {
  width: 80%;
}
#mainContainer .user-register-form__input.send-address {
  width: 100%;
}
#mainContainer .user-register-form__unit {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  margin-right: 5px;
}
#mainContainer .user-register-form__select {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  border: 1px solid #A9AFAF;
  border-radius: 5px;
  padding: 6.3px 5px;
  width: 23%;
  margin-right: 5px;
}
#mainContainer .user-register-form__select:-moz-read-only {
  background-color: rgb(216, 216, 216);
  -moz-appearance: none;
       appearance: none;
  pointer-events: none;
  padding: 4px 3px;
}
#mainContainer .user-register-form__select:read-only {
  background-color: rgb(216, 216, 216);
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  pointer-events: none;
  padding: 4px 3px;
}
#mainContainer .user-register-form__box {
  padding: 8px 10px;
  margin-top: 0;
  line-height: 1.8;
  border: 1px solid #707070;
  border-top: none;
}
@media screen and (max-width: 768px) {
  #mainContainer .user-register-form__box {
    overflow-y: scroll;
    height: 108px;
  }
}
#mainContainer .user-register-form__check-area {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  margin-top: 20px;
}
#mainContainer .user-register-form__checkbox {
  opacity: 0;
}
#mainContainer .user-register-form__checkbox + label {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  vertical-align: middle;
}
#mainContainer .user-register-form__checkbox + label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid #707070;
  background-color: #fff;
  position: absolute;
  left: -1.4em;
  top: calc(50% - 22px);
}
@media screen and (min-width: 371px) {
  #mainContainer .user-register-form__checkbox + label::before {
    top: calc(50% - 21px);
    left: -1.4em;
  }
}
@media screen and (min-width: 388px) {
  #mainContainer .user-register-form__checkbox + label::before {
    top: calc(50% - 9px);
    left: -1.3em;
  }
}
@media screen and (min-width: 769px) {
  #mainContainer .user-register-form__checkbox + label::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 10px);
    left: -1.3em;
  }
}
#mainContainer .user-register-form__checkbox + label::after {
  content: "";
  background: url("/images/ico_check_blue.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: absolute;
  left: -1.4em;
  top: calc(50% - 5px);
  opacity: 0;
}
#mainContainer .user-register-form__checkbox + label.same {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  margin-bottom: 15px;
  display: inline-block;
}
#mainContainer .user-register-form__checkbox + label.same::before {
  left: -1.4em;
  top: calc(50% - 9px);
}
@media screen and (max-width: 370px) {
  #mainContainer .user-register-form__checkbox + label.user-request::before {
    top: calc(50% - 22px);
  }
}
@media screen and (min-width: 371px) {
  #mainContainer .user-register-form__checkbox + label.user-request.smartphone::before {
    top: calc(50% - 9px);
    left: -1.45em;
  }
}
@media screen and (min-width: 388px) {
  #mainContainer .user-register-form__checkbox + label.user-request.smartphone::before {
    left: -1.3em;
  }
}
#mainContainer .user-register-form__checkbox:checked + label {
  position: relative;
  cursor: pointer;
  -webkit-appearance: none;
  vertical-align: middle;
}
#mainContainer .user-register-form__checkbox:checked + label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid #707070;
  position: absolute;
  left: -1.4em;
  top: calc(50% - 9px);
}
@media screen and (min-width: 371px) {
  #mainContainer .user-register-form__checkbox:checked + label::before {
    top: calc(50% - 21px);
    left: -1.4em;
  }
}
@media screen and (min-width: 388px) {
  #mainContainer .user-register-form__checkbox:checked + label::before {
    top: calc(50% - 9px);
    left: -1.3em;
  }
}
@media screen and (min-width: 769px) {
  #mainContainer .user-register-form__checkbox:checked + label::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 10px);
  }
}
#mainContainer .user-register-form__checkbox:checked + label::after {
  content: "";
  background: url("/images/ico_check_blue.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: absolute;
  left: -1.3em;
  top: calc(50% - 5px);
  opacity: 1;
}
@media screen and (min-width: 371px) {
  #mainContainer .user-register-form__checkbox:checked + label::after {
    left: -1.2em;
    top: calc(50% - 17px);
  }
}
@media screen and (min-width: 388px) {
  #mainContainer .user-register-form__checkbox:checked + label::after {
    top: calc(50% - 6px);
  }
}
#mainContainer .user-register-form__checkbox:checked + label.same::before {
  left: -1.4em;
  top: calc(50% - 9px);
}
#mainContainer .user-register-form__checkbox:checked + label.same::after {
  left: -1.3em;
  top: calc(50% - 6px);
}
@media screen and (max-width: 370px) {
  #mainContainer .user-register-form__checkbox:checked + label.user-request::before {
    top: calc(50% - 22px);
  }
}
@media screen and (max-width: 370px) {
  #mainContainer .user-register-form__checkbox:checked + label.user-request::after {
    top: calc(50% - 18px);
  }
}
@media screen and (min-width: 371px) {
  #mainContainer .user-register-form__checkbox:checked + label.user-request.smartphone::after {
    left: -1.3em;
    top: calc(50% - 6px);
  }
}
#mainContainer .user-register-form .btn-gray {
  color: #fff;
  background-color: #707070;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  border: none;
  margin: 30px auto 0;
  width: min(100%, 210px);
  padding: 6px 0;
  pointer-events: none;
}
#mainContainer .user-register-form .btn-gray.active {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  border: none;
  margin: 30px auto 0;
  width: min(100%, 210px);
  padding: 6px 0;
  pointer-events: initial;
  cursor: pointer;
}
#mainContainer .user-register-form .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  padding: 5px 0;
  width: 210px;
  margin: 20px auto 0;
}
#mainContainer .user-register-form__data {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  margin-top: 32px;
}
#mainContainer .user-register-form__data dt {
  font-weight: bold;
}
#mainContainer .user-register-form__data dd {
  margin-left: 0;
  margin-top: 10px;
  background-image: linear-gradient(to right, #707070, #707070 5px, transparent 7px, transparent 8px);
  background-size: 11px 1px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-bottom: 15px;
  margin-bottom: 20px;
}
#mainContainer .user-register-form__data dd.no-border {
  background-image: none;
}
#mainContainer .user-register-form__btns {
  margin-top: 50px;
  justify-content: space-between;
}
#mainContainer .user-register-form__btns .btn-fix {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  background-color: #eee;
  border: none;
  border-radius: 5px;
  position: relative;
  width: max(30%, 124px);
  padding: 6px 0 6px 15px;
  cursor: pointer;
}
#mainContainer .user-register-form__btns .btn-fix::before {
  content: "";
  background: url("/images/ico_back.webp") no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  left: 1em;
  top: calc(50% - 14px / 2);
}
#mainContainer .user-register-form__btns .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: min(55%, 210px);
  padding: 7px 0;
  margin: 0;
}
#mainContainer .user-register-form__btns--sp {
  margin-top: 50px;
  justify-content: space-between;
}
#mainContainer .user-register-form__btns--sp .btn-fix {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  background-color: #eee;
  border: none;
  border-radius: 5px;
  position: relative;
  width: min(40%, 124px);
  padding: 6px 0 6px 15px;
  cursor: pointer;
}
#mainContainer .user-register-form__btns--sp .btn-fix::before {
  content: "";
  background: url("/images/ico_back.webp") no-repeat;
  background-size: contain;
  width: 14px;
  height: 14px;
  display: inline-block;
  position: absolute;
  left: 1em;
  top: calc(50% - 14px / 2);
}
#mainContainer .user-register-form__btns--sp .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: min(56%, 210px);
  padding: 7px 0;
  margin: 0;
}
#mainContainer .user-register-form-address {
  justify-content: space-between;
  margin-bottom: 15px;
}
#mainContainer .user-register-form-address__item--before {
  width: 60%;
}
#mainContainer .user-register-form-address__item--before span.post {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
}
#mainContainer .user-register-form-address__item--before span.hyphen {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
#mainContainer .user-register-form-address__item--after {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
  width: 30%;
}
#mainContainer .user-register-form-modal {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 95%;
  height: 100vh;
  margin: 0 auto;
  display: none;
  justify-content: center;
  align-items: center;
  z-index: 6;
}
#mainContainer .user-register-form-modal.inactive {
  display: none;
}
#mainContainer .user-register-form-modal__body {
  background-color: #fff;
  width: min(100%, 750px);
  padding: 30px 20px;
  z-index: 7;
  border: 1px solid #707070;
  box-shadow: 0px 7px 15px -11px #707070;
}
#mainContainer .user-register-form-modal__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  text-align: center;
}
#mainContainer .user-register-form-modal__txt {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  margin-top: 30px;
}
#mainContainer .user-register-form-modal__txt a {
  color: #1a73e8;
  display: inline-block;
}
#mainContainer .user-register-form-modal__btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 116px;
  padding: 9px 0;
  margin: 0 auto;
}
#mainContainer .stripe-images {
  margin-top: 50px;
  row-gap: 30px;
}
#mainContainer .stripe-images__item {
  width: min(100%, 700px);
  margin: 0 auto;
}
#mainContainer .stripe-link {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #009CE5;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
  text-decoration: underline;
}
#mainContainer .register-consent {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  border: 1px solid #707070;
  margin-top: 20px;
}
#mainContainer .register-consent__heading {
  font-weight: normal;
  padding: 3px 10px;
  margin-bottom: 0;
  background-color: #EEEEEE;
  display: block;
  margin-top: 0;
  border-bottom: 1px solid #707070;
}
#mainContainer .register-consent__body {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  padding: 8px 10px;
  margin-top: 0;
  line-height: 1.8;
  height: 120px;
  overflow-y: scroll;
}
#mainContainer .register-consent__body p {
  text-indent: 1em;
}
#mainContainer .register-consent__body ul li {
  margin-bottom: 10px;
  text-indent: 1em;
}
#mainContainer .register-consent__body dl {
  font-size: 1em;
}
@media screen and (max-width: 400px) {
  #mainContainer .register-consent__body dl dd {
    margin-left: 20px;
  }
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* 基本スタイル */
* {
  font-size: 62.5%;
  box-sizing: border-box;
  line-height: 1.5;
  color: #333;
}

body, html {
  margin: 0;
  height: 100%;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
ul,
li,
option,
span,
label,
input,
dt,
dd,
rb,
strong {
  font-size: 1em;
}

a {
  text-decoration: none;
  display: block;
}

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

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

figure {
  margin: 0;
}

table {
  width: 100%;
}

/* 基本カラー */
/* 基本クラス */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.contents {
  display: contents;
}

.text-center {
  text-align: center;
}

.break-all {
  word-break: break-all;
}

.pointer-events-none {
  pointer-events: none;
}

.wrap {
  width: min(95%, 1120px);
  margin: 0 auto;
}

.basic-footer {
  justify-content: space-between;
}
.basic-footer .btn-cancel {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
  position: relative;
  padding-left: 25px;
}
.basic-footer .btn-cancel::before {
  content: "";
  background: url("/images/ico_cancel.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 17px / 2);
  left: 0;
}
.basic-footer .btn-light-blue {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  width: 116px;
  padding: 8px 0;
  background-color: #fff;
}
.basic-footer .btn-light-blue-fill {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  width: 116px;
  padding: 8px 0;
}
.basic-footer .btn-red {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
  border: 1px solid #B90E15;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  width: 116px;
  padding: 8px 0;
}
.basic-footer div.flex {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm {
    flex-direction: column;
    align-items: baseline;
    row-gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm div.flex {
    width: 100%;
    justify-content: center;
  }
}

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

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

@media screen and (max-width: 600px) {
  .w-600-grid {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  .w-600-grid.confirm {
    display: grid;
  }
}

.break-all {
  word-break: break-all;
}

.w-full {
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-50 {
  padding-bottom: 50px;
}

.justify-end {
  justify-content: flex-end;
}

.text-16 {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}

.font-normal {
  font-weight: normal !important;
}

.font-bold {
  font-weight: bold;
}

/* エラーメッセージ */
.err-msg {
  margin: 3px 0 15px;
  text-align: left;
}
.err-msg li {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  color: #B90E15;
  margin-bottom: 5px;
}
.err-msg.sp li {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
.err-msg.file {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  color: #B90E15;
}

/* パンくず */
.bread {
  background-color: #EEEEEE;
  padding: 11px 0 11px 30px;
}
.bread__page {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #A9AFAF;
}
.bread__page.home {
  color: #009CE5;
}

/* 各ページ基本wrap */
.page-wrap {
  background-color: #E6F1FE;
  padding-top: 12px;
  padding-bottom: 30px;
}
.page-wrap.no-b-padding {
  padding-bottom: 0;
}

/* 各画面のメッセージ部分(pc用) */
.msg {
  max-width: 551px;
  margin: 0 auto;
  padding-top: 94px;
}
.msg.sm-padding {
  padding-top: 30px;
}
.msg__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.msg__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  line-height: 1.8;
}
.msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 233px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 170px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill.sm-margin {
  margin-top: 40px;
}

/* 各画面のメッセージ部分(sp用) */
.sp-msg {
  padding-top: 80px;
}
.sp-msg.no-padding {
  padding-top: 20px;
}
.sp-msg.has-padding-b {
  padding-bottom: 30px;
}
.sp-msg__heading {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.sp-msg__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  line-height: 1.8;
  margin-top: 30px;
}
.sp-msg__txt.caution {
  color: #B90E15;
}
.sp-msg__txt strong {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
}
.sp-msg__link {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sp-msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: 265px;
  padding: 6px 0;
  margin: 87px auto 0;
}

/* Dropifyカスタマイズ */
.dropify-wrapper {
  position: relative;
  border: none;
  background-color: #eee;
  aspect-ratio: 61/38;
}
.dropify-wrapper::before {
  content: "";
  background-image: linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px);
  background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.dropify-wrapper .dropify-message {
  position: initial;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropify-wrapper .dropify-message .file-icon {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.dropify-wrapper .dropify-message .file-icon::before {
  content: none !important;
}
.dropify-wrapper .dropify-message .file-icon p span {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

/* 特商法ページ */
.tokushoho {
  padding-top: 80px;
}
.tokushoho__heading {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-weight: bold;
}
.tokushoho__body {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.tokushoho__body dd {
  margin-bottom: 20px;
}
.tokushoho__body dd.small-mb {
  margin-bottom: 5px;
}
.tokushoho__link {
  color: #009CE5;
  text-decoration: underline;
  word-break: break-all;
  display: inline-block;
}

/* パスワード欄の目のアイコン */
.password-wrap {
  position: relative;
}
@media screen and (min-width: 769px) {
  .password-wrap.not-login {
    max-width: 352px;
    margin: 0 auto;
  }
}
.password-ico {
  width: 35px;
  height: 19px;
  position: absolute;
  right: 10px;
  top: calc(50% - 19px / 2);
}
@media screen and (min-width: 769px) {
  .password-ico {
    right: 110px;
  }
}
@media screen and (min-width: 769px) {
  .password-ico.not-login {
    right: 10px;
  }
}

/* フッターをページ下部に固定 */
#mainContainer {
  position: relative;
  min-height: 100%;
}

.admin-main {
  padding-bottom: 65px;
}

.user-main {
  padding-bottom: 31px;
}

/* csv生成中＆アップロード中画面 */
.upload-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
}
.upload-screen__contents {
  width: 50%;
}
.upload-screen__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.upload-screen__ico {
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.upload-screen__ico img {
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ページネーション */
.pagination {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: #fff;
  padding-bottom: 20px;
}
.pagination li:not(.prev, .next) {
  border: 1px solid #009CE5;
  padding: 0 7.5px;
  margin-top: 8px;
}
.pagination li:not(.prev, .next) a {
  color: #009CE5;
}
.pagination li.active {
  background-color: #eeeeee;
  border: 1px solid #A9AFAF;
}
.pagination li.active span {
  color: #A9AFAF;
}
.pagination li.prev, .pagination li.next {
  font-size: clamp(3rem, 2.96rem + 0.2vw, 3.2rem);
}
.pagination li.prev.disabled span, .pagination li.next.disabled span {
  color: #A9AFAF;
}
.pagination li.prev:not(.disabled) a, .pagination li.next:not(.disabled) a {
  color: #009CE5;
}
.pagination li.element {
  border: none;
}
.pagination li.element span {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  color: #009CE5;
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* ヘッダーやフッターなど共通部分用 */
/* 支部ヘッダー */
#mainContainer {
  /* sp用ドロップダウン(支部) */
  /* 支部フッター */
  /* 受験生ヘッダー */
  /* 受験生フッター */
}
#mainContainer .admin-header {
  background-color: #F8F8F8;
  padding: 20px 0 3px;
  border-bottom: 5px solid #009CE5;
}
#mainContainer .admin-header__upper {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 400px) {
  #mainContainer .admin-header__upper {
    flex-direction: column;
    row-gap: 15px;
  }
}
#mainContainer .admin-header__logo {
  width: 195px;
  height: 28px;
}
#mainContainer .admin-header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
#mainContainer .admin-header__menu {
  -moz-column-gap: 35px;
       column-gap: 35px;
  padding-right: 50px;
}
#mainContainer .admin-header__name {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 0;
  position: relative;
}
#mainContainer .admin-header__name::after {
  content: "";
  display: inline-block;
  width: 1px;
  height: 15px;
  background-color: #707070;
  position: absolute;
  top: 3px;
  right: -20px;
}
#mainContainer .admin-header__form {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
#mainContainer .admin-header__form a {
  color: #A9AFAF;
  position: relative;
}
#mainContainer .admin-header__form a::after {
  content: "";
  background: url("/images/ico_logout.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 18px;
  height: 16px;
  position: absolute;
  top: calc(50% - 16px / 2);
  right: -49px;
}
#mainContainer .admin-header__lower {
  margin-top: 20px;
  -moz-column-gap: 60px;
       column-gap: 60px;
}
#mainContainer .admin-header__page {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  color: #A9AFAF;
  font-weight: bold;
  margin: 0;
}
#mainContainer .admin-header__page.current {
  border-bottom: 3px solid #009CE5;
  color: #009CE5;
  pointer-events: none;
}
#mainContainer .admin-header__ico {
  width: 20px;
  height: 18px;
  cursor: pointer;
  display: none;
}
@media screen and (max-width: 768px) {
  #mainContainer .admin-header__ico {
    display: block;
  }
}
#mainContainer .admin-dropdown {
  position: fixed;
  top: 105px;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  display: none;
}
#mainContainer .admin-dropdown__item {
  padding: 25px 0 25px 20px;
  border-bottom: 1px solid #009CE5;
}
#mainContainer .admin-dropdown__link {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  position: relative;
  padding-left: 40px;
}
#mainContainer .admin-dropdown__link.logout::before {
  content: "";
  background: url("/images/ico_logout.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 22px;
  position: absolute;
  left: 4px;
  top: calc(50% - 22px / 2);
}
#mainContainer .admin-footer {
  border-top: 3px solid #009CE5;
  padding: 10px 0 5px;
  position: absolute;
  bottom: 0;
  width: 100%;
}
#mainContainer .admin-footer__logo {
  width: 195px;
  height: 28px;
  margin: 0 auto;
}
#mainContainer .admin-footer__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
#mainContainer .admin-footer__copy {
  display: block;
  text-align: center;
  margin-top: 5px;
}
@-moz-document url-prefix() {
  #mainContainer .admin-footer__copy {
    font-size: 10px;
  }
}
#mainContainer .user-header {
  background-color: #F8F8F8;
  padding: 20px 0;
  box-shadow: 0px 10px 10px -9px rgba(0, 0, 0, 0.3);
  border-bottom: 5px solid #009CE5;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 6;
}
#mainContainer .user-header__inner {
  justify-content: space-between;
}
#mainContainer .user-header__logo {
  width: 195px;
}
#mainContainer .user-header__logo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
@media screen and (max-width: 520px) {
  #mainContainer .user-header__logo {
    width: 130px;
  }
}
#mainContainer .user-header__nav--sp {
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
#mainContainer .user-header__nav--pc {
  display: none;
}
@media screen and (min-width: 961px) {
  #mainContainer .user-header__nav--pc {
    display: flex;
  }
}
#mainContainer .user-header__nav--pc .user-dropdown__item {
  border-bottom: none;
  padding: 0 0 0 20px;
}
#mainContainer .user-header__nav--pc .user-dropdown__link {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
#mainContainer .user-header__name {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 0;
}
#mainContainer .user-header__ico {
  width: 20px;
  height: 18px;
  cursor: pointer;
}
#mainContainer .user-footer {
  background-color: #E8E8E8;
  padding: 8px 0;
  width: 100%;
  position: absolute;
  bottom: 0;
}
#mainContainer .user-footer__copy {
  display: block;
  text-align: center;
}
@-moz-document url-prefix() {
  #mainContainer .user-footer__copy {
    font-size: 10px;
  }
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* 基本スタイル */
* {
  font-size: 62.5%;
  box-sizing: border-box;
  line-height: 1.5;
  color: #333;
}

body, html {
  margin: 0;
  height: 100%;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
ul,
li,
option,
span,
label,
input,
dt,
dd,
rb,
strong {
  font-size: 1em;
}

a {
  text-decoration: none;
  display: block;
}

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

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

figure {
  margin: 0;
}

table {
  width: 100%;
}

/* 基本カラー */
/* 基本クラス */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.contents {
  display: contents;
}

.text-center {
  text-align: center;
}

.break-all {
  word-break: break-all;
}

.pointer-events-none {
  pointer-events: none;
}

.wrap {
  width: min(95%, 1120px);
  margin: 0 auto;
}

.basic-footer {
  justify-content: space-between;
}
.basic-footer .btn-cancel {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
  position: relative;
  padding-left: 25px;
}
.basic-footer .btn-cancel::before {
  content: "";
  background: url("/images/ico_cancel.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 17px / 2);
  left: 0;
}
.basic-footer .btn-light-blue {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  width: 116px;
  padding: 8px 0;
  background-color: #fff;
}
.basic-footer .btn-light-blue-fill {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  width: 116px;
  padding: 8px 0;
}
.basic-footer .btn-red {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
  border: 1px solid #B90E15;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  width: 116px;
  padding: 8px 0;
}
.basic-footer div.flex {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm {
    flex-direction: column;
    align-items: baseline;
    row-gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm div.flex {
    width: 100%;
    justify-content: center;
  }
}

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

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

@media screen and (max-width: 600px) {
  .w-600-grid {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  .w-600-grid.confirm {
    display: grid;
  }
}

.break-all {
  word-break: break-all;
}

.w-full {
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-50 {
  padding-bottom: 50px;
}

.justify-end {
  justify-content: flex-end;
}

.text-16 {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}

.font-normal {
  font-weight: normal !important;
}

.font-bold {
  font-weight: bold;
}

/* エラーメッセージ */
.err-msg {
  margin: 3px 0 15px;
  text-align: left;
}
.err-msg li {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  color: #B90E15;
  margin-bottom: 5px;
}
.err-msg.sp li {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
.err-msg.file {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  color: #B90E15;
}

/* パンくず */
.bread {
  background-color: #EEEEEE;
  padding: 11px 0 11px 30px;
}
.bread__page {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #A9AFAF;
}
.bread__page.home {
  color: #009CE5;
}

/* 各ページ基本wrap */
.page-wrap {
  background-color: #E6F1FE;
  padding-top: 12px;
  padding-bottom: 30px;
}
.page-wrap.no-b-padding {
  padding-bottom: 0;
}

/* 各画面のメッセージ部分(pc用) */
.msg {
  max-width: 551px;
  margin: 0 auto;
  padding-top: 94px;
}
.msg.sm-padding {
  padding-top: 30px;
}
.msg__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.msg__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  line-height: 1.8;
}
.msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 233px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 170px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill.sm-margin {
  margin-top: 40px;
}

/* 各画面のメッセージ部分(sp用) */
.sp-msg {
  padding-top: 80px;
}
.sp-msg.no-padding {
  padding-top: 20px;
}
.sp-msg.has-padding-b {
  padding-bottom: 30px;
}
.sp-msg__heading {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.sp-msg__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  line-height: 1.8;
  margin-top: 30px;
}
.sp-msg__txt.caution {
  color: #B90E15;
}
.sp-msg__txt strong {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
}
.sp-msg__link {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sp-msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: 265px;
  padding: 6px 0;
  margin: 87px auto 0;
}

/* Dropifyカスタマイズ */
.dropify-wrapper {
  position: relative;
  border: none;
  background-color: #eee;
  aspect-ratio: 61/38;
}
.dropify-wrapper::before {
  content: "";
  background-image: linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px);
  background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.dropify-wrapper .dropify-message {
  position: initial;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropify-wrapper .dropify-message .file-icon {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.dropify-wrapper .dropify-message .file-icon::before {
  content: none !important;
}
.dropify-wrapper .dropify-message .file-icon p span {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

/* 特商法ページ */
.tokushoho {
  padding-top: 80px;
}
.tokushoho__heading {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-weight: bold;
}
.tokushoho__body {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.tokushoho__body dd {
  margin-bottom: 20px;
}
.tokushoho__body dd.small-mb {
  margin-bottom: 5px;
}
.tokushoho__link {
  color: #009CE5;
  text-decoration: underline;
  word-break: break-all;
  display: inline-block;
}

/* パスワード欄の目のアイコン */
.password-wrap {
  position: relative;
}
@media screen and (min-width: 769px) {
  .password-wrap.not-login {
    max-width: 352px;
    margin: 0 auto;
  }
}
.password-ico {
  width: 35px;
  height: 19px;
  position: absolute;
  right: 10px;
  top: calc(50% - 19px / 2);
}
@media screen and (min-width: 769px) {
  .password-ico {
    right: 110px;
  }
}
@media screen and (min-width: 769px) {
  .password-ico.not-login {
    right: 10px;
  }
}

/* フッターをページ下部に固定 */
#mainContainer {
  position: relative;
  min-height: 100%;
}

.admin-main {
  padding-bottom: 65px;
}

.user-main {
  padding-bottom: 31px;
}

/* csv生成中＆アップロード中画面 */
.upload-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
}
.upload-screen__contents {
  width: 50%;
}
.upload-screen__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.upload-screen__ico {
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.upload-screen__ico img {
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ページネーション */
.pagination {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: #fff;
  padding-bottom: 20px;
}
.pagination li:not(.prev, .next) {
  border: 1px solid #009CE5;
  padding: 0 7.5px;
  margin-top: 8px;
}
.pagination li:not(.prev, .next) a {
  color: #009CE5;
}
.pagination li.active {
  background-color: #eeeeee;
  border: 1px solid #A9AFAF;
}
.pagination li.active span {
  color: #A9AFAF;
}
.pagination li.prev, .pagination li.next {
  font-size: clamp(3rem, 2.96rem + 0.2vw, 3.2rem);
}
.pagination li.prev.disabled span, .pagination li.next.disabled span {
  color: #A9AFAF;
}
.pagination li.prev:not(.disabled) a, .pagination li.next:not(.disabled) a {
  color: #009CE5;
}
.pagination li.element {
  border: none;
}
.pagination li.element span {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  color: #009CE5;
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* 検定用 */
.exam {
  /* 検定一覧 */
  /* 受験生関連 */
  /* CSV操作 */
  /* 設定画面 */
}
.exam-head {
  justify-content: space-between;
  align-items: center;
  padding-bottom: 5px;
  border-bottom: 1px solid #707070;
}
.exam-head .btn-yellow {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  background-color: #F6BB4C;
  display: block;
  cursor: pointer;
  text-align: center;
  width: 164px;
  font-weight: bold;
  padding: 4px 0;
}
.exam-head.ticket {
  justify-content: flex-start;
  -moz-column-gap: 45px;
       column-gap: 45px;
}
.exam-heading {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-weight: bold;
  color: #A9AFAF;
  margin: 0;
}
.exam-subheading {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
  color: #A9AFAF;
}
.exam-subheading span {
  font-size: 0.75em;
  background-color: #009CE5;
  color: #fff;
  border-radius: 100vh;
  padding: 1px 13px;
  vertical-align: middle;
}
.exam-list {
  background-color: #fff;
  padding: 15px;
}
.exam-list__body {
  margin-top: 5px;
}
.exam-list__item {
  background-image: linear-gradient(to right, #A9AFAF, #A9AFAF 5px, transparent 2px, transparent 8px);
  background-size: 10px 2px;
  background-position: left bottom;
  background-repeat: repeat-x;
  padding-top: 20px;
}
.exam-list__item--upper {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
.exam-list__item--lower {
  padding: 15px 0;
  justify-content: space-between;
}
@media screen and (max-width: 520px) {
  .exam-list__item--lower {
    flex-direction: column;
    row-gap: 10px;
  }
}
.exam-list__class {
  font-weight: bold;
  background-color: #27B949;
  color: #fff;
  border-radius: 100vh;
  padding: 3px 19px;
}
.exam-list__class.special {
  background-color: #F29706;
}
.exam-list__date {
  background-color: #009CE5;
  color: #fff;
  margin-left: 10px;
  padding: 2px 9px;
}
.exam-list__date.cancel {
  background-color: #B90E15;
}
.exam-list__type {
  font-weight: bold;
  margin-left: 10px;
}
.exam-list__type span {
  font-weight: normal;
}
@media screen and (max-width: 520px) {
  .exam-list__type {
    display: inline-block;
    margin-top: 10px;
    margin-left: 0;
  }
}
.exam-list__status {
  font-weight: bold;
  margin-left: 10px;
}
.exam-list__status span {
  font-weight: normal;
}
.exam-list__status span.cancel {
  color: #B90E15;
}
.exam-list__name {
  font-size: clamp(3rem, 2.96rem + 0.2vw, 3.2rem);
  font-weight: normal;
  margin: 0;
}
.exam-list__btns {
  align-items: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
  margin-left: auto;
}
.exam-list__btns .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  width: 116px;
  padding: 8px 0;
}
@media screen and (max-width: 520px) {
  .exam-list__btns .btn-light-blue {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .exam-list__btns {
    flex-direction: column;
    row-gap: 10px;
    width: 100%;
  }
}
.exam-list__btn--delete {
  width: 43px;
  height: 43px;
}
.exam-ticket__btn {
  color: #fff;
  background-color: #F6BB4C;
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin-left: auto;
  width: 164px;
  padding: 4px 0;
  font-weight: bold;
  margin-top: 10px;
}
.exam-ticket__btn--delete {
  color: #fff;
  background-color: #B90E15;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  font-weight: bold;
  width: 78px;
}
.exam-ticket__btn--delete.inactive {
  background-color: #D8D8D8;
}
.exam-ticket__wrap {
  margin: 5px auto 100px;
}
@media screen and (max-width: 768px) {
  .exam-ticket__wrap {
    width: 100%;
    overflow-x: scroll;
  }
}
.exam-ticket__body {
  border-collapse: collapse;
}
.exam-ticket__body thead::after {
  content: "";
  height: 1px;
  width: 100%;
  padding: 4px 0;
  display: block;
}
.exam-ticket__body th {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  background-color: #DEDEDE;
  border: 1px solid #A9AFAF;
  padding: 4px 0;
}
.exam-ticket__body th.first {
  width: 57%;
  max-width: 621px;
}
.exam-ticket__body th.second {
  width: 31%;
  max-width: 339px;
}
.exam-ticket__body th.third {
  width: 12%;
  max-width: 136px;
}
.exam-ticket__body td {
  border: 1px solid #A9AFAF;
}
.exam-ticket__body td.first div {
  padding: 15px 30px 10px 15px;
}
.exam-ticket__body td.first div.first {
  border-bottom: 1px solid #A9AFAF;
  margin: -1px;
}
.exam-ticket__body td.second {
  padding: 0;
}
.exam-ticket__body td.second > div {
  padding: 15px 20px 10px;
}
.exam-ticket__body td.second > div.first {
  border-bottom: 1px solid #A9AFAF;
  position: relative;
  margin-top: -3px;
}
@media screen and (max-width: 960px) {
  .exam-ticket__body td.second > div.first {
    padding-left: 5px;
    margin-top: -2px;
  }
}
@media screen and (max-width: 768px) {
  .exam-ticket__body td.second > div.first {
    margin-top: -1px;
  }
}
.exam-ticket__body td.second > div.flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .exam-ticket__body td.second > div.flex {
    flex-direction: column;
    align-items: flex-start;
  }
}
.exam-ticket__body td.third div.flex {
  justify-content: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
@media screen and (max-width: 1024px) {
  .exam-ticket__body td.third div.flex {
    flex-direction: column;
    align-items: center;
    row-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .exam-ticket__body {
    width: 100%;
    min-width: 900px;
    margin: 5em auto 2em;
  }
}
.exam-ticket__text {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  border: 1px solid #A9AFAF;
  border-radius: 5px;
  padding: 5px 15px;
}
.exam-ticket__text:-moz-read-only {
  background-color: rgb(216, 216, 216);
}
.exam-ticket__text:read-only {
  background-color: rgb(216, 216, 216);
}
.exam-ticket__text.first {
  width: 100%;
}
.exam-ticket__text.second {
  width: 92.5%;
}
@media screen and (max-width: 1180px) {
  .exam-ticket__text.second {
    width: 89.5%;
  }
}
@media screen and (max-width: 1024px) {
  .exam-ticket__text.second {
    width: 100%;
  }
}
.exam-ticket__text.third {
  width: 68%;
}
.exam-ticket__text.limit {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 68px;
  padding: 2px 5px;
}
.exam-ticket__label {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
.exam-ticket__label.annotation {
  margin-right: 5px;
}
.exam-ticket__radio {
  vertical-align: -1px;
}
.exam-ticket__select {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 68px;
  padding: 2px 0;
}
.exam-ticket__unit {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  vertical-align: text-top;
  position: absolute;
  right: 19px;
  bottom: 5px;
}
@media screen and (max-width: 1080px) {
  .exam-ticket__unit {
    right: 10px;
  }
}
@media screen and (max-width: 960px) {
  .exam-ticket__unit {
    right: 0;
  }
}
.exam-ticket__ico {
  width: 20px;
  height: 27px;
  cursor: pointer;
}
.exam-user {
  /* 受験生詳細 */
}
.exam-user-list {
  background-color: #fff;
  padding: 15px;
}
.exam-user-list__btns {
  justify-content: center;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@-moz-document url-prefix() {
  .exam-user-list__btns {
    margin: 15px 0;
  }
}
@media screen and (max-width: 520px) {
  .exam-user-list__btns {
    flex-direction: column;
    row-gap: 10px;
    align-items: center;
  }
}
.exam-user-list__btn {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  border-radius: 100vh;
  width: 157px;
  padding: 1px 0;
}
.exam-user-list__btn.current {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100vh;
}
@media screen and (max-width: 520px) {
  .exam-user-list__btn {
    width: 90%;
  }
}
.exam-user-list__form {
  background-color: #EEEEEE;
  padding: 10px 20px;
  justify-content: space-between;
  align-items: center;
}
.exam-user-list__form.profile {
  justify-content: flex-start;
}
@media screen and (max-width: 600px) {
  .exam-user-list__form.profile {
    row-gap: 10px;
  }
}
.exam-user-list__label {
  margin-right: 15px;
}
.exam-user-list__label.check {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  display: inline-block;
  margin-bottom: 15px;
}
.exam-user-list__label.text {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .exam-user-list__label.name {
    margin-top: 10px;
    display: inline-block;
  }
}
@media screen and (max-width: 520px) {
  .exam-user-list__label.number {
    margin-top: 10px;
    display: inline-block;
  }
}
.exam-user-list__text {
  width: 152px;
  padding: 4px 15px;
  border: 1px solid #A9AFAF;
  border-radius: 5px;
}
.exam-user-list__submit {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  padding: 9px 0;
  width: 116px;
  margin-top: 10px;
}
@media screen and (max-width: 520px) {
  .exam-user-list__submit {
    width: 90%;
    margin: 10px auto 0;
  }
}
.exam-user-list__submit.profile {
  margin-left: auto;
  margin-top: 0;
}
@media screen and (max-width: 960px) {
  .exam-user-list__wrap {
    width: 100%;
    margin: 0 auto;
    overflow-x: scroll;
  }
}
.exam-user-list__body {
  border-spacing: 0;
  border-collapse: collapse;
  margin-top: 15px;
  table-layout: fixed;
}
.exam-user-list__body--sub {
  border-spacing: 0;
  border-collapse: collapse;
  margin: 0;
}
.exam-user-list__body--sub > thead th {
  padding: 0;
  width: 1%;
}
.exam-user-list__body--sub > thead th.first {
  border-left: none;
}
.exam-user-list__body--sub > thead th.last {
  border-right: none;
}
.exam-user-list__body > thead {
  background-color: #dedede;
}
.exam-user-list__body > thead th {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  padding: 5px 0;
  border: 1px solid #A9AFAF;
  border-bottom: none;
}
.exam-user-list__body > thead th.no-padding {
  padding: 0;
}
.exam-user-list__body > thead th.number {
  width: 66px;
}
.exam-user-list__body > thead th.name {
  width: 178px;
}
.exam-user-list__body > thead th.name.profile {
  width: 17%;
}
.exam-user-list__body > thead th.date {
  width: 108px;
}
.exam-user-list__body > thead th.date.profile {
  width: 13%;
}
.exam-user-list__body > thead th.tel.profile {
  width: 11.7%;
}
.exam-user-list__body > thead th.email.profile {
  width: 24.5%;
}
.exam-user-list__body > thead th.vested {
  width: 83px;
}
.exam-user-list__body > thead th.vested.profile {
  width: 12.5%;
}
.exam-user-list__body > thead th.judgment {
  width: 35px;
}
.exam-user-list__body > thead th.icon {
  width: 36px;
}
.exam-user-list__body > tbody td {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  border: 1px solid #A9AFAF;
  padding: 4px 10px;
}
.exam-user-list__body > tbody td.no-padding {
  padding: 4px 0;
  width: 1.6%;
}
.exam-user-list__body > tbody td.small-padding {
  padding: 4px 3px;
  font-size: clamp(1rem, 0.98rem + 0.1vw, 1.1rem);
}
@media screen and (max-width: 1024px) {
  .exam-user-list__body > tbody td {
    padding: 4px 10px;
  }
}
.exam-user-list__body > tbody td.name-value ruby {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  position: relative;
  top: 4px;
  ruby-align: start;
  /* firefox対策 */
}
@-moz-document url-prefix() {
  .exam-user-list__body > tbody td.name-value ruby {
    top: 0;
    ruby-align: start;
  }
}
.exam-user-list__body > tbody td.name-value ruby rb {
  display: inline-block;
  width: initial;
}
.exam-user-list__body > tbody td.name-value ruby rb:nth-of-type(2) {
  padding-left: 5px;
}
@-moz-document url-prefix() {
  .exam-user-list__body > tbody td.name-value ruby rb:nth-of-type(2) {
    padding-left: 5px;
  }
}
@-moz-document url-prefix() {
  .exam-user-list__body > tbody td.name-value ruby rb {
    width: initial;
  }
}
.exam-user-list__body > tbody td.name-value ruby rt {
  font-weight: normal;
  transform: translateY(4px);
}
.exam-user-list__body > tbody td.name-value ruby rt:nth-of-type(2) {
  padding-left: 10px;
}
@-moz-document url-prefix() {
  .exam-user-list__body > tbody td.name-value ruby rt {
    position: relative;
    top: 5px;
    ruby-align: start;
  }
}
.exam-user-list__body > tbody td span.grade-name {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  vertical-align: middle;
}
.exam-user-list__body > tbody.anzan tr:nth-child(even) {
  background-color: #FFEBFB;
}
.exam-user-list__body > tbody.syuzan tr:nth-child(even) {
  background-color: #F0FFFC;
}
.exam-user-list__body > tbody.user-profile tr:nth-child(even) {
  background-color: #ECF4D9;
}
@media screen and (max-width: 960px) {
  .exam-user-list__body {
    width: 100%;
    min-width: 900px;
  }
}
.exam-user-list__name {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
}
.exam-user-list__date {
  font-size: 1rem;
}
.exam-user-list__date.expired {
  color: #B90E15;
}
.exam-user-list__ico {
  width: 21px;
  height: 21px;
  margin: 0 auto;
}
.exam-user-list__ico--photo {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: -1px;
  margin-right: 4px;
}
.exam-user-head {
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #707070;
}
.exam-user-head--before {
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 59%;
}
@media screen and (max-width: 768px) {
  .exam-user-head--before {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .exam-user-head--before .exam-heading {
    width: 100%;
  }
}
.exam-user-head--after {
  align-items: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
  width: 40%;
  justify-content: flex-end;
  -moz-column-gap: 25px;
       column-gap: 25px;
}
@media screen and (max-width: 768px) {
  .exam-user-head--after {
    width: 100%;
  }
}
.exam-user-head__label {
  color: #A9AFAF;
}
@-moz-document url-prefix() {
  .exam-user-head__label {
    font-size: 10px;
    margin: 0;
  }
}
.exam-user-head__ico {
  display: inline-block;
  width: 10px;
  height: 10px;
  vertical-align: -1px;
}
.exam-user-head__btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  width: 132px;
  padding: 5px 0;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .exam-user-head {
    flex-direction: column;
  }
}
.exam-user-detail__upper {
  margin-top: 20px;
  justify-content: space-between;
}
.exam-user-detail__upper--before {
  width: 53%;
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .exam-user-detail__upper--before {
    width: 100%;
  }
}
.exam-user-detail__upper--after {
  width: 42%;
}
@media screen and (max-width: 600px) {
  .exam-user-detail__upper--after {
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  .exam-user-detail__upper {
    flex-direction: column;
    row-gap: 20px;
  }
}
.exam-user-detail__middle {
  margin-top: 20px;
}
.exam-user-detail__middle dt, .exam-user-detail__middle dd {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.exam-user-detail__middle dt {
  font-weight: bold;
  float: left;
  padding-left: 15px;
}
.exam-user-detail__middle dd {
  margin-left: 150px;
  word-break: break-all;
}
.exam-user-detail__middle dd.empty {
  height: 26px;
}
.exam-user-detail__middle div.flex {
  justify-content: space-between;
  padding-right: 15px;
  align-items: center;
}
.exam-user-detail__middle div.flex > dl.long {
  width: 55%;
}
@media screen and (max-width: 600px) {
  .exam-user-detail__middle div.flex > dl.long {
    width: initial;
  }
}
.exam-user-detail__middle div.flex > dl.short {
  width: 45%;
}
@media screen and (max-width: 600px) {
  .exam-user-detail__middle div.flex > dl.short {
    width: initial;
  }
}
.exam-user-detail__middle div.flex > dt {
  float: left;
}
.exam-user-detail__lower {
  margin-top: 20px;
  border-collapse: collapse;
}
.exam-user-detail__lower th, .exam-user-detail__lower td {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  border: 1px solid #A9AFAF;
}
.exam-user-detail__lower th {
  font-weight: bold;
}
.exam-user-detail__lower thead th {
  background-color: #FFEBFB;
  width: 28%;
}
.exam-user-detail__lower thead th.short {
  width: 16%;
}
.exam-user-detail__lower thead.syuzan th {
  background-color: #F0FFFC;
}
.exam-user-detail__lower tbody th {
  background-color: #EEEEEE;
  padding: 6px 0;
}
.exam-user-detail__lower--soroban {
  margin-top: 20px;
  border-collapse: collapse;
}
.exam-user-detail__lower--soroban td {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
  border: 1px solid #A9AFAF;
  text-align: center;
}
.exam-user-detail__lower--soroban tr.first td {
  background-color: #F0FFFC;
}
.exam-user-detail__lower--soroban tr.first td.first {
  width: 13.5%;
}
.exam-user-detail__lower--soroban tr.first td:not(.first) {
  width: 10%;
}
.exam-user-detail__lower--soroban tr:not(.first) td.heading {
  background-color: #eee;
  padding: 6px 0;
}
.exam-user-detail__photo {
  width: 47%;
}
.exam-user-detail__photo-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #707070;
  aspect-ratio: 91/121;
}
.exam-user-detail__photo-wrap img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.exam-user-detail__title {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  margin-top: 5px;
}
.exam-user-detail__ico {
  width: 10px;
  height: 10px;
  display: inline-block;
  vertical-align: -1px;
}
.exam-user-detail__photo-date {
  text-align: center;
  margin-top: 5px;
}
.exam-user-detail__photo-date.expired {
  color: #B90E15;
}
.exam-user-detail__name {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  padding-left: 5px;
  display: ruby;
  margin-top: 5px;
}
.exam-user-detail__name span {
  margin-left: 15px;
}
.exam-user-detail__name rt {
  font-weight: normal;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.exam-user-detail__name rt span {
  margin-left: 15px;
  font-weight: normal;
}
@media screen and (max-width: 960px) {
  .exam-user-detail__name {
    margin-top: 10px;
    text-align: center;
  }
}
.exam-user-detail__data {
  margin-top: 25px;
}
.exam-user-detail__data > dt, .exam-user-detail__data dd {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.exam-user-detail__data > dt {
  font-weight: bold;
  float: left;
  padding-left: 15px;
}
.exam-user-detail__data > dd {
  margin-left: 115px;
}
.exam-user-detail__data > dd.empty {
  height: 25px;
}
.exam-user-detail__data > dd.profile {
  margin-left: 123px;
}
.exam-user-detail__line {
  margin: 15px 0;
}
@media screen and (max-width: 400px) {
  .exam-user-detail__form {
    width: 100%;
  }
}
.exam-user-detail .basic-footer {
  margin-top: 60px !important;
}
.exam-csv {
  width: 73%;
  margin: 0 auto;
  margin-top: -60px;
}
.exam-csv__heading {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  border-left: 5px solid #009CE5;
  padding-left: 10px;
}
.exam-csv__btns {
  justify-content: space-between;
}
@media screen and (max-width: 600px) {
  .exam-csv__btns {
    flex-direction: column;
    row-gap: 15px;
  }
}
.exam-csv__btn--download {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 48%;
  padding: 8.5px 0;
}
@media screen and (max-width: 600px) {
  .exam-csv__btn--download {
    width: 100%;
  }
}
.exam-csv__btn--upload {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  padding: 8.5px 0;
  width: 48%;
}
.exam-csv__btn--upload > input[type=file] {
  display: none;
}
@media screen and (max-width: 600px) {
  .exam-csv__btn--upload {
    width: 100%;
  }
}
.exam-csv__form input[type=submit] {
  display: none;
}
@media screen and (max-width: 768px) {
  .exam-csv__form {
    width: 100%;
  }
}
.exam-csv .basic-footer {
  justify-content: flex-end;
  margin-top: 35px !important;
}
@media screen and (max-width: 520px) {
  .exam-csv {
    margin-top: 0;
  }
}
.exam-config {
  background-color: #fff;
  padding: 15px;
  height: 100vh;
}
.exam-config__body {
  margin-top: 10px;
}
.exam-config__heading {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  border-left: 5px solid #009CE5;
  padding-left: 10px;
}
.exam-config__links {
  margin-top: 30px;
  -moz-column-gap: 65px;
       column-gap: 65px;
}
@media screen and (max-width: 400px) {
  .exam-config__links {
    row-gap: 10px;
  }
}
.exam-config__link {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  color: #009CE5;
  text-decoration: underline;
}

/* 時間割・成績アップロードフォームスタイル */
#timetableModal, #resultModal {
  position: relative;
  /* dropifyカスタマイズ */
}
#timetableModal .modal__heading, #resultModal .modal__heading {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  border-bottom: none;
  text-align: left;
}
#timetableModal .dropify-wrapper, #resultModal .dropify-wrapper {
  background-color: #EEEEEE;
}
#timetableModal .dropify-wrapper.touch-fallback, #resultModal .dropify-wrapper.touch-fallback {
  height: 196px !important;
}
#timetableModal .dropify-txt--big, #resultModal .dropify-txt--big {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: bold;
  position: absolute;
  z-index: 1;
  text-align: center;
  right: 0;
  left: 0;
  top: 15%;
}
#timetableModal .dropify-txt--small, #resultModal .dropify-txt--small {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  position: absolute;
  z-index: 1;
  text-align: center;
  right: 0;
  left: 0;
  top: 35%;
}
#timetableModal .dropify-btn, #resultModal .dropify-btn {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  position: absolute;
  right: 0;
  left: 0;
  bottom: 35%;
  width: 210px;
  z-index: 1;
  border-radius: 100vh;
  padding: 9px 0;
  margin: 0 auto;
}
#timetableModal .dropify-btn--cancel, #resultModal .dropify-btn--cancel {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
  position: relative;
  padding-left: 25px;
}
#timetableModal .dropify-btn--cancel::before, #resultModal .dropify-btn--cancel::before {
  content: "";
  background: url("/images/ico_cancel.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 17px / 2);
  left: 0;
}
#timetableModal .dropify-message, #resultModal .dropify-message {
  display: none;
}
#timetableModal .dropify-footer, #resultModal .dropify-footer {
  margin-top: 40px;
  justify-content: center;
  -moz-column-gap: 80px;
       column-gap: 80px;
}
@media screen and (max-width: 400px) {
  #timetableModal .dropify-footer, #resultModal .dropify-footer {
    -moz-column-gap: 10px;
         column-gap: 10px;
  }
}
#timetableModal .dropify-submit, #resultModal .dropify-submit {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  display: block;
  width: 173px;
  padding: 9px 0;
}
#timetableModal .dropify-preview, #resultModal .dropify-preview {
  background-color: initial;
}
#timetableModal .dropify-render, #timetableModal .dropify-infos, #timetableModal .dropify-clear, #resultModal .dropify-render, #resultModal .dropify-infos, #resultModal .dropify-clear {
  display: none;
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* 基本スタイル */
* {
  font-size: 62.5%;
  box-sizing: border-box;
  line-height: 1.5;
  color: #333;
}

body, html {
  margin: 0;
  height: 100%;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
ul,
li,
option,
span,
label,
input,
dt,
dd,
rb,
strong {
  font-size: 1em;
}

a {
  text-decoration: none;
  display: block;
}

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

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

figure {
  margin: 0;
}

table {
  width: 100%;
}

/* 基本カラー */
/* 基本クラス */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.contents {
  display: contents;
}

.text-center {
  text-align: center;
}

.break-all {
  word-break: break-all;
}

.pointer-events-none {
  pointer-events: none;
}

.wrap {
  width: min(95%, 1120px);
  margin: 0 auto;
}

.basic-footer {
  justify-content: space-between;
}
.basic-footer .btn-cancel {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
  position: relative;
  padding-left: 25px;
}
.basic-footer .btn-cancel::before {
  content: "";
  background: url("/images/ico_cancel.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 17px / 2);
  left: 0;
}
.basic-footer .btn-light-blue {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  width: 116px;
  padding: 8px 0;
  background-color: #fff;
}
.basic-footer .btn-light-blue-fill {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  width: 116px;
  padding: 8px 0;
}
.basic-footer .btn-red {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
  border: 1px solid #B90E15;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  width: 116px;
  padding: 8px 0;
}
.basic-footer div.flex {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm {
    flex-direction: column;
    align-items: baseline;
    row-gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm div.flex {
    width: 100%;
    justify-content: center;
  }
}

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

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

@media screen and (max-width: 600px) {
  .w-600-grid {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  .w-600-grid.confirm {
    display: grid;
  }
}

.break-all {
  word-break: break-all;
}

.w-full {
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-50 {
  padding-bottom: 50px;
}

.justify-end {
  justify-content: flex-end;
}

.text-16 {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}

.font-normal {
  font-weight: normal !important;
}

.font-bold {
  font-weight: bold;
}

/* エラーメッセージ */
.err-msg {
  margin: 3px 0 15px;
  text-align: left;
}
.err-msg li {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  color: #B90E15;
  margin-bottom: 5px;
}
.err-msg.sp li {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
.err-msg.file {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  color: #B90E15;
}

/* パンくず */
.bread {
  background-color: #EEEEEE;
  padding: 11px 0 11px 30px;
}
.bread__page {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #A9AFAF;
}
.bread__page.home {
  color: #009CE5;
}

/* 各ページ基本wrap */
.page-wrap {
  background-color: #E6F1FE;
  padding-top: 12px;
  padding-bottom: 30px;
}
.page-wrap.no-b-padding {
  padding-bottom: 0;
}

/* 各画面のメッセージ部分(pc用) */
.msg {
  max-width: 551px;
  margin: 0 auto;
  padding-top: 94px;
}
.msg.sm-padding {
  padding-top: 30px;
}
.msg__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.msg__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  line-height: 1.8;
}
.msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 233px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 170px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill.sm-margin {
  margin-top: 40px;
}

/* 各画面のメッセージ部分(sp用) */
.sp-msg {
  padding-top: 80px;
}
.sp-msg.no-padding {
  padding-top: 20px;
}
.sp-msg.has-padding-b {
  padding-bottom: 30px;
}
.sp-msg__heading {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.sp-msg__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  line-height: 1.8;
  margin-top: 30px;
}
.sp-msg__txt.caution {
  color: #B90E15;
}
.sp-msg__txt strong {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
}
.sp-msg__link {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sp-msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: 265px;
  padding: 6px 0;
  margin: 87px auto 0;
}

/* Dropifyカスタマイズ */
.dropify-wrapper {
  position: relative;
  border: none;
  background-color: #eee;
  aspect-ratio: 61/38;
}
.dropify-wrapper::before {
  content: "";
  background-image: linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px);
  background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.dropify-wrapper .dropify-message {
  position: initial;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropify-wrapper .dropify-message .file-icon {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.dropify-wrapper .dropify-message .file-icon::before {
  content: none !important;
}
.dropify-wrapper .dropify-message .file-icon p span {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

/* 特商法ページ */
.tokushoho {
  padding-top: 80px;
}
.tokushoho__heading {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-weight: bold;
}
.tokushoho__body {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.tokushoho__body dd {
  margin-bottom: 20px;
}
.tokushoho__body dd.small-mb {
  margin-bottom: 5px;
}
.tokushoho__link {
  color: #009CE5;
  text-decoration: underline;
  word-break: break-all;
  display: inline-block;
}

/* パスワード欄の目のアイコン */
.password-wrap {
  position: relative;
}
@media screen and (min-width: 769px) {
  .password-wrap.not-login {
    max-width: 352px;
    margin: 0 auto;
  }
}
.password-ico {
  width: 35px;
  height: 19px;
  position: absolute;
  right: 10px;
  top: calc(50% - 19px / 2);
}
@media screen and (min-width: 769px) {
  .password-ico {
    right: 110px;
  }
}
@media screen and (min-width: 769px) {
  .password-ico.not-login {
    right: 10px;
  }
}

/* フッターをページ下部に固定 */
#mainContainer {
  position: relative;
  min-height: 100%;
}

.admin-main {
  padding-bottom: 65px;
}

.user-main {
  padding-bottom: 31px;
}

/* csv生成中＆アップロード中画面 */
.upload-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
}
.upload-screen__contents {
  width: 50%;
}
.upload-screen__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.upload-screen__ico {
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.upload-screen__ico img {
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ページネーション */
.pagination {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: #fff;
  padding-bottom: 20px;
}
.pagination li:not(.prev, .next) {
  border: 1px solid #009CE5;
  padding: 0 7.5px;
  margin-top: 8px;
}
.pagination li:not(.prev, .next) a {
  color: #009CE5;
}
.pagination li.active {
  background-color: #eeeeee;
  border: 1px solid #A9AFAF;
}
.pagination li.active span {
  color: #A9AFAF;
}
.pagination li.prev, .pagination li.next {
  font-size: clamp(3rem, 2.96rem + 0.2vw, 3.2rem);
}
.pagination li.prev.disabled span, .pagination li.next.disabled span {
  color: #A9AFAF;
}
.pagination li.prev:not(.disabled) a, .pagination li.next:not(.disabled) a {
  color: #009CE5;
}
.pagination li.element {
  border: none;
}
.pagination li.element span {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  color: #009CE5;
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* モーダル用 */
.modal {
  padding: 30px;
}
.modal .btn-cancel {
  margin-left: 10px;
}
.modal .basic-footer {
  margin-top: 20px;
}
.modal__heading {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: normal;
  text-align: center;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  position: relative;
}
.modal__label {
  font-size: clamp(1rem, 0.98rem + 0.1vw, 1.1rem);
  position: absolute;
  left: 0;
  top: 5px;
  background-color: #B90E15;
  color: #fff;
  width: 69px;
  border-radius: 100vh;
  padding: 2px 0;
}
@media screen and (max-width: 520px) {
  .modal__label {
    position: initial;
    display: block;
  }
}
.modal__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  margin: 30px 0 100px;
}
.modal__txt b {
  font-size: 1em;
}
@media screen and (max-width: 520px) {
  .modal__txt {
    margin-bottom: 30px;
  }
}
.modal__body {
  margin-top: 10px;
  border-collapse: separate;
  border-spacing: 0 30px;
}
@media screen and (max-width: 600px) {
  .modal__body tr {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 15px;
  }
}
.modal__body th {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: normal;
  width: 26%;
  text-align: left;
  padding-left: 10px;
}
@media screen and (max-width: 600px) {
  .modal__body th {
    padding-left: 0;
    width: 100%;
  }
}
.modal__body td {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
@media screen and (max-width: 600px) {
  .modal__body td {
    width: 100%;
  }
}
.modal__body td.annotation {
  padding-left: 10px;
}
@media screen and (max-width: 520px) {
  .modal__datetime {
    display: block;
  }
}
@media screen and (max-width: 520px) {
  .modal__wavy {
    padding-left: 30px;
  }
}
@media screen and (max-width: 520px) {
  .modal .basic-footer {
    flex-direction: column;
    margin-top: 0;
    row-gap: 10px;
    align-items: center;
  }
}
@media screen and (max-width: 520px) and (max-width: 400px) {
  .modal .basic-footer input {
    width: 100%;
  }
}
@media screen and (max-width: 520px) and (max-width: 400px) {
  .modal .basic-footer button.btn-light-blue {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  .modal .basic-footer div.flex {
    flex-direction: column;
    row-gap: 10px;
    width: 100%;
  }
  .modal .basic-footer div.flex a {
    width: 100%;
  }
}
@media screen and (max-width: 520px) {
  .modal .btn-cancel {
    margin-right: auto;
  }
}
@media screen and (max-width: 520px) {
  .modal {
    padding: 10px;
  }
}
.modal-list {
  margin-bottom: 100px;
}
.modal-list__item {
  border-bottom: 1px solid #A9AFAF;
  padding: 15px 0;
}
.modal-list__item li.first {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  width: 40%;
  padding-left: 10px;
}
.modal-list__item li.second {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  width: 60%;
}
.modal-list__item li.third {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 100%;
  margin-top: 10px;
  padding-left: 10px;
}

/* modaal部分カスタム */
.modaal-inner-wrapper {
  display: flex !important;
  justify-content: center;
  align-items: center;
}
.modaal-container {
  width: min(95%, 757px) !important;
}
.modaal-iframe-elem {
  max-height: 70vh !important;
}

/* チケット確認用モーダル */
.ticket-modal {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  width: min(100%, 757px);
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ticket-modal iframe {
  width: 100%;
  max-height: 70vh;
  background-color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .ticket-modal iframe {
    width: 95%;
  }
}
.ticket-modal__overlay {
  background: rgb(0, 0, 0);
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

/* 検定用モーダル */
.exam-modal {
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  width: min(100%, 757px);
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.exam-modal iframe {
  width: 100%;
  max-height: 70vh;
  background-color: #fff;
  margin: 0 auto;
}
@media screen and (max-width: 960px) {
  .exam-modal iframe {
    width: 95%;
  }
}
.exam-modal__overlay {
  background: rgb(0, 0, 0);
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}

/* 顔写真条件確認用モーダル */
.face-photo-modal {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  z-index: 9999;
  position: fixed;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  margin: 0 auto;
  width: min(95%, 1000px);
  height: 70%;
  padding: 30px 10px;
  overflow-y: scroll;
  background-color: #fff;
}
.face-photo-modal__overlay {
  background: rgb(0, 0, 0);
  opacity: 0.5;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
}
.face-photo-modal__heading {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  margin: 0;
  text-align: center;
  padding-bottom: 15px;
  border-bottom: 1px solid #707070;
}
.face-photo-modal__item {
  margin-bottom: 5px;
}
.face-photo-modal__btns {
  margin-top: 50px;
  justify-content: center;
  align-items: center;
}
.face-photo-modal__btn.cancel {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
  position: relative;
  padding-left: 25px;
}
.face-photo-modal__btn.cancel::before {
  content: "";
  background: url("/images/ico_cancel.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 17px / 2);
  left: 0;
}
.face-photo-modal__btn.upload {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 150px;
  padding: 5px 0;
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* 基本スタイル */
* {
  font-size: 62.5%;
  box-sizing: border-box;
  line-height: 1.5;
  color: #333;
}

body, html {
  margin: 0;
  height: 100%;
}

p,
a,
h1,
h2,
h3,
h4,
h5,
ul,
li,
option,
span,
label,
input,
dt,
dd,
rb,
strong {
  font-size: 1em;
}

a {
  text-decoration: none;
  display: block;
}

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

img {
  width: 100%;
  vertical-align: bottom;
  display: block;
}

figure {
  margin: 0;
}

table {
  width: 100%;
}

/* 基本カラー */
/* 基本クラス */
.flex {
  display: flex;
  flex-wrap: wrap;
}

.contents {
  display: contents;
}

.text-center {
  text-align: center;
}

.break-all {
  word-break: break-all;
}

.pointer-events-none {
  pointer-events: none;
}

.wrap {
  width: min(95%, 1120px);
  margin: 0 auto;
}

.basic-footer {
  justify-content: space-between;
}
.basic-footer .btn-cancel {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  cursor: pointer;
  font-weight: bold;
  background-color: transparent;
  border: none;
  position: relative;
  padding-left: 25px;
}
.basic-footer .btn-cancel::before {
  content: "";
  background: url("/images/ico_cancel.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 17px;
  height: 17px;
  position: absolute;
  top: calc(50% - 17px / 2);
  left: 0;
}
.basic-footer .btn-light-blue {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  width: 116px;
  padding: 8px 0;
  background-color: #fff;
}
.basic-footer .btn-light-blue-fill {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  width: 116px;
  padding: 8px 0;
}
.basic-footer .btn-red {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
  border: 1px solid #B90E15;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  background-color: #fff;
  width: 116px;
  padding: 8px 0;
}
.basic-footer div.flex {
  -moz-column-gap: 20px;
       column-gap: 20px;
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm {
    flex-direction: column;
    align-items: baseline;
    row-gap: 15px;
  }
}
@media screen and (max-width: 400px) {
  .basic-footer.confirm div.flex {
    width: 100%;
    justify-content: center;
  }
}

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

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

@media screen and (max-width: 600px) {
  .w-600-grid {
    display: grid;
  }
}
@media screen and (max-width: 768px) {
  .w-600-grid.confirm {
    display: grid;
  }
}

.break-all {
  word-break: break-all;
}

.w-full {
  width: 100%;
}

.mt-0 {
  margin-top: 0;
}

.mt-40 {
  margin-top: 40px;
}

.mt-50 {
  margin-top: 50px;
}

.mb-20 {
  margin-bottom: 20px;
}

.mb-5 {
  margin-bottom: 5px;
}

.pt-20 {
  padding-top: 20px;
}

.pb-50 {
  padding-bottom: 50px;
}

.justify-end {
  justify-content: flex-end;
}

.text-16 {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}

.font-normal {
  font-weight: normal !important;
}

.font-bold {
  font-weight: bold;
}

/* エラーメッセージ */
.err-msg {
  margin: 3px 0 15px;
  text-align: left;
}
.err-msg li {
  font-size: clamp(1rem, 0.96rem + 0.2vw, 1.2rem);
  color: #B90E15;
  margin-bottom: 5px;
}
.err-msg.sp li {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
}
.err-msg.file {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  color: #B90E15;
}

/* パンくず */
.bread {
  background-color: #EEEEEE;
  padding: 11px 0 11px 30px;
}
.bread__page {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #A9AFAF;
}
.bread__page.home {
  color: #009CE5;
}

/* 各ページ基本wrap */
.page-wrap {
  background-color: #E6F1FE;
  padding-top: 12px;
  padding-bottom: 30px;
}
.page-wrap.no-b-padding {
  padding-bottom: 0;
}

/* 各画面のメッセージ部分(pc用) */
.msg {
  max-width: 551px;
  margin: 0 auto;
  padding-top: 94px;
}
.msg.sm-padding {
  padding-top: 30px;
}
.msg__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.msg__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  line-height: 1.8;
}
.msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 233px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 170px);
  margin: 100px auto 0;
  font-weight: bold;
  padding: 5px 0;
}
.msg .btn-light-blue-fill.sm-margin {
  margin-top: 40px;
}

/* 各画面のメッセージ部分(sp用) */
.sp-msg {
  padding-top: 80px;
}
.sp-msg.no-padding {
  padding-top: 20px;
}
.sp-msg.has-padding-b {
  padding-bottom: 30px;
}
.sp-msg__heading {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.sp-msg__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  line-height: 1.8;
  margin-top: 30px;
}
.sp-msg__txt.caution {
  color: #B90E15;
}
.sp-msg__txt strong {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
}
.sp-msg__link {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
.sp-msg .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: 265px;
  padding: 6px 0;
  margin: 87px auto 0;
}

/* Dropifyカスタマイズ */
.dropify-wrapper {
  position: relative;
  border: none;
  background-color: #eee;
  aspect-ratio: 61/38;
}
.dropify-wrapper::before {
  content: "";
  background-image: linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to right, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px), linear-gradient(to bottom, #707070, #707070 5px, transparent 5px, transparent 12px);
  background-size: 15px 3px, 15px 3px, 3px 15px, 3px 15px;
  background-position: left top, left bottom, left top, right top;
  background-repeat: repeat-x, repeat-x, repeat-y, repeat-y;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
}
.dropify-wrapper .dropify-message {
  position: initial;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dropify-wrapper .dropify-message .file-icon {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.dropify-wrapper .dropify-message .file-icon::before {
  content: none !important;
}
.dropify-wrapper .dropify-message .file-icon p span {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: block;
  margin-bottom: 15px;
  font-weight: bold;
}

/* 特商法ページ */
.tokushoho {
  padding-top: 80px;
}
.tokushoho__heading {
  font-size: clamp(2.2rem, 2.16rem + 0.2vw, 2.4rem);
  font-weight: bold;
}
.tokushoho__body {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.tokushoho__body dd {
  margin-bottom: 20px;
}
.tokushoho__body dd.small-mb {
  margin-bottom: 5px;
}
.tokushoho__link {
  color: #009CE5;
  text-decoration: underline;
  word-break: break-all;
  display: inline-block;
}

/* パスワード欄の目のアイコン */
.password-wrap {
  position: relative;
}
@media screen and (min-width: 769px) {
  .password-wrap.not-login {
    max-width: 352px;
    margin: 0 auto;
  }
}
.password-ico {
  width: 35px;
  height: 19px;
  position: absolute;
  right: 10px;
  top: calc(50% - 19px / 2);
}
@media screen and (min-width: 769px) {
  .password-ico {
    right: 110px;
  }
}
@media screen and (min-width: 769px) {
  .password-ico.not-login {
    right: 10px;
  }
}

/* フッターをページ下部に固定 */
#mainContainer {
  position: relative;
  min-height: 100%;
}

.admin-main {
  padding-bottom: 65px;
}

.user-main {
  padding-bottom: 31px;
}

/* csv生成中＆アップロード中画面 */
.upload-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.6);
  z-index: 2;
  display: none;
  justify-content: center;
  align-items: center;
}
.upload-screen__contents {
  width: 50%;
}
.upload-screen__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  margin: 0;
  text-align: center;
}
.upload-screen__ico {
  width: 44px;
  height: 44px;
  margin: 0 auto;
}
.upload-screen__ico img {
  border-bottom-color: transparent;
  border-radius: 50%;
  display: inline-block;
  box-sizing: border-box;
  animation: rotation 1s linear infinite;
}
@keyframes rotation {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* ページネーション */
.pagination {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  justify-content: center;
  align-items: center;
  -moz-column-gap: 10px;
       column-gap: 10px;
  background-color: #fff;
  padding-bottom: 20px;
}
.pagination li:not(.prev, .next) {
  border: 1px solid #009CE5;
  padding: 0 7.5px;
  margin-top: 8px;
}
.pagination li:not(.prev, .next) a {
  color: #009CE5;
}
.pagination li.active {
  background-color: #eeeeee;
  border: 1px solid #A9AFAF;
}
.pagination li.active span {
  color: #A9AFAF;
}
.pagination li.prev, .pagination li.next {
  font-size: clamp(3rem, 2.96rem + 0.2vw, 3.2rem);
}
.pagination li.prev.disabled span, .pagination li.next.disabled span {
  color: #A9AFAF;
}
.pagination li.prev:not(.disabled) a, .pagination li.next:not(.disabled) a {
  color: #009CE5;
}
.pagination li.element {
  border: none;
}
.pagination li.element span {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  color: #009CE5;
}

/* ブレイクポイント */
/* メディアクエリ */
/* 上下左右センタリング */
/* フォントサイズ設定 */
/* 11px */
/* 12px */
/* 13px */
/* 14px */
/* 16px */
/* 18px */
/* 20px */
/* 22px */
/* 24px */
/* 26px */
/* 28px */
/* 32px */
/* 基本ボタンデザイン */
/* 疑似要素のtop位置指定 */
/* 受験生関連ページの基本heading */
/* 基本の戻るリンク */
/* 成績確認&受験履歴 基本heading */
/* 受験生用 */
/* sp用ドロップダウン */
.user-dropdown {
  position: fixed;
  top: 66px;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1;
  display: none;
  max-width: 1200px;
  margin: 0 auto;
}
.user-dropdown__item {
  padding: 25px 0 25px 20px;
  border-bottom: 1px solid #009CE5;
}
.user-dropdown__link {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  position: relative;
  padding-left: 40px;
}
.user-dropdown__link.mypage::before {
  content: "";
  background: url("/images/ico_mypage.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 25px;
  height: 20px;
  position: absolute;
  left: 0;
  top: calc(50% - 20px / 2);
}
.user-dropdown__link.profile::before {
  content: "";
  background: url("/images/ico_profile.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 27px;
  height: 20px;
  position: absolute;
  left: 0;
  top: calc(50% - 20px / 2);
}
.user-dropdown__link.history::before {
  content: "";
  background: url("/images/ico_history.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 25px;
  height: 21px;
  position: absolute;
  left: 0;
  top: calc(50% - 21px / 2);
}
.user-dropdown__link.grades::before {
  content: "";
  background: url("/images/ico_grades.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 22px / 2);
}
.user-dropdown__link.logout::before {
  content: "";
  background: url("/images/ico_logout.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 22px;
  position: absolute;
  left: 4px;
  top: calc(50% - 22px / 2);
}

/* マイページ */
.user-mypage {
  padding-top: 100px;
}
.user-mypage__head {
  justify-content: space-between;
}
.user-mypage__heading {
  border-left: 4px solid #009CE5;
  padding-left: 10px;
  font-size: clamp(2.4rem, 2.36rem + 0.2vw, 2.6rem);
  margin: 0;
}
.user-mypage__btn {
  color: #fff;
  background-color: #707070;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #D8D8D8;
  width: 132px;
  position: relative;
  padding-left: 1em;
}
.user-mypage__btn::before {
  content: "";
  background: url("/images/ico_print.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 14px;
  position: absolute;
  left: 0.8em;
  top: calc(50% - 14px / 2);
}
.user-mypage__btn.printable {
  background-color: #009CE5;
}
.user-mypage__btn.inactive {
  border: none;
}
.user-mypage__body {
  margin: 30px 0 80px;
  row-gap: 50px;
}
.user-mypage-item {
  width: 100%;
}
.user-mypage-item__heading {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  position: relative;
  margin: 0;
  padding-left: 35px;
}
.user-mypage-item__heading.profile::before {
  content: "";
  background: url("/images/ico_profile.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  position: absolute;
  width: 26px;
  height: 20px;
  left: 0;
  top: calc(50% - 20px / 2);
}
.user-mypage-item__heading.history::before {
  content: "";
  background: url("/images/ico_history.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 25px;
  height: 21px;
  position: absolute;
  left: 0;
  top: calc(50% - 21px / 2);
}
.user-mypage-item__heading.grades::before {
  content: "";
  background: url("/images/ico_grades.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 22px;
  position: absolute;
  left: 0;
  top: calc(50% - 22px / 2);
}
.user-mypage-item__txt {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.user-mypage-item__btn {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  width: min(100%, 264px);
  margin: 45px auto 0;
  padding: 6px 0;
}

/* ユーザープロフィール */
.user-profile {
  padding-top: 20px;
}
.user-profile-data {
  margin-top: 20px;
  row-gap: 30px;
}
.user-profile-data__caution {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
}
@media screen and (min-width: 769px) {
  .user-profile-data {
    justify-content: space-between;
  }
}
.user-profile-photo {
  margin-top: 40px;
  row-gap: 40px;
}
.user-profile-photo__form {
  width: 100%;
  /* dropify関連 */
}
@media screen and (min-width: 769px) {
  .user-profile-photo__form {
    width: 48%;
  }
}
.user-profile-photo__form .dropify-preview {
  display: flex;
  justify-content: space-between;
  padding: 5px !important;
  background-color: initial;
}
.user-profile-photo__form .dropify-render {
  width: 48%;
}
.user-profile-photo__form .dropify-render img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
  top: 0 !important;
}
.user-profile-photo__form .dropify-infos {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48%;
}
.user-profile-photo__form .dropify-infos-inner {
  height: 100%;
  padding: 0 !important;
}
.user-profile-photo__form .dropify-infos-message {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  white-space: initial !important;
}
.user-profile-photo__form .dropify-filename {
  display: none;
}
.user-profile-photo__form .dropify-clear {
  display: none !important;
}
@media screen and (min-width: 769px) {
  .user-profile-photo {
    justify-content: space-between;
  }
}
.user-profile-email {
  margin-top: 50px;
}
.user-profile-password {
  margin-top: 50px;
}
.user-profile-password__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.user-profile-withdrawal {
  margin: 50px 0 80px;
}
.user-profile-withdrawal__txt {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.user-profile__heading {
  border-left: 4px solid #009CE5;
  padding-left: 10px;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: left;
  margin-bottom: 10px;
  font-weight: bold;
}
.user-profile__trigger {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #64C2EF;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 10px;
  cursor: pointer;
}
.user-profile__btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  margin: 15px auto 0;
  font-weight: bold;
  width: 210px;
  padding: 6px 0;
}
.user-profile__table {
  border-collapse: collapse;
}
.user-profile__table th, .user-profile__table td {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  padding: 4px 10px;
  border: 1px solid #A9AFAF;
}
.user-profile__table th {
  width: 40%;
  background-color: #EEEEEE;
  font-weight: normal;
  text-align: left;
}
.user-profile__table td {
  width: 60%;
}
@media screen and (min-width: 769px) {
  .user-profile__table {
    width: 48%;
  }
}

/* ユーザー退会 */
.user-withdrawal__check-area {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  text-align: center;
  margin-top: 40px;
}
.user-withdrawal__checkbox {
  opacity: 0;
}
.user-withdrawal__checkbox + label {
  position: relative;
  cursor: pointer;
}
.user-withdrawal__checkbox + label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid #707070;
  background-color: #fff;
  position: absolute;
  left: -1.3em;
  top: calc(50% - 9px);
}
@media screen and (min-width: 769px) {
  .user-withdrawal__checkbox + label::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 10px);
  }
}
.user-withdrawal__checkbox + label::after {
  content: "";
  background: url("/images/ico_check_blue.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: absolute;
  left: -1.4em;
  top: calc(50% - 5px);
  opacity: 0;
}
.user-withdrawal__checkbox:checked + label {
  position: relative;
  cursor: pointer;
}
.user-withdrawal__checkbox:checked + label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid #707070;
  position: absolute;
  left: -1.3em;
  top: calc(50% - 9px);
}
@media screen and (min-width: 769px) {
  .user-withdrawal__checkbox:checked + label::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 10px);
  }
}
.user-withdrawal__checkbox:checked + label::after {
  content: "";
  background: url("/images/ico_check_blue.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: absolute;
  left: -1.2em;
  top: calc(50% - 5px);
  opacity: 1;
}
.user-withdrawal__btn {
  color: #fff;
  background-color: #707070;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  font-weight: bold;
  background-color: #D8D8D8;
  width: 185px;
  margin: 25px auto 0;
  padding: 6px 0;
  pointer-events: none;
}
.user-withdrawal__btn.active {
  background-color: #B90E15;
  pointer-events: initial;
}
.user-withdrawal__btn.submit {
  border: none;
}
.user-withdrawal__link {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #009CE5;
  text-decoration: underline;
  width: -moz-fit-content;
  width: fit-content;
  margin: 30px auto 0;
}

/* 検定申込 */
.user-exam-entry {
  padding-top: 80px;
}
.user-exam-entry__type {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: bold;
  border: 1px solid #009CE5;
  margin-top: 0;
  align-items: center;
}
.user-exam-entry__type span {
  font-size: 0.7em;
  background-color: #009CE5;
  color: #fff;
  padding: 9px 0;
  width: 66px;
  text-align: center;
}
.user-exam-entry__type p {
  margin: 0;
  padding-left: 15px;
}
.user-exam-entry__name {
  border-left: 4px solid #009CE5;
  padding-left: 10px;
  font-size: clamp(2.4rem, 2.36rem + 0.2vw, 2.6rem);
  margin-bottom: 10px;
}
.user-exam-entry__date {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
}
.user-exam-entry__date span {
  font-weight: normal;
}
.user-exam-entry__date span.wave {
  display: inline-block;
  width: 25px;
  text-align: center;
}
.user-exam-entry__btn {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 309px;
  margin: 30px auto 0;
  padding: 9px 0;
}
.user-exam-entry-ticket {
  margin-top: 20px;
  row-gap: 20px;
  position: relative;
  border: 1px solid #009CE5;
  width: 100%;
  padding: 18px 75px 18px 25px;
}
.user-exam-entry-ticket .flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .user-exam-entry-ticket {
    width: 48%;
  }
}
.user-exam-entry-ticket__name {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: bold;
  margin: 0;
}
.user-exam-entry-ticket__price {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: bold;
  margin: 0;
}
.user-exam-entry-ticket__price span {
  font-size: 0.6em;
  font-weight: normal;
}
.user-exam-entry-ticket__annot {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 0;
  margin-top: 20px;
}
.user-exam-entry-ticket__ico {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: calc(50% - 30px / 2);
}
@media screen and (min-width: 769px) {
  .user-exam-entry-ticket {
    margin: 0 auto;
  }
}
@media screen and (min-width: 769px) {
  .user-exam-entry-ticket.pay-confirm {
    margin: 30px auto 0;
  }
}
.user-exam-entry-tickets {
  margin-top: 20px;
  margin-bottom: 50px;
  row-gap: 20px;
}
.user-exam-entry-tickets__item {
  position: relative;
  border: 1px solid #009CE5;
  width: 100%;
  padding: 18px 75px 18px 25px;
}
.user-exam-entry-tickets__item .flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .user-exam-entry-tickets__item {
    width: 48%;
  }
}
.user-exam-entry-tickets__name {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: bold;
  margin: 0;
}
.user-exam-entry-tickets__price {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: bold;
  margin: 0;
}
.user-exam-entry-tickets__price span {
  font-size: 0.6em;
  font-weight: normal;
}
.user-exam-entry-tickets__annot {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 0;
  margin-top: 20px;
}
.user-exam-entry-tickets__ico {
  width: 30px;
  height: 30px;
  position: absolute;
  right: 20px;
  top: calc(50% - 30px / 2);
}
@media screen and (min-width: 769px) {
  .user-exam-entry-tickets {
    justify-content: space-between;
  }
}
.user-exam-entry-data {
  margin-top: 15px;
}
.user-exam-entry-data .flex {
  margin-top: 15px;
}
.user-exam-entry-data .flex.noPhoto {
  justify-content: space-between;
}
.user-exam-entry-data .flex.photoExists {
  justify-content: flex-start;
  align-items: flex-start;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.user-exam-entry-data .flex .dropify-clear {
  display: none;
}
@media screen and (min-width: 769px) {
  .user-exam-entry-data .flex .face-photo-modal__btns {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .user-exam-entry-data .flex .user-profile-photo {
    width: 75%;
  }
}
.user-exam-entry-data__form {
  width: 48%;
  aspect-ratio: 53/46;
  position: relative;
}
.user-exam-entry-data__form input[type=submit] {
  display: none;
}
.user-exam-entry-data__form .dropify-wrapper {
  aspect-ratio: 53/46;
}
.user-exam-entry-data__form .file-icon {
  display: none;
}
.user-exam-entry-data__wording.flex {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  flex-direction: column;
  z-index: 1;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
  margin-top: 0;
}
.user-exam-entry-data__wording.flex p {
  margin: 0;
}
.user-exam-entry-data__wording.flex p:first-child {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.user-exam-entry-data__wording.flex p:nth-child(2) {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: bold;
}
.user-exam-entry-data__wording.flex p:nth-child(3) {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
@media screen and (min-width: 769px) {
  .user-exam-entry-data__wording.flex {
    width: 100%;
  }
}
.user-exam-entry-data__btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 25px auto 0;
  width: 221px;
  padding: 9px 0;
}
.user-exam-entry-data__photo {
  width: 25%;
  aspect-ratio: 94/119;
  border: 1px solid #707070;
}
.user-exam-entry-data__photo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.user-exam-entry__table {
  border-collapse: collapse;
}
.user-exam-entry__table th, .user-exam-entry__table td {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  padding: 4px 10px;
  border: 1px solid #A9AFAF;
}
.user-exam-entry__table th {
  width: 40%;
  background-color: #EEEEEE;
  font-weight: normal;
  text-align: left;
}
.user-exam-entry__table td {
  width: 60%;
}
.user-exam-entry-consent {
  margin-top: 25px;
}
.user-exam-entry-consent__heading {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  background-color: #EEEEEE;
  display: block;
  padding: 5px 10px;
  border: 1px solid #A9AFAF;
  font-weight: normal;
  margin: 0;
}
.user-exam-entry-consent__box {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  padding: 8px 10px;
  margin-top: 0;
  line-height: 1.8;
  border: 1px solid #707070;
  border-top: none;
  overflow-y: scroll;
  height: 108px;
}
.user-exam-entry-consent__form {
  text-align: center;
  margin-top: 70px;
}
.user-exam-entry-consent__checkbox {
  opacity: 0;
}
.user-exam-entry-consent__checkbox + label {
  position: relative;
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  cursor: pointer;
}
.user-exam-entry-consent__checkbox + label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid #707070;
  background-color: #fff;
  position: absolute;
  left: -1.3em;
  top: calc(50% - 9px);
}
@media screen and (min-width: 769px) {
  .user-exam-entry-consent__checkbox + label::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 10px);
  }
}
.user-exam-entry-consent__checkbox + label::after {
  content: "";
  background: url("/images/ico_check_blue.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: absolute;
  left: -1.2em;
  top: calc(50% - 5px);
  opacity: 0;
}
.user-exam-entry-consent__checkbox:checked + label {
  position: relative;
  cursor: pointer;
}
.user-exam-entry-consent__checkbox:checked + label::before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 14px;
  border: 1.5px solid #707070;
  position: absolute;
  left: -1.3em;
  top: calc(50% - 9px);
}
@media screen and (min-width: 769px) {
  .user-exam-entry-consent__checkbox:checked + label::before {
    width: 16px;
    height: 16px;
    top: calc(50% - 10px);
  }
}
.user-exam-entry-consent__checkbox:checked + label::after {
  content: "";
  background: url("/images/ico_check_blue.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 10px;
  position: absolute;
  left: -1.3em;
  top: calc(50% - 5px);
  opacity: 1;
}
@media screen and (min-width: 769px) {
  .user-exam-entry-consent {
    width: 80%;
    margin: 25px auto 0;
  }
}
.user-exam-entry__footer {
  margin-top: 30px;
  justify-content: space-between;
}
.user-exam-entry__footer .btn-light-blue {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  padding: 9px 0;
  width: 93px;
}
.user-exam-entry__footer .btn-light-blue-fill {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  padding: 9px 0;
  width: min(60%, 221px);
}
.user-exam-entry__footer .btn-gray {
  color: #fff;
  background-color: #707070;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #A9AFAF;
  background-color: #D8D8D8;
  border: none;
  width: min(60%, 221px);
}
.user-exam-entry__footer .btn-gray.active {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
}
@media screen and (min-width: 769px) {
  .user-exam-entry__footer {
    width: 100%;
    margin: 30px auto 0px;
    justify-content: center;
    -moz-column-gap: 30px;
         column-gap: 30px;
  }
}
.user-exam-entry__txt {
  font-size: clamp(1.2rem, 1.16rem + 0.2vw, 1.4rem);
  color: #B90E15;
  text-align: right;
}
.user-exam-entry__txt--error {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  border: 1px solid #B90E15;
  position: relative;
  text-align: center;
  padding: 17px 0 17px 30px;
  margin: 45px auto 80px;
  width: min(100%, 500px);
}
.user-exam-entry__txt--error::before {
  content: "";
  background: url("/images/ico_caution.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 20px;
  height: 18px;
  position: absolute;
  left: 1em;
  top: calc(50% - 18px / 2);
}
.user-exam-entry__txt--success {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
}
.user-exam-entry__photos {
  justify-content: flex-start !important;
  -moz-column-gap: 10px;
       column-gap: 10px;
}
.user-exam-entry__photo {
  width: 25%;
  aspect-ratio: 94/119;
  border: 1px solid #707070;
}
.user-exam-entry__photo img {
  -o-object-fit: contain;
     object-fit: contain;
  height: 100%;
}
.user-exam-entry-modal {
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  margin: 0 auto;
  width: 95%;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 6;
}
.user-exam-entry-modal.inactive {
  display: none;
}
.user-exam-entry-modal__body {
  background-color: #fff;
  width: min(100%, 750px);
  padding: 30px 20px;
  z-index: 7;
  border: 1px solid #707070;
  box-shadow: 0px 7px 15px -11px #707070;
}
.user-exam-entry-modal__heading {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  font-weight: normal;
  margin: 0;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
  text-align: center;
}
.user-exam-entry-modal__txt {
  font-size: clamp(1.8rem, 1.76rem + 0.2vw, 2rem);
  margin-top: 30px;
}
.user-exam-entry-modal__btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 116px;
  padding: 9px 0;
  margin: 0 auto;
}

/* stripe決済ボタンカスタマイズ */
.stripe-wrapper {
  position: relative;
}
.stripe-btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  padding: 9px 0;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
/*  pointer-events: none;*/
}
.stripe-button-el {
  width: 100%;
}
.stripe-form {
  width: 221px;
}
@media screen and (max-width: 400px) {
  .stripe-form {
    width: 200px;
  }
}

/* 成績確認、受験履歴確認 */
.user-exam-history {
  padding: 80px 0 53px;
}
.user-exam-history-head {
  justify-content: space-between;
  border-bottom: 1px solid #707070;
  padding-bottom: 15px;
}
.user-exam-history-head__heading {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: normal;
  margin: 0;
}
.user-exam-history-head__btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 95px;
  padding-left: 20px;
}
.user-exam-history-head__btn:before {
  content: "";
  background: url("/images/ico_print.webp") no-repeat;
  background-size: contain;
  display: inline-block;
  width: 15px;
  height: 16px;
  position: absolute;
  left: 1.5em;
  top: calc(50% - 14px / 2);
}
.user-exam-history__name {
  border-left: 4px solid #009CE5;
  padding-left: 10px;
  font-size: clamp(2.4rem, 2.36rem + 0.2vw, 2.6rem);
  margin-bottom: 10px;
}
.user-exam-history__date {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
}
.user-exam-history__date span {
  font-weight: normal;
}
.user-exam-history__date span.wave {
  display: inline-block;
  width: 25px;
  text-align: center;
}
.user-exam-history-tabs__item {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #009CE5;
  font-weight: bold;
  width: 25%;
  text-align: center;
  border: 1px solid #009CE5;
  padding: 4px 0;
}
.user-exam-history-tabs__item.current {
  color: #fff;
  background-color: #009CE5;
}
.user-exam-history-rank {
  margin-top: 15px;
}
.user-exam-history-rank__heading {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  font-weight: bold;
  background-color: #A9AFAF;
  border: 1px solid #707070;
  text-align: center;
  margin: 0;
  width: 42%;
  padding: 11px 0;
}
.user-exam-history-rank__value {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: bold;
  width: 58%;
  padding-left: 15px;
  border: 1px solid #707070;
  margin: 0;
  display: flex;
  align-items: center;
}
.user-exam-history__data {
  margin-top: 5px;
  justify-content: space-between;
  row-gap: 5px;
}
.user-exam-history-judgment--dani {
  width: 60%;
}
.user-exam-history-judgment__heading {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  font-weight: bold;
  background-color: #A9AFAF;
  border: 1px solid #707070;
  text-align: center;
  margin: 0;
  width: 45%;
  padding: 11px 0;
}
.user-exam-history-judgment__heading.kyuui {
  width: 76%;
}
.user-exam-history-judgment__value--first {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(2.6rem, 2.56rem + 0.2vw, 2.8rem);
  font-weight: bold;
  width: 25%;
  border: 1px solid #707070;
  margin: 0;
}
.user-exam-history-judgment__value--first.kyuui {
  width: 24%;
}
.user-exam-history-judgment__value--first.pass {
  color: #B90E15;
}
.user-exam-history-judgment__value--second {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30%;
  border: 1px solid #707070;
  margin: 0;
}
.user-exam-history-judgment__value--second.pass {
  color: #B90E15;
}
.user-exam-history-judgment.kyuui {
  width: 55%;
}
.user-exam-history-vested {
  width: 38%;
  flex-direction: column;
}
.user-exam-history-vested__heading {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  font-weight: bold;
  background-color: #A9AFAF;
  border: 1px solid #707070;
  text-align: center;
  margin: 0;
}
.user-exam-history-vested__value {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #707070;
  margin: 0;
  text-align: center;
  background-color: #eee;
}
.user-exam-history-vested__value.empty {
  height: 26px;
}
.user-exam-history-vested-rank {
  width: 38%;
}
.user-exam-history-vested-rank__heading {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  font-weight: bold;
  background-color: #A9AFAF;
  border: 1px solid #707070;
  text-align: center;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
}
.user-exam-history-vested-rank__value {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 50%;
  border: 1px solid #707070;
  margin: 0;
  background-color: #eee;
}
.user-exam-history-number {
  width: 60%;
}
.user-exam-history-number.attendance {
  width: 100%;
}
.user-exam-history-number__heading {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  font-weight: bold;
  background-color: #A9AFAF;
  border: 1px solid #707070;
  text-align: center;
  margin: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45%;
  padding: 11px 0;
}
.user-exam-history-number__heading.attendance {
  width: 27%;
}
.user-exam-history-number__value {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  display: flex;
  justify-content: center;
  align-items: center;
  word-break: break-all;
  justify-content: flex-start;
  font-weight: bold;
  width: 55%;
  border: 1px solid #707070;
  margin: 0;
  padding-left: 15px;
}
.user-exam-history-number__value.kyuui {
  font-size: clamp(2rem, 1.96rem + 0.2vw, 2.2rem);
  font-weight: bold;
  display: flex;
  align-items: center;
  word-break: break-all;
}
.user-exam-history-number__value.attendance {
  width: 73%;
}
.user-exam-history-number.kyuui {
  width: 45%;
}
.user-exam-history__table {
  margin-top: 10px;
  border-collapse: collapse;
}
.user-exam-history__table thead th {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  font-weight: bold;
  background-color: #A9AFAF;
  border: 1px solid #707070;
  text-align: center;
  margin: 0;
  width: 25%;
  padding: 6px 0;
}
.user-exam-history__table tbody td {
  font-size: clamp(2.4rem, 2.36rem + 0.2vw, 2.6rem);
  border: 1px solid #707070;
  text-align: center;
  font-weight: bold;
}
.user-exam-history__table tbody td.first {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
}
.user-exam-history__table tbody td.only, .user-exam-history__table tbody td.highest {
  color: #B90E15;
}
.user-exam-history__table tbody .has-border td {
  border-bottom: 2px solid #B90E15;
}
.user-exam-history__table.kyuui {
  width: 75%;
}
.user-exam-history__table.kyuui tbody th {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  border: 1px solid #707070;
}
.user-exam-history__table.kyuui tbody th.first {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  color: #fff;
  font-weight: bold;
  background-color: #A9AFAF;
  border: 1px solid #707070;
  text-align: center;
  margin: 0;
  padding: 6px 0;
}
.user-exam-history__table.kyuui tbody th:not(.first) {
  width: 27%;
}
.user-exam-history__table.kyuui .has-border th {
  border-bottom: 2px solid #B90E15 !important;
}
.user-exam-history-exams {
  margin-top: 20px;
  row-gap: 30px;
}
.user-exam-history-exams__item {
  width: 100%;
  padding: 15px 10px;
  border: 1px solid #E0E0E0;
  box-shadow: 0px 6px 21px -10px #000000;
}
@media screen and (min-width: 769px) {
  .user-exam-history-exams__item {
    padding: 25px 10px;
  }
}
.user-exam-history-exams__head {
  -moz-column-gap: 20px;
       column-gap: 20px;
  align-items: center;
}
.user-exam-history-exams__date {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 100px;
  color: #fff;
  background-color: #009CE5;
  margin: 0;
  text-align: center;
  padding: 2px 0;
}
.user-exam-history-exams__type {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  margin: 0;
}
.user-exam-history-exams__type span {
  font-weight: bold;
}
.user-exam-history-exams__name {
  font-size: clamp(2.4rem, 2.36rem + 0.2vw, 2.6rem);
  font-weight: normal;
  margin: 15px 0 0;
}
.user-exam-history-exams__datetime {
  font-size: clamp(1.6rem, 1.56rem + 0.2vw, 1.8rem);
  padding-left: 5em;
  text-indent: -5em;
}
.user-exam-history-exams__datetime span {
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  font-weight: bold;
}
.user-exam-history-exams__wavy {
  margin: 0 5px;
}
.user-exam-history-exams__btn {
  color: #fff;
  background-color: #009CE5;
  border-radius: 5px;
  display: block;
  cursor: pointer;
  text-align: center;
  border: none;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: min(100%, 309px);
  margin: 0 auto;
  padding: 9px 0;
}
.user-exam-history__link {
  color: #009CE5;
  border: 1px solid #009CE5;
  border-radius: 5px;
  display: block;
  background-color: #fff;
  cursor: pointer;
  text-align: center;
  font-size: clamp(1.4rem, 1.36rem + 0.2vw, 1.6rem);
  width: 93px;
  padding: 9px 0;
  margin: 40px auto 0;
}
