* {
    box-sizing: border-box;
    padding: 0;
}
::before , ::after {
	box-sizing: inherit;
}

button {
	margin: 0;
	padding: 0;
	outline: 0;
	border: 0;
	border-radius: 0;
	background: transparent;
	color: inherit;
	vertical-align: middle;
	text-align: inherit;
	font: inherit;
	-webkit-appearance: none;
	appearance: none;
}

a,
a:visited,
a:hover,
a:active {
  color: inherit;
}


 
 a.anchor {
    display: block;
    position: relative;
    top: -50px;
    visibility: hidden;
}

/**************** 以下、ハンバーガーボタンのスタイリング ****************/
.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 10px;
	right: 10px;
	/* 最前面に */
	z-index: 10;
	/* ボタンの大きさ  */
	width: 35px;
	height: 35px;
	background-color: rgba(60,60,60,0.3);
		padding: 5px;
		margin: 10px;
}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 2px;
	/* バーガー線の色 */
	background-color: #fff;
	transition: .2s;
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: #fff;
	transition: .5s;
}
.btn-line::before {
	/* 上の線の位置 */
	transform: translateY(-10px);
}
.btn-line::after {
	/* 下の線の位置 */
	transform: translateY(10px);
}
/***** メニューオープン時 *****/
.btn-line.open {
	/* 真ん中の線を透明に */
	background-color: transparent;
}
.btn-line.open::before , .btn-line.open::after {
	content: "";
	background-color: #fff;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 上の線を傾ける */
	transform: rotate(-45deg);
}
/**************** ここまで、ハンバーガーボタンのスタイリング ****************/
/**************** 以下、メニューのスタイリング ****************/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	/* メニューの位置マイナス指定で画面外に */
	right: -70%;
	width: 70%;
	height: 100vh;
	background-color: rgba(255,255,255,0.7);
	color: #000;
	transition: .3s;
	font-size: 20px;
	font-weight: bold;
}
.menu-list {

	font-family: 'Bebas Neue', cursive;

font-weight: 400;
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 50px;
	margin-bottom: 10px;
	background-color: rgba(255,255,255,0.9);
	border-style: solid  ;
	border-width:1px ;
	border-top-width: 0px;
	border-color: rgba(255,255,255,0.9);
	white-space: nowrap;
}


.menu-list:hover {
	color: #c6c5c4;
	cursor: pointer;
	transition: .3s;
	border-style: solid  ;
	border-width:1px ;
	border-top-width: 0px;
}



.top:hover  {
color: #fff;
background-color: #c6c5c4;
border-color :  #c6c5c4;
}


.iwamoto:hover  {

background-color: #fefe2a;
border-color :  #fefe2a;
}


.fukazawa:hover  {

background-color: #ab0dff;
border-color :  #ab0dff;
}


.raul:hover  {

background-color: #fff;
border-color :  #c6c5c4;
}


.watanabe:hover  {

background-color: #273fdb;
border-color :  #273fdb;
}


.mukai:hover  {

background-color: #fe6f07;
border-color :  #fe6f07;
}


.abe:hover  {

background-color: #028b01;
border-color :  #028b01;
}


.meguro:hover  {

background-color: #000;
border-color :  #000;
}


.miyadate:hover  {

background-color: #d82923;
border-color :  #d82923;
}



.sakuma:hover  {

background-color: #ff5dad;
border-color :  #ff5dad;
}




@media only screen and (max-width:800px){


.menu-list:hover {

border-top-width: 1px;

}


}




/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
	position: fixed;
	right: 0;
}
/* 800px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 800px) {
	.btn {
		display: none;
	}
	.menu {
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 50px;
	}





}
/**************** ここまで、メニューのスタイリング ****************/
