/*!
global > color
------------------------------
*/
:root {
  --color-primary: #8c6a4a;
  --color-primary-02: #cdb79e;
  --color-bg-extra-light: #f7f5f2;
  --color-bg-light: #777;
  --color-border: #e5ded6;
  --color-font-base: #3a342e;
  --color-font-light: #8a7f73;
  --color-white: #fff;
  --color-red: #d96c6c;
}

/*!
global > font
------------------------------
*/
:root {
  --font-family-base: 'Noto Sans JP', sans-serif;
  --font-family-en: 'Poppins', sans-serif;
}

/*!
global > z-index
------------------------------
*/
:root {
  --z-index-header:30;
  --z-index-menu: 10;
  --z-index-default:1;
  --z-index-negative: -1;
}

/*!
page > about > about-philosophy
------------------------------
*/
.about-philosophy-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24rem;
  margin-top: 48rem;
}
@media screen and (min-width: 900px) {
  .about-philosophy-list {
    grid-template-columns: repeat(3, 1fr);
    gap: 40rem;
    padding-inline: 32rem;
    margin-top: 64rem;
  }
}

.about-philosophy-item {
  display: flex;
  flex-direction: column;
  gap: 16rem;
  align-items: center;
  justify-content: center;
  width: 300rem;
  aspect-ratio: 1/1;
  margin-inline: auto;
  text-align: center;
  background-color: var(--color-bg-extra-light);
  border-radius: 50%;
}
@media screen and (min-width: 900px) {
  .about-philosophy-item {
    width: 352rem;
  }
}

.about-philosophy-item-title {
  font-family: var(--font-family-en);
  font-size: 23rem;
  color: var(--color-primary);
  letter-spacing: 0.025em;
}

.about-philosophy-item-text {
  font-size: 18rem;
  line-height: 1.6;
}
.about-philosophy-item-text span {
  display: block;
}
@media screen and (min-width: 900px) {
  .about-philosophy-item-text {
    font-size: 22rem;
  }
}

.about-philosophy-item-text02 {
  font-size: 14rem;
  line-height: 1.8;
  color: var(--color-font-light);
}
.about-philosophy-item-text02 span {
  display: block;
}

/*!
page > about > about-staff
------------------------------
*/
.about-staff {
  position: relative;
  padding-top: 40rem;
}
.about-staff::before {
  position: absolute;
  top: 0;
  left: 0;
  z-index: var(--z-index-negative);
  display: block;
  width: 355rem;
  height: 430rem;
  content: "";
  background-color: var(--color-primary);
  border-radius: 0 0 0 50rem;
}
@media screen and (min-width: 900px) {
  .about-staff {
    padding-top: 54rem;
  }
  .about-staff::before {
    right: 0;
    left: auto;
    width: 1326rem;
    height: 390rem;
  }
}

.about-staff-head {
  display: flex;
  flex-direction: column;
  gap: 20rem;
}
@media screen and (min-width: 900px) {
  .about-staff-head {
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.about-staff-text {
  color: var(--color-white);
}
@media screen and (min-width: 900px) {
  .about-staff-text {
    font-size: 16px;
  }
}

.about-staff-slider {
  margin-top: 40rem;
}
@media screen and (min-width: 900px) {
  .about-staff-slider {
    margin-top: 64rem;
  }
}

.about-staff-item {
  width: 230rem;
}
@media screen and (min-width: 900px) {
  .about-staff-item {
    width: 285rem;
  }
}

.about-staff-item-img img {
  border-radius: 10rem;
}

.about-staff-item-position {
  display: flex;
  gap: 10rem;
  align-items: center;
  margin-top: 16rem;
  font-size: 14rem;
}
.about-staff-item-position::before {
  display: block;
  width: 8rem;
  aspect-ratio: 1/1;
  content: "";
  background-color: var(--color-primary);
  border-radius: 50%;
}

.about-staff-item-name {
  display: flex;
  gap: 16rem;
  align-items: center;
}

.about-staff-item-name-ja {
  font-size: 20rem;
  letter-spacing: 0.075em;
}
@media screen and (min-width: 900px) {
  .about-staff-item-name-ja {
    font-size: 24rem;
  }
}

.about-staff-item-name-en {
  font-family: var(--font-family-en);
  font-size: 14rem;
  color: var(--color-font-light);
}
@media screen and (min-width: 900px) {
  .about-staff-item-name-en {
    font-size: 15rem;
  }
}

/*!
page > about > about-clinic
------------------------------
*/
.about-clinic {
  background-color: var(--color-bg-extra-light);
}
@media screen and (min-width: 900px) {
  .about-clinic {
    display: grid;
    grid-template-columns: 50% 1fr;
    gap: 32rem 51rem;
  }
}

@media screen and (min-width: 900px) {
  .about-clinic-title {
    grid-row: 1/2;
    grid-column: 1/2;
  }
}

.about-clinic-img {
  margin-top: 40rem;
}
.about-clinic-img img {
  border-radius: 10rem;
}
@media screen and (min-width: 900px) {
  .about-clinic-img img {
    border-radius: 14rem;
  }
}
@media screen and (min-width: 900px) {
  .about-clinic-img {
    grid-row: 1/3;
    grid-column: 2/3;
    align-self: end;
    margin-top: 0;
  }
}

.about-clinic-table {
  margin-top: 16rem;
}
@media screen and (min-width: 900px) {
  .about-clinic-table {
    grid-row: 2/3;
    grid-column: 1/2;
    margin-top: 0;
  }
}

@media screen and (min-width: 900px) {
  .about-clinic-table-body {
    display: grid;
    grid-template-columns: auto 1fr;
  }
}

.about-clinic-table-item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  padding: 16rem 8rem;
  border-bottom: 1rem solid var(--color-border);
}
.about-clinic-table-item th {
  font-size: 14rem;
  color: var(--color-font-light);
  letter-spacing: 0.125em;
}
@media screen and (min-width: 900px) {
  .about-clinic-table-item th {
    font-size: 18rem;
  }
}
.about-clinic-table-item td span {
  display: block;
}
@media screen and (min-width: 900px) {
  .about-clinic-table-item {
    grid-template-columns: subgrid;
    grid-column: 1/-1;
    gap: 0 40rem;
    align-items: center;
    padding: 24rem 8rem;
  }
}

/*# sourceMappingURL=page-about.css.map */
