.form-field {
  border-top: solid 1px #D9D9D9;
  margin-bottom: calc(8px * 5);
}
@media screen and (max-width: 959px) {
  .form-field {
    margin-bottom: calc(8px * 5 * 0.75);
  }
}
@media screen and (max-width: 519px) {
  .form-field {
    margin-bottom: calc(8px * 5 * 0.5);
  }
}
.form-field__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding-top: calc(8px * 4);
}
@media screen and (max-width: 959px) {
  .form-field__item {
    padding-top: calc(8px * 4 * 0.75);
  }
}
@media screen and (max-width: 519px) {
  .form-field__item {
    padding-top: calc(8px * 4 * 0.5);
  }
}
.form-field__item {
  padding-bottom: calc(8px * 4);
}
@media screen and (max-width: 959px) {
  .form-field__item {
    padding-bottom: calc(8px * 4 * 0.75);
  }
}
@media screen and (max-width: 519px) {
  .form-field__item {
    padding-bottom: calc(8px * 4 * 0.5);
  }
}
.form-field__item {
  border-bottom: solid 1px #D9D9D9;
}
.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;
  font-size: 1.5rem;
  line-height: 1.6;
}

.form-required {
  border: solid 1px #ff0000;
  color: #ff0000;
}

.form-optional {
  border: solid 1px #018568;
  color: #018568;
}

input,
select,
textarea {
  display: block;
  width: 100%;
  height: 56px;
  padding: 0 16px;
  background: #F0FAF7;
  font-size: 1.7rem;
  font-family: YakuHanJP, "Poppins", "Zen Kaku Gothic New", sans-serif;
  line-height: 56px;
  color: #20190D;
}
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 #20190D;
}

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

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

.wpcf7-checkbox .wpcf7-list-item:not(:nth-last-of-type(1)) {
  margin-right: 24px;
}
.wpcf7-checkbox .wpcf7-list-item label {
  display: inline-block;
  position: relative;
  padding: 6px 0;
  cursor: pointer;
}
.wpcf7-checkbox .wpcf7-list-item label input[type=checkbox] {
  opacity: 0;
  position: absolute;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label {
  display: inline-block;
  position: relative;
  padding-left: 32px;
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 24px;
  height: 24px;
  background: #eeeeee;
  border: solid 2px #eeeeee;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.wpcf7-checkbox .wpcf7-list-item label .wpcf7-list-item-label::after {
  display: none;
  content: "";
  position: absolute;
  top: 3px;
  left: 8px;
  z-index: 1;
  width: 8px;
  height: 15px;
  border-style: solid;
  border-width: 0 3px 3px 0;
  border-color: transparent #999999 #999999 transparent;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}
.wpcf7-checkbox .wpcf7-list-item label input:focus + .wpcf7-list-item-label {
  outline: solid 2px #20190D;
}
.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 #018568;
}
.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: #e1f1ec;
  border: solid 2px #e1f1ec;
  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: #018568;
  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: #018568;
}
.wpcf7-radio .wpcf7-list-item label input:checked + .wpcf7-list-item-label::after {
  display: block;
}

input[type=file] {
  padding: 0;
  background: none;
  border: none;
  background: none;
  height: 48px;
  line-height: 48px;
}
@media screen and (max-width: 959px) {
  input[type=file] {
    height: 40px;
    line-height: 40px;
  }
}

input[type=file]::file-selector-button {
  border: none;
  margin-right: 16px;
  height: 100%;
  cursor: pointer;
  background: #999999;
  color: #ffffff;
}

