/*--------------------------------------*
 * foundation
 *--------------------------------------*/
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
}

body {
  background-color: #FBFBFB;
  color: #525252;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 1.6;
  letter-spacing: 0.04em;
  font-weight: 300;
  min-width: 350px;
  width: 100%;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  border: none;
  display: block;
}

a {
  transition: transform 0.1s ease;
}
a:hover, a:active {
  transform: translateY(2px);
}

.fade {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade.is-show {
  opacity: 1;
  transform: translateY(0);
}

/*--------------------------------------*
* layaout
*--------------------------------------*/
.l-footer {
  position: relative;
  padding: 104px 0 32px;
  background: #ffffff;
}
.l-footer__inner {
  width: min(90%, 1152px);
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
.l-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  color: #525252;
  font-family: "Noto Serif JP", serif;
  font-size: 1.5rem;
  text-align: center;
}
.l-footer__brandIcon {
  width: 104px;
  height: 104px;
}
.l-footer__brand small {
  display: block;
  margin-top: 2px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.03em;
}
.l-footer__contact {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.l-footer__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #525252;
}
.l-footer__tel span {
  font-size: 1.4rem;
  line-height: 1.5;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
.l-footer__tel strong {
  font-size: 2.8rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  white-space: nowrap;
  font-family: "Noto Serif JP", serif;
}
.l-footer__menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 28px;
  font-size: 1.4rem;
}
.l-footer__copyright {
  display: block;
  margin-top: 80px;
  color: #D2D2D2;
  font-size: 1.2rem;
  text-align: center;
}
@media (min-width: 1100px) {
  .l-footer {
    padding-top: 150px;
  }
  .l-footer__inner {
    width: min(80%, 1152px);
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 80px;
    row-gap: 32px;
    align-items: end;
  }
  .l-footer__brand {
    grid-row: span 2;
    align-self: center;
  }
  .l-footer__contact {
    flex-direction: row;
    justify-content: flex-end;
    gap: 28px;
  }
  .l-footer__tel {
    flex-direction: row;
    gap: 24px;
  }
  .l-footer__tel strong {
    font-size: 3.2rem;
  }
  .l-footer__menu {
    justify-content: flex-end;
    gap: 40px;
    font-size: 1.6rem;
  }
  .l-footer__copyright {
    margin-top: 120px;
  }
}

small {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
}

.l-topBtn {
  display: flex;
  align-items: center;
  flex-direction: column;
  font-size: 1.4rem;
  color: #27B3AA;
  position: absolute;
  right: 5%;
  top: -80px;
}
@media (min-width: 1100px) {
  .l-topBtn {
    right: max(5%, (100% - 1152px) / 2);
    top: -96px;
  }
}

.l-header {
  position: relative;
  z-index: 20;
  background: #ffffff;
}
.l-header__inner {
  min-height: 76px;
  width: 100%;
  margin: 0;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-header__logo {
  display: block;
  width: min(48vw, 348px);
}
.l-header__actions {
  display: flex;
  align-items: center;
  gap: 0;
}
.l-header__utility {
  display: none;
}
@media (min-width: 1100px) {
  .l-header__inner {
    width: 100%;
    min-height: 87px;
    padding: 10px 24px;
  }
  .l-header__actions {
    gap: 24px;
  }
  .l-header__utility {
    display: flex;
    align-items: center;
    gap: 28px;
  }
  .l-header__tel {
    display: flex;
    align-items: center;
    gap: 24px;
    color: #525252;
    font-family: "Noto Serif JP", serif;
  }
  .l-header__tel span {
    font-size: 1.6rem;
    line-height: 1.6;
    text-align: center;
  }
  .l-header__tel strong {
    font-size: 3.2rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    white-space: nowrap;
  }
}

.l-nav {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  width: 100%;
  min-height: 0;
  padding: 72px 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #ffffff;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
.l-nav.is-open {
  right: 0;
  opacity: 1;
  visibility: visible;
}
.l-nav ul {
  display: flex;
  width: 100%;
  flex-direction: column;
}
.l-nav ul li {
  height: auto;
  min-height: 48px;
  border-bottom: 0;
}
.l-nav ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
.l-nav ul li a:hover, .l-nav ul li a:focus {
  color: #27B3AA;
}
.l-nav .sub-menu {
  position: static;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding-left: 16px;
}
.l-nav__contact {
  width: 100%;
  margin: 0 0 24px;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid #e5e5e5;
}
.l-nav__reservationNote {
  margin: 8px 0 0;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: center;
}

.l-nav__tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #525252;
  font-family: "Noto Serif JP", serif;
}
.l-nav__tel span {
  font-size: 1.3rem;
}
.l-nav__tel strong {
  font-size: 2.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
}
.l-nav__sns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-top: 8px;
}
.l-nav__sns img {
  width: 24px;
  height: 24px;
}
@media (min-width: 1100px) {
  .l-nav {
    right: -100%;
    width: min(420px, 100%);
    min-height: 100vh;
    padding: 120px 48px 48px;
    justify-content: flex-start;
    opacity: 1;
    visibility: visible;
    transition: right 0.3s ease;
  }
  .l-nav ul {
    gap: 0;
  }
  .l-nav.is-open {
    right: 0;
  }
  .l-nav__contact {
    display: none;
  }
}

/*--------------------------------------*
* projecct
*--------------------------------------*/
.p-home {
  overflow: hidden;
}

.p-header {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  width: 100%;
  height: 100vh;
  margin-bottom: 0;
  background: url("../img/bg.svg") no-repeat left center/auto 80%;
}

.p-ttl {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  gap: 24px;
  padding-bottom: 30%;
}

.p-ttl h1 {
  visibility: hidden;
}

.p-ttl > img {
  width: 90%;
  max-width: 484px;
}

.p-ttl__info {
  width: fit-content;
  padding: 24px 48px;
  border-radius: 24px;
  background: #ffffff;
  box-shadow: -1px 1px 2px rgba(180, 180, 180, 0.2), 1px -1px 2px rgba(180, 180, 180, 0.2), -1px -1px 2px rgba(250, 250, 250, 0.9), 1px 1px 2px rgba(250, 250, 250, 0.9);
  font-size: 1.8rem;
  text-align: center;
}

.p-ttl__info__emp {
  margin: 8px 0 16px;
  color: #27B3AA;
  font-size: 1.8rem;
}

.p-ttl__info__small {
  font-size: 1.4rem;
}

.p-ttl__info__small a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: underline;
}

