@charset "utf-8";
/* CSS Document */
html {
  font-size: 10px;
}
body {
  font-family: zen-kaku-gothic-new, sans-serif;
  color: #333;
  margin: 0 auto;
	max-width: 1920px;
}
a {
  text-decoration: none;
}
li {
  list-style: none;
}
img {
  max-width: 100%;
}
.sp-only {
	display: none;
}
.flex {
	display: flex;
}
.row {
	flex-direction: row-reverse;
}
.wrap {
	flex-wrap: wrap;
}
.ffft {
	font-family: "Futura PT Medium", "Futura PT Bold", "Futura PT Light";
}
.ffym {
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
}
.ffzm {
	font-family: zen-old-mincho, sans-serif;
}
.ffci {
	font-family: Cinzel, "Cinzel Black", "Cinzel Medium", "Cinzel SemiBold";
}
.ffzg {
	font-family:zen-kaku-gothic-new, sans-serif;
}
.ffst {
	font-family:Stencil;
}
.ffmg {
	font-family: "Zen Maru Gothic", serif;
}
.fwb {
	font-weight: 600;
}
.white {
	color: #fff;
}

.sp-only {
	display: none;
}
.spbr {
	display: none;
}

.cut {
	display: none;
}


/*========= 上部固定させるためのCSS ===============*/
#header{
	background: rgba(255,255,255,0.8);
	width:100%;/*横幅指定*/
	/*以下はレイアウトのためのCSS*/
	justify-content: space-between;
	align-items: center;
	color:#fff;
	text-align: center;
	padding: 10px 0px;
	box-sizing: border-box;
	position: fixed;
	top: 0;
	left: 50%;
	transform: translate(-50%);
	z-index: 2;
}

/*ヘッダー*/
#header .inner {
	width: 95%;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.head-logo a {
	display: block;
	width: 320px;
	text-align: center;
}
.head-r-top {
	max-width: 450px;
	margin-left: auto;
	margin-bottom: 2rem;
	align-items: center;
	gap: 3rem;
}
.head-tel a {
	display: block;
	color: #707070;
	font-size: 22px;
	font-weight: 500;
	letter-spacing: 2px;
}
.head-tel a i {
	color: #49B9A5;
	margin-left: 2rem;
}
.head-web {
	background: #49B9A5;
	padding: 1rem 2.5rem;
	border-radius: 1rem;
}
.head-web a {
	font-size: 18px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 2px;
}

/*========= 以下は検証用のレイアウトのためのCSS ===============*/
nav ul{
	align-items: center;
	gap:5rem;
}
nav ul li a{
	display: block;
	color: #707070;
	font-size: 18px;
	text-align: center;
	line-height: 1.5;
	font-weight: 500;
	letter-spacing: 1.5px;
}

/*下の階層を持っているulの指定*/
nav li.has-child {
	position: relative;
}
nav li.has-child ul{
    /*絶対配置で位置を指定*/
	position: absolute;
	left:50%;
	transform: translateX(-50%);
	top:52px;
	z-index: 4;
    /*形状を指定*/
	background:#49B9A5;
	width:180px;
    /*はじめは非表示*/
	visibility: hidden;
	opacity: 0;
    /*アニメーション設定*/
	transition: all .3s;
}

