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

@media only screen and (max-width:1130px) {

.menu-btn {
    position: fixed;
    top: 0px;
    right: 0px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    background-color: #000;
    position: absolute;
}
.menu-btn span:before {
    bottom: 10px;
}
.menu-btn span:after {
    top: 10px;
}
#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 {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 80;
    background-color: #F6F6F6;
}
.menu-content ul li {
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 1.0em;
    box-sizing: border-box;
    color:#333;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #CC0000;
    border-right: solid 2px #CC0000;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 18px;
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #FFF;
    transition: all 0.5s;/*アニメーション設定*/
	padding: 3em 1em;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
.menu-content .m-tit{
	padding-bottom:0.5em;
}
.menu-content .m-tit b{
}
.menu-content .m-tit ul{
	display: flex;
}
.menu-content .m-tit ul li{
	width: 48%;
    border: #ccc 1px solid;
    margin: 0.2em;
    padding-left: 0.5em;
}
.menu-content .single li{
	width: 98%;
    margin-left: 1px;
    border-bottom: #CCC solid 1px;
    padding-left: 0.5em;
}
.menu-content .last{
	border-top:1px dotted #CCC;
	margin-top: 1.5em;
}
}
@media only screen and (min-width:1131px) {
	.hamburger-menu{
		display: none;
	}
}