@charset "UTF-8";
/* ------
  - *基本設定
  - *パンくずリスト
  - *ページ内リンク
  - *タブ
  - *アコーディオン
  - *メインビジュアル
  - *タイトル
  - *おすすめ
  - *お悩みリスト
  - *当院の特徴
  - *追加費用
  - *当院が選ばれる理由
  - *料金表
  - *注意点・副作用・リスク
  - *WEB予約ボタン
------ */
/* ==================================================================================================================================

  *基本設定

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
main section:nth-of-type(even) {
  padding: 120px 0;
  background: #f9fcff;
}

main section:not(:last-child) {
  margin-bottom: 120px;
}

main .wrapper {
  margin: 30px auto 120px;
}

main .contents {
  width: 100%;
}

main .inner {
  max-width: 1200px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  main section {
    margin-bottom: 80px;
  }
  main section:nth-of-type(even) {
    padding: 80px 0;
    background: #f9fcff;
  }
  main section:not(:last-child) {
    margin-bottom: 80px;
  }
  main .wrapper {
    margin: 0 auto 100px;
  }
  main .inner {
    max-width: 1200px;
  }
}
/* ==================================================================================================================================

  *パンくずリスト

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.breadcrumb {
  margin: 0 auto 30px !important;
}

.breadcrumb_list {
  counter-reset: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}
.breadcrumb_list li {
  position: relative;
  margin: 0;
  padding: 0;
  line-height: 1.5;
}
.breadcrumb_list li::after {
  content: "\f054";
  position: relative;
  top: -1px;
  padding: 0 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
}

/* 親ターム、子タームが複数ある場合、最後以外にカンマを表示 */
.breadcrumb_list li.parent:has(~ .parent)::after,
.breadcrumb_list li.child:has(~ .child)::after,
.breadcrumb_list li.grandchild:has(~ .grandchild)::after {
  content: ",";
  position: relative;
  top: 0;
  padding: 0 5px;
  font-family: inherit;
  font-weight: normal;
  font-size: 100%;
}

/* 最後の要素の矢印を消す */
.breadcrumb_list li:last-of-type::after {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .breadcrumb {
    font-size: 13px;
  }
}
/* ==================================================================================================================================

  *ページ内リンク

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.page_links {
  margin-bottom: 120px;
}

.page_links ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 10px;
}

.page_links li {
  position: relative;
  z-index: 1;
}

.page_links li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 12px 15px;
  background: var(--bg-color);
  border-radius: 3em;
  color: var(--text-color);
  font-size: 95%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: center;
  transition: color 0.2s, background 0.2s;
}

.page_links li a:hover {
  background: var(--main-color);
  color: #ffffff;
}

/* 2列 */
.twoLinks li {
  width: calc(50% - 5px);
}

