/* Contact Hero */
.contact-hero {
  background-color: var(--primary);
  overflow: hidden;
}
.contact-hero-inner {
  display: flex;
  align-items: stretch;
  max-width: 1280px;
  margin: 0 auto;
}
.contact-hero-photo {
  flex: 0 0 50%;
  position: relative;
  overflow: hidden;
}
.contact-hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 400px;
}
.contact-hero-content {
  flex: 1;
  padding: 56px 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.contact-hero-catch {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 24px;
  opacity: .9;
}
.contact-hero-tel-box {
  background-color: rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}
.contact-hero-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2px;
  opacity: .8;
  margin-bottom: 8px;
}
.contact-hero-tel {
  display: block;
  font-size: 44px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: 2px;
  line-height: 1.2;
}
.contact-hero-tel:hover { opacity: .8; }
.contact-hero-sms {
  font-size: 14px;
  opacity: .7;
  margin-top: 8px;
}
.contact-hero-hours {
  display: flex;
  gap: 24px;
  font-size: 14px;
  opacity: .8;
  margin-bottom: 16px;
}
.contact-hero-tip {
  font-size: 13px;
  opacity: .6;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,.15);
}

/* Merits */
.contact-merits {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.contact-merit {
  background-color: var(--white);
  border-radius: 16px;
  padding: 40px 24px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  transition: transform var(--transition), box-shadow var(--transition);
}
.contact-merit:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 32px rgba(0,0,0,.1);
}
.contact-merit-icon {
  width: 72px;
  height: 72px;
  background-color: var(--primary);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--white);
}
.contact-merit h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 12px;
}
.contact-merit p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}

/* Flow */
.contact-flow {
  max-width: 600px;
  margin: 0 auto;
}
.contact-flow-step {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  background-color: var(--white);
  border-radius: 16px;
  padding: 28px 32px;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
}
.contact-flow-num {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background-color: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  font-weight: 900;
  box-shadow: 0 4px 12px rgba(48,117,183,.3);
}
.contact-flow-body h3 {
  font-size: 18px;
  font-weight: 900;
  color: var(--text);
  margin-bottom: 4px;
}
.contact-flow-body p {
  font-size: 14px;
  color: var(--text);
  line-height: 1.7;
}
.contact-flow-arrow {
  text-align: center;
  padding: 12px 0;
}

/* Contact Disclaimer */
.contact-disclaimer {
  margin-top: 24px;
  padding: 16px 20px;
  background-color: var(--light);
  border-radius: var(--radius);
  font-size: 12px;
  color: var(--text-sub);
  line-height: 1.7;
}

/* SP */
@media (max-width: 768px) {
  .contact-hero-inner { flex-direction: column; }
  .contact-hero-photo { flex: none; }
  .contact-hero-photo img { min-height: 240px; }
  .contact-hero-content { padding: 32px 20px; }
  .contact-hero-tel { font-size: 32px; }
  .contact-hero-hours { flex-direction: column; gap: 4px; }
  .contact-merits { grid-template-columns: 1fr; }
  .contact-flow-step { padding: 20px; }
}
