@charset "utf-8";

body{
  font-family: "Noto Sans JP";
}

/*------------------
フォーム
------------------*/
::placeholder {
  color: #999;
}
@media screen and (max-width: 1024px) {
  ::placeholder {
    font-size: 1.4rem;
  }
}

input,
button,
textarea,
select {
  width: 100%;
  border: none;
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  border: 0;
  box-shadow: none;
  font-weight: normal;
  outline: none;
  font-family: inherit;
  color:#001E3C;
}


button,
select{
  cursor: pointer;
}

input[type="tel"],
input[type="mail"],
input[type="email"],
input[type="password"],
input[type="number"],
input[type="time"],
input[type="date"],
input[type="text"] {
  display: block;
  width: 100%;
  max-width: 930px;
  font-weight: 400;
  line-height: 1.5;
  height: 60px;
  border: 1px solid #C3C0C0;
  color: #333333;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out,
  box-shadow 0.15s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1.2em;
  padding-right: 1em;
  font-size: 1.6rem;
  text-decoration: none;
  border-radius: 5px;
}

input[type="number"].size_l,
input[type="tel"].size_l,
input[type="mail"].size_l,
input[type="email"].size_l ,
input[type="password"].size_l ,
input[type="time"].size_l ,
input[type="date"].size_l ,
input[type="text"].size_l {
  max-width: 400px;
  width: 100%;
}

input[type="number"].size_m,
input[type="tel"].size_m,
input[type="mail"].size_m,
input[type="email"].size_m ,
input[type="password"].size_m ,
input[type="time"].size_m ,
input[type="date"].size_m ,
input[type="text"].size_m {
  max-width: 300px;
}

input[type="number"].size_s,
input[type="tel"].size_s,
input[type="mail"].size_s,
input[type="email"].size_s,
input[type="password"].size_s,
input[type="time"].size_s,
input[type="date"].size_s,
input[type="text"].size_s {
  width: 136px;
}


input[type="number"].size_ss,
input[type="tel"].size_ss,
input[type="mail"].size_ss,
input[type="email"].size_ss,
input[type="password"].size_ss,
input[type="time"].size_ss,
input[type="date"].size_ss,
input[type="text"].size_ss {
  width: 86px;
}

input[type="tel"]:disabled,
input[type="mail"]:disabled,
input[type="email"]:disabled,
input[type="password"]:disabled,
input[type="number"]:disabled,
input[type="time"]:disabled,
input[type="date"]:disabled,
input[type="text"]:disabled ,
textarea:disabled{
  pointer-events: none;
  cursor: default;
  color: #555;
  opacity: 0.5;
}


.date_box{
  position: relative;
  width: 300px;
  height: 50px;
  cursor: pointer;
}

.date_box.size_s{
  width: 170px;
}

.date_box>input{
  position: relative;
  display: block;
  width: 300px;
  height: 50px;
  line-height: 1.5;
  background-color: #fff;
  transition: border-color 0.15s ease-in-out,
  box-shadow 0.15s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-left: 1.2em;
  font-size: 1.6rem;
  cursor: pointer;
}

.date_box::after{
  content: '';
  position: absolute;
  top: 50%;
  margin-top: -9px;
  right: 15px;
  width: 18px;
  height: 18px;
  background-repeat: no-repeat;
  background-size: 18px;
  background-image: url(../svg/date.svg);
  z-index: 2;
  background-color:#fff;
  pointer-events: none;
}

.date_box.size_m{
  width: 200px;
}
@media screen and (max-width: 1024px) {
  .date_box>input,
  .date_box{
    width: 100%;
  }


}

textarea {
  width: 100%;
  max-width: 930px;
  height: 184px;
  line-height: 1.55;
  padding: 1em 1.2em;
  border: 1px solid #C3C0C0;
  font-size: 1.8rem;
  resize: vertical;
  border-radius: 5px;
}


textarea.size_m{
  width: 100%;
  height: 200px;
  line-height: 1.55;
}

textarea.size_s{
  width: 100%;
  height: 100px;
  line-height: 1.5;
  padding: 0.8em;
}

