/*--------------------------------------*
 * 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
*--------------------------------------*/
footer {
  position: relative;
  min-height: 80px;
}

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: 24px;
  bottom: 120px;
}

/*--------------------------------------*
* projecct
*--------------------------------------*/
.p-header {
  background-image: url("/assets/img/bg.svg");
  background-repeat: no-repeat;
  background-size: auto 80%;
  background-position: left center;
  width: 100%;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  margin-bottom: 108px;
}
@media (min-width: 1100px) {
  .p-header {
    flex-direction: row;
    align-items: center;
    height: 600px;
  }
}

.p-nav {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 10;
  box-shadow: -1px 1px 2px rgba(143, 143, 143, 0.2), 1px -1px 2px rgba(143, 143, 143, 0.2), -1px -1px 2px rgba(250, 250, 250, 0.9), 1px 1px 2px rgba(250, 250, 250, 0.9);
  background-color: #ffffff;
  display: none;
  gap: 40px;
  width: fit-content;
  border-radius: 24px;
  padding: 0 40px;
}
@media (min-width: 1100px) {
  .p-nav {
    display: flex;
  }
}
.p-nav ul {
  display: flex;
  gap: 40px;
}
.p-nav ul li {
  height: 48px;
}
.p-nav ul li a {
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
.p-nav ul li a:hover, .p-nav ul li a:focus {
  color: #27B3AA;
}
.p-nav__sns {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.p-nav__sns img {
  width: 24px;
  height: 24px;
}

.p-ttl {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  position: relative;
  z-index: 1;
  padding-bottom: 30%;
}
@media (min-width: 1100px) {
  .p-ttl {
    width: 50%;
    padding-bottom: 0;
    gap: 20px;
  }
}
.p-ttl h1 {
  visibility: hidden;
}
.p-ttl img {
  max-width: 484px;
  width: 90%;
}
.p-ttl__info {
  font-size: 1.8rem;
  padding: 24px 64px;
  border-radius: 24px;
  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);
  background-color: #ffffff;
  text-align: center;
  width: fit-content;
}
@media (min-width: 1100px) {
  .p-ttl__info {
    padding: 32px 80px;
    border-radius: 32px;
  }
}
.p-ttl__info__emp {
  color: #27B3AA;
  font-size: 2.4rem;
  margin-top: 8px;
  margin-bottom: 16px;
}
.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 {
  width: 90vw;
  height: auto;
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 0;
}
@media (min-width: 1100px) {
  .p-mv {
    position: static;
    width: 50%;
    height: 100%;
  }
}
.p-mv img {
  border-radius: 0 20px 20px 0;
  height: 320px;
  object-fit: cover;
}
@media (min-width: 1100px) {
  .p-mv img {
    border-radius: 0 0 0 40px;
    width: 100%;
    height: 100%;
    aspect-ratio: unset;
  }
}

.p-message {
  letter-spacing: 0.08em;
}
.p-message h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}
.p-message h2::after {
  content: "";
  width: 10px;
  height: 42px;
  background-image: url("/assets/img/icon-ttl.svg");
  background-repeat: no-repeat;
}
.p-message__content {
  width: fit-content;
  width: 90%;
  max-width: 800px;
  margin: 0 auto 108px;
  padding: 48px 16px;
  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: 40px;
  text-align: center;
  font-family: "Noto Serif JP", serif;
}
@media (min-width: 1100px) {
  .p-message__content {
    padding: 48px 40px;
  }
}
.p-message__copy {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
@media (min-width: 1100px) {
  .p-message__copy {
    font-size: 3.2rem;
  }
}

.p-departments {
  padding: 48px 0;
  margin-bottom: 80px;
  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);
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 48px;
}
@media (min-width: 1100px) {
  .p-departments {
    gap: 200px;
  }
}
.p-departments h2 {
  font-family: "Noto Serif JP", serif;
  font-size: 3.2rem;
  letter-spacing: 0.08em;
}
.p-departments p {
  font-size: 1.8rem;
}

.p-info {
  margin-bottom: 160px;
}
.p-info h2 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 64px;
}
.p-info__item {
  max-width: 1100px;
  width: 90%;
  margin: 0 auto 72px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
@media (min-width: 1100px) {
  .p-info__item {
    flex-direction: row;
  }
}
.p-info__item__content {
  width: 100%;
  white-space: nowrap;
}
@media (min-width: 1100px) {
  .p-info__item__content {
    width: unset;
    flex: 0 0 auto;
  }
}
.p-info__item__txt {
  font-size: 1.8rem;
}
.p-info__item__img {
  width: 100%;
  min-width: 0;
}
@media (min-width: 1100px) {
  .p-info__item__img {
    width: unset;
    flex: 1 1 auto;
  }
}
.p-info__item__img iframe {
  width: 100%;
  aspect-ratio: 16/9;
  max-width: 480px;
}
.p-info__item h3 {
  font-size: 1.8rem;
}
.p-info__item div {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.p-info__item-schedule img {
  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);
  max-width: 720px;
}
.p-info__item-access {
  padding-left: 0;
  flex-direction: column-reverse;
}
@media (min-width: 1100px) {
  .p-info__item-access {
    padding-left: 16px;
    flex-direction: row;
  }
}
.p-info__item-access .p-info__item__txt {
  margin-bottom: 16px;
}
@media (min-width: 1100px) {
  .p-info__item-access .p-info__item__img {
    flex: 0 1 480px;
  }
}

.p-doctor h2 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 48px;
}
.p-doctor__content {
  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: 40px;
  padding: 48px 24px;
  width: 90%;
  max-width: 1100px;
  margin: 0 auto 160px;
}
@media (min-width: 1100px) {
  .p-doctor__content {
    padding: 48px 40px;
  }
}
.p-doctor__name {
  display: flex;
  gap: 40px;
  align-items: center;
  margin-bottom: 48px;
}
.p-doctor__name h3 {
  font-size: 1.8rem;
}
.p-doctor__name p {
  font-size: 2.4rem;
}
.p-doctor__profile {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 16px;
}
.p-doctor__profile__item {
  flex: 0 0 auto;
  white-space: nowrap;
}
.p-doctor__profile__item h3 {
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.08em;
  font-size: 2rem;
  margin-bottom: 2.4rem;
}
.p-doctor__profile__item li {
  margin-bottom: 16px;
  font-size: 1.4rem;
}
@media (min-width: 1100px) {
  .p-doctor__profile__item li {
    font-size: 1.6rem;
  }
}

/*--------------------------------------*
* component
*--------------------------------------*/
.c-tag {
  padding: 0 24px;
  width: fit-content;
  background-color: #27B3AA;
  color: #ffffff;
  border-radius: 8px;
}
.c-tag-sub {
  padding: 0 24px;
  width: fit-content;
  background-color: #ffffff;
  color: #27B3AA;
  border: 2px solid #27B3AA;
  border-radius: 8px;
}

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