/* 3列 */
.threeLinks li {
  width: calc(33.3333333333% - 6.6666666667px);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .page_links li {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *タブ

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.tab_list {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.tab_list li {
  display: flex;
  flex: 1;
  flex-flow: column;
  justify-content: center;
  align-items: center;
  width: fit-content;
  padding: 10px 20px;
  background: #a9a9a9;
  color: #ffffff;
  font-size: 140%;
  cursor: pointer;
  transition: transform 0.2s, padding 0.2s;
}
.tab_list li.is-active {
  background: var(--main-color);
}

.panel {
  display: none;
  margin: 0 !important;
  padding: 20px;
  background: var(--bg-color);
}
.panel > *:not(:last-child) {
  margin-bottom: 2em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .tab_list {
    flex-flow: column;
  }
  .tab_list li {
    width: 100%;
  }
  .panel {
    margin-top: 20px;
    padding: 15px;
  }
}
/* ==================================================================================================================================

  *アコーディオン

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.accordion dl:not(:last-child) {
  margin-bottom: 15px;
}
.accordion dl dt {
  position: relative;
  z-index: 1;
  background-color: var(--bg-color);
  font-weight: normal;
  transition: background 0.3s, color 0.2s;
}
.accordion.bg_white dl dt{
	background-color: #ffffff;
}
.accordion dl dt:hover {
  background: #f4f4f4;
}
.accordion dl dt::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 2;
  width: 15px;
  height: 2px;
  background: var(--main-color);
  transform: rotate(90deg);
  transition: transform 0.3s, opacity 0.3s;
}
.accordion dl dt::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 25px;
  z-index: 2;
  width: 15px;
  height: 2px;
  background: var(--main-color);
  transition: transform 0.3s, background 0.3s;
}
.accordion dl dt.is-active {
  background: var(--main-color);
  color: #ffffff;
}
.accordion dl dt.is-active::before {
  opacity: 0;
  transform: rotate(180deg);
}
.accordion dl dt.is-active::after {
  background: #ffffff;
}
.accordion dl dt > div {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 15px 60px 15px 25px;
  cursor: pointer;
  transition: background 0.2s;
}
.accordion dl dd {
  display: none;
}
.accordion dl dd > div {
  position: relative;
  z-index: 1;
  padding: 15px 25px;
}
.accordion dl dd > div > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}
.accordion dl dd > div > *:not(h1, h2, h3, h4, h5):last-child {
  margin-bottom: 0;
}

/* ----- FAQアコーディオン ----- */
.accordion.faq dl dt > div {
  position: relative;
  z-index: 1;
  margin: 0;
  padding: 15px 50px 15px 60px;
  cursor: pointer;
  transition: background 0.2s;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.accordion.faq dl dt > div::before {
  content: "Q.";
  position: absolute;
  top: 20px;
  left: 20px;
  color: var(--sub-color);
  font-size: 140%;
  line-height: 1;
}
.accordion.faq dl dt.is-active > div::before{
	color: #ffffff;
}
.accordion.faq dl dd > div {
  position: relative;
  z-index: 1;
  padding: 15px 25px 15px 60px;
}
.accordion.faq dl dd > div:before {
  content: "A.";
  position: absolute;
  top: 20px;
  left: 20px;
  color: #c52b2b;
  font-size: 140%;
  line-height: 1;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .accordion dl dt::before {
    right: 20px;
    width: 12px;
  }
  .accordion dl dt::after {
    right: 20px;
    width: 12px;
  }
  .accordion dl dt > div {
    padding: 15px 40px 15px 15px;
  }
  .accordion dl dd > div {
    padding: 15px;
  }
  /* ----- FAQアコーディオン ----- */
  .accordion.faq dl dt > div {
    padding: 15px 40px 15px 50px;
  }
  .accordion.faq dl dt > div::before {
    top: 18px;
  }
  .accordion.faq dl dd > div {
    padding: 15px 15px 15px 50px;
  }
}
/* ==================================================================================================================================

  *メインビジュアル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ----- #mainvisual ----- */
#mainvisual {
  position: relative;
  z-index: 1;
  height: 950px;
  margin: 0 0 0 auto;
  background: var(--main-color);
  overflow: hidden;
}

/* ---------- MVの画像 ---------- */
.mv_img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.mv_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ----- コンテンツ ----- */
.mv_contents {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 174, 255, 0.1), transparent);
}

.mv_contents .inner {
  position: relative;
  z-index: 1;
  height: 100%;
}

.mv_contents .catch {
  position: absolute;
  top: 45%;
  left: 0;
  z-index: 2;
  color: var(--text-color);
  font-size: 160%;
  letter-spacing: 0.2em;
  transform: translateY(-50%);
  paint-order: stroke;
  -webkit-text-stroke: 6px #ffffff;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.mv_contents .catch span {
  font-size: 130%;
}

.mv_contents .mv_bnr {
  position: absolute;
  bottom: 30px;
  left: 0;
  max-width: 500px;
}

/* ----- 小児矯正 ----- */
.mv_contents .catch_pedodontics{
	top: 50%;
	width: 100%;
}

/* ----- テキストバナーエリア ----- */
.mv_contents .bnr_wrap {
  position: absolute;
  right: 0;
  bottom: 30px;
}

.bnr_wrap {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}

.bnr_wrap .bnr {
  position: relative;
  display: block;
  width: 170px;
  height: auto;
  padding: 4px;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  font-size: 14px;
  text-align: center;
  aspect-ratio: 1;
}

.bnr_wrap .bnr p {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  padding: 15px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  font-size: 120%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}
.bnr_wrap .bnr p span span {
  font-size: 120%;
}

.mv_contents .bnr_facility {
  position: absolute;
  bottom: 50px;
  left: 0;
}

.mv_contents .bnr_facility .feature_list{
	position: relative;
}

.mv_contents .bnr_facility .feature_list::before {
  position: absolute;
  content: "無料！";
  top: -40px;
  left: -20px;
  z-index: 2;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 72px;
  padding: 10px 18px;
  background: var(--sub-color-pink);
  border-radius: 24px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-family: "Puhu Pokke", sans-serif;
  font-weight: 400;
  white-space: nowrap;
  transform: rotate(-12deg);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.mv_contents .bnr_facility .feature_list::after {
  position: absolute;
  content: "";
  top: -2px;
  left: 32px;
  z-index: 1;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 10px 0 10px;
  border-color: var(--sub-color-pink) transparent transparent transparent;
  transform: rotate(-25deg);
}

/* ----- 小児矯正歯科 ----- */
.bnr_wrap_pedodontics .bnr {
    width: 220px;
    font-size: 12px;
}

/* ----- 設備バナーエリア ----- */
.mv_contents .bnr_facility {
  margin-top: 40px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.3);
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  border-radius: 20px;
}

.facility_inner {
  display: flex;
  gap: 25px;
  width: fit-content;
  padding: 20px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 20px;
}

.bnr_facility .facility_text .title {
  margin: 0 auto 15px;
  padding: 5px 24px;
  background: linear-gradient(to right, var(--main-color), var(--sub-color));
  border-radius: 3em;
  color: #ffffff;
  text-align: center;
}

.bnr_facility .facility_text .price {
  margin-top: 10px;
  text-align: center;
}

.bnr_facility .facility_text .price span {
  font-size: 85%;
}

.bnr_facility .facility_text .price .subcolor_pink{
	font-size: 150%;
}

.bnr_facility .facility_img {
  max-width: 160px;
  height: auto;
  margin-top: -50px;
}

/* ----- 小児矯正----- */
.bnr_facility_pedodontics .facility_text .title{
	background: var(--sub-color-pink);
}

.mv_under {
  display: none;
}

.mv_contents_sp {
  display: none;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  #mainvisual {
    position: relative;
    width: 100%;
    height: 700px;
    margin-top: 55px;
  }
  .mv_contents {
    padding: 0 10px;
  }
  .mv_contents .catch {
    top: 38%;
	padding: 0 10px;
    font-size: min(3.6vw, 13.5px);
  }
  .mv_contents .inner {
    margin: 0 auto;
    padding: 0;
  }
  /* テキストバナーエリア */
  .mv_contents .bnr_wrap {
    right: 50%;
    bottom: 230px;
    width: 100%;
    transform: translateX(50%);
  }
  .bnr_wrap {
    justify-content: center;
    gap: 5px;
  }
  .bnr_wrap .bnr {
    width: calc(33.3333333333% - 3.3333333333px);
  }
  /* 設備紹介バナー */
  .bnr_facility .facility_inner {
    justify-content: center;
    width: 100%;
	padding: 10px;
    margin: 0;
  }
  .bnr_facility .facility_text {
    width: 100%;
    padding: 0;
  }
  .bnr_facility .facility_img {
    width: 30%;
    margin: 0;
  }
  .bnr_wrap .bnr p {
    padding: 2px;
    font-size: min(3vw, 18px);
  }
  .bnr_wrap .bnr p span span {
    font-size: 110%;
  }
  .mv_contents .mv_bnr {
	bottom: 10px;
	left: 0;
	right: 0;
	max-width: 355px;
	margin: 0 auto;
  }
	.mv_contents .bnr_facility{
		bottom: 30px;
		width: 100%;
		margin-top: 0;
	}
	.mv_contents .bnr_facility .feature_list::before{
		top: -36px;
		left: -5px;
		font-size: 14px;
	}
	.mv_contents .bnr_facility .feature_list::after {
    top: -4px;
    left: 31px;
}
  /* ----- MVから非表示にするコンテンツを指定 ----- */
  /* ----- MV内のコンテンツをMV下に表示 ----- */
  .mv_under {
    display: block;
  }
  .mv_under .bnr_wrap {
    display: none;
  }
}
/* ==================================================================================================================================

  *タイトル

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
h2.coming_title {
  margin-bottom: 25px;
  padding: 10px 15px 7px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 140%;
}

h2,
h3,
h4,
h5,
h6 {
  position: relative;
  z-index: 1;
  line-height: 1.75;
}

.special_title {
  position: relative;
  margin: 0 0 50px;
  font-size: 190%;
  text-align: center;
}
.special_title .large {
  padding: 0 4px;
  font-size: 110%;
}


.special_title .subttl {
  content: attr(eng);
  display: block;
  margin: 0 auto 16px;
  color: var(--main-color);
  font-size: 100%;
  line-height: 1;
  opacity: 0.8;
}

.special_title::before {
  content: attr(eng);
  display: block;
  margin: 0 auto 16px;
  color: var(--main-color);
  font-size: 100%;
  line-height: 1;
  opacity: 0.8;
}

.special_title::after {
  content: "";
  position: absolute;
  top: 48%;
  left: 51%;
  z-index: -1;
  width: 160px;
  height: auto;
  background: url(../images/common/logo_icon.png) no-repeat center/cover;
  opacity: 0.08;
  transform: translate(-50%, -50%);
  aspect-ratio: 768/813;
}

.tit01 {
  margin: 0 0 15px;
  color: var(--sub-color);
  font-size: 140%;
}

.tit02 {
  margin: 0 0 15px;
  padding: 10px;
  background: #ffffff;
  border: 1px solid var(--line-color);
  font-size: 120%;
  text-align: center;
}

.tit03 {
    margin-bottom: 10px !important;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--line-color);
    font-size: 120%;
}

@media screen and (max-width: 640px) {
  .special_title {
    font-size: 150%;
  }
}
/* ==================================================================================================================================

  *おすすめ

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.recommend_list {
  display: flex;
  justify-content: center;
  flex-flow: wrap;
  gap: 20px;
}

.recommend_item {
  position: relative;
  z-index: 1;
  width: calc(50% - 10px);
}

.recommend_item:has(.popular_title)::before {
  position: absolute;
  content: "無料！";
  top: -40px;
  left: -20px;
  z-index: 3;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 72px;
  padding: 10px 18px;
  background: var(--sub-color);
  border-radius: 24px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-family: "Puhu Pokke", sans-serif;
  font-weight: 400;
  white-space: nowrap;
  transform: rotate(-12deg);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.recommend_item:has(.popular_title)::after {
  position: absolute;
  content: "";
  top: -2px;
  left: 32px;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 14px 10px 0 10px;
  border-color: var(--sub-color) transparent transparent transparent;
  transform: rotate(-25deg);
}

.recommend_item .popular {
  position: absolute;
  top: -10px;
  left: -10px;
  z-index: 2;
  top: -40px;
  left: -20px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: 72px;
  padding: 10px 18px;
  background: var(--sub-color-pink);
  border-radius: 24px;
  color: #ffffff;
  font-size: 20px;
  line-height: 1.25;
  font-family: "Puhu Pokke", sans-serif;
  font-weight: 400;
  white-space: nowrap;
  transform: rotate(-12deg);
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}


.recommend_item .title {
  padding: 15px 30px;
  background: var(--bg-color);
  color: var(--main-color);
  font-size: 130%;
  text-align: center;
  paint-order: stroke;
  -webkit-text-stroke: 6px #ffffff;
}

.recommend_item .popular_title {
  position: relative;
  padding: 15px 60px;
}

.recommend_item .title .white {
  position: relative;
  top: -2px;
  display: inline-block;
  margin-right: 15px;
  padding: 2px 15px;
  background: #ffffff;
  border-radius: 300px;
  color: var(--main-color);
  font-size: 14px;
}

.recommend_item .title .small {
  font-size: 75%;
}

.recommend_text {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px;
  background: #ffffff;
  border: 1px solid var(--line-color);
  border-style: none solid solid solid;
  font-size: 150%;
}

.recommend_text .price .num {
  display: inline-block;
  margin-right: 15px;
  font-size: 80%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .recommend_list {
    flex-flow: column;
  }
  .recommend_item {
    width: 100%;
  }
  .recommend_item .popular_title {
    padding: 15px 50px;
  }
  .recommend_text {
    padding: 20px;
  }
}
/* ==================================================================================================================================

  *お悩みリスト

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.worries_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 20px 45px;
  padding: 40px 20px;
  background: var(--bg-color);
}

.worries_list li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 40px;
  font-size: 110%;
}

.worries_list li::before {
  content: "\f14a";
  position: absolute;
  top: 0;
  left: 0;
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  color: var(--main-color);
  font-size: 100%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .worries_list {
    justify-content: flex-start;
    padding: 25px 30px;
  }
  .worries_list li {
    padding: 0 0 0 35px;
  }
}
/* ==================================================================================================================================

  *当院の特徴

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.feature_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 80px 30px;
}

.feature_item {
  width: calc((100% / 3) - (60px / 3));
}

.feature_inner > *:not(:last-child) {
  margin-bottom: 1em;
}

.feature_title {
  margin-top: 20px !important;
  padding: 12px 20px 10px;
  background: var(--main-color);
  border-radius: 10px;
  color: #ffffff;
  font-size: 110%;
}

.feature_img.feature_img_small {
  width: 80%;
  margin: 0 auto;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .feature_list {
    flex-flow: column;
    gap: 40px;
  }
	.feature_item{
		width: 100%;
	}
}
/* ==================================================================================================================================

  *追加費用

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.cost {
  display: flex;
  flex-flow: wrap;
  gap: 20px;
}

.cost li {
  display: flex;
  flex-flow: column;
  width: calc(25% - 15px);
  height: auto;
  padding: 30px 16px;
  background: #ffffff;
  text-align: center;
}

.cost li i {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    margin: 0 auto;
    background: linear-gradient(to bottom right, var(--main-color) 0, var(--main-color) 65%, #ffc0bf 65%, #ffc0bf 100%);
    border-radius: 50%;
    color: #ffffff;
    font-size: 40px;
}

.cost li .title {
  margin: 15px 0 0;
  font-size: 120%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
  text-align: center;
}

.cost li .price {
  margin-top: 5px;
  font-size: 220%;
  line-height: 1.85;
	font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
}

.cost li .price span {
  display: inline-block;
  margin-right: 10px;
  color: var(--main-color);
  font-size: 70%;
}

.cost li .cautionary {
  color: #5b5b5b;
  font-size: 90%;
}

table.comparison tr:first-of-type > * {
  background: var(--main-color);
  color: #ffffff;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .cost {
    gap: 10px;
  }
  .cost li {
    justify-content: flex-start;
    width: calc(50% - 5px);
  }
}
@media screen and (max-width: 400px) {
  .cost {
    gap: 15px;
  }
  .cost li {
    width: 100%;
  }
}
/* ==================================================================================================================================

  *当院が選ばれる理由

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.reason_list {
  counter-reset: number 0;
}

.reason_item {
  display: flex;
}

.reason_item:not(:last-child) {
  margin: 0 0 20px;
}

.reason_title {
    position: relative;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 20px 10px;
    background: var(--main-color);
    color: #ffffff;
    font-size: 120%;
	font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    text-align: center;
}

.reason_title::before {
  /* content: "Reason" counter(number); */
  content: "0" counter(number);
  counter-increment: number;
  position: absolute;
  bottom: 10px;
  left: 15px;
  z-index: -1;
  color: #ffffff;
  font-size: 40px;
  line-height: 1;
  opacity: 0.3;
}

