/**
 * SuperGradient
 * SASS MULTI-COLOR GRADIENT MIXIN (LINEAR & RADIAL)
 * Options
 * $type: linear*, radial
 * $from: top*, left, top left, top right, bottom right, bottom left, center (radial)
 * $colors: hex, rgba
 * *default
 *
 * Include: bower install super-gradient
 *
 * Demo: http://super-gradient.ib.gs/
 */
.layout-wrapper {
  background-color: #fff;
}

.contact-first {
  margin: 64px 0 64px;
  padding: 0 24px;
}
@media (min-width: 992px) {
  .contact-first {
    margin: 124px 0 105px;
  }
}
.contact-first__container {
  max-width: 720px;
  width: 100%;
  margin: 0 auto;
}
.contact-first__content .h-lede {
  margin: 0 0 30px;
  line-height: 2;
  font-weight: bold;
  font-size: 16px;
}
@media (min-width: 992px) {
  .contact-first__content .h-lede {
    text-align: center;
  }
}
.contact-first__content .h-warning {
  margin: 0 0 48px;
  font-weight: bold;
  font-size: 14px;
  color: #E34C63;
  text-align: center;
}
.contact-first__content .contact-tel {
  padding: 37px 20px 39px;
  border: 1px solid #E0E0E0;
}
.contact-first__content .contact-tel .title {
  margin: 0 0 20px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.contact-first__content .contact-tel .phonenumber {
  margin: 0 0 2px;
  text-align: center;
}
.contact-first__content .contact-tel .phonenumber a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  line-height: 1.2;
  font-family: var(--font-en);
  font-size: 34px;
  letter-spacing: 0.05em;
  color: #000;
  text-decoration: none;
  white-space: nowrap;
}
@media (min-width: 992px) {
  .contact-first__content .contact-tel .phonenumber a {
    font-size: 44px;
    letter-spacing: 0.1em;
  }
}
.contact-first__content .contact-tel .phonenumber .icon {
  width: 32px;
  height: 32px;
  color: #000;
}
.contact-first__content .contact-tel .phonenumber .icon svg {
  display: block;
  width: 100%;
  height: 100%;
}
.contact-first__content .contact-tel .open {
  margin: 0;
  font-size: 12px;
  text-align: center;
}

.contact-content {
  margin: 64px 0 120px;
  padding: 0 24px;
}
@media (min-width: 992px) {
  .contact-content {
    margin: 120px 0 240px;
    padding: 0 40px;
  }
}
.contact-content__container {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
}
.contact-content .content-title {
  margin: 0 0 80px;
  font-weight: bold;
  font-size: 18px;
  text-align: center;
}
.contact-content .error-alert {
  margin: 0 0 40px;
  font-weight: bold;
  font-size: 14px;
  color: #E34C63;
  text-align: center;
}

