@charset "UTF-8";

/* ------
  - *基本設定
  - *パンくずリスト
  - *ページ内リンク
  - *ページャー
  - *書式設定
------ */

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

  *基本設定

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


main section {
/*   margin-bottom: 110px; */
	padding: 70px 0;
}

main section:nth-child(even) {
    position: relative;
    width: 100%;
    background: #f1ede947;
}

/* リッチ下層のコンテンツ幅 */
.mv_contents .inner,
main section .inner,
#breadcrumb.inner,
.page_links .inner {
  max-width: 1200px;
}

header::before {
  content: "";
}

/*==============================================
  *SP 基本設定
==============================================*/
@media screen and (max-width: 640px) {
  .inner {
    width: 100%;
    margin: auto;
    padding: 0 20px;
  }


  .facility_img {
    width: 60%;
    max-width: 400px;
    margin: 0 auto;
  }
}


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

  *パンくずリスト

==================================================================================================================================*/
#breadcrumb {
  margin: 30px auto!important;
}

#breadcrumb ol {
  counter-reset: unset;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 0;
}

#breadcrumb ol li {
  position: relative;
  margin: 0;
  line-height: 1.5;
}

#breadcrumb ol li:not(:last-child)::after {
  content: "\f054";
  position: relative;
  top: -1px;
  padding: 0 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 70%;
}

/*==============================================
  *SP パンくずリスト
==============================================*/
@media screen and (max-width: 640px) {
  #breadcrumb {
    margin: 0 0 30px;
    font-size: 13px;
  }

  #breadcrumb ol li:not(:last-child)::after {
    padding: 0 10px;
  }
}

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

  *ページ内リンク

==================================================================================================================================*/
.page_links {
  margin-bottom: 50px;
}

.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: #f7f7f7;
  color: var(--text-color);
  font-size: 95%;
  text-align: center;
  transition: color 0.2s , background 0.2s;
}

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

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

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

/*==============================================
  *SP ページ内リンク
==============================================*/
@media screen and (max-width: 640px) {
  .page_links li {
    width: 100%;
  }
}


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

  *ページャー

==================================================================================================================================*/
.pager {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  align-items: center;
  gap: 15px;
  margin: 30px auto 0;
  font-size: 15px;
}

.pager > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 35px;
  height: 34px;
  border-radius: 30px;
  background: #d7d7d7;
  color: #ffffff;
  line-height: 1;
}

.pager .current {
  background: var(--main-color);
  color: #ffffff;
}

.pager a:hover {
  background: #929292;
  color: #ffffff;
}

.pager .next,
.pager .prev {
  padding: 0 0 3px 1px;
  font-size: 150%;
}


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

  *書式設定

==================================================================================================================================*/
/* ----- 下層の見出しの上に余白を付ける ----- */
main:not(.front) h3:not(:first-of-type) {
  margin-top: 50px;
}
main:not(.front) h4:not(:first-of-type),
main:not(.front) h5:not(:first-of-type),
main:not(.front) h6:not(:first-of-type) {
  margin-top: 2em;
}

/* hタグの最初の要素のmarginをつけたい場合 */
h3.mtem {
  margin-top: 60px;
}

.mtem {
  margin-top: 2.5em;
}

.mbem {
  margin-bottom: 1em;
}

/* 段落余白 */
main .inner > *:not(h1,h2,h3,h4,h5) {
  margin-bottom: 1.5em;
}

main .inner > *:not(h1,h2,h3,h4,h5):last-child {
  margin-bottom: 0;
}

/* ----- text ----- */
.text {
  position: relative;
}

.text > *:not(h1,h2,h3,h4,h5):last-child {
  margin-bottom: 1.5em;
}

.text_inner {
  position: relative;
}

.text_inner > *:not(h1,h2,h3,h4,h5,h6) {
  margin-bottom: 1.5em;
}

.text_inner > *:not(h1,h2,h3,h4,h5,h6):last-child {
  margin-bottom: 0;
}

.yellowline {
  font-weight: bold;
  text-decoration: underline;
  text-decoration-color: rgb(255, 245, 157);

  text-decoration-thickness: 0.6em;
  text-underline-offset: -0.2em;
  text-decoration-skip-ink: none;
}


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

  *タイトル

==================================================================================================================================*/
h2,
h3,
h4,
h5,
h6 {
  position: relative;
  z-index: 1;
  line-height: 1.75;
	font-family: "fot-tsukuardgothic-std", sans-serif;
}



