@charset "utf-8";

/*------------------
フォーム
------------------*/
::placeholder {
  color: #A7A7A7;
}

input[type="search"]::placeholder{
  color: #A7A7A7;
}


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;
  font-size: 1.6rem;
}

.input1 {
  display: block;
  height: 40px;
  width: 100%;
  max-width: 630px;
  padding-left: 18px;
  font-family: inherit;
  text-align: left;
  box-shadow: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  border-radius: 0px;
  background: #f8f8f8;
  border: 1px solid #ccc;
}

.input1[type="month"]{
  width: 207px;
  font-size: 1.6rem;
}

.input2 {
  width: 100%;
  height: 55px;
  border-radius: 12px;
  background: #EAF8F4;
}

input.size_m {
  max-width: 269px;
}

input.size_s {
  max-width: 128px;
}

.search_box {
  position: relative;
  max-width: 434px;
}
@media screen and (max-width: 1100px) {
  .search_box {
    position: relative;
    max-width: none;
  }
}

.search_box input[type="search"] {
  width: 100%;
  height: 67px;
  border-radius: 5px;
  background: #fff;
  font-size: 1.6rem;
  padding-left: 18px;
  padding-right: 60px;
}

.search_box button {
  position: absolute;
  right: 0;
  top:0;
  border: none;
  width: 62px;
  height: 100%;
  background: #DFDFDF;
  cursor: pointer;
  border-radius:0 5px 5px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.search_box button img{
  width: 22px;
}

.search_box2 {
  position: relative;
  max-width: 434px;
}
@media screen and (max-width: 1100px) {
  .search_box2 {
    position: relative;
    max-width: none;
  }
}

.search_box2 input[type="search"] {
  width: 339px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  border: 3px solid #707070;
  font-weight: normal;
  font-size: 16px;
  line-height: 21px;
  text-align: left;
  color: #0b1f07;
  padding: 0 26px;
}
@media screen and (max-width: 1100px) {
  .search_box2 input[type="search"]{
    width: 100%;
    max-width: 350px;
  }
}

/*request*/
.search_box3 .form{
  position: relative;
  display: flex;
  gap:10px;
  align-items: center;
  max-width: 548px;
  width: 100%;
}

.search_box3 .form .input1{
  width: calc(100% - 130px);
}

.search_box3 .form .submit{
  width: 120px;
  border-radius:30px;
  line-height: 40px;
  background: #00a23f;
  font-size: 1.4rem;
  color: #fff;
  font-weight: bold;
  display: flex;
  gap:5px;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
}

.search_box3 .form .submit .icon{
  width: 14px;
  display: block;
}

.search_box3 .form .submit span{
  white-space: nowrap;
}
.search_box3 .form .submit span img{
  vertical-align: middle;
}

@media screen and (max-width: 1100px) {
  .search_box3 {
    position: relative;
    max-width: none;
  }
  .search_box3 .form{
    position: relative;
    display: flex;
    gap:10px;
    align-items: center;
    max-width: 548px;
    width: 100%;
  }

  .search_box3 .form .input1{
    width: calc(100% - 90px);
  }

  .search_box3 .form .submit{
    width: 85px;
    border-radius:30px;
    line-height: 40px;
    background: #00a23f;
    font-size: 1.1rem;
    color: #fff;
    font-weight: bold;
    display: flex;
    gap:5px;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  }

}


textarea:disabled,
.input1:disabled{
 background: #fff;
 opacity: 0.6;
}

textarea {
  height: 200px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  padding: 18px;
}

textarea.size_m{
  height: 158px;
}

textarea.size_s{
  height: 119px;
}

textarea.size_ss{
  height: 81px;
}

.textarea2 {
  width: 100%;
  line-height: 2;
  padding: 1.5em;
  height: 287px;
  border: 0;
  border-radius:12px;
  background: #f2f2f2;
}

.textarea_msg{
  font-size: 1.8rem;
  font-weight: 200;
}

@media only screen and (max-width: 768px) {
  textarea {
    width: 100%;
    height: 200px;
    /* line-height: 2; */
    padding: 1em;
    font-size: 1.6rem;
  }
}

.date_box{
  position: relative;
  width: 207px;
}

.date_box input{
  height: 40px;
  background: #f8f8f8;
  border: 1px solid #ccc;
  padding-left: 17px;
}

.date_box input:disabled{
 opacity: 0.6;
}

.date_box::after{
  content: '';
  position: absolute;
  top: 1px;
  right: 1px;
  width: 40px;
  height: 38px;
  pointer-events: none;
  background: url(../svg/icon_date.svg) no-repeat 50% 50% / 11px #f8f8f8;
}
@media screen and (max-width: 1100px) {
  .date_box input{
    padding-left: 10px;
  }

  .date_box {
    width: 146px;
  }
}

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

.radio_list2 li span{
  font-weight: bold;
}

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

  .radio_list{
    display: block;
  }

}

