/* =====================================================
   contact.css
   コンタクト / 会社概要 — 2カラムレイアウト
   ===================================================== */

#contact { background: var(--primary); }
#contact .section-title    { color: var(--white); }
#contact .section-title-ja { color: rgba(255,255,255,.5); }
#contact .section-label    { color: var(--accent); }

/* ─── Grid ─── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  margin-top: 4rem;
  align-items: start;
}

/* ─── Left: contact list ─── */
.contact-sub-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-weight: 400;
  color: rgba(255,255,255,.8);
  margin-bottom: 1.5rem;
}
.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: .85rem;
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  transition: color .2s;
}
.contact-item:hover     { color: var(--accent); }
.contact-item svg {
  width: 16px; height: 16px;
  stroke: var(--accent);
  flex-shrink: 0;
}

/* ─── Divider ─── */
.contact-divider {
  width: 1px;
  background: rgba(200,162,75,.15);
  margin: 0 2.5rem;
}

/* ─── Right: info rows ─── */
.info-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.info-item-label {
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .3rem;
}
.info-item-value {
  font-size: .88rem;
  color: rgba(255,255,255,.6);
  line-height: 1.6;
}
.info-payment-link {
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 2px;
  transition: opacity .2s;
}
.info-payment-link:hover { opacity: .75; }
