@charset "UTF-8";
.contact {
  padding-bottom: 120px;
}
.policy {
  padding-bottom: 120px;
}
.page__inner {
  max-width: 820px;
  margin: 0 auto;
}

.page__title {
  font-family: "Lato", sans-serif;
  font-size: 40px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-align: center;
  line-height: 1;
  margin-bottom: 12px;
}

.page__subtitle {
  font-size: 14px;
  letter-spacing: 0.15em;
  text-align: center;
  color: rgba(255, 255, 255, 0.65);
  margin-bottom: 60px;
}

.page__lead {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  margin-bottom: 56px;
  color: rgba(255, 255, 255, 0.88);
}

.page__section {
  margin-bottom: 36px;
}

.page__section__title {
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #ffb3c9;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255, 179, 201, 0.3);
}

.page__section p {
  font-size: 14px;
  line-height: 2;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}

.page__list {
  margin-top: 8px;
  padding-left: 1.5em;
  list-style: disc;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.85);
}

.page__list li::marker {
  color: #ffb3c9;
}

.page__link {
  color: #ffb3c9;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 179, 201, 0.4);
  padding-bottom: 1px;
  transition:
    opacity 0.2s,
    border-color 0.2s;
}

.page__link:hover {
  opacity: 0.8;
  border-color: #ffb3c9;
}

.page__updated {
  margin-top: 56px;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-align: right;
  color: rgba(255, 255, 255, 0.5);
}

/* ===== お問い合わせフォーム ===== */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 640px;
  margin: 0 auto;
}

.contact-form__row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.contact-form__label {
  font-size: 13px;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.9);
}

.contact-form__label--required::after {
  content: "*";
  color: #ffb3c9;
  margin-left: 6px;
  font-size: 14px;
}

.contact-form__input,
.contact-form__textarea {
  width: 100%;
  background-color: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  padding: 12px 16px;
  font-size: 14px;
  font-family: inherit;
  line-height: 1.6;
  transition:
    border-color 0.2s,
    background-color 0.2s;
}

.contact-form__input:focus,
.contact-form__textarea:focus {
  outline: none;
  border-color: #ffb3c9;
  background-color: rgba(255, 255, 255, 0.08);
}

.contact-form__textarea {
  resize: vertical;
  min-height: 180px;
}

.contact-form__row--check {
  flex-direction: row;
  align-items: center;
  justify-content: center;
  margin-top: 8px;
}

.contact-form__check {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.contact-form__check input[type="checkbox"] {
  accent-color: #ffb3c9;
  width: 16px;
  height: 16px;
}

.contact-form__submit {
  align-self: center;
  margin-top: 12px;
  min-width: 220px;
  background-color: #ffb3c9;
  color: #000;
  border: none;
  padding: 16px 40px;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.25em;
  cursor: pointer;
  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    opacity 0.25s ease;
}

.contact-form__submit:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 179, 201, 0.35);
  opacity: 0.95;
}

.contact-form__submit:active {
  transform: translateY(0);
}

@media (max-width: 600px) {
  .contact {
    padding: 64px 6% 80px;
  }
  .policy {
    padding: 64px 6% 80px;
  }
  .page__title {
    font-size: 30px;
  }
  .page__lead {
    margin-bottom: 36px;
  }
  .contact-form__submit {
    min-width: 180px;
    padding: 14px 32px;
  }
}
