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

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

@media screen and (max-width: 768px) {
  .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;
}

.form-field__item:not(:nth-last-of-type(1)) {
  margin-bottom: 24px;
}

.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;
  width: 220px;
}

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

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

@media screen and (max-width: 768px) {
  .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: 48px;
  height: 24px;
  margin-right: 8px;
  border-radius: 3px;
  color: #ffffff;
  font-size: 1.2rem;
}

@media screen and (max-width: 1024px) {
  .form-required,
  .form-optional {
    border-radius: calc(3px * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .form-required,
  .form-optional {
    border-radius: calc(3px * 0.5);
  }
}

.form-required {
  background: #dd441f;
}

.form-optional {
  background: #4e96e6;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #fcfcfc;
  border: solid 1px #dddddd;
  border-radius: 6px;
  font-size: 1.6rem;
  font-family: "Inter", "M PLUS Rounded 1c", sans-serif;
  line-height: 56px;
}

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

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

@media screen and (max-width: 768px) {
  input,
  select,
  textarea {
    height: 48px;
    line-height: 48px;
  }
}

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

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

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

.field-short {
  max-width: 200px;
}

.form-field__item.birth dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.form-field__item.birth dd .birth-year,
.form-field__item.birth dd .birth-month,
.form-field__item.birth dd .birth-day {
  position: relative;
  padding-right: 40px;
}

@media screen and (max-width: 520px) {
  .form-field__item.birth dd .birth-year,
  .form-field__item.birth dd .birth-month,
  .form-field__item.birth dd .birth-day {
    padding-right: 22px;
  }
}

.form-field__item.birth dd .birth-year::after,
.form-field__item.birth dd .birth-month::after,
.form-field__item.birth dd .birth-day::after {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

@media screen and (max-width: 520px) {
  .form-field__item.birth dd .birth-year::after,
  .form-field__item.birth dd .birth-month::after,
  .form-field__item.birth dd .birth-day::after {
    right: 4px;
  }
}

.form-field__item.birth dd .birth-month select,
.form-field__item.birth dd .birth-day select {
  width: 80px;
}

@media screen and (max-width: 520px) {
  .form-field__item.birth dd .birth-month select,
  .form-field__item.birth dd .birth-day select {
    width: 75px;
  }
}

.form-field__item.birth dd .birth-year::after {
  content: "年";
}

.form-field__item.birth dd .birth-year select {
  width: 120px;
}

@media screen and (max-width: 520px) {
  .form-field__item.birth dd .birth-year select {
    width: 96px;
  }
}

.form-field__item.birth dd .birth-month::after {
  content: "月";
}

.form-field__item.birth dd .birth-day::after {
  content: "日";
}

.form-send {
  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;
  gap: 8px;
  width: 100%;
  max-width: 480px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #ffffff;
  border: solid 2px #4e96e6;
  border-radius: 6px;
  color: #4e96e6;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

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

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

@media screen and (max-width: 1024px) {
  .form-send {
    border-radius: calc(6px * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .form-send {
    border-radius: calc(6px * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .form-send {
    height: 56px;
  }
}

.form-send .ico-arrow {
  width: 16px;
  height: 16px;
  fill: #4e96e6;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.form-send input[type="submit"] {
  display: none;
}

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

.form-send:hover .ico-arrow {
  fill: #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-top: calc(8px * 5);
  padding: 32px;
  font-size: 1.4rem;
  text-align: center;
  border-radius: 4px;
}

@media screen and (max-width: 1024px) {
  .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-top: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .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-top: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 960px) {
  .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: 1px solid #dd441f;
  color: #dd441f;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.spam .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(221, 68, 31, 0.08);
  color: #dd441f;
  border: 1px solid #dd441f;
}

.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam 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(221, 68, 31, 0.4);
}

.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam 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(221, 68, 31, 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.spam input:-ms-input-placeholder, .wpcf7 form.spam select:-ms-input-placeholder, .wpcf7 form.spam 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(221, 68, 31, 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.spam input::-ms-input-placeholder, .wpcf7 form.spam select::-ms-input-placeholder, .wpcf7 form.spam 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(221, 68, 31, 0.4);
}

.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam 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(221, 68, 31, 0.4);
}

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

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

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

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #dd441f;
  font-size: 1.4rem;
  background-color: rgba(221, 68, 31, 0.1);
}

.privacy-frame {
  counter-reset: privacy-num;
  position: relative;
  width: 100%;
  height: 280px;
  padding: 12px;
  background: #fcfcfc;
  border: solid 1px #dddddd;
  border-radius: 6px;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 1024px) {
  .privacy-frame {
    border-radius: calc(6px * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .privacy-frame {
    border-radius: calc(6px * 0.5);
  }
}

@media screen and (max-width: 1024px) {
  .privacy-frame {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .privacy-frame {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

.privacy-frame__inner {
  overflow-y: scroll;
  width: 100%;
  height: 100%;
  padding: 20px 32px;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner {
    padding: 12px 20px 12px 8px;
  }
}

.privacy-frame__inner::-webkit-scrollbar {
  width: 6px;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner::-webkit-scrollbar {
    width: 4px;
  }
}

.privacy-frame__inner::-webkit-scrollbar-track {
  background: #dddddd;
  border-radius: 3px;
}

.privacy-frame__inner::-webkit-scrollbar-thumb {
  width: 6px;
  height: 48px;
  background: #4e96e6;
  border-radius: 3px;
  background-clip: content-box;
}

@media screen and (max-width: 960px) {
  .privacy-frame__inner::-webkit-scrollbar-thumb {
    width: 4px;
  }
}

.privacy-frame .privacy-ttl {
  margin-bottom: calc(8px * 3);
  text-align: center;
}

@media screen and (max-width: 1024px) {
  .privacy-frame .privacy-ttl {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .privacy-frame .privacy-ttl {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

.privacy-frame .privacy-ttl__main {
  margin-bottom: 8px;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .privacy-frame .privacy-ttl__main {
    font-size: 2rem;
  }
}

.privacy-frame .privacy-ttl__sub {
  color: #55bbdd;
  font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 768px) {
  .privacy-frame .privacy-ttl__sub {
    font-size: 1.4rem;
  }
}

.privacy-frame .privacy-subttl {
  margin-bottom: 8px;
  color: #4e96e6;
  font-size: 2rem;
}

@media screen and (max-width: 768px) {
  .privacy-frame .privacy-subttl {
    margin-bottom: 8px;
    font-size: 1.6rem;
  }
}

.privacy-frame .privacy-subttl::before {
  counter-increment: privacy-num;
  content: counter(privacy-num, decimal-leading-zero) ".";
}

.privacy-frame .privacy-txt {
  margin-bottom: 16px;
}

.grecaptcha-badge {
  visibility: hidden;
}

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

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

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

.feature {
  margin-bottom: calc(8px * 10);
}

@media screen and (max-width: 1024px) {
  .feature {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .feature {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.feature .feature-list {
  counter-reset: feature-num;
}

.feature .feature-list__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 32px;
}

@media screen and (max-width: 960px) {
  .feature .feature-list__item {
    gap: 24px;
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-list__item {
    gap: 16px;
  }
}

@media screen and (max-width: 640px) {
  .feature .feature-list__item {
    gap: 8px;
  }
}

.feature .feature-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 40px;
}

@media screen and (max-width: 960px) {
  .feature .feature-list__item:not(:nth-last-of-type(1)) {
    margin-bottom: 32px;
  }
}

.feature .feature-list__item .feature-vsl {
  width: 440px;
}

@media screen and (max-width: 960px) {
  .feature .feature-list__item .feature-vsl {
    width: 360px;
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-list__item .feature-vsl {
    width: 300px;
  }
}

@media screen and (max-width: 640px) {
  .feature .feature-list__item .feature-vsl {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}

.feature .feature-list__item .feature-vsl img {
  border-radius: 6px;
}

@media screen and (max-width: 1024px) {
  .feature .feature-list__item .feature-vsl img {
    border-radius: calc(6px * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-list__item .feature-vsl img {
    border-radius: calc(6px * 0.5);
  }
}

.feature .feature-list__item .feature-dtl {
  position: relative;
  width: calc(100% - 472px);
  padding-top: 64px;
}

@media screen and (max-width: 960px) {
  .feature .feature-list__item .feature-dtl {
    width: calc(100% - 384px);
    padding-top: 48px;
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-list__item .feature-dtl {
    width: calc(100% - 316px);
    padding-top: 34px;
  }
}

@media screen and (max-width: 640px) {
  .feature .feature-list__item .feature-dtl {
    width: 100%;
  }
}

.feature .feature-list__item .feature-dtl::before {
  content: '';
  position: absolute;
  top: 8px;
  left: 0;
  width: 82px;
  height: 48px;
  background: url("/wp-content/themes/itreat_base/dist/img/recruit/feature-blu.svg") center/contain no-repeat;
}

@media screen and (max-width: 960px) {
  .feature .feature-list__item .feature-dtl::before {
    width: 60px;
    height: 35px;
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-list__item .feature-dtl::before {
    top: 0;
    width: 52px;
    height: 31px;
  }
}

.feature .feature-list__item .feature-dtl::after {
  counter-increment: feature-num;
  content: counter(feature-num, decimal-leading-zero);
  position: absolute;
  top: 6px;
  left: 88px;
  color: #4e96e6;
  font-size: 4.8rem;
  line-height: 48px;
  font-family: "Barlow", sans-serif;
}

@media screen and (max-width: 960px) {
  .feature .feature-list__item .feature-dtl::after {
    left: 66px;
    font-size: 3.6rem;
    line-height: 36px;
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-list__item .feature-dtl::after {
    left: 56px;
    top: 0;
    font-size: 2.8rem;
    line-height: 28px;
  }
}

.feature .feature-list__item .feature-dtl-ttl {
  position: relative;
  margin-bottom: 24px;
  padding-bottom: 16px;
  color: #4e96e6;
  font-size: 2.8rem;
}

@media screen and (max-width: 960px) {
  .feature .feature-list__item .feature-dtl-ttl {
    font-size: 2.4rem;
    margin-bottom: 16px;
    padding-bottom: 12px;
  }
}

@media screen and (max-width: 768px) {
  .feature .feature-list__item .feature-dtl-ttl {
    font-size: 2rem;
    margin-bottom: 12px;
    padding-bottom: 8px;
  }
}

.feature .feature-list__item .feature-dtl-ttl::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -32px;
  width: calc(100% + 32px);
  height: 3px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/line-stripe.svg") left/14px 3px repeat-x;
}

@media screen and (max-width: 640px) {
  .feature .feature-list__item .feature-dtl-ttl::after {
    width: 100%;
    left: 0;
  }
}

.feature .feature-list__item:nth-of-type(even) .feature-vsl {
  -webkit-box-ordinal-group: 3;
  -ms-flex-order: 2;
  order: 2;
}

@media screen and (max-width: 640px) {
  .feature .feature-list__item:nth-of-type(even) .feature-vsl {
    -webkit-box-ordinal-group: 2;
    -ms-flex-order: 1;
    order: 1;
  }
}

.feature .feature-list__item:nth-of-type(even) .feature-dtl {
  -webkit-box-ordinal-group: 2;
  -ms-flex-order: 1;
  order: 1;
}

.feature .feature-list__item:nth-of-type(even) .feature-dtl::before {
  background-image: url("/wp-content/themes/itreat_base/dist/img/recruit/feature-l-blu.svg");
}

.feature .feature-list__item:nth-of-type(even) .feature-dtl::after {
  color: #55bbdd;
}

.feature .feature-list__item:nth-of-type(even) .feature-dtl-ttl {
  color: #55bbdd;
}

.feature .feature-list__item:nth-of-type(even) .feature-dtl-ttl::after {
  left: auto;
  right: -32px;
}

@media screen and (max-width: 640px) {
  .feature .feature-list__item:nth-of-type(even) .feature-dtl-ttl::after {
    right: 0;
  }
}

.job {
  position: relative;
  padding-top: calc(8px * 10);
  padding-bottom: calc(8px * 12);
  background: #faf9f5;
}

@media screen and (max-width: 1024px) {
  .job {
    padding-top: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .job {
    padding-top: calc((8px * 10) * 0.5);
  }
}

@media screen and (max-width: 1024px) {
  .job {
    padding-bottom: calc((8px * 12) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .job {
    padding-bottom: calc((8px * 12) * 0.5);
  }
}

.job-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px 32px;
  margin-bottom: calc(8px * 3);
}

@media screen and (max-width: 1024px) {
  .job-list {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 768px) {
  .job-list {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 768px) {
  .job-list {
    gap: 16px;
  }
}

.job-list__item {
  position: relative;
  z-index: 1;
  width: calc(50% - 16px);
}

@media screen and (max-width: 768px) {
  .job-list__item {
    width: 100%;
  }
}

.job-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #4e96e6), color-stop(50%, #55bbdd));
  background: linear-gradient(to right, #4e96e6 50%, #55bbdd 50%);
}

.job-list__item::after {
  content: "";
  position: absolute;
  top: 2px;
  left: 2px;
  z-index: -1;
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: 6px;
  background: #ffffff;
}

.job-list__item a {
  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;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  padding: 16px 24px;
  color: #4e96e6;
  font-size: 2.4rem;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  .job-list__item a {
    font-size: 2rem;
    line-height: 1.6;
    padding: 12px 16px;
  }
}

.job-list__item a .ico-arrow {
  width: 16px;
  height: 16px;
  fill: #55bbdd;
}

.job-list__item.is-off a {
  pointer-events: none;
  color: #ccc;
}

.job-list__item.is-off a .ico-arrow {
  display: none;
}

.job-list__item.is-off::before {
  background: -webkit-gradient(linear, left top, right top, color-stop(50%, #ccc), color-stop(50%, #dddddd));
  background: linear-gradient(to right, #ccc 50%, #dddddd 50%);
}

.lower-page {
  padding-bottom: 0;
}

.lower-page .hero__wrap .pagettl {
  width: 580px;
}

@media screen and (max-width: 1280px) {
  .lower-page .hero__wrap .pagettl {
    width: 460px;
  }
}

@media screen and (max-width: 1024px) {
  .lower-page .hero__wrap .pagettl {
    width: 400px;
  }
}

@media screen and (max-width: 960px) {
  .lower-page .hero__wrap .pagettl {
    width: 340px;
  }
}

@media screen and (max-width: 768px) {
  .lower-page .hero__wrap .pagettl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}

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