@charset 'utf-8';

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

	TOP

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

body {
font-family: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
}
h2, h3, h4 {
font-family: 'Noto Serif SC', 'Kaiti SC', 'SimSun', serif;
}
h4 {
	font-size: 2.6rem;
}
.pankuzu {
  text-align: center;
	z-index: 1;
}
.pankuzu a {
  margin-right: 25px;
  display: inline-block;
}
.anchor {
    padding-top: 50px;
    margin-top: -50px;
}
strong {
	font-weight: bold;
}




/*--------------------------------
	共通レイアウト
--------------------------------*/

/* タイトル */
h2 small:before {
	content: "";
	display: block;
	width: 15px;
	height: 1px;
	margin: 20px auto;
	background-color: #b2b2b2;
}


/*--------------------------------
	ロード画面
--------------------------------*/

.top .firstaccess {
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99998;
	width: 100vw;
	height: 100vh;
	background-color: #fff;
}

.top .firstaccess img {
	display: none;
	width: 50%;
	max-width: 240px;
	position: fixed;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}


/*--------------------------------
	ヘッダー スクロールで出現（トップのみ）
--------------------------------*/

.header_bar {
	top: -90px;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.header_bar.fixed {
	top: 0;
}

/*--------------------------------
	ロゴ
--------------------------------*/

.top_logo {
	position: relative;
	padding: 25px 0 35px;
	text-align: center;
	font-size: 0;
}

.top_logo img {
	width: auto;
	height: 180px;
}

/* ご予約・お問い合わせ */

.top_reserve {
	position: absolute;
	bottom: -100px;
	right: 0;
	display: block;
	width: 165px;
	height: 165px;
	padding: 47px 0 0;
	-webkit-border-radius: 50%;
	border-radius: 50%;
	text-align: center;
	font-size: 1.8rem;
	background-color: #3eaee6;
	z-index: 1;
	opacity: 0;
	-webkit-transition: 1s ease .5s, background .4s ease 0s;
	transition: 1s ease .5s, background .4s ease 0s;
}

.top_reserve svg {
	width: 7px;
	height: 15px;
	position: absolute;
	bottom: 20px;
	left: 50%;
	margin: 0 0 0 -3px;
	fill: #fff;
}

.evacuation .top_reserve {
	right: 5%;
	opacity: 1;
}

.top_reserve:hover {
	background-color: #333;
}

.top_reserve:hover svg {
	transform:translate3d(0, 5px, 0);
}

.top_reserve:link,
.top_reserve:visited { color:#fff; }
.top_reserve:hover,
.top_reserve:active { color:#fff; }


/*--------------------------------
	メインビジュアル
--------------------------------*/

/* スクロールボタン */

.top_slide .btn_scroll {
	position: absolute;
	bottom: 0;
	left:50%;
	-webkit-transform:translate(-50%, 0);
	transform:translate(-50%, 0);
	font-size: 1.1rem;
	color: #fff;
}

.top_slide .btn_scroll a {
	display: block;
	padding: 10px 10px 55px;
	letter-spacing: 0.1em;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.top_slide .btn_scroll a:after {
	position: absolute;
	top: 35px;
	left: 50%;
	content: "";
	display: block;
	width: 1px;
	height: 0;
	background-color: #fff;
	animation: scrollBtn 3s linear 0s infinite;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

@-webkit-keyframes scrollBtn {
	0%		{ height: 0; }
	30%		{ height: 50px; }
	100%	{ height: 50px; }
}

@keyframes scrollBtn {
	0%		{ height: 0; }
	30%		{ height: 50px; }
	100%	{ height: 50px; }
}

.top_slide .btn_scroll a:hover:after {
	background-color: #3eaee6;
}

.top_slide .btn_scroll a:link,
.top_slide .btn_scroll a:visited { color: #fff; }
.top_slide .btn_scroll a:hover,
.top_slide .btn_scroll a:active { color: #3eaee6; }


/* スライド */

.top_slide .slide .slide_box {
	position: relative;
	height: calc(100vh - 240px);
	width: 100%;
	background: no-repeat center center;
	background-size: cover;
	background-attachment: fixed;
}

.top_slide .slide .slide_box:nth-of-type(1) { background-image: url(../images/top_slide01.jpg); }
.top_slide .slide .slide_box:nth-of-type(2) { background-image: url(../images/top_slide02.jpg); }
.top_slide .slide .slide_box:nth-of-type(3) { background-image: url(../images/top_slide03.jpg); }
.top_slide .slide .slide_box:nth-of-type(4) { background-image: url(../images/top_slide04.jpg); }

.top_slide .slide .slide_box div {
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate3d(-50%, -50%, 0) !important;
	transform:translate3d(-50%, -50%, 0) !important;
	text-align: center;
	z-index: 2;
}

.top_slide .slide.io.move .slide_box div {
	-webkit-transform:translate3d(-50%, -50%, 0) !important;
	transform:translate3d(-50%, -50%, 0) !important;
}

.top_slide .slide .slide_box div a {
	width: 500px;
	height: 280px;
	background-color: rgba(255, 255, 255, 0.95);
}

.top_slide .slide .slide_box div a svg {
	width: 60px;
	height: 7px;
	position: absolute;
	bottom: 30px;
	left: 50%;
	margin: 0 0 0 -30px;
}

.top_slide .slide .slide_box div a:hover {
	background-color: rgba(255, 255, 255, 1);
}

.top_slide .slide .slide_box div a:hover svg {
	fill: #3eaee6;
	transform:translate3d(5px, 0, 0);
}

.top_slide .slide .slide_box div a em {
	position: absolute;
	top: 20px;
	left: -30px;
	color: #3eaee6;
	letter-spacing: 0.05em;
	opacity: 1;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	-webkit-transition: opacity 1.0s ease 1s, -webkit-transform 1.0s ease 1s;
	transition: opacity 1.0s ease 1s, transform 1.0s ease 1s;
}

.top_slide .slide .slide_box.slick-active div a em {
	animation: categoryname 3s ease-out;
}

@-webkit-keyframes categoryname {
	0% { 
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

@keyframes categoryname {
	0% { 
		-webkit-transform: translate3d(30px, 0, 0);
		transform: translate3d(30px, 0, 0);
		opacity: 0;
	}
	100% {
		-webkit-transform: translate3d(0, 0, 0);
		transform: translate3d(0, 0, 0);
		opacity: 1;
	}
}

.top_slide .slide .slide_box div a strong {
	display: block;
	margin: 0 auto 30px;
	font-size: 3rem;
	letter-spacing: 0.1em;
	font-family: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

/* スライド内装飾用ボックス */

.top_slide .slide_box > i.square {
	display: block;
	position: absolute;
	background-color: #59d4d8;
	z-index: 1;
	mix-blend-mode: overlay;
	opacity: 0.8;
}

.top_slide .slide_box > i.square.square:nth-of-type(2) {
	background-color: #3eaee6;
}

@keyframes squareopacity {
	0%	{ opacity: 0; }
	50%	{ opacity: 0; }
	60% { opacity: 0.8; }
	100% { opacity: 0.8; }
}

/* スライド1枚目 */

.top_slide .slide_box:nth-of-type(1) > i.square:nth-of-type(1) { left: 60%; top: 22%; height: 200px; width: 160px; }
.top_slide .slide_box:nth-of-type(1) > i.square:nth-of-type(2) { left: 25%; top: 53%; height: 180px; width: 280px; }

.top_slide .slide_box:nth-of-type(1).slick-active > i.square:nth-of-type(1) {
	transform-origin: left;
	animation: square1-1 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}

.top_slide .slide_box:nth-of-type(1).slick-active > i.square:nth-of-type(2) {
	transform-origin: top;
	animation: square1-2 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}

@keyframes square1-1 {
	0%	{ transform: translate3d(20%, 20%, 0) scale(0, 1); }
	50%	{ transform: translate3d(10%, 10%, 0) scale(0, 1); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

@keyframes square1-2 {
	0%	{ transform: translate3d(15%, 15%, 0) scale(1, 0); }
	50%	{ transform: translate3d(15%, 15%, 0) scale(1, 0); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

/* スライド2枚目 */

.top_slide .slide_box:nth-of-type(2) > i.square:nth-of-type(1) { left: 25%; top: 24%; height: 80px; width: 270px; }
.top_slide .slide_box:nth-of-type(2) > i.square:nth-of-type(2) { left: 63%; top: 45%; height: 220px; width: 150px; }

.top_slide .slide_box:nth-of-type(2).slick-active > i.square:nth-of-type(1) {
	transform-origin: right;
	animation: square2-1 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}

.top_slide .slide_box:nth-of-type(2).slick-active > i.square:nth-of-type(2) {
	transform-origin: top;
	animation: square2-2 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}

@keyframes square2-1 {
	0%	{ transform: translate3d(20%, 20%, 0) scale(0, 1); }
	50%	{ transform: translate3d(10%, 10%, 0) scale(0, 1); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

@keyframes square2-2 {
	0%	{ transform: translate3d(-15%, -15%, 0) scale(1, 0); }
	50%	{ transform: translate3d(-15%, -15%, 0) scale(1, 0); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

/* スライド3枚目 */

.top_slide .slide_box:nth-of-type(3) > i.square:nth-of-type(1) { left: 24%; top: 50%; height: 230px; width: 230px; }
.top_slide .slide_box:nth-of-type(3) > i.square:nth-of-type(2) { left: 15%; top: 12%; height: 100px; width: 100px; }

.top_slide .slide_box:nth-of-type(3).slick-active > i.square:nth-of-type(1) {
	transform-origin: right;
	animation: square3-1 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}

.top_slide .slide_box:nth-of-type(3).slick-active > i.square:nth-of-type(2) {
	transform-origin: bottom;
	animation: square3-2 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}

@keyframes square3-1 {
	0%	{ transform: translate3d(20%, 20%, 0) scale(0, 1); }
	50%	{ transform: translate3d(20%, 20%, 0) scale(0, 1); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

@keyframes square3-2 {
	0%	{ transform: translate3d(25%, 25%, 0) scale(1, 0); }
	50%	{ transform: translate3d(25%, 25%, 0) scale(1, 0); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

/* スライ4枚目 */

.top_slide .slide_box:nth-of-type(4) > i.square:nth-of-type(1) { left: 28%; top: 20%; height: 250px; width: 120px; }
.top_slide .slide_box:nth-of-type(4) > i.square:nth-of-type(2) { left: 61%; top: 45%; height: 250px; width: 250px; }

.top_slide .slide_box:nth-of-type(4).slick-active > i.square:nth-of-type(1) {
	transform-origin: right;
	animation: square4-1 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}
.top_slide .slide_box:nth-of-type(4).slick-active > i.square:nth-of-type(2) {
	transform-origin: top;
	animation: square4-2 3s cubic-bezier(.12,.73,0,.99), squareopacity 3s ease;
}

@keyframes square4-1 {
	0%	{ transform: translate3d(20%, 20%, 0) scale(0, 1); }
	50%	{ transform: translate3d(20%, 20%, 0) scale(0, 1); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

@keyframes square4-2 {
	0%	{ transform: translate3d(-10%, -10%, 0) scale(1, 0); }
	50%	{ transform: translate3d(-10%, -10%, 0) scale(1, 0); }
	100%	{ transform: translate3d(0, 0, 0) scale(1, 1); }
}

/* スライド ページネーション */

.top_slide .slick-dotted.slick-slider {
	margin-bottom: 0;
}

.top_slide .slide .slick-dots {
	position: absolute;
	bottom: auto;
	top: 50%;
	left: 20px;
	-webkit-transform:translate(0, -50%);
	transform:translate(0, -50%);
	height: auto;
	width: 2px;
	z-index: 1;
}

.top_slide .slide .slick-dots li {
	display: block;
	width: 10px;
	height: 50px;
	margin: 10px 0;
}

.top_slide .slide .slick-dots li button {
	width: 10px;
	height: 50px;
	padding: 0;
}

.top_slide .slide .slick-dots li button:hover,
.top_slide .slide .slick-dots li button:focus {
	outline: none;
}

.top_slide .slide .slick-dots li button:hover:before,
.top_slide .slide .slick-dots li button:focus:before {
	opacity: 1;
}

.top_slide .slide .slick-dots li button:before {
	font-size: 0;
	line-height: 0;
	position: absolute;
	top: 0;
	left: 0;
	width: 2px;
	height: 50px;
	content: '';
	opacity: 1;
	background-color: #ccc;
	-webkit-transition: 0.4s;
	transition: 0.4s;
}

.top_slide .slide .slick-dots li button:hover:before {
	background-color: #3eaee6;
}

.top_slide .slide .slick-dots li.slick-active button:before {
	opacity: 1;
	background-color: #fff;
}

/*--------------------------------
	コンセプト
--------------------------------*/

.top_concept {
	margin: 0 auto;
	max-width: 990px;
	padding: 120px 0 0;
}

.top_concept .box_wrap strong {
	display: block;
	margin: 0 auto 80px;
	font-size: 2.6rem;
	letter-spacing: 0.05em;
	line-height: 2;
	text-align: center;
	font-family: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.top_concept  .box_wrap p {
	line-height: 2.4;
}


/*--------------------------------
	私たちにできること
--------------------------------*/

.top_cando {
	margin: 200px auto 0;
}

.top_cando .box_wrap {
	font-size: 0;
	letter-spacing: 0;
}

.top_cando .box_wrap div {
	position: relative;
	display: inline-block;
	width: 33.1%;
	height: 33.1vw;
	background: #ccc no-repeat center center;
	background-size: cover;
}

.top_cando .box_wrap div:nth-of-type(n+2) {
	margin: 0 0 0 .35%;
}

.top_cando .box_wrap div a {
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}

.top_cando .box_wrap div a img {
	-webkit-transition: .8s ease-out;
	transition: .8s ease-out;
}

.top_cando .box_wrap div a:hover img {
	transform: scale(1.1);
}

.top_cando .box_wrap div p {
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
	width: 60%;
	height: 60%;
	min-width: 300px;
	min-height: 300px;
}

.top_cando .box_wrap div p span {
	width: 100%;
	height: 100%;
	background-color: rgba(255, 255, 255, 0.9);
	text-align: center;
}

.top_cando .box_wrap div:hover p span {
	background-color: 
}

.top_cando .box_wrap div p strong {
	font-size: 2.4rem;
	letter-spacing: 0.1em;
	font-family: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.top_cando .box_wrap div p strong small {
	display: block;
	margin: 5px auto 0;
	letter-spacing: 0.05em;
	font-size: 1.2rem;
	color: #3eaee6;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/*--------------------------------
	当クリニックの特徴
--------------------------------*/

.top_feature {
	margin: 200px auto 0;
	padding: 100px 0;
	background-color: rgba(62, 174, 230, 0.2);
}

.top_feature .box_wrap {
	font-size: 0;
	letter-spacing: 0;
}

.top_feature .box_wrap div {
	position: relative;
	display: inline-block;
	vertical-align: top;
	width: 31.333%;
	margin: 0 3% 50px 0;
	text-align: center;
}

.top_feature .box_wrap div:nth-of-type(3n) {
	margin: 0 0 50px;
}

.top_feature .box_wrap div a {
	display: block;
	position: relative;
	margin: 0 auto 10px;
	overflow: hidden;
	/* GPU acceleration */
	-webkit-backface-visibility: hidden;
	backface-visibility: hidden;
	-webkit-transform: translate3d(0, 0, 0);
	transform: translate3d(0, 0, 0);
	will-change: opacity, transform;
}

.top_feature .box_wrap div a img {
	-webkit-transition: .8s ease-out;
	transition: .8s ease-out;
}

.top_feature .box_wrap div a:hover img {
	transform: scale(1.1);
}

.top_feature .box_wrap div a strong {
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}

.top_feature .box_wrap div a strong span {
	width: 220px;
	display: inline-block;
	padding: 10px 0;
	background-color: #fff;
	font-size: 1.8rem;
	font-family: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	letter-spacing: 0.1em;
	line-height: 1.3;
}

.top_feature .box_wrap div p {
	font-size: 1.4rem;
	text-align: left;
}


/*--------------------------------
	施設紹介
--------------------------------*/

.top_facility {
	margin: 200px auto 0;
}

.top_facility .slide {
	margin: 0 auto;
}

.top_facility .slide .slick-slide {
	padding: 0 30px;
	text-align: center;
}

.top_facility .slide .slick-slide p {
	margin: 20px auto 0;
	font-size: 1.3rem;
}


/*--------------------------------
	ごあいさつ
--------------------------------*/

.top_greeting {
	margin: 200px auto 0;
	padding: 100px 0;
	background: rgba(89, 213, 217, 0.2) url(../images/greeting.png) no-repeat right 15% bottom;
	background-size: 300px auto;
}

@media only screen and (max-width: 1200px) {

	.top_greeting {
		background: rgba(89, 213, 217, 0.2) url(../images/greeting.png) no-repeat right 10% bottom;
		background-size: 290px auto;
	}

}

@media only screen and (max-width: 1100px) {

	.top_greeting {
		background: rgba(89, 213, 217, 0.2) url(../images/greeting.png) no-repeat right 5% bottom;
		background-size: 280px auto;
	}

}

.top_greeting .inner {
	max-width: 990px;
}

.top_greeting .inner strong {
	display: block;
	margin: 0 auto 30px;
	font-size: 2.4rem;
	font-family: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
}

.top_greeting .inner p {
	width: 70%;
}

.top_greeting .inner p em {
	display: block;
	margin: 20px auto 0;
	font-size: 1.5rem;
}

/*--------------------------------
	その他リンク
--------------------------------*/

.top_etc {
	margin: 200px auto 0;
}

.top_etc .inner > div {
	float: left;
	width: 48.5%;
	font-size: 0;
}

.top_etc .inner > div:nth-of-type(1) {
	margin: 0 3% 0 0;
}

.top_etc .inner > div a {
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
	overflow: hidden;
}


.top_etc .inner > div a img {
	-webkit-transition: .8s ease-out;
	transition: .8s ease-out;
}

.top_etc .inner > div a:hover img {
	transform: scale(1.1);
}

.top_etc .inner > div a p {
	position: absolute;
	top:50%;
	left:50%;
	-webkit-transform:translate(-50%, -50%);
	transform:translate(-50%, -50%);
}

.top_etc .inner > div a p span {
	display: inline-block;
	min-width: 285px;
	height: 85px;
	padding: 10px 0 0;
	font-size: 2.4rem;
	font-family: "游明朝", YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	text-align: center;
	background-color: #fff;
	letter-spacing: 0.05em;
}

.top_etc .inner > div a p span small {
	display: block;
	font-size: 1.1rem;
	color: #a7a7a7;
	font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", Arial, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "游ゴシック体", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
}

/*--------------------------------
	お知らせ
--------------------------------*/

.top_news {
	margin: 200px auto 100px;
}

.top_news ul {
	max-width: 990px;
}

.top_news ul li:nth-of-type(1) {
	border-top: 1px solid #ccc;
}

.top_news ul li {
	padding: 25px 3%;
	border-bottom: 1px solid #ccc;
	font-size: 1.4rem;
}

.top_news ul li a {
	position: relative;
	display: block;
	padding: 0 0 0 150px;
}

.top_news ul li a span {
	position: absolute;
	left: 0;
	top: 0;
}



/* ============================== SP ============================== */

@media only screen and (max-width: 812px) {
	
	
	/*--------------------------------
		共通レイアウト
	--------------------------------*/
	
	/* タイトル */

	h2 small:before {
		margin: 10px auto;
	}
	
	
	/*--------------------------------
		トップのみヘッダータイトル固定
	--------------------------------*/
	
	header .language {
		display: block !important;
		position: absolute;
		right: auto;
		left: 10px;
		top: 15px;
		margin: 0 auto;
		line-height: 1;
		font-size: 0;
	}
	
	header .language li {
		display: inline-block;
		font-size: 1.2rem;
	}
	
	header .language li:nth-of-type(n+2):before {
		display: inline-block;
		content: "/";
		padding: 0 7px;
	}
	
	
	/*--------------------------------
		ヘッダー スクロールで出現（トップのみ）
	--------------------------------*/
	
	.header_bar {
		top: -70px;
	}
	
	.header_bar.fixed {
		top: 0;
	}
	
	/*--------------------------------
		ロゴ
	--------------------------------*/
	
	.top_logo {
		padding: 18px 0 27px;
	}
	
	.top_logo img {
		height: 105px;
		max-width: 90%;
	}
	
	/* ご予約・お問い合わせ */
	
	.top_reserve {
		bottom: -85px;
		width: 95px;
		height: 95px;
		padding: 25px 0 0;
		font-size: 1.3rem;
		line-height: 1.4;
	}
	
	.top_reserve svg {
		width: 7px;
		height: 15px;
		bottom: 10px;
	}
	
	.evacuation .top_reserve {
		right: 3%;
	}
	
	.top_reserve:hover {
		background-color: #3eaee6;
	}
	
	.top_reserve:hover svg {
		transform:translate3d(0, 0, 0);
	}
	

	/*--------------------------------
		メインビジュアル
	--------------------------------*/
	
	/* スクロールボタン */

	.top_slide .btn_scroll {
		font-size: 1rem;
	}
	
	.top_slide .btn_scroll a {
		display: block;
		padding: 0 0 35px;
		letter-spacing: 0.1em;
	}
	
	.top_slide .btn_scroll a:after {
		position: absolute;
		top: 25px;
		left: 50%;
		content: "";
		display: block;
		width: 1px;
		height: 0;
		background-color: #fff;
		animation: scrollBtn 2s linear 0s infinite;
	}
	
	.top_slide .btn_scroll a:hover:after {
		background-color: #3eaee6;
	}
	
	.top_slide .btn_scroll a:link,
	.top_slide .btn_scroll a:visited { color: #fff; }
	.top_slide .btn_scroll a:hover,
	.top_slide .btn_scroll a:active { color: #fff; }
	
	@-webkit-keyframes scrollBtn {
		0%		{ height: 0; }
		100%	{ height: 30px; }
	}

	@keyframes scrollBtn {
		0%		{ height: 0; }
		100%	{ height: 30px; }
	}

	/* スライド */

	.top_slide .slide .slide_box {
		position: relative;
		height: calc(100vh - 150px);
		width: 100%;
		background-attachment: scroll;
	}
	
	.top_slide .slide .slide_box:nth-of-type(1) { background-image: url(../images/top_slide01_sp.jpg); }
	.top_slide .slide .slide_box:nth-of-type(2) { background-image: url(../images/top_slide02_sp.jpg); }
	.top_slide .slide .slide_box:nth-of-type(3) { background-image: url(../images/top_slide03_sp.jpg); }
	.top_slide .slide .slide_box:nth-of-type(4) { background-image: url(../images/top_slide04_sp.jpg); }
	
	.top_slide .slide .slide_box div {
		position: absolute;
		top:50%;
		left:50%;
		-webkit-transform:translate3d(-50%, -50%, 0) !important;
		transform:translate3d(-50%, -50%, 0) !important;
		text-align: center;
		z-index: 2;
	}
	
	.top_slide .slide.io.move .slide_box div {
		-webkit-transform:translate3d(-50%, -50%, 0) !important;
		transform:translate3d(-50%, -50%, 0) !important;
	}
	
	.top_slide .slide .slide_box div a {
		width: 80vw;
		height: auto;
		padding: 45px 5% 60px;
		background-color: rgba(255, 255, 255, 0.95);
	}
	
	.top_slide .slide .slide_box div a svg {
		bottom: 20px;
	}
	
	.top_slide .slide .slide_box div a:hover {
		background-color: rgba(255, 255, 255, 0.95);
	}
	
	.top_slide .slide .slide_box div a:hover svg {
		fill: #000;
		transform:translate3d(0, 0, 0);
	}
	
	.top_slide .slide .slide_box div a em {
		top: 10px;
		left: 15px;
		color: #3eaee6;
	}
	
	.top_slide .slide .slide_box div a strong {
		display: block;
		margin: 0 auto 20px;
		font-size: 1.8rem;
		letter-spacing: 0;
	}
	
	.top_slide .slide .slide_box div a p {
		font-size: 1.4rem;
	}
	
	/* スライド内装飾用ボックス */
	
	.top_slide .slide_box > i.square {
		display: block;
		position: absolute;
		background-color: #3eaee6;
		z-index: 1;
		mix-blend-mode: overlay;
	}
	
	@keyframes squareopacity {
		0%	{ opacity: 0; }
		50%	{ opacity: 0; }
		60% { opacity: 0.8; }
		100% { opacity: 0.8; }
	}

	.top_slide .slide_box:nth-of-type(1) > i.square:nth-of-type(1) { left: 70%; top: 20%; height: 120px; width: 100px; }
	.top_slide .slide_box:nth-of-type(1) > i.square:nth-of-type(2) { left: 3%; top: 60%; height: 100px; width: 160px; }
	
	.top_slide .slide_box:nth-of-type(2) > i.square:nth-of-type(1) { left: 6%; top: 20%; height: 80px; width: 160px; }
	.top_slide .slide_box:nth-of-type(2) > i.square:nth-of-type(2) { left: 70%; top: 55%; height: 150px; width: 100px; }
	
	.top_slide .slide_box:nth-of-type(3) > i.square:nth-of-type(1) { left: auto; right: 5%; top: auto; bottom: 15%; height: 160px; width: 160px; }
	.top_slide .slide_box:nth-of-type(3) > i.square:nth-of-type(2) { left: 5%; top: 22%; height: 80px; width: 80px; }
	
	.top_slide .slide_box:nth-of-type(4) > i.square:nth-of-type(1) { left: 3%; top: 20%; height: 130px; width: 60px; }
	.top_slide .slide_box:nth-of-type(4) > i.square:nth-of-type(2) { left: 61%; top: 50%; height: 130px; width: 130px; }


	/* スライド ページネーション */
	
	.top_slide .slide .slick-dots {
		left: 5%;
		top: auto;
		bottom: 15px;
		-webkit-transform:translate(0, 0);
		transform:translate(0, 0);
	}
	
	.top_slide .slide .slick-dots li {
		height: 10px;
		width: 10px;
	}
	
	.top_slide .slide .slick-dots li button {
		height: 10px;
		width: 10px;
	}
	
	.top_slide .slide .slick-dots li button:before {
		height: 10px;
		width: 10px;
	}
	
	/*--------------------------------
		コンセプト
	--------------------------------*/
	
	.top_concept {
		padding: 80px 0 0;
	}
	
	.top_concept  .box_wrap strong {
		margin: 0 auto 30px;
		font-size: 2rem;
		line-height: 1.8;
		text-align: left;
	}
	
	.top_concept  .box_wrap p {
		line-height: 2;
	}
	
	
	/*--------------------------------
		私たちにできること
	--------------------------------*/
	
	.top_cando {
		margin: 100px auto 0;
	}
	
	.top_cando .box_wrap div {
		position: relative;
		display: inline-block;
		width: 100%;
		height: 250px;
	}
	
	.top_cando .box_wrap div:nth-of-type(n+2) {
		margin: 0;
	}
	
	.top_cando .box_wrap div a {
		display: block;
		width: 100%;
		height: 100%;
		overflow: hidden;
	}
	
	.top_cando .box_wrap div a:hover img {
		transform: scale(1);
	}
	
	.top_cando .box_wrap div p {
		width: 250px;
		height: 100px;
		min-width: 250px;
		min-height: 100px;
	}
	
	.top_cando .box_wrap div:hover p span {
		background-color: rgba(255, 255, 255, 0.9);
	}
	
	.top_cando .box_wrap div p strong {
		font-size: 2rem;
	}
	
	.top_cando .box_wrap div p strong small {
		font-size: 1.1rem;
	}
	
	/*--------------------------------
		当クリニックの特徴
	--------------------------------*/
	
	.top_feature {
		margin: 50px auto 0;
		padding: 50px 0;
	}
	
	.top_feature .box_wrap div {
		display: block;
		width: 100%;
		margin: 0 auto 30px;
	}
	
	.top_feature .box_wrap div:nth-of-type(3n) {
		margin: 0 auto 30px;
	}
	
	.top_feature .box_wrap div a {
		height: 40vw;
	}
	
	.top_feature .box_wrap div a:hover img {
		transform: scale(1);
	}
	
	.top_feature .box_wrap div a strong span {
		width: 200px;
		padding: 10px 0;
		font-size: 1.6rem;
	}
	
	.top_feature .box_wrap div p {
		font-size: 1.3rem;
		text-align: left;
	}
	
	
	/*--------------------------------
		施設紹介
	--------------------------------*/
	
	.top_facility {
		margin: 50px auto 0;
	}
	
	.top_facility .slide .slick-slide {
		padding: 0 10px;
	}
	

	/*--------------------------------
		ごあいさつ
	--------------------------------*/
	
	.top_greeting {
		margin: 50px auto 0;
		padding: 50px 0 150px;
		background: rgba(89, 213, 217, 0.2) url(../images/greeting.png) no-repeat right 5% bottom;
		background-size: 110px auto;
	}
	
	.top_greeting .inner {
		max-width: 100%;
	}
	
	.top_greeting .inner strong {
		display: block;
		margin: 0 auto 20px;
		font-size: 1.8rem;
	}
	
	.top_greeting .inner p {
		width: 100%;
	}

	.top_greeting .inner p em {
		margin: 15px auto 0;
		font-size: 1.4rem;
	}


	/*--------------------------------
		その他リンク
	--------------------------------*/
	
	.top_etc {
		margin: 50px auto 0;
	}
	
	.top_etc .inner > div {
		float: none;
		width: 100%;
	}
	
	.top_etc .inner > div:nth-of-type(1) {
		margin: 0 auto 30px;
	}
	
	.top_etc .inner > div a:hover img {
		transform: scale(1);
	}

	.top_etc .inner > div a p span {
		min-width: 180px;
		height: 55px;
		padding: 10px 0 0;
		font-size: 1.8rem;
		line-height: 1.3;
	}
	
	.top_etc .inner > div a p span small {
		font-size: 1rem;
	}
	
	/*--------------------------------
		お知らせ
	--------------------------------*/
	
	.top_news {
		margin: 50px auto;
	}
	
	.top_news ul {
		max-width: 100%;
	}
	
	.top_news ul li {
		padding: 10px 3%;
		font-size: 1.3rem;
	}
	
	.top_news ul li a {
		padding: 0;
	}
	
	.top_news ul li a span {
		display: block;
		margin: 0 auto 5px;
		position: relative;
		left: 0;
		top: 0;
	}
	
}

	/*--------------------------------
		2024/02/08〜
	--------------------------------*/

	.flex_img {
		display: flex;
		list-style: none;
	}

.flex_img li {
    padding: 1%;
}

.content {
	padding: 3% 0;
}