.p-ttl__info__small a:hover, .p-ttl__info__small a:active {
  color: #27B3AA;
}

.p-ttl__info img {
  width: 24px;
  height: 24px;
}

.p-mv {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 0;
  width: 90vw;
}

.p-mv img {
  height: 320px;
  border-radius: 0 20px 20px 0;
  object-fit: cover;
}

.p-message {
  letter-spacing: 0.08em;
}

.p-message__ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
  font-size: 2rem !important;
}

.p-message__ttl::after {
  width: 10px;
  height: 42px;
  content: "";
  background: url("../img/icon-ttl.svg") no-repeat;
}

.p-message__content {
  width: 90%;
  max-width: 800px;
  margin: 0 auto 108px;
  padding: 48px 16px;
  border-radius: 40px;
  background: #ffffff;
  font-family: "Noto Serif JP", serif;
  text-align: center;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
}

.p-message__copy {
  margin-bottom: 40px;
  font-size: 2.4rem;
}

.p-departments {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 48px;
  margin-bottom: 80px;
  padding: 48px 0;
  background: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
}

.p-departments h2 {
  font-size: 2.4rem;
}

.p-departments p {
  font-size: 1.8rem;
}

.p-departments .c-sectionHeading {
  margin-bottom: 0;
}

.p-info {
  margin-bottom: 160px;
}

.p-info h2 {
  margin-bottom: 64px;
  font-size: 2.4rem;
}

.p-info__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 90%;
  max-width: 1100px;
  gap: 16px;
  margin: 0 auto 72px;
}

.p-info__item__content {
  width: 100%;
  white-space: nowrap;
}

.p-info__item__txt, .p-info__item h3 {
  font-size: 1.8rem;
}

.p-info__item__img {
  width: 100%;
  min-width: 0;
}

.p-info__item__img iframe {
  width: 100%;
  max-width: 480px;
  aspect-ratio: 16/9;
}

.p-info__item div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.p-info__item-schedule img {
  max-width: 720px;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
}

.p-info__item-access {
  flex-direction: column-reverse;
  padding-left: 0;
}

.p-info__item-access .p-info__item__txt {
  margin-bottom: 16px;
}

.p-homeHero {
  width: min(100%, 1440px);
  margin: 0 auto 72px;
  display: grid;
  grid-template-columns: 1fr;
  background: #FBFBFB;
}

.p-homeHero__copy {
  min-height: 300px;
  padding: 72px 8%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 32px;
  background: url("../img/logo-icon.svg") no-repeat -100px center/330px;
}