/*hoverしたら表示*/
nav li.has-child:hover > ul,
nav li.has-child ul li:hover > ul,
nav li.has-child:active > ul,
nav li.has-child ul li:active > ul{
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav li.has-child ul li a{
	padding: 5px 0;
	color: #fff;
	border-bottom:solid 1px rgba(255,255,255,0.6);
	font-size: 16px;
}

nav li.has-child ul li:last-child > a{
 border-bottom:none;
 }

nav li.has-child ul li a:hover,
nav li.has-child ul li a:active{
	background:#0F7A67;
}


/*--- メインビジュアル ---*/
.mainvisual {
	height: 100vh;
	width: 100%;
	background-size: cover;
	background-position: center;
	position: relative;
}
.catch-copy {
	width: 850px;
	height: 500px;
	padding-top: 110px;
	box-sizing: border-box;
	background: url("../img/bg-catch-copy.png");
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateY(-50%) translateX(-50%);
}
.catch-copy h2 {
	font-family: "Zen Maru Gothic", serif;
	font-weight: 700;
	text-align: center;
	font-size: 55px;
	letter-spacing: 3px;
	line-height: 1.5;
}
.catch-copy h2 span {
	color: #49B9A5;
	font-size: 70px;
}
.mv-icon {
	gap:3rem;
	align-items: center;
	position: absolute;
	bottom:50px;
	right: 50px;
}
.mv-icon .item {
	width: 200px;
}


/*news-info*/
#news-info {
	padding: 10rem 0;
	background: #E6F3F1;
	position: relative;
}
#news-info::before {
	content: "";
	width: 240px;
	height: 200px;
	background: url("../img/deco02.png");
	background-size: cover;
	position: absolute;
	bottom: 5rem;
	left: 5rem;
}
#news-info::after {
	content: "";
	width: 150px;
	height: 144px;
	background: url("../img/deco01.png");
	background-size: cover;
	position: absolute;
	top: 5rem;
	right: 5rem;
}
#news-info .inner {
	width: 1200px;
	margin: 5rem auto;
	align-items: flex-start;
	justify-content: space-between;
}
.ni-container {
	width: 49%;
}
.ttl-ni {
	font-size: 36px;
	letter-spacing: 3px;
	padding: 0 0 3rem 3rem;
	margin-bottom: 5rem;
}
.ttl-news {
	position: relative;
}
.ttl-news::before {
	content: "";
	width: 100px;
	height: 82px;
	background: url("../img/bg-ttl-news.png");
	background-size: cover;
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
}
.ttl-info {
	position: relative;
}
.ttl-info::before {
	content: "";
	width: 100px;
	height: 82px;
	background: url("../img/bg-ttl-info.png");
	background-size: cover;
	position: absolute;
	top: -20px;
	left: 0;
	z-index: -1;
}
.news dl {
	font-size: 16px;
	font-weight: 500;
	flex-direction: column;
	gap:5px;
	letter-spacing: 1px;
}
.news dl dd {
	padding-bottom: 1.5rem;
	margin-bottom: 2rem;
	border-bottom: 1px dashed #707070;
}
.info-adress {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: 1.5px;
	margin-bottom: 2rem;
}
.info-timetable {
	width: 95%;
}
.info-timetable p {
	font-size: 14px;
	margin-top: 1rem;
}

/*#first*/
#first {
	padding: 15rem 0 5rem 0;
	position: relative;
}
#first::before {
	content: "";
	width: 100%;
	height: 100px;
	background: url("../img/bg-ni-bottom.png");
	background-size: cover;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
}
#first .container {
	width: 700px;
	margin: auto;
	background: #E6F3F1;
	border-radius: 3rem;
	padding: 3rem 0;
}
#first .container .inner {
	width: 95%;
	margin: auto;
	align-items: center;
	justify-content: space-between;
}
#first .container .inner .left,
#first .container .inner .right {
	width: 48%;
}
#first .container .inner .left {
	position: relative;
	z-index: 2;
}
#first .container .inner .left::before {
	content: "";
	width: 280px;
	height: 130px;
	background: url("../img/bg-first.png");
	background-size: cover;
	opacity: 0.7;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
}
.ttl-first {
	text-align: center;
	font-size: 36px;
	letter-spacing: 3px;
}
.f-txt p {
	text-align: center;
	font-size: 16px;
	font-weight: 500;
	margin: 2rem auto 1rem auto;
}
.f-txt a {
	display: block;
	color: #333;
	text-align: center;
	font-size: 18px;
	letter-spacing: 2px;
	font-weight: 600;
}


/*感染症対策*/
#covid19 {
	padding: 3rem 0;
}
.accordion-001 {
  max-width: 1000px;
	margin: 0 auto;	
}
.accordion-001 summary {
  display: flex;
	flex-direction: column;
  align-items: center;
  position: relative;
  padding: 3rem 0 ;
	text-align: center;
	box-sizing: border-box;
	background: #E6F3F1;
	margin: 0 auto;
  font-weight: 600;
	font-size: 20px;
  cursor: pointer;
}

.accordion-001 summary::-webkit-details-marker {
    display: none;
}

.accordion-001 summary::after {
	transform: translateY(-25%) rotate(45deg);
   width: 7px;
   height: 7px;
   margin-left: 10px;
   border-bottom: 3px solid #49B9A5;
   border-right: 3px solid #49B9A5;
   content: '';
   transition: transform .3s;
}

.accordion-001[open] summary::after {
	transform: rotate(225deg);
}

.accordion-open {
  transform: translateY(-10px);
  opacity: 1;
  margin: 0;
  padding: 1em 2em 2em 2em;
  transition: transform .5s, opacity .5s;
}

.accordion-open[open] {
    transform: none;
    opacity: 1;
}
.covid19-flex {
	display: flex;
	justify-content: space-between;
	align-content: center;
	flex-wrap: wrap;
}
.covid19-list {
	width: 30%;
	margin: 0 auto;
	padding: 30px 0;
	text-align: center;
}
.covid19-list img {
	width: 60%;
	margin: 0 auto;
}
.covid19-list span {
	display: inline-block;
	text-align: center;
	padding: 5px 0;
	font-size: 2rem;
}


