/*!
 * Bootstrap v3.3.4 (http://getbootstrap.com)
 * Copyright 2011-2015 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 *//*! normalize.css v3.0.2 | MIT License | git.io/normalize */html{font-family:sans-serif;-webkit-text-size-adjust:100%;-ms-text-size-adjust:100%}

* { box-sizing:border-box; position:relative;}


html,body {
		margin:0;
		padding:0;
		-webkit-text-size-adjust: 100%;
		-moz-text-size-adjust: 100%;
		-ms-text-size-adjust: 100%;
		text-size-adjust: 100%;
		width:100%;
		word-break: break-all;
		font-family: "Murecho", sans-serif;
		font-optical-sizing: auto;
		font-weight: 400;
		font-style: normal;
	}

body::-webkit-scrollbar { 
  display: none;
	position: relative;
}
	

#container {
	display:block;
	width:100%;
	height:100%;
	position:relative;
}

/*フッター*/
footer {
	width: 100%;
	position: absolute;
	bottom:0;
	left:50%;
	transform:translate(-50%,-0%);
}

footer .inner{
	width: 100%;
	padding: 1em;
}

section {
	width:100%;
	height: 100vh;
	background-color:transparent;
	position:relative;
}

section .inner {
	position:relative;
	padding:5vw;
	height: 100%;
}

section:last-child .inner {
	padding-bottom:calc(5vw + 60px);
}


.scroll {
	display:block;
	height:5vh;
	width:5vh;
	background-color:#333;
	position:absolute;
	top:100%;
	left:50%;
	transform:translate(-50%,-150%);
	border-radius:0.5rem;
	animation: purun 1.8s linear 0s infinite;
}

@keyframes purun {
  0%   { transform: translate(-50%, -150%); }
  7%  { transform: translate(-50%, -145%); }
  15%  { transform: translate(-50%, -160%); }
  25%  { transform: translate(-50%, -160%); }
  35%  { transform: translate(-50%, -145%); }
  100% { transform: translate(-50%, -150%); }
}

.scroll a::before {
	content:"";
	display:block;
	height:2vh;
	width:2vh;
	border:2px solid #fff;
	border-top:none;
	border-left:none;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-75%) rotate(45deg);
}

.scroll a {
	display:block;
	height:100%;
	width:100%;
}


.circle {
   width: 100px;
   height: 100px;
   margin: 50px auto;
   border-radius: 50px;
   background: #95dade;
   animation: fuwafuwa 2s infinite;
}

/*-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-
　トップビュジュアル
-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-*/

#mainv {
	width:100%;
	position:relative;
}

#news {
	width:100%;
	padding:0;
	background-color:#3282ca;
}


.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* ← パララックス効果のカギ */
  z-index: -1;                 /* 背景を奥に */
}

.bg-slider__title{
	color: #fff;
	font-size: 6vw;
	line-height: 1.3;
	font-weight: bold;
	text-align:center;
	text-shadow: 1px 3px 1px #000;
	/*font-family:Verdana, Geneva, sans-serif;*/
	margin:0;
	
	position:relative;
	top:40%;
	transform:translate(-0%,-50%);
	z-index: 1;
}


/*-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-
　丸カテゴリー
-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-*/

#category{
	margin:0 auto;
	position:absolute;
	top:calc(100% - 2rem);
	left:50%;
	transform:translate(-50%,-100%);
}

#category ul{
	width:90%;
	max-width:1000px;
	min-width:600px;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
  margin:0 auto;
  padding:0;
  position:relative;
}

#category ul li{
	list-style:none;
	width:30%;
	border:5px solid #fff;
	background-color:#fff;
	position:relative;
	overflow:hidden;
	top:0%;
	transform:translate(-0%,0%);
	transition:0.5s all;
	border-radius:100%;
}

#category ul li a{
	width:100%;
	height:100%;
	display:block;
	position:relative;
	background-color:#fff;
	text-decoration:none;
}

#category ul li a img{
	width:100%;
	transition:0.3s all;
	z-index:1;
	position:relative;
	top:50%;
	transform:scale(1,1) translate(-0%,-50%);
	display:block;
}

#category ul li:hover {
	transform:translate(-0%,-10%);
}
/*
#category ul li:hover a img{
	transform:scale(1.2,1.2) translate(-0%,-50%);
	transition:0.5s all;
}
*/

#category ul li .detail{
	width:100%;
	height:100%;
	background-color:rgba(0,0,0,0.0);
	color:#fff;
	z-index:50;
	margin:0;
	padding:20% 20%;
	position:absolute;
	top:100%;
	transform:translate(-0%,-0%);
	transition:0.5s all;
	font-size:140%;
}