.p-homeHero__copy > img {
  width: min(80%, 400px);
}

.p-homeHero__opening {
  padding: 20px 32px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
  text-align: center;
}

.p-homeHero__opening span, .p-homeHero__opening strong {
  display: block;
}

.p-homeHero__opening span {
  font-size: 1.3rem;
}

.p-homeHero__opening strong {
  margin-top: 8px;
  color: #27B3AA;
  font-size: 1.8rem;
}

.p-homeHero__image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: 0 0 0 40px;
}

.p-homeTopics {
  width: min(90%, 1152px);
  margin: 0 auto 108px;
  display: grid;
  gap: 24px;
}

.p-homeTopics__card {
  padding: 32px 24px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
  text-align: center;
}

.p-homeTopics__card h2 {
  margin-bottom: 24px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
}

.p-homeTopics__list {
  text-align: left;
}

.p-homeTopics__list a {
  display: flex;
  gap: 16px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(210, 210, 210, 0.6);
}

.p-homeTopics__list time {
  flex: 0 0 120px;
}

.p-homeTopics__list span {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-homeSection {
  width: min(90%, 1152px);
  margin: 0 auto 120px;
  text-align: center;
}

.p-homeSection__eyebrow {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 24px;
}

.p-homeSection__eyebrow::after {
  content: "";
  width: 2px;
  height: 20px;
  margin-top: 6px;
  background: #27B3AA;
}

.p-home .p-message__content {
  margin: 0 auto 160px;
}

.p-home .p-departments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  margin-bottom: 104px;
  padding: 28px 5%;
  background: #ffffff;
}

.p-homeDoctor .p-homeSection__ttl {
  margin-bottom: 48px;
  font-size: 3.2rem;
}

.p-home__recruit {
  margin-top: 64px;
  padding: 72px 5%;
  background: linear-gradient(rgba(39, 179, 170, 0.84), rgba(39, 179, 170, 0.84)), url("../img/AdobeStock_513443324.jpeg") -10% 26%/120%;
  color: #ffffff;
  text-align: center;
}

.p-home__recruit__en {
  font-size: clamp(4rem, 8vw, 8rem);
  line-height: 1;
  letter-spacing: 0.08em;
}

.p-home__recruit__copy {
  margin-top: 16px;
}

@media (min-width: 768px) {
  .p-homeHero {
    grid-template-columns: 1fr 1fr;
  }
  .p-homeHero__copy, .p-homeHero__image img {
    min-height: 400px;
    height: 100%;
  }
  .p-homeTopics {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .p-header {
    flex-direction: row;
    align-items: center;
    height: 600px;
    margin-bottom: 108px;
  }
  .p-ttl {
    width: 50%;
    gap: 20px;
    padding-bottom: 0;
  }
  .p-ttl__info {
    padding: 24px 48px;
    border-radius: 32px;
  }
  .p-mv {
    position: static;
    width: 50%;
    height: 100%;
  }
  .p-mv img {
    width: 100%;
    height: 100%;
    border-radius: 0 0 0 40px;
  }
  .p-message__content {
    padding: 48px 40px;
  }
  .p-message__copy {
    font-size: 3.2rem;
  }
  .p-departments {
    gap: 200px;
  }
  .p-info__item {
    flex-direction: row;
  }
  .p-info__item__content {
    flex: 0 0 auto;
    width: unset;
  }
  .p-info__item__img {
    flex: 1 1 auto;
    width: unset;
  }
  .p-info__item-access {
    flex-direction: row;
    padding-left: 16px;
  }
  .p-info__item-access .p-info__item__img {
    flex: 0 1 480px;
  }
  .p-homeHero {
    margin-bottom: 96px;
  }
  .p-homeHero__copy, .p-homeHero__image img {
    min-height: 500px;
  }
  .p-homeTopics__card {
    padding: 40px;
  }
  .p-homeSection {
    margin-bottom: 160px;
  }
  .p-home .p-info__item-schedule .p-info__item__img {
    flex: 0 1 720px;
    max-width: 720px;
  }
  .p-home .p-info__item-schedule .p-info__item__content {
    flex: 0 0 300px;
    width: 300px;
    white-space: normal;
  }
}
.p-archivePage {
  width: min(90%, 1152px);
  margin: 0 auto 160px;
  padding-top: 64px;
}

.p-breadcrumb {
  display: flex;
  gap: 20px;
  margin-bottom: 72px;
  color: #D2D2D2;
  font-size: 1.4rem;
}

.p-breadcrumb span:last-child {
  color: #27B3AA;
}

.p-archiveTabs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 40px;
  border-bottom: 1px solid #D2D2D2;
}

