@charset "UTF-8";
:root {
  --yellow: #f5c464;
  --yellow-bg: #fffbef;
  --teal: #50c8b5;
  --teal-bg: #edfaf7;
  --sky: #e5f4fa;
  --sky-dark: #b8dff0;
  --navy: #2d3580;
  --text: #333;
  --text-mid: #666;
  --text-light: #999;
  --white: #fff;
  --border: #ebebeb;
  --purple: #e2c6ff;
}

/* ===============================
  CONTACT
=============================== */
.contact__content {
  padding: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap)) 0;
}
@media (max-width: 767px) {
  .contact__content {
    padding: clamp(0px, 50 * var(--rate-vw), 50px * var(--cap)) 0;
  }
}

.contact__wrapper {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .contact__wrapper {
    flex-direction: column;
    gap: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap)) 0;
  }
}

.contact__info {
  width: 30%;
}
@media (max-width: 767px) {
  .contact__info {
    width: 100%;
  }
}

.contact__message {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  line-height: 1.7;
}
@media (max-width: 767px) {
  .contact__message {
    margin-top: clamp(0px, 32 * var(--rate-vw), 32px * var(--cap));
    font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  }
}

.contact__direct {
  margin-top: clamp(0px, 100 * var(--rate-vw), 100px * var(--cap));
  border-top: 1px solid #D1D1D1;
  padding-top: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
}
@media (max-width: 767px) {
  .contact__direct {
    margin-top: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
    padding-top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
  }
}

.contact__direct-label {
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 900;
  font-family: "Inter", sans-serif;
  color: #999;
}

.contact__direct-list {
  margin-top: clamp(0px, 20 * var(--rate-vw), 20px * var(--cap));
}
.contact__direct-list li a {
  display: inline-block;
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  line-height: 1.7;
  font-weight: 900;
  font-family: "Inter", sans-serif;
}

.contact__form {
  width: 60%;
}
.contact__form dt:nth-child(n+2) {
  margin-top: clamp(0px, 40 * var(--rate-vw), 40px * var(--cap));
}
@media (max-width: 767px) {
  .contact__form {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .contact__items {
    margin-top: 5%;
  }
}

.contact__label {
  display: flex;
  align-items: center;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 700;
  line-height: 1.8;
}
@media (max-width: 767px) {
  .contact__label {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  }
}

.contact__required {
  display: inline-block;
  font-size: clamp(0px, 14 * var(--rate-fz), 14px * var(--cap));
  font-weight: 600;
  line-height: 1.4;
  margin-left: 1em;
  color: #0033FF;
}
@media (max-width: 767px) {
  .contact__required {
    font-size: clamp(0px, 12 * var(--rate-fz), 12px * var(--cap));
  }
}

.contact__field {
  margin-top: clamp(0px, 10 * var(--rate-vw), 10px * var(--cap));
}
.contact__field input[type=text],
.contact__field input[type=tel],
.contact__field input[type=email],
.contact__field textarea {
  font: inherit;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  line-height: 1.8;
  font-family: inherit;
  color: #000;
  font-weight: bold;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: transparent;
  width: 100%;
  border: none;
  border-bottom: 2px solid #D1D1D1;
  padding: 0.5em;
}
.contact__field textarea {
  resize: vertical;
  min-height: 160px;
}

.contact__submit {
  text-align: center;
  margin-top: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
  transition: opacity 0.3s;
  text-align: left;
}
@media (hover: hover) {
  .contact__submit:hover {
    opacity: 0.7;
  }
}

.contact__button {
  font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  font-weight: 900;
  background: #fff;
  border: 3px solid #111111;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  padding: 1em 4em;
}
.contact__button::after {
  display: inline-block;
  content: "";
  position: relative;
  background: url(../img/icon-arrow.png) no-repeat center center/contain;
  width: 1em;
  aspect-ratio: 256/256;
  margin-left: 1em;
}
@media (max-width: 767px) {
  .contact__button {
    width: 100%;
    font-size: clamp(0px, 18 * var(--rate-fz), 18px * var(--cap));
  }
}

.contact__checkbox-custom {
  display: flex;
  align-items: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: 500;
  line-height: 1.7;
}

.contact__checkbox {
  display: inline-block;
  width: 1em;
  height: 1em;
  border: 1px solid #4d4d4d;
  background: #fff;
  position: relative;
  margin-right: 1em;
}
.contact__checkbox input {
  opacity: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  margin: 0;
  width: 0;
  height: 0;
}
.contact__checkbox::after {
  content: "";
  position: absolute;
  aspect-ratio: 10/17;
  width: 45%;
  right: 0%;
  top: 50%;
  border-left: 2px solid #000;
  border-bottom: 2px solid #000;
  transform: translate(-50%, -65%) rotate(35deg) scale(-1, 1);
  display: none;
}
.contact__checkbox:has(:checked)::after {
  display: block;
}

/* モーダル
------------------------------*/
[data-modalwrap] {
  position: fixed;
  z-index: 3000;
  width: 100%;
  height: 100%;
  background: rgba(19, 19, 19, 0.7);
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
[data-modalwrap].act {
  opacity: 1;
  pointer-events: auto;
}

.modal-body {
  position: relative;
  width: 800px;
  max-width: 90%;
  max-height: 90%;
  background: #fff;
  overflow: auto;
  overflow-x: hidden;
  padding: clamp(0px, 80 * var(--rate-vw), 80px * var(--cap));
}
@media (max-width: 767px) {
  .modal-body {
    padding: 10% 5%;
  }
}

.thanks__title {
  font-size: clamp(0px, 30 * var(--rate-fz), 30px * var(--cap));
  font-weight: bold;
  text-align: center;
}
@media (max-width: 767px) {
  .thanks__title {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

.thanks__text {
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  margin-top: 1em;
  text-align: center;
  line-height: 1.6;
}
@media (max-width: 767px) {
  .thanks__text {
    font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
    text-align: left;
  }
}

.thanks__btn {
  text-align: center;
  font-size: clamp(0px, 24 * var(--rate-fz), 24px * var(--cap));
  font-weight: 700;
  background: #F6C463;
  border-radius: 2em;
  cursor: pointer;
  position: relative;
  padding: 1em 2em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 2em auto 0;
  display: block;
}
@media (max-width: 767px) {
  .thanks__btn {
    font-size: clamp(0px, 20 * var(--rate-fz), 20px * var(--cap));
  }
}

/* modal open時にscrollを無効にする場合 */
.invalid-caution { /* バリデーションエラーメッセージ */
  width: 100%;
  color: red;
  font-size: clamp(0px, 16 * var(--rate-fz), 16px * var(--cap));
  font-weight: bold;
}

p:nth-child(n+2 of .invalid-caution) {
  display: none;
}

.bt_acc {
  pointer-events: none;
  opacity: 0.5;
}
.bt_acc.act {
  pointer-events: auto;
  opacity: 1;
}

[data-form-mode=con] .is-in {
  display: none !important;
}
[data-form-mode=con] .is-con-po {
  pointer-events: none !important;
}
[data-form-mode=con] input:not([type=submit]), [data-form-mode=con] textarea, [data-form-mode=con] select, [data-form-mode=con] label {
  pointer-events: none !important;
}

[data-form-mode=in] .is-con {
  display: none !important;
}

.form-hidden {
  display: none;
}
/*# sourceMappingURL=contact.css.map */