/*========= レイアウトのためのCSS ===============*/

#wrapper{
	width:90%;
	position: relative;
}

.follower {
  position: absolute; /*bodyの一番左上になるように配置する*/
  pointer-events: none; /*他の要素がクリックできなくならないようにする*/
}

.follower {
	z-index: 1000;        /*カーソル要素よりも一つ下になるようにする*/
	transition: transform ease 0.1s;
	position: fixed;
}
.follower span {
  display: inline-block;
  font-size: 14px;
  font-weight: bold;
  transform: scale(0);
}
.follower.is-active {
  transform: scale(3);
}
.btn {
  display: inline-block;
  width: 160px;
  margin: 16px;
  text-align: center;
  font-size: 16px;
  line-height: 1;
}
.btn a {
  display: block;
  color: #000;
  text-decoration: nones;
  padding: 16px;
  background-color: #fff;
  cursor: none;
}
/*========= waveを描画するエリア設定 ===============*/
menu {

}
menu ul {
	display: flex;
	align-items: center;
}
menu ul li {
	text-shadow: 1px 1px 5px #000, 1px 1px 5px #000, 1px 1px 5px #000;
	font-weight:bold;
	text-align:center;
	float:left;
	/*width:200px;*/
	display:block;
	padding: 0 20px;
}
menu ul li a{
	text-decoration: none;
	color:#fff
}
menu ul li.current_page_item{
/*	background-image: url(../img/link_hikaru.gif);
	background-position: center center;
	background-size: 80px 80px;
	background-repeat: no-repeat;
	height: 80px;*/
	display: inline-flex;
	align-items: center;
	justify-content: center;
}
canvas{
	position: fixed;
	top: 0px;
	left: 0;
	width: 100%;
	z-index: 2;
	height: 120px;
	background: #fff;
	padding-top: 20px;
}