.p-archiveTabs__item {
  padding: 16px 12px;
  border-bottom: 2px solid transparent;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  text-align: center;
}

.p-archiveTabs__item.is-current {
  border-color: #27B3AA;
}

.p-categoryNav {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin-bottom: 56px;
}

.p-categoryNav__item {
  padding: 10px 12px;
  border: 1px solid #27B3AA;
  border-radius: 8px;
  color: #27B3AA;
  text-align: center;
}

.p-categoryNav__item.is-current {
  background: #27B3AA;
  color: #ffffff;
}

.p-archivePage__list {
  margin: 0 auto;
}

.p-archiveItem {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(210, 210, 210, 0.65);
}

.p-archiveItem__date {
  flex: 0 0 auto;
  color: #525252;
  font-weight: 400;
}

.p-archiveItem__category {
  flex: 0 0 auto;
  min-width: 88px;
  padding: 3px 10px;
  border-radius: 8px;
  background: #a2a2a2;
  color: #ffffff;
  font-size: 1.2rem;
  text-align: center;
}

.p-archiveItem__category a {
  color: inherit;
}

.p-archiveItem__title {
  min-width: 0;
  font-size: 1.6rem !important;
  font-weight: 400;
}

.p-archiveItem__title a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.p-archivePage__empty {
  padding: 48px 0;
  text-align: center;
}

.navigation.pagination {
  display: flex;
  justify-content: center;
  margin-top: 72px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
}

.page-numbers {
  display: inline-grid;
  place-items: center;
  min-width: 36px;
  height: 36px;
  padding: 0 6px;
  color: #525252;
}

.page-numbers.current {
  border-radius: 9px;
  background: #27B3AA;
  color: #ffffff;
}

@media (min-width: 768px) {
  .p-archivePage {
    width: min(80%, 1152px);
    padding-top: 72px;
  }
  .p-archiveTabs {
    margin-bottom: 40px;
  }
  .p-categoryNav {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-archiveItem {
    gap: 28px;
    padding: 18px 0;
  }
  .p-archiveItem__date {
    flex-basis: 120px;
  }
}
.p-singlePage {
  width: min(90%, 1152px);
  margin: 0 auto 160px;
  padding-top: 64px;
}

.p-singlePage .p-breadcrumb {
  margin-bottom: 72px;
}

.p-singleArticle__date {
  display: block;
  margin-bottom: 28px;
  font-size: 1.8rem;
}

.p-singleArticle__title {
  margin-bottom: 42px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.4rem, 3vw, 3.2rem);
  font-weight: 400;
  line-height: 1.6;
}

.p-singleArticle__content {
  font-size: 1.6rem;
  line-height: 2;
}

.p-singleArticle__content > * + * {
  margin-top: 2em;
}

.p-singleArticle__content h2 {
  margin-top: 2.5em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
}

.p-singleArticle__content h3 {
  margin-top: 2em;
  font-size: 2rem;
}

.p-singleArticle__content ul, .p-singleArticle__content ol {
  padding-left: 1.5em;
}

.p-singleArticle__content ul {
  list-style: disc;
}

.p-singleArticle__content ol {
  list-style: decimal;
}

.p-singleArticle__content img {
  margin-inline: auto;
}

.p-articleNav {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  margin-top: 88px;
  color: #A2A2A2;
}

.p-articleNav a {
  display: inline-flex;
  align-items: center;
}

.p-articleNav__next {
  margin-left: auto;
  text-align: right;
}

@media (min-width: 768px) {
  .p-singlePage {
    width: min(80%, 1152px);
    padding-top: 72px;
  }
  .p-singleArticle__content {
    font-size: 1.8rem;
  }
  .p-articleNav {
    margin-top: 104px;
  }
}
.p-staticPage {
  width: min(90%, 1152px);
  margin: 0 auto 160px;
  padding-top: 64px;
}

@media (min-width: 768px) {
  .p-staticPage {
    width: min(80%, 1152px);
    padding-top: 72px;
  }
}
.p-doctorPage__card {
  padding: 24px;
  border-radius: 36px;
  background: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
}

.p-doctorPage__profile {
  display: grid;
  gap: 28px;
  margin-bottom: 40px;
}

.p-doctorPage__photo {
  display: grid;
  place-items: center;
  min-height: 260px;
  background: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
  font-size: 2.2rem;
}