.reason_text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  flex-shrink: 0;
  width: 65%;
  padding: 20px;
  background: var(--bg-color);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .reason_item {
    flex-flow: wrap;
  }
  .reason_title {
    padding: 20px;
  }
  .reason_text {
    width: 100%;
    padding: 20px;
  }
}
/* ==================================================================================================================================

  *料金表

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.price_table tr:first-child th {
  background: var(--main-color);
  color: #ffffff;
}

.price_table tr:not(:first-child) th {
  background: #f1f1f1;
}

.price_table td {
  background: #ffffff;
}

.price_tab .tab_list li {
  min-height: auto;
  padding: 20px;
  border-radius: 30px 30px 0 0;
  font-size: 130%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
}

.price_tab .price_img {
  margin: 0 auto 15px;
  text-align: center;
}

.price_tab .panel .cautionary {
  margin-top: 15px;
  font-size: 90%;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .price_tab .tab_list {
    flex-flow: column;
    margin: 0 auto 10px;
  }
  .price_tab .tab_list li {
    width: 100%;
    padding: 5px 15px;
  }
}
/* ==================================================================================================================================

  *注意点・副作用・リスク

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.risk_list {
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 30px 40px;
  background: var(--bg-color);
}

.risk_list li {
  position: relative;
  z-index: 1;
  padding: 0 0 0 35px;
  font-size: 115%;
}

.risk_list li::before {
  content: "\f071";
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 50%;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: var(--main-color);
  letter-spacing: 0.1em;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .risk_list {
    padding: 30px 25px;
  }
}
/* ==================================================================================================================================

  *WEB予約ボタン

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.webyoyaku {
  text-align: center;
}

.webyoyaku p {
  margin-bottom: 10px;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  color: var(--sub-color-orange);
  font-size: 130%;
}

.webyoyaku_btn {
  animation: btnSize 0.5s ease-in-out infinite alternate;
}

.webyoyaku_btn a {
  position: relative;
  z-index: 1;
  display: inline-block;
  min-width: 500px;
  padding: 15px 20px;
  background: var(--sub-color-orange);
  border-radius: 300px;
  color: #ffffff;
  font-size: 120%;
  text-align: center;
  transition: filter 0.2s, opacity 0.2s;
}

.webyoyaku_btn a:hover {
  filter: brightness(1.2);
}

@keyframes btnSize {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.025);
  }
}
/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .webyoyaku p {
    font-size: 100%;
  }
  .webyoyaku_btn a {
    min-width: auto;
    padding: 15px 50px;
    font-size: 110%;
  }
}
/* ==================================================================================================================================

  *frame

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.frame01 {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  background: var(--bg-color);
  border-radius: 10px;
}
.frame01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
}
.frame01 p {
  font-size: 120%;
  font-family: dnp-shuei-mgothic-std, sans-serif;
  font-style: normal;
  font-weight: 400;
  text-align: center;
}

.frame01.frame01_small p{
	font-size: 1rem;
	text-align: left;
}

.number {
  counter-reset: number 0;
}

.number .frame01 {
  overflow: hidden;
}

.number .frame01:not(:last-of-type){
	margin-bottom: 48px;
}

.number .frame01::after {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
  position: absolute;
  right: 15px;
  bottom: 10px;
  z-index: -1;
  color: var(--main-color);
  font-size: 80px;
  font-weight: bold;
  line-height: 1;
  opacity: 0.15;
  pointer-events: none;
}

@media screen and (max-width: 640px) {
  .frame01 p {
    font-size: 100%;
    text-align: left;
}
  .number .frame01::after {
    right: 10px;
    bottom: 5px;
    font-size: 60px;
  }
}
/* ==================================================================================================================================

  flexbox

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
/* ------ flexbox01（改行せずに等間隔で配置） ------ */
.flexbox01 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.flexbox01 > * {
  flex: 1;
}

