@charset "utf-8";
/*================================
　共通
================================*/
body {
  color: #555555;
}
.content {
  padding: 90px 40px;
}
.content.-bg-yellow {
  background: #f3e7b5;
}
.content.-bg-blue {
  background: #c9e5e2;
}
.content__inner {
  max-width: 1000px;
  margin-inline: auto;
}

/*画像*/
.img-center {
  text-align: center;
}
.img-right {
  text-align: right;
}
.img-center img,
.img-right img {
  display: inline-block;
}

/*セクションタイトル*/
.heading__wrapper {
  background: #fff;
  padding: 40px 30px 0;
}
.heading {
  position: relative;
  text-align: center;
  line-height: 1.5;
  padding-top: 100px;
}
.heading:before {
  position: absolute;
  content: "";
  width: 620px;
  height: 230px;
  background-color: #fff;
  border-radius: 50%;
  top: 0;
  right: 50%;
  transform: translate(50%, 0);
}
.heading:after {
  content: "";
  width: 89px;
  height: 89px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  margin-inline: auto;
}
.heading__jp {
  padding: 0 10px;
  font-size: 36px;
  color: #515151;
  z-index: 1;
  position: relative;
}
.heading__jp.-yellow {
  background: linear-gradient(
    0deg,
    #ffffff00 9%,
    #f9f3da 10%,
    #f9f3da 40%,
    #ffffff00 31%,
    #ffffff00
  );
}
.heading__jp.-blue {
  background: linear-gradient(
    0deg,
    #ffffff00 9%,
    #c9e5e2 10%,
    #c9e5e2 40%,
    #ffffff00 31%,
    #ffffff00
  );
}
.heading__en {
  font-size: 24px;
  font-family: "Lato", "Arial", sans-serif;
  z-index: 1;
  position: relative;
}
.heading__en.-yellow {
  color: #f3dc78;
}
.heading__en.-blue {
  color: #81cbc5;
}

/*コンテンツタイトル*/
.content__heading01-wrapper {
  border-bottom: 1px dashed #fff;
  margin-bottom: 40px;
}
.content__heading01 {
  color: #555555;
  font-size: 24px;
  padding: 10px 20px 10px 40px;
  background: #fff;
  position: relative;
  line-height: 1.5;
  text-align: left;
  margin-bottom: 10px;
}
.content__heading01:before {
  content: "";
  border-left: 5px solid #81cbc5;
  position: absolute;
  left: 6px;
  top: 0;
  height: 100%;
}
.content__heading01:after {
  content: "";
  border-left: 5px solid #f3dc78;
  position: absolute;
  left: 16px;
  top: 0;
  height: 100%;
}

/*黒丸リスト*/
.disc_list > li {
  position: relative;
  padding-left: 1em;
  line-height: 1.5;
}
.disc_list > li::before {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #666;
}
.disc_list > li:not(:last-child) {
  margin-bottom: 1em;
}

/*================================
　院長紹介
================================*/
/*セクションタイトル*/
.heading.-hospitaldirector:after {
  background: url(./img/heading_icon_doctor.png) no-repeat center/ contain;
}

/*コンテンツ*/
.hospitaldirector__content:not(:last-child) {
  margin-bottom: 80px;
}

/*flexbox*/
.hospitaldirector__content--layout {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 4%;
}
.hospitaldirector__content--layout.-row-reverse {
  flex-direction: row-reverse;
}
.hospitaldirector__content--layout.-mb {
  margin-bottom: 50px;
}
.hospitaldirector__content--layout > .hospitaldirector__content-img {
  flex-basis: 40%;
}
.hospitaldirector__content--layout > .hospitaldirector__content-text {
  flex-basis: 56%;
}

/*名前タイトル*/
.hospitaldirector__content-doctor-name-heading {
  margin-bottom: 80px;
  border-bottom: solid 1px #515151;
  font-size: 24px;
}
.hospitaldirector__content-doctor-name-heading span.-jp {
  padding: 0 30px;
  color: #81cbc5;
  font-size: 30px;
}
.hospitaldirector__content-doctor-name-heading small {
  font-size: 18px;
  font-family: "Lato", "Arial", sans-serif;
}

/*タイトル*/
.hospitaldirector__content-heading {
  font-size: 24px;
  color: #555555;
  padding-bottom: 10px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", YuGothic, "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1.5;
}
.hospitaldirector__content-heading:before {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 60px;

  background-color: #f9f3da;
  content: "";
  transform: translate(50%, 3px);
  right: 50%;
}
.hospitaldirector__content-heading:after {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 30px;
  background-color: #f3dc78;
  content: "";
  transform: translate(0%, 3px);
  right: 50%;
}

/*================================
　歯科医師紹介
================================*/
/*セクションタイトル*/
.heading.-dentist:after {
  background: url(./img/heading_icon_doctor.png) no-repeat center/ contain;
}

/*コンテンツ*/
.dentist__content:not(:last-child) {
  margin-bottom: 80px;
}

/*flexbox*/
.dentist__content--layout {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  gap: 20px 4%;
}
.dentist__content--layout.-row-reverse {
  flex-direction: row-reverse;
}
.dentist__content--layout.-mb {
  margin-bottom: 50px;
}
.dentist__content--layout > .dentist__content-img {
  flex-basis: 40%;
}
.dentist__content--layout > .dentist__content-text {
  flex-basis: 56%;
}

/*名前タイトル*/
.dentist__content-doctor-name-heading {
  margin-bottom: 80px;
  border-bottom: solid 1px #515151;
  font-size: 24px;
}
.dentist__content-doctor-name-heading span.-jp {
  color: #e4bd11;
  font-size: 30px;
  padding: 0 30px;
}
.dentist__content-doctor-name-heading small {
  font-size: 18px;
  font-family: "Lato", "Arial", sans-serif;
}

