/* ============================================================
   contact.css — コンテンツメンター お問い合わせページ
   ============================================================ */

/* #contact-wrap */
#contact-wrap {
  padding: 80px 0 96px;
  background: #f0f4ff;
}
@media (min-width: 768px) { #contact-wrap { padding: 96px 0 112px; } }

/* 電話カード */
.contact-tel-card {
  background: #ffffff;
  border-radius: 14px;
  border-top: 4px solid #1e40af;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 32px;
}
@media (max-width: 767px) { .contact-tel-card { padding: 28px 20px; } }

.contact-card-en {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #1e40af;
  margin-bottom: 8px;
}
.contact-card-lead {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 16px;
}

.contact-tel-number {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 38px;
  font-weight: 900;
  color: #1e40af;
  text-decoration: none;
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 10px;
  transition: opacity 0.2s;
}
@media (min-width: 768px) { .contact-tel-number { font-size: 46px; } }
.contact-tel-number i { font-size: 28px; }
.contact-tel-number:hover { opacity: 0.75; color: #1e40af; }

.contact-hours {
  font-size: 13px;
  color: #64748b;
}

/* フォームカード */
.contact-form-card {
  background: #ffffff;
  border-radius: 14px;
  border-top: 4px solid #1e40af;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
  padding: 40px 36px 48px;
}
@media (max-width: 767px) { .contact-form-card { padding: 28px 20px 36px; } }

/* Bootstrap form-control カスタマイズ */
.contact-form-card .form-control {
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  border-color: #e2e8f0;
  border-radius: 6px;
  transition: border-color 0.2s, box-shadow 0.2s;
  color: #1e293b;
}
.contact-form-card .form-control:focus {
  border-color: #1e40af;
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
  outline: none;
}
.contact-form-card .form-control::placeholder { color: #cbd5e1; }
.contact-form-card .form-label { font-size: 14px; margin-bottom: 6px; color: #0f172a; }

/* ラジオボタン */
.contact-form-card .form-check-input:checked {
  background-color: #1e40af;
  border-color: #1e40af;
}
.contact-form-card .form-check-input:focus {
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.15);
}

/* バッジ */
.contact-form-card .badge.bg-danger  { background-color: #1e40af !important; }
.contact-form-card .badge.bg-secondary { background-color: #94a3b8 !important; }

/* select arrow */
.contact-form-card select.form-control {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2364748b' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

/* 送信ボタン */
.btn-contact-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 16px 56px;
  font-size: 16px;
  font-weight: 700;
  font-family: 'Noto Sans JP', sans-serif;
  color: #ffffff;
  background: #1e40af;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
  text-decoration: none;
  min-width: 200px;
}
.btn-contact-submit:hover {
  background: #1e3a8a;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(30, 64, 175, 0.4);
  color: #ffffff;
}

.contact-privacy {
  font-size: 12px;
  color: #94a3b8;
  line-height: 1.7;
}
.contact-privacy a {
  color: #1e40af;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* 送信完了ページ */
.send-complete-box {
  padding: 72px 24px;
}
.send-complete-icon {
  font-size: 80px;
  color: #22c55e;
  margin-bottom: 28px;
}
.send-complete-title {
  font-size: 32px;
  font-weight: 900;
  color: #0f172a;
  margin-bottom: 20px;
}
.send-complete-msg {
  font-size: 16px;
  color: #64748b;
  line-height: 2;
  margin-bottom: 8px;
}