/* ------ flexbox02 ------ */
.flexbox02 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.flexbox02 > * {
  width: calc(50% - 5px);
}

/* ------ flexbox03 ------ */
.flexbox03 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.flexbox03 > * {
  width: calc(33.3333333333% - 6.6666666667px);
}

/* ------ flexbox04 ------ */
.flexbox04 {
  display: flex;
  flex-flow: wrap;
  gap: 10px;
}
.flexbox04 > * {
  width: calc(25% - 7.5px);
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  /* ------ flexbox01（改行せずに等間隔で配置） ------ */
  .flexbox01 > * {
    flex: none;
    width: 100%;
  }
  /* ------  flexbox02 ------ */
  .flexbox02 > * {
    width: 100%;
  }
  /* ------  flexbox03 ------ */
  .flexbox03 > * {
    width: 100%;
  }
  /* ------  flexbox04 ------ */
  .flexbox04 > * {
    width: 100%;
  }
}

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

  *その他スタイル

================================================================================================================================== */
.inner_bg_white{
	margin-top: 100px;
	padding: 60px 40px;
	background: #ffffff;
}
/* ------ 枠 ------ */
:is(.frame01, .frame02, .frame03) > *:not(h1, h2, h3, h4, h5) {
  margin-bottom: 2em;
}
:is(.frame01, .frame02, .frame03) > *:last-child {
  margin-bottom: 0;
}