.p-doctorPage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.p-doctorPage__intro {
  display: grid;
  align-content: center;
  gap: 36px;
}

.p-doctorPage__name {
  display: flex;
  align-items: center;
  gap: 24px;
  font-size: 2.4rem;
}

.p-doctorPage__name h2 {
  font-size: 2.8rem;
  font-weight: 400;
}

.p-doctorPage__message {
  line-height: 1.9;
  text-align: left;
}

.p-doctorPage__lists {
  display: grid;
  gap: 32px;
  margin-top: 48px;
}

.p-doctorPage__lists h2 {
  margin-bottom: 20px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2rem;
  font-weight: 400;
}

.p-doctorPage__lists li {
  margin-top: 10px;
}

.p-doctor__profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 16px;
}

.p-doctor__profile__item {
  flex: 1 1 calc(33.333% - 16px);
  min-width: 320px;
  white-space: unset;
}

.p-doctor__profile__item h3 {
  margin-bottom: 2.4rem;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.08em;
}

.p-doctor__profile__item li {
  margin-bottom: 16px;
  font-size: 1.4rem;
}

@media (min-width: 768px) {
  .p-doctorPage__card {
    padding: 40px;
  }
  .p-doctorPage__profile {
    grid-template-columns: 1fr 1fr;
  }
  .p-doctorPage__lists {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1100px) {
  .p-doctor__profile__item li {
    font-size: 1.6rem;
  }
}
.p-firstVisit__section {
  margin: 0 auto;
}

.p-firstVisit__section p, .p-firstVisit__section li {
  line-height: 2;
}

.p-firstVisit__section ul {
  padding-left: 1.5em;
  list-style: disc;
}

.p-firstVisit__facility, .p-firstVisit__access {
  margin: 0 auto;
  text-align: center;
}

.p-firstVisit__gallery {
  display: grid;
  gap: 24px;
}

.p-firstVisit__galleryItem {
  display: grid;
  place-items: center;
  min-height: 200px;
  overflow: hidden;
  background: #d2d2d2;
  color: #ffffff;
}
.p-firstVisit__galleryItem img {
  width: 100%;
  height: 100%;
  min-height: 200px;
  object-fit: cover;
}

.p-firstVisit__access .p-info {
  text-align: left;
}

@media (min-width: 768px) {
  .p-firstVisit__gallery {
    grid-template-columns: repeat(3, 1fr);
  }
}
.p-recruitPage {
  overflow: hidden;
}

.p-recruitPage__container {
  width: min(90%, 1120px);
  margin: 0 auto;
}

.p-recruitPage__hero {
  position: relative;
  min-height: 440px;
}

.p-recruitPage__hero::before {
  content: "";
  position: absolute;
  inset: 0 auto auto 0;
  width: 78%;
  height: 82%;
  background: url("../img/AdobeStock_513443324.jpeg") center 26%/cover;
  border-radius: 0 0 80px 0;
}

.p-recruitPage__heroInner {
  position: relative;
  width: 100%;
  min-height: 440px;
  margin: 0 auto;
}

.p-recruitPage__heroLogo {
  position: absolute;
  left: 0px;
  top: 36%;
  width: 260px;
  opacity: 0.88;
  transform: translateY(-50%);
}

.p-recruitPage__heroCopy {
  display: grid;
  gap: 10px;
  position: absolute;
  right: 24px;
  top: 49%;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 3.1vw, 3.6rem);
  font-weight: 400;
  line-height: 1.35;
  white-space: nowrap;
}

.p-recruitPage__heroCopy span {
  width: fit-content;
  padding: 4px 12px;
  background: rgba(255, 255, 255, 0.9);
}

