:root {
  --color_base: #09576C;
  --color_body: #FFF9F6;
  --color_pink_01: #E95887;
  --color_pink_02: #ECA385;
  --color_red_01: #b45757;
  --color_greige_01: #E6CEC5;
  --color_orange_01: #E07D2E;
  --color_orange_02: #FF7B28;
  --color_orange_03: #FF9436;
  --color_orange_04: #FFA11F;
  --color_orange_05: #FF7F68;
  --color_yellow_01: #F4C334;
  --color_bluegreen_01: #B6D1CF;
  --headerFixedPadding: 0px;
}

/* ------------------------------------
// top
------------------------------------ */
.pagetitle img {
  width: clamp(17.7rem, 12.3vw, 17.7rem);
}

/* ------------------------------------
// .doctorSection
------------------------------------ */
.doctorSection {
  width: min(1200px, 100% - 4rem);
  margin-inline: auto;
}
@media screen and (max-width: 768px) {
  .doctorSection {
    width: min(1200px, 100% - 3rem);
  }
}
.doctorSection {
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  .doctorSection {
    padding-inline: 2rem;
  }
}
.doctorSection {
  display: grid;
  grid-template-columns: clamp(250px, 27.8vw, 40rem) 1fr;
  gap: clamp(2rem, 3.5vw, 5rem);
}
.doctorSection + .doctorSection {
  margin-top: 10rem;
}
.doctorSection .photoName {
  position: relative;
}
.doctorSection .photoName h2 {
  position: absolute;
  top: 0;
  left: 0;
  font-size: clamp(1.2rem, 1.3vw, 1.8rem);
  text-align: center;
  width: clamp(6.2rem, 6.9vw, 10rem);
  aspect-ratio: 1;
  display: grid;
  align-items: center;
  font-weight: bold;
  color: #FFF;
}
.doctorSection .photoName .name {
  text-align: center;
  margin-top: 2rem;
}
.doctorSection .photoName .name span {
  font-size: 80%;
}
.doctorSection .profile .message {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
}
.doctorSection .profile .message p + p {
  margin-top: 2em;
}
.doctorSection .profile .status {
  margin-top: 2rem;
  font-size: clamp(1.8rem, 1.5vw, 2.2rem);
  font-weight: 500;
  background: #FFF;
  border-radius: 2rem;
  padding: clamp(1rem, 1.4vw, 2rem);
}
.doctorSection .history {
  background: #FFF;
  padding: clamp(1rem, 1.4vw, 2rem);
  border-radius: 2rem;
  margin-top: 2rem;
}
.doctorSection .history h4 {
  font-weight: 500;
}
.doctorSection .history dl {
  font-size: clamp(1.4rem, 1.1vw, 1.6rem);
  margin-top: 2rem;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 2rem;
}
@media screen and (max-width: 768px) {
  .doctorSection {
    display: grid;
    grid-template-columns: 1fr;
  }
  .doctorSection .photoName {
    width: fit-content;
    margin: 0 auto;
  }
  .doctorSection .photoName h2 {
    position: absolute;
    top: 0;
    left: 0;
    font-size: clamp(1.4rem, 4.3vw, 1.6rem);
    text-align: center;
    width: clamp(6.2rem, 21.3vw, 8rem);
    aspect-ratio: 1;
    display: grid;
    align-items: center;
    font-weight: bold;
    color: #FFF;
  }
  .doctorSection .photoName .photo {
    max-width: 320px;
    margin: 0 auto;
  }
}