@charset "UTF-8";
/* リキッドな余白 */
/**************************************/
/* -------------------------------------------
 * intro
 * -------------------------------------------*/
.about-intro {
  padding: clamp(40 * var(--px), 154 / 1680 * 100vw, 154 * var(--px)) 0 clamp(50 * var(--px), 114 / 1680 * 100vw, 114 * var(--px));
  background: var(--ivory);
}

.about-intro__movie-title {
  text-align: center;
  font-size: var(--f32);
  font-family: var(--notoserif);
  font-weight: 500;
  margin-bottom: 0.8em;
}

.about-intro__movie {
  position: relative;
  width: min(100%, 1000 * var(--px));
  overflow: hidden;
  margin-inline: auto;
}
.about-intro__movie iframe {
  display: block;
  width: 100%;
  aspect-ratio: 1000/566;
  border: 0;
}

.about-intro__main-content {
  position: relative;
}
.about-intro__main-content::after {
  background: url(../img/about/intro_bg.webp) no-repeat center;
  background-size: contain;
  content: "";
  display: inline-block;
  position: absolute;
  width: 53.9%;
  height: auto;
  aspect-ratio: 1818/1280;
  top: 2%;
  left: 0;
  z-index: 0;
  pointer-events: none;
}
@media (max-width: 1240px) {
  .about-intro__main-content::after {
    width: 80%;
    opacity: 0.5;
  }
}

.about-intro__main-content-inner {
  position: relative;
  z-index: 1;
}

.about-intro__title {
  margin-block: clamp(40 * var(--px), 154 / 1680 * 100vw, 154 * var(--px)) clamp(30 * var(--px), 80 / 1680 * 100vw, 80 * var(--px));
  line-height: 1.625;
  text-align: center;
}

.about-intro__text {
  max-width: calc(535 * var(--px));
  letter-spacing: 0;
  margin-left: auto;
}
@media (max-width: 1240px) {
  .about-intro__text {
    margin-left: 0;
    max-width: none;
    margin-inline: auto;
  }
}

.about-intro__list {
  margin-top: clamp(100 * var(--px), 160 / 1680 * 100vw, 160 * var(--px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: calc(50 * var(--px)) 2.5%;
  position: relative;
  z-index: 1;
}
@media (max-width: 1240px) {
  .about-intro__list {
    margin-top: clamp(60 * var(--px), 120 / 1680 * 100vw, 120 * var(--px));
  }
}
@media (max-width: 834px) {
  .about-intro__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .about-intro__list > *:last-child:nth-child(odd) {
    grid-column: 1/-1;
    width: 48.75%;
    justify-self: center;
  }
}

.about-intro__item {
  margin: 0;
  text-align: center;
}

.about-intro__item-img-area {
  position: relative;
  margin-inline: auto;
  max-width: calc(380 * var(--px));
  overflow: visible;
}

.about-intro__item-img {
  position: relative;
  aspect-ratio: 380/300;
  width: 100%;
  overflow: hidden;
}

.about-intro__badge {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 1;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  display: grid;
  place-items: center;
  margin: 0;
  width: clamp(72 * var(--px), 150 / 1680 * 100vw, 150 * var(--px));
  height: clamp(72 * var(--px), 150 / 1680 * 100vw, 150 * var(--px));
  border-radius: 100vmax;
  background: center/contain no-repeat url("../img/about/intro_list-item-number.webp");
  font-family: var(--notoserif);
  font-weight: 500;
  text-align: center;
  color: #fff;
  line-height: 1.15;
  padding: 0.35em;
}

.about-intro__badge--large {
  font-size: clamp(14 * var(--px), 28 / 1680 * 100vw, 28 * var(--px));
}

.about-intro__badge--small {
  font-size: clamp(13 * var(--px), 24 / 1680 * 100vw, 24 * var(--px));
  line-height: 1.2;
}

.about-intro__caption {
  margin-top: 0.8em;
  font-size: clamp(15 * var(--px), 20 / 1680 * 100vw, 20 * var(--px));
  text-align: center;
  color: var(--purple);
  line-height: 1.4;
}

.about-intro__access {
  margin-top: clamp(40 * var(--px), 74 / 1680 * 100vw, 74 * var(--px));
  padding-block: clamp(30 * var(--px), 75 / 1680 * 100vw, 75 * var(--px)) clamp(30 * var(--px), 88 / 1680 * 100vw, 88 * var(--px));
  padding-inline: 5%;
  background: #fff;
  border-radius: 30px;
}

.about-intro__access-title {
  background: var(--purple-light);
}
.about-intro__access-title .strong {
  font-size: 130%;
  -webkit-transform: translateY(-0.1em);
          transform: translateY(-0.1em);
}

.about-intro__access-list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-template-rows: auto auto auto;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: clamp(24 * var(--px), 36 / 1680 * 100vw, 36 * var(--px));
}
@media (max-width: 834px) {
  .about-intro__access-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0;
  }
}
.about-intro__access-list > li {
  display: grid;
  grid-row: span 3;
  grid-template-rows: subgrid;
  text-align: center;
  padding-inline: clamp(8 * var(--px), 20 / 1680 * 100vw, 20 * var(--px));
  position: relative;
  gap: 0;
}
.about-intro__access-list > li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0%;
  right: 0;
  width: 3px;
  height: 100%;
  background-image: radial-gradient(circle, #ddd 1.5px, transparent 1.5px);
  background-position: right top;
  background-repeat: repeat-y;
  background-size: 3px 6px;
}
@media (max-width: 834px) {
  .about-intro__access-list > li:nth-child(even)::after {
    display: none;
  }
  .about-intro__access-list > li:nth-child(-n+2)::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 3px;
    background-image: radial-gradient(circle, #ddd 1.5px, transparent 1.5px);
    background-position: left bottom;
    background-repeat: repeat-x;
    background-size: 6px 3px;
  }
  .about-intro__access-list > li:nth-child(2) {
    padding-bottom: calc(20 * var(--px));
  }
  .about-intro__access-list > li:nth-child(3), .about-intro__access-list > li:nth-child(4) {
    padding-block: calc(20 * var(--px));
  }
}