h2.special_title {
  margin: 0 0 50px;
  font-size: 190%;
  text-align: center;
	color: var(--main-color);
}

h2.special_title::before {
  content: attr(eng);
  display: block;
  margin: 0 auto 5px;
  color: var(--acce-color);
font-family: "paganini", serif;
}

h2.special_title::after {
  content: "";
  display: block;
  width: 40px;
  height: 2px;
  margin: 15px auto 0;
  background: var(--border-color);
}

.tit01 {
  margin-bottom: 20px;
  padding: 0 5px 10px;
  border-bottom: 1px  solid var(--main-color);
  color: var(--main-color);
  font-size: 150%;
	font-weight: bold;
}

.tit02 {
  width: fit-content;
  margin-bottom: 18px;
  padding: 8px 35px 8px 45px;
  background: var(--bg-color);
  color: var(--main-color);
/*   font-size: 130%; */
	font-size: 120%;
	font-weight: bold;
}

.tit02::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 8px;
  height: 100%;
  background: var(--sub-color);
}
.tit03 {
	width: fit-content;
    margin: 0 0 20px;
    padding: 5px 20px;
    background: #ffffff;
    border: 1px solid var(--border-color);
    font-size: 120%;
}
.bg01 {
	background: var(--bg-color);
	padding: 20px 30px;
}
/*==============================================
  *SP 
==============================================*/
@media screen and (max-width: 640px) {
  h2.special_title{
    font-size: 160%;
  }

  .tit02{
    padding: 7px 15px 7px 25px;
    font-size: 120%;
  }
}


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

  *メインビジュアル

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

/* MVの縁 */
#mainvisual::before,
#mainvisual::after {
  content: "";
  position: absolute;
  z-index: 2;
  display: block;
  width: 200px;
  height: 200px;
  background: url(../images/mv_frame.svg) no-repeat center / cover;
}

#mainvisual::before {
  bottom: 20px;
  left: 20px;
  opacity: 0.5;
}

#mainvisual::after {
  top: 20px;
  right: 20px;
  transform: rotate(180deg);
  opacity: 0.3;
}


/* ---------- 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%;
}

.mv_contents .inner {
  position: relative;
  z-index: 1;
  height: 100%;
	font-family: "fot-tsukuardgothic-std", sans-serif;
}

.mv_contents .catch {
  position: absolute;
	top: 27%;
  left: 0;
  z-index: 2;
  color: var(--main-color);
  font-size: 166%;
  line-height: 1.5;
  letter-spacing: 0.15em;
  transform: translateY(-50%);
	font-family: "yu-mincho-pr6n", sans-serif;
}

.mv_contents .catch span {
  font-size: 150%;
  width: fit-content;
/*   background: linear-gradient(25deg, #a5d46d, #8bc24a, #78b446, #64a03c); 
	-webkit-background-clip: text; 
	-webkit-text-fill-color: transparent; */
	color: #64a03c;
}

.mv_contents .catch span.text_120par {
  font-size: 120%;
  margin: 0;
  padding: 0;
  background: none;
  color: #444;
}
.mv_contents .catch_sub {
	    position: absolute;
    top: 11%;
    left: 0;
    z-index: 2;
    padding: 7px 20px;
    color: #fff;
	font-size: 129%;
	background-image: linear-gradient(25deg, rgba(212, 169, 105, 0.7), rgba(220, 180, 120, 0.7), rgba(230, 195, 145, 0.7), rgba(240, 210, 170, 0.7));
}

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

.top_list {
	position: absolute;
    bottom: 363px;
    left: 0;
    width: 100%;
    max-width: 550px;
    height: auto;
    margin-top: 40px;
    padding: 4px;
    background: rgb(255, 255, 255, 0.3);
}
.top_list .top_list_inner {
	    position: relative;
    z-index: 1;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    padding: 15px;
    background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}
.top_list .top_list_inner::before {
	    content: "";
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    background: url(../images/bnr_mable_silver.jpg) no-repeat center / cover;
}


/* ---------- チェック ---------- */
.top_list .top_list_inner ul {
  display: flex;
/*   flex-flow: column; */
	flex-flow: wrap;
  gap: 3px;
/* 	margin: 0 auto; */
}


.top_list .top_list_inner ul li {
  position: relative;
  padding: 0 0 0 30px;
  font-size: 17px;
	color: var(--main-color);
}