.radio_box{
  position: relative;
  margin: 5px 0;
}

.radio_box input {
  position: absolute;
  opacity: 0;
}

.radio_box input{
  display: none;
}
.radio_box input + span{
  padding-left: 1.5em;
  position:relative;
  font-size: 1.8rem;
}
.radio_box input + span::before {
  content: "";
  display: block;
  position: absolute;
  top: 3px;
  left: 0;
  width: 20px;
  height: 20px;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 50%;
}

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


/*チェック*/
.check_box_list {
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

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

.check_box span {
  padding-left: 20px;
  display: inline-block;
  font-weight: normal;
}

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

.check_box span::before {
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  margin-top: 5px;
  width: 18px;
  height: 18px;
  border: 2px solid #707070;
  background-color: #fff;
  border-radius: 5px;
}

.check_box input:checked+span::after{
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 5px;
  width: 18px;
  height: 18px;
  border: 2px solid transparent;
  background-color: transparent;
  background-repeat: no-repeat;
  background-image: url(../svg/check.svg);
  background-position: center;
  transform: rotate(-5deg);
  background-size: 11px;
}

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

.year_select {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  margin-bottom: 30px;
  gap:15px;
}

.year_select dt{
  padding-right: 0em;
  font-size: 1.8rem;
}


/*セレクト*/
.select_box_head{
  position: relative;
  margin-bottom: 35px;
}

.select_box_head .select_box1{
 position: absolute;
 right: 0;
 top:0;
}

.select_box1 {
  position: relative;
  display: block;
  width: 250px;
  height: 50px;
  border-radius: 25px;
  background: #fff;
  padding-left: 0px;
}

.select_box1>select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 3em 0 1.5em;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  border: 3px solid #707070;
  border-radius: 50px;
  font-weight: normal;
  font-size: 1.6rem;
  background: #fff;
  color: #0b1f07;
}

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

.select_box1>select option{
  color:#000;
}

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

.select_box1::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 28px;
  margin-top: -1px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 6px solid #0b1f07;
  z-index: 2;
}

@media screen and (max-width: 1100px) {
  .select_box_head{
    margin-bottom: 15px;
  }

  .select_box1>select {
    padding:0 25px 0 20px;
  }

  .select_box1 {
    width: 195px;
    height: 35px;
  }

  .select_box1::after {
    right: 20px;
    margin-top: -1px;
    border-left: 4px solid transparent;
    border-right: 4px solid transparent;
    border-top: 5px solid #0b1f07;
  }

}
@media screen and (max-width: 1100px) {
  .select_box_head .select_box1{
    margin-left: auto;
    position: relative;
    right:auto;
  }
}

/*select*/
.select_box2 {
  position: relative;
  display: block;
  height: 40px;
  width: 274px;
  padding-left: 0px;
}

.select_box2>select {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 3em 0 1.5em;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  border: 1px solid #999999;
  font-size: 1.6rem;
}

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

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

