@charset "UTF-8";
.form_btn_area .submit_btn_area {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.form_btn_area .submit_btn_area .submit_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 0.9rem;
  color: #fff;
}
.form_btn_area .submit_btn_area .submit_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: block;
  margin: auto;
  padding-top: 100%;
  width: 100%;
  height: 0;
  border-radius: 50%;
  opacity: 0;
  pointer-events: none;
  z-index: -1;
  transform: translateY(-50%) scale(0.1);
  transition: opacity 0.5s, transform 0s;
  transition-delay: 0s, 0.4s;
}
@media screen and (max-width: 480px) {
  .form_btn_area .submit_btn_area .submit_btn::after {
    content: none;
  }
}
.form_btn_area .submit_btn_area .submit_btn:not(.disabled):hover {
  color: #fff;
}
.form_btn_area .submit_btn_area .submit_btn:not(.disabled):hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1.1);
  transition-delay: 0s;
  transition: opacity 0.2s, transform 0.3s ease-in-out;
}

.order_pc_header {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 60px;
}
.order_pc_header .header_wrapper {
  margin: 0 auto;
  padding: 0;
  width: 1200px;
}
.order_pc_header .header_wrapper .main_logo {
  margin: 0;
  padding: 0;
  width: 40%;
  height: 100%;
}
.order_pc_header .header_wrapper .main_logo > a {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 60px;
}
.order_pc_header .header_wrapper .main_logo > a > img {
  -o-object-fit: contain;
     object-fit: contain;
  max-width: 100%;
  max-height: 100%;
}

.order_sp_header {
  display: none;
}

@media screen and (max-width: 480px) {
  .order_pc_header {
    display: none;
  }
  .order_sp_header {
    display: block;
    margin: 0 auto;
    padding: 0;
    width: 100%;
    height: 50px;
  }
  .order_sp_header .main_logo {
    margin: 0 auto;
    padding: 0;
    width: 94%;
    height: 100%;
  }
  .order_sp_header .main_logo > a {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    width: 60%;
    height: 50px;
  }
  .order_sp_header .main_logo > a > img {
    -o-object-fit: contain;
       object-fit: contain;
    max-width: 100%;
    max-height: 100%;
  }
}
#order_exam {
  padding: 2em 0;
}
@media screen and (max-width: 480px) {
  #order_exam {
    padding: 1em 0;
  }
}

.input_process_area {
  margin: 0 auto;
  padding: 10px 0;
  width: 100%;
  background: #f4f4f4;
  border-bottom: 1px solid #e8e8e8;
}
.input_process_area .input_process {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  width: 60%;
}
@media screen and (max-width: 480px) {
  .input_process_area .input_process {
    width: 94%;
  }
}
.input_process_area .input_process > li {
  margin: 0;
  padding: 0;
  width: 20%;
}
@media screen and (max-width: 480px) {
  .input_process_area .input_process > li:first-of-type {
    width: 18%;
  }
  .input_process_area .input_process > li:nth-of-type(2n) {
    width: 18%;
  }
  .input_process_area .input_process > li:nth-of-type(3n) {
    width: 15%;
  }
  .input_process_area .input_process > li:last-of-type {
    width: 18%;
  }
}
.input_process_area .input_process > li.separator {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 5%;
  font-size: 0.9rem;
  color: #bfbfbf;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .input_process_area .input_process > li.separator {
    width: 8%;
    font-size: 0.7rem;
  }
}
.input_process_area .input_process > li .process_cont {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
.input_process_area .input_process > li .process_cont .step_num {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  color: #b9b9b9;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .input_process_area .input_process > li .process_cont .step_num {
    font-size: 0.8rem;
  }
}
.input_process_area .input_process > li .process_cont .ja_txt {
  margin: 8px 0 0 0;
  padding: 0;
  width: 100%;
  font-size: 0.9rem;
  color: #b9b9b9;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .input_process_area .input_process > li .process_cont .ja_txt {
    font-size: 0.7rem;
  }
}
.input_process_area .input_process > li .process_cont.current .step_num {
  color: #d82121;
}
.input_process_area .input_process > li .process_cont.current .ja_txt {
  color: #d82121;
}

