.form-field {
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-bottom: calc(8px * 3);
  border-bottom: solid 1px rgba(242, 141, 0, 0.24);
}

@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc((8px * 3) * 0.5);
  }
}

.form-field__item:not(:first-of-type) {
  padding-top: calc(8px * 3);
}

@media screen and (max-width: 959px) {
  .form-field__item:not(:first-of-type) {
    padding-top: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-field__item:not(:first-of-type) {
    padding-top: calc((8px * 3) * 0.5);
  }
}

.form-field dt {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  width: 205px;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .form-field dt {
    width: 100%;
    margin-bottom: 8px;
  }
}

.form-field dd {
  width: calc(100% - 320px);
}

@media screen and (max-width: 959px) {
  .form-field dd {
    width: 100%;
  }
}

.form-required,
.form-optional {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 54px;
  height: 24px;
  border-radius: 12px;
  color: #ffffff;
  font-size: 1.4rem;
  line-height: 24px;
}

@media screen and (max-width: 767px) {
  .form-required,
  .form-optional {
    width: 48px;
    height: 20px;
    font-size: 1.2rem;
    line-height: 20px;
  }
}

.form-required {
  background: #F28D00;
}

.form-optional {
  background: #0000ff;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #eeeeee;
  border-radius: 8px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Quicksand", "Zen Kaku Gothic Antique", sans-serif;
  line-height: 56px;
}

@media screen and (max-width: 959px) {
  input,
  select,
  textarea {
    border-radius: calc(8px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  input,
  select,
  textarea {
    border-radius: calc(8px * 0.5);
  }
}

input::-webkit-input-placeholder, select::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #999999;
}

input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  color: #999999;
}

input:-ms-input-placeholder, select:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #999999;
}

input::-ms-input-placeholder, select::-ms-input-placeholder, textarea::-ms-input-placeholder {
  color: #999999;
}

input::placeholder,
select::placeholder,
textarea::placeholder {
  color: #999999;
}

input:focus,
select:focus,
textarea:focus {
  outline: solid 2px #595757;
}

select {
  background: url("/wp-content/themes/itreat_base/dist/img/common/select.svg") center right 16px/14px 14px no-repeat #eeeeee;
}

textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-checkbox .wpcf7-list-item label input[type="checkbox"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #595757;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.wpcf7-radio .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}

.wpcf7-radio .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}

.wpcf7-radio .wpcf7-list-item label input[type="radio"] {
  opacity: 0;
  position: absolute;
}

.wpcf7-radio .wpcf7-list-item label:has(input[type="radio"]:focus) {
  outline: solid 2px #FFA830;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #999999;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #999999;
}

.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

.field-birthday {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
}

.field-birthday__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
}

.field-birthday__item select {
  width: 88px;
}

@media screen and (max-width: 519px) {
  .field-birthday__item select {
    width: 80px;
  }
}

.field-birthday__item.--year select {
  width: 120px;
}

@media screen and (max-width: 519px) {
  .field-birthday__item.--year select {
    width: 104px;
  }
}

.form-send {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 300px;
  height: 64px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #F28D00;
  border: solid 2px #F28D00;
  border-radius: 64px;
  color: #ffffff;
  font-size: 1.8rem;
  font-weight: bold;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 519px) {
  .form-send {
    height: 56px;
    font-size: 1.6rem;
  }
}

.form-send::before {
  position: absolute;
  top: 6px;
  right: 8px;
  content: "";
  width: 48px;
  height: 48px;
  background: #ffffff;
  border-radius: 50%;
}

@media screen and (max-width: 767px) {
  .form-send::before {
    width: 40px;
    height: 40px;
  }
}

.form-send::after {
  position: absolute;
  top: 50%;
  right: 25px;
  translate: 0 -50%;
  content: "";
  width: 12px;
  height: 12px;
  background: #FFA830;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .form-send::after {
    right: 21px;
  }
}

.form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
  cursor: pointer;
}

.form-send:has(input[type="submit"]:focus) {
  outline: solid 2px #FFA830;
}

.form-send:hover {
  background: #ffffff;
  color: #F28D00;
}

.form-send:hover::before {
  background: #F28D00;
}

.form-send:hover::after {
  background: #ffffff;
}

.wpcf7 form .wpcf7-response-output {
  display: none;
}

.wpcf7 form.sent .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  display: block;
  margin-bottom: calc(8px * 5);
  padding: 32px;
  border-radius: 4px;
  font-size: 1.4rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    border-radius: calc(4px * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .wpcf7 form.sent .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.spam .wpcf7-response-output,
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    padding: 24px;
  }
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #00923A;
  color: #00923A;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
  border: solid 1px #ff0000;
}

