@charset "utf-8";

/*------------------
フォーム
------------------*/
::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;
}

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%;
  font-weight: 400;
  line-height: 1.5;
  height: 60px;
  border: 1px solid #B9B9B9;
  color: #000;
  background-color: #333;
  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.5em;
  padding-right: 1em;
  font-size: 1.8rem;
  text-decoration: none;
}

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 {
  width: 271px;
}
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;
}

.date_box.size_s{
  width: 170px;
}

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;
  border:1px solid #B9B9B9;
}

@media screen and (max-width: 1024px) {
  
  input[type="tel"],
  input[type="mail"],
  input[type="email"],
  input[type="password"],
  input[type="number"],
  input[type="time"],
  input[type="date"],
  input[type="text"] {
    padding-left: 1em;
  }
}

.date_box{
  position: relative;
  width: 100%;
  height: 60px;
  cursor: pointer;
}

.date_box>input{
  position: relative;
  display: block;
  width: 100%;
  height: 60px;
  line-height: 1.5;
  background-color: #fff;
  border: 1px solid #707070;
  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.8rem;
  cursor: pointer;
}

.date_box.size_m{
  width: 200px;
}

.date_box::after {
  position: absolute;
  content: "";
  display: block;
  right: 2px;
  top: 2px;
  z-index: 2;
  background-image: url(../img/date.png);
  margin-left: 5px;
  pointer-events: none;
  width: 38px;
  height: 60px;
  line-height: 60px;
  background-repeat: no-repeat;
  background-size: 14px;
  z-index: 10;
  background-position: center;
}

textarea {
  width: 100%;
  height: 290px;
  line-height: 1.55;
  padding: 1em 1.2em;
  border:1px solid #B9B9B9;
  font-size: 1.8rem;
  resize: vertical;
  background-color: #333;
}


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;
  border: 1px solid #CCCCCC;
}

@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: 4px;
  margin-top: 0;
  width: 20px;
  height: 20px;
  border: 1px solid #CCCCCC;
  background: linear-gradient(#fff 0%, #dcdbdb 100%);
  border: 1px solid #ccc;
  border-radius: 3px;
}

.check_box label input:checked+span::after {
  content: '';
  position: absolute;
  left: 0px;
  top: 6px;
  margin-top: 0;
  left: 6px;
  width: 8px;
  height: 12px;
  border-right: 3px solid #707070;
  border-bottom: 3px solid #707070;
  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_box {
  position: relative;
  display: block;
  height: 52px;
  width: 250px;
  padding-left: 0px;
  overflow: hidden;
}

.select_box::before,
.select_box::after{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  width: 52px;
  background-size: 10px;
  background-repeat: no-repeat;
  background-image: url(../svg/arrow_under.svg);
  background-position: center;
  z-index: 3;
  pointer-events: none;
}

.select_box::before{
  z-index: 2;
  background: #DF1C13;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
}

.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 25px;
  cursor: pointer;
  white-space: nowrap;
  border: none;
  box-sizing: border-box;
  z-index: 1;
  font-size: 1.4rem;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  border-top-right-radius:10px;
  border-bottom-right-radius:10px;
  border: 1px solid #707070;
}

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

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


@media screen and (max-width: 768px) {
  .select_box.size_s {
    width: 85px;
  }

}

/*セレクト*/
.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;
}

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

.form_table1 tr:nth-child(1){
  border-top: 1px solid #DDDDDD;
}

.form_table1 .tr_span{
  border-bottom: 0;
}

.form_table1 .tr_span th{
  padding-bottom: 0;
}

.form_table1 .tr_span td{
  padding-bottom: 0;
}

.form_table1 th {
  width: 300px;
  padding: 24px 30px;
  text-align: left;
  font-weight: bold;
  font-size: 1.6rem;
}

