@charset "UTF-8";
:root {
  --color-brand: #D1C120;
  --color-brand-sub: #E6A3A5;
  --color-brand-line: #F2D4D5;
  --color-bg-brand: #FFEAEB;
  --color-light: #FFFFFF;
  --color-dark: #070707;
  --color-gray: #EFEFEF;
  --color-darkgray: #D8D8D8;
  --color-t-main: #6F6B55;
  --color-t-sub: #9D9D9D;
  --color-t-label: #6F6B55;
  --color-text: #070707;
  --color-text-sub: #454545;
  --color-text-on-dark: #FFFFFF;
  --color-text-hover: #2E6DAC;
  --color-button: #2E6DAC;
}

.cf-turnstile {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}
@media (max-width: 1023px) {
  .cf-turnstile {
    margin-top: 60px;
  }
}

.contact__button-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  margin-top: 80px;
}
@media (max-width: 1023px) {
  .contact__button-wrap {
    gap: 30px;
    margin-top: 60px;
  }
}

.contact__button {
  width: 560px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 9999px;
  padding: 24px 0;
  margin: auto;
}
@media (max-width: 1023px) {
  .contact__button {
    width: 280px;
    height: 54px;
    justify-content: space-between;
    padding: 14px 40px;
  }
}
@media (hover: hover) {
  .contact__button:hover .arrow-right {
    background-color: var(--color-dark);
  }
  .contact__button:hover .arrow-right::before, .contact__button:hover .arrow-right::after {
    background-color: var(--color-dark);
  }
}
.contact__button--back {
  background-color: var(--color-light);
  border: 2px solid var(--color-button);
}
.contact__button .arrow-wrap {
  width: 12px;
  height: 11px;
  display: flex;
  align-items: center;
  position: absolute;
}
@media (max-width: 1023px) {
  .contact__button .arrow-wrap {
    position: static;
  }
}
.contact__button .arrow-wrap--right {
  right: 40px;
}
.contact__button .arrow-wrap--left {
  left: 40px;
}
.contact__button .arrow-right {
  width: 100%;
  height: 2px;
  position: relative;
  background-color: var(--color-light);
  border-radius: 1px;
}
.contact__button .arrow-right::before, .contact__button .arrow-right::after {
  content: "";
  width: 8px;
  height: 2px;
  position: absolute;
  right: 0;
  background-color: var(--color-light);
  border-radius: 1px;
  transform: rotate(45deg);
  transform-origin: right center;
}
.contact__button .arrow-right::after {
  transform: rotate(-45deg);
}
.contact__button .arrow-left {
  width: 100%;
  height: 2px;
  position: relative;
  background-color: var(--color-button);
  border-radius: 1px;
}
.contact__button .arrow-left::before, .contact__button .arrow-left::after {
  content: "";
  width: 8px;
  height: 2px;
  position: absolute;
  left: 0;
  background-color: var(--color-button);
  border-radius: 1px;
  transform: rotate(45deg);
  transform-origin: left center;
}
.contact__button .arrow-left::after {
  transform: rotate(-45deg);
}

.contact {
  width: clamp(600px, 80%, 1200px);
  padding: 200px 0 300px;
  margin-right: auto;
  margin-left: auto;
}
@media (max-width: 1023px) {
  .contact {
    width: clamp(330px, 88%, 600px);
    padding: 48px 0 153px;
  }
}
.contact__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.44;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .contact__title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.contact__text {
  font-size: 1.8rem;
  line-height: 1.55;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .contact__text {
    font-size: 1.6rem;
    line-height: 1.5;
  }
}
.contact__tel {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .contact__tel {
    gap: 8px;
    margin-top: 14px;
  }
}
.contact__tel::before {
  content: "";
  width: 50px;
  aspect-ratio: 1;
  display: block;
  background-image: url(../images/icon/icon-phone.webp);
  background-size: cover;
}
@media (max-width: 1023px) {
  .contact__tel::before {
    width: 26px;
  }
}
.contact__tel-link {
  font-size: 7.4rem;
  line-height: 1.17;
  letter-spacing: 0;
}
@media (max-width: 1023px) {
  .contact__tel-link {
    font-size: 3.6rem;
    line-height: 1.16;
  }
}
.contact__hours {
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 32px;
  letter-spacing: 0;
  margin-top: 10px;
}
@media (max-width: 1023px) {
  .contact__hours {
    font-size: 1.8rem;
    line-height: 26px;
    margin-top: 0;
  }
}
.contact__hours-label {
  font-size: 2rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .contact__hours-label {
    font-size: 1.4rem;
  }
}

.contact__section--tel {
  background-color: var(--color-brand);
  padding: 50px 45px;
}
@media (max-width: 1023px) {
  .contact__section--tel {
    padding: 40px 14px;
  }
}
.contact__section--tel .contact__text {
  margin-top: 16px;
}
@media (max-width: 1023px) {
  .contact__section--tel .contact__text {
    margin-top: 14px;
  }
}