.frame01 {
  position: relative;
  z-index: 1;
  padding: 40px 30px;
  background: var(--bg-color);
  border-radius: 10px;
}
.frame01::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 20px);
  height: calc(100% - 20px);
  border: 1px solid #ffffff;
  transform: translate(-50%, -50%);
}


.frame02 {
  padding: 20px 25px;
  background: var(--bg-color);
}

.frame03 {
  padding: 32px;
  border: 1px solid var(--line-color);
}

.img_fl,
.img_fr {
  position: relative;
  z-index: 2;
  display: block;
  margin-bottom: 20px;
}

.img_fl {
  float: left;
  margin-right: 30px;
  text-align: center;
}

.img_fr {
  float: right;
  margin-left: 30px;
  text-align: center;
}

.img_fl img,
.img_fr img {
  width: auto;
  max-width: 400px;
  height: auto;
  max-height: 400px;
}

.imgtxt {
  margin-top: 10px;
  text-align: center;
}

.float_clear {
  float: none !important;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
	.inner_bg_white {
    padding: 50px 20px;
}
  .img_fl,
  .img_fr {
    float: none;
    margin: 0 auto 2.25em;
    text-align: center;
  }
  .img_fl img,
  .img_fr img {
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: none;
  }
}

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

  *小児矯正ページ