.contact-form {
  margin: 0 0 120px;
}
@media (min-width: 992px) {
  .contact-form {
    margin: 0 0 240px;
  }
}
.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  width: 100%;
  color: #000;
}
.contact-form .input-error {
  margin-top: 8px;
  font-weight: bold;
  font-size: 13px;
  color: #E34C63;
}
.contact-form .form-radio {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.contact-form .form-radio label {
  display: flex;
  align-items: center;
  gap: 8px;
}
.contact-form .form-radio label input {
  margin: 0;
  font-size: 100%;
}
.contact-form .form-zip {
  display: flex;
  align-items: center;
  gap: 20px;
}
.contact-form .form-zip input[type=text] {
  width: 200px;
}
.contact-form .form-zip .btn {
  width: auto !important;
  height: auto !important;
  padding: 8px !important;
  border: 0 !important;
}
.contact-form .form-select select[name=pref] {
  width: 226px;
}
.contact-form .form-remarks {
  margin: 7px 0 0;
  font-size: 12px;
}
.contact-form .form-policy {
  margin: 40px 0;
  font-weight: var(--font-serif);
  font-size: 14px;
  text-align: center;
}
.contact-form a {
  color: currentColor;
}
.contact-form .form-submit {
  display: flex;
  justify-content: center;
  margin: 0 0 24px;
}
.contact-form .form-submit .btn-primary {
  max-width: 420px;
  width: 100%;
  height: 60px;
  font-weight: bold;
  font-size: 16px;
  color: #fff;
  background-color: #0080CC;
}
@media (min-width: 992px) {
  .contact-form .form-submit .btn-primary {
    height: 80px;
  }
}
.contact-form .form-submit .btn-primary:hover {
  opacity: 0.8;
}
.contact-form .powered-by {
  margin: 0;
  font-size: 10px;
  text-align: right;
}

.confirm-page {
  margin-top: 64px;
}
@media (min-width: 992px) {
  .confirm-page {
    margin-top: 120px;
  }
}
.confirm-page .contact-form .form-group {
  margin: 0;
  padding: 20px 0;
  border-bottom: 1px solid #E0E0E0;
}
@media (min-width: 992px) {
  .confirm-page .contact-form .form-group {
    flex-direction: row;
    gap: 40px;
    margin: 0;
    padding: 30px 0;
  }
}
@media (min-width: 992px) {
  .confirm-page .contact-form .form-group .form-label {
    width: 200px;
    margin: 0;
  }
}
.confirm-page .contact-form .form-confirm-submit {
  margin-top: 60px;
  gap: 20px;
}
@media (max-width: 991px) {
  .confirm-page .contact-form .form-confirm-submit {
    flex-direction: column-reverse;
    align-items: center;
    gap: 20px;
  }
}
@media (min-width: 992px) {
  .confirm-page .contact-form .form-confirm-submit {
    margin-top: 80px;
    gap: 60px;
  }
}
.confirm-page .contact-form .form-confirm-submit .btn-back {
  color: #1C1C1C;
  background-color: #E0E0E0;
}

.contact-form__complete {
  margin: 60px 0 160px;
  padding: 0 24px;
}
@media (min-width: 992px) {
  .contact-form__complete {
    margin: 94px 0 240px;
  }
}
.contact-form__complete .form-complete .title {
  margin: 0 0 72px;
  font-weight: bold;
  font-size: 22px;
}
@media (min-width: 992px) {
  .contact-form__complete .form-complete .title {
    text-align: center;
  }
}
.contact-form__complete .form-complete .text {
  margin: 0 0 80px;
  line-height: 2;
  font-size: 15px;
}
@media (min-width: 992px) {
  .contact-form__complete .form-complete .text {
    line-height: 3;
    text-align: center;
  }
}
.contact-form__complete .form-complete .text p {
  margin: 0;
}
.contact-form__complete .form-complete .text p + p {
  margin-top: 2em;
}
.contact-form__complete .form-complete .link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}
.contact-form__complete .form-complete .link-button .btn-backtop {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  width: 100%;
  padding: 30px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #1C1C1C;
}

.memail-error-page {
  margin: 120px 0 120px;
  padding: 0 24px;
}
@media (min-width: 992px) {
  .memail-error-page {
    margin: 120px 0 240px;
  }
}
.memail-error-page__inner {
  max-width: 660px;
  width: 100%;
  margin: 0 auto;
}
.memail-error-page .h-title {
  margin: 0 0 40px;
  font-weight: bold;
  font-size: 22px;
}
.memail-error-page .error-message {
  margin: 0 0 40px;
  font-size: 14px;
}
.memail-error-page .text-right {
  margin: 1em 0 0;
  text-align: right;
}
.memail-error-page #powered_by_me {
  font-size: 10px;
}
.memail-error-page .link-button {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 3em 0 0;
}
.memail-error-page .link-button .btn-backtop {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 360px;
  width: 100%;
  padding: 30px 20px;
  font-size: 18px;
  font-weight: bold;
  color: #fff;
  background-color: #1C1C1C;
}
/*# sourceMappingURL=maps/page-contact.css.map */