@charset "UTF-8";

/* ==========================================================================
   Layout & Common
   ========================================================================== */
.container-wide { max-width: 1200px; margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: 850px; margin: 0 auto; padding: 0 40px; }
.bg-sub { background-color: var(--bg-light); }

/* ==========================================================================
   Pro Header (共通スタイル)
   ========================================================================== */
.pro-header {
  background-color: #ffffff;
  padding: 160px 0 60px;
  border-bottom: 1px solid #f0f0f0;
}
.pro-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 700;
  color: var(--main-color);
  margin: 15px 0;
}
.pro-subtitle {
  font-size: 18px;
  color: var(--text-muted);
  font-weight: 500;
}

/* ==========================================================================
   Contact Content Area
   ========================================================================== */
.contact-main {
  padding: 100px 0;
}

.contact-block {
  margin-bottom: 80px;
}
.contact-block:last-child {
  margin-bottom: 0;
}

.index-number {
  display: block;
  font-family: 'Montserrat', sans-serif;
  font-size: 13px;
  font-weight: 800;
  color: var(--accent-color);
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}

.contact-type {
  font-size: 24px;
  color: var(--main-color);
  margin-bottom: 30px;
  font-weight: 700;
}

/* ==========================================================================
   Contact Card Design
   ========================================================================== */
.contact-pro-card {
  background-color: #ffffff;
  padding: 50px;
  border-radius: 4px;
  box-shadow: 0 15px 40px rgba(0,0,0,0.04);
  border: 1px solid #eef2f5;
  transition: transform 0.3s ease;
}

.contact-pro-card.accent {
  border-left: 5px solid var(--accent-color);
}

.org-name {
  font-size: 20px;
  font-weight: 700;
  color: var(--main-color);
  margin-bottom: 30px;
  border-bottom: 1px solid #f0f0f0;
  padding-bottom: 20px;
}

.detail-row {
  display: flex;
  margin-bottom: 15px;
}

.detail-row .label {
  width: 140px;
  flex-shrink: 0;
  font-family: 'Montserrat', sans-serif;
  font-size: 11px;
  font-weight: 800;
  color: var(--text-muted);
  padding-top: 6px;
}

.detail-row p {
  font-size: 16px;
  color: var(--text-main);
  line-height: 1.6;
}

/* 電話番号の強調 */
.tel-row {
  align-items: center;
  margin-top: 25px;
}
.tel-number {
  font-family: 'Montserrat', sans-serif;
  font-size: 32px;
  font-weight: 800;
  color: var(--main-color);
  text-decoration: none;
  transition: color 0.3s ease;
}
.tel-number:hover {
  color: var(--accent-color);
}

.card-note {
  margin-top: 30px;
  padding: 20px;
  background-color: var(--bg-light);
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.6;
  border-radius: 4px;
}

.text-link {
  color: var(--accent-color);
  font-weight: 700;
  text-decoration: none;
  font-size: 15px;
  border-bottom: 1px solid var(--accent-color);
  transition: opacity 0.3s;
}
.text-link:hover {
  opacity: 0.7;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 768px) {
  .contact-pro-card {
    padding: 30px 20px;
  }
  .detail-row {
    flex-direction: column;
  }
  .detail-row .label {
    width: 100%;
    margin-bottom: 5px;
  }
  .tel-number {
    font-size: 26px;
  }
  .contact-main {
    padding: 60px 0;
  }
}