.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 {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 24px 0;
}

.form-field__item:nth-last-of-type(1) {
  padding-bottom: 0;
}

.form-field__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #D7D7D7, #D7D7D7 6px, transparent 6px, transparent 18px);
}

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

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

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

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

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

.form-required {
  background: #d02c2c;
}

.form-optional {
  background: #66a1bc;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #eee;
  font-size: 1.6rem;
  font-family: YakuHanJP, "Zen Old Mincho", serif, "Inter";
  line-height: 56px;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

.wpcf7-radio .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: '';
  position: absolute;
  top: 50%;
  left: 5px;
  z-index: 1;
  width: 14px;
  height: 14px;
  background: #5D5789;
  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: #5D5789;
}

.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;
  position: relative;
  width: 100%;
  max-width: 300px;
  height: 64px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
  background: #5D5789;
  color: #ffffff;
  -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: 1279px) {
  .form-send {
    height: 56px;
  }
}

.form-send::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 16px;
  width: 7px;
  height: 12px;
  background-color: #ffffff;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

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

.form-send input {
  cursor: pointer;
}

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

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

.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(208, 44, 44, 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(208, 44, 44, 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(208, 44, 44, 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(208, 44, 44, 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(208, 44, 44, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(209, 135, 101, 0.08);
  color: #d02c2c;
  border: solid 1px #D18765;
}

.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(209, 135, 101, 0.4);
}

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

.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(209, 135, 101, 0.4);
}

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

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

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

.wpcf7 .form.invalid .wpcf7-response-output {
  color: #d02c2c;
  font-size: 1.4rem;
  background-color: rgba(208, 44, 44, 0.1);
}

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  margin-bottom: calc(8px * 5);
  text-align: center;
}

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

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

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

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

.privacy-frame {
  position: relative;
  padding: 16px;
  background: #ffffff;
  width: 100%;
  height: 280px;
  border: 1px solid #D7D7D7;
}

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

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

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

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

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

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

.privacy-frame__inner::-webkit-scrollbar-track {
  background: #D7D7D7;
}

.privacy-frame__inner::-webkit-scrollbar-thumb {
  background: #5D5789 !important;
  width: 4px;
  height: 48px;
  border-radius: 1px;
  background-clip: content-box;
}

@media screen and (max-width: 959px) {
  .privacy-frame__inner::-webkit-scrollbar-thumb {
    border: 0;
    padding: 0;
  }
}

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

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

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

.privacy-frame .privacy-ttl__main {
  color: #5D5789;
  font-size: 2.8rem;
}

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

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

.privacy-frame .privacy-ttl__sub {
  color: rgba(93, 87, 137, 0.6);
}

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

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

.privacy-frame .privacy-list {
  counter-reset: privacy-num;
}

.privacy-frame .privacy-list__item {
  position: relative;
  padding: 16px 0;
}

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

.privacy-frame .privacy-list__item:nth-last-of-type(1) {
  padding-bottom: 0;
}

.privacy-frame .privacy-list__item::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: repeating-linear-gradient(to right, #D7D7D7, #D7D7D7 6px, transparent 6px, transparent 18px);
}

.privacy-frame .privacy-list__item dt {
  margin-bottom: 16px;
  font-size: 2rem;
}

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

@media screen and (max-width: 519px) {
  .privacy-frame .privacy-list__item dt {
    font-size: 1.6rem;
  }
}

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

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

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

.access-lead-inner {
  position: relative;
  margin-bottom: calc(8px * 15);
  width: 100%;
  max-width: 1040px;
  margin-right: auto;
  margin-left: auto;
  padding-right: 40px;
  padding-left: 40px;
}

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

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

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

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

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

.access-lead-inner::before {
  position: absolute;
  top: -78px;
  left: calc(50% - 420px);
  content: "";
  width: 88px;
  height: 88px;
  background: rgba(224, 211, 187, 0.15);
}

@media screen and (max-width: 767px) {
  .access-lead-inner::before {
    left: -40px;
  }
}

@media screen and (max-width: 519px) {
  .access-lead-inner::before {
    top: -40px;
  }
}

.access-lead-inner::after {
  position: absolute;
  right: calc(50% - 420px);
  bottom: -78px;
  content: "";
  width: 88px;
  height: 88px;
  background: rgba(224, 211, 187, 0.15);
}

@media screen and (max-width: 767px) {
  .access-lead-inner::after {
    right: -40px;
  }
}

.access-lead-inner .access-lead {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
}

.access-lead-inner .access-lead::before {
  position: absolute;
  top: -46px;
  left: -40px;
  content: "";
  width: 88px;
  height: 1px;
  background: #333333;
}

@media screen and (max-width: 519px) {
  .access-lead-inner .access-lead::before {
    top: -36px;
    left: -30px;
    width: 50px;
  }
}

.access-lead-inner .access-lead::after {
  position: absolute;
  top: -57px;
  left: -31px;
  content: "";
  width: 1px;
  height: 88px;
  background: #333333;
}

@media screen and (max-width: 1279px) {
  .access-lead-inner .access-lead::after {
    left: -26px;
  }
}

@media screen and (max-width: 959px) {
  .access-lead-inner .access-lead::after {
    left: -18px;
  }
}

@media screen and (max-width: 767px) {
  .access-lead-inner .access-lead::after {
    left: -20px;
  }
}

@media screen and (max-width: 519px) {
  .access-lead-inner .access-lead::after {
    top: -42px;
    height: 50px;
    left: -26px;
  }
}

.access-lead-inner .access-lead .access-txt {
  position: relative;
  max-width: 680px;
  margin-inline: auto;
  text-align: center;
}

@media screen and (max-width: 519px) {
  .access-lead-inner .access-lead .access-txt {
    text-align: left;
  }
}

.access-lead-inner .access-lead .access-txt::before {
  position: absolute;
  right: -40px;
  bottom: -46px;
  content: "";
  width: 88px;
  height: 1px;
  background: #333333;
}

@media screen and (max-width: 519px) {
  .access-lead-inner .access-lead .access-txt::before {
    width: 50px;
    right: -20px;
  }
}

.access-lead-inner .access-lead .access-txt::after {
  position: absolute;
  right: -31px;
  bottom: -57px;
  content: "";
  width: 1px;
  height: 88px;
  background: #333333;
}

@media screen and (max-width: 1279px) {
  .access-lead-inner .access-lead .access-txt::after {
    right: -26px;
  }
}

@media screen and (max-width: 959px) {
  .access-lead-inner .access-lead .access-txt::after {
    right: -18px;
  }
}

@media screen and (max-width: 767px) {
  .access-lead-inner .access-lead .access-txt::after {
    right: -20px;
  }
}

@media screen and (max-width: 519px) {
  .access-lead-inner .access-lead .access-txt::after {
    height: 50px;
    right: -10px;
    bottom: -57px;
  }
}

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

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

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

.access-unit__map, .access-unit__vsl, .access-unit__dtl {
  width: calc((100% / 2) - (40px * 1 / 2));
}

@media screen and (max-width: 1279px) {
  .access-unit__map, .access-unit__vsl, .access-unit__dtl {
    width: calc((100% / 2) - (32px * 1 / 2));
  }
}

@media screen and (max-width: 959px) {
  .access-unit__map, .access-unit__vsl, .access-unit__dtl {
    width: 100%;
  }
}

.access-unit__dtl {
  max-width: 460px;
}

@media screen and (max-width: 959px) {
  .access-unit__dtl {
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
    max-width: none;
  }
}

.access-unit.--right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.facility {
  padding-top: calc(8px * 11);
  overflow: hidden;
}

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

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

.facility .facility-ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  margin-bottom: calc(8px * 5);
  padding: 20px 0;
  border-style: solid;
  border-width: 1px 0;
  border-color: #5D5789;
  color: #5D5789;
  font-size: 2.8rem;
  text-align: center;
}

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

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