.p-recruitPage__heroEnglish {
  position: absolute;
  left: 21%;
  bottom: 5%;
  color: #c6eef0;
  font-size: clamp(4.4rem, 7vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  white-space: nowrap;
}

.p-recruitPage__english {
  color: #c6eef0;
  font-size: clamp(4.4rem, 7vw, 8rem);
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  text-align: center;
}

.p-recruitPage__heroEnglish, .p-recruitPage__english, .p-recruitPage__entryTitle {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  background: linear-gradient(90deg, #c6ebe9 0%, #d7eef5 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.p-recruitPage__appeal {
  padding: 64px 0 112px;
}

.p-recruitPage__message {
  max-width: 920px;
}

.p-recruitPage__message h2 {
  margin-bottom: 28px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.4rem, 3vw, 3.6rem);
  font-weight: 400;
}

.p-recruitPage__message p {
  margin-top: 20px;
  line-height: 2;
}

.p-recruitPage__gallery {
  width: min(94%, 1360px);
  margin: 72px auto 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.p-recruitPage__gallery img {
  width: 100%;
  aspect-ratio: 1.45/1;
  object-fit: cover;
  border-radius: 8px;
}

.p-recruitPage__benefits {
  padding: 104px 0;
  background: #FBFBFB;
  text-align: center;
}

.p-recruitPage__benefits h2, .p-recruitPage__positions h2 {
  margin: 24px 0 56px;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 400;
}

.p-recruitPage__benefits h2 {
  margin-bottom: 32px;
}

.p-recruitPage__benefits h2 span, .p-recruitPage__positions h2 span {
  color: #27B3AA;
}

.p-recruitPage__benefitGrid {
  display: grid;
  gap: 14px;
  max-width: 640px;
  margin: 0 auto;
}

.p-recruitPage__benefit {
  min-height: 240px;
  padding: 28px 20px;
  border-radius: 28px;
  background: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.p-recruitPage__benefit img {
  width: 80px;
  height: 80px;
  margin: 0 auto 16px;
}

.p-recruitPage__benefit h3 {
  margin-bottom: 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
}

.p-recruitPage__benefit p {
  font-size: 1.3rem;
  line-height: 1.8;
  text-align: left;
}

.p-recruitPage__positions {
  padding: 112px 0 128px;
  background: #FBFBFB;
  text-align: center;
}

.p-recruitPage__positions .p-recruitPage__english {
  margin-bottom: 24px;
}

.p-recruitPage__positions h2 {
  margin: 0 0 28px;
}

.p-recruitPage__lead {
  margin-bottom: 56px;
  font-size: 1.3rem;
}

.p-recruitPage__jobList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}

.p-recruitPage__job {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 100%;
  padding: 48px 40px;
  border-radius: 40px;
  background: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
}

.p-recruitPage__jobDetails {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-recruitPage__entry {
  min-height: 330px;
  display: grid;
  place-items: center;
  padding: 48px 5%;
  background: linear-gradient(rgba(39, 179, 170, 0.82), rgba(39, 179, 170, 0.82)), url("../img/AdobeStock_513443324.jpeg") -10% 26%/120%;
  color: #ffffff;
  text-align: center;
}

.p-recruitPage__entryTitle {
  margin-bottom: 20px;
  font-size: clamp(5rem, 8vw, 8rem);
  letter-spacing: 0.08em;
  line-height: 1;
  color: #fff;
}

.p-recruitPage__entry p:not(.p-recruitPage__entryTitle) {
  line-height: 1.8;
}

.p-recruitPage__entry a {
  display: inline-block;
  margin-top: 12px;
  font-family: "Montserrat", sans-serif;
  font-size: 2rem;
  font-weight: 400;
  text-decoration: underline;
}

@media (max-width: 767px) {
  .p-recruitPage__hero, .p-recruitPage__heroInner {
    min-height: 440px;
  }
  .p-recruitPage__hero::before {
    width: 100%;
    height: 72%;
  }
  .p-recruitPage__heroLogo {
    left: -54px;
    width: 172px;
  }
  .p-recruitPage__heroCopy {
    top: 45%;
    gap: 6px;
    font-size: 2rem;
    white-space: normal;
  }
  .p-recruitPage__heroCopy span {
    padding: 3px 8px;
  }
  .p-recruitPage__heroEnglish {
    left: 7%;
    bottom: 5%;
    font-size: 4.2rem;
  }
}
@media (min-width: 768px) {
  .p-recruitPage__hero, .p-recruitPage__heroInner {
    min-height: 540px;
  }
  .p-recruitPage__gallery {
    grid-template-columns: repeat(4, 1fr);
  }
  .p-recruitPage__benefitGrid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1100px) {
  .p-recruitPage__hero, .p-recruitPage__heroInner {
    min-height: 620px;
  }
  .p-recruitPage__job {
    width: calc(50% - 20px);
  }
  .p-recruitPage__entry {
    min-height: 390px;
  }
}
.p-errorPage {
  min-height: 760px;
  padding: 64px 0 120px;
}

.p-errorPage__inner {
  width: min(90%, 1152px);
  margin: 0 auto;
}

.p-errorPage .p-pageBreadcrumb {
  margin-bottom: 72px;
}

.p-errorPage p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
}

@media (min-width: 768px) {
  .p-errorPage {
    padding-top: 72px;
  }
  .p-errorPage__inner {
    width: min(80%, 1152px);
  }
}
@media (max-width: 767px) {
  .p-errorPage {
    min-height: 520px;
    padding-bottom: 80px;
  }
  .p-errorPage .p-pageBreadcrumb {
    margin-bottom: 48px;
  }
}
.p-requestPage {
  padding: 64px 0 144px;
}

.p-requestPage__inner {
  width: min(90%, 1152px);
  margin: 0 auto;
}

.p-requestPage .p-pageBreadcrumb {
  margin-bottom: 72px;
}

.p-requestPage__sectionTitle {
  display: flex;
  align-items: center;
  gap: 24px;
  margin: 0 0 56px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(2.6rem, 3vw, 3.6rem);
  font-weight: 400;
  line-height: 1.5;
}

.p-requestPage__sectionTitle::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-top: -8px;
  margin-left: 16px;
  vertical-align: middle;
  background: url(../img/icon-ttl.svg) no-repeat center/contain;
  transform: rotate(90deg);
}

.p-requestPage__content {
  font-size: 1.6rem;
  line-height: 1.85;
}

.p-requestPage__content .c-contentSection > * + * {
  margin-top: 20px;
}

.p-requestPage__content ol {
  padding-left: 1.5em;
  list-style: decimal;
}

.p-requestPage__signature {
  margin-top: 40px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.8rem;
  text-align: right;
}

@media (min-width: 768px) {
  .p-requestPage__inner {
    width: min(80%, 1152px);
  }
  .p-requestPage {
    padding-top: 72px;
  }
}
@media (max-width: 767px) {
  .p-requestPage .p-pageBreadcrumb {
    margin-bottom: 48px;
  }
  .p-requestPage__sectionTitle {
    gap: 16px;
    margin-bottom: 40px;
  }
  .p-requestPage__sectionTitle::after {
    width: 28px;
    box-shadow: 25px 0 0 -1px #27B3AA;
  }
  .p-requestPage__content {
    font-size: 1.5rem;
  }
}
/*--------------------------------------*
* component
*--------------------------------------*/
.c-tag {
  padding: 0 24px;
  width: fit-content;
  background-color: #27B3AA;
  color: #ffffff;
  border-radius: 8px;
  font-size: 1.8rem;
}
.c-tag-sub {
  padding: 0 24px;
  width: fit-content;
  background-color: #ffffff;
  color: #27B3AA;
  border: 2px solid #27B3AA;
  border-radius: 8px;
}

.c-openBtn {
  width: 48px;
  height: 48px;
  background-color: #ffffff;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  position: relative;
  right: auto;
  top: auto;
  z-index: 100;
}
.c-openBtn span {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 3px;
  border-radius: 100px;
  background: #27B3AA;
  transition: 0.3s;
}
.c-openBtn span:nth-child(1) {
  top: 16px;
}
.c-openBtn span:nth-child(2) {
  top: 23px;
}
.c-openBtn span:nth-child(3) {
  top: 30px;
}
.c-openBtn.is-active span:nth-child(1) {
  top: 23px;
  transform: translateX(-50%) rotate(45deg);
  background: #A2A2A2;
}
.c-openBtn.is-active span:nth-child(2) {
  opacity: 0;
}
.c-openBtn.is-active span:nth-child(3) {
  top: 23px;
  transform: translateX(-50%) rotate(-45deg);
  background: #A2A2A2;
}
@media (min-width: 1100px) {
  .c-openBtn {
    display: none;
  }
}

.l-header .c-openBtn {
  position: relative;
  right: auto;
  top: auto;
  flex-shrink: 0;
}

@media (min-width: 1100px) {
  .l-header .c-openBtn {
    display: flex;
  }
}
.c-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
  z-index: 10;
}
@media (min-width: 1100px) {
  .c-overlay {
    display: none;
  }
}