@media screen and (max-width: 768px) {
  textarea {
    height: 200px;
  }

  textarea {
    padding: 1em;
  }
}

.tox-tinymce {
  border: 1px solid #ddd;
  border-radius: 4px;
}


/*ラジオ*/
/*ラジオボックス*/
.radio_list{
  display: flex;
  gap:0 4%;
  flex-wrap:wrap;
  margin-bottom:0
}

.radio_box{
  position: relative;
  cursor: pointer;
  display: inline-block;
}

/* ラジオボタンを隠す */
.radio_box input[type="radio"] {
  display: none;
}

/* カスタムラジオボタンのスタイル */
.radio_box span {
  padding-left: 2em;
  position:relative;
  line-height: 1.4;
  padding-top: 5px;
  display: inline-block;
  cursor: pointer;
}

/* ラジオボタンが選択された時のスタイル */
.radio_box input[type="radio"] + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #707070;
  border-radius: 50%;
  background-color: #fff;
}

.radio_box input[type="radio"]:checked+ span::before {
  background-color: #707070;
}

.radio_box input[type="radio"]:checked + span::after {
  content: "";
  display: block;
  position: absolute;
  top: 5px;
  left: 0;
  width: 20px;
  height: 20px;
  border: 1px solid  #fff;
  background:  #fff;
  border-radius: 50%;
  transform: scale(0.5);
}

/*アップロード*/
.upload_block{
  display: flex;
  margin-bottom: 5px;
  flex-wrap:wrap;
}

