@charset "utf-8";
/* ========================================================
	top.css => トップページ用CSS
======================================================== */
/*w
-----------------------------------------------------------------------------------*/
.w1000 {
  max-width: 1000px;
  margin: auto;
}
@media screen and (max-width: 1024px) {
  .w1000 {
    width: 90%;
  }
}
.bg_blue {
  background-color: #e9efff;
}
.section_ff {
  background: #fff;
  max-width: 1000px;
  padding: 3rem 5rem 4rem 5rem;
}
/*h_logo
-----------------------------------------------------------------------------------*/
.h_logo {
  height: 24px;
  margin: 10px 0 10px 5px;
}
/*h1
-------------------------------------------------------------------------------------*/
.title {
  color: #000000;
  font-size: 27px;
  margin-top: 30px;
}
.title_blue {
  color: #0064cc;
  font-size: 25px;
}
.title_black {
  color: #000000;
  font-size: 24px;
}
.title_thin {
  color: #000000;
  font-size: 18px;
  font-weight: 500;
}
.title span {
  font-size: 20px;
  font-weight: 500;
  white-space: pre;
  padding-top: 10%;
}
.title_text {
  color: #000000;
  font-size: 1.6rem;
}
/*
-----------------------------------------------------------------------------------*/
.text {
  font-size: 1.6rem;
}
.red {
  color: red;
}
/*ステップナビゲーション
---------------------------------------------------------------------------------------*/
.progressbar {
  position: relative;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.progressbar li {
  position: relative;
  list-style-type: none;
  text-align: center;
  text-transform: uppercase;
  width: 33.333%;
  color: #999999;
  font-weight: bold;
  counter-increment: steps;
}
.progressbar li:before {
  display: block;
  width: 26px;
  height: 26px;
  margin: 7px auto 20px auto;
  content: '';
  line-height: 26px;
  font-size: 12px;
  text-align: center;
  border-radius: 50%;
  background-color: #F5F5F5;
  content: counter(steps);
}
.progressbar li:after {
  position: absolute;
  z-index: -1;
  top: 15px;
  left: -50%;
  width: 100%;
  height: 2px;
  content: '';
  background-color: #F5F5F5;
}
.progressbar li:first-child:after {
  content: none;
}
.progressbar li.active, .progressbar li.complete {
  color: #0070BD;
}
.progressbar li.active:before, .progressbar li.complete:before {
  background-color: #0070BD;
  color: #FFF;
}
.progressbar li.active:after, .progressbar li.complete:after {
  background-color: #0070BD;
}
/*テーブル
-----------------------------------------------------------------------------------*/
.form_table {
  width: 100%;
  margin: 0 auto;
}
.form_table th {
  font-size: 100%;
  width: 40%;
  font-weight: bold;
}
.form_table td {
  margin-bottom: 20px;
}
.form_table th, .form_table td {
  padding: 5px 10px 5px 0;
  font-size: 1.6rem;
  display: block;
}
.tb01 {
  width: 100%;
  font-size: 1.6rem;
}
.tb01 th, .tb01 td {
  padding: 20px;
  border: solid 1px #dededf;
  box-sizing: border-box;
}
.tb01 th {
  background: #f9fafb;
  color: #000000;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .tb01 {
    width: 100%;
    /*    white-space: nowrap; */
  }
  .table_scroll {
    overflow-x: auto;
    width: 100%;
  }
}
.border_table {
  width: 100%;
  margin: 0 auto;
  border-color: #fff;
  word-break: break-all;
}
.border_table th {
  font-weight: bold;
}
.border_table th, .border_table td {
  padding: 10px;
  font-size: 1.6rem;
  border-bottom: solid 1px silver;
}
.border_table tr:last-child th, .border_table tr:last-child td {
  border-bottom: none;
}
.border_table td {
  border-left: solid 1px silver;
}
.border_table2 {
  width: 100%;
  margin: 0 auto;
  border: none;
}
.border_table2 th {
  font-weight: bold;
  width: 20%;
  word-break: break-all;
}
.border_table2 th, .border_table2 td {
  padding: 10px;
  font-size: 1.6rem;
  border-bottom: solid 1px silver;
  word-break: break-all;
}
.border_table2 tr:last-child th, .border_table2 tr:last-child td {
  border-bottom: none;
}
.border_table2 tr th:first-child, .border_table2 tr td:first-child {
  border-left: none;
}
.border_table2 td, .border_table2 th {
  border-left: solid 1px silver;
}
@media screen and (max-width: 960px) {
  .border_table2 {
    width: 700px;
  }
}
/*
-----------------------------------------------------------------------------------*/
.required {
  color: #E00;
}
.required:after {
  content: " *";
}
/*text
-----------------------------------------------------------------------------------*/
.text {
  font-size: 1.6rem;
}
.text ul:nth-child(1) {
  padding-bottom: 25%;
}
/*flex
-------------------------------------------------------------------------------------*/
.form_flex {
  display: flex;
}
.form_flex > p + div {
  margin-left: 2%;
}
.form_flex > p {
  width: 48%;
}
.form_flex > div {
  width: 50%;
}
@media screen and (max-width: 960px) {
  .form_flex {
    display: block;
  }
  .form_flex > p {
    width: auto;
  }
  .form_flex > div {
    width: auto;
  }
  .form_flex > p + div {
    margin-left: 0;
  }
}
.btn_submit_flex {
  display: flex;
}
.btn_submit_flex p + p {
  margin-left: 10px;
}
@media screen and (max-width: 960px) {
  .btn_submit_flex {
    display: block;
    text-align: center;
  }
  .btn_submit_flex p + p {
    margin-left: auto;
    margin-top: 10px;
  }
  .btn_submit_flex p {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
/*@media screen and (max-width: 960px) {
    .btn_submit_flex {
  flex-wrap: wrap;
        justify-content: center;
}
    .btn_submit_flex p:nth-child(1){
        width: 45%;
    }
    .btn_submit_flex p:nth-child(2){
        width: 45%;
    }
    .btn_submit_flex p:nth-child(3){
        width: 60%;
    }
    .btn_submit_flex .back_btn{
        width: 100%;
    }
    .btn_submit_flex .next_btn{
        width: 100%;
    }
    .btn_submit_flex .save_btn{
        width: 100%;
    }
}*/
/*
---------------------------*/
input[type="text"], input[type="number"], input[type="email"], input[type="tel"], textarea {
  width: 100%;
  border: solid 1px #000000;
  background: none;
  border-radius: 3px;
}
/*button
--------------------------------------------------------------------------------------*/
.con_btn {
  display: block;
  width: 150px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #00bf9f 0%, #00bf9f 35%, #00c8a7 0%, #00c8a7 100%);
  border-radius: 5px;
  padding: 13px 13px 13px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.con_btn:before {
  content: "";
  display: inline-block;
  width: 14%;
  height: 35px;
  margin: -3px 0 0 10px;
  background: url("../images/check.gif") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 1%;
  left: 5%;
}
.login_btn {
  border-radius: 10px;
  width: 50%;
  min-width: 150px;
  max-width: 600px;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  background: #001f62;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  position: relative;
}
.cancel_btn{
  border-radius: 10px;
  width: 50%;
  min-width: 150px;
  max-width: 600px;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  background: #e0e1e2;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #000000;
  position: relative;
}
.back_btn {
  display: block;
  width: 150px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #ec942a 0%, #ec942a 35%, #f89b2c 0%, #f89b2c 100%);
  border-radius: 5px;
  padding: 13px 13px 13px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.back_btn:before {
  content: "";
  display: inline-block;
  width: 14%;
  height: 35px;
  margin: -3px 0 0 10px;
  background: url("../images/allow_left.gif") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 1%;
  left: 5%;
}
.next_btn {
  display: block;
  width: 150px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #053791 0%, #053791 35%, #001f62 0%, #001f62 100%);
  border-radius: 5px;
  padding: 13px 13px 13px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.next_btn:before {
  content: "";
  display: inline-block;
  width: 13%;
  height: 35px;
  margin: -3px 0 0 10px;
  background: url("../images/allow_right.gif") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 4%;
  left: 6%;
}
.save_btn {
  display: block;
  width: 150px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #d5d6d7 0%, #d5d6d7 35%, #e0e1e2 0%, #e0e1e2 100%);
  border-radius: 5px;
  padding: 13px 13px 13px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #636464;
  cursor: pointer;
  position: relative;
}
.save_btn:before {
  content: "";
  display: inline-block;
  width: 10%;
  height: 35px;
  margin: -3px 0 0 10px;
  background: url("../images/save.gif") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 8%;
  left: 6%;
}
.reference_btn {
  border-radius: 10px;
  width: 100px;
  padding: 10px;
  text-align: center;
  box-sizing: border-box;
  background: #409eff;
  cursor: pointer;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  position: relative;
}
.circle_btn {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #51a5ce;
}
.circle_btn::before, .circle_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 21px;
  background: #fff;
}
.circle_btn::before {
  transform: translate(-50%, -50%) rotate(0deg);
}
.circle_btn::after {
  transform: translate(-50%, -50%) rotate(270deg);
}
.bad_btn {
  display: block;
  margin: 0 auto;
  position: relative;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: #f89b2c;
}
.bad_btn::before, .bad_btn::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3px;
  height: 21px;
  background: #fff;
}
.bad_btn::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.bad_btn::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.reload_btn {
  display: block;
  width: 150px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #0099bf 0%, #0099bf 35%, #0099bf 0%, #0099bf 100%);
  border-radius: 5px;
  padding: 13px 13px 13px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.reload_btn:before {
  content: "";
  display: inline-block;
  width: 14%;
  height: 35px;
  margin: -3px 0 0 10px;
  background: url("../images/reload.png") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 1%;
  left: 5%;
}

.first_btn {
  display: block;
  width: 150px;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgb(177, 181, 189) 0%, rgb(177, 181, 189) 35%, rgb(177, 181, 189) 0%, rgb(177, 181, 189) 100%);
  border-radius: 5px;
  padding: 13px 13px 13px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.first_btn:before {
  content: "";
  display: inline-block;
  width: 13%;
  height: 35px;
  margin: -3px 0 0 10px;
  background: url("../images/allow_right.gif") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 4%;
  left: 6%;
}

.file_input_button {
  display: block;
  width: 70px;
  height: 30px;
  box-sizing: border-box;
  background: linear-gradient(90deg, #0099bf 0%, #0099bf 35%, #0099bf 0%, #0099bf 100%);
  border-radius: 5px;
  padding: 5px 5px 5px 5px;
  text-align: center;
  font-size: 15px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.update_btn {
  display: block;
  width: 250px;
  box-sizing: border-box;
  background: linear-gradient(90deg, rgb(6, 138, 57) 0%,rgb(6, 138, 57) 35%,rgb(6, 138, 57) 0%,rgb(6, 138, 57) 100%);
  border-radius: 5px;
  padding: 13px 13px 13px 60px;
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
  cursor: pointer;
  position: relative;
}
.update_btn:before {
  content: "";
  display: inline-block;
  width: 20%;
  height: 20px;
  margin: 20px 20px 13px 0px;
  background: url("../images/allow_right.gif") no-repeat;
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  bottom: 4%;
  left: 6%;
}

.file_delete_btn {
    margin: 0 auto;
    position: relative;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: #E00;
  }
  .file_delete_btn::before, .file_delete_btn::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3px;
    height: 15px;
    background: #fff;
  }
  .file_delete_btn::before {
    transform: translate(-50%, -50%) rotate(45deg);
  }
  .file_delete_btn::after {
    transform: translate(-50%, -50%) rotate(-45deg);
  }
/*ラジオボタン
------------------------------------------------------------------------*/
.radio_list{
    display: flex;
    flex-wrap: wrap;
}
.radio_list li{
   margin-right: 1rem;
}
/*ol ul
------------------------------------------------------------------------*/
.text_disc li {
  margin-left: 2em;
}
.caution {
  font-size: 1.6rem;
}
.caution li {
  list-style-type: decimal;
   margin-left: 2em;
}
.text_disc li {
  list-style-type: disc;
  margin-left: 2em;
}
/*
-------------------------------------------------------------------------*/
.prefecture {
  cursor: pointer;
}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 5px; /* テキストボックスの下に5pxの余白を設定 */
}