/*greeting*/
#greeting {
	padding: 10rem 0;
	position: relative;
}
#greeting::before {
	content: "";
	width: 150px;
	height: 150px;
	background: url("../img/deco05.png");
	background-size: cover;
	position: absolute;
	bottom:5rem;
	left: 5rem;
}
#greeting::after {
	content: "";
	width: 181px;
	height: 147px;
	background: url("../img/deco06.png");
	background-size: cover;
	position: absolute;
	top:5rem;
	right: 5rem;
}
#greeting .inner {
	width: 1200px;
	margin: 5rem auto;
	justify-content: space-between;
	align-items: center;
}
#greeting .inner .left {
	width: 50%;
}
.greeting-b {
	font-size: 24px;
	font-weight: 500;
	line-height: 2;
	color: #49B9A5;
	margin-bottom: 2rem;
}
.greeting-s {
	font-size: 15px;
	line-height: 2;
}
#greeting .inner .right {
	width: 48%;
}

.page-link {
	width: 300px;
	margin: auto;
	padding: 25px 0;
	border: 1px solid #49B9A5;
	background: #fff;
	position: relative;
}
.page-link::before {
	content: "";
	width: 100%;
	height: 100%;
	border: 1px dashed #49B9A5;
	position: absolute;
	top: 5px;
	left: 5px;
}
.page-link a {
	display: block;
	text-align: center;
	font-size: 18px;
	letter-spacing: 2px;
	color: #777;
	font-weight: 500;
}
.page-link:hover {
	background: #E6F3F1;
}


/*feature*/
#feature {
	margin-top: 10rem;
	padding: 5rem 0 10rem 0;
	background: #E6F3F1;
	position: relative;
}
#feature::before {
	content: "";
	width: 100%;
	height: 100px;
	background: url("../img/bg-feature-top.png");
	background-size: cover;
	position: absolute;
	top: -100px;
	left: 50%;
	transform: translateX(-50%);
}
.ttl-feature {
	text-align: center;
	letter-spacing: 2px;
	color: #0F7A67;
	font-size: 48px;
	line-height: 1;
}
.ttl-feature span {
	color: #777;
	font-size: 24px;
	font-weight: 400;
}
.feature-wrapper {
	width: 90%;
	margin: 10rem auto 0 auto;
}
.feature-wrapper ul {
	flex-direction: column;
	gap:10rem;
}
.feature-wrapper ul li {
	justify-content: space-between;
	align-items: center;
}
.f-img {
	width: 45%;
}
.f-index {
	width: 53%;
}
.f-no {
	font-size: 55px;
	letter-spacing: 3px;
	text-align: center;
	position: relative;
}
.f-no::before {
	content: "";
	width: 100px;
	height: 82px;
	background: url("../img/bg-ttl-feature.png");
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
}
.f-txt-b {
	text-align: center;
	line-height: 1.5;
	font-weight: 500;
	color: #0F7A67;
	font-size: 26px;
	margin: 3rem auto;
}
.f-txt-s {
	font-size: 16px;
	line-height: 2;
	width: 90%;
	margin: 0 auto 3rem auto;
}
.more-link {
	width: 180px;
	background: #fff;
	margin: auto;
	border-radius: 3rem;
	padding: 1rem 0;
}
.more-link a {
	display: block;
	text-align: center;
	font-size: 16px;
	color: #49B9A5;
	letter-spacing: 2px;
	font-weight: 500;
}
.more-link:hover {
	background: #49B9A5;
}
.more-link:hover a {
	color: #fff;
}
.feature-left {
	position: relative;
}
.feature-left::before {
	content: "";
	width: 150px;
	height: 151px;
	background: url("../img/deco03.png");
	background-size: cover;
	position: absolute;
	top:3rem;
	right: 0;
}
.feature-right {
	position: relative;
}
.feature-right::before {
	content: "";
	width: 150px;
	height: 146px;
	background: url("../img/deco04.png");
	background-size: cover;
	position: absolute;
	top:3rem;
	left: 0;
}


/*medical*/
.medical-top {
	width: 100%;
	padding: 10rem 0 15rem 0;
	background: url("../img/bg-m-top.jpg");
	background-position: center;
	position: relative;
}
.medical-top::before {
	content: "";
	width: 100%;
	height: 100px;
	background: url("../img/bg-medical-top-bottom.png");
	background-size: cover;
	position: absolute;
	bottom: -1px;
	left: 50%;
	transform: translateX(-50%);
}
.medical-top h4 {
	text-align: center;
	font-size: 38px;
	letter-spacing: 3px;
}
.medical-info {
	padding: 10rem 0;
	background: #E6F3F1;
}