.form_table1 th>div{
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.form_table1 th .req{
  color:var(--main-color);
  display: block;
  padding-top: 5px;
  margin-bottom: -5px;
}

.form_table1 td{
  width: calc(100% - 300px);
  padding:  20px 30px;
  vertical-align: top;
}

.form_table1 .comment{
  margin-bottom: 30px;
}

.form_table1 .note {
  text-indent: -1em;
  margin-left: 1em;
}

.form_table1 .border_none{
  border-bottom: 0;
}

.form_table1 .radio_list,
.form_table1 .check_list{
  margin-top: 5px;
}

.form_table1 .msg1 {
  margin-top: 5px;
}
.form_table1 .msg1 + .upload_box,
.form_table1 .msg1 + .note{
  margin-top: 15px;
}
.form_table1 .upload_box + .upload_box{
  margin-top: 10px;
}

.form_name{
  display: flex;
}

.form_name p{
  width: 1.5em;
}

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

.form_name>li:nth-child(1){
  margin-right: 38px;
}

.cookie_agree{
  margin-top: 20px;
  margin-bottom: 65px;
}
.cookie_agree
.check_box label span {
  font-weight: 500;
}

.form_section2 .msg1{
  margin-bottom: 40px;
}

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

  .form_table1 th {
    width: 242px;
    padding: 24px 20px;
    text-align: left;
    font-weight: bold;
    font-size: 1.6rem;
  }

  .form_table1 td {
    width: calc(100% - 242px);
    padding: 20px 20px;
    vertical-align: top;
  }
}
@media screen and (max-width: 1200px) {

  .form_name{
    display: block;
  }

  .form_name p{
    width: 1.5em;
  }

  .form_name>li:nth-child(1){
    margin-right: 0;
    margin-bottom: 15px;
  }
}

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

  .form_table1 th>div{
    display: flex;
    justify-content: flex-start;
  }

  .cookie_agree {
    margin-top: 0;
    margin-bottom: 30px;
  }

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

  .form_table1 th {
    padding: 1em 10px 0 10px;
    font-size: 1.6rem;
  }

  .form_table1 td{
    padding: 0.5em 10px 1.5em;
    vertical-align: top;
  }

}

.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 .msg 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;
  }
  .complete .box .msg strong{
    margin-bottom: 10px;
  }
}

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

/* **********************************************
# エントリーテーブル
************************************************/
.form_section {
  padding-top: 110px;
}

.form_section .msg,
.form_section .msg2 {
  font-size: 1.8rem;
  margin-bottom: 50px;
  line-height: 2.11;
  text-indent: -0.5em;
  margin-left: 0.5em;
}

.form_section .msg2{
  text-indent: 0em;
  margin-left: 0em;
}

.form_tbl{
  width: 100%;
  margin-bottom: 100px;
}

.form_tbl tr th{
  font-weight: 500;
  font-size: 1.8rem;
  text-align: left;
  vertical-align: middle;
}

.form_tbl tr th sup{
  padding-left: 0.2em;
}


.form_tbl tr th.va_top{
  vertical-align: top;
  padding-top: 25px;
}

.form_tbl tr th {
  width: 473px;
  white-space: nowrap;
  padding-top: 0.1em;
}
.form_tbl tr th.sub{
  font-size: 1.6rem;
  text-indent: 1em;
}

.form_tbl tr td{
  padding: 15px 0;
}

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

@media screen and (max-width: 1200px) {
  .form_tbl tr th{
    width: 350px;
  }
}

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

  .form_section {
    padding-top: 40px;
  }

  .form_tbl{
    width: 100%;
    margin-bottom: 0px;
  }
  
  .form_section .msg {
    font-size: 1.6rem;
    margin-bottom: 30px;
    line-height: 1.55;
  }
  .form_section .msg2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    line-height: 1.55;
  }


  .form_tbl,
  .form_tbl tbody,
  .form_tbl tr,
  .form_tbl tr th,
  .form_tbl tr td{
    display: block;
    padding: 0;
  }

  .form_tbl tr th{
    margin-bottom: 5px;
    padding-top: 0;
  }

  .form_tbl tr td{
    margin-bottom: 20px;
  }
  
  .form_tbl tr th.va_top{
    vertical-align: top;
    padding-top: 0px;
  }

  .form_tbl tr td {
    padding: 0px;
  }
  
  .form_tbl tr th.sub {
    font-size: 1.8rem;
    text-indent: 0em;
  }

}



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

.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{
  width: 435px;
  height: 64px;
  background: #A4894A;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 64px;
  text-align: left;
  color: #fff;
  display: block;
  text-align: center;
  border-radius:30px;
}

.submit_button.back{
  background: #fff;
  color: #1A1311;
  border:1px solid #1A1311; 
  border-radius:30px;
}

.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: 285px;
    height: 64px;
    font-size: 1.8rem;
  }

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

  .submit_button{
    width: 285px;
    height: 64px;
    font-size: 1.8rem;
  }

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

.error{
  color:#f00;
}