.form-send {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 100%;
  max-width: 550px;
  height: 80px;
  margin: 0 auto;
  margin-bottom: calc(8px * 5);
}
@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);
  }
}
.form-send {
  background: #018568;
  border: solid 1px #018568;
  border-radius: 80px;
  color: #ffffff;
  font-size: 1.8rem;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 1279px) {
  .form-send {
    height: 72px;
  }
}
@media screen and (max-width: 959px) {
  .form-send {
    max-width: 500px;
    height: 64px;
    font-size: 1.7rem;
  }
}
@media screen and (max-width: 519px) {
  .form-send {
    height: 56px;
  }
}
.form-send::before {
  position: absolute;
  top: 6px;
  right: 6px;
  content: "";
  width: 68px;
  height: 68px;
  background: #A6D4CA;
  border-radius: 50%;
  -webkit-transition: 0.3s ease-out;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 1279px) {
  .form-send::before {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 959px) {
  .form-send::before {
    width: 52px;
    height: 52px;
  }
}
@media screen and (max-width: 519px) {
  .form-send::before {
    width: 44px;
    height: 44px;
  }
}
.form-send::after {
  position: absolute;
  top: 50%;
  right: 30px;
  translate: 0 -50%;
  content: "";
  width: 14px;
  height: 8px;
  background: #015D49;
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media screen and (max-width: 1279px) {
  .form-send::after {
    right: 26px;
  }
}
@media screen and (max-width: 959px) {
  .form-send::after {
    right: 23px;
  }
}
@media screen and (max-width: 519px) {
  .form-send::after {
    right: 21px;
    width: 10px;
    height: 7px;
  }
}
.form-send:hover {
  background: #ffffff;
  color: #018568;
}
.form-send:hover::before {
  background: #018568;
}
.form-send:hover::after {
  background: #ffffff;
}
.form-send input[type=submit] {
  opacity: 0;
  position: absolute;
  width: 0;
  height: 0;
}
.form-send:has(input[type=submit]:focus) {
  outline: solid 2px #018568;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.wpcf7-spinner {
  position: absolute;
  visibility: hidden;
  display: inline-block;
  background-color: #23282d;
  opacity: 0.75;
  width: 24px;
  height: 24px;
  border: none;
  border-radius: 100%;
  padding: 0;
  bottom: calc(100% + 10px);
  left: 50%;
  translate: -50% 0;
}
@media screen and (max-width: 767px) {
  .wpcf7-spinner {
    bottom: calc(100% + 6px);
    width: 16px;
    height: 16px;
  }
}
.wpcf7-spinner::before {
  content: "";
  position: absolute;
  background-color: #fbfbfc;
  top: 4px;
  left: 4px;
  width: 6px;
  height: 6px;
  border: none;
  border-radius: 100%;
  -webkit-transform-origin: 8px 8px;
  transform-origin: 8px 8px;
  -webkit-animation-name: spin;
  animation-name: spin;
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
}

form.submitting .wpcf7-spinner {
  visibility: visible;
}

.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);
}
@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);
  }
}
.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: 32px;
  border-radius: 4px;
}
@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);
  }
}
.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 {
  font-size: 1.5rem;
  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 {
    padding: 24px;
  }
}

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

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  background: rgba(255, 0, 0, 0.08);
  color: #ff0000;
  border: solid 1px #ff0000;
}
.wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.invalid input::-webkit-input-placeholder, .wpcf7 form.invalid select::-webkit-input-placeholder, .wpcf7 form.invalid textarea::-webkit-input-placeholder, .wpcf7 form.unaccepted input::-webkit-input-placeholder, .wpcf7 form.unaccepted select::-webkit-input-placeholder, .wpcf7 form.unaccepted textarea::-webkit-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
}
.wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.invalid input::-moz-placeholder, .wpcf7 form.invalid select::-moz-placeholder, .wpcf7 form.invalid textarea::-moz-placeholder, .wpcf7 form.unaccepted input::-moz-placeholder, .wpcf7 form.unaccepted select::-moz-placeholder, .wpcf7 form.unaccepted textarea::-moz-placeholder {
  color: rgba(255, 0, 0, 0.4);
}
.wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.invalid input:-ms-input-placeholder, .wpcf7 form.invalid select:-ms-input-placeholder, .wpcf7 form.invalid textarea:-ms-input-placeholder, .wpcf7 form.unaccepted input:-ms-input-placeholder, .wpcf7 form.unaccepted select:-ms-input-placeholder, .wpcf7 form.unaccepted textarea:-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
}
.wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.invalid input::-ms-input-placeholder, .wpcf7 form.invalid select::-ms-input-placeholder, .wpcf7 form.invalid textarea::-ms-input-placeholder, .wpcf7 form.unaccepted input::-ms-input-placeholder, .wpcf7 form.unaccepted select::-ms-input-placeholder, .wpcf7 form.unaccepted textarea::-ms-input-placeholder {
  color: rgba(255, 0, 0, 0.4);
}
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.invalid input::placeholder,
.wpcf7 form.invalid select::placeholder,
.wpcf7 form.invalid textarea::placeholder,
.wpcf7 form.unaccepted input::placeholder,
.wpcf7 form.unaccepted select::placeholder,
.wpcf7 form.unaccepted textarea::placeholder {
  color: rgba(255, 0, 0, 0.4);
}

