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

/***************** MENU SETTING *****************/
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
	position: fixed;
	width: 85px;
	height: 85px;
	top: 50%;
	transform:translateY(-50%);
	right: 0;
	background: #A50000;
	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: 0;
	margin: auto;
	height: 45px;
	width: 1px;
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
.menu-btn-line::before,
.menu-btn-line::after {
	content: "";
	height: 30px;
	width: 1px;
	background: #fff;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	-webkit-transition: inherit;
	transition: inherit;
}
.menu-btn-line::before{
	left: -3px;
}
.menu-btn-line::after{
	left: 5px;
}

/* 開閉用ボタンがクリックされた時のスタイル */
.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(135deg);
	-ms-transform: rotate(135deg);
	transform: rotate(135deg);
	left: 0;
}
.open .menu-btn-line::after {
	-webkit-transform: rotate(-135deg);
	-ms-transform: rotate(-135deg);
	transform: rotate(-135deg);
	left: 0;
}

/*開いたメニュー*/
.menu {
	position: fixed;
	top: 0;
	left: 0;
	width: calc(100% - 85px);
	height: 100vh;
	margin-right: 85px;
	text-align: left;
	color:#000;
	background: #A50000;
	-webkit-transition: all .2s;
	transition: all .2s;
	visibility: hidden;
	opacity: 0;
	z-index: 9998;
	overflow-y: scroll;
}
.menu .inner_nav {
	max-width: 1100px;
	width: 85%;
	margin: 100px auto;
	display: flex;
}
.menu .inner_nav > div {
	width: 50%;
}
.menu .inner_nav a {
	color:#fff;
}
.menu p {
	font-size: 55px;
	font-weight: 700;
	line-height: 0.5;
	padding: 0.5em 0;
	margin: 0.5em auto;
}
.menu p span {
	font-size: 13px;
	font-weight: 400;
}

@media screen and (max-width: 767px) {
	
/***************** MENU SETTING *****************/
/*開閉用ボタン（ハンバーガーボタン）*/
.menu-btn {
	position: fixed;
	width: 55px;
	height: 55px;
	top: 55px;
	transform: none;
	right: 0;
	background: #A50000;
	border-radius: 0;
	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: 0;
	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: 100vh;
	margin-right: 0;
	text-align: left;
	color:#000;
	background: #A50000;
	-webkit-transition: all .2s;
	transition: all .2s;
	visibility: hidden;
	opacity: 0;
	z-index: 9990;
	overflow-y: scroll;
}
.menu .inner_nav {
	max-width: 1100px;
	width: 85%;
	margin: 100px auto;
	display: block;
}
.menu .inner_nav > div {
	width: 100%;
}
.menu p {
	font-size: 30px;
	font-weight: 700;
	line-height: 0.8;
	padding: 0.5em 0;
	margin: 0.5em auto;
}
.menu p span {
	font-size: 12px;
	font-weight: 400;
}
	
	
}
