/* ============================================================
 * contact.css — ライズカンパニー お問い合わせページ
 * ============================================================ */

/* #page-hero */
#page-hero {
  position: relative;
  height: 280px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) { #page-hero { height: 360px; } }

#page-hero .page-hero-bg { position: absolute; inset: 0; }
#page-hero .page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
#page-hero .page-hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(230,126,0,.85) 0%, rgba(34,34,34,.7) 100%);
}
#page-hero .page-hero-inner { position: relative; z-index: 1; padding: 24px 0; }
#page-hero .page-hero-en {
  font-size: 12px; font-weight: 700; letter-spacing: .28em;
  color: rgba(255,255,255,.65); margin-bottom: 10px;
}
#page-hero .page-hero-title {
  font-size: 32px; font-weight: 900; color: #fff; line-height: 1.25; margin-bottom: 20px;
}
@media (min-width: 768px) { #page-hero .page-hero-title { font-size: 48px; } }

#page-hero .breadcrumb-nav .breadcrumb-list {
  display: flex; align-items: center; list-style: none; padding: 0; margin: 0;
}
#page-hero .breadcrumb-nav .breadcrumb-list li {
  font-size: 12px; color: rgba(255,255,255,.65);
}
#page-hero .breadcrumb-nav .breadcrumb-list li::after {
  content: '/'; margin: 0 6px; opacity: .5;
}
#page-hero .breadcrumb-nav .breadcrumb-list li:last-child::after { display: none; }
#page-hero .breadcrumb-nav .breadcrumb-list li a {
  color: rgba(255,255,255,.65); text-decoration: none; transition: color .2s;
}
#page-hero .breadcrumb-nav .breadcrumb-list li a:hover { color: #fff; }

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

/* 電話カード */
.contact-tel-card {
  background: #fff;
  border-radius: 14px;
  border-top: 4px solid #f39800;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 36px 32px;
  text-align: center;
  margin-bottom: 32px;
}
.contact-card-en {
  font-size: 11px; font-weight: 700; letter-spacing: .2em;
  color: #f39800; margin-bottom: 8px;
}
.contact-card-lead {
  font-size: 16px; font-weight: 700; color: #222; margin-bottom: 16px;
}
.contact-tel-number {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 38px; font-weight: 900; color: #f39800;
  text-decoration: none; letter-spacing: .04em; line-height: 1;
  margin-bottom: 10px;
  transition: opacity .2s;
}
@media (min-width: 768px) { .contact-tel-number { font-size: 46px; } }
.contact-tel-number i { font-size: 28px; }
.contact-tel-number:hover { opacity: .75; color: #f39800; }
.contact-hours { font-size: 13px; color: #888; }

/* フォームカード */
.contact-form-card {
  background: #fff;
  border-radius: 14px;
  border-top: 4px solid #f39800;
  box-shadow: 0 4px 24px rgba(0,0,0,.08);
  padding: 36px 32px 44px;
}
@media (max-width: 767px) { .contact-form-card { padding: 24px 18px 32px; } }

/* Bootstrap form-control 微調整 */
.contact-form-card .form-control {
  padding: 11px 14px;
  font-size: 14px;
  font-family: 'Noto Sans JP', sans-serif;
  border-color: #d8d8d8;
  border-radius: 6px;
  transition: border-color .2s, box-shadow .2s;
}
.contact-form-card .form-control:focus {
  border-color: #f39800;
  box-shadow: 0 0 0 3px rgba(243,152,0,.15);
}
.contact-form-card .form-label { font-size: 14px; margin-bottom: 6px; }

/* アクセント色 ラジオ */
.contact-form-card .form-check-input:checked {
  background-color: #f39800;
  border-color: #f39800;
}

/* 送信ボタン */
.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: #fff;
  background: #f39800;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background .25s, transform .2s, box-shadow .25s;
  text-decoration: none;
}
.btn-contact-submit:hover {
  background: #e67e00;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(243,152,0,.4);
  color: #fff;
}

.contact-privacy {
  font-size: 12px;
  color: #888;
  line-height: 1.7;
}

/* 送信完了 */
.send-complete-box {
  padding: 64px 24px;
}
.send-complete-icon {
  font-size: 72px;
  color: #4caf50;
  margin-bottom: 24px;
}
.send-complete-title {
  font-size: 32px;
  font-weight: 900;
  color: #222;
  margin-bottom: 20px;
}
.send-complete-msg {
  font-size: 16px;
  color: #555;
  line-height: 2;
  margin-bottom: 8px;
}

.is-current { color: #f39800 !important; font-weight: 700; }