.top_list .top_list_inner ul li:before {
  content: "\f14a";
  position: absolute;
  top: 2px;
    left: 9px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-style: normal;
  color: var(--acce-color);
  font-size: 97%;
}


.mongolian_spot .bnr_facility {
background: rgb(255, 255, 255, 0) !important;
}
.bnr_wrap {
  display: flex;
  flex-flow: wrap;
  gap: 5px;
}

.bnr_wrap .bnr {
  display: block;
  width: 220px;
  height: 220px;
  padding: 3px;
  border-radius: 50%;
  background-image: linear-gradient(25deg, rgba(100, 160, 60, 0.35), rgba(120, 180, 70, 0.35), rgba(150, 200, 100, 0.35), rgba(200, 235, 180, 0.35));
  font-size: 93%;
  text-align: center;
}

.bnr_wrap .bnr .bnr_text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 15px 10px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(100, 160, 60, 0.75), rgba(100, 160, 60, 0.4), rgba(200, 235, 180, 0.9));
}
.bnr_wrap .bnr .bnr_text p {
	  color: #ffffff;
	line-height: 1.8;
}
.bnr_wrap .bnr .bnr_text p span {
	font-size: 140%;
	border-bottom: 1px solid rgba(255, 255, 255, 0.3);
	font-weight: bold;
}

.bnr_wrap .bnr.maincolor {
  background-image: linear-gradient(25deg, rgb(140, 33, 60 , 0.2), rgb(180, 109, 89 ,0.2), rgb(216, 178, 120 ,0.2), rgb(249, 249, 152 ,0.2));
}

.bnr_wrap .bnr.maincolor p {
  background-image: linear-gradient(25deg, rgb(140, 33, 60 , 0.6), rgb(180, 109, 89 ,0.6), rgb(216, 178, 120 ,0.6), rgb(249, 249, 152 ,0.6));
}

/* ----- 設備バナーエリア ----- */
.mv_contents .bnr_facility {
  position: absolute;
  bottom: 50px;
  left: 0;
  width: 100%;
  max-width: 550px;
  height: auto;
  margin-top: 40px;
  padding: 4px;
  background: rgb(255, 255, 255 , 0.3);
}

.facility_inner {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 15px;
  background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}

.facility_inner::before{
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: url(../images/bnr_mable_silver.jpg) no-repeat center / cover;
}

.bnr_facility .facility_text {
  width: calc(100% - 200px);
  padding: 10px 0 10px 10px;
  text-align: center;
}

.bnr_facility .facility_text .title {
  margin: 0 auto 20px;
  padding: 10px 10px;
  text-align: center;
  font-size: 150%;
	line-height: 1.2;
	background: var(--acce-color);
    color: #fff;
    text-align: center;
    position: relative;
    z-index: 1;
}
.bnr_facility .facility_text .title span {
	font-size: 80%;
}
.bnr_facility .facility_text .title::before {
	position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    background: #bf975a;
    opacity: 0.6;
    bottom: 0;
    right: 0;
    z-index: -1;
}

.bnr_facility .facility_text .item,
.bnr_facility .facility_text .sub_title {
  font-size: 140%;
  line-height: 1.5;
	color: var(--main-color);
}

.bnr_facility .facility_text .item01 {
/*   background: rgba(139, 194, 74, 0.7); */
  padding: 5px 10px;
  border-radius: 15px;
 color: #bf975a;
    font-size: 110%;
}

.bnr_facility .facility_text .item02 {
/*   background: rgba(221, 158, 193, 0.7); */
  padding: 5px 10px;
  border-radius: 15px;
     color: var(--sub-color);
	 font-size: 110%;
}

.bnr_facility .facility_text .title:not(:first-child) {
  margin-top: 20px;
}

.bnr_facility .facility_text .price {
  margin-top: 10px;
color: var(--main-color);
	 font-size: 180%;
}

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

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

.facility_inner:not(:has(.facility_img)) {
  padding: 0 15px;
}

.bnr_facility:not(:has(.facility_img)) .facility_text {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 20px;
}

.bnr_facility:not(:has(.facility_img)) .facility_text .title {
  width: 45%;
  margin: 0;
}

.bnr_facility:not(:has(.facility_img)) .facility_text .price {
  width: calc(55% - 20px);
  margin: 0;
  line-height: 1;
  padding: 10px 0;
}

.bnr_facility:not(:has(.facility_img)) .facility_text .price .txt14 {
  font-size: 14px;
}

/* ----- MVのSP用は非表示に ----- */
.mv_under {
  display: none;
}

