/* clinic.css */
.letter-style {
    margin-top: 80px;
    max-width: 800px;
    margin: 40px auto;
    padding: 40px;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border: 1px solid #ddd;
    font-family: "Noto Serif JP", "游明朝", "Yu Mincho", "Hiragino Mincho ProN", serif;
    line-height: 1.9;
    font-size: 1.05rem;
    color: #333;
    border-radius: 8px;
  }
  
  /* ← この部分をh2ではなくpで強調表示 */
  .letter-style .title-like {
    font-size: 1.6em;
    font-weight: bold;
    text-align: center;
    margin-bottom: 1em;
    color: #333;
    border-bottom: 1px solid #ccc;
    padding-bottom: 0.3em;
    font-family: "Noto Serif JP", serif;
  }
  
  .letter-style .align-right {
    text-align: right;
    margin-top: 2em;
    font-size: 1rem;
    font-weight: bold;
  }

  @media screen and (max-width: 600px) {
    .letter-style {
    margin-top: 70px;
      font-size: 0.9rem;
      padding: 20px;
    }
  
    .letter-style .title-like {
      font-size: 1.2em;
    }
  
    .letter-style .align-right {
      font-size: 1.0rem;
      font-weight: bold;
    }
  }
  
  .profile-card {
    display: flex;
    gap: 30px;
    margin: 40px auto;
    max-width: 900px;
    align-items: flex-start;
    background: #f2f4f3;
    padding: 30px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    flex-wrap: wrap;
  }
  
  .profile-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    object-fit: cover;
    box-shadow: 0 0 8px rgba(0,0,0,0.15);
  }
  
  .profile-info {
    flex: 1;
    font-family: "Noto Sans JP", sans-serif;
  }
  
  .profile-info h3 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #2c3e50;
  }
  
  .profile-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  
  .profile-info li {
    margin-bottom: 0.5em;
    line-height: 1.5;
  }

  @media screen and (max-width: 600px) {
    .profile-card {
      flex-direction: row !important; /* ← wrapより優先 */
      flex-wrap: nowrap !important;   /* ← wrap解除 */
      align-items: flex-start;
      gap: 20px;
      padding: 20px;
    }
  
    .profile-photo {
      width: 80px;
      height: 80px;
      flex-shrink: 0;
    }
  
    .profile-info {
      flex: 1;
      margin-top: 0;
      text-align: left;
    }
  
    .profile-info h3 {
      font-size: 1.1em;
      margin-bottom: 0.5em;
    }
  
    .profile-info li {
      font-size: 0.7em;
      line-height: 1.5;
    }
  }
  
  
  
  
  @media screen and (max-width: 600px) {
    .profile-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
  
    .profile-info h3 {
      font-size: 1.5em;
    }
  
    .profile-info {
      margin-top: 0%;
    }
  }
  
  .belief-section h2 {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #2c3e50;
  }
  
  .belief-steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 15px;
  }
  
  .belief-step {
    background: #fff;
    border-left: 5px solid #29A449;
    padding: 15px 20px;
    border-radius: 8px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
    font-size: 1em;
    line-height: 1.5;
    font-weight: 500;
  }
  
  .hospital-section {
    max-width: 900px;
    margin: 60px auto;
  }
  
  .hospital-section h2 {
    font-size: 1.4em;
    margin-bottom: 1em;
    color: #2c3e50;
  }
  
  .hospital-list {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .hospital-card {
    background: #eaf2ec;
    padding: 15px 20px;
    border-radius: 10px;
    flex: 1 1 250px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95em;
  }
  
  .hospital-card i {
    color: #29A449;
    font-size: 1.2em;
  }
  