.contact__section--form {
  margin-top: 60px;
}
@media (max-width: 1023px) {
  .contact__section--form {
    margin-top: 30px;
  }
}
.contact__section--form .contact__text {
  margin-top: 26px;
}
@media (max-width: 1023px) {
  .contact__section--form .contact__text {
    padding: 0 8.9887640449%;
    margin-top: 14px;
  }
}
@media (max-width: 550px) {
  .contact__section--form .contact__text {
    padding: 0;
    margin-top: 14px;
  }
}

.contact-form__wrap {
  background-color: var(--color-gray);
  padding: 100px 16.6666666667%;
}
@media (max-width: 1023px) {
  .contact-form__wrap {
    padding: 40px 5.487804878%;
  }
}
@media (max-width: 500px) {
  .contact-form__wrap {
    padding: 40px 4.2682926829%;
  }
}
.contact-form__consent-text span {
  display: inline-block;
  margin: 0 auto;
}
.contact-form__consent-check {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}
@media (max-width: 1023px) {
  .contact-form__consent-check {
    margin-top: 18px;
    gap: 6px;
  }
}
.contact-form__checkbox-text {
  font-size: 1.8rem;
  letter-spacing: 0.05em;
}
@media (max-width: 1023px) {
  .contact-form__checkbox-text {
    font-size: 1.4rem;
  }
}
.contact-form__checkbox-text > span {
  margin: 0 auto;
}
.contact-form__consent-link {
  text-decoration: underline;
  transition: color 0.5s;
}
@media (hover: hover) {
  .contact-form__consent-link:hover {
    color: #2E6DAC;
  }
}
.contact-form__consent .c-form__error {
  display: block;
  text-align: center;
}

.contact-confirm__inner {
  padding: 200px 0 300px;
}
@media (max-width: 1023px) {
  .contact-confirm__inner {
    padding: 48px 0 120px;
  }
}
.contact-confirm__content {
  width: clamp(600px, 85.7142857143%, 1200px);
  background-color: var(--color-gray);
  padding: 120px 11.71875%;
  margin: auto;
}
@media (max-width: 1023px) {
  .contact-confirm__content {
    width: clamp(328px, 87.4666666667%, 600px);
    padding: 60px 3.7333333333% 40px 6.4%;
  }
}
.contact-confirm__text {
  margin-top: 26px;
}
@media (max-width: 1023px) {
  .contact-confirm__text {
    margin-top: 14px;
  }
}
.contact-confirm .confirm-list {
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.72;
  margin-top: 100px;
}
@media (max-width: 1023px) {
  .contact-confirm .confirm-list {
    font-size: 1.6rem;
    line-height: 1.5;
    margin-top: 50px;
  }
}
.contact-confirm .confirm-list__item {
  display: flex;
  align-items: flex-start;
}
@media (max-width: 1023px) {
  .contact-confirm .confirm-list__item {
    flex-direction: column;
    gap: 4px;
  }
}
.contact-confirm .confirm-list__item + .confirm-list__item {
  margin-top: 34px;
}
@media (max-width: 1023px) {
  .contact-confirm .confirm-list__item + .confirm-list__item {
    margin-top: 24px;
  }
}
.contact-confirm .confirm-list__term {
  width: 309px;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1023px) {
  .contact-confirm .confirm-list__term {
    width: 100%;
    gap: 6px;
  }
}
.contact-confirm .confirm-list__term--required::after {
  content: "必須";
  display: inline-block;
  font-size: 1.6rem;
  line-height: 27px;
  background-color: var(--color-brand);
  border-radius: 14px;
  padding: 0 10px;
}
@media (max-width: 1023px) {
  .contact-confirm .confirm-list__term--required::after {
    font-size: 1.2rem;
    line-height: 22px;
  }
}
.contact-confirm .confirm-list__detail {
  width: calc(100% - 309px);
  word-break: keep-all;
  overflow-wrap: break-word;
}
@media (max-width: 1023px) {
  .contact-confirm .confirm-list__detail {
    width: 100%;
  }
}

.contact-fin__inner {
  padding: 200px 0 300px;
}
@media (max-width: 1023px) {
  .contact-fin__inner {
    padding: 88px 0 120px;
  }
}
.contact-fin__title {
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.44;
}
@media (max-width: 1023px) {
  .contact-fin__title {
    font-size: 2rem;
    line-height: 1.45;
  }
}
.contact-fin__text {
  font-size: 1.8rem;
  line-height: 2;
  margin-top: 52px;
}
@media (max-width: 1023px) {
  .contact-fin__text {
    font-size: 1.4rem;
    line-height: 1.5;
    margin-top: 14px;
    padding: 0 2.9333333333%;
  }
}
.contact-fin__button-wrap {
  display: flex;
  justify-content: center;
  margin-top: 160px;
}
@media (max-width: 1023px) {
  .contact-fin__button-wrap {
    margin-top: 60px;
  }
}/*# sourceMappingURL=contact.css.map */