/*==============================================
  *SP メインビジュアル
==============================================*/
@media screen and (max-width: 640px) {
  #mainvisual {
    position: relative;
    width: 100%;
    height: 255px;
  }

  #mainvisual::before,
  #mainvisual::after {
    width: 100px;
    height: 100px;
    opacity: 1;
  }

  #mainvisual::before {
    left: 10px;
  }

  #mainvisual::after {
    top: 10px;
    right: 10px;
  }

  #mainvisual .mv_img::before {
    height: 70px;
    background: linear-gradient(rgb(0, 0, 0, 0.2), transparent);
  }

  .mv_contents {
    padding: 0 20px;
  }

  .mv_contents .catch {
    top: 51%;
/*     left: -20px; */
    font-size: 115%;
  }

  .mv_contents .catch span {
   font-size: 120%;
  }
	.mv_contents .catch_sub {
		top: 19%;
		padding: 3px 11px;
		font-size: 100%;
	}

  .mv_contents .inner {
    margin: 0 auto;
    padding: 0;
  }

  /* テキストバナーエリア */
  .mv_contents .bnr_wrap {
    bottom: 30px;
  }
  .bnr_wrap {
    justify-content: center;
    gap: 5px;
  }
	
  .bnr_wrap_sp {
	display: flex!important;
  }
	
   .bnr_wrap .bnr {
/*      width: calc((100% / 3) - 5px); */
     height: auto;
     font-size: 3.5vw;
     aspect-ratio: 1 / 1;
   }
	.bnr_wrap.wide {
		gap: 3px;
	}
	 .bnr_wrap.wide .bnr {
     width: 166px;
		 height: 166px;
   }
	.bnr_wrap.wide .bnr p {
		font-size: 16px;
	}
	
/* リストバナー */
	.top_list {
	position: inherit;
    margin-bottom: 10px;
	}

  /* 設備紹介バナー */
  .bnr_facility .facility_inner {
    justify-content: center;
	align-items: center;
    width: 100%;
    margin: 0 auto 30px;
  }

  .bnr_facility .facility_text {
    width: 75%;
    padding: 0;
  }
	.bnr_facility .facility_text .title {
	font-size: 120%;
		padding: 7px 10px;
	}
  .bnr_facility .facility_text .item {
	font-size: 115%;	
  }

  .bnr_facility .facility_text .sub_title {
	font-size: 120%;	
  }
	
  .bnr_facility:not(:has(.facility_img)) .facility_text .title {
	font-size: 100%;	
  }
	
  .bnr_facility .facility_text .price {
	font-size: 176%;
	  margin-top: 5px;
  }

  .bnr_facility .facility_img {
    width: 25%;
    margin: 0;
  }

  /* ----- MVから非表示にするコンテンツを指定 ----- */
  .mv_contents .bnr_facility {
    display: none;
  }
  /* ----- MV内のコンテンツをMV下に表示 ----- */
  .mv_under {
    display: block;
  }

  .mv_under .bnr_wrap {
    display: none;
  }

  .mv_under .catch {
    display: none;
  }
	span.text_80par {
	font-size: 80% !important;
}
}


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

  *キャンペーンバナー

==================================================================================================================================*/
.cam_bn {
	margin: 0;
            padding: 40px 20px;
            display: flex;
            justify-content: center;
}

.bn {
            width: 100%;
            background: #fff;
            border: 1px solid #e8decb;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(0,0,0,0.03);
	    font-family: "fot-tsukuardgothic-std", sans-serif;
        }

        .bn-head {
            background: #a5d46d;
            color: #fff;
            text-align: center;
            padding: 24px 16px;
            position: relative;
			z-index: 1;
        }