.wpcf7 form.spam .wpcf7-response-output {
  background: rgba(1, 133, 104, 0.08);
  color: #ff0000;
  border: solid 1px #018568;
}
.wpcf7 form.spam input::-webkit-input-placeholder, .wpcf7 form.spam select::-webkit-input-placeholder, .wpcf7 form.spam textarea::-webkit-input-placeholder {
  color: rgba(1, 133, 104, 0.4);
}
.wpcf7 form.spam input::-moz-placeholder, .wpcf7 form.spam select::-moz-placeholder, .wpcf7 form.spam textarea::-moz-placeholder {
  color: rgba(1, 133, 104, 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(1, 133, 104, 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(1, 133, 104, 0.4);
}
.wpcf7 form.spam input::placeholder,
.wpcf7 form.spam select::placeholder,
.wpcf7 form.spam textarea::placeholder {
  color: rgba(1, 133, 104, 0.4);
}

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

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

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

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

.grecaptcha-badge {
  visibility: hidden;
}

.recaptcha-txt {
  text-align: center;
}
.recaptcha-txt a {
  color: #999999;
  text-decoration: underline;
}
.recaptcha-txt a:hover {
  text-decoration: none;
}

.privacy-frame {
  margin: 0 auto 40px;
  padding: 32px;
  border: 1px solid #D9D9D9;
  background: #ffffff;
}
@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: 240px;
  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: 8px;
}
.privacy-frame .privacy-inner::-webkit-scrollbar-track {
  background: #eeeeee;
  border-radius: 4px;
}
.privacy-frame .privacy-inner::-webkit-scrollbar-thumb {
  background: #999999;
  border-radius: 4px;
}
.privacy-frame .privacy-inner .privacy-ttl {
  margin-bottom: calc(8px * 3);
}
@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner .privacy-ttl {
    margin-bottom: calc(8px * 3 * 0.75);
  }
}
@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl {
    margin-bottom: calc(8px * 3 * 0.5);
  }
}
.privacy-frame .privacy-inner .privacy-ttl {
  text-align: center;
}
.privacy-frame .privacy-inner .privacy-ttl__sub {
  margin-bottom: 4px;
  color: #018568;
  font-size: 2.8rem;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner .privacy-ttl__sub {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl__sub {
    margin-bottom: 2px;
  }
}
.privacy-frame .privacy-inner .privacy-ttl__main {
  margin-bottom: calc(8px * 5);
}
@media screen and (max-width: 959px) {
  .privacy-frame .privacy-inner .privacy-ttl__main {
    margin-bottom: calc(8px * 5 * 0.75);
  }
}
@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl__main {
    margin-bottom: calc(8px * 5 * 0.5);
  }
}
.privacy-frame .privacy-inner .privacy-ttl__main {
  display: block;
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.4;
}
@media screen and (max-width: 519px) {
  .privacy-frame .privacy-inner .privacy-ttl__main {
    font-size: 1.3rem;
  }
}

.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;
  padding-left: 28px;
  text-indent: -1em;
  margin-bottom: 12px;
  font-size: 2rem;
  line-height: 1.2;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .policy-list__item dt {
    margin-bottom: 10px;
    padding-left: 24px;
    font-size: 1.7rem;
  }
}
.policy-list__item dt::before {
  position: absolute;
  top: 50%;
  left: 0;
  translate: 0 -50%;
  counter-increment: list-num;
  content: counter(list-num, decimal-leading-zero);
  font-family: "Poppins", sans-serif;
  color: #018568;
  font-size: 1.7rem;
  margin-right: 4px;
}
@media screen and (max-width: 767px) {
  .policy-list__item dt::before {
    font-size: 1.5rem;
  }
}

.ttl-l {
  margin-bottom: calc(8px * 6);
}
@media screen and (max-width: 959px) {
  .ttl-l {
    margin-bottom: calc(8px * 6 * 0.75);
  }
}
@media screen and (max-width: 519px) {
  .ttl-l {
    margin-bottom: calc(8px * 6 * 0.5);
  }
}
/*# sourceMappingURL=../../maps/pages/contact.css.map */