.med-wrap-top {
	width: 90%;
	margin: 5rem auto;
}
.med-wrap-top ul {
	justify-content: center;
	gap:80px;
	align-items: flex-start;
}
.med-wrap-top ul li {
	width: 300px;
}
.med-icon-b {
	width: 250px;
	margin: 0 auto;
}
.med-name {
	text-align: center;
	font-size: 28px;
	letter-spacing: 2px;
	border-bottom: 1px solid #707070;
	padding-bottom: 10px;
	line-height: 1;
	margin-top: 10px;
}
.med-name span {
	font-size: 18px;
	color: #0F7A67;
}
.med-txt {
	line-height: 2;
	font-size: 16px;
	margin: 10px auto 20px auto;
}
.med-wrap-bottom ul {
	justify-content: center;
	gap: 50px;
	align-items: flex-start;
}
.med-wrap-bottom ul li {
	width: 300px;
	background: #fff;
	border-radius: 2rem;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	padding: 2rem 0;
}
.med-wrap-bottom ul li:hover {
	background: #E6F3F1;
}
.med-wrap-bottom ul li a {
	display: block;
}
.med-icon-s {
	width: 100px;
	margin: auto;
}
.med-wrap-bottom ul li .med-name {
	border-bottom: none;
	color: #333;
}


@media screen and (max-width:1300px) {
	.med-wrap-top {
		width: 95%;
	}
	.med-wrap-top ul {
		gap: 0;
		justify-content: space-between;
	}
	.med-wrap-top ul li {
		width: 220px;
	}
	.med-icon-b {
		width: 200px;
	}
	.med-wrap-bottom ul {
		gap: 30px;
	}
	.med-wrap-bottom ul li {
		width: 250px;
	}
	.med-icon-s {
		width: 90px;
	}
}

/*slideshow*/
#slideshow {
	padding: 10rem 0;
}
/*==================================================
スライダーのためのcss
===================================*/
.slider img {
    width:100%;/*スライダー内の画像を横幅100%に*/
    height:auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/

.slider .slick-slide {
    margin:0 10px;/*スライド左右の余白調整*/
}


/*recruit*/
#recruit {
	padding: 5rem 0;
}
#recruit .container {
	width: 1000px;
	margin: auto;
	background: #E6F3F1;
	border-radius: 3rem;
	padding: 3rem;
	box-sizing: border-box;
	position: relative;
}
#recruit .container::before {
	content: "";
	width: 200px;
	height: 200px;
	background: url("../img/deco05.png");
	background-size: cover;
	opacity: 0.5;
	position: absolute;
	bottom: 0;
	right: -100px;
	z-index: 3;
}
#recruit .container .inner {
	width: 50%;
}
.ttl-rec {
	letter-spacing: 2px;
	color: #0F7A67;
	font-size: 48px;
	line-height: 1;
}
.ttl-rec span {
	color: #777;
	font-size: 24px;
	font-weight: 400;
	margin-left: 1rem;
}
.rec-txt {
	font-size: 16px;
	line-height: 2;
	margin: 2rem auto;
}
.rec-img {
	width: 450px;
	position: absolute;
	top: -5rem;
	right: 0;
}


/*footer*/
#footer {
	margin-top: 200px;
	background: #49B9A5;
	padding-top: 10rem;
	position: relative;
}
#footer::before {
	content: "";
	width: 100%;
	height: 150px;
	background: url("../img/bg-foot-top.png");
	background-size: cover;
	position: absolute;
	top: -150px;
	left: 50%;
	transform: translateX(-50%);
}
#footer .inner {
	width: 1200px;
	margin: auto;
	align-items: center;
	justify-content: space-between;
}
#footer .inner .left {
	width: 45%;
}
.foot-logo {
	width: 320px;
	margin: auto;
}
.foot-adress {
	text-align: center;
	font-size: 18px;
	margin: 2rem auto;
	letter-spacing: 2px;
}
.foot-contact {
	width: 200px;
	margin: auto;
	background: #fff;
	border-radius: 1rem;
	padding: 1rem 0;
}
.foot-contact a {
	display: block;
	text-align: center;
	font-size: 20px;
	letter-spacing: 2px;
	color: #0F7A67;
}
.foot-tel {
	margin: 2rem auto;
}
.foot-tel a {
	display: block;
	text-align: center;
	font-size: 24px;
	letter-spacing: 2px;
}
.foot-tel a i {
	font-size: 30px;
	margin-right: 1rem;
}
.foot-web {
	width: 200px;
	margin: auto;
	background: #78F3AE;
	border-radius: 1rem;
	padding: 1rem 0;
}
.foot-web a {
	display: block;
	text-align: center;
	font-size: 20px;
	letter-spacing: 2px;
	color: #0F7A67;
}
#footer .inner .right {
	width: 53%;
}
.foot-timetable p {
	font-size: 14px;
	margin-top: 1rem;
}
.foot-map {
	margin-top: 5rem;
	width: 100%;
}
.foot-map iframe {
	width: 100%;
}
.copy {
	padding: 1rem 0;
}
.copy p {
	font-size: 12px;
	text-align: center;
}