.upload_block dl{
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.upload_block dl>dt{
  width: 85px;
}
.upload_block dl>dd{
  width: calc(100% - 85px);
}

.upload_block .note{
  display: block;
  width: 100%;
  margin-top: 10px;
}

.upload_block .img_list{
  display: flex;
  gap: 10px;
}
.upload_block .img_list>li{
  width: 150px;
}

.upload_button.left{
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.upload_box{
	position: relative;
	/* width: 370px; */
	max-width: 100%;
	margin-bottom: 5px;
}

.upload_box input{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	opacity: 0;
	cursor: pointer;
}

.upload_box.disabled,
.upload_box input:disabled{
  cursor: default;
}

.upload_box label{
	display: flex;
	align-items: center;
	cursor: pointer;
}

.upload_box label span:nth-child(1){
	display: block;
	border: 1px solid #ccc;
	width: 135px;
	height: 34px;
  text-align: center;
	padding-left: 0px;
	line-height: 33px;
	box-sizing: border-box;
  border-radius: 3px;
  font-size: 1.4rem;
  font-weight: bold;
  color:#333;
  background: linear-gradient(180deg, #FFFFFF 0%, #DCDBDB 100%);
}

.upload_box label span:nth-child(2){
	padding-left: 12px;
	font-size: 14px;
	white-space: nowrap;
}
@media screen and (max-width: 1280px) {
  .upload_block>div:nth-child(2){
    padding-left: 10px;
  }
}

@media screen and (max-width: 980px) {

  .upload_block{
    display: block;
  }

  .upload_block>div:nth-child(1){
    width: 100%;
    margin-bottom: 20px;
  }

  .upload_block>div:nth-child(2){
    width: 100%;
    padding-left: 0px;
  }

}

@media screen and (max-width: 768px) {

  .upload_block>div:nth-child(2) dl{
    display: block;
  }
  .upload_block>div:nth-child(2) dl>dt{
    width: 100%;
  }
  .upload_block>div:nth-child(2) dl>dd{
    width: 100%;
  }

  .upload_box label span:nth-child(1) {
    width: 110px;
    height: 36px;
    padding-left: 0px;
    text-align: center;
    line-height: 36px;
  }
}


 .drop_area{
  position: relative;
  padding: 35px 0;
  min-width: 150px;
  text-align: center;
  border:5px dashed #ddd;
}
@media screen and (max-width: 768px) {

  .drop_area{
    position: relative;
    padding: 35px 0;
    min-width: 80px;
    text-align: center;
    border:5px dashed #ddd;
  }
}

/*チェック*/
.check_list {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 0px;
  gap: 10px 30px;
}
.check_list.column{
  flex-direction: column;
}

@media screen and (max-width: 768px) {

  .check_list {
    display: block;
  }
  .check_list>li{
    margin-bottom: 15px;
  }

}
/* .check_box label {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  cursor: pointer;
  margin-right: 0;
}

.check_box label span {
  padding-left: 30px;
  display: inline-block;
}
 */

table.list td>.check_box label span {
  padding-left: 0px;
  width: 20px;
  height: 20px;
  position: relative;
  display: inline-block;
}

table.list td>.check_box label input:checked+span::after {
  top: 10px;
  left: 5px;
}

.check_box label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

.check_box label {
  position: relative;
  display: inline-block;
  font-size: 1.6rem;
  cursor: pointer;
  margin-right: 0;
}

.check_box label span {
  padding-left: 30px;
  display: inline-block;
}

.check_box label span::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 6px;
  margin-top: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 3px;
}

.check_box label input:checked+span::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 9px;
  margin-top: 0;
  left: 6px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #22AC38;
  border-bottom: 3px solid #22AC38;
  transform: rotate(41deg);
}

.check_box label input {
  position: absolute;
  left: 0;
  top: 0;
  width: 0;
  height: 0;
  opacity: 0;
  padding: 0;
}

.check_box.size_s label {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  cursor: pointer;
  margin-right: 0;
}


.check_box.size_s label span {
  padding-left: 20px;
  display: inline-block;
}

/* .check_box.size_s label input:checked+span::after {
  margin-top: -3px;
}
 */

.check_box.size_s label span::before {
  margin-top: -6px;
  width: 14px;
  height: 14px;
  border: 1px solid #999;
  background-color: #fff;
}

.check_box.size_s label input:checked+span::after {
  margin-top: -6px;
  left: 4px;
  width: 6px;
  height: 10px;
  border-right: 3px solid var(--main-color);
  border-bottom: 3px solid var(--main-color);
  transform: rotate(41deg);
}

/*セレクト*/
.select_list_wrap{
  display: flex;
  gap:20px;
  flex-wrap: wrap;
}

.select_list.size_l{
  max-width: 400px;
  width: 100%;
}

.select_box {
  position: relative;
  display: block;
  height: 30px;
  width: 100px;
  padding-left: 0px;
  overflow: hidden;
}

.select_box::before {
  content: '';
  position: absolute;
  right: 10px;
  top: 10px;
  width: 5px;
  height: 12px;
  z-index: 2;
  background: url(../svg/select_arw.svg) no-repeat 0 0 / 5px;
  pointer-events: none;
}

.select_box.disabled,
.select_box.disabled select{
  pointer-events: none;
  cursor: default;
}


.select_box > select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 2em 0 1em;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  font-size: 1.6rem;
  border-radius: 5px;
  color: #333333;
  border:1px solid #ccc;
  background: linear-gradient(#f8f8f8 0%, #e6e6e6 100%);
  border: 1px solid #cbcbcb;
  border-radius: 8px;
}

.select_box .selected>select {
  background: #fff;
}

.select_box  select:disabled {
  opacity: 0.4;
  pointer-events: none;
}

.select_box.disabled::before{
  opacity: 0.4;
}

/*セレクト*/
.select_box2 {
  position: relative;
  display: block;
  height: 60px;
  width: 300px;
  padding-left: 0px;
  overflow: hidden;
}

.select_box2::after{
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -2px;
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
  border-top: 7px solid #707070;
  z-index: 2;
  pointer-events: none;
}


.select_box2.disabled,
.select_box2.disabled select{
  pointer-events: none;
  cursor: default;
}


.select_box2 > select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 2em 0 25px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  font-size: 1.8rem;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-top-right-radius:0;
  border-bottom-right-radius:0;
  border: 1px solid #707070;
}

.select_box2 .selected>select {
  background: #fff;
}

.select_box2  select:disabled {
  color: #999999 !important;
  background: #fff !important;
  pointer-events: none;
}

/*
確認画面用
*/

.output{
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  height: 36px;
  border: 1px solid #CCCCCC;
  color: #333333;
  background-color: #fff;
  background-clip: padding-box;
  transition: border-color 0.15s ease-in-out,
  box-shadow 0.15s ease-in-out;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 4px;
  padding-left: 0.8em;
  font-size: 1.6rem;
  padding-top: 4px;
}

