/* ------------------------------------
// greeting
------------------------------------ */
.greeting {
  max-width: 1200px;
  margin-inline: auto;
  display: flex;
  justify-content: center;
  gap: 3rem;
}
.greeting .image {
  flex-basis: 25rem;
  max-width: clamp(120px, 50%, 250px);
}
@media screen and (max-width: 768px) {
  .greeting .image {
    max-width: clamp(120px, 50%, 250px);
    margin: 0 auto;
  }
}
.greeting .text {
  flex-basis: 60rem;
}
.greeting .text p {
  line-height: 1.4;
}
.greeting .text .doctor {
  text-align: right;
  margin-top: 3em;
}
.greeting .text .doctor p {
  line-height: 1.5;
}
.greeting .text .doctor p.name {
  font-size: clamp(2rem, 1.8vw, 2.2rem);
  margin-top: 0.5em;
  line-height: 1.3;
}
.greeting .text .doctor p.en {
  margin-top: 0.5em;
  font-size: clamp(1.2rem, 1.1vw, 1.4rem);
}
@media screen and (max-width: 1024px) {
  .greeting {
    display: flow-root;
  }
  .greeting .image {
    width: 45%;
    float: left;
    margin: 0 3rem 3rem 0;
  }
}
@media screen and (max-width: 768px) {
  .greeting {
    display: block;
  }
  .greeting .image {
    width: 80%;
    float: none;
    margin: 0 auto 3rem;
  }
}

/* ------------------------------------
// pdata
------------------------------------ */
#pdata {
  max-width: 1200px;
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 3.2vw, 4rem);
}
@media screen and (max-width: 768px) {
  #pdata {
    grid-template-columns: 1fr;
  }
}
#pdata > * {
  background: var(--color-white_op);
  border-radius: 1rem;
  padding: clamp(2.5rem, 4vw, 5rem) clamp(2rem, 4vw, 5rem) clamp(3rem, 4.8vw, 6rem);
}
#pdata > * h2 {
  font-size: clamp(1.8rem, 1.9vw, 2.4rem);
  font-weight: 500;
  text-align: center;
  margin-bottom: 1em;
}
#pdata > * p + * {
  margin-top: 1em;
}