#form_checker {
  position: fixed;
  top: 580px;
  right: 0;
  padding: 0.5rem;
  min-width: 170px;
  font-size: 0.9rem;
  color: white;
  text-align: center;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  background: rgba(235, 107, 164, 0.8);
  z-index: 1000;
}
@media screen and (max-width: 480px) {
  #form_checker {
    top: auto;
    right: auto;
    bottom: 30px;
    left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
  }
}
#form_checker .form_check-text {
  font-size: 1rem;
  font-weight: 900;
}
#form_checker .form_check-text #check-number {
  color: #fff5a0;
  font-size: 1.3rem;
}

.form_btn_area {
  position: relative;
  margin: 60px auto 0 auto;
  padding: 0;
  width: 100%;
}
.form_btn_area .submit_btn_area {
  margin: 40px auto 0 auto;
  width: 50%;
  height: 50px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  border: none;
  background: #108C67;
  border-radius: 5px;
}
.form_btn_area .submit_btn_area .submit_btn {
  width: 100%;
  height: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  border: none;
  background: none;
}
.form_btn_area .submit_btn_area .submit_btn::after {
  background: #a90a0a;
}
.form_btn_area .submit_btn_area .submit_btn.disabled {
  background: #ccc;
  cursor: not-allowed;
}
@media screen and (max-width: 480px) {
  .form_btn_area .submit_btn_area {
    width: 100%;
    height: 40px;
  }
  .form_btn_area .submit_btn_area .btn {
    font-size: 0.9rem;
  }
}
.form_btn_area .back_btn {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  margin: 0;
  padding: 0;
  width: 12%;
}
.form_btn_area .back_btn .btn {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 40px;
  font-size: 1rem;
  color: #fff;
  background: #929292;
  border: none;
  border-radius: 5px;
}
@media (hover: hover) and (pointer: fine) {
  .form_btn_area .back_btn .btn:hover {
    background: #b0b0b0;
    transition: all 0.3s;
  }
}

/**---------------------------------------------------
* 受験申込み・合格認定証発行
*----------------------------------------------------*/
.select_info {
  margin: 0 auto 30px auto;
  padding: 30px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .select_info {
    padding: 0.5em;
  }
}
.select_info .info_title {
  position: relative;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background: #3C67A8;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .select_info .info_title {
    padding: 7px 15px;
    font-size: 1rem;
  }
}
.select_info .select_shikaku {
  margin: 0 auto;
  padding: 0 1.5em;
  width: 100%;
  background: #eef6fa;
}
@media screen and (max-width: 480px) {
  .select_info .select_shikaku {
    padding: 0 0.5em;
  }
}
.select_info .select_shikaku .select_shikaku_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1em 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 480px) {
  .select_info .select_shikaku .select_shikaku_list {
    padding: 0.7em 0;
  }
}
.select_info .select_shikaku .select_shikaku_list:last-of-type {
  border-bottom: none;
}
.select_info .select_shikaku .select_shikaku_list .shikaku_title {
  margin: 0;
  padding: 0;
  width: 50%;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  text-indent: 1.5em;
}
@media screen and (max-width: 480px) {
  .select_info .select_shikaku .select_shikaku_list .shikaku_title {
    margin-bottom: 8px;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.2rem;
    text-indent: 0;
  }
}
.select_info .select_shikaku .select_shikaku_list .cert_name {
  position: relative;
  margin: 0 1% 0 0;
  padding: 3px 5px;
  width: 10%;
  font-size: 0.9rem;
  color: #000;
  text-align: center;
  background: #d3e5ff;
}
@media screen and (max-width: 480px) {
  .select_info .select_shikaku .select_shikaku_list .cert_name {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 5px;
    width: 48%;
  }
}
.select_info .select_shikaku .select_shikaku_list .cert_price {
  position: relative;
  margin: 0;
  padding: 0;
  width: 14%;
  font-size: 1rem;
  color: #000;
}
@media screen and (max-width: 480px) {
  .select_info .select_shikaku .select_shikaku_list .cert_price {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48%;
  }
}
.select_info .select_shikaku .select_shikaku_list .cert_price::before {
  content: "発行料";
  margin-right: 8px;
  padding: 3px 8px;
  font-size: 0.8rem;
  color: #fff;
  background: #e93737;
  border-radius: 3px;
}
.select_info .select_exam {
  margin: 0 auto;
  padding: 0 1.5em;
  width: 100%;
  background: #eef6fa;
}
@media screen and (max-width: 480px) {
  .select_info .select_exam {
    padding: 0 0.5em;
  }
}
.select_info .select_exam .select_exam_list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 1em 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 480px) {
  .select_info .select_exam .select_exam_list {
    padding: 0.7em 0;
  }
}
.select_info .select_exam .select_exam_list:last-of-type {
  border-bottom: none;
}
.select_info .select_exam .select_exam_list .exam_title {
  margin: 0;
  padding: 0;
  width: 60%;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
  text-indent: 1.5em;
}
@media screen and (max-width: 480px) {
  .select_info .select_exam .select_exam_list .exam_title {
    margin-bottom: 8px;
    width: 100%;
    font-size: 0.9rem;
    line-height: 1.2rem;
    text-indent: 0;
  }
}
.select_info .select_exam .select_exam_list .exam_price {
  position: relative;
  margin: 0;
  padding: 0;
  width: 30%;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .select_info .select_exam .select_exam_list .exam_price {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    width: 100%;
  }
}
.select_info .select_exam .select_exam_list .exam_price::before {
  content: "受験料";
  margin-right: 8px;
  padding: 3px 8px;
  font-size: 0.8rem;
  color: #fff;
  background: #e93737;
  border-radius: 3px;
}
@media screen and (max-width: 480px) {
  .select_info .select_exam .select_exam_list .exam_price::before {
    padding: 2px 8px;
    font-size: 0.7rem;
  }
}