/*下層*/
/*--- メインビジュアル ---*/
.s-mainvisual {
	height: 50vh;
	width: 100%;
	background: url("../img/s-mainvisual.jpg");
	background-size: cover;
	background-position: center;
	position: relative;
}
.page-ttl {
	position: absolute;
	bottom: 120px;
	left: 50%;
	transform: translateX(-50%);
}
.page-ttl h2 {
	text-align: center;
	font-size: 60px;
	letter-spacing: 3px;
	line-height: 0.8;
	text-shadow: 2px 2px 5px rgba(0,0,0,0.2);
}
.page-ttl h2 span {
	font-size: 30px;
	font-weight: 500;
}
.sec-padding {
	padding: 10rem 0; 
}
.sec-ttl {
	position: relative;
	margin-bottom: 10rem;
}
.sec-ttl::before {
	content: "";
	width: 280px;
	height: 140px;
	background: url("../img/bg-sec-ttl.png");
	background-size: cover;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translateX(-50%) translateY(-50%);
	z-index: -1;
}
.sec-ttl h4 {
	font-size: 26px;
	text-align: center;
	letter-spacing: 2px;
	font-weight: 500;
	position: relative;
}
.sec-ttl h4::before {
	content: "";
	width: 50px;
	height: 3px;
	background: #0F7A67;
	position: absolute;
	bottom:-10px;
	left: 50%;
	transform: translateX(-50%);
}


