@charset "utf-8";


/*
////////////////////////////////////////////////////////////

 hamburger-menu

////////////////////////////////////////////////////////////
*/



.menu-btn {
    position: relative;
    /*top: 10px;
    right: 10px;*/
    display: flex;
    height: 30px;
    width: 30px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #ff69b4;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 1px;
    width: 15px;
    border-radius: 1px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}

#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}

#menu-btn-check {
    display: none;
}



.menu-content {
    margin-top:10px;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow:auto;
    /*top: 0;*/
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: -1;
    /*background-color:rgba(255,240,255,1);*/
    background-color:rgba(255,255,255,1);
    transition: all 0.5s;/*アニメーション設定*/
}

.menu-content ul {
    padding: 10px 10px 30px 10px;
}
.menu-content ul li {
    border-bottom: solid 1px #333;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    font-weight:bold;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    padding: 14px 15px 15px 14px;
    background-color:rgba(255,240,255,0.8);
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 22px;
}
.menu-content ul li a:hover {
    background-color:rgba(255,192,203,1);
	text-decoration: underline;
}





#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}



/* ///////////////////////////////////////////////////////// */

.menu_catch {
	padding-top:30px;
	padding-bottom:30px;
	text-align:center;

}

.menu_member_regist {
	padding-bottom:150px;
	text-align:center;
	border-style: none;
}

.menu_member_regist a {
	font-family: 'MPLUS1p-Black';
	font-size:22px;
	color:#333;
	text-decoration: none;
}
.menu_member_regist a:hover {
	text-decoration: underline;
}

.Regist-Com {
	margin-top: 24px;
	margin-left: auto;
	margin-right: auto;
	margin-bottom:45px;
	width:70%;
	font-weight:bold;
	text-align:left;
}



/* ///////////////////////////////////////////////////////// */


.menu-content ul li.menu_login {
    border-bottom: solid 1px #333;
    list-style: none;
}
.menu-content ul li.menu_login a {
    display: block;
    /*margin:4px 0px 4px 0px;*/
    width: 100%;
    font-size: 15px;
    font-weight:bold;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    /*padding: 24px 15px 25px 0;*/
    background-color:rgba(229,255,204,0.8);
    position: relative;
}
.menu-content ul li.menu_login a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 1px #333;
    border-right: solid 1px #333;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    /*top: 32px;*/
}
.menu-content ul li.menu_login a:hover {
    background-color:rgba(173,237,130,1);
	text-decoration: underline;
}

.lgin_mark {
	font-family: 'MPLUS1p-Black';
	font-weight:bold;
}
.lgbgcolor {
	background-color:rgba(229,255,204,0.8);
}


li.menu_login.btn_admin {
	/*background-color:rgba(128,223,32,1);*/
}



