@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: 769px;
  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="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="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="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: 150px;
}

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;
  background: transparent;
}


.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: 769px;
  height: 296px;
  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_list.size_l .select_box{
  max-width: 400px;
  width: 100%;
}

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

.select_box::before{
  content: '';
  position: absolute;
  right: 25px;
  top: 20px;
  width: 12px;
  height: 12px;
  border-bottom: 2px solid #333;
  border-right: 2px solid #333;
  transform: rotate(45deg);
  z-index: 2;
}

.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;
}

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

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


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

  .select_list{
    width: 100%;
  }

  .select_list.size_l{
    max-width: none;
    width: 100%;
  }
  
  .select_box,
  .select_box > select {
    width: 100%;
  }
}

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

  .select_list,
  .select_list.size_l{
    width: 100%;
  }

}

/*セレクト*/
.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: 372px;
  height: 76px;
  background: #22AC38;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 76px;
  text-align: left;
  color: #fff;
  display: block;
  text-align: center;
}

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

.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{
  width: 100%;
  border-top: 1px dotted #CCCCCC;
}

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

.form_table tr{
  border-bottom: 1px dotted #CCCCCC;
}

.form_table tr th{
  width: 268px;
  text-align: left;
  vertical-align: middle;
  padding: 18px 24px;
}

.form_table tr th sup{
  color: #FF0808;
}

.form_table tr td{
  padding: 18px 0px;
  width: calc(100% - 268px);
}

.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;
}

.error{
  color: #f10;
}


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

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

  .form_table tr th {
    text-align: left;
    vertical-align: middle;
    padding: 20px 0 15px;
    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;
  }
}

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

.contact_box .privacy a{
  color:#22AC38;
  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;
}

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

.tel_box{
  display: flex;
  gap:15px;
  align-items: center;
}

.tel_box i{
  width: 20px;
  height: 20px;
  background-image: url(../svg/tel.svg);
  background-repeat: no-repeat;
  background-size: 20px;
}
.tel_box a{
  font-size: 2rem;
}

.loca_jobs_list{
  display: flex;
  gap:40px;
}