/*clinic*/
.s-feature-wrap {
	flex-direction: column;
	gap:10rem;
}
.sf-item {
	padding-top:5rem;
}
.sf-btxt {
	font-size: 30px;
	text-align: center;
	line-height: 2;
	letter-spacing: 2px;
	color: #0F7A67;
	margin-top: 3rem;
}
.sf-index {
	width: 1000px;
	margin: 3rem auto 0 auto;
	background: rgba(255,255,255,0.8);
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
	padding: 3rem 0;
}
.sf-index p {
	width: 800px;
	margin: auto;
	font-size: 16px;
	line-height: 2;
}
.sf01, .sf02, .sf03, .sf04 {
	position: relative;
}
.sf01::before {
	content: "";
	width: 100%;
	height: 65%;
	background: url("../img/bg-f01.jpg");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.sf02::before {
	content: "";
	width: 100%;
	height: 65%;
	background: url("../img/bg-f02.jpg");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.sf03::before {
	content: "";
	width: 100%;
	height: 65%;
	background: url("../img/bg-f03.jpg");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.sf04::before {
	content: "";
	width: 100%;
	height: 65%;
	background: url("../img/bg-f04.jpg");
	background-size: cover;
	background-position: center;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}

.clinic-slide {
	width: 80%;
	margin: 0 auto 5rem auto;
}
/*==================================================
スライダーのためのcss
===================================*/
.clinic-slider {/*横幅94%で左右に余白を持たせて中央寄せ*/
    width:94%;
    margin:0 auto;
}

.clinic-slider img {
    width:60vw;/*スライダー内の画像を60vwにしてレスポンシブ化*/
    height:auto;
}

.sclinic-lider .slick-slide {
	transform: scale(0.8);/*左右の画像のサイズを80%に*/
	transition: all .5s;/*拡大や透過のアニメーションを0.5秒で行う*/
	opacity: 0.5;/*透過50%*/
}

.clinic-slider .slick-slide.slick-center{
	transform: scale(1);/*中央の画像のサイズだけ等倍に*/
	opacity: 1;/*透過なし*/
}


/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #666;/*矢印の色*/
    border-right: 2px solid #666;/*矢印の色*/
    height: 15px;
    width: 15px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left: -1.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right: -1.5%;
    transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/

.slick-dots {
    text-align:center;
	margin:20px 0 0 0;
}

.slick-dots li {
    display:inline-block;
	margin:0 5px;
}

.slick-dots button {
    color: transparent;
    outline: none;
    width:8px;/*ドットボタンのサイズ*/
    height:8px;/*ドットボタンのサイズ*/
    display:block;
    border-radius:50%;
    background:#ccc;/*ドットボタンの色*/
}

.slick-dots .slick-active button{
    background:#333;/*ドットボタンの現在地表示の色*/
}


#facility-gallery {
	margin-bottom: 10rem;
}
.facility-wrap {
	max-width: 1500px;
	margin: auto;
}
.facility-wrap ul {
	justify-content: center;
	gap:5rem;
	align-items: flex-start;
}
.facility-wrap ul li {
	width: 400px;
}
.facility-name {
	background: #49B9A5;
	padding: 2rem 0;
}
.facility-name p {
	text-align: center;
	font-size: 20px;
	letter-spacing: 2px;
	font-weight: 500;
}
.facility-txt {
	background: #E6F3F1;
	padding: 1rem;
	box-sizing: border-box;
}
.facility-txt p {
	font-size: 14px;
	line-height: 2;
}

@media screen and (max-width:1300px) {
	.facility-wrap ul li {
		width: 320px;
	}
}


/*doctor*/
#doctor01 .inner {
	width: 1200px;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.doc-txt {
	width: 600px;
}
.doc-txt p {
	font-size: 16px;
	line-height: 2;
}
.doc-img {
	width: 550px;
	margin: auto;
	position: relative;
}
.doc-name {
	width: 250px;
	height: 150px;
	background: url("../img/bg-doc-name.png");
	background-size: cover;
	padding: 2rem 0;
	box-sizing: border-box;
	position: absolute;
	bottom: 1rem;
	right: 1rem;
}
.doc-name p {
	text-align: center;
	font-size: 28px;
	letter-spacing: 2px;
	line-height: 1;
	font-weight: 500;
}
.doc-name p .name-s {
	font-size: 16px;
	line-height: 2;
}
.doc-name p .en {
	font-size: 16px;
	color: #0F7A67;
	font-weight: 400;
}
.d-in-bottom {
	width: 1000px;
	margin: 5rem auto 0 auto;
	justify-content: space-between;
	align-items: flex-start;
}
.d-in-bottom .item {
	width: 45%;
	background: #E6F3F1;
	border-radius: 2rem;
	padding: 3rem 0;
}
.d-in-bottom .item p {
	font-size: 20px;
	font-weight: 500;
	text-align: center;
	letter-spacing: 1.5px;
	color: #0F7A67;
}
.d-in-bottom .item ul {
	margin: 2rem auto 0 auto;
	width: 90%;
	flex-direction: column;
	gap: 1.5rem;
	font-size: 16px;
}


/*medical*/
.m-con-top {
	width: 1200px;
	margin: auto;
	justify-content: space-between;
	align-items: center;
}
.mct-txt {
	width: 50%;
}
.mct-txt .txt-b {
	font-size: 24px;
	color: #49B9A5;
	letter-spacing: 2px;
	margin-bottom: 3rem;
}
.mct-txt .txt-s {
	font-size: 16px;
	line-height: 2;
	font-weight: 500;
}
.mct-img {
	width: 45%;
}
.m-container {
	width: 1200px;
	margin: 5rem auto;
	background: #F1FCFA;
	border-radius: 3rem;
	padding: 5rem 0;
}
.ttl-m-con {
	width: 280px;
	margin: 0 auto 5rem auto;
	background: #fff;
	border: 1px solid #49B9A5;
	padding: 2rem 0;
	position: relative;
}
.ttl-m-con::before {
	content: "";
	width: 100%;
	height: 100%;
	border: 1px solid #49B9A5;
	position: absolute;
	top: -5px;
	left: -5px;
}
.ttl-m-con p {
	text-align: center;
	font-size: 20px;
	letter-spacing: 1.5px;
}
.m-con-top-index {
	width: 1000px;
	margin: auto;
	text-align: center;
	line-height: 2;
	font-weight: 500;
	font-size: 16px;
}
.m-in {
	margin: 4rem auto;
	width: 1000px;
}
.ttl-m-in {
	border-bottom: 1px solid #ccc;
	padding-bottom: 0.5rem;
	margin-bottom: 2.5rem;
}
.ttl-m-in p {
	font-size: 20px;
	color: #0F7A67;
}
.m-in-wrap {
	flex-direction: column;
	gap:3.5rem;
}
.ttl-m-in-item {
	font-size: 18px;
	letter-spacing: 1.5px;
	padding-left: 25px;
	margin-bottom: 2rem;
	position: relative;
}
.ttl-m-in-item::before {
	content: "";
	width: 20px;
	height: 20px;
	border-radius: 50%;
	background: #49B9A5;
	position: absolute;
	top: 50%;
	left: 0;
	transform: translateY(-50%);
}
.item-in {
	justify-content: space-between;
	align-items: center;
}
.item-in .left {
	width: 30%;
}
.item-in .right {
	width: 65%;
}
.item-in .right p {
	font-size: 15px;
	line-height: 2;
}
.item-in .right img {
	width: 65%;
	margin-top: 1.5rem;
}
.m-con-mid {
	width: 1200px;
	margin: 5rem auto;
}
.ttl-mcm {
	text-align: center;
	font-size: 24px;
	letter-spacing: 1.5px;
	margin-bottom: 2.5rem;
}
.mcm-wrap {
	justify-content: space-between;
	align-items: flex-start;
}
.mcm-wrap .item {
	width: 30%;
	background: #fff;
	border-radius: 2rem;
	box-shadow: 0 3px 5px rgba(0,0,0,0.2);
	padding: 2rem 0;
}
.mcm-wrap .item ul {
	width: 90%;
	margin: auto;
	font-size: 15px;
	font-weight: 500;
}
.mcm-wrap .item ul li {
	list-style: disc;
	list-style-position: inside;
}
.mcm-link {
	width: 60%;
	margin: 2rem auto 0 auto;
	padding: 1rem 0;
	border-radius: 2rem;
	background: #fff;
	box-shadow: 0 3px 5px rgba(0,0,0,0.2);
}
.mcm-link a {
	display: block;
	text-align: center;
	font-size: 16px;
	color: #49B9A5;
}
.whitening-in {
	align-items: center;
	justify-content: space-between;
}
.w-in-item {
	width: 20%;
}
.w-in-item p {
	margin-top: 1rem;
	font-size: 15px;
	text-align: center;
	font-weight: 500;
}
.implant-top-txt {
	width: 100%;
	font-size: 16px;
	line-height: 2;
}
.ttl-implant-flow {
	font-size: 18px;
	letter-spacing: 1.5px;
	margin-bottom: 2rem;
	margin-top: 2rem;
}

#koujo {
	width: 1000px;
	padding: 5rem 0;
	background: rgba(173,206,200,0.8);
	margin: 10rem auto 15rem auto;
}
.ttl-koujo {
	text-align: center;
	font-size: 24px;
	margin-bottom: 3rem;
}
#koujo ul {
	width: 80%;
	margin: auto;
	flex-direction: column;
	gap:2rem;
}
.koujo-txt-b {
	font-size: 17px;
	font-weight: 500;
	margin-bottom: 1.5rem;
}
.koujo-txt-s {
	font-size: 14px;
	line-height: 2;
}


