@charset "UTF-8";
/* CSS Document */

.pageContents__inner {
  padding: 10px;
}

.rec_box {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  background: rgba(255,255,255,0.8);
  box-shadow:0px 8px 5px -10px #000;
}

.rec_box_bnr {
  margin: 0 0 50px;
}

.rec_box_bnr img {
  max-width: 100%;
}

.rec_box h3 {
  font-family: 'EB Garamond', serif;
  font-weight: normal;
  font-size: 18px;
  text-align: center;
  color: #af7253;
}

.rec_tbl {
  width: calc(100% - 20px);
  margin: 10px auto 0;
}

.rec_tbl tr {
  display: flex;
  flex-direction: column;
}

.rec_tbl tr:last-child th,
.rec_tbl tr:last-child td {
  border-bottom: none;
}

.rec_tbl th {
  width: 100%;
  padding: 10px;
  border-bottom: solid 1px #ccc;
  font-size: 14px;
  font-weight: normal;
  text-align: center;
}

.rec_tbl th:before {
  content: "◆";
}

.rec_tbl td {
  padding:  10px;
  width: 100%;
  border-bottom: solid 1px #ccc;
  font-size: 12px;
  line-height: 2;
}

.rec_tbl td span {
  width: 160px;
  display: block;
  float: left;
}

@media screen and (min-width: 768px) {
  .rec_tbl {
    width: 98%;
  }
  .rec_tbl tr {
    display: table-row;
  }
  .rec_tbl th {
    width: 20%;
    padding: 25px 0 25px 40px;
    font-size: 16px;
    text-align: left;
  }
  .rec_tbl td {
    padding: 25px 0;
    width: initial;
    font-size: 14px;
    border-bottom: solid 1px #ccc;
    line-height: 2;
  }
}

#recruit_form {
  margin: 30px 0 40px;
  text-align: center;
}

#recruit_form h3 {
  position: relative;
  display: inline-block;
  margin: 0 auto;
  padding: 0px 50px;
  background: #7c5046;
  background: -webkit-linear-gradient(left, #7c5046 0%, #ba8260 50%, #7c5046 100%);
  background: -webkit-gradient(linear, left top, right top, from(#7c5046), color-stop(50%, #ba8260), to(#7c5046));
  background: linear-gradient(to right, #A48317 0%, #E6B100 25%, #A48317 50%, #E6B100 75%, #9D7803 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7c5046', endColorstr='#7c5046',GradientType=1 );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-family: "EB Garamond", serif;
  font-size: 20px;
  font-weight: 500;
  text-align: center;
}

@media screen and (min-width: 768px) {
  #recruit_form h3 {
    width: 390px;
    position: relative;
    display: inline-block;
    margin: 0 auto;
    padding: 0 50px;
    background: #7c5046;
    background: -moz-linear-gradient(left,  #7c5046 0%, #ba8260 50%, #7c5046 100%);
    background: -webkit-linear-gradient(left,  #7c5046 0%,#ba8260 50%,#7c5046 100%);
    background: linear-gradient(to right,  #7c5046 0%,#ba8260 50%,#7c5046 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#7c5046', endColorstr='#7c5046',GradientType=1 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 2rem;
    text-align: center;
    font-family: 'EB Garamond', serif;
    font-weight: 500;
  }
}

#recruit_form h3 span {
  display: block;
}

#recruit_form h3:before {
  content: " ";
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 40px;
  background: url("../images/h2_left_icon.png") no-repeat left center;
}

#recruit_form h3:after {
  content: " ";
  position: absolute;
  top: 0;
  right: 0;
  width: 50px;
  height: 40px;
  background: url("../images/h2_right_icon.png") no-repeat right center;
}


#recruit_form form {
  margin: 30px 0 0;
  padding: 40px 10px 70px;
  background: rgba(244,233,237,0.8);
  box-shadow:0px 8px 5px -10px #000;
  text-align: left;
}

#recruit_form p {
  margin: 0 0 10px;
  font-size: 14px;
}

#recruit_form table {
  width: 100%;
  border-top: solid 1px #fff;
  font-size: 14px;
}

#recruit_form table tr {
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px #fff;
}

#recruit_form table th {
  width: 100%;
  padding: 15px 5px 0;
}

#recruit_form table td {
  padding: 5px 5px 20px;
  width: 100%;
}

#recruit_form table tr:last-child th,
#recruit_form table tr:last-child td {
  border: none;
}

@media screen and (min-width: 768px) {
  #recruit_form table tr {
    display: table-row;
    width: 100%;
  }
  #recruit_form table th {
    width: 250px;
    padding: 25px 0 25px 40px;
    font-weight: normal;
    text-align: left;
    vertical-align: top;
  }
  #recruit_form table td {
    width: calc(100% - 250px);
    padding: 20px 0;
  }
}


#recruit_form table td input[type="text"],
#recruit_form table td textarea {
  display: block;
  width: 100%;
  margin: 0 0 5px;
  padding: 5px;
  border: none;
}

#recruit_form table td textarea {
  min-height: 400px;
}

#recruit_form table td select {
  width: 10%;
  padding: 5px;
  border: none;
}

#recruit_form button {
  display: block;
  width: 300px;
  height: 50px;
  margin: 20px auto 0;
  border: none;
  background: #393939;
  color: #fff;
  line-height: 50px;
}

#exp_radio input {
    display: none;
}
#exp_radio label {
  display: inline-block;
  position: relative;
  cursor: pointer;
  margin-left: 20px;
  padding: 10px 20px;
  border-radius: 2px;
  color: #3e4956;
  font-size: 14px;
  text-align: center;
  line-height: 1;
}
#exp_radio label:before {
  position: absolute;
  content: "";
  top: 50%;
  left: -10px;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
}
#exp_radio input[type="radio"]:checked + label:after {
  position: absolute;
  content: "";
  top: 50%;
  left: -4px;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  background: #a5a5a5;
}

@media screen and (min-width: 768px) {
  #recruit_form table td input[type="text"] {
    width: 65%;
    margin: 0 10px 0 0;
    padding: 5px;
    border: none;
  }
  #recruit_form table td textarea {
    width: 90%;
    margin: 0 10px 0 0;
    padding: 5px;
    border: none;
  }
  #recruit_form .middle_area {
  }
}

#recruit_line {
  margin: 30px 0 10px;
  text-align: center;
}

#recruit_line img {
  max-width: 100%;
}

.g-recaptcha {
  display: flex;
  justify-content: center;
}