@charset "UTF-8";
: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(21.3rem, 14.8vw, 21.3rem);
}

/* ------------------------------------
// #leadBlock
------------------------------------ */
#leadBlock {
  display: grid;
  grid-template-columns: min(40%, 600px) 1fr;
  gap: clamp(1rem, 1.4vw, 2rem);
  margin: 5rem 0 5rem 0;
  grid-template-areas: "photo text";
  padding-right: var(--headerFixedPadding);
  align-items: center;
}
#leadBlock .text {
  grid-area: text;
}
#leadBlock .photo {
  grid-area: photo;
}
#leadBlock h2 {
  margin-bottom: 4rem;
  font-size: clamp(1.8rem, 2.2vw, 3.2rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
}
#leadBlock p + p {
  margin-top: 2em;
}
@media screen and (max-width: 1024px) {
  #leadBlock {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-areas: "text" "photo";
  }
  #leadBlock .text {
    padding-inline: 2rem;
  }
  #leadBlock .photo {
    max-width: 320px;
    margin: 0 auto 0 0;
  }
}

/* ------------------------------------
// entry
------------------------------------ */
#entry {
  background: #FFF;
  position: relative;
  z-index: 0;
  padding-top: 9.7222222222vw;
  padding-bottom: 6.9444444444vw;
  padding-right: var(--headerFixedPadding);
  padding-left: clamp(2rem, (100% - 1200px) / 2, var(--headerFixedPadding));
}
@media screen and (max-width: 768px) {
  #entry {
    padding-inline: 2rem;
  }
}
#entry {
  margin-top: 5rem;
  margin-bottom: calc(6.9444444444vw + 3rem);
}
#entry::before {
  content: "";
  width: 100vw;
  height: 9.7222222222vw;
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  background: var(--color_body) url(/lib/img/cmn/bg_whitewave_01.webp) no-repeat center bottom/cover;
}
#entry::after {
  content: "";
  width: 100vw;
  height: 6.9444444444vw;
  display: block;
  position: absolute;
  left: 0;
  top: calc(100% - 1px);
  background: url(/lib/img/cmn/bg_whitewave_02.webp) no-repeat center top/cover;
}
#entry > * {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  #entry::before {
    bottom: calc(100% - 2px);
  }
}
#entry h2 {
  text-align: center;
  margin-bottom: 2rem;
  font-size: clamp(2.4rem, 3.2vw, 4.6rem);
  font-weight: 500;
  letter-spacing: 0.14em;
  text-indent: 0.14em;
}
#entry > .lead {
  text-align: center;
}
#entry .entryDetail {
  border: 1px solid var(--color_category);
  border-radius: 30px;
  margin-top: 3rem;
}
#entry .entryDetail h3 {
  color: #FFF;
  background: var(--color_category);
  padding: clamp(1rem, 0.7vw, 1rem) clamp(1.5rem, 3.5vw, 5rem);
  border-radius: 29px;
  font-weight: bold;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}
#entry .entryDetail h3:after {
  content: "＋";
  color: var(--color_category);
  font-weight: 800;
  font-size: clamp(1rem, 2.5vw, 3.6rem);
  line-height: 1;
  border-radius: 50vh;
  background: #FFF;
  aspect-ratio: 1;
  position: relative;
  width: 3.6rem;
  display: grid;
  align-items: center;
  text-align: center;
}
#entry .entryDetail h3.current {
  border-radius: 29px 29px 0 0;
}
#entry .entryDetail h3.current::after {
  content: "ー";
}
#entry .entryDetail .detail {
  display: none;
  padding: clamp(1rem, 1.4vw, 2rem) clamp(1.5rem, 3.5vw, 5rem);
}
#entry .entryDetail .detail dl {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 2rem clamp(2rem, 2.8vw, 4rem);
}
#entry .entryDetail .detail dl dt {
  font-weight: bold;
}
#entry .entryDetail .detail .contact {
  width: fit-content;
  margin: 3rem auto;
}
#entry .entryDetail .detail .contact > div {
  margin: 2rem auto;
}
#entry .entryDetail .detail .contact .telbtn a {
  color: #FFF;
  background: var(--color_base);
  border-radius: 50vh;
  padding: 1rem 1.5rem;
  text-align: center;
  display: block;
}
#entry .entryDetail .detail .contact .telbtn a span {
  display: inline-block;
  font-size: 80%;
}
@media screen and (max-width: 768px) {
  #entry .entryDetail .detail dl {
    display: grid;
    grid-template-columns: 1fr;
  }
  #entry .entryDetail .detail dl dt {
    border-top: 1px solid var(--color_category);
    border-bottom: 1px solid var(--color_category);
  }
}
#entry #nurse {
  --color_category: #ECA385;
}
#entry #assistantNurse {
  --color_category: #B6D1CF;
}
#entry #officer {
  --color_category: #F4C334;
}