================================================================================================================================== */
/* 小児矯正 */
.special-pedodontics {
  --main-color: var(--sub-color-pink);
  --sub-color: var(--sub-color-pink);
  --bg-color: var(--bg-color-pink);
}

.bnr_wrap_pedodontics .bnr.hukidashi::before {
    position: absolute;
    content: "乳歯が残っているなら";
    top: 26px;
    left: 50%;
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 10px 18px;
    background: var(--sub-color-pink);
    border-radius: 24px;
    transform: translateX(-50%);
    color: #ffffff;
    font-size: 15px;
    line-height: 1.25;
    font-family: dnp-shuei-mgothic-std, sans-serif;
    font-style: normal;
    font-weight: 400;
    white-space: nowrap;
    filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.15));
}

.bnr_wrap_pedodontics .bnr.hukidashi::after {
    position: absolute;
    content: "";
    top: 60px;
    left: 32px;
    z-index: 1;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 14px 10px 0 10px;
    border-color: var(--sub-color-pink) transparent transparent transparent;
    transform: rotate(-25deg);
}

.bnr_wrap_pedodontics .bnr.hukidashi p {
    padding-top: 28px;
}

.special-pedodontics section:nth-of-type(even){
	background: #fff8f8;
}

.special-pedodontics .special_title::after{
	background: url(../images/common/logo_icon_pink.png) no-repeat center/cover;
}

