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

.company {
  margin-bottom: calc(8px * 11);
}

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

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

.company .company-unit {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: calc(8px * 11);
}

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

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

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

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

@media screen and (max-width: 519px) {
  .company .company-unit {
    gap: 16px;
  }
}

.company .company-unit::before {
  content: "";
  position: absolute;
  top: 0;
  right: 70%;
  z-index: -1;
  width: 528px;
  height: 403px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/orn-deco.svg") center/contain no-repeat;
}

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

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

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

.company .company-unit__dtl {
  width: calc(100% - 409px);
}

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

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

.company .company-unit__dtl .company-ttl {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: calc(8px * 5);
}

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

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

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

@media screen and (max-width: 767px) {
  .company .company-unit__dtl .company-ttl {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .company .company-unit__dtl .company-ttl {
    font-size: 2rem;
  }
}

.company .company-unit__dtl .company-ttl span {
  font-size: 4.8rem;
  background: linear-gradient(145deg, #FA9A00, #FBB400);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

@media screen and (max-width: 959px) {
  .company .company-unit__dtl .company-ttl span {
    font-size: 4rem;
  }
}

@media screen and (max-width: 767px) {
  .company .company-unit__dtl .company-ttl span {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 519px) {
  .company .company-unit__dtl .company-ttl span {
    font-size: 2.8rem;
  }
}

.company .company-unit__vsl {
  width: 369px;
}

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

@media screen and (max-width: 767px) {
  .company .company-unit__vsl {
    margin-inline: auto;
  }
}

@media screen and (max-width: 519px) {
  .company .company-unit__vsl {
    width: 260px;
  }
}

.philosophy {
  position: relative;
  padding: 80px 0;
  margin-bottom: calc(8px * 11);
  /* 方眼紙模様に必須のスタイル */
  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;
}

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

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

@media screen and (max-width: 1023px) {
  .philosophy {
    padding: 64px 0;
  }
}

@media screen and (max-width: 959px) {
  .philosophy {
    padding: 56px 0;
  }
}

@media screen and (max-width: 767px) {
  .philosophy {
    padding: 40px 0;
  }
}

.philosophy::before {
  content: "";
  position: absolute;
  top: 140px;
  left: 50%;
  z-index: -1;
  translate: -50% 0;
  width: 260px;
  height: 207px;
  background: url("/wp-content/themes/itreat_base/dist/img/common/ellipse.svg") center/contain no-repeat;
  opacity: .6;
}

@media screen and (max-width: 959px) {
  .philosophy::before {
    top: 90px;
  }
}

.philosophy .philosophy-catch {
  position: relative;
  margin-bottom: calc(8px * 4);
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 12px 56px;
  margin-inline: auto;
  text-align: center;
  font-size: 2.4rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 4px;
}

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

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

@media screen and (max-width: 767px) {
  .philosophy .philosophy-catch {
    font-size: 2rem;
    padding: 12px 40px;
    letter-spacing: 3px;
  }
}

.philosophy .philosophy-catch::before, .philosophy .philosophy-catch::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) {
  .philosophy .philosophy-catch::before, .philosophy .philosophy-catch::after {
    width: 20px;
    height: 20px;
  }
}

.philosophy .philosophy-catch::before {
  position: absolute;
  top: -4px;
  left: 0;
}

@media screen and (max-width: 767px) {
  .philosophy .philosophy-catch::before {
    top: -2px;
  }
}

.philosophy .philosophy-catch::after {
  position: absolute;
  right: 0;
  bottom: -4px;
  rotate: 180deg;
}

@media screen and (max-width: 767px) {
  .philosophy .philosophy-catch::after {
    bottom: -2px;
  }
}

.philosophy .philosophy-txt {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  line-height: 1.8;
  text-align: center;
}

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

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

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

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

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

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

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

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

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

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

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

.features .features-list__item {
  position: relative;
  width: calc((100% / 2) - (32px * 1 / 2));
  padding: 24px;
  border: 1px solid #FF8223;
  border-radius: 4px;
  background: #ffffff;
}

@media screen and (max-width: 959px) {
  .features .features-list__item {
    width: calc((100% / 2) - (20px * 1 / 2));
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .features .features-list__item {
    width: calc((100% / 2) - (16px * 1 / 2));
    padding: 12px;
  }
}

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

.features .features-list__item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 24px;
  width: 44px;
  height: 4px;
  border-radius: 0 0 2px 2px;
  background: #FF8223;
}

@media screen and (max-width: 959px) {
  .features .features-list__item::before {
    left: 20px;
  }
}

@media screen and (max-width: 767px) {
  .features .features-list__item::before {
    left: 12px;
    width: 34px;
  }
}

.features .features-list__item .features-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eeeeee;
}

@media screen and (max-width: 767px) {
  .features .features-list__item .features-ttl {
    gap: 10px;
    margin-bottom: 10px;
    padding-bottom: 10px;
  }
}

.features .features-list__item .features-ttl__num {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  font-size: 3.8rem;
  font-family: "Work Sans", sans-serif;
  color: #FF8223;
  line-height: 1;
}

@media screen and (max-width: 959px) {
  .features .features-list__item .features-ttl__num {
    font-size: 3.2rem;
  }
}

@media screen and (max-width: 767px) {
  .features .features-list__item .features-ttl__num {
    font-size: 2.8rem;
  }
}

.features .features-list__item .features-ttl__num span {
  position: relative;
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1rem;
  color: rgba(255, 130, 35, 0.5);
}

@media screen and (max-width: 767px) {
  .features .features-list__item .features-ttl__num span {
    font-size: 0.8rem;
  }
}

.features .features-list__item .features-ttl__num span::before {
  content: "";
  position: absolute;
  top: 50%;
  right: -12px;
  width: 10px;
  height: 1px;
  background: rgba(255, 130, 35, 0.5);
}

@media screen and (max-width: 767px) {
  .features .features-list__item .features-ttl__num span::before {
    width: 8px;
    right: -9px;
  }
}

.features .features-list__item .features-ttl__main {
  font-size: 2.4rem;
  font-weight: bold;
}

@media screen and (max-width: 959px) {
  .features .features-list__item .features-ttl__main {
    font-size: 2rem;
    line-height: 1.3;
  }
}

@media screen and (max-width: 767px) {
  .features .features-list__item .features-ttl__main {
    font-size: 1.8rem;
  }
}

.service {
  margin-bottom: calc(8px * 15);
}

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

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

.service .service-list__item {
  padding: 24px;
  border: 1px solid #FF8223;
  border-radius: 6px;
}

.service .service-list__item:not(:last-of-type) {
  margin-bottom: 16px;
}

@media screen and (max-width: 959px) {
  .service .service-list__item {
    padding: 20px;
  }
}

@media screen and (max-width: 767px) {
  .service .service-list__item {
    padding: 16px;
  }
}

.service .service-list__item dt {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 12px;
}

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

@media screen and (max-width: 767px) {
  .service .service-list__item dt {
    font-size: 1.8rem;
    margin-bottom: 8px;
  }
}

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