.contact-page {
  overflow: hidden;
}

/* ========================================
   Contact FV
======================================== */
.contact-fv {
  position: relative;
  width: 100%;
  height: min(36vw, 560px);
  min-height: 420px;
  overflow: hidden;
  color: #fff;
}

.contact-fv__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  z-index: 0;
}

.contact-fv__overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.38) 62%, rgba(0, 0, 0, 0) 92%, rgba(0, 0, 0, 0) 100%);
}

.contact-fv__inner {
  position: relative;
  z-index: 2;
  width: min(100% - 80px, 1240px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.contact-fv__en {
  margin: 0 0 28px;
  color: #ff8809;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
}

.contact-fv__title {
  margin: 0;
  font-size: clamp(40px, 4vw, 60px);
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.04em;
}

.contact-fv__text {
  margin: 40px 0 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.04em;
}

/* ========================================
   Large Monitor
======================================== */
@media screen and (min-width: 1600px) {
  .contact-fv {
    height: 560px;
  }
  .contact-fv__bg {
    object-position: center 48%;
  }
  .contact-fv__inner {
    width: min(100% - 120px, 1400px);
  }
}
/* ========================================
   Tablet
======================================== */
@media screen and (max-width: 1100px) {
  .contact-fv {
    height: 460px;
    min-height: 460px;
  }
  .contact-fv__bg {
    object-position: center center;
  }
  .contact-fv__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.28) 78%, rgba(0, 0, 0, 0.08) 100%);
  }
  .contact-fv__inner {
    width: min(100% - 48px, 920px);
  }
  .contact-fv__en {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .contact-fv__title {
    font-size: 44px;
  }
  .contact-fv__text {
    margin-top: 32px;
    font-size: 18px;
    line-height: 1.9;
  }
}
/* ========================================
   SP
======================================== */
@media screen and (max-width: 767px) {
  .contact-fv {
    height: 420px;
    min-height: 420px;
  }
  .contact-fv__bg {
    object-position: 58% center;
  }
  .contact-fv__overlay {
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.92) 0%, rgba(0, 0, 0, 0.78) 48%, rgba(0, 0, 0, 0.42) 100%);
  }
  .contact-fv__inner {
    width: calc(100% - 40px);
  }
  .contact-fv__en {
    margin-bottom: 20px;
    font-size: 15px;
  }
  .contact-fv__title {
    font-size: 34px;
  }
  .contact-fv__text {
    margin-top: 26px;
    font-size: 15px;
    line-height: 2;
  }
  .contact-fv__text br {
    display: none;
  }
}
/* ========================================
   Small SP
======================================== */
@media screen and (max-width: 390px) {
  .contact-fv {
    height: 400px;
    min-height: 400px;
  }
  .contact-fv__title {
    font-size: 31px;
  }
  .contact-fv__text {
    font-size: 14px;
  }
}
/* ========================================
   Contact Form
======================================== */
.contact-form-card {
  padding: 40px 60px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
  position: relative;
}

.contact-form-section {
  position: relative;
  padding: 120px 0 110px;
  background: #fff;
}

.contact-form-section__inner {
  width: min(100% - 80px, 980px);
  margin: 0 auto;
}

.contact-form-section__title {
  margin: 0;
  text-align: center;
  color: #111;
  font-size: clamp(22px, 2vw, 26px);
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.04em;
}

.contact-form-section__lead {
  margin-top: 32px;
  text-align: center;
  color: #111;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.9;
  letter-spacing: 0.03em;
}

.contact-form {
  margin-top: 80px;
}

.contact-form__field {
  margin-top: 28px;
}

.contact-form__field:first-child {
  margin-top: 0;
}

.contact-form__label {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}

.contact-form__label-text {
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.contact-form__required {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 24px;
  padding: 0 10px;
  background: #ff771d;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  color: #111;
  font-size: 16px;
  line-height: 1.8;
  transition: 0.25s;
}

.contact-form__input {
  height: 58px;
  padding: 0 18px;
}

.contact-form__textarea {
  min-height: 220px;
  padding: 16px 18px;
  resize: vertical;
}

.contact-form input[type=text]:hover,
.contact-form input[type=email]:hover,
.contact-form input[type=tel]:hover,
.contact-form textarea:hover {
  border-color: #ff8809;
}

.contact-form input[type=text]:focus,
.contact-form input[type=email]:focus,
.contact-form input[type=tel]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: #ff771d;
  box-shadow: 0 0 0 3px rgba(255, 119, 29, 0.16);
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form input[type=tel],
.contact-form textarea {
  width: 100%;
  background: #f3f3f3;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
}

.contact-form__error {
  min-height: 22px;
  margin: 8px 0 0;
  color: #d90000;
  font-size: 14px;
  font-weight: 700;
}

.contact-form__privacy {
  margin-top: 56px;
  border: 1px solid #111;
  background: #fff;
}

.contact-form__privacy-inner {
  height: 250px;
  padding: 0 40px 28px;
  overflow-y: auto;
}

.contact-form__privacy-block {
  padding-top: 28px;
}

.contact-form__privacy-title {
  margin: 0 0 14px;
  color: #111;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.7;
}

.contact-form__privacy-text {
  margin: 0;
  color: #111;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.9;
  letter-spacing: 0.02em;
}

.contact-form__agree {
  margin-top: 36px;
  text-align: center;
  font-size: 16px;
}

.contact-form__agree-label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: #111;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
}

