/* ════════════════════════════════════
   お問い合わせページ固有スタイル
════════════════════════════════════ */

/* ── LAYOUT ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 5rem;
  align-items: start;
}
.contact-form-title { margin-bottom: 1.25rem; }

/* ── INQUIRY TYPE PILLS ── */
.inquiry-types { display: flex; flex-wrap: wrap; gap: .6rem; margin-bottom: 2rem; }
.inq-type {
  display: inline-flex; align-items: center; gap: .4rem;
  background: rgba(88,195,232,.08);
  border: 1px solid rgba(88,195,232,.15);
  color: var(--teal);
  font-size: .78rem; font-weight: 700;
  padding: .35rem .9rem; border-radius: 100px;
}

/* ── FORM ── */
.contact-form { margin-top: 1rem; }
.form-group { margin-bottom: 1.5rem; }
.form-row-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.form-label {
  display: block;
  font-size: .875rem; font-weight: 700;
  color: var(--text); margin-bottom: .5rem;
}
.form-label span { color: var(--red); font-size: .75rem; margin-left: .3rem; }
.form-input,
.form-textarea,
.form-select {
  width: 100%;
  padding: .8rem 1.1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: 10px;
  font-size: .9375rem; font-family: inherit;
  color: var(--text);
  background: var(--white);
  transition: border-color .2s, box-shadow .2s;
  outline: none;
}
.form-input:focus,
.form-textarea:focus,
.form-select:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(88,195,232,.12);
}
.form-textarea { min-height: 160px; resize: vertical; }
.form-select {
  appearance: none;
  cursor: pointer;
  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 d='M1 1l5 5 5-5' stroke='%2394a3b8' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.form-radio {
  display: flex; align-items: center; gap: .7rem;
  cursor: pointer; font-size: .9rem; color: var(--text);
}
.form-radio input[type="checkbox"] { width: 18px; height: 18px; accent-color: var(--teal); cursor: pointer; }
.form-hint { font-size: .78rem; color: var(--text-muted); margin-top: .4rem; }
.contact-hint { text-align: center; margin-top: 1rem; }
.form-submit {
  width: 100%; padding: 1rem;
  background: var(--teal); color: var(--text);
  border: none; border-radius: 100px;
  font-size: 1rem; font-weight: 700;
  cursor: pointer; font-family: inherit;
  transition: all .2s;
  box-shadow: 0 4px 18px rgba(88,195,232,.35);
}
.form-submit:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 26px rgba(88,195,232,.45);
}

/* ── SIDEBAR CARD ── */
.contact-info-card {
  background: var(--navy);
  border-radius: var(--r-lg); padding: 2.25rem;
  position: sticky; top: 100px;
}
.contact-info-title {
  font-size: 1rem; font-weight: 800;
  color: var(--text); margin-bottom: 1.75rem;
}
.line-btn {
  display: flex; align-items: center; gap: .75rem;
  background: #06c755; color: var(--white);
  border-radius: 12px; padding: 1rem 1.25rem;
  font-weight: 700; font-size: .9rem;
  text-decoration: none;
  transition: all .2s; margin-bottom: 1.75rem;
}
.line-btn:hover { background: #05b24c; transform: translateY(-2px); }
.line-btn-icon { font-size: 1.4rem; display: flex; align-items: center; }
.line-btn-sub { font-size: .75rem; font-weight: 400; opacity: .75; margin-top: .15rem; }
.info-item {
  display: flex; gap: 1rem; margin-bottom: 1.75rem;
}
.info-item--last { margin-bottom: 0; }
.info-icon {
  flex-shrink: 0; width: 40px; height: 40px;
  border-radius: 10px; background: rgba(88,195,232,.12);
  display: flex; align-items: center; justify-content: center;
  color: var(--teal);
}
.info-label { font-size: .75rem; font-weight: 800; letter-spacing: .1em; color: var(--gray-400); margin-bottom: .3rem; }
.info-val   { font-size: .9rem; color: var(--text); font-weight: 600; }
.info-sub   { font-size: .78rem; color: var(--gray-400); margin-top: .2rem; }
.info-divider { height: 1px; background: rgba(88,195,232,.1); margin: 1.75rem 0; }
.info-links-heading {
  font-size: .8rem; font-weight: 800; letter-spacing: .1em;
  color: var(--gray-400); margin-bottom: 1rem;
}
.info-links { display: flex; flex-direction: column; gap: .6rem; }
.info-link {
  font-size: .875rem; color: var(--text-muted);
  text-decoration: none;
  transition: color .18s;
}
.info-link:hover { color: var(--teal); }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .contact-info-card { position: static; }
}
@media (max-width: 600px) {
  .form-row-2 { grid-template-columns: 1fr; gap: .75rem; }
  .contact-info-card { padding: 1.5rem; }
  .inq-type { font-size: .72rem; padding: .3rem .7rem; }
}