.select_box2::after {
  content: "";
  position: absolute;
  display: block;
  line-height: 1em;
  z-index: 2;
  text-align: center;
  right: 15px;
  top: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #333333 transparent transparent transparent;
  border-width: 6px 4px 0px 4px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .select_box2 {
    width: 250px;
  }

}
/**/
@media only screen and (min-width: 1025px) {

  .f_btn1:hover{
    background: #0D0D0D;
    color:#fff;
  }
  .f_btn1:hover i::before{
    background: #fff;
  }
  .f_btn1:hover i::after{
    border-right:1px solid #0D0D0D;
    border-bottom:1px solid #0D0D0D;
  }
  .f_btn1:hover i::before{
    background: #fff;
  }
  .f_btn1:hover i.left::after{
    border-left:1px solid #0D0D0D;
    border-top:1px solid #0D0D0D;
    border-right:0;
    border-bottom:0;
  }
}
.f_btn1{
  position: relative;
  display: block;
  width: 268px;
  line-height: 70px;
  border-radius: 40px;
  font-family: Arial;
  font-size: 1.8rem;
  text-align: center;
  /* border:2px solid #0D0D0D; */
  color: #262626;
  font-weight: 500;
  cursor: pointer;
  background: #fff;
  border:1px solid #0D0D0D;
  transition: background 0.5s ease-in-out;
}

.f_btn1 i{
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.f_btn1 i::before{
  content:'';
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top:50%;
  margin-top: -9px;
  right:35px;
  border-radius: 50%;
  background: #000;
}
.f_btn1 i::after{
  content:'';
  position: absolute;
  top:50%;
  right:43px;
  width: 5px;
  height: 5px;
  border-right:1px solid #fff;
  border-bottom:1px solid #fff;
  transform: translate(0,-50%) rotate(-45deg);
}

.f_btn1 i.left::before{
  content:'';
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top:50%;
  margin-top: -9px;
  left:35px;
  border-radius: 50%;
  background: #0D0D0D;
}

.f_btn1 i.left::after{
  content:'';
  position: absolute;
  top:50%;
  left:43px;
  width: 5px;
  height: 5px;
  border-left:1px solid #fff;
  border-top:1px solid #fff;
  border-right:0;
  border-bottom:0;
  transform: translate(0,-50%) rotate(-45deg);
}


@media only screen and (min-width: 1025px) {

  .f_btn2:hover{
    background: #fff;
    color:#0D0D0D;
  }

  .f_btn2:hover i::after{
    border-right:1px solid #fff;
    border-bottom:1px solid #fff;
  }

  .f_btn2:hover i::before{
    background: #0D0D0D;;
  }

}
.f_btn2{
  position: relative;
  display: block;
  width: 268px;
  line-height: 70px;
  border-radius: 40px;
  font-family: Arial;
  font-size: 1.8rem;
  text-align: center;
  font-weight: 500;
  cursor: pointer;
  color:#fff;
  background: #0D0D0D;
  border:1px solid #0D0D0D;
  transition: background 0.5s ease-in-out;
}


.f_btn2 i{
  position: absolute;
  left:0;
  top:0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 3;
}

.f_btn2 i::before{
  content:'';
  position: absolute;
  display: block;
  width: 18px;
  height: 18px;
  top:50%;
  margin-top: -9px;
  right:35px;
  border-radius: 50%;
  background: #fff;
}

.f_btn2 i::after{
  content:'';
  position: absolute;
  top:50%;
  right:43px;
  width: 5px;
  height: 5px;
  border-right:1px solid #0D0D0D;
  border-bottom:1px solid #0D0D0D;
  transform: translate(0,-50%) rotate(-45deg);
}


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

  .f_btn2,
  .f_btn1{
    width: 250px;
  }

}

.error{
  color:#FF0000;
  font-size: 1.8rem;
}
.error p{
  position: relative;
}
.error p::before{
  content: '※';
}

sup{
  padding-left: 0.5em;
}

.recruit_detail_section02 .msg2{
  text-align: center;
  margin-top: 30px;
  margin-bottom: 90px;
  font-size: 2rem;
}