.contact-form__checkbox {
  appearance: none;
  width: 20px;
  height: 20px;
  margin: 0;
  border: 1px solid #ff771d;
  border-radius: 4px;
  background: #fff;
  cursor: pointer;
  position: relative;
}

.contact-form__checkbox:checked {
  background: #ff771d;
}

.contact-form__checkbox:checked::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(45deg);
}

.contact-form__button-wrap {
  margin-top: 56px;
  text-align: center;
}

.contact-form__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: min(260px, 100%);
  height: 62px;
  padding: 0;
  border: none;
  border-radius: 6px;
  background: linear-gradient(180deg, #ff8e20 0%, #ff771d 55%, #f05a00 100%);
  box-shadow: 0 10px 24px rgba(255, 119, 29, 0.35), 0 5px 0 #c84e00;
  overflow: hidden;
  position: relative;
  color: #fff;
  font-size: 17px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: 0.25s;
}

.contact-form__button::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(110deg, transparent 0%, rgba(255, 255, 255, 0.25) 45%, transparent 70%);
  transform: translateX(-120%);
  transition: 0.6s;
}

.contact-form__button:hover {
  transform: translateY(3px);
  box-shadow: 0 3px 0 rgba(188, 66, 0, 0.7);
}

.contact-form__button:hover::before {
  transform: translateX(120%);
}

.contact-form__button-arrow {
  font-size: 16px;
  transition: transform 0.25s ease;
}

.contact-form__hidden-submit {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
}

.contact-form__button:hover .contact-form__button-arrow {
  transform: translateX(5px);
}

/* CF7 default parts */
.contact-form .wpcf7-form-control-wrap {
  display: block;
}

.contact-form .wpcf7-not-valid-tip {
  margin-top: 8px;
  color: #d90000;
  font-size: 14px;
  font-weight: 700;
}

.contact-form .wpcf7-response-output {
  margin: 32px 0 0;
  padding: 16px 20px;
  border-color: #ff771d;
  font-size: 15px;
  font-weight: 700;
  text-align: center;
}

/* ========================================
   Contact Form Tablet
======================================== */
@media screen and (max-width: 1100px) {
  .contact-form-section {
    padding: 96px 0 96px;
  }
  .contact-form-section__inner {
    width: min(100% - 56px, 860px);
  }
  .contact-form-section__lead {
    margin-top: 40px;
    font-size: 17px;
  }
  .contact-form {
    margin-top: 68px;
  }
  .contact-form__input {
    height: 60px;
  }
  .contact-form__textarea {
    min-height: 230px;
  }
  .contact-form__privacy-inner {
    padding: 0 32px 28px;
  }
  .contact-form__button {
    width: min(300px, 100%);
    height: 70px;
    font-size: 21px;
  }
}
/* ========================================
   Contact Form SP
======================================== */
@media screen and (max-width: 767px) {
  .contact-form-section {
    padding: 72px 0 80px;
  }
  .contact-form-section__inner {
    width: calc(100% - 40px);
  }
  .contact-form-card {
    padding: 28px 20px;
  }
  .contact-form-section__title {
    font-size: 20px;
    line-height: 1.7;
  }
  .contact-form-section__lead {
    margin-top: 32px;
    text-align: left;
    font-size: 15px;
    line-height: 1.9;
  }
  .contact-form-section__lead br {
    display: none;
  }
  .contact-form {
    margin-top: 52px;
  }
  .contact-form__field {
    margin-top: 24px;
  }
  .contact-form__label {
    gap: 10px;
    margin-bottom: 10px;
  }
  .contact-form__label-text {
    font-size: 16px;
  }
  .contact-form__required {
    min-width: 42px;
    height: 24px;
    padding: 0 8px;
    font-size: 13px;
  }
  .contact-form__input {
    height: 54px;
    padding: 0 14px;
    font-size: 16px;
  }
  .contact-form__textarea {
    min-height: 190px;
    padding: 14px;
    font-size: 16px;
  }
  .contact-form__privacy {
    margin-top: 44px;
  }
  .contact-form__privacy-inner {
    height: 220px;
    padding: 0 18px 22px;
  }
  .contact-form__privacy-block {
    padding-top: 22px;
  }
  .contact-form__privacy-title {
    margin-bottom: 10px;
    font-size: 16px;
  }
  .contact-form__privacy-text {
    font-size: 14px;
    line-height: 1.8;
  }
  .contact-form__agree {
    margin-top: 30px;
  }
  .contact-form__agree-label {
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.6;
    text-align: left;
  }
  .contact-form__checkbox {
    flex: 0 0 auto;
    width: 18px;
    height: 18px;
    margin-top: 3px;
  }
  .contact-form__checkbox:checked::after {
    left: 5px;
    top: 1px;
    width: 6px;
    height: 10px;
  }
  .contact-form__button-wrap {
    margin-top: 44px;
  }
  .contact-form__button {
    width: 100%;
    max-width: 300px;
    height: 58px;
    font-size: 16px;
  }
}
/* ========================================
   Contact Form Small SP
======================================== */
@media screen and (max-width: 390px) {
  .contact-form-section__title {
    font-size: 20px;
  }
  .contact-form__button {
    font-size: 18px;
  }
}/*# sourceMappingURL=contact.css.map */