@charset "UTF-8";
.contact {
  width: 100%;
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 1279px) {
  .contact {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 959px) {
  .contact {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .contact {
    padding-right: 16px;
    padding-left: 16px;
  }
}

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

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

.contact 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #FF8223;
  border-radius: 10px;
}

@media screen and (max-width: 519px) {
  .contact a {
    padding: 20px;
  }
}

.contact a .contact-ttl {
  margin-bottom: 16px;
  color: #FF8223;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (max-width: 959px) {
  .contact a .contact-ttl {
    font-size: 1.8rem;
  }
}

.contact a .tel-txt {
  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: 4px;
  margin-bottom: 12px;
  font-size: 2.8rem;
  font-family: "Work Sans", sans-serif;
}

.contact a .tel-txt .ico-tel {
  display: block;
  width: 16px;
  height: 21px;
  background: #565656;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/tel.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/tel.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 1279px) {
  .contact a .tel-txt .ico-tel {
    width: 14px;
    height: 18px;
  }
}

.contact a .contact-list {
  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: 8px 24px;
}

@media screen and (max-width: 519px) {
  .contact a .contact-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.contact a .contact-list__item {
  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: 8px;
}

.contact a .contact-list__item dt {
  padding: 3px 8px;
  background: #F6AB01;
  border-radius: 2px;
  color: #ffffff;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .contact a .contact-list__item dt {
    padding: 2px 6px;
    font-size: 1.2rem;
  }
}

.contact a .contact-list__item dd {
  font-size: 1.8rem;
}

@media screen and (max-width: 959px) {
  .contact a .contact-list__item dd {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .contact a .contact-list__item dd {
    font-size: 1.4rem;
  }
}

.contact a:hover {
  background: #FF8223;
}

.contact a:hover .contact-ttl {
  color: #ffffff;
}

.contact a:hover .tel-txt {
  color: #ffffff;
}

.contact a:hover .tel-txt .ico-tel {
  background: #ffffff;
}

.contact a:hover .contact-list__item dt {
  background: #ffffff;
  color: #F6AB01;
}

.contact a:hover .contact-list__item dd {
  color: #ffffff;
}

.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;
  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;
  gap: 10px;
  width: 304px;
  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-field .form-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: 10px;
}

.form-field .num-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.form-field .num-area input {
  width: 190px;
}

.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: 42px;
  height: 22px;
  color: #ffffff;
  font-size: 1.2rem;
  border-radius: 10px;
}

.form-required {
  background: #FF8223;
}

.form-optional {
  background: #1EB3F3;
}

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

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

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

.year {
  width: 84px;
}

.month {
  width: 72px;
}

.day {
  width: 72px;
}

.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: #ffffff;
  border: solid 2px #cccccc;
  -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 #FF8223 #FF8223 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

@media screen and (max-width: 767px) {
  .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
    top: 1px;
  }
}

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

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

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

.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: 16px;
  height: 16px;
  background: #ffffff;
  border: solid 1px #FF8223;
  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: 3px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: #FF8223;
  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: #FF8223;
}

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

.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;
  width: 100%;
  max-width: 280px;
  height: 56px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #1EB3F3;
  border: 1px solid #1EB3F3;
  border-radius: 56px;
  color: #ffffff;
  font-size: 1.8rem;
  -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: 959px) {
  .form-send {
    height: 50px;
    font-size: 1.6rem;
  }
}

.form-send input {
  width: auto;
}

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

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

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

.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 #F6AB01;
  color: #F6AB01;
}

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