.bn-head::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    background: var(--sub3-color);
    opacity: 0.6;
    bottom: 0;
    right: 0;
    z-index: -1;
}
        .bn-head .badge {
			padding: 7px 30px;
            display: inline-block;
            background: rgba(255,255,255,0.2);
            margin-bottom: 8px;
        }
        .bn-head h3 {
            font-size: 40px;
            margin: 0 0 5px;
            letter-spacing: 0.1em;
			font-weight: bold;
        }
        .bn-head p {
		    font-size: 120%;
			line-height: 1.2;
        }
        .bn-head::after {
                content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 35px solid transparent;
    border-right: 35px solid transparent;
    border-top: 16px solid #95CA59;
        }

        .bn-body {
            padding: 40px 24px;
			background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
        }
        .grid {
            counter-reset: number 0;
    display: flex;
    flex-flow: wrap;
    justify-content: center;
    gap: 16px;
        }

        .card {
            border: 1px solid #f0e6d6;
            padding: 20px;
            text-align: center;
            position: relative;
			 width: calc(33.3333333333% - 20px);
			background: #fff;
        }
        .card.best {
/*             border: 2px solid rgba(149, 201, 93, 0.4); */
			border: 2px solid rgb(217, 119, 6, 0.4);
        }
        .pop {
            position: absolute;
            top: 0;
            right: 0;
/*             background: #95c95d; */
			background: #d97706;
            color: #fff;
            font-size: 13px;
            font-weight: bold;
            padding: 2px 8px;
        }
        .tag {
            background: var(--acce-color);
            color: #fff;
            font-weight: bold;
            padding: 4px 20px;
            display: inline-block;
            margin-bottom: 12px;
        }
        .name {
			font-family: "fot-tsukuardgothic-std", sans-serif;
			font-size: 145%;
            font-weight: bold;
            color: #5a4a3a;
            height: 40px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 12px;
        }
        .old {
            text-decoration: line-through;
        }
        .new {
            font-size: 29px;
            font-weight: 900;
            color: #d97706;
        }

        @media (max-width: 640px) {
			.cam_bn {
				padding: 0;
			}
			.bn-head {
				padding: 16px 16px;
			}
            .bn-head h3 {
				font-size: 26px; 
				line-height: 1.2;
				margin: 10px 0 10px;
			}
			.bn-body {
				padding: 25px 15px;
			}
            .grid {
				grid-template-columns: 1fr; 
			}
			.card {
				width: 100%;
			}
			.name {
				margin-bottom: 0;
			}
        }
/*==================================================================================================================================

  *お悩みリスト

==================================================================================================================================*/
.worries_list {
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px 60px;
  padding: 60px 20px;
/*   background: var(--bg-color); */
	background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}

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

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

/*==============================================
  *SP お悩みリスト
==============================================*/
@media screen and (max-width: 640px) {
  .worries_list {
    justify-content: flex-start;
    padding: 25px 30px;
  }

  .worries_list li {
    padding: 0 0 0 28px;
    font-size: 115%;
  }

  .worries_list li::before{
    top: -13px;
    left: -15px;
  }
}


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

  *院長の想い

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


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

  *当院の特徴

==================================================================================================================================*/
.feature_list {
  display: flex;
  flex-flow: wrap;
  gap: 30px;
}

.feature_item {
/*   width: calc(50% - 20px); */
	width: 100%;
}

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

.feature_inner > *:not(h1,h2,h3,h4,h5):last-child {
  margin-bottom: 1em;
}

.feature_title {
  margin: 0 auto 15px;
  padding: 10px 20px 8px;
/*   background: linear-gradient(to right, rgb(115, 129, 155 , 0.8), rgb(97, 140, 156 , 0.8) , rgb(155, 152, 115 , 0.8)); */
    background: var(--acce-color);
  color: #ffffff;
  font-size: 110%;
}
.feature_title:before {
	    position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    background: #bf975a;
    opacity: 0.6;
    bottom: 0;
    right: 0;
    z-index: -1;
}

/*==============================================
  *SP 当院の特徴
==============================================*/
@media screen and (max-width: 640px) {
  .feature_list {
    flex-flow: column;
    gap: 20px;
  }

  .feature_item {
    width: 100%;
  }

  .feature_list.three .feature_item {
    width: 100%;
  }
}


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

  *追加費用

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

.cost li {
	position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  width: calc((100% / 4) - (60px / 4));
  height: auto;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  text-align: center;
/* background: var(--bg-color); */
	background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}
.cost li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid var(--main-color);
    transform: translate(-50%, -50%);
}
/* 3列 */
.cost.three {
  justify-content: center;
}
.cost.three li {
  width: calc((100% / 5) - (80px / 5));
}

.cost li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(221, 158, 193, 0.85), rgba(221, 158, 193, 0.55), rgba(245, 210, 230, 0.95));
  color: #fff;
  font-size: 32px;
}

.cost li .title {
  min-height: 64px;
  margin: 15px 0 0;
  font-size: 100%;
  text-align: center;
	    color: var(--main-color);
    font-family: "fot-tsukuardgothic-std", sans-serif;
}

.cost li .price {
  margin-top: 5px;
  font-size: 180%;
  line-height: 1.85;
}

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

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

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