.special-pedodontics .recommend_item .title{
	background: #ffd9d9;
}
@media screen and (max-width: 640px){
	.bnr_wrap.bnr_wrap_pedodontics{
		bottom: 210px;
	}
.bnr_wrap_pedodontics .bnr.hukidashi::before {
        position: absolute;
        content: "乳歯が\A残っているなら";
        top: -16px;
        left: 50%;
        padding: 3px 18px 4px;
        line-height: 1.6;
        font-size: 10px;
        white-space: pre;
    }
	
	.bnr_wrap_pedodontics .bnr.hukidashi::after {
    top: 21px;
    left: 32px;
    border-width: 7px 5px 0 5px;
    transform: rotate(-15deg);
}
	
	.bnr_wrap_pedodontics .bnr.hukidashi p{
		padding-top: 22px;
	}
	
	.bnr_wrap_pedodontics .bnr{
		padding: 0;
	}
	.special_title::after{
		left: 54%;
	}
}
/* ==================================================================================================================================

  *医師紹介

================================================================================================================================== */
/* ----------------------------------------------------------------------
  ▼ PC
---------------------------------------------------------------------- */
.doctor_box:not(:last-child) {
  margin: 0;
  padding: 0 0 60px;
}
.doctor_box:not(:first-child) h2 {
  margin-top: 20px;
}