.output.size_m{
  width: 200px;
}
.output_textarea{
  height: 200px;
  display: block;
  width: 100%;
  font-weight: 400;
  line-height: 1.5;
  border: 1px solid #CCCCCC;
  background: #fff;
  color: #333333;
  padding: 0.8em;
}
.output_rudias{
  padding: 20px;
  border: 1px solid #CCCCCC;
  color: #333333;
  background: #fff;
  border-radius: 10px;
}

.complete .ttl{
  font-size: 3rem;
  line-height: 1.33;
  margin-bottom: 20px;
  margin: 70px auto 70px;
  text-align: center;
  font-weight: bold
}

.complete .box {
  line-height: 1.31;
  max-width: 900px;
  margin: 0 auto 70px;
  font-size: 1.8rem;
  line-height: 2.1;
}

.complete .box .msg1 strong{
  margin-bottom: 10px;
  display: block;
}

@media screen and (max-width: 1024px) {
  .complete .ttl {
    font-size: 2rem;
    margin: 50px auto 50px;
  }
  .complete .box {
    margin: 0 auto 30px;
    font-size: 1.6rem;
    line-height: 1.55;
  }
}

.error_box2{
  border-radius: 12px;
  background: #FFEEEE;
  border: 1px solid #f00;
  padding:22px 35px;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.31;
  text-align: left;
  color: #f00;
  margin: 30px 0;
}

.error_box2 ul>li{
  text-indent: -1em;
  margin-left: 1em;
  line-height: 1.31;
  margin-top: 2px;
  margin-bottom: 2px;
}
@media screen and (max-width: 1024px) {

  .error_box2 {
    border-radius: 8px;
    border: 1px solid #f00;
    padding: 10px 10px;
    margin: 20px 0;
  }
}

/* **********************************************
# エントリー
************************************************/

.contact_section .form_section{
  padding-top: 0;
}

.contact_section .msg{
  margin-bottom: 50px;
}

.form_section {
  padding-top: 0px;
}

.entry_section .head{
  position: relative;
}
.entry_section .head .button3{
  position: absolute;
  right:0;
  top:-5px;
}

.submit_button{
  position: relative;
  width: 600px;
  height: 113px;
  line-height: 113px;
  background: transparent;
  margin: 0 auto;
  font-weight: normal;
  font-size: 2.4rem;
  letter-spacing: 0.02em;
  text-align: center;
  color: #fff;
  background: #003E92;
  border-radius: 100px;
}

.submit_button::after {
    content: '';
    position: absolute;
    right: 40px;
    top: 52%;
    width: 0.6em;
    height: 0.6em;
    border-top: 1px solid #ffffff;
    border-right: 1px solid #ffffff;
    transform: rotate(45deg) translateY(-50%);
}

.submit_button.back{
  background: #606060;
}

.submit_button.back::after {
  content: '';
  position: absolute;
  right: auto;
  left: 30px;
  top: 30px;
  width: 1em;
  height: 1em;
  border-top: 1px solid #ffffff;
  border-right: 1px solid #ffffff;
  transform: rotate(-135deg);
}

.form_section .agree{
  text-align: center;
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 60px;
}

.form_section .agree a{
  text-decoration: underline;
}

.form_btns{
  display: flex;
  justify-content: center;
}

.form_confirm_btns{
  text-align: center;
  display: flex;
  justify-content: center;
  gap: 20px 30px;
  flex-wrap: wrap; 
}

.recruit_tbl{
  margin-bottom: 110px;
}

@media screen and (max-width: 1024px) {
  .recruit_tbl{
    margin-top: 30px;
    margin-bottom: 50px;
  }
  .entry_section .head .button3{
    top:-3px;
  }

  .submit_button{
    width: 320px;
  }

  .form_section .agree{
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 60px;
  }

  .contact_section .msg{
    margin-bottom: 20px;
  }
}
.complete .box{
  font-size: 1.8rem; 
  line-height: 2.1;
}
.complete .msg{
  margin-bottom: 30px;
  text-align: center;
}