/*promise*/
.promise-wrapper {
	flex-direction: column;
	gap: 10rem;
}
.promise-wrapper .item {
	padding: 5rem 0;
	position: relative;
}
.promise-wrapper .item::before {
	content: "";
	width: 100%;
	height: 200px;
	background: rgba(238,228,245,0.7);
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	z-index: -1;
}
.promise-wrapper .item .inner {
	width: 1200px;
	margin: auto;
	align-items: center;
	justify-content: space-between;
}
.p-ttl {
	text-align: center;
	font-weight: 500;
	font-size: 28px;
	letter-spacing: 2px;
	position: relative;
	margin-bottom: 5rem;
}
.p-ttl::before {
	content: "";
	width: 380px;
	height: 10px;
	background: url("../img/bg-promise.png");
	background-size: cover;
	position: absolute;
	bottom: -1rem;
	left: 50%;
	transform: translateX(-50%);
}
.promise-wrapper .item .inner .img {
	width: 30%;
}
.promise-wrapper .item .inner .txt {
	width: 65%;
}
.promise-wrapper .item .inner .txt p {
	font-size: 16px;
	line-height: 2;
}


/*contact*/
.contact-message {
	width: 1000px;
	margin: 10rem auto 0 auto;
	background: #F1FCFA;
	padding: 5rem 0;
}
.contact-message p {
	width: 90%;
	margin: auto;
	line-height: 2;
}
.cm-b {
	font-size: 16px;
	font-weight: 500;
}
.cm-s.red {
	color: red;
	margin: 2rem auto;
}
.cm-s {
	font-size: 14px;
}