.total_price_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 10px auto 0 auto;
  padding: 0;
  width: 100%;
  height: 40px;
  background: #ffecec;
  border-radius: 5px;
}
.total_price_area .total_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 30%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #b32121;
  text-align: center;
  background: #fcdbdb;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.total_price_area .total_price {
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0;
  padding: 0 1.5em 0 0;
  width: 70%;
  font-size: 1.4rem;
  font-weight: bold;
  color: #000;
  text-align: right;
  letter-spacing: 0.08em;
}

#input-form {
  margin: 0 auto;
  padding: 0;
  width: 100%;
}
#input-form .info_area:not(:first-of-type) {
  margin-top: 20px;
}
#input-form input[type=text],
#input-form input[type=number],
#input-form input[type=tel],
#input-form input[type=email],
#input-form select,
#input-form textarea {
  padding: 5px 8px;
  font-size: 1rem;
  color: #000;
  border: 1px solid #979797;
  border-radius: 5px;
  border: 1px solid #ddd;
  box-shadow: inset 1px 4px 9px -6px rgba(0, 0, 0, 0.5);
  background: #fff;
}
#input-form input[name=full_name],
#input-form input[name=phonetic],
#input-form input[name=tel],
#input-form input[name=email] {
  width: 50%;
}
@media screen and (max-width: 480px) {
  #input-form input[name=full_name],
  #input-form input[name=phonetic],
  #input-form input[name=tel],
  #input-form input[name=email] {
    width: 100%;
  }
}
#input-form input[name=zip] {
  width: 30%;
}
@media screen and (max-width: 480px) {
  #input-form input[name=zip] {
    width: 50%;
  }
}
#input-form input[name=city],
#input-form input[name=address],
#input-form input[name=address_option] {
  width: 100%;
  background: #fff;
}
#input-form .auto-zip {
  padding: 0.5rem;
  min-width: 3rem;
  font-size: 0.9rem;
  font-weight: bold;
  color: #fff;
  text-align: center;
  background: #f78205;
  border: none;
  border-radius: 5px;
  cursor: pointer;
}
#input-form .auto-zip.disabled {
  background: #ccc;
  cursor: not-allowed;
}

