@charset "UTF-8";

/* Hanbankun Menu */
/* ボタン */
.menu-btn
{
	position: fixed;
	top: 0;
	right: 18px;
	display: flex;
	height: 38px;
	width: 38px;
	justify-content: center;
	align-items: center;
	z-index: 90;
	background-color: rgb(255,255,255);
	border-radius : 0 ;
	cursor : pointer ;
	transition: all .15s linear;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after
{
	content: '';
	display: block;
	height: 3px;
	width: 25px;
	border-radius: 3px;
	background-color: rgb(100,100,100);
	position: absolute;
	transition: all .15s linear;
}

.menu-btn span:before
{
	bottom: 8px;
	transform: translateY(0) rotate(0deg);
}

.menu-btn span:after
{
	top: 8px;
	transform: translateY(0) rotate(0deg);
}

#menu-btn-check:checked ~ .menu-btn
{
	background-color: rgb(255, 255, 255);
	border-radius : 9999px ;
}

/*メニューオープン時は真ん中の線を透明にする*/
#menu-btn-check:checked ~ .menu-btn span
{
	background-color: rgba(255, 255, 255, 0);
}

#menu-btn-check:checked ~ .menu-btn span::before
{
	bottom: 0;
	background-color: rgb(100,100,100);
	transform: translateY(0) rotate(45deg);
}

#menu-btn-check:checked ~ .menu-btn span::after
{
	top: 0;
	background-color: rgb(100,100,100);
	transform: translateY(0) rotate(-45deg);
}

/*メニューを画面内へ*/
#menu-btn-check:checked ~ .menu-content
{
	right: 0;
}

#menu-btn-check
{
	display: none;
}

/* ナビゲーション本体 */
/*rightの値を変更してメニューを画面外へ*/
/*アニメーション設定*/
.menu-content
{
	width: 40%;
	height: 100%;
	position: fixed;
	top: 0;
	right: -100%;
	z-index: 80;
	background-color: rgba(70,70,70,1);
	transition: all 0.5s;
}

.menu-content ul
{
	margin: 100px 10% 60px 10%;
	height: calc(100% - 160px);
	overflow: auto;
}

.menu-content ul li
{
	border-bottom: solid 1px #ffffff;
	list-style: none;
}

.menu-content ul li:last-child
{
}

.menu-content ul li a
{
	display: block;
	width: 100%;
	font-size: 15px;
	box-sizing: border-box;
	color:#ffffff;
	text-decoration: none;
	padding: 9px 15px 10px 15px;
	position: relative;
	background-color : rgba(255,255,255,0) ;
	transition: 0.7s;
}

.menu-content ul li a::before
{
	content: "";
	width: 7px;
	height: 7px;
	border-top: solid 2px #ffffff;
	border-right: solid 2px #ffffff;
	transform: rotate(45deg);
	position: absolute;
	right: 11px;
	top: 16px;
	transition: 0.7s;
}

.menu-content ul li a:hover::before
{
	border-top: solid 2px rgb(100,100,100);
	border-right: solid 2px rgb(100,100,100);
	transition: 0.7s;
}

.menu-content ul li img
{
	display : inline-block ;
	vertical-align : middle ;
}

body.home .menu-content ul li:nth-of-type(1) a,
body.message .menu-content ul li:nth-of-type(2) a,
body.profile .menu-content ul li:nth-of-type(3) a,
body.supporter .menu-content ul li:nth-of-type(4) a,
body.contact .menu-content ul li:nth-of-type(5) a,
body.privacy_policy .menu-content ul li:nth-of-type(6) a
{
	background-color: rgba(90,90,90,1);
	background-image: none ;
	transition: 0.7s;
}

body .menu-content ul li a:hover,
body.home .menu-content ul li:nth-of-type(1) a:hover,
body.message .menu-content ul li:nth-of-type(2) a:hover,
body.profile .menu-content ul li:nth-of-type(3) a:hover,
body.supporter .menu-content ul li:nth-of-type(4) a:hover,
body.contact .menu-content ul li:nth-of-type(5) a:hover,
body.privacy_policy .menu-content ul li:nth-of-type(6) a:hover
{
	color: rgb(100,100,100);
	background-color : rgba(255,255,255,1) ;
	transition: 0.7s;
}