.submit_confirm_area{
  margin: 80px 0 40px;
  display: flex;
  gap:3vw;
  flex-wrap:wrap;
  justify-content: center;
}

.submit_button{
  position: relative;
  width: 427px;
  display: block;
  line-height: 120px;
  color:#fff;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  background-repeat: no-repeat;
  border-radius: 107px;
  background: #4F85AB;
  text-decoration: none;
}
.submit_button::after {
    content: '';
    position: absolute;
    top: 39px;
    right: 30px;
    width: 44px;
    height: 44px;
    background-image: url(../svg/icon_arrow_under.svg);
    transform: rotate(-90deg);
    background-repeat: no-repeat;
    background-size: 44px;
}

.submit_button.back{
  background: #6D6D6D;
  color:#fff;
}

@media only screen and (max-width: 1024px) {
  .submit_confirm_area form{
    display: flex;
    justify-content: center;
    width: 100%;
  }

  .submit_confirm_area{
    flex-wrap:wrap;
    gap:30px 40px;
    margin: 60px 0 0;
  }
  .submit_confirm_area button{
    margin: 0 auto;
  }

  .submit_button {
    width: 320px;
    line-height: 95px;
    font-size: 2.2rem;
    font-weight: bold;
    border-radius: 107px;
  }
  .submit_button::after {
    top: 30px;
    right: 20px;
    width: 38px;
    height: 38px;
    background-size: 38px;
  }
}

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

  .submit_button {
    font-size: 2rem;
  }
}

.form_agree{
  padding-top: 32px;
  text-align: center;
  font-size: 2rem;
}
@media screen and (max-width: 1100px) {
  .form_agree {
    padding-top: 10px;
  }
}

.submit_area{
  gap:0px;
  flex-wrap:wrap;
  margin-top: 0px;
  padding-bottom: 0px;
}

.submit_area form{
  display: block;
}

.form_table_caption sup{
  color: var(--main-clr);
}

.form_table_caption{
  font-size: 1.6rem;
  line-height: 1.5;
  margin-bottom: 0.5em;
}

.form_msg2,
.form_msg1{
  margin-top: 10px;
  font-size: 1.4rem;
  font-weight: normal;
}

.form_msg2{
  margin-top: 0;
  margin-bottom: 5px;
}

.form_msg4{
  margin-top: 10px;
  font-size: 1.6rem;
}

.form_ttl1{
  font-weight: bold;
  margin-bottom: 10px;
}

.form_table1 tr{
  border-top: 1px solid #DDDDDD;
}

.form_table1 tr:not(:last-child){
  border-bottom: 1px solid #DDDDDD;
}

.form_table1 tr.last{
  border-bottom: 0 !important;
}


.form_table1 .view{
  background: #fff;
  border: 1px solid #999;
  padding: 1.5em;
}

.form_note_list>li{
  font-size: 1.4rem;
}

.form_msg3{
  font-size: 1.4rem;
  margin-top: 0;
}

@media only screen and (max-width: 1100px) {
  .submit_area{
    margin-top: 30px;
    padding-bottom: 40px;
  }
  .form_table1 .view{
    padding: 1em;
    font-size: 1.6rem;
  }
  .form_table1 tr.last{
    border-bottom: 0 !important;
    padding-bottom: 0;
  }
}

.form_table1 tr td {
  font-weight: normal;
}

.form_table1 tr th{
  position: relative;
  /* width: 33%; */
  width: 340px;
  padding:22px 45px;
  text-align: left;
  font-size: 1.6rem;
  vertical-align: middle;
  white-space: nowrap;
}

.form_table1 tr th sup {
  font-size: 1.6rem;
  /* float: right; */
  color: var(--main-clr);
  margin-left: auto;
  position: absolute;
  right: 40px;
  top: 25px;
}

.form_table1 tr td{
  width: calc(100% - 340px);
  /* width: 67%; */
  padding:22px 0;
  text-align: left;
  font-size: 1.6rem;
}