.personal_info,
.exam_info,
.cert_info,
.payment_info,
.order_msg {
  margin: 0 auto;
  padding: 30px;
  width: 100%;
  background: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 480px) {
  .personal_info,
  .exam_info,
  .cert_info,
  .payment_info,
  .order_msg {
    padding: 0.5em;
  }
}
.personal_info .info_title,
.exam_info .info_title,
.cert_info .info_title,
.payment_info .info_title,
.order_msg .info_title {
  position: relative;
  margin: 0 auto;
  padding: 10px 20px;
  width: 100%;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  background: #3C67A8;
  border-radius: 5px;
}
@media screen and (max-width: 480px) {
  .personal_info .info_title,
  .exam_info .info_title,
  .cert_info .info_title,
  .payment_info .info_title,
  .order_msg .info_title {
    padding: 7px 15px;
    font-size: 1rem;
  }
}
.personal_info .info_title.required::after,
.exam_info .info_title.required::after,
.cert_info .info_title.required::after,
.payment_info .info_title.required::after,
.order_msg .info_title.required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 2%;
  transform: translateY(-50%);
  margin: 0;
  padding: 5px 15px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #D21717;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .personal_info .info_title.required::after,
  .exam_info .info_title.required::after,
  .cert_info .info_title.required::after,
  .payment_info .info_title.required::after,
  .order_msg .info_title.required::after {
    padding: 3px 10px;
    font-size: 0.8rem;
  }
}

.personal_info .exam_order_tbl {
  margin: 30px auto 0 auto;
  padding: 0;
  width: 94%;
  border-collapse: collapse;
}
@media screen and (max-width: 480px) {
  .personal_info .exam_order_tbl {
    margin-top: 20px;
    width: 98%;
  }
}
.personal_info .exam_order_tbl .in_name {
  position: relative;
  margin: 0;
  padding: 20px 0 20px 30px;
  width: 25%;
  font-size: 1rem;
  font-weight: 500;
  color: #644000;
  text-align: left;
  background: #FBF1E2;
  border-bottom: 5px solid #fff;
}
@media screen and (max-width: 480px) {
  .personal_info .exam_order_tbl .in_name {
    display: block;
    padding: 8px 0 8px 10px;
    width: 100%;
    border-bottom: none;
  }
}
.personal_info .exam_order_tbl .in_name.required::after {
  content: "必須";
  position: absolute;
  top: 50%;
  right: 10%;
  transform: translateY(-50%);
  margin: 0;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  background: #D21717;
  border-radius: 4px;
}
.personal_info .exam_order_tbl .input_area {
  margin: 0;
  padding: 20px;
  width: 75%;
  color: #000;
  border-bottom: 1px solid #f0f0f0;
}
@media screen and (max-width: 480px) {
  .personal_info .exam_order_tbl .input_area {
    display: block;
    padding: 15px 10px;
    width: 100%;
  }
}
.personal_info .exam_order_tbl .input_area:first-of-type {
  border-top: 1px solid #f0f0f0;
}
.personal_info .exam_order_tbl .input_area .in_head {
  display: inline-block;
  margin: 0 8px 0 0;
  padding: 0;
  width: 40px;
  font-size: 1rem;
  color: #000;
  text-align: right;
}
.personal_info .exam_order_tbl .input_area > select {
  padding: 5px 8px;
  border-radius: 5px;
}
.personal_info .exam_order_tbl .input_area .input_notice {
  margin: 0 0 5px 0;
  padding: 0;
  width: 100%;
  font-size: 0.9rem;
  color: #aa4521;
}