.c-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

@media (min-width: 1100px) {
  .l-header .c-overlay {
    display: block;
  }
}
.c-moreBtn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 240px;
  height: 48px;
  margin: 32px auto 0;
  border-radius: 99px;
  background: #ffffff;
  color: #27B3AA;
  box-shadow: -5px 5px 10px rgba(230, 230, 230, 0.2), 5px -5px 10px rgba(230, 230, 230, 0.2), -5px -5px 10px rgba(250, 250, 250, 0.9), 5px 5px 10px rgba(250, 250, 250, 0.9);
}

.c-reservationBtn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 210px;
  height: 48px;
  padding: 0 24px;
  border-radius: 999px;
  background: #29b2ae;
  color: #ffffff;
  font-size: 1.8rem;
  letter-spacing: 0.08em;
  box-shadow: 0 8px 14px rgba(39, 179, 170, 0.2);
}

.c-pageTitle {
  display: block;
  margin: 96px 0 144px;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(3rem, 4vw, 4rem);
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
}

@media (max-width: 767px) {
  .c-pageTitle {
    margin: 64px 0 88px;
  }
}
.c-sectionTitle {
  margin-bottom: 36px;
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  font-weight: 400;
}
.c-sectionTitle::after {
  content: "";
  display: inline-block;
  width: 40px;
  height: 40px;
  margin-top: -8px;
  margin-left: 12px;
  vertical-align: middle;
  background: url("../img/icon-ttl.svg") no-repeat center/contain;
  transform: rotate(90deg);
}