.form_table1 tr th.va_top{
  vertical-align: top;
}

@media screen and (max-width: 1100px) {
  .form_table1 tr th sup{
    float:none;
    position: static;
  }


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

  .form_table1 tr th{
    padding-top: 20px;
  }

  .form_table1 tr{
    padding-bottom: 20px;
  }

  .form_table1 tr th{
    padding: 10px 0;
  }

  .form_table1 tr td {
    padding: 0;
    font-weight: normal;
    text-align: left;
  }

  .form_table1 tr th.va_top{
    padding-top: 20px;
  }
}
/*form table2*/
.form_table2 tr th {
  width: 307px;
  padding: 17px 0;
  text-align: left;
  vertical-align: top;
  font-size: 2rem;
  white-space: nowrap;
  vertical-align: middle;
}


.form_table2 tr th.va_top{
  vertical-align: top;
  padding-top: 15px;
}

.form_table2 tr td{
  width: calc(100% - 307px);
  /* width: 67%; */
  padding:18px 0;
  text-align: left;
  font-size: 2rem;
}

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

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

  .form_table2 tr{
    margin-bottom: 20px;
  }

  .form_table2 tr th{
    padding: 10px 0;
  }

  .form_table2 tr td {
    padding: 0;
    text-align: left;
  }

  .form_table2 tr th.va_top{
    padding-top: 0px;
  }
}

.form_privacy{
  text-align: center;
  margin-top: 0px;
  margin-bottom: 20px;
}

.form_privacy .msg{
  font-size: 1.8rem;
  margin-bottom: 20px;
  font-weight: normal;
}

.form_privacy .msg a{
  font-weight: bold;
}

.form_privacy .box{
  display: flex;
  justify-content: center;
  margin-bottom: 45px;
}

.form_privacy .msg2{
  font-size: 1.5rem;
  text-align: center;
  font-weight: normal;
}

.form_privacy .check_box label {
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 1100px) {
  .form_privacy .msg {
    font-size: 1.6rem;
  }

  .form_privacy {
    margin-top: 0px;
    margin-bottom: 25px;
  }
}

/*
確認画面
*/
.form_confirm .cmp_section{
  padding-bottom: 0;
}
/*
完了画面
*/
.form_complete .msg1{
  font-size: 2.6rem;
  font-weight: bold;
  margin-top: 15px;
  margin-bottom: 15px;
}
.form_complete .msg2{
  font-size: 2rem;
  margin-bottom: 70px;
}

.form_complete a{
  text-decoration: underline;
  font-weight: bold;
  text-align: center;
  font-size: 2rem;
}

.form_complete .link_box{
  text-align: center;
  margin-bottom: 30px;
}
@media screen and (max-width: 1100px) {
  .form_complete .msg1{
    font-size: 2.2rem;
    font-weight: bold;
    margin-top: 15px;
    margin-bottom: 15px;
  }
  .form_complete .msg2{
    font-size: 1.8rem;
    margin-bottom: 70px;
  }

  .form_complete a{
    font-size: 1.8rem;
  }

  .form_complete .link_box{
    margin-bottom: 20px;
  }
}

.form_row1{
  display: flex;
  flex-wrap:wrap;
  gap:15px 23px;
  align-items: center;
}

.form_row1> .box1{
  display: flex;
  align-items: center;
}

.form_row1  .hyp{
  width: 36px;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .form_row1 .hyp {
    width: 26px;
    font-size: 1.4rem;
  }
}

.form_row2{
  display: flex;
  gap:15px 23px;
  flex-wrap:wrap;
  align-items: center;
}

.form_row2> .box1 .radio_list2{
  display: flex;
  gap:20px;
  align-items: center;
}

.form_row2> .box2{
  display: flex;
  align-items: center;
}

.form_row2  .hyp{
  width: 36px;
  font-size: 1.6rem;
  text-align: center;
}
@media screen and (max-width: 1100px) {
  .form_row2 .hyp {
    width: 26px;
    font-size: 1.4rem;
  }
}