.about-intro__access-label {
  font-size: clamp(15 * var(--px), 20 / 1680 * 100vw, 20 * var(--px));
  margin-bottom: 0.3em;
}

.about-intro__access-value {
  color: var(--purple-light);
  font-weight: 500;
  line-height: 1;
  -ms-flex-item-align: end;
      align-self: end;
}
.about-intro__access-value .number {
  font-family: var(--inter);
}
.about-intro__access-value .number--medium {
  font-size: clamp(36 * var(--px), 100 / 1680 * 100vw, 100 * var(--px));
}
.about-intro__access-value .number--small {
  font-size: clamp(33 * var(--px), 70 / 1680 * 100vw, 70 * var(--px));
}
.about-intro__access-value .number-unit {
  font-size: var(--f30);
}

.about-intro__access-note {
  margin-top: 2em;
  font-size: var(--f13);
}
@media (max-width: 834px) {
  .about-intro__access-note {
    margin-top: 0.5em;
  }
}

/* -------------------------------------------
 * 診療体制について
 * -------------------------------------------*/
.about-structure {
  padding: clamp(50 * var(--px), 120 / 1680 * 100vw, 120 * var(--px)) 0 clamp(50 * var(--px), 150 / 1680 * 100vw, 150 * var(--px));
}

.about-structure__label {
  text-align: center;
}

.about-structure__title {
  margin-top: clamp(8 * var(--px), 20 / 1680 * 100vw, 20 * var(--px));
  text-align: center;
}

.about-structure__lead {
  max-width: calc(850 * var(--px));
  margin-top: 2em;
  margin-inline: auto;
}
@media (max-width: 834px) {
  .about-structure__lead {
    max-width: none;
  }
}

.about-structure__list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(54 * var(--px), 84 / 1680 * 100vw, 84 * var(--px)) 3.4%;
  margin-top: clamp(44 * var(--px), 81 / 1680 * 100vw, 81 * var(--px));
}
@media (max-width: 834px) {
  .about-structure__list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: calc(24 * var(--px)) 5%;
    margin-top: calc(30 * var(--px));
  }
}

.about-structure__item-number {
  font-family: var(--inter);
  font-size: clamp(40 * var(--px), 90 / 1680 * 100vw, 90 * var(--px));
  text-align: right;
  margin-bottom: -0.46em;
  margin-right: 0.1em;
  position: relative;
  font-weight: 600;
  z-index: 1;
  line-height: 1;
}

.about-structure__item:nth-child(1) .about-structure__item-number {
  color: #ee8f63;
}

.about-structure__item:nth-child(2) .about-structure__item-number {
  color: var(--purple-light);
}

.about-structure__item:nth-child(3) .about-structure__item-number {
  color: #76bbaf;
}

.about-structure__item:nth-child(4) .about-structure__item-number {
  color: #ad9bd1;
}

.about-structure__item:nth-child(5) .about-structure__item-number {
  color: #eeb163;
}

.about-structure__item:nth-child(6) .about-structure__item-number {
  color: var(--blue-green);
}

