@charset "utf-8";

/*================================

共通

================================*/

body {
	/* ↓iPhoneの文字サイズ自動調整を無効化 */
	-webkit-text-size-adjust: 100%;
}

.text-orange {
  color: #e97c28;
}
.text-red {
  color: #f00;
  font-weight: 500;
}
.text-cobaltgreen {
  color: #4bbb88;
}

.text-indent {
  padding-left: 1.1em;
  text-indent: -1.1em;
}

.text.-right {
  text-align: right;
}
.text-center {
  text-align: right;
}
.content__heading01 {
  margin-bottom: clamp(30px, 40 / 1100 * 100vw, 40px);
}

/* -----スローガン----- */
.services__slogan {
  text-align: center;
  position: relative;
}
.services__slogan:before,
.services__slogan:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: clamp(25px, 55 / 1024 * 100vw, 55px);
  height: clamp(25px, 55 / 1024 * 100vw, 55px);
}
.services__slogan:before {
  background: url(./img/slogan_deco_right.png) no-repeat right / cover;
  right: 30px;
}
.services__slogan:after {
  background: url(./img/slogan_deco_left.png) no-repeat left / cover;
  left: 30px;
}

.services__slogan-text {
  font-size: clamp(18px, 28 / 1024 * 100vw, 28px);
  font-weight: 500;
  margin-left: clamp(20px, 55 / 1024 * 100vw, 55px);
  margin-right: clamp(20px, 55 / 1024 * 100vw, 55px);
  /* display: inline-block; */
}

.services__slogan-text span {
  color: #7ebe33;
  background: linear-gradient(
    0deg,
    #ffffff00 9%,
    #fffac1 10%,
    #fffac1 40%,
    #ffffff00 31%,
    #ffffff00
  );
  padding: 0 10px;
}
/* -----/スローガン----- */

.services__top-row,
.services__content-row {
  display: flex;
  justify-content: space-between;
}
.services__top-img,
.services__content-row-img {
  margin-left: clamp(20px, 40 / 1024 * 100vw, 40px);
  flex: none;
}

.item__heading {
  font-size: clamp(20px, 24 / 1024 * 100vw, 24px);
  font-weight: 500;
  border-left: 3px solid #7ebe33;
  padding-left: 10px;
  margin-bottom: clamp(10px, 24 / 1024 * 100vw, 20px);
  line-height: 1.5;
}

.button {
  text-align: center;
}
.button__link {
  display: inline-block;
  font-size: clamp(18px, 28 / 1024 * 100vw, 28px);
  position: relative;
  color: #655d55;
  padding-right: 100px;
}

.button__link:before {
  content: "";
  background: url(./img/arrow_icon.png) no-repeat left bottom/ contain;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 90px;
  height: 14px;
  transition: all 0.3s ease;
}

.check-list__flame {
  background: url(./img/bg_check_list.png) no-repeat top center / cover;
  border-radius: 50px 0 50px 0;
  box-shadow: 0px 0px 15px -5px #777777;
  padding: 30px;
  text-align: center;
}

.check-list__row {
  display: flex;
}
.check-list__row .check-list:nth-of-type(1) {
  margin-right: 40px;
}

.check-list {
  display: inline-block;
}

