/* ============================================================
   contact.css — お問い合わせページ専用
   ============================================================ */

/* ── ヒーロー ── */
.cnt-hero {
  padding-top: calc(64px + clamp(4rem, 8vw, 7rem));
  padding-bottom: clamp(4rem, 8vw, 7rem);
  padding-left: var(--pad-x);
  padding-right: var(--pad-x);
  position: relative;
  overflow: hidden;
  background: var(--navy);
}
.cnt-hero-bg { position: absolute; inset: 0; pointer-events: none; }
.cnt-hero-orb {
  position: absolute;
  top: -20%; right: -8%;
  width: clamp(300px, 50vw, 600px);
  height: clamp(300px, 50vw, 600px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(74,144,184,.18) 0%, transparent 70%);
  filter: blur(60px);
}
.cnt-hero-inner { position: relative; z-index: 1; }
.cnt-hero .breadcrumb a { color: rgba(255,255,255,.4); }
.cnt-hero .breadcrumb span { color: rgba(255,255,255,.3); }
.cnt-hero .label { color: rgba(255,255,255,.45); }

.cnt-h1 {
  font-size: clamp(1.9rem, 4.5vw, 3rem);
  font-weight: 300;
  font-family: var(--font-serif);
  color: rgba(255,255,255,.9);
  line-height: 1.35;
  margin-bottom: 1.2rem;
}
.cnt-lead {
  font-size: clamp(1rem, 1.5vw, 1.08rem);
  color: rgba(255,255,255,.65);
  font-weight: 300;
  line-height: 2;
  max-width: 520px;
  margin-bottom: 1.8rem;
}
.cnt-sub {
  display: inline-block;
  padding: 1rem 1.5rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.12);
  font-size: clamp(.92rem, 1.3vw, .98rem);
  color: rgba(255,255,255,.6);
  font-weight: 300;
  line-height: 1.9;
}
.cnt-sub strong {
  color: rgba(255,255,255,.85);
  font-weight: 400;
  font-family: var(--font-serif);
}

/* ── 相談できることカード ── */
.cnt-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
  margin-top: 2rem;
}
.cnt-card {
  padding: 1.6rem 1.5rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  display: flex;
  flex-direction: column;
  gap: .7rem;
  transition: border-color var(--transition), box-shadow var(--transition);
}
.cnt-card:hover {
  border-color: var(--blue-light);
  box-shadow: var(--shadow-sm);
}
.cnt-card-icon {
  color: var(--blue);
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--blue-pale);
  border-radius: 50%;
  flex-shrink: 0;
}
.cnt-card h3 {
  font-size: clamp(.95rem, 1.4vw, 1.05rem);
  font-weight: 400;
  color: var(--navy);
  line-height: 1.5;
}

/* ── 安心メッセージ ── */
.cnt-reassure { background: var(--off-white); }
.cnt-reassure-inner {
  padding: 0;
}
.cnt-reassure-points {
  display: flex;
  flex-direction: column;
  gap: .7rem;
  margin-top: 1.5rem;
}
.cnt-reassure-point {
  display: flex;
  align-items: center;
  gap: .9rem;
  padding: .9rem 1.2rem;
  background: var(--white);
  border: 1px solid var(--border-light);
  font-size: clamp(.9rem, 1.3vw, .97rem);
  color: var(--text-mid);
  font-weight: 300;
}
.cnt-reassure-icon {
  color: var(--blue);
  font-size: .9rem;
  font-weight: 500;
  flex-shrink: 0;
  width: 22px;
  text-align: center;
}

/* ── フォームセクション ── */
.cnt-form-section { background: var(--white); }
.cnt-form-wrap {
  margin-top: 2rem;
  border: 1px solid var(--border-light);
  background: var(--off-white);
  padding: 1.5rem;
  overflow: hidden;
}
.cnt-form-wrap iframe {
  display: block;
  width: 100%;
  min-height: 800px;
  border: none;
}

/* ── フォーム以外の導線 ── */
.cnt-alt-links {
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}
.cnt-alt-label {
  font-size: .72rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 400;
  margin-bottom: .9rem;
}
.cnt-alt-grid {
  display: flex;
  gap: .8rem;
  flex-wrap: wrap;
}
.cnt-alt-link {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .6rem 1.1rem;
  border: 1px solid var(--border-light);
  background: var(--white);
  font-size: clamp(.82rem, 1.1vw, .88rem);
  color: var(--blue);
  text-decoration: none;
  font-weight: 300;
  transition: border-color var(--transition), background var(--transition);
}
.cnt-alt-link:hover {
  border-color: var(--blue-light);
  background: var(--blue-pale);
}
.cnt-alt-link-icon { font-size: .9rem; }

/* ── 注意書き ── */
.cnt-notices {
  margin-top: 1.5rem;
  padding: 1rem 1.2rem;
  background: var(--off-white);
  border: 1px solid var(--border-light);
  display: flex;
  flex-direction: column;
  gap: .3rem;
}
.cnt-notices p {
  font-size: .76rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.7;
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .cnt-cards { grid-template-columns: 1fr; }
  .cnt-alt-grid { flex-direction: column; }
  .cnt-form-wrap { padding: .8rem; }
  .cnt-form-wrap iframe { min-height: 900px; }
}
@media (min-width: 601px) and (max-width: 768px) {
  .cnt-cards { grid-template-columns: 1fr 1fr; }
}
