@charset "UTF-8";
/* CSS Document */
@media (min-width: 1025px) {
    .wrap-sp-navi {
        display: none;
    }
}
.wrap-sp-navi {
    overflow-x: hidden;
	z-index: 1500;
	position: fixed;
}
.overlay {
    content: "";
    display: block;
    width: 0;
    height: 0;
    background-color: rgba(0, 0, 0, 0.8);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity .5s;
}
.overlay.open {
    width: 100%;
    height: 100%;
    opacity: 1;
	position: fixed;
}
.menu-trigger {
    display: inline-block;
    width: 32px;
    height: 26px;
    vertical-align: middle;
    cursor: pointer;
    position: fixed;
    top: 23px;
    right: 20px;
    z-index: 10001;
    transform: translateX(0);
    transition: transform .5s;
	
}
.menu-trigger.active {
    transform: translateX(-265px);
}
.menu-trigger span {
    display: inline-block;
    box-sizing: border-box;
    position: absolute;
    left: 0;
    width: 100%;
    height: 3px;
    background-color: #000;
    transition: all .5s;
}
.menu-trigger.active span {
    background-color: #fff;
}
.menu-trigger span:nth-of-type(1) {
    top: 0;
}
.menu-trigger.active span:nth-of-type(1) {
    transform: translateY(12px) rotate(-45deg);
}
.menu-trigger span:nth-of-type(2) {
    top: 11px;
}
.menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
}
.menu-trigger span:nth-of-type(3) {
    bottom: 0;
}
.menu-trigger.active span:nth-of-type(3) {
    transform: translateY(-12px) rotate(45deg);
}
.sp-navi {
    width: 280px;
    height: 100%;
    background-color: rgba(255, 255, 255, 1.0);
    position: fixed;
    top: 0;
    right: 0;
    z-index: 10000;
    transform: translate(280px);
    transition: all .5s;
    text-align: center;
	overflow-y: scroll;
}
.sp-navi.open {
    transform: translateZ(0);
}
/*  装飾 */
.sp-navi li a {
    font-size: 16px;
    padding: 13px 0;
    text-align: center;
    display: block;
    border-bottom: 1px solid #696969;
	font-family: "notosans_bold", sans-serif;
}



