main.clinic-info h1 {
    margin-top: 80px;
  }

  table th {
    background-color: #29A449;
  }

.photo-category {
    margin-bottom: 60px;
  }
  
  .photo-category h2 {
    font-size: 1.5em;
    color: #29A449;
    border-left: 6px solid #29A449;
    padding-left: 10px;
    margin-bottom: 20px;
  }
  
  .photo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px;
  }
  
  .photo-grid figure {
    margin: 0;
    text-align: center;
  }
  
  .photo-grid img {
    width: 100%;
    height: 180px; /* ★高さを固定 */
    object-fit: cover; /* 画像の中心を切り取って表示 */
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: transform 0.2s ease;
  }
  
  .photo-grid img:hover {
    transform: scale(1.03);
  }
  
  .photo-grid figcaption {
    margin-top: 10px;
    font-size: 0.9em;
    font-weight: bold;
    color: #ffffff;
    background-color: #29A449;
    padding: 6px 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.06);
    display: inline-block;
    transition: background-color 0.3s ease;
  }
  
  .photo-grid figure:hover figcaption {
    background-color: #dff5e9;
  }