.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.unaccepted input::-webkit-input-placeholder, .wpcf7 form.unaccepted select::-webkit-input-placeholder, .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.unaccepted input:-ms-input-placeholder, .wpcf7 form.unaccepted select:-ms-input-placeholder, .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.unaccepted input::-ms-input-placeholder, .wpcf7 form.unaccepted select::-ms-input-placeholder, .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(255, 168, 48, 0.08);
  color: #ff0000;
  border: solid 1px #FFA830;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(255, 168, 48, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(255, 168, 48, 0.4);
}

.wpcf7 form.spam input:-ms-input-placeholder, .wpcf7 form.spam select:-ms-input-placeholder, .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(255, 168, 48, 0.4);
}

.wpcf7 form.spam input::-ms-input-placeholder, .wpcf7 form.spam select::-ms-input-placeholder, .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(255, 168, 48, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(255, 168, 48, 0.4);
}

.screen-reader-response {
  display: none;
}

.wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #ff0000;
  font-size: 1.4rem;
}

.screen-reader-response {
  display: none;
}

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #ff0000;
  font-size: 1.4rem;
  background-color: rgba(255, 0, 0, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}

.recaptcha-txt a {
  color: #999999;
  text-decoration: underline;
}

.recaptcha-txt a:hover {
  text-decoration: none;
}

.lower-page {
  padding-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  .lower-page {
    padding-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .lower-page {
    padding-bottom: calc((8px * 13) * 0.5);
  }
}

.tab-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 16px;
  margin-bottom: 40px;
}

.tab-menu__item {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 24px;
  background: #ffffff;
  border: solid 2px #FFA830;
  border-radius: 6px;
  color: #FFA830;
  font-size: 1.8rem;
  cursor: pointer;
}

.tab-menu__item.is-active {
  background: #FFA830;
  color: #ffffff;
}

.tab-panel__item {
  display: none;
}

.tab-panel__item.is-show {
  display: block;
}

#archive-recruit .cate-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 959px) {
  #archive-recruit .cate-menu {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-recruit .cate-menu {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 519px) {
  #archive-recruit .cate-menu {
    gap: 12px;
  }
}

#archive-recruit .cate-menu__item {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}

@media screen and (max-width: 519px) {
  #archive-recruit .cate-menu__item {
    width: calc((100% / 2) - (12px * 1 / 2));
  }
}

#archive-recruit .cate-menu__item:not(:nth-last-of-type(1))::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: calc(100% - 16px);
  background: #FFA830;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 519px) {
  #archive-recruit .cate-menu__item:not(:nth-last-of-type(1))::after {
    display: none;
  }
}

#archive-recruit .cate-menu__item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 8px 32px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 519px) {
  #archive-recruit .cate-menu__item a {
    background: #FFFEF0;
  }
}

#archive-recruit .cate-menu__item a:hover, #archive-recruit .cate-menu__item a.is-current {
  color: #FFA830;
  font-weight: bold;
}

@media screen and (max-width: 519px) {
  #archive-recruit .cate-menu__item a:hover, #archive-recruit .cate-menu__item a.is-current {
    background: #FFA830;
    color: #ffffff;
  }
}

#archive-recruit .wp-pagenavi {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 12px;
}

@media screen and (max-width: 519px) {
  #archive-recruit .wp-pagenavi {
    position: relative;
    padding-bottom: 52px;
  }
}

#archive-recruit .wp-pagenavi .page,
#archive-recruit .wp-pagenavi .current,
#archive-recruit .wp-pagenavi .nextpostslink,
#archive-recruit .wp-pagenavi .previouspostslink {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 1;
  width: 48px;
  height: 48px;
  background: #ffffff;
  border: solid 1px #FFA830;
  border-radius: 24px;
  color: #FFA830;
  font-size: 1.6rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

@media screen and (max-width: 767px) {
  #archive-recruit .wp-pagenavi .page,
  #archive-recruit .wp-pagenavi .current,
  #archive-recruit .wp-pagenavi .nextpostslink,
  #archive-recruit .wp-pagenavi .previouspostslink {
    width: 40px;
    height: 40px;
    border-radius: 20px;
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 519px) {
  #archive-recruit .wp-pagenavi .page,
  #archive-recruit .wp-pagenavi .current,
  #archive-recruit .wp-pagenavi .nextpostslink,
  #archive-recruit .wp-pagenavi .previouspostslink {
    font-size: 1.2rem;
  }
}

#archive-recruit .wp-pagenavi .page:not(.current):hover,
#archive-recruit .wp-pagenavi .current:not(.current):hover,
#archive-recruit .wp-pagenavi .nextpostslink:not(.current):hover,
#archive-recruit .wp-pagenavi .previouspostslink:not(.current):hover {
  background: #FFA830;
  color: #ffffff;
}