.complete .msg1,
.complete .msg2{
  text-align: center;
}

.complete .ft{
  display: flex;
  justify-content: center;
}

.contact_section .mail_msg{
  margin: 0.2em 0;
}

@media screen and (max-width: 1024px) {
  .recruit_tbl{
    margin-top: 30px;
  }
  .entry_section .head .button3{
    top:-3px;
  }

  .complete .box{
    font-size: 1.6rem; 
    line-height: 1.55;
  }


  .form_section .agree{
    text-align: left;
    font-size: 1.6rem;
    margin-bottom: 60px;
  }
}

.status{
  position: relative;
  max-width: 460px;
  margin: 30px auto 55px;
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.status::before{
  content: '';
  position: absolute;
  top: 30px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #C9D6E2;
}
.status>li{
  text-align: center;
  z-index: 2;
  position: relative;
  font-weight: 400;
}
.status>li>i{
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: block;
  text-align: center;
  font-size: 2rem;
  font-family: "Saira", sans-serif;
  border-radius: 50%;
  background: #9DC4A3;
  color: #fff;
}

.status>li.active>i{
  background: #22AC38;
}

.contact_box .caption{
  margin-bottom: 40px;
}
.contact_box .caption .msg{
  font-weight: normal;
}

.contact_box .caption .note{
  color: #FF0000;
}

.form_table_wrap{
  border-bottom: 1px dashed #CBCBCB;
}

.form_table_wrap1{
  margin-bottom: 20px;
  padding-bottom: 60px;
}

.form_table,
.form_table tbody,
.form_table tr,
.form_table tr th,
.form_table tr td{
  display: block;
  width: 100%;
}

.form_table .va_top{
  vertical-align: top;
  padding-top: 32px;
}

.form_table tr th{
  text-align: left;
  vertical-align: middle;
  margin-bottom: 18px;
  font-size: 2rem;
}
.req{
  width: 70px;
  height: 24px;
  line-height: 24px;
  display: inline-block;
  font-weight: 500;
  font-size: 16px;
  letter-spacing: 0.1em;
  text-align: left;
  color: #fff;
  background:#003E92;
  border-radius: 5px;
  text-align: center;
  font-weight: bold;
  margin-left: 15px;
}

.form_table tr td{
  padding: 0 0 40px;
  width: 100%;
}

.form_table .name_box{
  align-items: center;
  display: flex;
  gap: 20px;
}

.form_table .name_box>li{
  display: flex;
  align-items: center;
}

.form_table .name_box>li>span{
  width: 45px;
  display: block;
  white-space: nowrap;
  text-align: left;
}

.form_ref_msg{
  font-size: 1.6rem;
  height: 1.87;
}


.error{
  color: #f10;
}


@media screen and (max-width: 1024px) {

  .form_table tr th {
    text-align: left;
    vertical-align: middle;
    padding: 20px 0 0px;
    font-weight: normal;
  }

  .form_table tr td{
    padding: 0em 0 20px;
    vertical-align: top;
  }

  .form_table .name_box>li{
    margin-bottom: 20px;
  }

}

@media screen and (max-width: 768px) {
  .form_table .name_box{
    display: block;
  }
}



.form_privacy{
  text-align: center;
  display: flex;
  justify-content: center;
  margin: 60px 0;
}

.form_privacy a{
  color:#003E92;
  text-decoration: underline;
}

.submit_button_area{
  display: flex;
  justify-content: center;
}

.confirm_button_area{
  display: flex;
  flex-wrap:wrap;
  gap:40px 110px;
  margin: 60px auto;
  justify-content: center;
}

@media screen and (max-width: 1024px) {
  .confirm_button_area{
    display: flex;
    flex-wrap:wrap;
    gap:30px 60px;
    margin: 60px auto;
    justify-content: center;
  }
}

#form_complete .msg1 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 20px;
}

#form_complete .msg2{
  font-size: 1.6rem;
  margin-bottom: 60px;
}


/*
contact
*/
.form_caption{
  text-align: center;
  font-size: 2rem;
  text-align: center;
  font-weight: 500; 
  margin-bottom: 100px;
}