.contact-container {
	width: 1000px;
	margin: 10rem auto;
	padding: 5rem 0;
	background: #fff;
	border-radius: 3rem;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
}
.cc-box {
	width: 95%;
	margin: auto;
	background: #fff;
	padding: 5rem 0;
}
.formTable {
	width: 80%;
	margin: auto;
}
.formTable tr {
  position: relative;
}
.formTable tr:first-child td:before {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  height: 1px;
}
.formTable tr th {
  width: 30%;
	font-weight: 400;
  text-align: center;
  padding: 1em .5em;
  background: #49B9A5;
  color: #fff;
  position: relative;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    font-size: 14px;
}
.formTable tr th span {
  background: #cd6f55;
  padding: 0 .3em;
  color: #fff;
  margin-left: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.formTable tr th:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: solid 1px #fff;
}
.formTable tr td {
  position: relative;
  padding: 1em .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    font-size: 14px;
}
.formTable tr td:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  height: 1px;
  border-bottom: solid 1px #E5E5E5;
}
.formTable tr .box_br {
  display: block;
}
.formTable tr select,
.formTable  tr textarea, 
.formTable  tr .wide {
  width: 100%;
  height: 3em;
  padding: .5em;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
    border: 1px solid #CCCCCC;
}
.formTable tr textarea {
  height: 10em;
}
@media only screen and (max-width: 768px) {
  .cc-box {
    width: 95%;
  }
	.formTable {
		width: 95%;
	}
	.formTable tr:first-child td:before {
    display: none;
  }
	.formTable tr th {
    text-align: center;
    width: 100%;
    display: block;
    padding: .8em .2em;
  }
	.formTable tr td {
    padding: 1.5em .5em;
    display: block;
    width: 100%;
  }
}
.btn {
	margin-top: 5rem;
  text-align: center;
}
.btn input {
  display: inline-block;
  background: #E6F3F1;
	box-shadow: 0 3px 6px rgba(0,0,0,0.16);
  padding: 1.5em 5em;
  color:#0F7A67;
	border: none;
  text-decoration: none;
  cursor: pointer;
  -moz-transition: all 0.4s;
  -o-transition: all 0.4s;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
    font-size: 16px;
}
.btn input:hover {
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=70);
  opacity: 0.7;
}

























/*---------------------------------------------*/

/*トップリンク*/
/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#fff;
	border: 1px solid #874316;
	border-radius: 50%;
	width: 60px;
	height: 60px;
	color: #7d7d7d;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(100px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(100px);
  }
}




/*==================================================
ふわっ
===================================*/

/* その場で */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* 下から */

.fadeUp{
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
  transform: translateY(100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 上から */

.fadeDown{
animation-name:fadeDownAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeDownAnime{
  from {
    opacity: 0;
  transform: translateY(-100px);
  }

  to {
    opacity: 1;
  transform: translateY(0);
  }
}

/* 左から */

.fadeLeft{
animation-name:fadeLeftAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeLeftAnime{
  from {
    opacity: 0;
  transform: translateX(-100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* 右から */

.fadeRight{
animation-name:fadeRightAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeRightAnime{
  from {
    opacity: 0;
  transform: translateX(100px);
  }

  to {
    opacity: 1;
  transform: translateX(0);
  }
}

/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
 
.fadeInTrigger,
.fadeUpTrigger,
.fadeDownTrigger,
.fadeLeftTrigger,
.fadeRightTrigger{
    opacity: 0;
}


/*==================================================
スタート時は要素自体を透過0にするためのopacity:0;を指定する
===================================*/

.box{
	opacity: 0;
}

/*==================================================
動かしたい動き（今回は” ふわっ” を採用）
===================================*/

.fadeUp {
animation-name:fadeUpAnime;
animation-duration:1.0s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
    opacity: 0;
	transform: translateY(100px);
  }

  to {
    opacity: 1;
	transform: translateY(0);
  }
}
#g-navi li
{
    position: relative;
}
#g-navi li::before {
  content: "";
  position: absolute;
  right: -21px;
  top: 50%;
  width: 1px;
  height: 16px;
  background: #333;
  transform: translateY(-50%);
}
#g-navi .has-child li::before {
  display: none;
}
#g-navi li:last-child::before {
  display: none;
}
.list_disc
{
    padding: 0 0 3% 3%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 16px;
}
.list_disc li
{
    width: 46%;
    list-style: disc;
    padding-left: 10px;
    margin-left: 10px;
}
@media screen and (max-width:760px)
{
    .list_disc li
{
    width: 100%;
}
    .maru_wrap .maru_inner
{
    width: calc(100% / 2 - 3vw);
}
}
.illustration
{
    padding: 3% 0;
}
.ill_ttl_inner
{
    text-align: center;
}
.ill_ttl
{
    font-size: max(1.2vw , 18px);
    font-weight: 700;
    display: inline-block;
    padding: 10px;
    color: #FFFFFF;
    background: #49b9a5;
    border-radius: 10px;
}
.maru_wrap
{
    max-width: calc(800px + 6%);
    margin: 0 auto;
    padding: 6% 3%;
    justify-content: center;
    flex-wrap: wrap;
    gap: 3vw;
}
.maru_inner
{
    width: calc(100% / 4 - 3vw);
    text-align: center;
}
.maru
{
    width: 160px;
    height: 160px;
    background: #0D447E;
    text-align: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: max(1vw , 16px);
    border-radius: 50%;
    position: relative;
    max-width: 100%;
    max-height: 100%;
    display: inline-block;
}
.maru span
{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    text-align: center;
}