.doctor_flex {
  display: flex;
  justify-content: center;
  gap: 40px;
}

.doctor_text {
  width: 100%;
}
.doctor_text > *:not(:first-child) {
  margin-top: 30px !important;
}

.doctor_name {
  margin-top: 20px;
  line-height: 1.6;
  text-align: center;
  font-family: "Puhu Pokke", sans-serif;
  font-weight: 400;
}
.doctor_name .position {
  font-size: 180%;
}
.doctor_name .name {
  font-size: 180%;
}
.doctor_name .name span {
  margin-right: 10px;
  font-size: 70%;
}

.doctor_img {
  flex-shrink: 0;
  width: 350px;
}

.doctor_career {
  margin-top: 30px;
}

.career_box {
  padding: 30px;
  background: var(--bg-color);
  border-radius: 10px;
}
.career_box:not(:last-of-type) {
  margin-bottom: 20px;
}
.career_box h3 {
  margin: 0 0 5px;
  padding: 0;
  background: none;
  border: none;
  color: var(--text-color);
  font-size: 140%;
}
.career_box h3::before, .career_box h3::after {
  display: none;
}

/* 日付あり */
.career_box dl {
  display: flex;
  gap: 10px;
  border-bottom: 1px dashed var(--line-color);
}
.career_box dl > * {
  padding: 10px 20px;
}
.career_box dt {
  width: 15%;
}

/* 日付なし */
.career_box li {
  padding: 10px 20px;
  border-bottom: 1px dashed var(--line-color);
}

/* フリーエリア */
.doctor_freearea {
  margin-top: 30px;
}

/* ----------------------------------------------------------------------
  ▼ SP
---------------------------------------------------------------------- */
@media screen and (max-width: 640px) {
  .doctor_flex {
    flex-flow: column;
    gap: 30px;
  }
  .doctor_img {
    order: -1;
    width: 100%;
    margin: 0 auto;
  }
  .career_box {
    padding: 20px 25px;
  }
  .career_box h3 {
    margin: 0;
  }
  /* 日付あり */
  .career_box dl {
    flex-flow: column;
    gap: 0;
  }
  .career_box dl > * {
    padding: 10px;
  }
  .career_box dt {
    width: 100%;
    padding: 10px 10px 5px;
  }
  .career_box dd {
    width: 100%;
    padding: 5px 10px 10px;
  }
  /* 日付なし */
  .career_box li {
    padding: 10px;
  }
}