.check-list__item {
  position: relative;
  padding-left: 25px;
  margin-bottom: 10px;
  text-align: left;
  font-size: clamp(16px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  text-align: left;
}

.check-list__item:before {
  content: "";
  position: absolute;
  left: 0;
  top: 5px;
  width: 19px;
  height: 19px;
}
.check-list__item.-color01:before {
  background: url(./img/check_icon01.png) no-repeat left top / contain;
}
.check-list__item.-color02:before {
  background: url(./img/check_icon02.png) no-repeat left top / contain;
}

.check-list__wrapper {
  display: inline-block;
}

.check-list__text {
  color: #e97c28;
  font-size: clamp(16px, 18 / 1024 * 100vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  display: inline-block;
}

.flow-list__item {
  position: relative;
  border-radius: 30px;
  padding: 30px;
  background: #fff;
}
.flow-list__item:before {
  content: "";
  background: url(./img/flow_arrow.png) no-repeat center bottom / contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -85px;
  margin-inline: auto;
  width: 52px;
  height: 67px;
}
.flow-list__item:last-child:before {
  content: none;
}

.flow-list__item.-color01 {
  border: 3px solid #ef99b1;
}
.flow-list__item.-color02 {
  border: 3px solid #e89456;
}
.flow-list__item.-color03 {
  border: 3px solid #4bbb88;
}

.flow-list__item-row {
  display: flex;
  justify-content: space-between;
}

.flow-list__heaidng {
  font-size: clamp(18px, 24 / 1024 * 100vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  padding: 0 20px;
  color: #fff;
  display: inline-block;
  margin-bottom: clamp(10px, 20 / 1024 * 100vw, 20px);
  text-align: left;
}

.flow-list__heaidng.-color01 {
  background: #ef99b1;
}
.flow-list__heaidng.-color02 {
  background: #e89456;
}
.flow-list__heaidng.-color03 {
  background: #4bbb88;
}

.flow-list__img {
  margin-left: 20px;
  flex: none;
}
.flow-list__img.-step04 {
  width: 320px;
}

/* -----一般歯科、予防歯科で使用----- */
.number-list-menu {
  display: flex;
  justify-content: space-between;
  padding: 0 20px;
}

.number-list-menu__item {
  width: 33.3%;
  margin-right: 20px;
  text-align: center;
  padding: 10px;
  border-radius: 30px;
  background: #fff;
}
.number-list-menu:last-child {
  margin-right: 0;
}

.number-list-menu__item.-list01 {
  -webkit-box-shadow: 10px 10px rgb(239 153 177 / 50%);
  box-shadow: 10px 10px rgb(239 153 177 / 50%);
}
.number-list-menu__item.-list02 {
  -webkit-box-shadow: 10px 10px rgb(232 148 86 / 50%);
  box-shadow: 10px 10px rgb(232 148 86 / 50%);
}
.number-list-menu__item.-list03 {
  -webkit-box-shadow: 10px 10px rgb(75 187 136 / 50%);
  box-shadow: 10px 10px rgb(75 187 136 / 50%);
}

.number-list-menu__item-inner {
  border-radius: 30px;
  padding: 20px 10px;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.number-list-menu__item-inner.-list01 {
  border: 1px solid #ef99b1;
}
.number-list-menu__item-inner.-list02 {
  border: 1px solid #e89456;
}
.number-list-menu__item-inner.-list03 {
  border: 1px solid #4bbb88;
}

.number-list-menu__number,
.number-list__top__number {
  font-size: clamp(30px, 48 / 1024 * 100vw, 48px);
  font-weight: 500;
  line-height: 1;
  margin-bottom: 20px;
}
.number-list-menu__number.-list01,
.number-list__top__number.-list01 {
  color: #ef99b1;
}
.number-list-menu__number.-list02,
.number-list__top__number.-list02 {
  color: #e89456;
}
.number-list-menu__number.-list03,
.number-list__top__number.-list03 {
  color: #4bbb88;
}

.number-list-menu__heading,
.number-list__top-heading {
  text-align: center;
  font-size: clamp(20px, 24 / 1024 * 100vw, 24px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 20px;
}
.number-list-menu__heading.-list01,
.number-list__top-heading.-list01 {
  color: #ef99b1;
}
.number-list-menu__heading.-list02,
.number-list__top-heading.-list02 {
  color: #e89456;
}
.number-list-menu__heading.-list03,
.number-list__top-heading.-list03 {
  color: #4bbb88;
}

.number-list-menu__icon,
.number-list__top-icon {
  width: 100px;
  height: 100px;
  margin-inline: auto;
  margin-top: auto;
}

.number-list {
  background: #fff;
  border-radius: 30px;
  padding: 40px 30px;
}
.number-list.-list01 {
  border: 3px solid #ef99b1;
}
.number-list.-list02 {
  border: 3px solid #e89456;
}
.number-list.-list03 {
  border: 3px solid #4bbb88;
}

.number-list__top__head {
  width: 285px;
  flex: none;
  margin-right: clamp(20px, 30 / 1024 * 100vw, 30px);
  background: #fff;
  text-align: center;
  border-radius: 30px;
  padding: 30px 10px;
  position: relative;
}
.number-list__top__head.-list01 {
  border: 1px solid #ef99b1;
}
.number-list__top__head.-list02 {
  border: 1px solid #e89456;
}
.number-list__top__head.-list03 {
  border: 1px solid #4bbb88;
}

.number-list__content-heading {
  font-size: clamp(20px, 24 / 1024 * 100vw, 24px);
  font-weight: 500;
  border-left: 3px solid #7ebe33;
  padding-left: 10px;
  margin-bottom: clamp(10px, 24 / 1024 * 100vw, 20px);
  line-height: 1.5;
}

.number-list__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}

.number-list__top:before {
  content: "";
  background: url(./img/number_list_deco.png) no-repeat right bottom / contain;
  position: absolute;
  bottom: 0;
  right: 0;
  width: 199px;
  height: 214px;
}

.number-list__content-row2 {
  display: flex;
  justify-content: space-between;
}

.number-list__content-img {
  flex: none;
  margin-left: 30px;
}

.number-list01__content02 {
  background: #f8ecce;
  padding: 30px 15px 10px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.number-list01__content02-item {
  border-radius: 20px;
  background: #7ebe33;
  line-height: 1.5;
  padding: 5px 10px;
  width: 280px;
  color: #fff;
  font-size: clamp(16px, 20 / 1024 * 100vw, 20px);
  font-weight: 500;
  margin-right: 20px;
  text-align: center;
  margin-bottom: 20px;
}
.number-list01__content02-item--spacer {
  width: 100%;
}

.number-list01__content02-item:nth-of-type(2),
.number-list01__content02-item:last-child {
  margin-right: 0;
}

.number-list01__content03-row,
.number-list02__content01-row,
.number-list03__content02-row {
  display: flex;
  justify-content: space-between;
}

.number-list03__content02-row {
  justify-content: center;
  flex-wrap: wrap;
}

.number-list01__content03-item {
  width: 23%;
}
.number-list02__content01-item {
  width: 32%;
  border: 2px solid #e89456;
  border-radius: 20px;
  padding: 20px;
}

.number-list03__content02-item {
  max-width: 300px;
  width: calc(100% / 2 - 6%);
  flex: none;
  margin-right: 6%;
  border: 2px solid #4bbb88;
  border-radius: 20px;
  padding: 20px;
}

.number-list03__content02-item:nth-child(even) {
  margin-right: 0;
}

.number-list__last-text {
  color: #e97c28;
  font-size: clamp(16px, 18 / 1024 * 100vw, 18px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
/* -----/一般歯科、予防歯科で使用----- */

@media screen and (max-width: 1024px) {
  .services__top-img,
  .services__content-row-img {
    width: 45%;
  }
  .number-list-menu {
    padding: 0;
  }
  .number-list-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .number-list-menu__item {
    width: 48%;
    margin-bottom: 30px;
    margin-right: 2%;
  }

  .number-list-menu__item:nth-of-type(2) {
    margin-right: 0;
  }
  .number-list-menu__item:last-child {
    margin-bottom: 0;
  }
  .number-list__content-img {
    width: 40%;
  }

  .flow-list__img {
    width: 40%;
  }
}

@media screen and (max-width: 896px) {
  /* .section {
    padding: 0 30px 100px;
  } */

  /* ------横スクロール----- */
  .scroll-text {
    line-height: 1;
    background: #f38712;
    color: #fff;
    padding: 4px 10px;
    margin-bottom: 10px;
    border-radius: 5px;
    font-size: 14px;
  }

  .scroll-content {
    overflow: auto;
    overflow-x: scroll;
  }
  .scroll-content img {
    max-width: 1000px;
  }

  .scroll-item {
    width: 1000px;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-content::-webkit-scrollbar {
    height: 12px;
  }

  .scroll-content::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 6px;
  }

  .scroll-content::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 6px;
  }
  /* ------/横スクロール----- */

  /* -----スローガン----- */
  .services__slogan:before {
    right: -10px;
  }
  .services__slogan:after {
    left: -10px;
  }

  /* -----/スローガン----- */
}

@media screen and (max-width: 480px) {
  /* ------横スクロール----- */

  .scroll-content-sp {
    overflow: auto;
    overflow-x: scroll;
  }
  .scroll-content-sp img {
    max-width: 1000px;
  }

  .scroll-item-sp {
    width: 1000px;
    white-space: nowrap;
    overflow-scrolling: touch;
    -webkit-overflow-scrolling: touch;
  }

  .scroll-content-sp::-webkit-scrollbar {
    height: 12px;
  }

  .scroll-content-sp::-webkit-scrollbar-thumb {
    background: #aaa;
    border-radius: 6px;
  }

  .scroll-content-sp::-webkit-scrollbar-track {
    background: #ddd;
    border-radius: 6px;
  }
  /* ------/横スクロール----- */
  /* -----スローガン----- */
  .services__slogan-text {
    line-height: 1.5;
    margin-left: 10px;
    margin-right: 10px;
  }

  /* -----/スローガン----- */
  .services__top-img,
  .services__content-row-img {
    width: 100%;
    order: 1;
    margin-left: 0;
  }
  .services__top-text,
  .services__content-row-text {
    order: 2;
  }
  .services__slogan-text span {
    padding: 0 5px;
  }
  .services__top-row,
  .services__content-row,
  .number-list-menu {
    flex-direction: column;
  }

  .number-list-menu__item,
  .number-list-menu__item:nth-of-type(2),
  .number-list-menu__item:last-child {
    width: 90%;
    margin-inline: auto;
  }
  .number-list__top:before {
    width: 100px;
    height: 100px;
  }

  .number-list {
    padding: 30px 15px;
  }

  .number-list__top,
  .number-list__content-row2,
  .number-list02__content01-row,
  .number-list03__content02-row {
    flex-direction: column;
  }

  .number-list01__content03-row {
    flex-wrap: wrap;
  }
  .number-list01__content03-item {
    width: 48%;
  }
  .number-list02__content01-item {
    width: 100%;
  }

  .number-list__top__head {
    width: 100%;
    margin-right: 0;
  }
  .number-list__content-img {
    margin-left: 0;
    width: 100%;
  }
  .number-list01__content02-item,
  .number-list03__content02-item {
    margin-right: 0 !important;
		max-width: 100%;
    width: 100%;
  }
	.number-list03__content02-img img {
		margin-left: auto;
		margin-right: auto;
	}

  .check-list__row {
    flex-direction: column;
  }
  .check-list__row .check-list:nth-of-type(1) {
    margin-right: 0;
  }
  .check-list__flame {
    padding: 30px 15px;
    text-align: unset;
  }
  .check-list__item {
    text-align: unset;
  }
  .check-list__item:before {
    top: 3px;
  }

  .flow-list__item-row {
    flex-direction: column;
  }
  .flow-list__item {
    padding: 30px 15px;
  }
  .flow-list__img {
    width: 100%;
    margin-left: 0;
  }
  .flow-list__item:before {
    width: 40px;
    height: 40px;
    bottom: -55px;
  }

  .flow-list__img.-step04 {
    width: 100%;
  }
  .flow-list__heaidng {
    padding: 0 10px;
  }
}

/*================================
一般歯科
================================*/

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 834px) {
}

@media screen and (max-width: 480px) {
}

/*================================
予防歯科
================================*/

.pmtc__flow {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.pmtc__flow-item {
  position: relative;
  width: 27%;
  margin-right: 9.5%;
}
.pmtc__flow-item:before {
  content: "";
  background: url(./img/pmtc_flow_arrow.png) no-repeat right center / contain;
  position: absolute;
  right: -30%;
  top: 20%;
  width: 26.8%;
  height: 51px;
}
.pmtc__flow-item:nth-of-type(3):before,
.pmtc__flow-item:last-child:before {
  content: none;
}

.pmtc__flow-item:nth-of-type(4):after {
  content: "";
  background: url(./img/pmtc_flow_arrow.png) no-repeat left center / contain;
  position: absolute;
  left: -30%;
  top: 20%;
  width: 26.8%;
  height: 51px;
}

.pmtc__flow-item:nth-of-type(3),
.pmtc__flow-item:last-child {
  margin-right: 0;
}

.pmtc__flow-heading {
  color: #e97c28;
  font-size: clamp(16px, 18 / 1024 * 100vw, 18px);
  font-weight: 500;
  line-height: 1.5;
}

.preventive-number-list02__content02-row {
  display: flex;
  justify-content: space-between;
}
.preventive-number-list02__content02-item {
  width: 50%;
}
.preventive-number-list02__content02-item:nth-of-type(1) {
  margin-right: 40px;
}

.preventive__content02-list {
  display: flex;
  justify-content: center;
  background: #fafaf8;
  border-radius: 20px;
}
.preventive__content02-list-img {
}
.preventive__content02-list-img:nth-of-type(1) {
  margin-right: -40px;
}
.preventive__content02-list-img:nth-of-type(2) {
  margin-top: 40px;
}

@media screen and (max-width: 1024px) {
}

@media screen and (max-width: 834px) {
  .preventive__content02-list {
    flex-direction: column;
    max-width: 500px;
    margin-inline: auto;
  }
  .preventive__content02-list-img:nth-of-type(1),
  .preventive__content02-list-img:nth-of-type(2) {
    margin-inline: auto;
  }
}

@media screen and (max-width: 480px) {
  .pmtc__flow-item {
    width: 45%;
  }
  .pmtc__flow {
    justify-content: space-between;
  }
  .pmtc__flow-item:nth-of-type(2),
  .pmtc__flow-item:nth-of-type(4) {
    margin-right: 0;
  }
  .pmtc__flow-item:nth-of-type(3) {
    margin-right: 9.5%;
  }
  .pmtc__flow-item:nth-of-type(2):before,
  .pmtc__flow-item:nth-of-type(4):before {
    content: none;
  }
  .pmtc__flow-item:before {
    right: -20%;
    width: 18%;
  }
  .pmtc__flow-item:nth-of-type(4):after {
    left: -20%;
    width: 18%;
  }

  .preventive-number-list02__content02-row {
    flex-direction: column;
  }
  .preventive-number-list02__content02-item:nth-of-type(1) {
    margin-right: 0;
  }
  .preventive-number-list02__content02-item {
    width: 100%;
  }
  .preventive__content02-list-img:nth-of-type(2) {
    margin-top: 0;
  }
}

/*================================
歯周病
================================*/

.periodontal__content01-img {
  position: relative;
}
.periodontal__content01-graph {
  position: absolute;
  bottom: -30px;
  right: -30px;
}

.step05__content-row {
  display: flex;
  justify-content: space-between;
  background: #f8ecce;
  padding: 30px 20px;
}
.step05__content-row--center {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.step05__content-row__item {
  margin-right: 50px;
}

.step05__content-card {
  max-width: 300px;
  /* width: 31.5%; */
  border: 2px solid #e89456;
  border-radius: 20px;
  background: #fff;
  padding: 20px 15px;
  margin-right: 1.5%;
  flex: none;
  text-align: left;
}

.step05__content-card:nth-of-type(3),
.step05__content-card:last-child {
  margin-right: 0;
}

.step05__content-card-heading {
  color: #fff;
  border-radius: 20px;
  background: #7ebe33;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}

.step05__content-card-spacer {
  width: 100%;
}

@media screen and (max-width: 1024px) {
  .periodontal__content01-graph {
    right: 0;
    bottom: -10px;
    width: 40%;
  }
}

@media screen and (max-width: 834px) {
  .step05__content-row__item {
    margin-right: 20px;
  }
  /* .step05__content-row .step05__content-card {
    width: 35%;
  } */
}

@media screen and (max-width: 480px) {
  .periodontal__content01-graph {
    right: -10px;
    bottom: 10px;
  }

  .step05__content-row {
    padding: 20px 10px;
  }
  .step05__content-row .step05__content-card,
  .step05__content-card {
    width: 100%;
    max-width: 100%;
  }
  .step05__content-row,
  .step05__content-row--center {
    flex-direction: column;
  }
  .step05__content-row__item {
    margin-right: 0;
  }
  /* .step05__content-row {
  flex-wrap: wrap;
  justify-content: center;
} */
}

/*================================
小児歯科
================================*/

.child__content02-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.child__content02-list-item-spacer {
  width: 100%;
}
.child__content02-list-item {
  border-radius: 20px;
  border: 2px solid #e89456;
  padding: 20px;
  background: #fff;
  position: relative;
  max-width: 300px;
  margin-right: 30px;
}
.child__content02-list-item:nth-of-type(2),
.child__content02-list-item:last-child {
  margin-right: 0;
}
.child__content02-list-item.-width-wide {
  max-width: 615px;
}

.child__content02-list-number {
  font-size: 30px;
  font-weight: bold;
  color: #e89456;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  line-height: 40px;
  background: #fff;
  border: 2px solid #e89456;
  position: absolute;
  top: -20px;
  left: -25px;
  z-index: 5;
  text-align: center;
}
.child__content02-list-number-wrapper {
  position: absolute;
  top: -20px;
  left: -25px;
  z-index: 5;
  display: flex;
}
.child__content02-list-number.-item {
  position: static;
  margin-right: 10px;
}
.child__content02-list-last-text {
  color: #e97c28;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}
.child__content02-list-text-row {
  display: flex;
  justify-content: space-between;
}
.child__content02-list-text:nth-of-type(1) {
  margin-right: 30px;
}

.child__content02-attention {
  background: #f8ecce;
  padding: 30px;
}
.child__content02-attention-inner {
  display: flex;
  align-items: center;
  max-width: 800px;
  margin-inline: auto;
}
.child__content02-attention-img {
  margin-right: 20px;
  flex: none;
}
.child__content02-attention-heading {
  color: #f00;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 10px;
}

.child__content03-list {
  background: #f8ecce;
  padding: 30px;
}
.child__content03-list-row {
  display: flex;
  justify-content: space-between;
}

.child__content03-list-item {
  border-radius: 20px;
  border: 2px solid #e89456;
  padding: 20px;
  background: #fff;
  position: relative;
  width: calc(100% / 3 - 15px);
  margin-right: 15px;
  display: flex;
  flex-direction: column;
}
.child__content03-list-item:last-child {
  margin-right: 0;
}
.child__content03-list-img {
  margin-top: auto;
}
.child__content03-list-heading,
.child__content07-crad-heading {
  color: #fff;
  border-radius: 20px;
  background: #7ebe33;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}

.child__content03-list-last-text,
.child__content07-list-last-text {
  color: #e97c28;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
}

.child__content07-list {
  background: #f8ecce;
  padding: 30px 20px;
}
.child__content07-list-row {
  display: flex;
  justify-content: space-between;
}
.child__content07-crad {
  width: calc(100% / 4 - 10px);
  margin-right: 10px;
}
.child__content07-crad:last-child {
  margin-right: 0;
}
.child__content07-crad-lead {
  color: #fff;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}
.child__content07-crad-lead.-color01 {
  background: #ef99b1;
}
.child__content07-crad-lead.-color02 {
  background: #e89456;
}
.child__content07-crad-lead.-color03 {
  background: #4bbb88;
}
.child__content07-crad-lead.-color04 {
  background: #7e584a;
}

.child__content07-crad-check-list {
  background: url(./img/child_content_check_list_bg.png) no-repeat top center /
    cover;
  border-radius: 50px 0 50px 0;
  box-shadow: 0px 0px 15px -5px #777777;
  padding: 20px 15px 5px;
  text-align: center;
  height: 455px;
  text-align: left;
}
.child__content07-crad-check-list .check-list__item {
  font-size: clamp(16px, 18 / 1024 * 100vw, 18px);
}
.child__content07-crad-text {
  min-height: 160px;
}

@media screen and (max-width: 1024px) {
  .child__content07-crad-check-list {
    height: 470px;
  }
  .child__content07-list {
    padding: 30px 20px;
  }
}

@media screen and (max-width: 896px) {
  .child__content07-list-row {
    flex-wrap: wrap;
  }
  .child__content07-crad {
    width: calc(100% / 2 - 30px);
    margin-right: 10px;
  }
  .child__content07-crad:nth-of-type(2) {
    margin-right: 0;
  }

  .child__content07-list {
    padding: 30px 50px;
  }

  .child__content07-crad-text {
    min-height: 90px;
  }

  .child__content07-crad-check-list {
    height: 300px;
  }
}

@media screen and (max-width: 480px) {
  .child__content02-list-item {
    margin-right: 0;
  }

  .child__content02-list-number {
    left: -10px;
    top: -10px;
  }
  .child__content02-list-text-row,
  .child__content02-attention-inner,
  .child__content03-list-row,
  .child__content07-list-row {
    flex-direction: column;
  }

  .child__content02-list-text:nth-of-type(1) {
    margin-right: 0;
  }

  .child__content07-list {
    padding: 30px 10px;
  }
  .child__content02-attention-img {
    margin-inline: auto;
    width: 30%;
  }

  .child__content03-list-item,
  .child__content07-crad {
    width: 100%;
    margin-right: 0;
  }
  .child__content03-list {
    padding: 30px 10px;
  }
  .child__content07-crad-text {
    min-height: auto;
  }
  .child__content07-crad-check-list {
    height: auto;
    padding: 20px;
  }

  .child__content02-list-number-wrapper {
    left: -15px;
  }
}

/*================================
セラミック治療
================================*/

.ceramic__list-flame {
  background: #f8ecce;
  padding: 30px;
}
.ceramic__list-row {
  display: flex;
  justify-content: space-between;
}
.ceramic__list-row.-center {
  justify-content: center;
}
.ceramic__list-heading {
  color: #fff;
  border-radius: 20px;
  background: #7ebe33;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}
.ceramic__list-heading-wrapper {
  position: relative;
}
.insurance-text {
  width: 70px;
  height: 70px;
  background: #e97c28;
  color: #fff;
  border-radius: 50%;
  line-height: 70px;
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  position: absolute;
  right: 0;
  top: -15px;
  margin: auto;
}

.ceramic__list-item {
  border: 2px solid #e89456;
  border-radius: 20px;
  background: #fff;
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: column;
  /* max-width: 300px;
  margin-right: 20px; */
  width: calc((100% - 40px) / 3);
}
.ceramic__list-item.-row2-item {
  width: auto;
  max-width: 300px;
}

.ceramic__list-item.-mr-wide {
  margin-right: clamp(20px, 100 / 1200 * 100vw, 100px);
}

.ceramic__list-demerit {
  margin-top: auto;
}

.ceramic__list-merit span {
  color: #ed1e79;
  font-weight: bold;
}
.ceramic__list-demerit span {
  color: #6493f8;
  font-weight: bold;
}

.ceramic__content05-table {
}

.ceramic__content05-table {
  border: 2px solid #a38b78;
  background: #fff;
  width: 100%;
}

.ceramic__content05-table,
.ceramic__content05-table td,
.ceramic__content05-table th {
  border-collapse: collapse;
}
.ceramic__content05-table td,
.ceramic__content05-table th {
  padding: 10px;
  vertical-align: middle;
  font-size: clamp(14px, 18 / 1100 * 100vw, 18px);
  line-height: 1.5;
  border-right: 1px solid #a38b78;
  border-bottom: 1px solid #a38b78;
  text-align: center;
  font-weight: 500;
}

.ceramic__content05-table td:last-child,
.ceramic__content05-table th:last-child {
  border-right: none;
}

.ceramic__content05-table th {
  background: #7ebe33;
  color: #fff;
  text-align: center;
}

.ceramic__content05-table-price {
  width: 35%;
}
.ceramic__content05-table-price-item.-row {
  display: flex;
  justify-content: space-between;
}
.ceramic__content05-table-star {
  color: #7ebe33;
}
.ceramic__content05-table-head {
  border-bottom: 1px solid #a38b78;
}
.ceramic__content05-table td:nth-of-type(4) {
  width: 16%;
}

@media screen and (max-width: 1024px) {
  .insurance-text {
    right: -15px;
  }
}

@media screen and (max-width: 834px) {
}

@media screen and (max-width: 480px) {
  .ceramic__list-row {
    flex-direction: column;
  }

  .ceramic__list-item {
    width: 100%;
  }
  .ceramic__list-flame {
    padding: 30px 10px;
  }

  .ceramic__list-item.-mr-wide {
    margin-inline: auto;
  }
  .ceramic__list-item:last-child {
    margin-inline: auto;
  }
}

/*================================
ホワイトニング
================================*/

.whitening__content01-list,
.whitening__content02-list,
.whitening__content04-list,
.whitening__content06-list {
  background: #f8ecce;
  padding: 30px;
}

.whitening__content01-list-row,
.whitening__content02-list-row,
.whitening__content04-list-row {
  display: flex;
  justify-content: space-between;
}
.whitening__content01-list-row.-center {
  justify-content: center;
}
.whitening__content01-list-item {
  width: calc((100% - 19.15%) / 3);
  position: relative;
}
.whitening__content01-list-iteml:last-child {
  margin-right: 0;
}

.whitening__content01-list-item:before {
  content: "";
  background: url(./img/pmtc_flow_arrow.png) no-repeat right center / contain;
  position: absolute;
  right: -30%;
  top: 45%;
  width: 26.8%;
  height: 51px;
}
.whitening__content01-list-item:last-child:before {
  content: none;
}
.whitening__content01-list-heading,
.whitening__content02-list-heading {
  color: #fff;
  border-radius: 20px;
  background: #7ebe33;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}
.whitening__content01-list-text {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  max-width: 355px;
}

.whitening__content01-list-text {
  margin-right: clamp(20px, 50 / 1024 * 100vw, 50px);
}

.whitening__content02-list-item {
  border-radius: 20px;
  border: 2px solid #e89456;
  background: #fff;
  padding: 20px;
  width: calc((100% - 40px) / 3);
}

.whitening__price-text {
  /* background: #7ebe33; */
  background: #fff;
  /* color: #fff; */
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 10px;
  /* text-align: center; */
  border: solid #a38b78 2px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: right;
  gap: 20px;
  font-size: 18px;
}

.whitening__content04-list-item {
  position: relative;
  width: calc((100% - 19.15%) / 3);
  display: flex;
  flex-direction: column;
}
.whitening__content04-list-item:before {
  content: "";
  background: url(./img/pmtc_flow_arrow.png) no-repeat right center / contain;
  position: absolute;
  right: -30%;
  top: 40%;
  width: 26.8%;
  height: 51px;
}
.whitening__content04-list-item:last-child:before {
  content: none;
}

.whitening__content04-list-heading {
  color: #fff;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 20px 5px;
  text-align: center;
}
.whitening__content04-list-heading.-color01 {
  background: #ef99b1;
}
.whitening__content04-list-heading.-color02 {
  background: #e89456;
}
.whitening__content04-list-heading.-color03 {
  background: #7ebe33;
}

.whitening__content04-list-text {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  height: 100%;
}

.whitening__content04-list {
  position: relative;
}
.whitening__content04-list.-arrow:before {
  content: "";
  background: url(./img/flow_arrow.png) no-repeat center bottom / contain;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -85px;
  margin-inline: auto;
  width: 52px;
  height: 67px;
}

.whitening__content06-list-row {
  display: flex;
  justify-content: center;
}

.whitening__content06-list-item {
  border: 2px solid #e89456;
  border-radius: 20px;
  background: #fff;
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: column;
  max-width: 300px;
  margin-right: clamp(20px, 100 / 1200 * 100vw, 100px);
}

.whitening__content06-list-item:last-child {
  margin-right: 0;
}
.whitening__content06-list-heading {
  color: #e97c28;
  font-size: clamp(16px, 18 / 624 * 100vw, 22px);
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}

.whitening_content07 {
  border: 2px solid #7ebe33;
  border-radius: 20px;
  background: #fff;
  padding: 20px 20px 10px;
  width: 100%;
  margin-bottom: 40px;
}

.whitening_content07_text {
  font-size: clamp(16px, 18 / 624 * 100vw, 22px);
}

.whitening_content07:nth-of-type(2) {
  border-color: #ef99b1;
}

.whitening_content07 .whitening_content07_fimg {
  margin-right: clamp(20px, 40 / 1024 * 100vw, 40px);
  flex: none;
  margin-left: 0;
}
.whitening_content07 .whitening__content04-list-heading {
  padding: 5px;
}

@media screen and (max-width: 1024px) {
  .whitening__content02-list-item {
    width: calc((100% - 20px) / 3);
    padding: 20px 10px;
  }
  .whitening__content01-list,
  .whitening__content02-list,
  .whitening__content04-list,
  .whitening__content06-list {
    padding: 30px 10px;
  }

  .whitening__content01-list-item,
  .whitening__content04-list-item {
    width: calc((100% - 13%) / 3);
  }
  .whitening__content01-list-item:before,
  .whitening__content04-list-item:before {
    width: 18%;
    right: -20%;
  }
}

@media screen and (max-width: 896px) {
  .whitening__content01-list-item,
  .whitening__content04-list-item {
    width: calc((100% - 13%) / 3);
  }
  .whitening__content01-list-item:before,
  .whitening__content04-list-item:before {
    width: 18%;
    right: -20%;
  }
}

@media screen and (max-width: 480px) {
  .whitening_content07 .whitening_content07_fimg {
    margin-right: 0;
    order: 0;
    width: 100%;
  }

  .whitening__content01-list-row,
  .whitening__content02-list-row,
  .whitening__content04-list-row,
  .whitening__content06-list-row {
    flex-direction: column;
  }

  .whitening__content01-list-item,
  .whitening__content04-list-item,
  .whitening__content02-list-item {
    width: 100%;
  }

  .whitening__content06-list-item {
    width: 100%;
    margin-inline: auto;
  }
  .whitening__content06-list-item:last-child {
    margin-inline: auto;
  }

  .whitening__content01-list-item:before,
  .whitening__content04-list-item:before {
    background: url(./img/flow_arrow.png) no-repeat center bottom / contain;
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    bottom: -50px;
  }

  .whitening__content01-list-text {
    margin-right: 0;
  }
}

/*================================
インプラント
================================*/

.implant__content02-list,
.implant__content04-list {
  background: #f8ecce;
  padding: 30px;
  display: flex;
  justify-content: space-between;
}

.implant__content02-list-item01-text {
  background: #ef99b1;
  color: #fff;
  font-size: clamp(16px, 20 / 1024 * 100vw, 20px);
  text-align: center;
  font-weight: 500;
  line-height: 1.5;
}
.implant__content02-list-item01 {
  position: relative;
  margin-right: 10%;
}
.implant__content02-list-item01:before {
  content: "";
  background: url(./img/pmtc_flow_arrow.png) no-repeat right center / contain;
  position: absolute;
  right: -30%;
  top: 25%;
  width: 26.8%;
  height: 51px;
}

.implant__content02-list-item02 {
  width: 63.3%;
}

.implant__content03-row {
  display: flex;
  justify-content: space-between;
}

.merit-demerit {
  width: calc((100% - 40px) / 2);
}
.check-list__wrapper.-merit-demerit {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.check-list__text.-merit-demerit {
  margin-top: auto;
}
.check-list.-merit-demerit {
  max-width: 380px;
  margin-inline: auto;
}

.implant__content04-list-item {
  border-radius: 20px;
  border: 2px solid #e89456;
  background: #fff;
  padding: 20px 15px;
  width: calc((100% - 40px) / 3);
}
.implant__content04-list-heading {
  color: #fff;
  border-radius: 20px;
  background: #7ebe33;
  font-size: clamp(16px, 18 / 1024 * 100vw, 18px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}

.implant__content05-list-item {
  position: relative;
  width: calc((100% - 19.15%) / 3);
  display: flex;
  flex-direction: column;
}
.implant__content05-list-item:before {
  content: "";
  background: url(./img/pmtc_flow_arrow.png) no-repeat right center / contain;
  position: absolute;
  right: -30%;
  top: 40%;
  width: 26.8%;
  height: 51px;
}
.implant__content05-list-item:last-child:before {
  content: none;
}

.implant__content05-list-heading {
  color: #fff;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 20px 5px;
  text-align: center;
}
.implant__content05-list-heading-number {
  margin-right: 10px;
  font-size: clamp(24px, 30 / 1024 * 100vw, 30px);
}
.implant__content05-list-heading.-color01 {
  background: #ef99b1;
  height: 85px;
  padding: 5px;
}
.implant__content05-list-heading.-color02 {
  background: #e89456;
}
.implant__content05-list-heading.-color03 {
  background: #7ebe33;
}

.implant__content05-list-text {
  background: #fff;
  border-radius: 20px;
  padding: 10px;
  height: 100%;
}
.implant__content05-list {
  background: #f8ecce;
  padding: 30px;
}
.implant__content05-list-row {
  display: flex;
  justify-content: space-between;
}
.implant__price-text {
  background: #7ebe33;
  color: #fff;
  font-weight: 500;
  line-height: 1.5;
  padding: 5px 10px;
  display: inline-block;
}

@media screen and (max-width: 1024px) {
  .implant__content04-list-item {
    width: calc((100% - 20px) / 3);
    padding: 20px 10px;
  }
  .implant__content02-list,
  .implant__content04-list {
    padding: 30px 10px;
  }
}

@media screen and (max-width: 896px) {
  .implant__content05-list-item:before {
    width: 18%;
    right: -20%;
  }
  .implant__content05-list-item {
    width: calc((100% - 13%) / 3);
  }

  .implant__content02-list-item02 img {
    width: 600px;
  }
}

@media screen and (max-width: 480px) {
  .implant__content02-list,
  .implant__content04-list,
  .implant__content03-row,
  .implant__content05-list-row {
    flex-direction: column;
  }

  .implant__content02-list-item01 {
    margin-right: 0;
  }

  .implant__content02-list-item01:before {
    background: url(./img/flow_arrow.png) no-repeat center bottom / contain;
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    bottom: -50px;
  }

  .implant__content02-list-item02,
  .merit-demerit,
  .implant__content04-list-item,
  .implant__content05-list-item {
    width: 100%;
  }

  .implant__content02-list-item02 img {
    width: 400px;
  }

  .implant__content05-list-item:before {
    background: url(./img/flow_arrow.png) no-repeat center bottom / contain;
    top: auto;
    left: 0;
    right: 0;
    margin: auto;
    width: 40px;
    height: 40px;
    bottom: -50px;
  }

  .implant__content05-list {
    padding: 30px 10px;
  }
}

/*================================
小児歯科
================================*/

.denture__list-flame,
.denture__content04-list-flame {
  background: #f8ecce;
  padding: 30px;
}
.denture__list-row,
.denture__content04-list {
  display: flex;
  justify-content: space-between;
}
.denture__list-row.-center {
  justify-content: center;
}
.denture__list-heading {
  color: #fff;
  border-radius: 20px;
  background: #7ebe33;
  font-size: clamp(18px, 20 / 1024 * 100vw, 20px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}
.denture__list-heading-wrapper {
  position: relative;
}
.denture__list-item {
  border: 2px solid #e89456;
  border-radius: 20px;
  background: #fff;
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: column;
  /* max-width: 300px;
  margin-right: 20px; */
  width: calc((100% - 40px) / 3);
}
.denture__list-item.-row2-item {
  width: auto;
  max-width: 300px;
}

.denture__list-item.-mr-wide {
  margin-right: clamp(20px, 100 / 1200 * 100vw, 100px);
}

.denture__list-price {
  color: #fff;
  background: #7ebe33;
  line-height: 1.5;
  padding: 5px 0;
  text-align: center;
  font-weight: 500;
}

.denture__list-demerit {
  /* margin-top: auto; */
}

.denture__list-merit span {
  color: #ed1e79;
  font-weight: bold;
}
.denture__list-demerit span {
  color: #6493f8;
  font-weight: bold;
}
.denture__content04-list-item {
  width: calc((100% - 80px) / 4);
}

.denture__content04-list-heading {
  text-align: center;
  font-weight: 500;
  color: #f38712;
  font-size: clamp(16px, 18 / 1024 * 100vw, 18px);
}

@media screen and (max-width: 1024px) {
  .denture__list-flame,
  .denture__content04-list-flame {
    padding: 30px 10px;
  }
}

@media screen and (max-width: 896px) {
  .denture__content04-list-flame {
    padding: 30px 50px;
  }
  .denture__content04-list {
    flex-wrap: wrap;
  }
  .denture__content04-list-item {
    width: calc((100% - 40px) / 2);
  }
}

@media screen and (max-width: 480px) {
  .denture__list-row,
  .denture__content04-list {
    flex-direction: column;
  }
  .denture__content04-list-flame {
    padding: 30px 10px;
  }

  .denture__list-item,
  .denture__content04-list-item {
    width: 100%;
    margin-inline: auto;
  }

  .denture__list-item.-mr-wide {
    margin-right: 0;
    margin-inline: auto;
  }

  .denture__list-item:last-child {
    margin-inline: auto;
  }
}

/*================================

矯正歯科

================================*/
.orthodontic__content01-list {
  background: #f8ecce;
  padding: 30px;
}
.orthodontic__content01-list-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

.orthodontic__content01-list-heading {
  color: #fff;
  border-radius: 20px;
  background: #7ebe33;
  font-size: clamp(16px, 18 / 1100 * 100vw, 18px);
  line-height: 1.5;
  padding: 5px 10px;
  text-align: center;
}

.orthodontic__content01-list-item {
  border: 2px solid #e89456;
  border-radius: 20px;
  background: #fff;
  padding: 20px 20px 10px;
  display: flex;
  flex-direction: column;
  width: calc((100% - 40px) / 3);
}

.orthodontic__content01-list-arrow {
  text-align: center;
}
.orthodontic__content01-list-arrow-text {
  position: absolute;
  right: -100px;
  top: 10px;
  color: #f38712;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  font-size: clamp(16px, 18 / 480 * 100vw, 18px);
}
.orthodontic__content01-list-arrow-img {
  position: relative;
  display: inline-block;
  width: 500px;
  text-align: center;
}

.orthodontic__flow-list {
  background: #f8ecce;
  padding: 30px 55px;
}
.orthodontic__price {
  text-align: center;
}
.orthodontic__price-text {
  color: #fff;
  background: #7ebe33;
  line-height: 1.5;
  padding: 10px;
  text-align: center;
  font-weight: 500;
  display: inline-block;
}

.orthodontic__content05-list-heading {
  border-bottom: 1px solid #ccc;
  font-weight: 500;
  line-height: 1.5;
  text-align: left;
  font-size: clamp(18px, 24 / 480 * 100vw, 24px);
}

@media screen and (max-width: 1024px) {
  .orthodontic__content01-list {
    padding: 30px 10px;
  }
  .orthodontic__content01-list-item {
    width: calc((100% - 30px) / 3);
  }

  .orthodontic__content01-list-item {
    padding: 20px 15px 10px;
  }
}

@media screen and (max-width: 896px) {
  .orthodontic__flow-list img {
    width: 800px;
  }
}

@media screen and (max-width: 480px) {
  .orthodontic__content01-list-row {
    flex-direction: column;
  }

  .orthodontic__flow-list {
    padding: 30px 10px;
  }

  .orthodontic__content01-list-item {
    width: 100%;
  }
  .orthodontic__content01-list-item {
    width: 100%;
  }

  .orthodontic__content01-list-arrow-img {
    width: 100%;
  }

  .orthodontic__content01-list-arrow-text {
    position: static;
    text-align: center;
  }

  .orthodontic__flow-list img {
    width: 600px;
  }
}

/*================================

歯科口腔外科

================================*/

.surgery__content01-menu {
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-flow: row wrap;
  flex-flow: row wrap;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.surgery__content01-menu-item {
  margin: 5px;
  padding: 1%;
  width: calc(100% / 4 - 2%);
  color: #fff;
  padding-bottom: 5px;
  transition: all 0.3s ease;
}

.surgery__content01-menu-item:hover {
  opacity: 0.5;
}
.surgery__content01-list-label {
  color: #fff;
  padding-bottom: 5px;
  padding-right: 10px;
  display: inline-block;
  width: 200px;
  display: flex;
  align-items: center;
}
.surgery__content01-menu-link {
  display: inline-block;
  width: 100%;
  height: 100%;
  color: #fff;
}

.surgery__content01-menu-item.-color01,
.surgery__content01-list-label.-color01 {
  background: #ef99b1;
}
.surgery__content01-menu-item.-color02,
.surgery__content01-list-label.-color02 {
  background: #e89456;
}
.surgery__content01-menu-item.-color03,
.surgery__content01-list-label.-color03 {
  background: #7ebe33;
}

.surgery__content01-menu-item.-number04 {
  font-size: 16px;
}

.surgery__list-number {
  background: url(./img/surgery_list_number_bg.png) no-repeat top center / cover;
  width: 36px;
  height: 44px;
  display: inline-block;
  text-align: center;
  margin-right: 10px;
}

.surgery__content01-list {
  background: #fff;
  border-radius: 30px;
  padding: 40px 30px;
}
.surgery__content01-list.-list01 {
  border: 3px solid #ef99b1;
}
.surgery__content01-list.-list02 {
  border: 3px solid #e89456;
}
.surgery__content01-list.-list03 {
  border: 3px solid #4bbb88;
}

.surgery__content01-list-row {
  display: flex;
  justify-content: space-between;
}
.surgery__content01-list-img {
  flex: none;
  margin-left: 30px;
}

.surgery__content01-list02 {
  display: flex;
  justify-content: space-between;
}
.surgery__content01-list02-heading {
  color: #e97c28;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  font-size: clamp(18px, 20 / 480 * 100vw, 20px);
}

.surgery__content01-list02-item01-row {
  display: flex;
  justify-content: space-between;
}

.surgery__content01-list02-item {
  background: #f8ecce;
  padding: 30px 10px;
  margin-right: 10px;
}
.surgery__content01-list02-item:last-child {
  margin-right: 0;
}
.surgery__content01-list02-item.-item01 {
  max-width: 500px;
}
.surgery__content01-list02-item.-item02,
.surgery__content01-list02-item.-item03 {
  max-width: 220px;
}
.surgery__content01-list02-img {
  max-width: 200px;
  margin-inline: auto;
}
.surgery__content01-list-wrapper {
  display: flex;
  justify-content: space-between;
}

.surgery__content01-list02-item01-row-item {
  width: calc((100% - 20px) / 2);
}
.surgery__content01-list.-row2 {
  width: calc((100% - 40px) / 2);
}
.surgery__content01-head-row {
  display: flex;
  align-items: flex-start;
}
.surgery__content01-list-label.-mr {
  flex: none;
  width: auto;
  display: flex;
  align-items: center;
}
.surgery__content04-list {
  background: #f8ecce;
  padding: 30px;
}
.surgery__content04-list-university {
  color: #e97c28;
  font-weight: 500;
  line-height: 1.5;
  text-align: center;
  font-size: clamp(18px, 24 / 480 * 100vw, 24px);
}
.surgery__content01-list-head-img {
  max-width: 260px;
  margin-left: 10px;
}
.surgery__content01-list02-text {
  font-size: clamp(14px, 24 / 1024 * 100vw, 16px);
  text-align: left;
}

@media screen and (max-width: 1024px) {
  .surgery__content01-menu {
    flex-wrap: wrap;
    justify-content: center;
  }

  .surgery__content01-menu-item {
    width: calc((100% - 40px) / 3);
    margin-right: 20px;
  }
  /*.surgery__content01-menu-item:nth-of-type(3),
.surgery__content01-menu-item:last-child {
  margin-right: 0;
}*/

  .surgery__content01-list02-img {
    max-width: 170px;
  }
}

@media screen and (max-width: 896px) {
  .surgery__content01-list02-img {
    max-width: 150px;
  }
}
@media screen and (max-width: 834px) {
  .surgery__content01-list02-img {
    max-width: 130px;
  }
}

@media screen and (max-width: 480px) {
  .surgery__content01-menu,
  .surgery__content01-list-row,
  .surgery__content01-list02,
  .surgery__content01-list-wrapper,
  .surgery__content01-head-row {
    flex-direction: column;
  }
  .surgery__content01-list02-img {
    max-width: 100%;
  }
  .surgery__content01-menu-item:nth-of-type(3),
  .surgery__content01-menu-item:last-child {
    margin-inline: auto;
  }
  .surgery__content01-menu-item {
    width: 70%;
    margin-inline: auto;
  }
  .surgery__content01-menu-item.-number04 {
    font-size: 14px;
  }
  .surgery__content01-list-label {
    font-size: 18px;
  }
  .surgery__content01-list-img {
    width: 100%;
    margin-left: 0;
    order: 1;
  }
  .surgery__content01-list-text {
    order: 2;
  }
  .surgery__content01-list-label {
    width: auto;
  }
  .surgery__content01-list {
    padding: 30px 15px;
  }
  .surgery__content01-list02-item.-item02,
  .surgery__content01-list02-item.-item03 {
    width: 100%;
    max-width: 100%;
  }
  .surgery__content01-list02-item {
    margin-right: 0;
    width: 100%;
  }
  .surgery__content01-list.-row2 {
    width: 100%;
  }
  .surgery__content01-list-head-img {
    margin-inline: auto;
    max-width: 100%;
  }
  .surgery__content04-list {
    padding: 30px 15px;
  }
}

/*================================

歯科口腔外科

================================*/

.visit_content01_img02s {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 50px;
}

.visit_map {
  width: 100%;
  height: 480px;
}

.visit__content02-list {
  justify-content: center;
  gap: 80px;
}

.visit_tel {
  display: block;
  text-align: center;
  font-weight: 700;
}

@media screen and (max-width: 1024px) {
  .visit__content02-list .whitening__content04-list-item:before {
    right: -25%;
  }
}

@media screen and (max-width: 896px) {
  .pmtc_flow_arrow_visit {
    max-width: 35px;
  }
}
@media screen and (max-width: 834px) {
  .visit__content02-list .whitening__content04-list-item:before {
    right: -29%;
  }
}

@media screen and (max-width: 480px) {
  .visit__content02-list .whitening__content04-list-item:before {
    right: 0;
  }
}

/*================================

料金表

================================*/

.services_price_wrap {
  margin-bottom: 40px;
}

.services_price_tbl {
  width: 100%;
  border: solid #a38b78 2px;
}
.services_price_tbl th {
  width: 50%;
}
.services_price_tbl th,
.services_price_tbl td {
  /* background: #7ebe33; */
  background: #fff;
  border: solid #a38b78 1px;
  /* color: #fff; */
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 10px;
  /* text-align: center; */
  vertical-align: middle;
  font-size: clamp(14px, 18 / 1100 * 100vw, 16px);
}
/* .services_price_tbl td:nth-of-type(2) {
  text-align: center;
} */
.services_price_tbl td:last-of-type {
  text-align: right;
}

/*テーブル02*/
.services_price_tbl02 {
  width: 100%;
  border: solid #a38b78 2px;
}
.services_price_tbl02 th,
.services_price_tbl02 td {
  padding: 8px 10px;
  vertical-align: middle;
  background: #fff;
  border: solid #a38b78 1px;
  font-size: clamp(14px, 18 / 1100 * 100vw, 16px);
  font-weight: 500;
  line-height: 1.5;
}
.services_price_tbl02 thead th.-wid10 {
  width: 10%;
}
.services_price_tbl02 thead th.-wid15 {
  width: 15%;
}
.services_price_tbl02 thead th.-wid20 {
  width: 20%;
}
.services_price_tbl02 thead th.-wid30 {
  width: 30%;
}
.services_price_tbl02 thead th.-wid40 {
  width: 40%;
}
.services_price_tbl02 thead th.-insurancecoverage {
  width: 60px;
}
.services_price_tbl02 tbody td.-star {
  color: #7ebe33;
}
.services_price_tbl02 tbody td.-insurancecoverage {
  text-align: center;
}
.services_price_tbl02 tbody td.-price {
  text-align: right;
}

/*テーブルのヘッド*/
.services_price_tbl_thead {
  border-bottom: 1px solid #a38b78 !important;
}
.services_price_tbl_thead.services_price {
  border-bottom: 1px solid #a38b78 !important;
}
.services_price_tbl_thead > * > *,
.services_price_tbl_thead > * {
  background: #7ebe33 !important;
  color: #fff;
  text-align: center !important;
}

.zeikomi {
  padding-top: 30px;
  position: relative;
}
.zeikomi::before {
  content: "すべて税込表記";
  position: absolute;
  top: 0;
  right: 0;
  text-align: right;
  font-size: clamp(14px, 18 / 1024 * 100vw, 18px);
}

.services_price_wrap .services_price:not(:last-of-type) {
  border-bottom: none;
}
.services_price {
  display: flex;
  justify-content: space-between;
  text-align: right;
  margin-bottom: 80px;
  position: relative;
  border: solid #a38b78 2px;
}

.services_price_item {
  /* background: #7ebe33; */
  background: #fff;
  /* color: #fff; */
  font-weight: 500;
  line-height: 1.5;
  padding: 8px 10px;
  width: 50%;
}
.services_price_item:first-of-type {
  border-right: solid #a38b78 1px;
  text-align: left;
  width: 50%;
}

.check-list__ttl {
  color: #f38712;
  font-size: clamp(18px, 24 / 1100 * 100vw, 24px);
  text-align: center;
}

.deduction__list {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  margin-bottom: 60px;
}

.deduction__list--item {
  background: #fff;
  border-radius: 20px;
  width: calc(100% / 4 - 40px);
  padding: 60px 0;
  vertical-align: middle;
  position: relative;
  text-align: center;
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-weight: 500;
}

/* 色 */
.deduction__list--item:nth-of-type(1) {
  border: 5px solid #3dba98;
  color: #3dba98;
  background: #dbedba;
}

.deduction__list--item:nth-of-type(2) {
  border: 3px solid #e89456;
  color: #e89456;
}

.deduction__list--item:nth-of-type(3) {
  border: 3px solid #ef99b1;
  color: #ef99b1;
}

.deduction__list--item:nth-of-type(4) {
  border: 3px solid #6493f8;
  color: #6493f8;
}

.deduction__list--item::after {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #333;
  position: absolute;
  right: -35px;
}

.deduction__list--item:nth-of-type(1)::after {
  right: -35px;
  top: 48%;
}

.deduction__list--item:nth-of-type(1)::before {
  content: "";
  position: absolute;
  width: 15px;
  height: 2px;
  background: #333;
  position: absolute;
  right: -35px;
  top: 52%;
}

.deduction__list--item:nth-of-type(2)::after {
  right: -35px;
  top: 50%;
}

.deduction__list--item:nth-of-type(3)::after {
  right: -35px;
  top: 50%;
}

.deduction__list--item:nth-of-type(4)::after {
  content: none;
}

@media screen and (max-width: 1024px) {
  .deduction__list .deduction__list--item {
    border-width: 2px;
  }

  .deduction__list {
    flex-wrap: wrap;
    margin-bottom: 30px;
  }

  .deduction__list--item {
    width: calc(100% / 3 - 30px);
    padding: 10px 5px;
  }

  .deduction__list--item:nth-of-type(2)::after,
  .deduction__list--item:nth-of-type(3)::after {
    width: 10px;
    right: -30px;
  }

  .deduction__list--item:nth-of-type(1) {
    width: 100%;
    margin-bottom: 30px;
    font-size: 14px;
    border-width: 5px;
  }

  .deduction__list--item:nth-of-type(1)::before {
    right: 0;
    left: 0;
    top: auto;
    bottom: -25px;
    width: 2px;
    height: 10px;
    margin: 0 auto;
  }

  .deduction__list--item:nth-of-type(1)::after {
    right: 10px;
    left: 0;
    top: auto;
    bottom: -25px;
    width: 2px;
    height: 10px;
    margin: 0 auto;
  }
}

@media screen and (max-width: 896px) {
}
@media screen and (max-width: 834px) {
}

@media screen and (max-width: 480px) {
  .services_price {
    flex-wrap: wrap;
    width: 100%;
  }
  .main .services_price_item {
    width: 100%;
  }

  .services_price_tbl {
    width: 600px;
	}
	.services_price_tbl02 th,
	.services_price_tbl02 td {}
  /*
  .services_price_tbl02 {
    width: 600px;
  }
  .services_price_tbl02 thead th.-wid10,
  .services_price_tbl02 thead th.-wid15,
  .services_price_tbl02 thead th.-wid20,
  .services_price_tbl02 thead th.-wid30,
  .services_price_tbl02 thead th.-wid40 {
    width: auto;
  }
  .services_price_tbl02 thead th.-features {
    width: 200px;
  }
  */

  .zeikomi::before {
    position: relative;
    text-align: left;
    display: block;
  }

  .services_price_item:first-of-type {
    /* border-bottom: none; */
    border-right: none;
    border-bottom: solid #a38b78 1px;
    text-align: left;
  }

  .deduction__list--item {
    width: calc(100% / 3 - 10px);
    font-size: 12px;
    padding: 10px 5px;
  }

  .deduction__list--item:nth-of-type(2)::after,
  .deduction__list--item:nth-of-type(3)::after {
    width: 10px;
    right: -15px;
  }

  .whitening__price-text {
    flex-direction: column;
    line-height: 2;
    padding: 3px 0px;
    gap: 0;
  }
  .whitening__price-text span {
    border-bottom: solid #a38b78 1px;
    display: block;
    width: 100%;
    text-align: center;
  }

  .services_price_tbl_thead.services_price {
    border-bottom: none !important;
    text-align: right;
  }

  .services_price_tbl_thead.services_price > *:last-of-type {
    text-align: right;
  }
}