.about-structure__item-title {
  margin-block: 0.8em 0.2em;
  font-size: var(--f24);
  font-weight: 500;
  text-align: center;
  color: var(--purple-light);
}
@media (max-width: 834px) {
  .about-structure__item-title {
    line-height: 1.4;
    margin-bottom: 0.5em;
  }
}

.about-structure__item-text {
  font-size: var(--f15);
  text-align: center;
  line-height: 1.47;
}

/* -------------------------------------------
 * ドクターについて
 * -------------------------------------------*/
.about-doctor {
  padding-block: clamp(50 * var(--px), 120 / 1680 * 100vw, 120 * var(--px)) clamp(50 * var(--px), 140 / 1680 * 100vw, 140 * var(--px));
  background: var(--ivory);
}

.about-doctor__title-sub {
  font-size: var(--f32);
  line-height: 1.4;
}

.about-doctor__label,
.about-doctor__title {
  text-align: center;
}

.about-doctor__title {
  margin-top: 0.3em;
  line-height: 1.5;
}

.about-doctor__lead {
  width: min(100%, 850 * var(--px));
  margin-inline: auto;
  margin-top: 2em;
}

.about-doctor__visual-area {
  margin-top: clamp(36 * var(--px), 102 / 1680 * 100vw, 102 * var(--px));
  position: relative;
  width: min(90%, 1400 * var(--px));
  margin-inline: auto;
}
@media (max-width: 834px) {
  .about-doctor__visual-area {
    width: 100%;
  }
}

.about-doctor__qualification {
  position: relative;
  margin-top: clamp(30 * var(--px), 44 / 1680 * 100vw, 44 * var(--px));
  border-radius: 24px;
  overflow: hidden;
}

.about-doctor__visual-badges {
  width: 42.6%;
  position: absolute;
  right: 4.5%;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 5%;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 834px) {
  .about-doctor__visual-badges {
    bottom: 2%;
    width: 85%;
    right: 50%;
    -webkit-transform: translateX(50%);
            transform: translateX(50%);
    max-width: calc(500 * var(--px));
  }
}

.about-doctor__visual-badge {
  width: clamp(180 * var(--px), 280 / 1680 * 100vw, 280 * var(--px));
  aspect-ratio: 1;
  border-radius: 100vmax;
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  container-type: inline-size;
}
@media (max-width: 834px) {
  .about-doctor__visual-badge {
    width: 100%;
  }
}

.about-doctor__visual-badge-name {
  margin: 0;
  font-family: var(--notoserif);
  font-weight: 500;
  line-height: 1.2;
  font-size: 10.5cqw;
}

.about-doctor__visual-badge-rank {
  margin: clamp(8 * var(--px), 14 / 1680 * 100vw, 14 * var(--px)) 0 0;
  font-family: var(--notoserif);
  font-weight: 500;
  font-size: 7cqw;
}

/* -------------------------------------------
 * 長期的な歯の健康維持
 * -------------------------------------------*/
.about-doctor__oral-health {
  margin-top: clamp(80 * var(--px), 135 / 1680 * 100vw, 135 * var(--px));
  position: relative;
}
@media (max-width: 1100px) {
  .about-doctor__oral-health {
    margin-top: clamp(50 * var(--px), 80 / 1680 * 100vw, 80 * var(--px));
  }
}

