* {
	box-sizing: border-box;
	margin: 0;
	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;
}
/**************** 以下、ハンバーガーボタンのスタイリング ****************/


.btn-frame{
	position: fixed;
	top: 16px; 
/*	top: 100px; */
	right: 10px;
	width: 60px;
	height: 42px;

	background: rgba(255,255,255,.5);
} 

.btn {
	/* ボタンの配置位置  */
	position: fixed;
	top: 32px;
	right: 16px;
	/* 最前面に */
	z-index: 10; 
	/* ボタンの大きさ  */
	width: 48px;
/*	height: 48px;*/
	height: 10px;
	
/*background-color: red; */
/*		border: 1px solid green;*/ /*枠 */

}
/***** 真ん中のバーガー線 *****/
.btn-line {
	display: block;
	/* バーガー線の位置基準として設定 */
	position: relative;
	/* 線の長さと高さ */
	width: 100%;
	height: 4px;
	/* バーガー線の色 */
	background-color: black;
	transition: .2s; 
}
/***** 上下のバーガー線 *****/
.btn-line::before , .btn-line::after {
	content: "";
	/* 基準線と同じ大きさと色 */
	position: absolute;
	width: 100%;
	height: 100%;
	background-color: black;
	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: #333;
	transition: .2s;
}
.btn-line.open::before {
	/* 上の線を傾ける */
	transform: rotate(45deg);
}
.btn-line.open::after {
	/* 下の線を傾ける */
	transform: rotate(-45deg);
}
/*--------- ここまで、ハンバーガーボタンのスタイリング -------------*/
/*--------- tmp メニューを使いまわし用...未完 -------------*/
.menu-frame{
	display: flex;
/*	flex-direction: column; */
	position: fixed;
	z-index:1;

	/* メニューの位置マイナス指定で画面外に */
	right: 0;
/*	width: 70%;*/

	height:100vh; 

	frameborder:0;
	scrolling:no;
	
	border: double 5px red;
}

/*---------- 以下、メニューのスタイリング --------------------*/
.menu {
	/* メニューを縦に */
	display: flex;
	flex-direction: column;
	position: fixed;
	z-index:2;
	/* メニューの位置マイナス指定で画面外に (押されたら出てくる) */
	right: -60%;
	width: 60%;

	height: 100vh;
	
	background-color: rgba(128, 128, 0, .7); 
	color: #000000;
	transition: .3s;
}
.menu-list {
	/* メニューテキスト位置をリスト内中心に */
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	
}

/* メニューの文字フォント */
a.menu-style{
/*	font-family:monospace;
	font-family:sans-serif;
	font-family:HG正楷書体-PRO;*/
/*	font-weight:bold; */
	font-size:16px;
}

.menu-list:hover {
	background-color: rgba(255, 255, 255, .5);
	color: #696969;
	cursor: pointer;
	transition: .3s;
}
/***** メニューオープン時位置0にして画面内に *****/
.menu.open {
/*	position: absolute;*/
/*	right: 0; */
	position:fixed;	
	top: 0px;
	right: 0px;
	
	height:100vh;
}
/* 600px以上はハンバーガーボタン非表示、ヘッダー固定 */
@media screen and (min-width: 600px) {
	.btn-frame{
		display: none;
	}
	.btn {
		display: none;
	}
	.menu {
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 40px;
	}
	
	.menu-frame{
		/* メニューを横に */
		display: flex;
		flex-direction: row;
		position: fixed;
		top: 0;
		right: 0;
		width: 100%;
		height: 40px;
		border: double 5px green;
	}
}
/**************** ここまで、メニューのスタイリング ****************/