#archive-recruit .wp-pagenavi .current {
  background: #FFA830;
  color: #ffffff;
}

#archive-recruit .wp-pagenavi .page,
#archive-recruit .wp-pagenavi .current {
  max-width: 80px;
}

@media screen and (max-width: 519px) {
  #archive-recruit .wp-pagenavi .page,
  #archive-recruit .wp-pagenavi .current {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
  }
}

#archive-recruit .wp-pagenavi .nextpostslink,
#archive-recruit .wp-pagenavi .previouspostslink {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 8px;
  width: 104px;
  white-space: nowrap;
}

@media screen and (max-width: 959px) {
  #archive-recruit .wp-pagenavi .nextpostslink,
  #archive-recruit .wp-pagenavi .previouspostslink {
    width: 88px;
  }
}

@media screen and (max-width: 519px) {
  #archive-recruit .wp-pagenavi .nextpostslink,
  #archive-recruit .wp-pagenavi .previouspostslink {
    width: calc((100% / 2) - (12px * 1 / 2));
  }
}

#archive-recruit .wp-pagenavi .nextpostslink::before,
#archive-recruit .wp-pagenavi .previouspostslink::before {
  content: '';
  width: 12px;
  height: 12px;
  background: #FFA830;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

#archive-recruit .wp-pagenavi .nextpostslink:hover::before,
#archive-recruit .wp-pagenavi .previouspostslink:hover::before {
  background: #ffffff;
}

@media screen and (max-width: 519px) {
  #archive-recruit .wp-pagenavi .previouspostslink {
    position: absolute;
    bottom: 0;
    left: 0;
  }
}

#archive-recruit .wp-pagenavi .previouspostslink::before {
  -webkit-transform: rotateZ(180deg);
  transform: rotateZ(180deg);
}

#archive-recruit .wp-pagenavi .nextpostslink {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

@media screen and (max-width: 519px) {
  #archive-recruit .wp-pagenavi .nextpostslink {
    position: absolute;
    right: 0;
    bottom: 0;
  }
}

#archive-recruit .message .message-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px;
}

#archive-recruit .message .message-unit__vsl {
  width: 450px;
}

@media screen and (max-width: 959px) {
  #archive-recruit .message .message-unit__vsl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
}

#archive-recruit .message .message-unit__vsl img {
  border-radius: 8px;
}

@media screen and (max-width: 959px) {
  #archive-recruit .message .message-unit__vsl img {
    border-radius: calc(8px * 0.75);
  }
}

@media screen and (max-width: 519px) {
  #archive-recruit .message .message-unit__vsl img {
    border-radius: calc(8px * 0.5);
  }
}

#archive-recruit .message .message-unit__dtl {
  width: calc(100% - 490px);
}

@media screen and (max-width: 959px) {
  #archive-recruit .message .message-unit__dtl {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    width: 100%;
  }
}

#archive-recruit .recruit-job {
  margin-bottom: 16px;
  color: #90C31F;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
}

#archive-recruit .recruit-info__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

#archive-recruit .recruit-info__item:not(:nth-last-of-type(1)) {
  margin-bottom: 8px;
}

#archive-recruit .recruit-info__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  width: 200px;
  background: #F3F9E0;
  border-radius: 4px 0 0 4px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  #archive-recruit .recruit-info__item dt {
    width: 100%;
    padding: 20px 16px 12px;
    border-radius: 4px;
  }
}

@media screen and (max-width: 519px) {
  #archive-recruit .recruit-info__item dt {
    padding: 16px 12px 8px;
    border-radius: 2px;
  }
}

#archive-recruit .recruit-info__item dt::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 100%;
  background: #B4D93F;
  border-radius: 4px 0 0 4px;
}

@media screen and (max-width: 959px) {
  #archive-recruit .recruit-info__item dt::before {
    width: 100%;
    height: 6px;
    border-radius: 4px 4px 0 0;
  }
}

@media screen and (max-width: 519px) {
  #archive-recruit .recruit-info__item dt::before {
    height: 4px;
    border-radius: 2px 2px 0 0;
  }
}

#archive-recruit .recruit-info__item dd {
  width: calc(100% - 200px);
  padding: 16px;
  border: solid 2px #eeeeee;
  border-left: none;
  border-radius: 0 4px 4px 0;
}

@media screen and (max-width: 959px) {
  #archive-recruit .recruit-info__item dd {
    width: 100%;
    border: none;
    border-radius: 0;
  }
}

/*# sourceMappingURL=../../maps/pages/recruit.css.map */