.payment_select {
  margin: 20px auto 0 auto;
  padding: 0;
  width: 100%;
  border-top: 1px solid #ddd;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
}
.payment_select .payment_item {
  margin: 0;
  padding: 12px 10px;
  width: 100%;
  font-size: 1rem;
  color: #000;
  border-bottom: 1px solid #ddd;
}
.payment_select .payment_item .payment_method {
  position: relative;
  display: block;
  height: auto;
  padding-left: 40px;
  cursor: pointer;
}
.payment_select .payment_item .payment_method::before, .payment_select .payment_item .payment_method::after {
  content: "";
  position: absolute;
  display: block;
}
.payment_select .payment_item .payment_method::before {
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  padding: 0;
  width: 26px;
  height: 26px;
  background-color: #fff;
  border-radius: 0%;
  border: 1px solid #ddd;
}
.payment_select .payment_item .payment_method::after {
  top: 26%;
  left: 8px;
  width: 16px;
  height: 10px;
  border-bottom: 3px solid #b82d2d;
  border-left: 3px solid #b82d2d;
  transform: rotate(-45deg) translateY(-26%);
  opacity: 0;
}
.payment_select .payment_item .payment_method.orico::after {
  top: 26%;
  left: 8px;
  width: 16px;
  height: 10px;
  border-bottom: 3px solid #b82d2d;
  border-left: 3px solid #b82d2d;
  transform: rotate(-45deg) translateY(-26%);
  opacity: 0;
}
@media screen and (max-width: 480px) {
  .payment_select .payment_item .payment_method.orico::after {
    top: 40%;
    transform: rotate(-45deg) translateY(-40%);
  }
}
.payment_select .payment_item .visually-hidden {
  position: absolute;
  white-space: nowrap;
  border: 0;
  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  overflow: hidden;
  height: 1px;
  width: 1px;
  margin: -1px;
  padding: 0;
}
.payment_select .payment_item input[name=payment]:checked + .payment_method::after {
  opacity: 1;
}
.payment_select .credit_info,
.payment_select .paypay_info,
.payment_select .daibiki_info {
  margin: 0 auto;
  padding: 1.5em 3em;
  width: 100%;
  background: #fafafa;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 480px) {
  .payment_select .credit_info,
  .payment_select .paypay_info,
  .payment_select .daibiki_info {
    padding: 1.5em;
  }
}
.payment_select .credit_info > h4,
.payment_select .paypay_info > h4,
.payment_select .daibiki_info > h4 {
  margin: 0 0 10px 0;
  padding: 0;
  width: 100%;
  font-size: 1rem;
  font-weight: bold;
  color: #000;
}
.payment_select .credit_info > p,
.payment_select .paypay_info > p,
.payment_select .daibiki_info > p {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 0.9rem;
  color: #000;
  line-height: 1.6rem;
}
.payment_select .credit_info .ccard_img,
.payment_select .paypay_info .ccard_img,
.payment_select .daibiki_info .ccard_img {
  margin: 10px auto 0 auto;
  padding: 0;
  width: 80%;
  overflow: hidden;
}
.payment_select .credit_info .ccard_img > img,
.payment_select .paypay_info .ccard_img > img,
.payment_select .daibiki_info .ccard_img > img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.payment_select .payment_notice {
  margin: 40px auto 0 auto;
  padding: 1em 0;
  width: 100%;
  font-size: 1rem;
  color: #ff0000;
  text-align: center;
  background: #fbe5e0;
}
@media screen and (max-width: 480px) {
  .payment_select .payment_notice {
    margin-top: 30px;
    padding: 1em;
    font-size: 0.9rem;
  }
}

.pay_select {
  margin: 20px auto 0 auto;
  padding: 0.5em 1.5em;
  width: 94%;
  font-size: 1rem;
  color: #000;
  background: #fafafa;
  border-radius: 4px;
}

.payment_notice {
  margin: 40px auto 0 auto;
  padding: 1em 0;
  width: 100%;
  font-size: 1rem;
  color: #ff0000;
  text-align: center;
  background: #fbe5e0;
}
@media screen and (max-width: 480px) {
  .payment_notice {
    margin-top: 30px;
    padding: 1em;
    font-size: 0.9rem;
  }
}

#order_complete {
  margin: 60px auto 0 auto;
  padding: 2em 1.5em;
  width: 70%;
  text-align: center;
}
@media screen and (max-width: 480px) {
  #order_complete {
    margin-top: 40px;
    padding: 1.5em 1em;
    width: 92%;
  }
}
#order_complete .section_inner {
  margin: 30px auto 0 auto;
  padding: 0;
  width: 100%;
  box-sizing: border-box;
}