/*==============================================
  *SP 追加費用
==============================================*/
@media screen and (max-width: 640px) {
  .cost {
    justify-content: flex-start;
    gap: 10px;
  }

  .cost li {
    justify-content: flex-start;
    width: calc(50% - 5px);
  }


  .cost.three li {
    width: calc(50% - 5px);
  }
}

@media screen and (max-width: 350px) {
  .cost {
    gap: 15px;
  }

  .cost li {
    width: 100%;
  }

  .cost.three li {
    width: 100%;
  }
}

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

  *お支払い方法

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

.pay li {
	position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  justify-content: flex-start;
  width: calc((100% / 4) - (60px / 4));
  height: auto;
  padding: 30px 20px;
  border: 1px solid var(--border-color);
  text-align: center;
/* background: var(--bg-color); */
	background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}
.pay li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    z-index: -1;
    display: block;
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    border: 1px solid var(--main-color);
    transform: translate(-50%, -50%);
}
/* 3列 */
.pay.three {
  justify-content: center;
}
.pay.three li {
      width: calc((100% / 3) - (80px / 3));
}

.pay li i {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100px;
  height: 100px;
  margin: 0 auto;
  border-radius: 50%;
     background: linear-gradient(135deg, rgba(100, 160, 60, 0.75), rgba(100, 160, 60, 0.4), rgba(200, 235, 180, 0.9));
  color: #fff;
  font-size: 32px;
}

.pay li .title {
/*   min-height: 64px; */
  margin: 15px 0 0;
  font-size: 140%;
  text-align: center;
	    color: var(--main-color);
    font-family: "fot-tsukuardgothic-std", sans-serif;
}

.pay li .price {
  margin-top: 5px;
  font-size: 100%;
  line-height: 1.85;
}

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

.pay li .cautionary {
  color: #5b5b5b;
  font-size: 80%;
}

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

/*==============================================
  *SP 追加費用
==============================================*/
@media screen and (max-width: 640px) {
  .pay {
    justify-content: flex-start;
    gap: 10px;
  }

  .pay li {
    justify-content: flex-start;
    width: calc(50% - 5px);
  }

  .pay.three li {
    width: calc(50% - 5px);
  }
}

@media screen and (max-width: 350px) {
  .pay {
    gap: 15px;
  }

  .pay li {
    width: 100%;
  }

  .pay.three li {
    width: 100%;
  }
}



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

  *当院が選ばれる理由

==================================================================================================================================*/
.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;
  width: 100%;
/*   padding: 20px 10px; */
	padding: 25px 10px 20px;
/*   background: linear-gradient(to right, rgb(115, 129, 155 , 0.8), rgb(97, 140, 156 , 0.8) , rgb(155, 152, 115 , 0.8)); */
	background: var(--acce-color);
  color: #ffffff;
  font-size: 120%;
  text-align: center;
}

.reason_title::before {
  /* content: "Reason" counter(number); */
  content: "0" counter(number);
  counter-increment: number;
  position: absolute;
  bottom: 7px;
  left: 15px;
  z-index: -1;
  color: #ffffff;
	font-family: "paganini", serif;
  font-size: 40px;
  line-height: 1;
  opacity: 0.3;
}
.reason_title::after {
	position: absolute;
    content: "";
    width: 100%;
    height: 100%;
    clip-path: polygon(100% 0%, 0% 100%, 100% 100%);
    background: #bf975a;
    opacity: 0.6;
    bottom: 0;
    right: 0;
    z-index: -1;
}
.reason_text {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 65%;
  padding: 10px 15px;
  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;
  }
}


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

  *料金表（タブ）