.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(238, 84, 1, 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(238, 84, 1, 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(238, 84, 1, 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(238, 84, 1, 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(238, 84, 1, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(250, 154, 0, 0.08);
  color: #EE5401;
  border: solid 1px #FA9A00;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(250, 154, 0, 0.4);
}

.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(250, 154, 0, 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(250, 154, 0, 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(250, 154, 0, 0.4);
}

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(250, 154, 0, 0.4);
}

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

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

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

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #EE5401;
  font-size: 1.4rem;
  background-color: rgba(238, 84, 1, 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;
}

.privacy-frame {
  margin: 0 auto 40px;
  padding: 24px;
  max-width: 710px;
  width: 100%;
  border: 1px solid #cccccc;
  background: #ffffff;
  border-radius: 2px;
}

@media screen and (max-width: 959px) {
  .privacy-frame {
    padding: 28px;
  }
}

@media screen and (max-width: 767px) {
  .privacy-frame {
    margin: 0 auto 28px;
    padding: 24px;
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame {
    padding: 16px;
  }
}

.privacy-frame .privacy-inner {
  overflow-y: scroll;
  height: 180px;
  padding: 0 16px;
}

@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner {
    padding: 0 12px;
    height: 160px;
  }
}

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner {
    padding: 0 8px;
  }
}

.privacy-frame .privacy-inner::-webkit-scrollbar {
  width: 3px;
}

.privacy-frame .privacy-inner::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 4px;
}

.privacy-frame .privacy-inner::-webkit-scrollbar-thumb {
  background: #FF8223;
  border-radius: 4px;
}

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

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

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

.privacy-frame .privacy-inner .privacy-ttl__main {
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .privacy-frame .privacy-inner .privacy-ttl__main {
    margin-bottom: 2px;
    font-size: 1.6rem;
  }
}

.privacy-frame .privacy-inner .privacy-ttl__sub {
  display: block;
  color: #FF8223;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
}

.policy-list {
  counter-reset: list-num 0;
}

.policy-list__item {
  padding: 24px 0;
  border-bottom: solid 1px #eeeeee;
}

@media screen and (max-width: 959px) {
  .policy-list__item {
    padding: 16px 0;
  }
}

.policy-list__item:first-child {
  border-top: solid 1px #eeeeee;
}

.policy-list__item dt {
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .policy-list__item dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.policy-list__item dt::before {
  counter-increment: list-num;
  content: counter(list-num, decimal-leading-zero) ".";
  font-family: "Work Sans", sans-serif;
  color: #FF8223;
  font-size: 2rem;
}

@media screen and (max-width: 959px) {
  .policy-list__item dt::before {
    font-size: 1.7rem;
  }
}

#content {
  /* 方眼紙模様に必須のスタイル */
  position: relative;
  z-index: 0;
  background-image: linear-gradient(0deg, transparent calc(100% - 1px), rgba(204, 204, 204, 0.2) calc(100% - 1px)), linear-gradient(90deg, transparent calc(100% - 1px), rgba(204, 204, 204, 0.2) calc(100% - 1px));
  background-size: 20px 20px;
  background-repeat: repeat;
  background-position: center center;
  overflow: hidden;
}

.front-page .headline {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  margin-bottom: calc(8px * 4);
  font-size: 3.2rem;
}

@media screen and (max-width: 959px) {
  .front-page .headline {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .front-page .headline {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.message-unit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  gap: 64px;
}

@media screen and (max-width: 1023px) {
  .message-unit {
    gap: 48px;
  }
}

@media screen and (max-width: 959px) {
  .message-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 767px) {
  .message-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
    gap: 24px;
  }
}

.message-unit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 70%;
  z-index: -1;
  width: 528px;
  height: 403px;
}

@media screen and (max-width: 1023px) {
  .message-unit::before {
    right: 62%;
  }
}

@media screen and (max-width: 767px) {
  .message-unit::before {
    right: auto;
    left: 50%;
    translate: -50% 0;
  }
}

@media screen and (max-width: 519px) {
  .message-unit::before {
    width: 100%;
    height: 100%;
  }
}

.message-unit__ttl {
  width: 345px;
}

@media screen and (max-width: 959px) {
  .message-unit__ttl {
    width: 300px;
  }
}

@media screen and (max-width: 767px) {
  .message-unit__ttl {
    width: 100%;
  }
}

.message-unit__ttl .mes-ttl-sub {
  position: relative;
  padding-left: 60px;
  margin-bottom: 28px;
  font-size: 2.8rem;
  font-weight: bold;
  text-transform: uppercase;
}

@media screen and (max-width: 959px) {
  .message-unit__ttl .mes-ttl-sub {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .message-unit__ttl .mes-ttl-sub {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
    margin-bottom: 12px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .message-unit__ttl .mes-ttl-sub {
    font-size: 1.6rem;
  }
}

.message-unit__ttl .mes-ttl-sub::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  content: "";
  width: 40px;
  height: 4px;
}

.message-unit__ttl .mes-ttl-sub::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 42px;
  translate: 0 -50%;
  width: 4px;
  height: 4px;
  border-radius: 100%;
}

.message-unit__ttl .mes-ttl {
  position: relative;
  margin-bottom: calc(8px * 6);
  font-size: 4rem;
  font-weight: bold;
  letter-spacing: 2px;
}

@media screen and (max-width: 959px) {
  .message-unit__ttl .mes-ttl {
    margin-bottom: calc((8px * 6) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message-unit__ttl .mes-ttl {
    margin-bottom: calc((8px * 6) * 0.5);
  }
}

@media screen and (max-width: 1023px) {
  .message-unit__ttl .mes-ttl {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 959px) {
  .message-unit__ttl .mes-ttl {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 767px) {
  .message-unit__ttl .mes-ttl {
    font-size: 2.4rem;
    margin-bottom: 0;
  }
}

.message-unit__ttl .mes-ttl span {
  position: relative;
  padding: 0px 28px 0 24px;
  margin-right: 16px;
  font-size: 5.2rem;
  background: linear-gradient(145deg, #EE5401, #FBB400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 1023px) {
  .message-unit__ttl .mes-ttl span {
    font-size: 4rem;
  }
}

@media screen and (max-width: 959px) {
  .message-unit__ttl .mes-ttl span {
    font-size: 3.2rem;
    padding: 0px 20px 0 18px;
  }
}

@media screen and (max-width: 767px) {
  .message-unit__ttl .mes-ttl span {
    font-size: 2.8rem;
    margin-right: 8px;
    padding: 0px 15px 0 15px;
  }
}

.message-unit__ttl .mes-ttl span::before, .message-unit__ttl .mes-ttl span::after {
  content: "";
  width: 30px;
  height: 30px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/brackets.svg") center/cover no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

@media screen and (max-width: 959px) {
  .message-unit__ttl .mes-ttl span::before, .message-unit__ttl .mes-ttl span::after {
    width: 20px;
    height: 20px;
  }
}

.message-unit__ttl .mes-ttl span::before {
  position: absolute;
  top: -4px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .message-unit__ttl .mes-ttl span::before {
    top: -2px;
  }
}

.message-unit__ttl .mes-ttl span::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .message-unit__ttl .mes-ttl span::after {
    bottom: -2px;
  }
}

.message-unit__txt {
  width: calc(100% - 409px);
}

@media screen and (max-width: 1023px) {
  .message-unit__txt {
    width: calc(100% - 393px);
  }
}

@media screen and (max-width: 959px) {
  .message-unit__txt {
    width: calc(100% - 332px);
  }
}

@media screen and (max-width: 767px) {
  .message-unit__txt {
    width: 100%;
    margin-bottom: 32px;
  }
}

.message-unit__txt .message-lead {
  font-size: 2.8rem;
  margin-bottom: calc(8px * 4);
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .message-unit__txt .message-lead {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .message-unit__txt .message-lead {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .message-unit__txt .message-lead {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .message-unit__txt .message-lead {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .message-unit__txt .message-lead {
    font-size: 1.6rem;
  }
}

.post-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
}

@media screen and (max-width: 1023px) {
  .post-unit {
    gap: 20px;
  }
}

@media screen and (max-width: 959px) {
  .post-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 32px;
  }
}

.post-unit__ttl {
  width: 260px;
}

@media screen and (max-width: 959px) {
  .post-unit__ttl {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 16px;
  }
}

@media screen and (max-width: 959px) {
  .post-unit__ttl .headttl {
    margin-bottom: 0;
  }
}

.post-unit__list {
  width: calc(100% - 300px);
}

@media screen and (max-width: 1023px) {
  .post-unit__list {
    width: calc(100% - 280px);
  }
}

@media screen and (max-width: 959px) {
  .post-unit__list {
    width: 100%;
  }
}

.mv-wrap {
  contain: paint;
  margin-bottom: calc(8px * 15);
  margin-top: 90px;
}

@media screen and (max-width: 959px) {
  .mv-wrap {
    margin-bottom: calc((8px * 15) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .mv-wrap {
    margin-bottom: calc((8px * 15) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .mv-wrap {
    margin-top: 84px;
  }
}

@media screen and (max-width: 959px) {
  .mv-wrap {
    margin-top: 78px;
  }
}

@media screen and (max-width: 767px) {
  .mv-wrap {
    margin-top: 60px;
  }
}

@media screen and (max-width: 519px) {
  .mv-wrap {
    margin-top: 55px;
    margin-bottom: 48px;
  }
}

.mv {
  position: relative;
  height: auto;
  min-height: 2200px;
  max-height: 100%;
}

@media screen and (max-width: 4000px) {
  .mv {
    min-height: 1490px;
  }
}

@media screen and (max-width: 2800px) {
  .mv {
    min-height: 1060px;
  }
}

@media screen and (max-width: 2000px) {
  .mv {
    min-height: 920px;
  }
}

@media screen and (max-width: 1800px) {
  .mv {
    min-height: 890px;
  }
}

@media screen and (max-width: 1600px) {
  .mv {
    min-height: 670px;
  }
}

@media screen and (max-width: 1279px) {
  .mv {
    height: 100%;
    min-height: 780px;
  }
}

@media screen and (max-width: 959px) {
  .mv {
    min-height: 580px;
  }
}

@media screen and (max-width: 767px) {
  .mv {
    min-height: 434px;
  }
}

@media screen and (max-width: 519px) {
  .mv {
    min-height: 65dvw;
  }
}

.mv .js-slider {
  position: absolute;
  top: 0;
  left: 50%;
  translate: -50% 0;
  margin-inline: auto;
  width: 100%;
  -webkit-animation-delay: .2s;
  animation-delay: .2s;
}

@media screen and (max-width: 1279px) {
  .mv .js-slider {
    width: 1600px;
  }
}

@media screen and (max-width: 959px) {
  .mv .js-slider {
    width: 1200px;
  }
}

@media screen and (max-width: 767px) {
  .mv .js-slider {
    width: 880px;
  }
}

@media screen and (max-width: 519px) {
  .mv .js-slider {
    width: 132%;
    max-width: 640px;
  }
}

.mv .mv-txt {
  position: absolute;
  top: 48%;
  right: 0;
  translate: -50% -50%;
  width: 50%;
  max-width: 470px;
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

@media screen and (max-width: 1279px) {
  .mv .mv-txt {
    right: -44px;
    width: 46%;
    max-width: 372px;
  }
}

@media screen and (max-width: 1023px) {
  .mv .mv-txt {
    max-width: 326px;
  }
}

@media screen and (max-width: 959px) {
  .mv .mv-txt {
    max-width: 319px;
  }
}

@media screen and (max-width: 767px) {
  .mv .mv-txt {
    width: 50%;
    max-width: 233px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-txt {
    right: -66px;
    top: 43%;
    width: 62%;
    max-width: 176px;
  }
}

.mv .mv-txt .hero-catch {
  position: relative;
  color: #ffffff;
  font-weight: bold;
}

.mv .mv-txt .hero-catch::before {
  content: "";
  position: absolute;
  top: 60px;
  left: calc(100% - 270px);
  width: 344px;
  height: 278px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/catch-deco.svg") center/contain no-repeat;
}

@media screen and (max-width: 1279px) {
  .mv .mv-txt .hero-catch::before {
    position: absolute;
    top: 62px;
    left: calc(100% - 234px);
    width: 304px;
    height: 218px;
  }
}

@media screen and (max-width: 1023px) {
  .mv .mv-txt .hero-catch::before {
    position: absolute;
    top: 62px;
    left: calc(100% - 154px);
    width: 194px;
    height: 168px;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-txt .hero-catch::before {
    top: 72px;
    left: calc(100% - 94px);
    width: 104px;
    height: 78px;
  }
}

.mv .mv-txt .hero-catch__main {
  margin-bottom: 30px;
  font-size: 7.2rem;
  letter-spacing: 8px;
  line-height: 1.4;
}

@media screen and (max-width: 1279px) {
  .mv .mv-txt .hero-catch__main {
    margin-bottom: 22px;
    font-size: 5.6rem;
  }
}

@media screen and (max-width: 1023px) {
  .mv .mv-txt .hero-catch__main {
    margin-bottom: 18px;
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 959px) {
  .mv .mv-txt .hero-catch__main {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .mv .mv-txt .hero-catch__main {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-txt .hero-catch__main {
    font-size: 2.4rem;
    letter-spacing: 4px;
  }
}

.mv .mv-txt .hero-catch__sub {
  font-size: 2rem;
  letter-spacing: 1.5px;
}

@media screen and (max-width: 1279px) {
  .mv .mv-txt .hero-catch__sub {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 1023px) {
  .mv .mv-txt .hero-catch__sub {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 519px) {
  .mv .mv-txt .hero-catch__sub {
    letter-spacing: 1px;
    font-size: 1.3rem;
  }
}

.com-message {
  width: 100%;
  max-width: 1280px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  margin-inline: auto;
  margin-bottom: calc(8px * 15);
}

@media screen and (max-width: 1279px) {
  .com-message {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 959px) {
  .com-message {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .com-message {
    padding-right: 16px;
    padding-left: 16px;
  }
}

@media screen and (max-width: 959px) {
  .com-message {
    margin-bottom: calc((8px * 15) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .com-message {
    margin-bottom: calc((8px * 15) * 0.5);
  }
}

@media screen and (max-width: 1440px) {
  .com-message {
    padding-left: 0;
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .com-message {
    margin-left: auto;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .com-message {
    padding-left: 16px;
  }
}

.com-message .com-unit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 48px;
}

@media screen and (max-width: 1279px) {
  .com-message .com-unit {
    gap: 40px;
  }
}

@media screen and (max-width: 1023px) {
  .com-message .com-unit {
    gap: 32px;
  }
}

@media screen and (max-width: 959px) {
  .com-message .com-unit {
    gap: 28px;
  }
}

@media screen and (max-width: 767px) {
  .com-message .com-unit {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}

@media screen and (max-width: 519px) {
  .com-message .com-unit {
    gap: 20px;
  }
}

.com-message .com-unit__vsl {
  width: 665px;
}

@media screen and (max-width: 1279px) {
  .com-message .com-unit__vsl {
    width: 540px;
  }
}

@media screen and (max-width: 1023px) {
  .com-message .com-unit__vsl {
    width: 480px;
  }
}

@media screen and (max-width: 959px) {
  .com-message .com-unit__vsl {
    width: 380px;
  }
}

@media screen and (max-width: 767px) {
  .com-message .com-unit__vsl {
    margin-inline: auto;
    max-width: 380px;
    width: 100%;
  }
}

@media screen and (max-width: 519px) {
  .com-message .com-unit__vsl {
    max-width: 280px;
  }
}

.com-message .com-unit__vsl img {
  border-radius: 0 0 104px 0;
}

@media screen and (max-width: 1279px) {
  .com-message .com-unit__vsl img {
    border-radius: 0 0 80px 0;
  }
}

@media screen and (max-width: 1023px) {
  .com-message .com-unit__vsl img {
    border-radius: 0 0 64px 0;
  }
}

@media screen and (max-width: 959px) {
  .com-message .com-unit__vsl img {
    border-radius: 0 0 56px 0;
  }
}

@media screen and (max-width: 767px) {
  .com-message .com-unit__vsl img {
    border-radius: 48px 0 48px 0;
  }
}

.com-message .com-unit__dtl {
  width: calc(100% - 713px);
}

@media screen and (max-width: 1279px) {
  .com-message .com-unit__dtl {
    width: calc(100% - 580px);
  }
}

@media screen and (max-width: 1023px) {
  .com-message .com-unit__dtl {
    width: calc(100% - 512px);
  }
}

@media screen and (max-width: 959px) {
  .com-message .com-unit__dtl {
    width: calc(100% - 408px);
  }
}

@media screen and (max-width: 767px) {
  .com-message .com-unit__dtl {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.com-message .com-unit__dtl .mes-ttl {
  margin-bottom: calc(8px * 5);
  font-size: 6.0rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .com-message .com-unit__dtl .mes-ttl {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .com-message .com-unit__dtl .mes-ttl {
    margin-bottom: calc((8px * 5) * 0.5);
  }
}

@media screen and (max-width: 1279px) {
  .com-message .com-unit__dtl .mes-ttl {
    font-size: 4.8rem;
  }
}

@media screen and (max-width: 1023px) {
  .com-message .com-unit__dtl .mes-ttl {
    font-size: 4rem;
  }
}

@media screen and (max-width: 959px) {
  .com-message .com-unit__dtl .mes-ttl {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .com-message .com-unit__dtl .mes-ttl {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 519px) {
  .com-message .com-unit__dtl .mes-ttl {
    margin-bottom: 16px;
    font-size: 2.4rem;
  }
}

.com-message .com-unit__dtl .com-lead {
  margin-bottom: calc(8px * 3);
  font-size: 2.8rem;
}

@media screen and (max-width: 959px) {
  .com-message .com-unit__dtl .com-lead {
    margin-bottom: calc((8px * 3) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .com-message .com-unit__dtl .com-lead {
    margin-bottom: calc((8px * 3) * 0.5);
  }
}

@media screen and (max-width: 959px) {
  .com-message .com-unit__dtl .com-lead {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 767px) {
  .com-message .com-unit__dtl .com-lead {
    font-size: 2rem;
  }
}

@media screen and (max-width: 519px) {
  .com-message .com-unit__dtl .com-lead {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 767px) {
  .com-message .btn {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.service {
  position: relative;
  margin-bottom: calc(8px * 32);
}

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

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

.service::before {
  content: "";
  position: absolute;
  top: 32px;
  right: 0;
  z-index: -1;
  width: calc(100% - 120px);
  height: calc(100% + 72px);
  background: #FBFAF3;
  border-radius: 50px 0 0 50px;
}

@media screen and (max-width: 959px) {
  .service::before {
    width: calc(100% - 64px);
    height: calc(100% + 64px);
  }
}

@media screen and (max-width: 767px) {
  .service::before {
    height: calc(100% + 32px);
    border-radius: 32px 0 0 32px;
  }
}

@media screen and (max-width: 519px) {
  .service::before {
    width: calc(100% - 32px);
  }
}

.service::after {
  content: "";
  position: absolute;
  top: -32px;
  right: 0;
  display: block;
  width: 64px;
  height: 64px;
  background: #FBFAF3;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/common/radius.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/common/radius.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 959px) {
  .service::after {
    top: -24px;
    width: 56px;
    height: 56px;
  }
}

@media screen and (max-width: 767px) {
  .service::after {
    top: -16px;
    width: 48px;
    height: 48px;
  }
}

.headttl-sub .num-deco {
  position: relative;
  font-size: 4rem;
}

@media screen and (max-width: 959px) {
  .headttl-sub .num-deco {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 519px) {
  .headttl-sub .num-deco {
    font-size: 2.8rem;
  }
}

.headttl-sub .num-deco::before {
  content: "";
  position: absolute;
  bottom: 10px;
  left: 50%;
  translate: -50% 0;
  width: 2px;
  height: 6px;
  background: #ffffff;
}

@media screen and (max-width: 519px) {
  .headttl-sub .num-deco::before {
    bottom: 8px;
  }
}

.service-list {
  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;
  gap: 24px;
}

@media screen and (max-width: 767px) {
  .service-list {
    gap: 12px;
  }
}

@media screen and (max-width: 519px) {
  .service-list {
    gap: 10px;
  }
}

.service-list__item {
  width: calc((100% / 2) - (24px * 1 / 2));
  -webkit-box-shadow: 0px 0px 16px 0px rgba(86, 86, 86, 0.1);
  box-shadow: 0px 0px 16px 0px rgba(86, 86, 86, 0.1);
  min-height: 358px;
}

@media screen and (max-width: 767px) {
  .service-list__item {
    width: calc((100% / 2) - (12px * 1 / 2));
    min-height: 280px;
  }
}

@media screen and (max-width: 519px) {
  .service-list__item {
    width: 100%;
    min-height: 260px;
  }
}

.service-list__item a {
  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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding-top: 40px;
  border: 3px solid #ffffff;
  background: #ffffff;
  border-radius: 6px;
  height: 100%;
}

.service-list__item a .service-ttl-en {
  position: absolute;
  top: 9px;
  left: 27px;
  color: rgba(153, 153, 153, 0.5);
  text-transform: uppercase;
  font-size: 1.4rem;
  font-family: "Work Sans", sans-serif;
}

.service-list__item a .service-ttl-en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -30px;
  translate: 0 -50%;
  width: 20px;
  height: 2px;
  background: #FF8223;
}

.service-list__item a .service-ico {
  display: block;
  width: 96px;
  height: 96px;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 767px) {
  .service-list__item a .service-ico {
    width: 88px;
    height: 88px;
  }
}

@media screen and (max-width: 519px) {
  .service-list__item a .service-ico {
    width: 72px;
    height: 72px;
  }
}

.service-list__item a .service-ico.--staff {
  background: #FF8223;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/staff.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/staff.svg");
}

.service-list__item a .service-ico.--business {
  background: #FF8223;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/business.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/business.svg");
}

.service-list__item a .service-ico.--dispatch {
  background: #F6AB01;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/dispatch.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/dispatch.svg");
}

.service-list__item a .service-ico.--introduction {
  background: #F6AB01;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/introduction.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/introduction.svg");
}

.service-list__item a .service-ico.--foreign {
  background: #FF8223;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/foreign.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/foreign.svg");
}

.service-list__item a .service-ico.--senior {
  background: #FF8223;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/senior.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/senior.svg");
}

.service-list__item a .service-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6px;
}

@media screen and (max-width: 959px) {
  .service-list__item a .service-ttl {
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .service-list__item a .service-ttl {
    font-size: 1.6rem;
  }
}

.service-list__item a .service-txt {
  padding: 0 32px 32px;
  min-height: 129px;
}

@media screen and (max-width: 959px) {
  .service-list__item a .service-txt {
    padding: 0 24px 16px;
    min-height: 131px;
  }
}

@media screen and (max-width: 767px) {
  .service-list__item a .service-txt {
    padding: 0 14px 16px;
    min-height: 142px;
  }
}

@media screen and (max-width: 519px) {
  .service-list__item a .service-txt {
    padding: 0 10px 10px;
    min-height: 70px;
  }
}

.service-list__item a .more-txt {
  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: 10px;
  padding: 12px 0;
  width: 100%;
  color: #E48723;
  text-align: center;
  border-top: 1px solid #eeeeee;
  font-weight: bold;
}

.service-list__item a .more-txt .ico-arrow {
  position: relative;
  display: block;
  width: 39px;
  height: 18px;
  background: #E48723;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow-f.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow-f.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

.service-list__item a:hover {
  border: 3px solid #FF8223;
}

.service-list__item a:hover .more-txt {
  background: #FF8223;
  color: #ffffff;
}

.service-list__item a:hover .more-txt .ico-arrow {
  background: #ffffff;
}

.service-list__item:nth-of-type(3) a .service-ttl-en::before, .service-list__item:nth-of-type(4) a .service-ttl-en::before {
  background: #F6AB01;
}

.service-list__item:nth-of-type(3) a:hover, .service-list__item:nth-of-type(4) a:hover {
  border: 3px solid #F6AB01;
}

.service-list__item:nth-of-type(3) a:hover .more-txt, .service-list__item:nth-of-type(4) a:hover .more-txt {
  background: #F6AB01;
  color: #ffffff;
}

.ind-message {
  margin-bottom: calc(8px * 13);
}

@media screen and (max-width: 959px) {
  .ind-message {
    margin-bottom: calc((8px * 13) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .ind-message {
    margin-bottom: calc((8px * 13) * 0.5);
  }
}

.ind-message .message-unit::before {
  background: url("/wp-content/themes/itreat_base/dist/img/common/yel-deco.svg") center/contain no-repeat;
}

.ind-message .message-unit::after {
  content: "";
  position: absolute;
  top: calc(100% - 170px);
  left: calc(100% - 130px);
  z-index: 4;
  width: 253px;
  height: 339px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/woman.png") center/contain no-repeat;
}

@media screen and (max-width: 1023px) {
  .ind-message .message-unit::after {
    width: 203px;
    height: 289px;
  }
}

@media screen and (max-width: 959px) {
  .ind-message .message-unit::after {
    z-index: 3;
    top: calc(100% - 20px);
    width: 160px;
    height: 246px;
  }
}

@media screen and (max-width: 767px) {
  .ind-message .message-unit::after {
    top: calc(100% - 40px);
    left: calc(100% - 110px);
  }
}

@media screen and (max-width: 519px) {
  .ind-message .message-unit::after {
    top: calc(100% + 24px);
    left: calc(100% - 80px);
    width: 120px;
    height: 206px;
  }
}

.ind-message .message-unit__ttl {
  position: relative;
  z-index: 5;
}

.ind-message .message-unit__ttl::before {
  content: "";
  position: absolute;
  top: -20px;
  right: 110%;
  width: 250px;
  height: 222px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/border-s.svg") center/cover no-repeat;
}

@media screen and (max-width: 1279px) {
  .ind-message .message-unit__ttl::before {
    top: 130px;
    right: 70%;
    width: 200px;
  }
}

@media screen and (max-width: 767px) {
  .ind-message .message-unit__ttl::before {
    top: 0;
    right: 80%;
  }
}

@media screen and (max-width: 519px) {
  .ind-message .message-unit__ttl::before {
    top: -40px;
  }
}

.ind-message .message-unit__ttl::after {
  content: "";
  position: absolute;
  right: 80px;
  bottom: -70px;
  width: 83px;
  height: 84px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/dot.svg") center/cover no-repeat;
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .ind-message .message-unit__ttl::after {
    right: 85%;
    bottom: 0;
  }
}

.ind-message .message-unit__ttl .mes-ttl-sub {
  color: rgba(246, 171, 1, 0.3);
}

.ind-message .message-unit__ttl .mes-ttl-sub::before, .ind-message .message-unit__ttl .mes-ttl-sub::after {
  background: rgba(246, 171, 1, 0.3);
}

.ind-message .message-unit__ttl .mes-ttl span {
  background: linear-gradient(145deg, #FA9A00, #FBB400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.ind-message .message-unit__txt {
  position: relative;
}

.ind-message .message-unit__txt::before {
  content: "";
  position: absolute;
  top: -100px;
  left: 50%;
  width: 640px;
  height: 255px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/border-l.svg") center/cover no-repeat;
}

@media screen and (max-width: 767px) {
  .ind-message .message-unit__txt::before {
    top: -80px;
    left: 68%;
    width: 340px;
    height: 195px;
  }
}

@media screen and (max-width: 519px) {
  .ind-message .message-unit__txt::before {
    left: 77%;
  }
}

.ind-message .message-unit__txt::after {
  content: "";
  position: absolute;
  top: -60px;
  left: 110%;
  width: 82px;
  height: 86px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/dot.svg") center/cover no-repeat;
}

@media screen and (max-width: 1279px) {
  .ind-message .message-unit__txt::after {
    top: 80px;
    left: 84%;
  }
}

@media screen and (max-width: 767px) {
  .ind-message .message-unit__txt::after {
    top: 100%;
  }
}

.ind-message .message-unit__txt .message-lead img {
  width: 138px;
}

@media screen and (max-width: 767px) {
  .ind-message .message-unit__txt .message-lead img {
    width: 120px;
  }
}

@media screen and (max-width: 519px) {
  .ind-message .message-unit__txt .message-lead img {
    width: 114px;
  }
}

.ind-message .message-unit__txt .message-lead:first-child {
  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: 6px;
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .ind-message .message-unit__txt .message-lead:first-child {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}

.job-search-container {
  padding: 0 3dvw;
}

@media screen and (max-width: 1279px) {
  .job-search-container {
    padding: 0;
  }
}

.job-search-container .job-search-form .modal .modal-switch {
  position: absolute;
  width: 0;
  height: 0;
  visibility: hidden;
}

.modal-overlay {
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9997;
  width: 100vw;
  height: 100vh;
  background: #565656;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

.modal-switch:checked ~ .modal-overlay {
  opacity: 0.6;
  visibility: visible;
}

.modal-content {
  position: relative;
  padding-bottom: 84px;
  opacity: 0;
  visibility: hidden;
  position: fixed;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 9998;
  width: calc( 100% - 32px);
  max-width: 1120px;
  margin: 0 auto;
  background: #ffffff;
  border-radius: 6px;
  -webkit-transform: translateY(-50%) scale(0);
  transform: translateY(-50%) scale(0);
  contain: paint;
}

@media screen and (max-width: 767px) {
  .modal-content {
    top: 0;
    width: 100%;
    height: 100%;
    padding: 56px 0 84px;
    -webkit-transform: none;
    transform: none;
    border-radius: 0;
  }
}

.modal-switch:checked ~ .modal-content {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(-50%) scale(1);
  transform: translateY(-50%) scale(1);
  -webkit-transition: opacity .3s,  visibility .3s, -webkit-transform 0s;
  transition: opacity .3s,  visibility .3s, -webkit-transform 0s;
  transition: opacity .3s,  visibility .3s, transform 0s;
  transition: opacity .3s,  visibility .3s, transform 0s,  -webkit-transform 0s;
  z-index: 9999;
}

@media screen and (max-width: 767px) {
  .modal-switch:checked ~ .modal-content {
    -webkit-transform: none;
    transform: none;
  }
}

.modal-content.job-modal-content .search-tabs {
  width: 260px !important;
}

.modal-content.job-modal-content .search-tabs .tab-button {
  font-size: 1.6rem !important;
}

.modal-content.job-modal-content .search-accordion {
  width: calc( 100% - 260px) !important;
}

@media screen and (max-width: 767px) {
  .modal-content.job-modal-content .search-accordion {
    width: 100% !important;
  }
}

.job-search-container .job-search-form .modal .modal-content-inner {
  height: 100%;
  max-height: calc(100dvh - 160px);
  overflow-y: auto;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .modal-content-inner {
    max-height: none;
    height: 100%;
  }
}

.job-search-container .job-search-form .modal .search-popup {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup {
    display: block;
  }
}

.job-search-container .job-search-form .modal .search-popup .item-select {
  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;
  margin-left: 16px;
  width: 56px;
  height: 21px;
  border-radius: 21px;
  background: #EE5401;
  color: #ffffff;
  font-size: 1.2rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup .item-select {
    margin: 0;
    padding-top: 1px;
    height: 19px;
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .item-select {
    width: 42px;
    height: 17px;
    font-size: 1rem;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs {
  position: relative;
  width: 240px;
}

@media screen and (max-width: 1023px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs {
    width: 180px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  width: 1px;
  height: 100%;
  background: #eeeeee;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs {
    display: none;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button {
  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;
  padding-left: 24px;
  width: 100%;
  height: 56px;
  border-bottom: solid 1px #eeeeee;
  cursor: pointer;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: left;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button[aria-selected="true"]::before, .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button[aria-selected="true"]::after {
  opacity: 1;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button::before, .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button::after {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  opacity: 0;
  z-index: 1;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button::before {
  left: 0;
  width: 4px;
  height: calc( 100% - 16px);
  border-radius: 0 4px 4px 0;
  background: -webkit-gradient(linear, left top, left bottom, from(#FF8223), to(#FBB400));
  background: linear-gradient(to bottom, #FF8223, #FBB400);
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button::after {
  right: -2px;
  width: 4px;
  height: 100%;
  background: #ffffff;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check input[type="checkbox"]:checked + .item-inner {
  background: #ffffff;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check input[type="checkbox"]:checked + .item-inner::after {
  opacity: .16;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check input[type="checkbox"]:checked + .item-inner span::after {
  display: block;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner {
  position: relative;
  cursor: pointer;
}

@media screen and (max-width: 1023px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner {
    padding: 6px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(#FBB400), to(#F3B700));
  background: linear-gradient(to right bottom, #FBB400, #F3B700);
  opacity: 0;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  z-index: -1;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span {
    padding-left: 26px;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span {
    padding-left: 22px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #ffffff;
  border: solid 1px #FFF8F2;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span::before {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span::before {
    width: 18px;
    height: 18px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span::after {
  display: none;
  position: absolute;
  content: '';
  top: calc( 50% - 2px);
  translate: 0 -50%;
  left: 9px;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #FF8223 #FF8223 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  z-index: 1;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span::after {
    left: 7px;
    width: 7px;
    height: 14px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-button.tab-check .item-inner span::after {
    left: 6px;
    width: 6px;
    height: 13px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks {
  border-bottom: solid 1px #eeeeee;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner {
  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;
  position: relative;
  width: 100%;
  height: 56px;
  contain: paint;
  padding-left: 24px;
  cursor: pointer;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner {
    padding: 6px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(#FBB400), to(#F3B700));
  background: linear-gradient(to right bottom, #FBB400, #F3B700);
  opacity: 0;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  z-index: -1;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span {
    padding-left: 26px;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span {
    padding-left: 22px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #ffffff;
  border: solid 1px #FFF8F2;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span::before {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span::before {
    width: 18px;
    height: 18px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span::after {
  display: none;
  position: absolute;
  content: '';
  top: calc( 50% - 2px);
  translate: 0 -50%;
  left: 9px;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #FF8223 #FF8223 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  z-index: 1;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span::after {
    left: 7px;
    width: 7px;
    height: 14px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks .item-inner span::after {
    left: 6px;
    width: 6px;
    height: 13px;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks input[type="checkbox"]:checked + .item-inner {
  background: #ffffff;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks input[type="checkbox"]:checked + .item-inner::after {
  opacity: .16;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks input[type="checkbox"]:checked + .item-inner span::after {
  display: block;
}

.job-search-container .job-search-form .modal .search-popup .search-tabs .tab-checks.parent-item .item-inner span::before {
  border-color: #FA9A00;
}

.job-search-container .job-search-form .modal .search-popup .search-accordion {
  width: calc( 100% - 240px);
  padding: 56px;
}

@media screen and (max-width: 1023px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion {
    width: calc( 100% - 180px);
    padding: 40px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion {
    width: 100%;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion {
    padding: 24px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item {
    border-bottom: solid 1px #eeeeee;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item[role="tabpanel"].is-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item[role="tabpanel"].is-hidden {
    display: block;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item[open] .accordion-header::after {
  -webkit-transform: rotateZ(45deg) scale(-1, -1);
  transform: rotateZ(45deg) scale(-1, -1);
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item:first-child {
    border-top: solid 1px #eeeeee;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item .accordion-header {
  display: none;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item .accordion-header {
    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: 12px;
    padding: 14px 8px;
    font-weight: bold;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item .accordion-header {
    padding: 12px 4px;
    font-size: 1.4rem;
  }
}

.job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item .accordion-header::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 8px;
  translate: 0 -50%;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  width: 10px;
  height: 10px;
  border-style: solid;
  border-width: 0 2px 2px 0;
  border-color: transparent #FF8223 #FF8223 transparent;
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .search-popup .search-accordion .accordion-item .accordion-header::after {
    width: 8px;
    height: 8px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .accordion-content {
    padding: 0 8px 20px;
  }
}

.job-search-container .job-search-form .modal .accordion-content .cat-all {
  margin-bottom: 10px;
  width: 100%;
  font-size: 1.8rem;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .modal .accordion-content .cat-all {
    margin-bottom: 8px;
    font-size: 1.5rem;
  }
}

.job-search-container .job-search-form .modal .accordion-content .dtl-checks {
  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;
}

.job-search-container .job-search-form .modal .condition-list {
  padding: 56px;
}

@media screen and (max-width: 1023px) {
  .job-search-container .job-search-form .modal .condition-list {
    padding: 40px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .condition-list {
    padding: 24px;
  }
}

.job-search-container .job-search-form .modal .close-btn-area {
  display: none;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .close-btn-area {
    display: block;
    text-align: center;
    margin-bottom: 18px;
  }
}

.job-search-container .job-search-form .modal .close-btn-area .close-btn {
  text-decoration: underline;
  font-weight: bold;
  color: #999999;
  cursor: pointer;
}

.job-search-container .job-search-form .modal .close-btn-area .close-btn:hover {
  text-decoration: none;
}

.job-search-container .job-search-form .modal .set-btn-area {
  position: absolute;
  left: 0;
  bottom: 0;
  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;
  padding-top: 2px;
  width: 100%;
  height: 84px;
  padding: 20px;
  background: #eeeeee;
}

.job-search-container .job-search-form .modal .set-btn-area .set-btn {
  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: 320px;
  height: 44px;
  border-radius: 4px;
  font-size: 1.8rem;
  font-weight: bold;
  background: #FF8223;
  color: #ffffff;
  cursor: pointer;
  z-index: 1;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .modal .set-btn-area .set-btn {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .set-btn-area .set-btn {
    font-size: 1.4rem;
  }
}

.job-search-container .job-search-form .modal .set-btn-area .set-btn::before, .job-search-container .job-search-form .modal .set-btn-area .set-btn::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 4px;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  z-index: -1;
}

.job-search-container .job-search-form .modal .set-btn-area .set-btn::before {
  background: -webkit-gradient(linear, left top, right bottom, from(#FF8223), to(#FBB400));
  background: linear-gradient(to right bottom, #FF8223, #FBB400);
}

.job-search-container .job-search-form .modal .set-btn-area .set-btn::after {
  background: #ffffff;
  border: solid 2px #FF8223;
  opacity: 0;
}

.job-search-container .job-search-form .modal .set-btn-area .set-btn:hover {
  color: #FF8223;
}

.job-search-container .job-search-form .modal .set-btn-area .set-btn:hover::after {
  opacity: 1;
}

.job-search-container .job-search-form .modal .accordion-content input[type="checkbox"],
.job-search-container .job-search-form .search-form .search-check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.job-search-container .job-search-form .modal .accordion-content input[type="checkbox"]:checked + .item-inner,
.job-search-container .job-search-form .search-form .search-check input[type="checkbox"]:checked + .item-inner {
  background: #ffffff;
}

.job-search-container .job-search-form .modal .accordion-content input[type="checkbox"]:checked + .item-inner::after,
.job-search-container .job-search-form .search-form .search-check input[type="checkbox"]:checked + .item-inner::after {
  opacity: .16;
}

.job-search-container .job-search-form .modal .accordion-content input[type="checkbox"]:checked + .item-inner span::after,
.job-search-container .job-search-form .search-form .search-check input[type="checkbox"]:checked + .item-inner span::after {
  display: block;
}

.job-search-container .job-search-form .modal .accordion-content .item-inner,
.job-search-container .job-search-form .search-form .search-check .item-inner {
  position: relative;
  display: inline-block;
  padding: 8px 12px;
  border-radius: 2px;
  background: #FFF8F2;
  contain: paint;
  cursor: pointer;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  z-index: 1;
}

@media screen and (max-width: 1023px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner,
  .job-search-container .job-search-form .search-form .search-check .item-inner {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner,
  .job-search-container .job-search-form .search-form .search-check .item-inner {
    padding: 6px;
  }
}

.job-search-container .job-search-form .modal .accordion-content .item-inner::after,
.job-search-container .job-search-form .search-form .search-check .item-inner::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right bottom, from(#FBB400), to(#F3B700));
  background: linear-gradient(to right bottom, #FBB400, #F3B700);
  opacity: 0;
  -webkit-transition: 0.1s ease-out;
  transition: 0.1s ease-out;
  z-index: -1;
}

.job-search-container .job-search-form .modal .accordion-content .item-inner span,
.job-search-container .job-search-form .search-form .search-check .item-inner span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner span,
  .job-search-container .job-search-form .search-form .search-check .item-inner span {
    padding-left: 26px;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner span,
  .job-search-container .job-search-form .search-form .search-check .item-inner span {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner span,
  .job-search-container .job-search-form .search-form .search-check .item-inner span {
    padding-left: 22px;
  }
}

.job-search-container .job-search-form .modal .accordion-content .item-inner span::before,
.job-search-container .job-search-form .search-form .search-check .item-inner span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #ffffff;
  border: solid 1px #FFF8F2;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner span::before,
  .job-search-container .job-search-form .search-form .search-check .item-inner span::before {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner span::before,
  .job-search-container .job-search-form .search-form .search-check .item-inner span::before {
    width: 18px;
    height: 18px;
  }
}

.job-search-container .job-search-form .modal .accordion-content .item-inner span::after,
.job-search-container .job-search-form .search-form .search-check .item-inner span::after {
  display: none;
  position: absolute;
  content: '';
  top: calc( 50% - 2px);
  translate: 0 -50%;
  left: 9px;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #FF8223 #FF8223 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  z-index: 1;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner span::after,
  .job-search-container .job-search-form .search-form .search-check .item-inner span::after {
    left: 7px;
    width: 7px;
    height: 14px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .modal .accordion-content .item-inner span::after,
  .job-search-container .job-search-form .search-form .search-check .item-inner span::after {
    left: 6px;
    width: 6px;
    height: 13px;
  }
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item {
  padding: 14px 8px;
  border-bottom: solid 1px #eeeeee;
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  width: 0;
  height: 0;
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item input[type="checkbox"]:checked + .item-inner {
  background: #ffffff;
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item input[type="checkbox"]:checked + .item-inner::after {
  opacity: .16;
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item input[type="checkbox"]:checked + .item-inner span::after {
  display: block;
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span {
    padding-left: 26px;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span {
    padding-bottom: 0;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span {
    padding-left: 22px;
  }
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span::before {
  position: absolute;
  content: '';
  top: 50%;
  left: 0;
  translate: 0 -50%;
  width: 24px;
  height: 24px;
  border-radius: 2px;
  background: #ffffff;
  border: solid 1px #FA9A00;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span::before {
    width: 20px;
    height: 20px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span::before {
    width: 18px;
    height: 18px;
  }
}

.job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span::after {
  display: none;
  position: absolute;
  content: '';
  top: calc( 50% - 2px);
  translate: 0 -50%;
  left: 9px;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #FF8223 #FF8223 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
  z-index: 1;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span::after {
    left: 7px;
    width: 7px;
    height: 14px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-modal-content .sp-parent-item .item-inner span::after {
    left: 6px;
    width: 6px;
    height: 13px;
  }
}

.job-search-container .job-search-form .job-search {
  position: relative;
  margin-bottom: calc(8px * 10);
}

.job-search-container .job-search-form .job-search .contact {
  width: 100%;
  max-width: 1020px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
  margin-bottom: calc(8px * 5);
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-search .contact {
    padding-right: 32px;
    padding-left: 32px;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .contact {
    padding-right: 24px;
    padding-left: 24px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .contact {
    padding-right: 16px;
    padding-left: 16px;
  }
}

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

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

.job-search-container .job-search-form .job-search .contact 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;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  padding: 24px;
  border: 1px solid #FF8223;
  border-radius: 10px;
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .contact a {
    padding: 20px;
  }
}

.job-search-container .job-search-form .job-search .contact a .contact-ttl {
  margin-bottom: 16px;
  color: #FF8223;
  font-weight: bold;
  font-size: 2rem;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .contact a .contact-ttl {
    font-size: 1.8rem;
  }
}

.job-search-container .job-search-form .job-search .contact a .tel-txt {
  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: 4px;
  margin-bottom: 12px;
  font-size: 2.8rem;
  font-family: "Work Sans", sans-serif;
}

.job-search-container .job-search-form .job-search .contact a .tel-txt .ico-tel {
  display: block;
  width: 16px;
  height: 21px;
  background: #565656;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/tel.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/tel.svg");
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-search .contact a .tel-txt .ico-tel {
    width: 14px;
    height: 18px;
  }
}

.job-search-container .job-search-form .job-search .contact a .contact-list {
  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: 8px 24px;
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .contact a .contact-list {
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
  }
}

.job-search-container .job-search-form .job-search .contact a .contact-list__item {
  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: 8px;
}

.job-search-container .job-search-form .job-search .contact a .contact-list__item dt {
  padding: 3px 8px;
  background: #F6AB01;
  border-radius: 2px;
  color: #ffffff;
  font-size: 1.4rem;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .contact a .contact-list__item dt {
    padding: 2px 6px;
    font-size: 1.2rem;
  }
}

.job-search-container .job-search-form .job-search .contact a .contact-list__item dd {
  font-size: 1.8rem;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .contact a .contact-list__item dd {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .contact a .contact-list__item dd {
    font-size: 1.4rem;
  }
}

.job-search-container .job-search-form .job-search .contact a:hover {
  background: #FF8223;
}

.job-search-container .job-search-form .job-search .contact a:hover .contact-ttl {
  color: #ffffff;
}

.job-search-container .job-search-form .job-search .contact a:hover .tel-txt {
  color: #ffffff;
}

.job-search-container .job-search-form .job-search .contact a:hover .tel-txt .ico-tel {
  background: #ffffff;
}

.job-search-container .job-search-form .job-search .contact a:hover .contact-list__item dt {
  background: #ffffff;
  color: #F6AB01;
}

.job-search-container .job-search-form .job-search .contact a:hover .contact-list__item dd {
  color: #ffffff;
}

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

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

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

.job-search-container .job-search-form .job-search .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;
  margin-bottom: 24px;
}

.job-search-container .job-search-form .job-search .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: 10px;
  width: 304px;
  font-weight: bold;
}

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

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

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

.job-search-container .job-search-form .job-search .form-field .form-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: 10px;
}

.job-search-container .job-search-form .job-search .form-field .num-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.job-search-container .job-search-form .job-search .form-field .num-area input {
  width: 190px;
}

.job-search-container .job-search-form .job-search .form-required,
.job-search-container .job-search-form .job-search .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: 42px;
  height: 22px;
  color: #ffffff;
  font-size: 1.2rem;
  border-radius: 10px;
}

.job-search-container .job-search-form .job-search .form-required {
  background: #FF8223;
}

.job-search-container .job-search-form .job-search .form-optional {
  background: #1EB3F3;
}

.job-search-container .job-search-form .job-search input,
.job-search-container .job-search-form .job-search select,
.job-search-container .job-search-form .job-search textarea {
  display: block;
  width: 100%;
  height: 48px;
  padding: 0 16px;
  background: #eeeeee;
  border-radius: 2px;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Inter", sans-serif;
  line-height: 56px;
  color: #565656;
}

.job-search-container .job-search-form .job-search input::-webkit-input-placeholder, .job-search-container .job-search-form .job-search select::-webkit-input-placeholder, .job-search-container .job-search-form .job-search textarea::-webkit-input-placeholder {
  color: #999999;
}

.job-search-container .job-search-form .job-search input::-moz-placeholder, .job-search-container .job-search-form .job-search select::-moz-placeholder, .job-search-container .job-search-form .job-search textarea::-moz-placeholder {
  color: #999999;
}

.job-search-container .job-search-form .job-search input:-ms-input-placeholder, .job-search-container .job-search-form .job-search select:-ms-input-placeholder, .job-search-container .job-search-form .job-search textarea:-ms-input-placeholder {
  color: #999999;
}

.job-search-container .job-search-form .job-search input::-ms-input-placeholder, .job-search-container .job-search-form .job-search select::-ms-input-placeholder, .job-search-container .job-search-form .job-search textarea::-ms-input-placeholder {
  color: #999999;
}

.job-search-container .job-search-form .job-search input::placeholder,
.job-search-container .job-search-form .job-search select::placeholder,
.job-search-container .job-search-form .job-search textarea::placeholder {
  color: #999999;
}

.job-search-container .job-search-form .job-search input:focus,
.job-search-container .job-search-form .job-search select:focus,
.job-search-container .job-search-form .job-search textarea:focus {
  outline: solid 2px #565656;
}

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

.job-search-container .job-search-form .job-search textarea {
  overflow: auto;
  height: 200px;
  padding: 16px;
  line-height: 1.8;
  resize: vertical;
}

.job-search-container .job-search-form .job-search .year {
  width: 84px;
}

.job-search-container .job-search-form .job-search .month {
  width: 72px;
}

.job-search-container .job-search-form .job-search .day {
  width: 72px;
}

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

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

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

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

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

.job-search-container .job-search-form .job-search .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 #FF8223 #FF8223 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
    top: 1px;
  }
}

.job-search-container .job-search-form .job-search .wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #565656;
}

.job-search-container .job-search-form .job-search .wpcf7-checkbox .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #cccccc;
}

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

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

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

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

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

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

.job-search-container .job-search-form .job-search .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 16px;
  height: 16px;
  background: #ffffff;
  border: solid 1px #FF8223;
  border-radius: 12px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.job-search-container .job-search-form .job-search .wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 3px;
  z-index: 1;
  width: 10px;
  height: 10px;
  background: #FF8223;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.job-search-container .job-search-form .job-search .wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::before {
  border-color: #FF8223;
}

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

.job-search-container .job-search-form .job-search .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;
  width: 100%;
  max-width: 280px;
  height: 56px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #1EB3F3;
  border: 1px solid #1EB3F3;
  border-radius: 56px;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}

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

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

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .form-send {
    height: 50px;
    font-size: 1.6rem;
  }
}

.job-search-container .job-search-form .job-search .form-send input {
  width: auto;
}

.job-search-container .job-search-form .job-search .form-send input[type="submit"] {
  opacity: 0;
  position: absolute;
}

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

.job-search-container .job-search-form .job-search .form-send:hover {
  background: #ffffff;
  color: #1EB3F3;
}

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

.job-search-container .job-search-form .job-search .wpcf7 form.sent .wpcf7-response-output,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid .wpcf7-response-output,
.job-search-container .job-search-form .job-search .wpcf7 form.spam .wpcf7-response-output,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid .wpcf7-response-output,
.job-search-container .job-search-form .job-search .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) {
  .job-search-container .job-search-form .job-search .wpcf7 form.sent .wpcf7-response-output,
  .job-search-container .job-search-form .job-search .wpcf7 form.invalid .wpcf7-response-output,
  .job-search-container .job-search-form .job-search .wpcf7 form.spam .wpcf7-response-output,
  .job-search-container .job-search-form .job-search .wpcf7 form.invalid .wpcf7-response-output,
  .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted .wpcf7-response-output {
    margin-bottom: calc((8px * 5) * 0.75);
  }
}

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

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

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

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

.job-search-container .job-search-form .job-search .wpcf7 form.sent .wpcf7-response-output {
  background: #ffffff;
  border: solid 1px #F6AB01;
  color: #F6AB01;
}

.job-search-container .job-search-form .job-search .wpcf7 form.invalid .wpcf7-response-output,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid .wpcf7-response-output,
.job-search-container .job-search-form .job-search .wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(238, 84, 1, 0.08);
  color: #EE5401;
  border: solid 1px #EE5401;
}

.job-search-container .job-search-form .job-search .wpcf7 form.invalid input::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid input::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted input::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted select::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(238, 84, 1, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.invalid input::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid input::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted input::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted select::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(238, 84, 1, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.invalid input:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid input:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted input:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted select:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(238, 84, 1, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.invalid input::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid input::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid select::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted input::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted select::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(238, 84, 1, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.invalid input::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid select::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid input::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid select::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.invalid textarea::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.unaccepted input::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.unaccepted select::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(238, 84, 1, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.spam .wpcf7-response-output {
  background: rgba(250, 154, 0, 0.08);
  color: #EE5401;
  border: solid 1px #FA9A00;
}

.job-search-container .job-search-form .job-search .wpcf7 form.spam input::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam select::-webkit-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(250, 154, 0, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.spam input::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam select::-moz-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(250, 154, 0, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.spam input:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam select:-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam textarea:-ms-input-placeholder {
  color: rgba(250, 154, 0, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.spam input::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam select::-ms-input-placeholder, .job-search-container .job-search-form .job-search .wpcf7 form.spam textarea::-ms-input-placeholder {
  color: rgba(250, 154, 0, 0.4);
}

.job-search-container .job-search-form .job-search .wpcf7 form.spam input::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.spam select::placeholder,
.job-search-container .job-search-form .job-search .wpcf7 form.spam textarea::placeholder {
  color: rgba(250, 154, 0, 0.4);
}

.job-search-container .job-search-form .job-search .screen-reader-response {
  display: none;
}

.job-search-container .job-search-form .job-search .wpcf7-not-valid-tip {
  display: block;
  padding: 4px 0 0;
  color: #EE5401;
  font-size: 1.4rem;
}

.job-search-container .job-search-form .job-search .screen-reader-response {
  display: none;
}

.job-search-container .job-search-form .job-search .wpcf7 .form.invalid .wpcf7-response-output {
  color: #EE5401;
  font-size: 1.4rem;
  background-color: rgba(238, 84, 1, 0.1);
}

.job-search-container .job-search-form .job-search .grecaptcha-badge {
  visibility: hidden;
}

.job-search-container .job-search-form .job-search .recaptcha-txt {
  text-align: center;
}

.job-search-container .job-search-form .job-search .recaptcha-txt a {
  color: #999999;
  text-decoration: underline;
}

.job-search-container .job-search-form .job-search .recaptcha-txt a:hover {
  text-decoration: none;
}

.job-search-container .job-search-form .job-search .privacy-frame {
  margin: 0 auto 40px;
  padding: 24px;
  max-width: 710px;
  width: 100%;
  border: 1px solid #cccccc;
  background: #ffffff;
  border-radius: 2px;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .privacy-frame {
    padding: 28px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .privacy-frame {
    margin: 0 auto 28px;
    padding: 24px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .privacy-frame {
    padding: 16px;
  }
}

.job-search-container .job-search-form .job-search .privacy-frame .privacy-inner {
  overflow-y: scroll;
  height: 180px;
  padding: 0 16px;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .privacy-frame .privacy-inner {
    padding: 0 12px;
    height: 160px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .privacy-frame .privacy-inner {
    padding: 0 8px;
  }
}

.job-search-container .job-search-form .job-search .privacy-frame .privacy-inner::-webkit-scrollbar {
  width: 3px;
}

.job-search-container .job-search-form .job-search .privacy-frame .privacy-inner::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 4px;
}

.job-search-container .job-search-form .job-search .privacy-frame .privacy-inner::-webkit-scrollbar-thumb {
  background: #FF8223;
  border-radius: 4px;
}

.job-search-container .job-search-form .job-search .privacy-frame .privacy-inner .privacy-ttl {
  margin-bottom: calc(8px * 4);
  text-align: center;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .privacy-frame .privacy-inner .privacy-ttl {
    margin-bottom: calc((8px * 4) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .privacy-frame .privacy-inner .privacy-ttl {
    margin-bottom: calc((8px * 4) * 0.5);
  }
}

.job-search-container .job-search-form .job-search .privacy-frame .privacy-inner .privacy-ttl__main {
  margin-bottom: 4px;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .privacy-frame .privacy-inner .privacy-ttl__main {
    margin-bottom: 2px;
    font-size: 1.6rem;
  }
}

.job-search-container .job-search-form .job-search .privacy-frame .privacy-inner .privacy-ttl__sub {
  display: block;
  color: #FF8223;
  font-family: "Work Sans", sans-serif;
  font-weight: bold;
  line-height: 1.4;
  text-transform: uppercase;
}

.job-search-container .job-search-form .job-search .policy-list {
  counter-reset: list-num 0;
}

.job-search-container .job-search-form .job-search .policy-list__item {
  padding: 24px 0;
  border-bottom: solid 1px #eeeeee;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .policy-list__item {
    padding: 16px 0;
  }
}

.job-search-container .job-search-form .job-search .policy-list__item:first-child {
  border-top: solid 1px #eeeeee;
}

.job-search-container .job-search-form .job-search .policy-list__item dt {
  position: relative;
  margin-left: 1em;
  text-indent: -1em;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .policy-list__item dt {
    margin-bottom: 10px;
    font-size: 1.6rem;
  }
}

.job-search-container .job-search-form .job-search .policy-list__item dt::before {
  counter-increment: list-num;
  content: counter(list-num, decimal-leading-zero) ".";
  font-family: "Work Sans", sans-serif;
  color: #FF8223;
  font-size: 2rem;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .policy-list__item dt::before {
    font-size: 1.7rem;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search {
    margin-bottom: calc((8px * 10) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search {
    margin-bottom: calc((8px * 10) * 0.5);
  }
}

.job-search-container .job-search-form .job-search .headline {
  position: relative;
  margin-bottom: -60px;
  z-index: 2;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .headline {
    margin-bottom: -46px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .headline {
    margin-bottom: -42px;
  }
}

.job-search-container .job-search-form .job-search .job-search-inner {
  position: relative;
  width: calc( 100% - 40px);
  background: -webkit-gradient(linear, left top, left bottom, from(#FFED95), to(#F7A036));
  background: linear-gradient(to bottom, #FFED95, #F7A036);
  overflow: clip;
  margin-inline: auto;
  padding: 96px 0 64px;
  border-radius: 40px;
  overflow: clip;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .job-search-inner {
    width: calc( 100% - 32px);
    padding: 68px 0 48px;
    border-radius: 28px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .job-search-inner {
    width: calc( 100% - 24px);
    padding: 60px 0 48px;
    border-radius: 16px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .job-search-inner {
    width: calc( 100% - 16px);
    padding: 52px 0 40px;
  }
}

.job-search-container .job-search-form .job-search .job-search-inner::before, .job-search-container .job-search-form .job-search .job-search-inner::after {
  position: absolute;
  content: "";
  width: 500px;
  height: 622px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/search-panel-bg.png") center/contain no-repeat;
  opacity: .2;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .job-search-inner::before, .job-search-container .job-search-form .job-search .job-search-inner::after {
    width: 440px;
    height: 547px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .job-search-inner::before, .job-search-container .job-search-form .job-search .job-search-inner::after {
    width: 380px;
    height: 473px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .job-search-inner::before, .job-search-container .job-search-form .job-search .job-search-inner::after {
    width: 320px;
    height: 398px;
  }
}

.job-search-container .job-search-form .job-search .job-search-inner::before {
  top: -180px;
  left: -88px;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .job-search-inner::before {
    top: -160px;
    left: -64px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .job-search-inner::before {
    top: -140px;
    left: -48px;
  }
}

.job-search-container .job-search-form .job-search .job-search-inner::after {
  bottom: -80px;
  right: -64px;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .job-search-inner::after {
    bottom: -64px;
    right: -48px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .job-search-inner::after {
    bottom: -56px;
    right: -40px;
  }
}

.job-search-container .job-search-form .job-search .search-panel {
  margin: 0 40px;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel {
    margin: 0 24px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel {
    margin: 0;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-panel-inner {
  position: relative;
  border-radius: 6px;
  background: #ffffff;
  z-index: 2;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-panel-inner {
    border-radius: 4px;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item {
  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;
  padding: 20px 40px;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item {
    padding: 20px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item {
    padding: 12px;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item:not(:last-child) {
  border-bottom: solid 1px #eeeeee;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item .search-ttl {
  width: 180px;
  font-size: 1.8rem;
  font-weight: bold;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-ttl {
    width: 104px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-ttl {
    width: 84px;
    font-size: 1.5rem;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item .search-contents {
  width: calc( 100% - 180px);
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-contents {
    width: calc( 100% - 104px);
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-contents {
    width: calc( 100% - 84px);
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item .search-label {
  height: 56px;
  line-height: 56px;
  padding: 0 16px;
  background: #FFF8F2;
  border-radius: 4px;
  font-size: 1.6rem;
  letter-spacing: 0.05em;
  font-family: YakuHanJP, "Zen Kaku Gothic New", "Inter", sans-serif;
  cursor: pointer;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-label {
    height: 48px;
    line-height: 48px;
    font-size: 1.4rem;
    letter-spacing: 0;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item .search-label.area-selected {
  color: #1EB3F3;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item .search-label.select-selected {
  color: #FF8223;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item .search-check {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 8px;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-check__item {
    width: calc( 50% - 4px);
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-check__item .item-inner {
    width: 100%;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item .search-check__item .item-inner {
    font-size: 1.3rem;
    letter-spacing: -.02em;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn {
  padding: 20px 80px;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn {
    padding: 20px;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit {
  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: 16px;
  width: 100%;
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit {
    gap: 20px;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__num {
  width: 245px;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1;
  text-align: right;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__num {
    width: 200px;
    font-size: 2rem;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__num {
    margin: 0 auto;
    text-align: center;
    font-size: 1.6rem;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__num span {
  display: inline-block;
  padding: 0 2px 0 6px;
  font-family: "Work Sans", sans-serif;
  font-size: 4rem;
  letter-spacing: .05em;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__num span {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__num span {
    font-size: 2.8rem;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__btn {
  width: calc( 100% - 261px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 12px;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__btn {
    width: calc( 100% - 216px);
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__btn {
    grid-column: initial;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .result-unit__btn {
    width: 100%;
    gap: 6px;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn {
  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;
  height: 64px;
  border-radius: 64px;
  font-size: 1.8rem;
  font-weight: bold;
  cursor: pointer;
  contain: paint;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  font-size: 2rem;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn {
    height: 56px;
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn {
    font-size: 1.4rem;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn {
    height: 48px;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search {
  position: relative;
  width: calc( 100% - 116px);
  background: #1EB3F3;
  border: solid 2px #1EB3F3;
  color: #ffffff;
  z-index: 1;
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search {
    width: calc( 100% - 92px);
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search span {
  position: relative;
  display: block;
  width: 100%;
  padding: 0 48px 0 16px;
  text-align: left;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search span::before, .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search span::after {
  position: absolute;
  content: "";
  top: 50%;
  translate: 0 -50%;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search span::before {
  right: 14px;
  width: 24px;
  height: 24px;
  background-color: #ffffff;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/glass.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/glass.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search span::after {
  right: 48px;
  width: 1px;
  height: 100%;
  background: #ffffff;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search:hover {
  color: #1EB3F3;
  background: #ffffff;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search:hover span::before, .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-search:hover span::after {
  background: #1EB3F3;
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-clear {
  width: 104px;
  border: solid 2px #999999;
  border-radius: 40px;
  color: #999999;
  letter-spacing: -.03em;
  font-size: 1.4rem;
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-clear {
    width: 80px;
  }
}

.job-search-container .job-search-form .job-search .search-panel .search-form__item.--item-search-btn .search-btn.--btn-clear:hover {
  background: #999999;
  color: #ffffff;
}

.job-search-container .job-search {
  position: relative;
}

.job-search-container .job-search::before {
  content: "";
  position: absolute;
  top: -100px;
  left: calc(50% - 610px);
  z-index: 3;
  width: 233px;
  height: 356px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/man.png") center/contain no-repeat;
}

@media screen and (max-width: 1279px) {
  .job-search-container .job-search::before {
    left: 0;
    width: 203px;
    height: 310px;
  }
}

@media screen and (max-width: 1023px) {
  .job-search-container .job-search::before {
    top: -40px;
    left: 20px;
    width: 160px;
    height: 240px;
  }
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search::before {
    top: -80px;
    left: 0;
    width: 150px;
    height: 223px;
  }
}

@media screen and (max-width: 519px) {
  .job-search-container .job-search::before {
    top: -42px;
    width: 110px;
    height: 166px;
  }
}

.job-search-container .job-search .headttl {
  position: relative;
  top: 60px;
  z-index: 1;
  margin-bottom: 0;
}

@media screen and (max-width: 959px) {
  .job-search-container .job-search .headttl {
    top: 46px;
  }
}

@media screen and (max-width: 767px) {
  .job-search-container .job-search .headttl {
    top: 40px;
  }
}

@media screen and (max-width: 1440px) {
  .job-search-container .job-search .job-search-inner {
    width: 100%;
  }
}

.job-search-container .job-search .job-search-inner .job-search-panel .search-panel {
  margin: 0;
}

.post-content {
  background: #FBFAF3;
}

.news {
  padding-top: calc(8px * 14);
  margin-bottom: calc(8px * 11);
}

@media screen and (max-width: 959px) {
  .news {
    padding-top: calc((8px * 14) * 0.75);
  }
}

@media screen and (max-width: 519px) {
  .news {
    padding-top: calc((8px * 14) * 0.5);
  }
}

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

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

.news .post-unit__ttl {
  position: relative;
  z-index: 0;
}

.news .post-unit__ttl::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -80px;
  z-index: -1;
  translate: 0 -50%;
  width: 337px;
  height: 257px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/wht-deco.svg") center/contain no-repeat;
}

@media screen and (max-width: 959px) {
  .news .post-unit__ttl::before {
    width: 237px;
    height: 157px;
  }
}

@media screen and (max-width: 519px) {
  .news .post-unit__ttl::before {
    widows: 207px;
    height: 127px;
  }
}

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

@media screen and (max-width: 959px) {
  .news .news-list {
    gap: 24px;
  }
}

@media screen and (max-width: 767px) {
  .news .news-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 6px;
  }
}

.news .news-list .news-meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
  width: 195px;
}

.news .news-list .news-meta__date {
  width: 82px;
  font-family: "Work Sans", sans-serif;
  letter-spacing: -0.1px;
}

.news .news-list .news-meta__cate {
  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;
  color: #E48723;
  width: 92px;
  font-size: 1.2rem;
  border: 1px solid #E48723;
  border-radius: 50px;
  background: #ffffff;
}

.news .news-list .news-meta__cate:hover {
  background: #E48723;
  color: #ffffff;
}

.news .news-list .news-ttl {
  width: calc(100% - 228px);
  overflow: hidden;
  display: block;
  white-space: nowrap;
  text-overflow: ellipsis;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .news .news-list .news-ttl {
    width: 100%;
  }
}

.news .news-list .news-ttl a {
  font-size: 1.8rem;
  display: block;
}

@media screen and (max-width: 959px) {
  .news .news-list .news-ttl a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 767px) {
  .news .news-list .news-ttl a {
    font-size: 1.4rem;
  }
}

.news .news-list .news-ttl a:hover {
  color: #E48723;
  -webkit-transform: translate(2px, 0);
  transform: translate(2px, 0);
}

.news .news-list:not(:last-of-type) {
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: 1px dashed rgba(86, 86, 86, 0.35);
}

.blog {
  padding-bottom: calc(8px * 15);
}

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

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

.blog .post-unit__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 16px;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__list {
    gap: 8px;
  }
}

.blog .post-unit__list .blog-list {
  width: calc((100% / 3) - (16px * 2 / 3));
  -webkit-box-shadow: 0px 0px 16px 0px rgba(86, 86, 86, 0.1);
  box-shadow: 0px 0px 16px 0px rgba(86, 86, 86, 0.1);
}

@media screen and (max-width: 767px) {
  .blog .post-unit__list .blog-list {
    width: calc((100% / 3) - (8px * 2 / 3));
  }
}

@media screen and (max-width: 519px) {
  .blog .post-unit__list .blog-list {
    width: calc((100% / 2) - (8px * 1 / 2));
  }
}

.blog .post-unit__list .blog-list .blog-vsl {
  position: relative;
}

.blog .post-unit__list .blog-list .blog-vsl a {
  overflow: hidden;
  display: block;
  position: relative;
  width: 100%;
  aspect-ratio: 3/2;
}

.blog .post-unit__list .blog-list .blog-vsl a img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.blog .post-unit__list .blog-list .blog-vsl a:hover img {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.blog .post-unit__list .blog-list .blog-dtl {
  padding: 12px 8px 8px;
  background: #ffffff;
  min-height: 118px;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__list .blog-list .blog-dtl {
    min-height: 107px;
  }
}

.blog .post-unit__list .blog-list .blog-dtl .blog-cate {
  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;
  color: #E48723;
  width: 100px;
  margin-bottom: 4px;
  font-size: 1.2rem;
  border: 1px solid #E48723;
  border-radius: 50px;
}

.blog .post-unit__list .blog-list .blog-dtl .blog-cate:hover {
  background: #E48723;
  color: #ffffff;
}

.blog .post-unit__list .blog-list .blog-dtl .blog-ttl {
  margin-bottom: 8px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: 40px;
  line-height: 1.3;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

@media screen and (max-width: 767px) {
  .blog .post-unit__list .blog-list .blog-dtl .blog-ttl {
    min-height: 39px;
  }
}

.blog .post-unit__list .blog-list .blog-dtl .blog-ttl a:hover {
  color: #E48723;
}

.blog .post-unit__list .blog-list .blog-dtl .blog-date {
  text-align: right;
  font-family: "Work Sans", sans-serif;
  font-size: 1.2rem;
  color: rgba(86, 86, 86, 0.5);
}

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