@media screen and (max-width: 959px) {
  .facility .facility-ttl {
    padding: 16px 0;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .facility .facility-ttl {
    padding: 12px 0;
    font-size: 2rem;
  }
}

.facility .facility-ttl::after {
  content: '';
  position: absolute;
  right: 0;
  bottom: -1px;
  left: 0;
  width: 80px;
  height: 3px;
  margin: 0 auto;
  background: #ffffff;
}

.facility .facility-add {
  margin-bottom: calc(8px * 4);
  font-size: 1.8rem;
}

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

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

@media screen and (max-width: 959px) {
  .facility .facility-add {
    font-size: 1.6rem;
  }
}

.facility .facility-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  margin-bottom: calc(8px * 4);
}

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

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

@media screen and (max-width: 959px) {
  .facility .facility-info {
    gap: 16px;
  }
}

@media screen and (max-width: 519px) {
  .facility .facility-info {
    gap: 12px;
  }
}

.facility .facility-info__item {
  width: calc((100% / 2) - (24px * 1 / 2));
}

@media screen and (max-width: 959px) {
  .facility .facility-info__item {
    width: calc((100% / 2) - (16px * 1 / 2));
  }
}

@media screen and (max-width: 519px) {
  .facility .facility-info__item {
    width: calc((100% / 2) - (12px * 1 / 2));
  }
}

.facility .facility-info__item dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  height: 44px;
  margin-bottom: 12px;
  background: rgba(93, 87, 137, 0.05);
}

@media screen and (max-width: 959px) {
  .facility .facility-info__item dt {
    height: 40px;
  }
}

.facility .facility-info__item dd {
  font-size: 2rem;
  text-align: center;
}