==================================================================================================================================*/
table {
	    width: 100%;
    border-collapse: collapse;
    border-spacing: 0;
    table-layout: fixed;
}
table th, table td {
border: 1px solid #f8f1e7;	
}
table th {
	background: linear-gradient(to right, #f8f1e7 0%, #f0e2d0 100%);
	color: var(--main-color);
}
.price_table tr:first-child th {
  background: var(--main-color);
  color: #ffffff;
}

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

.price_table tr:first-child th {
  background: #747474;
}

.price_table td {
  background: #ffffff;
}

.price_table th .small,
.price_table td .small {
  display: block;
  font-size: 85%;
  line-height: 1.75;
}

.price_tab .tab_list li {
  min-height: auto;
  padding: 20px 10px;
  font-size: 100%;
}

.price_tab .price_img {
  margin: 0 auto 15px;
}

.price_tab .panel {
  padding: 0 0 15px;
}

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

.price_tab table th,
.price_tab table td {
  background: #ffffff;
}

.price_tab table tr:not(:first-child) th {
  background: #f1f1f1;
  /* color: #ffffff; */
}

/* .price_tab table tr.select th {
  background: var(--main-color);
  color: #ffffff;
}

.price_tab table tr.select td {
  background: #f9f9ef;
} */

.price_tab table tr th.select {
  background: var(--main-color)!important;
  color: #ffffff;
}

.price_tab table tr:has(th.select) td {
  background: #f9f9ef;
}

.price_tab table th span {
  display: block;
  font-size: 80%;
}

.panel_wrap {
	padding: 20px;
    background: var(--bg-color);
}
/*==============================================
  *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: 15px 10px;
  }
	.scrolltable.small > table {
		min-width: 530px;
	}
	.panel_wrap {
	padding: 10px;
}
}


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

  *こんな方におススメ

==================================================================================================================================*/
.suggest_list {
  counter-reset: number 0;
}

.suggest_item {
  display: flex;
}

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

.suggest_title {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 20px 10px;
  background: linear-gradient(to right, rgb(115, 129, 155 , 0.8), rgb(97, 140, 156 , 0.8) , rgb(155, 152, 115 , 0.8));
  color: #ffffff;
  font-size: 120%;
  text-align: center;
}

.suggest_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.15;
}

.suggest_text {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  width: 65%;
  padding: 10px 20px;
  background: var(--bg-color);
}

/*==============================================
  *SP 後悔しないクリニック選びのポイント
==============================================*/
@media screen and (max-width: 640px) {
  .suggest_item {
    flex-flow: wrap;
  }

  .suggest_title {
    padding: 20px;
  }

  .suggest_text {
    width: 100%;
    padding: 20px;
  }
}


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

  *当院の医療脱毛が選ばれる5つの理由

==================================================================================================================================*/
.point_list {
  counter-reset: number 0;
  display: flex;
  flex-flow: wrap;
  justify-content: center;
  gap: 30px;
  height: 100%;
}

.point_item {
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: column;
  width: calc(33.3333333333% - 20px);
  padding: 50px 30px 90px;
/*  background: var(--bg-color); */
	background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}

.point_item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  display: block;
  width: calc(100% - 15px);
  height: calc(100% - 15px);
  border: 1px solid var(--main-color);
  transform: translate(-50%, -50%);
}

.point_item::after {
  content: "0" counter(number);
  counter-increment: number;
  position: absolute;
  top: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1;
  z-index: 2;
 font-family: "paganini", serif;
  font-style: normal;
  font-weight: 400;
  color: var(--main-color);
  font-size: 96px;
  line-height: 1;
  opacity: 0.2;
}

.point_title {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
  min-height: 75px;
  padding: 5px 0px 25px;
  font-family: "fot-tsukuardgothic-std", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 120%;
  line-height: 1.65;
  text-align: center;
}

.point_title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  display: block;
  width: 70px;
  height: 1px;
  background: var(--sub-color);
  transform: translateX(-50%);
}

.point_text {
  display: flex;
  flex-flow: column;
  align-items: start;
  gap: 15px;
  width: 100%;
  height: 100%;
  margin-top: 30px;
  background: var(--bg-color);
}

/* --------------------------
  ▼ SP
----------------------------- */
@media screen and (max-width: 768px) {
  .point_item {
    width: 100%;
    padding: 30px 25px 70px;
  }

  .point_item::after {
    font-size: 50px;
  }

  .point_title {
    min-height: auto;
    padding: 20px 10px;
  }

  .point_text {
    width: 100%;
  }
}

/* --------------------------
  ▼ table
----------------------------- */
.tb01 th {
	width: 25%;
}
.tb01 th.orange {
/* 	background: rgb(217, 119, 6, 0.2); */
	background: rgba(217, 119, 6, 0.7);
}
.tb01 td {
	padding: 25px 20px 20px;
	background: #fff;
}

.tb01 td span.mark {
	position: relative;
    bottom: 8px;
}
/*==================================================================================================================================

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

==================================================================================================================================*/
.risk_list {
  display: flex;
  flex-flow: column;
  gap: 30px;
  padding: 30px 40px;
/*   background: var(--bg-color); */
	background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}