#category ul li:hover .detail{
	background-color:rgba(0,0,0,0.4);
	transform:translate(-0%,-100%);
	transition:0.5s all;
}

#category ul li .detail p{
	font-weight:bold;
	margin:1em 0 3em;
	font-size:140%;
}

/*-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-
　カテゴリー
-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-*/

#category2{
	margin:0 auto;
	background-color:#333;
}

#category2 .inner{
	margin:0;
	padding:0 0 30px 0;
}

#category2 ul{
	width:100%;
	height: 100%;
	max-width:1200px;
	margin:0 auto;
	padding:2vw 2vw 0;
	position:relative;
	display:flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
}

#category2 ul li{
	list-style:none;
	width:23%;
	padding:0;
	margin-bottom:2vw;
	position:relative;
	overflow:hidden;
	border-radius:10%;
	
}


#category2 ul li .box img{
	display:block;
	width:100%;
	transform:scale(1,1) translate(-0%,-0%);
	transition:0.5s all;
}



#category2 ul li:nth-child(1){background-color:#b3eeff;}
#category2 ul li:nth-child(4){background-color:#beeedf;}
#category2 ul li:nth-child(2){background-color:#ffc7d3;}
#category2 ul li:nth-child(3){background-color:#ffeeab;}




#category2 ul li .box{
	width:100%;
	height:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	text-decoration:none;
	overflow:hidden;
	/*box-shadow: 0 5px 12px 3px rgba(0, 0, 0, .3);*/
}

#category2 ul li .box a{
	width:0;
	height:0;
	display:block;
	text-decoration:none;
	border-radius:50%;
	background-color:rgba(255,204,0,1);
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	overflow:hidden;
	padding:0;
	color:inherit;
	transition:0.5s all;
}

#category2 ul li .box:hover a{
	width:90%;
	height:90%;
	padding:1em;
}


#category2 ul li .box:hover img{
	transform:scale(1.4,1.4) translate(-0%,-0%);
}


#category2 ul li .box div{
	display:block;
	position:relative;
}

/*
#category2 ul li .box div:nth-child(1){ width:100%;}
#category2 ul li .box div:nth-child(2){ width:100%; padding:1em;}
#category2 ul li .box div:nth-child(3){ width:60%; padding:1em 2em;}
*/




#category2 ul li .box .detail{
	width:100%;
	height:100%;
	color:#000;
	margin:0;
	padding:2em;
	font-size:110%;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	text-align:center;
}

@media screen and (max-width: 1200px) {
	#category2 ul li .box .detail{
	font-size:1.3vw;
}
}

@media screen and (max-width: 600px) {
	#category2 ul li .box .detail{
	font-size:3vw;
}
}

#category2 ul li .box .detail .text{
	width:240px;
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	text-align:center;
}

#category2 ul li .box .detail .text span{
	display:inline-block;
}


#category2 ul li .box p.title{
	font-weight:bold;
	margin:0.5em 0;
	font-size:130%;
	text-align:center;
}

#category2 ul li .box .detail p{
	font-weight:bold;
	margin:0 0 0.5em;
	text-align:center;
}



@media screen and (max-width: 600px) {
	#category2 ul li{
		list-style:none;
		width:calc(50% - 1vw);
		padding:0;
		position:relative;
		
	}
	
	#category2 ul li .box:hover a{
	width:100%;
	height:100%;
}
	
	#category2 ul li .box .detail{
	width:90%;
	height:90%;
}


#category2 ul li .box .detail p{
	margin:0 0 0.5em;
}

}
/*-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-
　ニュース
-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-^-*/

#news {
	width:100%;
	padding:0;
	background-color:#3282ca;
}

#news #text {
	width:90%;
	max-width:1000px;
	margin:0 auto;
	padding:30px;
	text-align:left;
	line-height:2em;
	background-color:#FFF;
	border-radius:1em;
	/*
	position:absolute;
	top:50%;
	left:50%;
	transform:translate(-50%,-50%);
	*/
	font-size:120%;
}


/*========= waveを描画するエリア設定 ===============*/

canvas{
	position: absolute;
	bottom: 0;
	left:0;
	width: 100%;
}

.waveCanvas {
	pointer-events: none;
}

/*========= パララックスを表現 ===============*/

#mainv {
  position: relative;
  height: 100vh;            /* 画面いっぱいの高さ */
  overflow: hidden;
}

.bg-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* ← パララックス効果のカギ */
  z-index: -1;                 /* 背景を奥に */
}


