/* ===== 見出し関係 ===== */

.section-label {
  font-weight: bold;
  font-size: 0.9rem;
  color: #f48c06;
  margin-bottom: 0.3rem;
}

.section-title {
  font-weight: 300;
  font-size: 1.5rem;
  margin: 0;
}

.intro-section {
  text-align: center;
  padding: 4rem 1rem 2rem;
}

/* ===== 診療スタイル ===== */

.services-section {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  padding: 2rem 1rem;
}

.service-box {
  background-color: #fff3e0;
  padding: 1.5rem;
  text-align: center;
  max-width: 300px;
  text-decoration: none;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  color: inherit; /* テキスト色が青くならないように */
}

.service-box:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}


.service-box img {
  width: 100%;
  height: auto;
  margin-bottom: 1rem;
}

.service-title {
  color: #d87b00;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0.5rem 0;
}

/* ===== リハビリボタン ===== */

.rehab-section {
  display: flex ;
  flex-direction: column;
  gap: 2rem;
  padding: 0 1rem 4rem;
  max-width: 900px;
  margin: auto;
}

.rehab-image-link {
  width: 80%; 
  height: auto;
  border-radius: 8px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
  margin: 0 auto; 
}


.rehab-image-link:hover {
  transform: scale(1.02);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

@media (max-width: 768px) {
  .rehab-image-link {
    width: 90%; /* スマホでは大きめに */
  }
}
