@charset "UTF-8";
/* CSS Document */

/***************** MENU SETTING *****************/
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
	position: fixed;
	width: 70px;
	height: 55px;
	top:25px;
	right: 0;
	background: #A50000;
	border-radius: 100px 0 0 100px;
	cursor: pointer;
	z-index: 9999;
	border: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.menu-btn-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: -5%;
	margin: auto;
	height: 1px;
	width: 45%;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.menu-btn-line::before,
.menu-btn-line::after {
	content: "";
	height: 1px;
	width: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: inherit;
	transition: inherit;
}
.menu-btn-line::before{
	top: -4px;
}
.menu-btn-line::after{
	top: 4px;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.open .menu {
	-webkit-transition: all .2s;
	transition: all .2s;
	visibility: visible;
	opacity: 1;
	z-index: 9998;
}
.open .menu-btn {
	border-color: #fff;
}
.open .menu-btn-line{
	background-color: transparent;
}
.open .menu-btn-line::before,
.open .menu-btn-line::after {
	top: 0;
	background: #fff;
}
.open .menu-btn-line::before {
	-webkit-transform: rotate(145deg);
	-ms-transform: rotate(145deg);
	transform: rotate(145deg);
}
.open .menu-btn-line::after {
	-webkit-transform: rotate(-145deg);
	-ms-transform: rotate(-145deg);
	transform: rotate(-145deg);
}

/*開いたメニュー*/
.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10%;
	text-align: left;
	color:#000;
	background: #fff;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	transition: all .2s;
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	overflow-y: scroll;
}
.menu inner_nav a {
	color:#000;
}
.menu p {
	font-size: 30px;
	font-weight: 700;
	line-height: 1.5;
	padding: 0.5em 0;
	margin: 0.5em auto;
}
.menu p span {
	font-size: 15px;
}
.menu p.menu_top {
	margin-bottom: 0.5em;
	padding-bottom: 1.0em;
	border-bottom: 1px solid #000;
}
.menu .btn_red {
	width:100%;
	padding: 0.5em 0;
}


@media screen and (max-width: 767px) {
	
/***************** MENU SETTING *****************/
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
	position: fixed;
	width: 55px;
	height: 47px;
	top:20px;
	right: 0;
	background: #A50000;
	border-radius: 100px 0 0 100px;
	cursor: pointer;
	z-index: 9999;
	border: none;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
	
.menu-btn-line {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: -8px;
	margin: auto;
	height: 1px;
	width: 45%;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.menu-btn-line::before,
.menu-btn-line::after {
	content: "";
	height: 1px;
	width: 100%;
	background: #fff;
	position: absolute;
	left: 0;
	-webkit-transition: inherit;
	transition: inherit;
}
.menu-btn-line::before{
	top: -3px;
}
.menu-btn-line::after{
	top: 3px;
}
	
/*開いたメニュー*/
.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 10%;
	text-align: left;
	color:#000;
	background: #fff;
	box-sizing: border-box;
	-webkit-transition: all .2s;
	transition: all .2s;
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	overflow-y: scroll;
}
.menu inner_nav a {
	color:#000;
}
.menu p {
	font-size: 24px;
	font-weight: 700;
	line-height: 1.2;
	padding: 0.4em 0;
	margin: 0.4em auto;
}
.menu p span {
	font-size: 13px;
}
.menu p.menu_top {
	margin-bottom: 0.5em;
	padding-bottom: 1.0em;
	border-bottom: 1px solid #000;
}
.menu .btn_red {
	width:100%;
	padding: 0.5em 0;
}

	
	
}