.redirect-alert {
  margin: 60px auto;
  padding: 2em;
  width: 60%;
  font-size: 1rem;
  color: #000;
  text-align: center;
  line-height: 1.8rem;
  border-radius: 5px;
  background: #fdd8d8;
}
.redirect-alert .back_to_select {
  margin: 20px auto 0 auto;
  padding: 0;
  width: 100%;
}
.redirect-alert .back_to_select .back-submit-btn {
  margin: 0 auto;
  padding: 0;
  width: 60%;
  height: 50px;
  font-size: 1rem;
  color: #fff;
  border: none;
  border-radius: 5px;
  background: #cf5d5d;
}
.redirect-alert .back_to_select .back-submit-btn:hover {
  background: #ba4949;
  transition: all 0.3s ease;
}

/**
* 割引金額表示
*-----------------------------------------------*/
.discount_price_area,
.discount_price_confirm {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  height: 50px;
  background: #f0f6f8;
  border-top: 1px solid #fff;
}
.discount_price_area .discount_price_title,
.discount_price_confirm .discount_price_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 30%;
  font-size: 1rem;
  font-weight: bold;
  color: #dd1d1d;
  text-align: center;
  background: #dbedf5;
}
.discount_price_area .discount_price,
.discount_price_confirm .discount_price {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0 20px;
  width: 70%;
  font-size: 1.2rem;
  color: #dd1d1d;
  text-align: right;
}

/**
* 合計金額表示
*-----------------------------------------------*/
.exam_fee_area {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 16px auto 32px auto;
  padding: 0;
  width: 100%;
  height: 60px;
  background: #fff2f2;
  border-top: 1px solid #fff;
}
@media screen and (max-width: 480px) {
  .exam_fee_area {
    margin-bottom: 20px;
    height: 46px;
  }
}
.exam_fee_area .exam_fee_title {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
  width: 30%;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  background: #e46868;
}
.exam_fee_area .exam_fee_total {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin: 0;
  padding: 0 20px;
  width: 70%;
  font-size: 1.3rem;
  font-weight: bold;
  color: #000000;
  text-align: right;
}

/**
* クーポンコード
*-----------------------------------------------*/
.coupon_area {
  margin: 0 auto;
  padding: 0;
  width: 100%;
  border: 1px solid #ddd;
}
.coupon_area .coupon_title {
  margin: 0;
  padding: 8px 0;
  width: 100%;
  font-size: 1.1rem;
  font-weight: bold;
  color: #000;
  text-align: center;
  background: #f0f0f0;
}
.coupon_area .coupon_explain {
  margin: 0;
  padding: 8px 0;
  width: 100%;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
@media screen and (max-width: 480px) {
  .coupon_area .coupon_explain {
    padding: 8px 10px;
  }
}
.coupon_area .coupon_input_area {
  margin: 0;
  padding: 10px 0 20px 0;
  width: 100%;
  font-size: 1rem;
  color: #000;
  text-align: center;
}
.coupon_area .coupon_input_area #coupon_code {
  margin: 0;
  padding: 5px 8px;
  width: 20%;
  height: 30px;
  font-size: 1rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
@media screen and (max-width: 480px) {
  .coupon_area .coupon_input_area #coupon_code {
    width: 40%;
  }
}
.coupon_area .coupon_input_area .coupon_btn {
  margin: 0;
  padding: 5px 0;
  width: 100px;
  height: 30px;
  font-size: 0.9rem;
  color: #fff;
  text-align: center;
  border: none;
  border-radius: 4px;
  background: #f37945;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  .coupon_area .coupon_input_area .coupon_btn {
    width: 70px;
  }
}

/**
* 決済完了後の注意喚起
*----------------------------------------------*/
.payment_alert {
  margin: 10px auto 0 auto;
  padding: 1.5em;
  width: 100%;
  font-size: 1rem;
  color: #fff;
  line-height: 1.6rem;
  text-align: center;
  background: #cb3b3b;
}
@media screen and (max-width: 480px) {
  .payment_alert {
    padding: 0.7em;
  }
}
.payment_alert .emphasis {
  padding-bottom: 3px;
  border-bottom: 1px solid #fff;
}/*# sourceMappingURL=order.css.map */