.about-doctor__oral-health-title {
  text-align: center;
  font-size: var(--f34);
  color: var(--brown);
  font-family: var(--notoserif);
  font-weight: 500;
  position: absolute;
  top: 45%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.about-doctor__oral-health-title .sub-title {
  font-size: var(--f24);
}
@media (max-width: 499px) {
  .about-doctor__oral-health-title .sub-title {
    font-size: calc(18 * var(--px));
  }
}
@media (max-width: 1024px) {
  .about-doctor__oral-health-title {
    position: static;
    -webkit-transform: none;
            transform: none;
    margin-bottom: 1em;
  }
}
@media (max-width: 499px) {
  .about-doctor__oral-health-title {
    font-size: calc(24 * var(--px));
  }
}

.about-doctor__oral-health-contents {
  position: relative;
  z-index: 1;
  width: min(90%, 1400 * var(--px));
  margin-inline: auto;
}
.about-doctor__oral-health-contents::before {
  background: url(../img/about/doctor_oral-health-bg.webp) no-repeat center/contain;
  content: "";
  position: absolute;
  width: 49%;
  max-width: calc(681 * var(--px));
  aspect-ratio: 1360/644;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: -1;
  pointer-events: none;
}
@media (max-width: 1024px) {
  .about-doctor__oral-health-contents::before {
    display: none;
  }
}

.about-doctor__oral-health-list {
  position: relative;
  aspect-ratio: 2486/873;
  width: 100%;
  max-width: 1400px;
  margin-inline: auto;
}
@media (max-width: 1024px) {
  .about-doctor__oral-health-list {
    aspect-ratio: unset;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1.5em;
  }
}
.about-doctor__oral-health-list > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 1.5vw;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  width: 42%;
  /* --- 個別配置と配色 --- */
}
.about-doctor__oral-health-list > li:nth-child(1) {
  bottom: 65%;
  left: 0;
}
.about-doctor__oral-health-list > li:nth-child(1) .about-doctor__oral-health-item-title {
  color: var(--lavender);
}
.about-doctor__oral-health-list > li:nth-child(1) .about-doctor__oral-health-item-label {
  background-color: var(--lavender);
}
.about-doctor__oral-health-list > li:nth-child(2) {
  bottom: 65%;
  left: 56%;
  gap: 2em;
}
.about-doctor__oral-health-list > li:nth-child(2) .about-doctor__oral-health-item-title {
  color: var(--purple-light);
}
.about-doctor__oral-health-list > li:nth-child(2) .about-doctor__oral-health-item-label {
  background-color: var(--purple-light);
}
.about-doctor__oral-health-list > li:nth-child(3) {
  top: 48%;
  left: -3%;
}
.about-doctor__oral-health-list > li:nth-child(3) .about-doctor__oral-health-item-title {
  color: var(--orange);
}
.about-doctor__oral-health-list > li:nth-child(3) .about-doctor__oral-health-item-label {
  background-color: var(--orange);
}
.about-doctor__oral-health-list > li:nth-child(4) {
  top: 50%;
  left: 60%;
  gap: 2em;
}
.about-doctor__oral-health-list > li:nth-child(4) .about-doctor__oral-health-item-title {
  color: var(--blue-green-light);
}
.about-doctor__oral-health-list > li:nth-child(4) .about-doctor__oral-health-item-label {
  background-color: var(--blue-green-light);
}
.about-doctor__oral-health-list > li {
  /* --- 左側配置(1,3)の共通設定 --- */
}
.about-doctor__oral-health-list > li:nth-child(1), .about-doctor__oral-health-list > li:nth-child(3) {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  text-align: right;
}
.about-doctor__oral-health-list > li {
  /* --- スマホ時のリセット設定 --- */
}
@media (max-width: 1024px) {
  .about-doctor__oral-health-list > li:nth-child(n) {
    position: static;
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    text-align: left;
    gap: 1em;
    margin: 0;
  }
  .about-doctor__oral-health-list > li:nth-child(n) .about-doctor__oral-health-item-title,
  .about-doctor__oral-health-list > li:nth-child(n) .about-doctor__oral-health-item-text {
    text-align: left;
  }
}

.about-doctor__oral-health-item-label {
  color: #fff;
  font-family: var(--notoserif);
  font-weight: 500;
  font-size: var(--f24);
  line-height: 1.46;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  border-radius: 100vmax;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}
@media (max-width: 1100px) {
  .about-doctor__oral-health-item-label {
    font-size: clamp(14 * var(--px), 24 / 1680 * 100vw, 24 * var(--px));
  }
}
.about-doctor__oral-health-item-label {
  /* サイズバリエーション（スマホ時は共通化） */
}
.about-doctor__oral-health-item-label--small {
  width: clamp(100 * var(--px), 160 / 1680 * 100vw, 160 * var(--px));
  height: clamp(100 * var(--px), 160 / 1680 * 100vw, 160 * var(--px));
}
.about-doctor__oral-health-item-label--large {
  width: clamp(100 * var(--px), 200 / 1680 * 100vw, 200 * var(--px));
  height: clamp(100 * var(--px), 200 / 1680 * 100vw, 200 * var(--px));
}
@media (max-width: 1024px) {
  .about-doctor__oral-health-item-label--small, .about-doctor__oral-health-item-label--large {
    width: clamp(80 * var(--px), 200 / 1680 * 100vw, 200 * var(--px));
    height: clamp(80 * var(--px), 200 / 1680 * 100vw, 200 * var(--px));
  }
}

.about-doctor__oral-health-item-title {
  font-family: var(--notoserif);
  font-weight: 500;
  font-size: var(--f24);
  line-height: 1.46;
}

.about-doctor__oral-health-item-text {
  line-height: 1.73;
  font-size: var(--f15);
  margin-top: 0.8em;
  white-space: nowrap;
}
@media (max-width: 1024px) {
  .about-doctor__oral-health-item-text {
    margin-top: 0.3em;
    white-space: normal;
  }
}
@media (max-width: 1024px) {
  .about-doctor__oral-health-item-text br {
    display: none;
  }
}/*# sourceMappingURL=about.css.map */