/* ============================
   ページヒーロー
   ============================ */
.page-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #fff0f5 100%);
  text-align: center;
  padding: 60px 24px 48px;
  margin-top: 0;
}

.page-title {
  font-family: 'Cinzel Decorative', serif;
  font-size: 2rem;
  font-weight: 900;
  background: linear-gradient(135deg, #87CEEB, #FFB6C1);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 12px;
}

.page-hero p {
  color: #777;
  font-size: 1rem;
}

/* ============================
   お問い合わせセクション
   ============================ */
.contact-section {
  padding: 60px 0 80px;
  background: #fafafa;
}

.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 40px;
  align-items: flex-start;
}

/* ============================
   フォーム
   ============================ */
.contact-form-wrap {
  background: white;
  border-radius: 24px;
  padding: 48px 40px;
  box-shadow: 0 4px 24px rgba(135, 206, 235, 0.12);
}

.contact-form-page .form-section-title {
  font-size: 0.85rem;
  font-weight: 700;
  color: #87CEEB;
  letter-spacing: 0.1em;
  border-bottom: 2px solid #e8f4fb;
  padding-bottom: 8px;
  margin: 28px 0 16px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.contact-form-page .form-group {
  margin-bottom: 20px;
}

.contact-form-page label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 8px;
  color: #444;
}

.contact-form-page input[type="text"],
.contact-form-page input[type="email"],
.contact-form-page input[type="tel"],
.contact-form-page input[type="date"],
.contact-form-page select,
.contact-form-page textarea {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #e8e8e8;
  border-radius: 12px;
  font-size: 0.95rem;
  font-family: 'Noto Sans JP', sans-serif;
  transition: border-color 0.2s;
  outline: none;
  background: white;
  color: #444;
}

.contact-form-page input:focus,
.contact-form-page select:focus,
.contact-form-page textarea:focus {
  border-color: #87CEEB;
}

/* ラジオボタン */
.radio-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.radio-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-weight: 400 !important;
  padding: 10px 20px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
  font-size: 0.9rem;
}

.radio-label:has(input:checked) {
  border-color: #FFB6C1;
  background: #fff0f5;
}

.radio-label input { display: none; }

/* チェックボックス */
.checkbox-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.checkbox-label {
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: pointer;
  font-weight: 400 !important;
  font-size: 0.9rem;
  padding: 8px 14px;
  border: 2px solid #e8e8e8;
  border-radius: 50px;
  transition: border-color 0.2s, background 0.2s;
}

.checkbox-label:has(input:checked) {
  border-color: #87CEEB;
  background: #f0f9ff;
}

.checkbox-label input { display: none; }

/* プライバシー */
.privacy .checkbox-label {
  padding: 0;
  border: none;
  background: none;
}

/* 送信ボタン */
.contact-form-page .submit-btn {
  width: 100%;
  background: linear-gradient(135deg, #87CEEB 0%, #FFB6C1 100%);
  color: white;
  font-size: 1.1rem;
  font-weight: 700;
  padding: 16px;
  border: none;
  border-radius: 50px;
  cursor: pointer;
  font-family: 'Noto Sans JP', sans-serif;
  transition: opacity 0.2s, transform 0.2s;
  box-shadow: 0 4px 20px rgba(255, 182, 193, 0.4);
  margin-top: 8px;
}

.contact-form-page .submit-btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ============================
   右カラム：情報カード
   ============================ */
.contact-info-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.info-card {
  background: white;
  border-radius: 20px;
  padding: 28px 24px;
  box-shadow: 0 4px 20px rgba(135, 206, 235, 0.12);
}

.info-card h3 {
  font-size: 1rem;
  font-weight: 900;
  margin-bottom: 16px;
  padding-bottom: 10px;
  border-bottom: 2px solid #FFB6C1;
  color: #333;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.info-item i {
  font-size: 1.2rem;
  color: #87CEEB;
  width: 24px;
  text-align: center;
  flex-shrink: 0;
}

.info-label {
  font-size: 0.75rem;
  color: #aaa;
  margin-bottom: 2px;
}

.info-item a {
  font-weight: 700;
  color: #444;
  font-size: 0.9rem;
  text-decoration: underline;
}

.info-card p {
  font-size: 0.9rem;
  color: #555;
  line-height: 1.8;
  margin-bottom: 16px;
}

.google-form-btn {
  display: inline-block;
  background: linear-gradient(135deg, #87CEEB, #FFB6C1);
  color: white;
  font-weight: 700;
  font-size: 0.9rem;
  padding: 12px 20px;
  border-radius: 50px;
  transition: opacity 0.2s;
}

.google-form-btn:hover { opacity: 0.85; }

/* ============================
   コーチ一覧ページ
   ============================ */
.coach-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
  max-width: 900px;
  margin: 0 auto;
}

.coach-img-placeholder {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0f9ff, #fff0f5);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 4rem;
  color: #ccc;
  min-width: 180px;
}

.coach-comment {
  margin-top: 14px;
  font-size: 0.92rem;
  font-weight: 700;
  color: #9B7FD4;
  line-height: 1.7;
}

/* ============================
   レスポンシブ
   ============================ */
@media (max-width: 768px) {
  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .contact-form-wrap {
    padding: 32px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .radio-group,
  .checkbox-group {
    gap: 8px;
  }
}