@media screen and (max-width: 959px) {
  .facility .facility-info__item dd {
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 519px) {
  .facility .facility-info__item dd {
    font-size: 1.6rem;
  }
}

.facility .facility-tel .facility-tel-txt {
  margin-bottom: 12px;
  text-align: center;
}

.facility .facility-tel .facility-tel-num {
  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: 6px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  color: #5D5789;
  font-size: 3.2rem;
  line-height: 1;
}

@media screen and (max-width: 1279px) {
  .facility .facility-tel .facility-tel-num {
    font-size: 2.8rem;
  }
}

@media screen and (max-width: 959px) {
  .facility .facility-tel .facility-tel-num {
    border: 1px solid #5D5789;
    padding: 12px;
  }
}

@media screen and (max-width: 519px) {
  .facility .facility-tel .facility-tel-num {
    font-size: 2.4rem;
  }
}

.facility .facility-tel .facility-tel-num::before {
  content: '';
  width: 16px;
  height: 20px;
  background: #5D5789;
  -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-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-transform: translateY(2px);
  transform: translateY(2px);
}

.facility .facility-tel .facility-tel-num:hover {
  background: #5D5789;
  color: #ffffff;
}

.facility .facility-tel .facility-tel-num:hover::before {
  background: #ffffff;
}

.route .route-ttl {
  position: relative;
  margin-bottom: calc(8px * 4);
  padding-bottom: 20px;
  color: #5D5789;
  font-size: 3.2rem;
  font-weight: bold;
}

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

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

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

@media screen and (max-width: 959px) {
  .route .route-ttl {
    padding-bottom: 16px;
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 519px) {
  .route .route-ttl {
    padding-bottom: 12px;
    font-size: 2rem;
  }
}

.route .route-ttl::before, .route .route-ttl::after {
  content: '';
  width: 100%;
  height: 1px;
  background: #5D5789;
}

.route .route-ttl::before {
  position: absolute;
  bottom: 10px;
  left: 0;
  width: 100%;
}

@media screen and (max-width: 959px) {
  .route .route-ttl::before {
    bottom: 8px;
  }
}

@media screen and (max-width: 519px) {
  .route .route-ttl::before {
    bottom: 6px;
  }
}

.route .route-ttl::after {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50%;
}

.route .route-list__item:not(:nth-last-of-type(1)) {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: solid 1px #D7D7D7;
}

.route .route-list__item dt {
  position: relative;
  margin-bottom: 12px;
  padding-left: 28px;
  font-size: 2.2rem;
  font-weight: bold;
}

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

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

@media screen and (max-width: 519px) {
  .route .route-list__item dt {
    font-size: 1.6rem;
    margin-bottom: 4px;
  }
}

.route .route-list__item dt::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  width: 17px;
  height: 18px;
  background: #5D5789;
  -webkit-mask-size: contain;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.route .route-list__item.--train dt::before {
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/train.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/train.svg");
}

.route .route-list__item.--bus dt::before {
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/bus.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/bus.svg");
}

.route .route-list__item.--bus dd .route-txt:nth-of-type(2n) {
  padding-left: 14px;
  line-height: 1;
}

.route .route-list__item.--car dt::before {
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/car.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/car.svg");
}

.route .route-txt {
  font-size: 1.8rem;
}

@media screen and (max-width: 959px) {
  .route .route-txt {
    font-size: 1.6rem;
  }
}

.route .route-txt em {
  padding: 0 4px;
  color: #5D5789;
  font-size: 2.8rem;
}

@media screen and (max-width: 1279px) {
  .route .route-txt em {
    font-size: 2.4rem;
  }
}

@media screen and (max-width: 959px) {
  .route .route-txt em {
    font-size: 2rem;
  }
}

.route .route-sub-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;
  padding-left: 20px;
}

.route .route-sub-txt span {
  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: 20px;
  aspect-ratio: 1/1;
  margin-right: 8px;
  background: #8781A2;
  color: #ffffff;
  font-size: 1.2rem;
}

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

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

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

.gmap iframe {
  width: 100%;
  height: 560px;
}

@media screen and (max-width: 1279px) {
  .gmap iframe {
    height: 480px;
  }
}

@media screen and (max-width: 959px) {
  .gmap iframe {
    height: 320px;
  }
}

@media screen and (max-width: 519px) {
  .gmap iframe {
    height: 240px;
  }
}

.gmap .map-btn {
  position: absolute;
  bottom: 20px;
  left: 50%;
  z-index: 1;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gmap .map-btn a {
  position: relative;
  display: block;
  width: 300px;
  padding: 20px 0;
  text-align: center;
  background: #5D5789;
  border: 1px solid #5D5789;
  color: #ffffff;
}

@media screen and (max-width: 767px) {
  .gmap .map-btn a {
    padding: 16px 0;
    width: 250px;
  }
}

@media screen and (max-width: 519px) {
  .gmap .map-btn a {
    padding: 12px 0;
    width: 220px;
  }
}

.gmap .map-btn a::before {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  content: '';
  width: 7px;
  height: 12px;
  background-color: #ffffff;
  -webkit-mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  mask-image: url("/wp-content/themes/itreat_base/dist/img/icon/arrow.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-mask-size: contain;
  mask-size: contain;
}

.gmap .map-btn a:hover {
  background: #ffffff;
  color: #5D5789;
}

.gmap .map-btn a:hover::before {
  background-color: #5D5789;
}

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