/* ===============================================
   About Page CSS - 当院についてページ専用スタイル
   =============================================== */

/* ===============================================
   ページヒーロー（当院について用）
   =============================================== */
.page-hero--about {
  height: 300px;
  min-height: 300px;
}

/* ===============================================
   リードセクション
   =============================================== */
.section--lead {
      padding: var(--spacing-xl) 0;
}

.lead-text {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-loose);
  color: var(--color-text-light);
  text-align: left;
  max-width: 100%;
  margin: 0 auto;
}

/* ===============================================
   クリニック案内セクション
   =============================================== */
.section--clinic-info {
  padding: 0;
}

/* クリニックギャラリーグリッド */
.clinic-gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--spacing-sm);
  margin-bottom: var(--spacing-3xl);
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition-base);
  aspect-ratio: 3 / 4;
}

.gallery-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-item__caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0) 100%);
  color: white;
  padding: var(--spacing-sm);
  font-size: var(--font-size-sm);
  text-align: center;
}

/* クリニックの特徴 */
.clinic-features {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-xl);
}

.clinic-features .feature-item {
  text-align: center;
  padding: var(--spacing-lg) 0;
  border-bottom: 1px solid var(--color-border);
}

.clinic-features .feature-item:last-child {
  border-bottom: none;
}

.feature-item__icon {
  width: 60px;
  height: 60px;
  margin: 0 auto var(--spacing-md);
  background-color: var(--color-bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-item__icon i {
  font-size: var(--font-size-2xl);
  color: var(--color-primary);
}

.clinic-features .feature-item h3 {
  font-size: var(--font-size-lg);
  font-weight: 600;
  color: var(--color-primary);
  margin-bottom: var(--spacing-sm);
}

.clinic-features .feature-item p {
  font-size: var(--font-size-sm);
  line-height: var(--line-height-loose);
  color: var(--color-text-light);
}

/* ===============================================
   Business Hours Section - Cardless Design
   =============================================== */
.section--hours {
  padding: 60px 0;
}

.section--hours.bg-light {
  background-color: #f8f9fa;
}

.hours-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 600px;
  margin: 0 auto;
}

.hours-table-wrapper {
  border-bottom: 2px solid #e9ecef;
  padding-bottom: 32px;
}

.hours-table-wrapper:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.hours-service-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #333;
  margin-bottom: 24px;
  text-align: center;
}

.hours-table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
}

.hours-table th,
.hours-table td {
  padding: 16px 0;
  font-size: 1rem;
  vertical-align: top;
  border-bottom: 1px solid #e9ecef;
}

.hours-table tr:last-child th,
.hours-table tr:last-child td {
  border-bottom: none;
}

.hours-table th {
  font-weight: 600;
  color: #333;
  text-align: left;
  width: 35%;
  padding-right: 16px;
}

.hours-table td {
  line-height: 1.6;
  color: #666;
}
/* ===============================================
   アクセスセクション
   =============================================== */
.section--access {
  padding: var(--spacing-3xl) 0;
}

.access-content {
  display: grid;
  grid-template-columns: 1fr;
  gap: var(--spacing-2xl);
}

.access-content__map {
  width: 100%;
  height: 300px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.access-content__map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.access-info {
  background-color: var(--color-bg-light);
  border-radius: var(--radius-lg);
  padding: var(--spacing-lg);
}

.access-info h3 {
  font-size: var(--font-size-xl);
  color: var(--color-primary);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.access-info .info-table {
  width: 100%;
}

.access-info .info-table th,
.access-info .info-table td {
  padding: var(--spacing-md) 0;
  font-size: var(--font-size-sm);
  vertical-align: top;
  border-bottom: 1px solid var(--color-border);
}

.access-info .info-table tr:last-child th,
.access-info .info-table tr:last-child td {
  border-bottom: none;
}

.access-info .info-table th {
  font-weight: 600;
  white-space: nowrap;
  padding-right: var(--spacing-md);
  color: var(--color-text);
}

.access-info .info-table th i {
  margin-right: var(--spacing-xs);
  color: var(--color-secondary);
}

/* ===============================================
   レスポンシブ調整
   =============================================== */
@media (min-width: 430px) {
  /* PCでもスマホレイアウトを維持 */
  .clinic-gallery-grid,
  .hours-content,
  .access-content {
    max-width: 430px;
    margin: 0 auto;
  }
}

/* ===============================================
   セクション間隔の統一
   =============================================== */
.page-hero--about {
  margin-bottom: 0;
}

.section--lead {
  padding-bottom: var(--spacing-xl);
}

.section--hours {
  padding: var(--spacing-3xl) 0;
}

.section--access {
  padding: var(--spacing-3xl) 0 var(--spacing-4xl);
}
