@charset "UTF-8";
.contents-area .rec-content-wrap {
  display: flex;
  gap: 90px;
}
@media only screen and (max-width: 767px) {
  .contents-area .rec-content-wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
.contents-area .heading-wrap {
  flex-shrink: 0;
}
@media print, screen and (min-width: 768px) {
  .contents-area .title-contents {
    position: sticky;
    top: 100px;
    font-size: 48px;
  }
}
@media only screen and (max-width: 767px) {
  .contents-area .title-contents {
    position: relative;
    padding-left: 24px;
    font-size: 21px;
  }
}
@media only screen and (max-width: 767px) {
  .contents-area .title-contents::before {
    content: "";
    position: absolute;
    left: 0;
    top: calc(50% - 5.5px);
    width: 11px;
    height: 11px;
    background-color: #271F43;
  }
}

.rec-content-inner {
  width: 100%;
}

.recruit-box {
  background-color: #F7F7F7;
  padding: 60px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .recruit-box {
    padding: 40px 30px 40px 15px;
    margin-right: -15px;
    margin-bottom: 40px;
  }
}
.recruit-box .rec-type {
  font-size: 18px;
  font-weight: bold;
  color: #4A88B2;
  letter-spacing: 0.01em;
}
@media print, screen and (min-width: 768px) {
  .recruit-box .rec-type {
    padding-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit-box .rec-type {
    font-size: 16px;
  }
}
.recruit-box h3 {
  color: #181229;
  font-weight: bold;
}
@media print, screen and (min-width: 768px) {
  .recruit-box h3 {
    font-size: 32px;
    padding-left: 10px;
    margin-bottom: 18px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
  }
}
.recruit-box .rec-lead {
  padding: 25px 10px;
  border-top: 1px solid #4A88B2;
  border-bottom: 1px solid #4A88B2;
  font-size: 18px;
}
@media only screen and (max-width: 767px) {
  .recruit-box .rec-lead {
    padding: 25px 0;
  }
}
.recruit-box .box-content-01 {
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) {
  .recruit-box .box-content-01 {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
.recruit-box .box-content-01 .rec-img-01 {
  width: 100%;
}
@media print, screen and (min-width: 768px) {
  .recruit-box .box-content-01 .rec-img-01 {
    width: 292px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit-box .box-content-01 .rec-col-01 {
    margin-top: 40px;
  }
}
.recruit-box .box-content-01 .rec-col-01 .rec-check {
  position: relative;
  font-size: 16px;
  margin-right: 45px;
  display: flex;
  gap: 15px;
  align-items: baseline;
  margin-bottom: 20px;
}
@media print, screen and (min-width: 768px) {
  .recruit-box .box-content-01 .rec-col-01 .rec-check {
    margin-left: 10px;
  }
}
.recruit-box .box-content-01 .rec-col-01 .rec-check::before {
  content: "";
  width: 13px;
  height: 12px;
  background: url("/recruit/img/icon-check.png") no-repeat center/contain;
  flex-shrink: 0;
}
.recruit-box .box-content-02 {
  margin-top: 50px;
}
@media print, screen and (min-width: 768px) {
  .recruit-box .box-content-02 dl {
    display: flex;
    margin-bottom: 20px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit-box .box-content-02 dl {
    margin-bottom: 40px;
  }
}
.recruit-box .box-content-02 dl dt {
  font-weight: bold;
  font-size: 20px;
}
@media print, screen and (min-width: 768px) {
  .recruit-box .box-content-02 dl dt {
    width: 185px;
    flex-shrink: 0;
    padding-left: 10px;
  }
}
@media only screen and (max-width: 767px) {
  .recruit-box .box-content-02 dl dt {
    font-size: 18px;
    width: 100%;
    margin-bottom: 15px;
  }
}
.recruit-box .box-content-02 dl dd {
  font-size: 16px;
}
.recruit-box .box-content-02 dl dd a {
  text-decoration: underline;
}

.error .msg {
  color: #FF0000;
}

.rec-button {
  display: flex;
  margin: 50px auto 0;
  width: 200px;
  height: 67px;
  border-radius: 34px;
  background-color: #4A88B2;
  font-size: 18px;
  font-weight: bold;
  color: #F7F7F7;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}

.box-content-02 {
  display: none;
  transition: all 0.4s ease;
}

.rec-button.opened {
  background-color: #4AA7B2;
  color: #fff;
  /* その他スタイル変更自由に */
}

.form-inner {
  max-width: 767px;
}

#form-area {
  padding-top: 90px;
  margin-top: -90px;
}
@media only screen and (max-width: 767px) {
  #form-area .rec-content-wrap {
    gap: 0px;
  }
}
@media only screen and (max-width: 767px) {
  #form-area .rec-content-wrap .title-contents {
    font-size: 21px;
    letter-spacing: 0.01em;
  }
}

.block-form {
  width: 100%;
  background-color: #F7F7F7;
  padding: 60px;
  margin-bottom: 60px;
}
@media only screen and (max-width: 767px) {
  .block-form {
    width: calc(100vw - 15px);
    padding: 40px 30px 40px 15px;
    margin-right: -15px;
    margin-bottom: 40px;
  }
}

.list-radio label:before {
  box-sizing: border-box;
  height: 30px;
  width: 30px;
  margin-top: -14px;
  border-radius: 50%;
  border: none;
}

.list-radio label:after {
  box-sizing: border-box;
  height: 14px;
  width: 14px;
  left: 18px;
  opacity: 0;
  border-radius: 50%;
  opacity: 0;
  margin-top: -5.5px;
  background-color: #181229;
}

.list-radio label {
  padding-left: 60px;
  background-color: unset;
}
@media only screen and (max-width: 767px) {
  .list-radio label {
    padding-top: 8px;
    padding-bottom: 8px;
    padding-right: 12px;
  }
}

.list-radio input[type="radio"]:checked + label {
  background-color: unset;
}

.table-form {
  border-spacing: 40px 20px;
  border-collapse: unset;
}
.table-form .date {
  display: flex;
  gap: 5px;
  align-items: center;
}
.table-form .date .input01 {
  width: 6em;
}
.table-form .date .input02 {
  width: 4em;
}
.table-form dl {
  display: flex;
  gap: 40px;
  margin-bottom: 20px;
}
@media only screen and (max-width: 767px) {
  .table-form dl {
    flex-direction: column;
    gap: 20px;
  }
}
.table-form dt {
  flex-shrink: 0;
  width: 265px;
  display: flex;
  align-items: self-start;
  justify-content: space-between;
  position: relative;
  padding-left: 14px;
}
@media only screen and (max-width: 767px) {
  .table-form dt {
    width: 100%;
    box-sizing: border-box;
  }
}
.table-form dt::before {
  content: "";
  position: absolute;
  background-color: #4A88B2;
  width: 5px;
  height: 26px;
  left: 0;
  top: 0;
}
.table-form dt .label-required {
  margin-left: 0;
  display: flex;
  align-items: center;
  font-size: 12px;
  color: #FFFFFF;
  background-color: #4A88B2;
  padding: 4px 10px;
  border-radius: 4px;
  font-weight: bold;
}
.table-form dd {
  width: 100%;
  max-width: 460px;
}
.table-form input::file-selector-button {
  font-size: 16px;
  padding: 0.5em;
  border: thin solid grey;
  border-radius: 5px;
  margin-top: 5px;
}

.policy {
  padding: 20px;
  border: 1px solid #FF4D4D;
  text-align: left;
  margin-bottom: 20px;
}

.file-input {
  color: #707070;
}
.file-input .file-tips {
  font-size: 15px;
}

.email-tips {
  color: #707070;
  font-size: 15px;
}

.button-submit {
  width: 367px;
  height: 76px;
  background-color: #4A88B2;
  border-radius: 39px;
  border: none;
  font-weight: bold;
  font-size: 20px;
  letter-spacing: 0.15em;
  cursor: pointer;
}
@media only screen and (max-width: 767px) {
  .button-submit {
    width: 192px;
    height: 54px;
    font-size: 18px;
  }
}

/*# sourceMappingURL=page_recruit.css.map */
