/*全デバイス共通*/
*{
	margin: 0;
	padding: 0
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
.html_fixed{
	touch-action: none;
	overflow-y: hidden;
}
body {
	font-family: 'Noto Sans JP', sans-serif;
	margin: 0;
	padding: 0;
	height: 100vh;
	color: #444444;
	font-size: 16px;
	letter-spacing: 0.075em;
}
a{
	text-decoration: none;
	transition: 0.3s;
	cursor: pointer;
}
a:hover{
	opacity: 0.8;
}
li {
	list-style: none;
}
@media screen and (max-width: 768px) {
	.sp_none,.pcbr{
		display: none;
	}
}
@media screen and (min-width: 769px) {
	.pc_none,.spbr{
		display: none !important;
	}
}

/* ------------------------------ HEADER */
header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	box-sizing: border-box;
	height: 100px;
	background: linear-gradient(-90deg,#4c8cd2,#55ace0);
	width: 100%;
	padding: 0 20px;
}
.hd_inner{
	margin: 0 auto;
	width: 100%;
	max-width: 1580px;
}
.logo img{
	max-width: 100%;
}

@media screen and (max-width: 768px) {
	header{
		background: #fff;
	}
}
@media screen and (max-width: 480px) {
	header{
		height: 50px;
		background: #fff;
	}
	.logo img{
		width: 87px;
	}
}


/* ------------------------------ NAVI */
.side_btn {
	position: fixed;
	right: 0;
	top: 0;
	z-index: 99999;
	transition: 0.3s;
}
.side_menu{
	display: block;
	width: 100px;
	height: 100px;
	background: linear-gradient(-45deg,#4c8cd2,#55ace0);
	cursor: pointer;
}
.side_menu.show{
	background: #fff;
	transition: 0.2s;
}
.nav_btn{
	position: relative;
}
.nav_btn i{
	display: block;
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	width: 50px;
	height: 2px;
	background: #fff;
	transition: 0.3s;
}
.show i{
	background: #55ace0;
	transition: 0.3s;
}
.nav_btn i:nth-child(1){
	top: 30px;
}
.nav_btn i:nth-child(2){
	top: 50px;
}
.nav_btn i:nth-child(3){
	top: 70px;
}
.show i:nth-child(1){
	width: 60px;
	transform: translate(-30px,15px) rotate(45deg);
}
.show i:nth-child(2){
	opacity: 0;
}
.show i:nth-child(3){
	width: 60px;
	transform: translate(-30px,-25px) rotate(-45deg);
}
.gnav_inner{
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	top: 0;
	z-index: 99998;
	right: -100%;
	visibility: hidden;
	width: 100%;
	height: 100vh;
	background: #55AAE0;
	transition: 0.5s;
	overflow-y: scroll;
}
.show .gnav_inner{
	right: 0;
	visibility: visible;
}
.gnav_flex{
	display: flex;
	justify-content: space-between;
	right: 0;
	visibility: visible;
	margin: 0 auto;
	width: 100%;
	max-width: 1000px;
}
.gnav_logo{
	padding: 0 0 0 20px;
}
.gnav_inner ul{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	max-width: 600px;
	margin: 0;
	padding: 0;
}
.gnav_inner ul li{
	display: flex;
	justify-content: center;
	align-items: center;
	box-sizing: border-box;
	border-bottom: 1px solid #fff;
	margin: 0 0 0 50px;
	width: 40%;
}
.gnav_inner ul li.col_top{
	border-top: 1px solid #fff;
}
.gnav_inner ul li a{
	display: flex;
	align-items: center;
	padding: 0;
	width: 100%;
	height: 80px;
	color: #fff;
	font-size: 14px;
	transition: 0.3s;
}
.gnav_inner ul li a:hover{
	padding-left: 15px;
	background: #78BEE7;
}
@media screen and (max-width: 768px) {
	.gnav_inner{
		align-items: flex-start;
	}
	.gnav_flex{
		flex-direction: column;
		align-items: flex-start;
		width: 100%;
		max-width: 1000px;
	}
	.gnav_logo{
		padding: 20px 20px;
		width: 100%;
	}
	.gnav_logo img{
		height: 60px;
	}
	.gnav_inner ul{
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		width: 100%;
		max-width: 100%;
		margin: 20px 0 0;
		padding: 0 20px;
	}
	.gnav_inner ul li{
		display: flex;
		justify-content: center;
		align-items: center;
		box-sizing: border-box;
		border-bottom: 1px solid #fff;
		margin: 0 0 0 0;
		width: 48%
	}
	.gnav_inner ul li a{
		padding: 15px 0;
		height: 60px;
		font-size: 13px;
	}
}
@media screen and (max-width: 480px) {
	.gnav_logo{
		padding: 10px 20px 0;
		width: 100%;
	}
	.gnav_logo img{
		height: 40px;
	}
}
.overlay{
	visibility: hidden;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background: rgba(0,0,0,0);
	transition: 0.3s;
}
.overlay.on{
	visibility: visible;
	background: rgba(0,0,0,0.2);
}
.fixed_menu{
	display: none;
	justify-content: space-around;
	align-items: center;
	position: fixed;
	bottom: 0;
	left: 0;
	z-index: 99997;
	width: 100%;
	height: 55px;
}
.fixed_menu i{
	display: block;
	width: 1px;
	height: 55px;
	background: #fff;
}
.fixed_menu a{
	display: flex;
	justify-content: center;
	align-items: center;
	height: 55px;
	color: #fff;
}
.fixed_menu a img{
	margin: 0 6px 0 0;
	height: 26px;
}
.fm_clinic{
	width: 23.33%;
	background: linear-gradient(-90deg,#4c8cd2,#55ace0);
}
.fm_clinic::before{
	content: "";
	background: url(./images/common/clinic_icon.png) no-repeat;
	background-size: contain;
	display: inline-block;
	width: 20px;
	height: 25px;
	vertical-align: middle;
	margin-right: 5px;
}
.fm_price{
	width: 23.33%;
	background: linear-gradient(-90deg,#4c8cd2,#55ace0);
}
.fm_price::before{
	content: "";
	background: url(./images/common/price_icon.png) no-repeat;
	background-size: contain;
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 5px;
}
.fm_tel{
	width: 23.33%;
	background: linear-gradient(-90deg,#4c8cd2,#55ace0);
}
.fm_tel::before{
	content: "";
	background: url(./images/common/tel_icon.png) no-repeat;
	background-size: contain;
	display: inline-block;
	width: 13px;
	height: 22px;
	vertical-align: middle;
	margin-right: 5px;
}
.fm_reservation{
	width: 30%;
	background: linear-gradient(-90deg,#0ba360,#3cba92);
}
.fm_reservation::before{
	content: "";
	background: url(./images/common/reservation_icon.png) no-repeat;
	background-size: contain;
	display: inline-block;
	width: 17px;
	height: 18px;
	vertical-align: middle;
	margin-right: 5px;
}
.goto_top{
	position: fixed;
	bottom: 2%;
	right: 1%;
	z-index: 999;
	opacity: 0;
	transition: 0.3s;
}
.goto_top.show{
	opacity: 1;
}
.goto_top img{
	max-width: 100%;
}
@media screen and (max-width: 768px) {
	.fixed_menu{
		display: flex;
	}
	.goto_top{
		bottom: 10%;
		right: 2%;
	}
}
@media screen and (max-width: 480px) {
	.side_menu{
		display: block;
		width: 50px;
		height: 50px;
		background: linear-gradient(-45deg,#4c8cd2,#55ace0);
		cursor: pointer;
	}
	.nav_btn i{
		display: block;
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 25px;
		height: 2px;
		background: #fff;
		transition: 0.3s;
	}
	.nav_btn i:nth-child(1){
		top: 15px;
	}
	.nav_btn i:nth-child(2){
		top: 25px;
	}
	.nav_btn i:nth-child(3){
		top: 35px;
	}
	.show i{
		background: #55ace0;
		transition: 0.3s;
	}
	.show i:nth-child(1){
		width: 30px;
		transform: translate(-15px,10px) rotate(45deg);
	}
	.show i:nth-child(2){
		opacity: 0;
	}
	.show i:nth-child(3){
		width: 30px;
		transform: translate(-15px,-10px) rotate(-45deg);
	}
	.fixed_menu a{
		font-size: 13px;
	}
	.goto_top img{
		width: 35px;
	}
}
@media screen and (max-width: 320px) {
	.fixed_menu a{
		font-size: 10px;
	}
}


/* ------------------------------ FOOTER */
footer{
	position: relative;
	margin: 0 auto;
	padding: 50px 20px 30px;
	width: 100%;
	background: url(./images/common/pc/footer_bg.png) no-repeat;
	background-size: cover;
	color: #fff;
}

footer a{
	color: #fff;
}
footer .ft_inner{
	margin: 0 auto;
	width: 90%;
	max-width: 1580px;
}
footer .ft_inner > div:nth-child(1){
	padding-bottom: 30px;
}
footer .logo{
	display: inline-block;
}
footer .logo img{
	max-width: 100%;
}
footer .ft_info{
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	width: 100%;
	max-width: 1100px;
}
footer .ft_info > dl:nth-child(-n+2){
	width: 25%;
}
footer .ft_info > dl:nth-child(2){
	border-right: 1px solid #fff;
}
footer .ft_info > dl:last-of-type{
	width: 40%;
}
footer .ft_info > dl:last-of-type > dd:nth-child(1){
	padding-bottom: 1rem;
}
footer .ft_info dd{
	font-size: 16px;
	line-height: 1.66;
	margin-bottom: 0.8rem;
}
footer .ft_info .flex{
	margin: 20px 0 0;
}
footer small{
	display: block;
	margin: 20px 0 0;
}
@media screen and (max-width: 768px) {
	footer{
		padding: 30px 0 74px;
		background: url(./images/common/sp/footer_bg.png) no-repeat;
		background-size: cover;
	}
	footer .ft_inner{
		width: 100%;
	}
	footer .ft_inner > div:nth-child(1){
		padding-bottom: 20px;
		text-align: center;
	}
	footer .ft_info{
		display: block;
		width: 80%;
	}
	footer .ft_info > dl:nth-child(2){
		border-right: none;
		margin-bottom: 30px;
	}
	footer .ft_info > dl:nth-child(-n+2){
		width: 100%;
	}
	footer .ft_info > dl:last-of-type{
		width: 100%;
	}
	footer .ft_info > dl:nth-child(-n+2) dd{
		border-bottom: 1px solid;
		border-image: linear-gradient(90deg, #55ace0 0%, #ffffff 50%, #4c8cd2 100%) 1/0 0 1px 0;
		border-image-slice: 1;
		padding: 1.2em 0;
		margin-bottom: 0;
	}
	footer .ft_info > dl:nth-child(1) > dd:nth-child(1){
		border-top: 1px solid;
		border-image: linear-gradient(90deg, #55ace0 0%, #ffffff 50%, #4c8cd2 100%) 1/0 0 1px 0;
		border-image-slice: 1;
	}
	footer .ft_info .flex{
		margin: 0;
	}
	footer small{
		text-align: center;
	}
	.acdn{
    display: none;
  }
	footer .ft_info .acdn > dd:last-child{
		border: none;
		padding-bottom: 0;
	}
	.acdn > dd{
		text-indent: 1em;
	}
  .acdn.open{
    display: block;
  }
	.acdn_menu{
		position: relative;
	}
	.acdn_btn{
    position: absolute;
		top: 15px;
    right: 0;
  }
	.acdn_btn::before{
    content: "";
    background: url(./images/common/open.png) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 40px;
    height: 40px;
  }
  .acdn_btn.open::before{
    content: "";
    background: url(./images/common/close.png) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 480px) {
	footer .ft_info dd{
		font-size: 12px;
	}
	.acdn_btn::before{
    width: 20px;
    height: 20px;
  }
  .acdn_btn.open::before{
    width: 20px;
    height: 20px;
  }
}


/* ------------------------------ 下層MV */
.sub_mv{
	width: 100%;
	background: linear-gradient(-90deg,#4c8cd2,#55ace0);
}
.sub_mv > div{
	width: 100%;
	max-width: 1920px;
	margin: 0 auto;
	overflow: hidden;
	margin-bottom: 50px;
}
.sub_mv > div > div{
	position: relative;
	width: 100%;
	height: 400px;
	border-bottom: 15px solid;
	border-image: linear-gradient(90deg, #55ace0 0%, #ffffff 50%, #4c8cd2 100%) 1/0 0 15px 0;
	border-image-slice: 1;
	border-top: 0px;
	border-left: 0px;
	border-right: 0px;
	border-radius: 50px 0 0 0;
}
.sub_mv > div > div h2{
	white-space: nowrap;
	position: absolute;
	top: 55%;
	left: 50%;
	transform: translate(-50%, -55%);
	-webkit-transform: translate(-50%, -55%);
	-ms-transform: translate(-50%, -55%);
}
@media screen and (max-width: 768px) {
	.sub_mv > div{
		margin-bottom: 30px;
	}
	.sub_mv > div > div{
		height: 150px;
		border-bottom: 7px solid;
		border-image: linear-gradient(90deg, #55ace0 0%, #ffffff 50%, #4c8cd2 100%) 1/0 0 7px 0;
	}
}

.reserve{
	width: 100%;
	background: url(./images/common/reserve_bg.png) no-repeat;
	background-size: cover;
	background-position: center center;
	padding: 100px 20px;
}
.reserve img{
	max-width: 100%;
	display: block;
	margin: 30px auto 50px;
}
.reserve > div{
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
}
.reserve > div h2{
	text-align: center;
	font-size: 30px;
	font-weight: bold;
	color: #fff;
	padding-bottom: 50px;
	line-height: 1.5;
}
.reserve > div p{
	color: #fff;
  text-align: center;
	line-height: 1.87;
	padding-bottom: 30px;
}
.reserve .btn_02{
  border: 2px solid #fff;
}
@media screen and (max-width: 768px){
	.reserve{
		padding: 50px 20px;
	}
}
@media screen and (max-width: 480px){
	.reserve{
		padding: 30px 20px 20px;
	}
	.reserve img{
		max-width: 150px;
		margin: 20px auto 30px;
	}
	.reserve > div h2{
		font-size: 16px;
		padding-bottom: 30px;
	}
	.reserve > div p{
		line-height: 1.5;
		font-size: 14px;
	}
}

/* ------------------------------ Footer上バナー */
.column{
	padding: 70px 0;
}
.column div{
	text-align: center;
}
.column div img{
	max-width: 100%;
}
@media screen and (max-width: 480px){
	.column{
		padding: 30px 0;
	}
}