.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%;
  color: var(--main-color);
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  letter-spacing: 0.1em;
}

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


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

  *よくある質問

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


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

  *WEB予約ボタン

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

.webyoyaku p {
  margin-bottom: 20px;
  font-size: 110%;
	font-family: "fot-tsukuardgothic-std", sans-serif;
}

.webyoyaku_btn {
  text-align: center;
}

.webyoyaku_btn a {
  position: relative;
  display: inline-block;
  min-width: 500px;
  padding: 15px 40px;
/*   background-image: linear-gradient(to right, var(--sub-color) 0%, var(--sub-color) 50%, transparent 50%, transparent 100%); */
	background: var(--sub3-color);
  background-position: 100% 0;
  background-size: 200% auto;
  color: #fff;
  font-size: 120%;
  letter-spacing: 0.15em;
  text-align: center;
  transition: background 0.5s, color 0.5s, padding 0.5s, border 0.5s;
  animation: btnSize 0.5s ease-in-out infinite alternate;
	border-radius: 50px;
	font-family: "fot-tsukuardgothic-std", sans-serif;
}
.webyoyaku_btn a::after {
            content: "";
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.3), transparent);
            transition: all 0.6s;
        }

        .webyoyaku_btn a:hover::after {
            left: 100%;
        }

        .webyoyaku_btn a:hover {
            background: #689f38;
            box-shadow: 0 10px 20px rgba(0,0,0,0.15);
        }

/* .webyoyaku_btn a:hover {
  padding: 15px 50px 15px 40px;
  border: 1px solid var(--sub-color);
  background-position: 0 0;
  color: #ffffff;
  animation-play-state: paused;
}

.webyoyaku_btn a::after {
  content: "";
  position: absolute;
  top: 48%;
  right: 35px;
  display: block;
  width: 23px;
  height: 5px;
  background: transparent;
  transform: translateY(-50%);
  opacity: 0;
  mask: url(../images/btn_arrow.svg) no-repeat center / cover;
  -webkit-mask: url(../images/btn_arrow.svg) no-repeat center / cover;
  animation: hideArrow 0.4s 0.2s ease-out forwards;
}

.webyoyaku_btn a:hover::after {
  background: #ffffff;
  animation: showArrow 0.3s 0.5s ease-out forwards;
} */

@keyframes showArrow {
  0% {
    right: 35px;
    opacity: 0;
  }
  100% {
    right: 20px;
    opacity: 1;
  }
}

@keyframes btnSize {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.025);
  }
}

/*==============================================
  *SP WEB予約ボタン
==============================================*/
@media screen and (max-width: 640px) {
  .webyoyaku_btn a {
    min-width: auto;
    padding: 15px 20px;
    font-size: 110%;
  }

  .webyoyaku_btn a:hover {
    padding: 15px 50px 15px 20px;
    animation-play-state: paused;
  }

  .webyoyaku_btn a::after {
    right: 20px;
    width: 23px;
    height: 5px;
  }

  .webyoyaku_btn a:hover:after {
    right: 15px;
  }
}

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

  *治療の流れ

==================================================================================================================================*/
.flow {
	    background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}
.flow_number span{
     background: linear-gradient(135deg, #664B38 0%, #664B38 50%, #866f60 50%, #866f60 100%);
}
.flow_inner .flow_title {
/* 	    border: 1px solid var(--main-color); */
    color: var(--main-color);
    font-family: "fot-tsukuardgothic-std", sans-serif;
}

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

  *経歴

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


.doctor_career {
  margin-top: 30px;
}

.career_box {
  padding: 30px;
/*   background: var(--bg-color); */
	background: url(../images/bg_marble_white.jpg);
    background-size: cover;
    background-position: bottom left;
}

.career_box:not(:last-of-type) {
  margin-bottom: 20px;
}

.career_box h3 {
  margin: 0 0 5px;
  padding: 0;
  background: none;
  border: none;
  font-size: 140%;
}

/* 日付あり */
.career_box dl {
  display: flex;
  gap: 10px;
  border-bottom: 1px dashed var(--border-color);
}

.career_box dl > * {
  padding: 10px 20px;
}

.career_box dt {
  width: 15%;
  font-weight: 500;
}

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

.doctor_freearea {
  margin-top: 30px;
}


@media screen and (max-width: 640px) {  
.doctor_name .position{
    margin: 10px 0 20px;
  }

  .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;
  }
}
.img_fl img, 
.img_fr img {
    max-width: 350px;
    max-height: 350px;
}
