@charset "UTF-8";
/* ==========================================================================
   Contact page（お問い合わせ） Figma 3311:69357
   フォームは mail.php の name / 必須設定に合わせる（PHP は変更しない）
   ========================================================================== */
.contact-page {
  box-sizing: border-box;
  width: 100%;
}
.contact-page__inner {
  box-sizing: border-box;
  width: 100%;
}
.contact-page__stack {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  box-sizing: border-box;
  width: 100%;
}
.contact-page__stack > *:not(:last-child) {
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .contact-page__stack > *:not(:last-child) {
    margin-bottom: 64px;
  }
}

/* お問い合わせフォーム */
.contact-form {
  align-self: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
}
.contact-form__head {
  width: 100%;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .contact-form__head {
    margin-bottom: 24px;
  }
}
.contact-form__shell {
  box-sizing: border-box;
  width: 100%;
  background-color: #efefef;
}
.contact-form__inner {
  box-sizing: border-box;
  max-width: 1120px;
  margin-inline: auto;
  padding: 64px 24px;
}
@media screen and (max-width: 768px) {
  .contact-form__inner {
    padding: 40px 16px;
  }
}
.contact-form__fields {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  box-sizing: border-box;
  width: 100%;
  max-width: 900px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contact-form__fields {
    gap: 18px;
  }
}
.contact-form__field {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
  min-height: 92px;
}
@media screen and (max-width: 768px) {
  .contact-form__field {
    min-height: 0;
  }
}
.contact-form__label-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px;
  box-sizing: border-box;
}
.contact-form__label {
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .contact-form__label {
    font-size: 18px;
    line-height: 155%;
  }
}
.contact-form__req {
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.08em;
  text-align: center;
  color: #de1313;
}
.contact-form__input, .contact-form__textarea {
  box-sizing: border-box;
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e5e5e5;
  border-radius: 0;
  background-color: #ffffff;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 160%;
  color: #000000;
}
.contact-form__input:focus, .contact-form__textarea:focus {
  outline: 2px solid #0081c0;
  outline-offset: 2px;
}
.contact-form__input::placeholder, .contact-form__textarea::placeholder {
  color: #999999;
}
@media screen and (max-width: 768px) {
  .contact-form__input, .contact-form__textarea {
    padding: 10px 14px;
    font-size: 16px;
    line-height: 155%;
  }
}
.contact-form__input {
  min-height: 50px;
}
.contact-form__textarea {
  display: block;
  min-height: 300px;
  resize: vertical;
}
@media screen and (max-width: 768px) {
  .contact-form__textarea {
    min-height: 200px;
  }
}
.contact-form__actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  margin-top: 44px;
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .contact-form__actions {
    gap: 24px;
    margin-top: 32px;
  }
}
.contact-form__agree {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-form__agree {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.contact-form__checkbox {
  flex-shrink: 0;
  box-sizing: border-box;
  width: 16px;
  height: 16px;
  margin-top: 4px;
  border: 1px solid #e5e5e5;
  border-radius: 0;
  background-color: #ffffff;
  accent-color: #0081c0;
  cursor: pointer;
}
.contact-form__agree-label {
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  letter-spacing: 0.007em;
  color: #000000;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .contact-form__agree-label {
    font-size: 13px;
    line-height: 155%;
  }
}
.contact-form__agree-label .contact-form__privacy-anchor {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 2px;
}
.contact-form__agree-label .contact-form__privacy-anchor:focus-visible {
  outline: 2px solid #0081c0;
  outline-offset: 2px;
}
.contact-form__submit {
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 500px;
  min-height: 90px;
  padding: 16px 24px;
  border: none;
  border-radius: 12px;
  background-color: #ff7b00;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 24px;
  letter-spacing: 0.08em;
  text-align: center;
  color: #ffffff;
  cursor: pointer;
}
.contact-form__submit:hover {
  opacity: 0.92;
}
.contact-form__submit:focus-visible {
  outline: 3px solid #0081c0;
  outline-offset: 4px;
}
@media screen and (max-width: 768px) {
  .contact-form__submit {
    min-height: 76px;
    padding: 14px 20px;
    font-size: 20px;
    line-height: 26px;
  }
}

/* 個人情報保護方針 */
.contact-policy {
  margin-bottom: 100px;
  align-self: center;
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
}
@media screen and (max-width: 768px) {
  .contact-policy {
    margin-bottom: 64px;
  }
}
.contact-policy__head {
  width: 100%;
  margin-bottom: 32px;
  scroll-margin-top: 121px;
}
@media screen and (max-width: 768px) {
  .contact-policy__head {
    margin-bottom: 24px;
    scroll-margin-top: 96px;
  }
}
.contact-policy__box {
  box-sizing: border-box;
}
.contact-policy__sections {
  display: flex;
  flex-direction: column;
  gap: 40px;
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
}
@media screen and (max-width: 768px) {
  .contact-policy__sections {
    gap: 28px;
  }
}
.contact-policy__section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-sizing: border-box;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact-policy__section {
    gap: 16px;
  }
}
.contact-policy__section-title {
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 24px;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .contact-policy__section-title {
    font-size: 20px;
    line-height: 155%;
  }
}
.contact-policy__section-body {
  margin: 0;
  box-sizing: border-box;
  width: 100%;
  max-width: 1120px;
  font-family: "Kosugi", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 160%;
  letter-spacing: 0.08em;
  color: #000000;
}
@media screen and (max-width: 768px) {
  .contact-policy__section-body {
    font-size: 15px;
    line-height: 165%;
  }
}/*# sourceMappingURL=contact.css.map */