@media (min-width: 1100px) {
  .c-sectionTitle {
    font-size: 2.4rem;
  }
}
.c-sectionHeading {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  text-align: center;
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 64px;
}

.p-facilityStandards__section {
  scroll-margin-top: 100px;
}
.p-facilityStandards__section p,
.p-facilityStandards__section li {
  font-size: 1.6rem;
  line-height: 2;
}
.p-facilityStandards__section p + p {
  margin-top: 16px;
}
.p-facilityStandards__section ul,
.p-facilityStandards__section ol {
  padding-left: 1.5em;
}
.p-facilityStandards__section ul {
  list-style: disc;
}
.p-facilityStandards__section ol {
  list-style: decimal;
}
.p-facilityStandards__section li + li {
  margin-top: 8px;
}
.p-facilityStandards__section li span {
  font-size: 0.9em;
}
.p-facilityStandards__note,
.p-facilityStandards__notes {
  margin-top: 16px;
}
.p-facilityStandards__notes {
  list-style: "※  ";
}

@media (max-width: 767px) {
  .p-facilityStandards__section p,
  .p-facilityStandards__section li {
    font-size: 1.5rem;
  }
}

.c-subSectionTitle {
  margin: 28px 0 12px;
  font-size: 1.8rem;
  font-weight: 500;
}

.c-contentSection {
  margin-bottom: 96px;
}

.c-sectionNav {
  display: grid;
  gap: 16px;
  margin-bottom: 100px;
}
.c-sectionNav a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding-bottom: 12px;
  padding-right: 16px;
  border-bottom: 2px solid #27B3AA;
}
.c-sectionNav img {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

@media (min-width: 768px) {
  .c-sectionNav {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 767px) {
  .c-sectionNav {
    margin-bottom: 72px;
  }
}

/*--------------------------------------*
* utility
*--------------------------------------*/
.u-break {
  display: inline-block;
}

.u-nowrap {
  white-space: nowrap;
}

.p-info__reservationNote { width: 90%; margin: 0 auto; font-size: 1.6rem; line-height: 1.7; text-align: center; }
.p-info__reservationNote .u-break { display: block; }
@media (min-width: 768px) { .p-info__reservationNote .u-break { display: inline-block; } }

.p-home .p-info__item-schedule .p-info__item__content { min-width: 0; white-space: normal; overflow-wrap: anywhere; }

.p-home .p-info__item-access { margin-bottom: 48px; }

.p-header { height: auto; min-height: 100vh; }
.p-ttl { height: auto; min-width: 0; }
.p-ttl__info { max-width: 90%; }
.p-ttl__info__emp { overflow-wrap: anywhere; }
@media (min-width: 1100px) { .p-header { min-height: 600px; } }

/* SPでは画面の高さに依存せず、案内の行数に応じて下へ広げる。 */
@media (max-width: 1099px) {
  .p-header { min-height: 0; padding: 64px 0 48px; gap: 64px; }
  .p-ttl { justify-content: flex-start; flex-shrink: 0; padding-bottom: 0; gap: 32px; }
  .p-ttl h1 { position: absolute; width: 1px; height: 1px; overflow: hidden; }
  .p-mv { position: static; width: 90%; flex-shrink: 0; }
  .p-mv img { width: 100%; }
}

/* メニュー内でスクロールを完結させ、背景の位置を保持する。 */
.l-nav { max-height: 100vh; max-height: 100dvh; overflow-y: auto; overscroll-behavior-y: contain; }
.l-nav > * { flex-shrink: 0; }
html.is-menu-open { overflow: hidden; }
body.is-menu-open { position: fixed; top: var(--menu-scroll-offset); width: 100%; overflow: hidden; }