.form_address{
  display: flex;
  flex-direction: column;
  gap:20px;
}

.form_postal>div{
  display: flex;
  align-items: center;
  gap: 15px;
}

.form_postal p{
  padding-left: 10px;
}

.form_usage{
  display: flex;
  gap:30px;
  flex-direction: column;
}

.form_ref_msg{
  margin-bottom: 30px;
} 

.form_ref_list{
  display: flex;
  flex-direction: column;
  gap:20px;
}

.form_tel_msg{
  padding: 10px 0;
}

.item_ttl{
  font-size: 2rem;
  margin-bottom: 18px;
}

.item_dl{
  display: flex;
  margin-bottom: 10px;
}

.item_dl dt{
  width: 120px;
}
.item_dl dd{
  width: calc(100% - 120px);
}



@media screen and (max-width: 768px) {
  .form_caption{
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}

#item_container {
  padding-bottom: 0px;
}

#item_container .item_block{
  padding-top: 60px;
}

#item_container .row1,
#item_container .row2,
#item_container .row3{
  display: flex;
  align-items: center;
  gap:40px;
  margin-bottom: 30px;
}
#item_container .row1>li,
#item_container .row2>li{ 
  display: flex;
  align-items: center;
  gap:10px;
}
#item_container .row1>li{
  width: calc(100% - 40px);
}

#item_container .row3>li{
  width: 100%;
  display: flex;
  align-items: center;
}
#item_container .row3>li label.va_top{
  align-self: flex-start;
  padding-top: 15px;
}

#item_container .row3>li label{
  width: 90px;
}
#item_container .row3>li textarea,
#item_container .row3>li input{
  width: calc(100% - 90px);
}

#item_container .row3>li textarea{
  height: 120px;
}

#item_container label{
  white-space: nowrap;
}

#item_container .row3{
  margin-top: 30px;
  margin-bottom: 0;
}

#item_container .item_block{
  padding-bottom: 60px;
  border-bottom: 1px dashed #CBCBCB;
}

#add_item_btn_wrap{
  text-align: center;
  color: #003E92;
  font-size: 1.6rem;
  font-weight: bold;
  padding: 30px 0 26px;
  border-bottom: 1px dashed #CBCBCB;
}

#add_item_btn{
  text-decoration: none;
}

.remove_item_btn{
  text-align: center;
  font-weight:500;
  font-size: 1.8rem; 
  background: transparent;
  padding: 10px 0;
  color: #999999;
  margin-top: 10px;
  width: 80px;
  border-radius: 5px;
  margin: 30px auto 0;
  border: 1px solid #999999;
}

.form_table_wrap3{
  padding-top: 60px;
}


@media screen and (max-width: 1024px) {

  #item_container {
    padding-top: 0px;
  }
  
  #item_container .item_block{
    padding-top: 40px;
  }
    
  .form_table_wrap{
    padding-top: 40px;
  }

  .form_table_wrap3{
    padding-top: 40px;
  }
    
  #item_container .row1,
  #item_container .row3{
    flex-direction: column;
    gap:30px;
  }

  #item_container .row1>li {
    width: calc(100% - 30px);
  } 
  #item_container .row1>li label{
    width: 70px
  }

  #item_container .row1>li input{
    width: calc(100% - 70px);
  }

  #item_container .row2>li{ 
    display: flex;
    align-items: center;
    gap:10px;
  }

    #item_container .row2{
      gap:20px;
    }
}


.form_confirm_table{
  width: 100%;
}
.form_confirm_table th{
  font-size: 2rem;
  font-weight: bold;
  width: 200px;
  text-align: left;
  padding: 20px 0;
}

.form_confirm_table td{
  font-size: 1.6rem;
  padding: 20px;
}

.confirm_item_wrap{
  display: flex;
  flex-direction: column;
  gap:20px;
  padding-bottom: 60px;
  margin-bottom: 20px;
  padding-top: 50px;
  border-bottom: 1px dashed #CBCBCB;
}

.confirm_item{
  width: 100%;
}

.confirm_item_wrap1{
  padding-top: 0;
}
