@charset "utf-8";
/*----- =================================
=== 施設案内ページ専用CSS
================================= -----*/
br.spbr{
  display: none;
}
br.pcbr{
  display: block;
}
@media screen and (max-width: 480px) {
  br.pcbr{
    display: none;
  }
  br.spbr{
    display: block;
  }
}
.section{
	/*padding: 50px 0 0;*/
	padding: 0;
}
.facility_movie{
	padding: 60px 0;
    background: linear-gradient(50deg, rgba(255, 227, 239, 0.5) 2%, rgba(220, 255, 175, 0.6) 66%, rgba(90, 200, 214, 0.7));
	text-align: center;
}
.facility_movie .wrap_movie{
	margin: 0 auto;
	width: 90%;
	max-width: 700px;
}
.facility_movie .movie{
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	height:0;
}
.facility_movie .movie iframe{
	position: absolute;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
}
.facility_movie h2{
	margin: 0 auto;
	width: 60%;
	max-width: 300px;
}
.facility_movie p{
	font-size: min(16px, 3vw);
	line-height: 1.5;
	margin: 30px 0px;
	font-weight: bold;
}
@media screen and (max-width: 480px) {
	.facility_movie p{
		margin: 15px 0px;
	}
}
.anchor_menu{
	display: flex;
	margin: 50px -5px;
}
.anchor_menu li{
	width: 25%;
	padding: 5px;
}
.anchor_menu a{
	display: block;
	height: 160px;
	text-align: center;
	position:relative;
}
.anchor_menu a .img{
	display: block;
	width: 100%;
	height: 100px;
	background:no-repeat center center;
	background-size: cover;
}
.anchor_menu a .img:before{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background:rgba(0, 0, 0, .5);
	transition: 0.2s linear;
}
.anchor_menu a:hover .img:before{
	opacity: 0;
}
.anchor_menu a .name{
	position: relative;
	display: block;
	width: 100%;
	height: 60px;
	padding: 12px 10px 0;
	font-size: 15px;
	font-weight: bold;
	color: #fff;
	line-height: 1;
	letter-spacing: 1.5px;
	z-index: 2;
}
.anchor_menu a .name:after{
	content: " ";
	position: absolute;
	width: 0;
	height: 0;
	left: 50%;
	bottom: 0;
	margin-left: -5px;
	border: 10px solid transparent;
	border-top: 5px solid #fff;
}
.anchor_menu a .name span{
	font-size: 10px;
	font-weight: normal;
}
.anchor_menu li.gym a .img{background-image: url(../images/facility/bk_menu_gym.jpg);}
.anchor_menu li.gym a .name{background: #875faa;}
.anchor_menu li.studio a .img{background-image: url(../images/facility/bk_menu_studio.jpg);}
.anchor_menu li.studio a .name{background: #ea7628;}
.anchor_menu li.aqua a .img{background-image: url(../images/facility/bk_menu_aqua.jpg);}
.anchor_menu li.aqua a .name{background: #4686c0;}
.anchor_menu li.relax a .img{background-image: url(../images/facility/bk_menu_relax.jpg);}
.anchor_menu li.relax a .name{background: #51b58f;}

.area_content .header{
	padding: 100px 0;
	text-align: center;
	background:no-repeat center center;
	background-size: cover;
	position: relative;
	z-index: 0;
}
.area_content .header:after{
	position: absolute;
	top: 0;
	left: 0;
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	background:rgba(0, 0, 0, .5);
	z-index: 1;
}
.area_content .header h3{
	max-width: 320px;
	margin: 0 auto 30px;
	padding: 10px;
	color: #fff;
	font-size: 29px;
	letter-spacing: 3px;
	z-index: 2;
	position: relative;
}
.area_content .header h3 span{
	display: block;
	font-size: 13px;
}
.area_content .header p{
	color: #fff;
	font-size: 18px;
	letter-spacing: 0.08em;
	line-height: 1.5;
	z-index: 2;
	position: relative;
}
.area_content.gym .header{background-image: url(../images/facility/bk_gym.jpg);}
.area_content.gym .header h3{background: #875faa;}
.area_content.studio .header{background-image: url(../images/facility/bk_studio.jpg);}
.area_content.studio .header h3{background: #ea7628;}
.area_content.aqua .header{background-image: url(../images/facility/bk_aqua.jpg);}
.area_content.aqua .header h3{background: #4686c0;}
.area_content.relax .header{background-image: url(../images/facility/bk_relax.jpg);}
.area_content.relax .header h3{background: #51b58f;}
.area_content ul{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	margin: 60px 0 0;
}
.area_content ul li{
	width: 49%;
}
.area_content ul h4{
	text-align: center;
	font-size: 20px;
	font-weight: bold;
	margin: 10px 0;
}
.area_content ul p{
	line-height: 1.8;
	padding-bottom: 40px;
}
@media screen and (max-width: 480px) {
	.anchor_menu{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	.anchor_menu li{
		width: 50%;
	}
	.area_content .header{
		padding: 30px 0;
	}
	.area_content .header h3{
		max-width: 60%;
		margin: 0 auto 10px;
		font-size: 18px;
	}
	.area_content .header h3 span{
		font-size: 11px;
	}
	.area_content .header p{
		font-size: 14px;
	}
	.area_content ul li{
		width: 100%;
	}
}