/*タイトル*/
.dentist__content-heading {
  font-size: 24px;
  color: #555555;
  padding-bottom: 10px;
  margin-bottom: 40px;
  position: relative;
  text-align: center;
  font-weight: bold;
  font-family: "Zen Kaku Gothic Antique", YuGothic, "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  line-height: 1.5;
}
.dentist__content-heading:before {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 60px;

  background-color: #e4f2f1;
  content: "";
  transform: translate(50%, 3px);
  right: 50%;
}
.dentist__content-heading:after {
  position: absolute;
  bottom: 0;
  height: 3px;
  width: 30px;
  background-color: #81cbc5;
  content: "";
  transform: translate(0%, 3px);
  right: 50%;
}

/* 未使用
.dentist-flame {
  background: #f2f2f2;
  border: 3px solid #fff;
  padding: 40px 30px 20px;
}
.dentist-flame.-mb {
  margin-bottom: 50px;
}

.dentist-flame__heading {
  text-align: center;
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 40px;
}
.dentist-flame__heading span {
  background: linear-gradient(
    0deg,
    #ffffff00 9%,
    #fff 10%,
    #fff 40%,
    #ffffff00 31%,
    #ffffff00
  );
  padding: 0 10px;
}
.dentist-flame__content-img {
  margin-right: 20px;
  flex: none;
}
*/

@media screen and (max-width: 1024px) {
  /*================================
  　共通
  ================================*/

  /*================================
  　院長紹介
  ================================*/
  /*flexbox*/
  .hospitaldirector__content--layout > .hospitaldirector__content-img {
  }
  .hospitaldirector__content--layout > .hospitaldirector__content-text {
  }

  /*================================
  　歯科医師紹介
  ================================*/
  /*flexbox*/
  .dentist__content--layout > .dentist__content-img {
  }
  .dentist__content--layout > .dentist__content-text {
  }

  /* 未使用
  .dentist-flame__content-img {
    width: 40%;
  }
  */
}

@media screen and (max-width: 896px) {
  /*================================
  　共通
  ================================*/
  .content {
    padding: 60px 30px;
  }

  /*================================
  　院長紹介
  ================================*/
  /*flexbox*/
  .hospitaldirector__content--layout > .hospitaldirector__content-img {
    flex-basis: 100%;
  }
  .hospitaldirector__content--layout > .hospitaldirector__content-text {
    flex-basis: 100%;
  }

  /*タイトル*/
  .hospitaldirector__content-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }

  /*================================
  　歯科医師紹介
  ================================*/
  /*flexbox*/
  .dentist__content--layout > .dentist__content-img {
    flex-basis: 100%;
  }
  .dentist__content--layout > .dentist__content-text {
    flex-basis: 100%;
  }

  /*タイトル*/
  .dentist__content-heading {
    font-size: 20px;
    margin-bottom: 20px;
  }
}

@media screen and (max-width: 750px) {
  /*================================
  　共通
  ================================*/
  .heading:before {
    /* width: 100%; */
    height: 230px;
  }

  /*================================
  　院長紹介
  ================================*/
  /*flexbox*/
  .hospitaldirector__content--layout > .hospitaldirector__content-img {
  }
  .hospitaldirector__content--layout > .hospitaldirector__content-text {
  }

  /*名前タイトル*/
  .hospitaldirector__content-doctor-name-heading {
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
  }
  .hospitaldirector__content-doctor-name-heading span.-jp {
    display: block;
    padding: 0;
  }
  .hospitaldirector__content-doctor-name-heading small {
  }

  /*================================
  　歯科医師紹介
  ================================*/
  /*flexbox*/
  .dentist__content--layout > .dentist__content-img {
  }
  .dentist__content--layout > .dentist__content-text {
  }

  /*名前タイトル*/
  .dentist__content-doctor-name-heading {
    margin-bottom: 40px;
    line-height: 1.5;
    text-align: center;
  }
  .dentist__content-doctor-name-heading span.-jp {
    display: block;
    padding: 0;
  }
  .dentist__content-doctor-name-heading small {
  }

  /* 未使用
  .dentist-flame__content-img {
    width: 100%;
    margin-right: 0;
    margin-top: 20px;
  }
  */
}

@media screen and (max-width: 480px) {
  /*================================
  　共通
  ================================*/
  .content {
    padding: 60px 20px;
  }
  .content__heading01 {
    font-size: 22px;
    padding: 5px 20px 10px 40px;
  }
  .content__heading01-wrapper {
    margin-bottom: 30px;
  }

  .heading__jp {
    font-size: 30px;
  }
  .heading__en {
    font-size: 20px;
  }
  .heading:after {
    width: 60px;
    height: 60px;
  }
  .heading {
    padding-top: 65px;
  }

  .heading:before {
    height: 170px;
  }

  /*================================
  　院長紹介
  ================================*/
  /*flexbox*/
  .hospitaldirector__content--layout.-mb {
    margin-bottom: 40px;
  }

  /*タイトル*/
  .hospitaldirector__content-heading {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 20px;
  }

  /*================================
  　歯科医師紹介
  ================================*/
  /*flexbox*/
  .dentist__content--layout.-mb {
    margin-bottom: 40px;
  }

  /*タイトル*/
  .dentist__content-heading {
    padding-bottom: 10px;
    margin-bottom: 20px;
    font-size: 20px;
  }

  /* 未使用
  .dentist-flame {
    padding: 30px 20px 20px;
  }
  .dentist-flame__heading {
    line-height: 1.5;
    font-size: 20px;
    margin-bottom: 20px;
  }
  */
}
