.spnav{
  position: relative;
}
.spnav > li {
  width: 0;
  overflow: hidden;
  transition: width 0.2s, transform 0.2s, background-color 0.2s;
  background-color: #666;
}
/* .spnav .submenu2nd:after{
    content: '';
    display: block;
    height: 11px;
    width: 8px;
    position: absolute;
    top: 50%;
    right: 15px;
    background: url(images/arrow.svg) no-repeat;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
    transition: transform 0.2s;
} */
.spnav > li {
  transform: translateX(-60px);
}
.spnav > li + li {
  transform: translateX(-120px);
}
.spnav > li + li + li {
  transform: translateX(-180px);
}
.spnav > li + li + li + li {
  transform: translateX(-240px);
}
.spnav > li + li + li + li + li {
  transform: translateX(-300px);
}
.pushy-open-left .spnav li {
  width: 100%;
  background-color: transparent;
  transform: translateX(0px);
  transition: width 0.5s ease 0s, transform 0.5s ease-out 0s, background-color 0.5s ease-in 0s;
}

/* secondary menu */

.menu2nd{
	display: none;
}

#secondary {
	width: 700px;
	padding: 10px 20px 20px 20px;
	z-index: 10600;
	background: #000;
	color: #fff;
	position: fixed;
	display: none;
}

#secondary a{
	display: block;
    text-decoration: none;
}

#secondary  * {
	box-sizing: border-box;
}

#secondary .ct > ul{
	font-size: 95%;
	width: calc(100% - 40px);
	display: grid;
	grid-template-columns: repeat(3, 33.33%);
	grid-gap: 50px 20px;
}

#secondary .ct > ul > li{
}

#secondary .ct > ul > li > a{
    color: #fff;
}

#secondary .ct > ul > li > a:hover {
	color:#999; 
}

.m2-title{
	margin-bottom: 20px;
	border-bottom: 1px solid #424242;

} 

.m2-title .t-wrp{
	margin-bottom: -3px;
	padding: 5px 0;
	display: inline-block;
	border-bottom: 5px solid #424242;
} 

#secondary .m2-img{
	width: 100%;
	padding-bottom: 56.25%;
}

#secondary .m2-img > img{
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

#secondary .m2-txt{
	margin-top:10px;
	font-size:90%
}


#secondary .back{
	padding: 10px 0 20px;
	display: none;
}

.pt-none{
	pointer-events: none;
}

#secondary{
    -webkit-transform: translate3d(-300px, 0, 0);
    -ms-transform: translate3d(-300px, 0, 0);
    transform: translate3d(-300px, 0, 0);
    transition: transform 0.2s cubic-bezier(0.16, 0.68, 0.43, 0.99);
}

.pushy-open-left #secondary{
	transform: translate3d(0, 0, 0);
}

@media only screen and (max-width:1024px) {
	#secondary{
		left: 0;
		top: 0;
		height: 100%;
		z-index: 10700;
		overflow: auto;
	}
	/* width */
	#secondary::-webkit-scrollbar {
		width: 8px;
	}

	/* Track */
	#secondary::-webkit-scrollbar-track {
		background: #888; 
	}
	 
	/* Handle */
	#secondary::-webkit-scrollbar-thumb {
		background: #666;
	}
	#secondary .back{
		display: block;
		font-size:11px;
		color: #666;
		font-weight:bold;
		text-transform:uppercase;
	}
	#secondary .back i{
		margin-right: 10px;
	}
	#secondary .ct > ul{
		width: 100%;
	    grid-template-columns: auto;
		grid-gap: 0;
	}
	#secondary .ct > ul > li {
		margin-bottom: 20px;
	}
	#secondary .ct > ul > li > a{
		display: flex;
		flex-direction: row;
		align-items: end;
	}
	#secondary .m2-img {
		width: 50px;
		padding-bottom: calc(50px / 16 * 9);
		flex-grow: 0;
		flex-shrink: 0;
		flex-basis: 50px;
		margin-right: 10px;
	}
	#secondary .m2-txt{
		margin-top: 0px;
		line-height: 1.2;
		font-size:12px;
		flex-grow: 1;
		flex-shrink: 1;
		flex-basis: 100%;
	}

	#secondary .m2-txt	{ margin-top:0}
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
	#secondary .ct{
		overflow: hidden;
	}
	#secondary .ct > ul{
		display: block;
		width: calc(100% + 20px);
	}
	#secondary .ct > ul:after{
		display: block;
		position: relative;
		content: '';
		clear: both;
	}
	#secondary .ct > ul > li{
        width: calc(33.33% - 20px);
        height: 205px;
        margin-right: 20px;
        float: left;
    }
}