
/* CSS Document */

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

top-contents
=================================================*/

.js-wave {
   position: absolute;
   bottom: 0;
   left: 0;
   width: 100%;
   /* 波の高さ。見せたい波の大きさに合わせて調整 */
   height: 80px;
   pointer-events: none;
   z-index: 2;
   /* 上辺ぴったりに乗せたくない場合は top のマイナス値で微調整可 */
}
.js-wave-svg {
   display: block;
   width: 100%;
   height: 100%;
}

.js-wave-path {
   fill: #e8e2e1;
}
.js-wave-path.white  {
   fill: #ffffff;
}

/* 下辺に使う場合（上下反転）: 親側で .js-wave に is-bottom を足す */
.js-wave.is-bottom {
   top: auto;
   bottom: 0;
   transform: scaleY(-1);
}

.paging {
	display: table;
	border-top: 1px solid #FFF;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	margin: 60px auto 0;
}
.paging li {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	border-left: 1px solid #FFF;
	background-color: #EEE;
}
.paging li:nth-of-type(1) {
	background-color: #999;
}
.paging li:nth-last-of-type(1) {
	background-color: #999;
}
.paging li a {
	display: block;
	color: #999;
	text-decoration: none;
	padding: .5em 1em;
}
.paging li:nth-of-type(1) a {
	color: #FFF;
}
.paging li:nth-last-of-type(1) a {
	color: #FFF;
}
.paging li a.active {
	color: #FFF;
	background-color: #2864c2;
}
.paging li a:hover {
	color: #FFF;
	background-color: #2864c2;
}

.youtube {
	width: 100%;
	position: relative;
}
.youtube::before {
	content: '';
	display: block;
	padding-top: 56.25%;
}
.youtube iframe {
	width: 100% !important;
	height: 100% !important;
	position: absolute;
	top: 0;
	right: 0;
}

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

map
=================================================*/

.map {
	width: 100%;
	height: 300px;
	position: relative;
	overflow: hidden;
	margin: 0 auto;
}
.map iframe, .map object, .map embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}


@media only screen and (min-width:1px) and (max-width: 768px) {
	
	.js-wave {
		height: 30px;
	}
	.paging {
		margin: 8% auto 0;
	}
	.paging li a {
		padding: .4em .8em;
	}
	
	.map {
		width: 100%;
		height: 350px;
	}
}

@media only screen and (min-width:1px) and (max-width: 568px) {
	

}
	
@media only screen and (min-width:1px) and (max-width: 480px) {
	

}

