/* =============================================
   お問い合わせページ専用CSS（contact.css）
   ============================================= */

.contact-page { 
  padding-top: 0;
 }

/* ── ① ヒーロー ── */
.contact-hero {
  position: relative;
  width: 100%;
  height: 570px;
  overflow: hidden;
}
.contact-hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.contact-hero__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.2);
}
.contact-hero__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 36px;
  letter-spacing: 0.3em;
  color: #ffffff;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

/* ── ② 説明テキスト ── */
.contact-intro {
  padding: 64px 0 48px;
  background-color: #ffffff;
}
.contact-intro__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
  text-align: center;
}
.contact-intro__text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.8;
  letter-spacing: 0.05em;
  color: #4f4f4f;
  margin-bottom: 40px;
}

/* 電話ボタン */
.contact-tel-wrap {
  display: flex;
  justify-content: center;
}
.contact-tel-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px 56px;
  border-radius: 70px;
  border: 2px solid #0051a3;
  background-color: #ffffff;
  text-decoration: none;
  transition: opacity 0.2s;
}
.contact-tel-btn:hover {
  opacity: 0.8;
}
.contact-tel-btn__icon {
  width: 40px;
  height: 40px;
  object-fit: contain;
  flex-shrink: 0;
}
.contact-tel-btn__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: left;
}
.contact-tel-btn__label {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.05em;
  color: #0051a3;
}
.contact-tel-btn__number {
  font-family: 'Dela Gothic One', sans-serif;
  font-size: 32px;
  letter-spacing: 0.05em;
  color: #0051a3;
}
.contact-tel-btn__hours {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 500;
  font-size: 12px;
  letter-spacing: 0.03em;
  color: #0051a3;
  opacity: 0.75;
}

/* ── ③ フォームエリア ── */
.contact-form {
  padding: 64px 0 100px;
  background-color: #fbf9f6;
}
.contact-form__inner {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 24px;
}
.contact-form__title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-weight: 700;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: #0051a3;
  text-align: center;
  margin-bottom: 40px;
}

/* フォームラン埋め込みエリア */
.contact-form__embed {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 48px;
  min-height: 400px;
  /* フォームラン埋め込み後は padding・min-height を調整 */
}

/* ── SP対応 ── */
@media (max-width: 768px) {
  .contact-hero { height: 260px; }
  .contact-intro { padding: 40px 0 32px; }
  .contact-tel-btn {
    padding: 16px 24px;
    width: 100%;
  }
  .contact-tel-btn__number { font-size: 24px; }
  .contact-form__embed { padding: 24px 16px; }
}


/* ===== 個人情報の取り扱いについて ===== */
.privacy-policy {
  padding: 40px 20px 80px;
}

.privacy-policy__inner {
  max-width: 860px;
  margin: 0 auto;
  background-color: #fff;
  border-radius: 24px;
  padding: 48px 48px 56px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.privacy-policy__title {
  font-size: 22px;
  font-weight: 700;
  text-align: center;
  color: #1b4fa0;
  margin-bottom: 24px;
}

.privacy-policy__lead {
  font-size: 14px;
  line-height: 1.9;
  margin-bottom: 32px;
}

.privacy-policy__block {
  margin-bottom: 28px;
}

.privacy-policy__heading {
  font-size: 16px;
  font-weight: 700;
  color: #1b4fa0;
  border-left: 4px solid #1b4fa0;
  padding-left: 12px;
  margin-bottom: 10px;
}

.privacy-policy__text {
  font-size: 14px;
  line-height: 1.9;
}

.privacy-policy__list {
  margin: 10px 0 10px 1.5em;
  font-size: 14px;
  line-height: 1.9;
  list-style: disc;
}

@media (max-width: 768px) {
  .privacy-policy__inner {
    padding: 32px 20px 40px;
  }
  .privacy-policy__title {
    font-size: 19px;
  }
}
/* =============================================
   contact.css SP追加対応
   ============================================= */
@media (max-width: 768px) {
  .contact-hero { height: 200px; }
  .contact-hero__title { font-size: 24px; }
  
  .contact-intro { padding: 36px 0 28px; }
  .contact-intro__inner { padding: 0 16px; }
  .contact-intro__text { font-size: 14px; margin-bottom: 28px; }
  
  .contact-tel-btn {
    padding: 14px 20px;
    width: 100%;
    border-radius: 50px;
  }
  .contact-tel-btn__number { font-size: 22px; }
  .contact-tel-btn__label { font-size: 12px; }
  .contact-tel-btn__hours { font-size: 11px; }
  .contact-tel-btn__icon { width: 32px; height: 32px; }
  
  .contact-form { padding: 40px 0 72px; }
  .contact-form__inner { padding: 0 16px; }
  .contact-form__title { font-size: 18px; margin-bottom: 28px; }
  .contact-form__embed { padding: 20px 12px; border-radius: 8px; }
}
