/*

スマホ版メニュー表示対応
+ボタンによる開閉、スクロール時のメニュー追従

*/

li {
	list-style:none;
}

ul{
	padding: 0;
}

@media screen and (min-width: 768px) and (max-width: 1150px){
	.products_menus li a {
		font-size: 1.4vw;
	}
}

@media (max-width: 767px) {

/* Contents Menu
-----------------------------------------------------------------*/
.products_menus {
	position: relative;
	overflow: hidden;
	margin-bottom: 15px;
	padding: 8px 30px 0 10px;
	background: #e8e8e8;
}
.products_menus.is-scroll {
	position: fixed;
	top: 0px;
	z-index: 10000;
	width: 100%;
}
.products_menus li {
	display: inline-block;
	margin-right: 10px;
	margin-bottom: 10px;
}
.products_menus li a {
	padding: 5px 10px;
    background-color: #fff;
    display: block;
    text-decoration: none;
    font-size: 12px;
    color: #000;
    border-radius: 20px;
}
.products_menus li .current {
	background: #818181;
	color: #fff !important;
}

.products_menus li a:hover {
	opacity: 0.8;
	text-decoration: none;
}

/*開閉アイコン*/
.js-openMenu .trigger {
	display: none;
	-webkit-appearance: none;
	appearance: none;
	position: absolute;
	right: 10px;
	top: 10px;
	width: 20px;
	height: 20px;
	padding: 0;
	margin: 0;
	border: none;
	background: #000;
	cursor: pointer;
}
.js-openMenu .trigger:before,
.js-openMenu .trigger:after {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	content: "";
	display: block;
	width: 10px;
	height: 1px;
	background: #fff;
}
.js-openMenu .trigger:after {
	-webkit-transform: rotate(90deg);
	-ms-transform: rotate(90deg);
	transform: rotate(90deg);
}
.js-openMenu .trigger.is-open:after {
	display: none;
}

}

@media (min-width: 768px) {

.trigger_button {
	display:none;
}

/* Contents Menu
-----------------------------------------------------------------*/
.products_menus {
/*	position: sticky; */
	width: 100%;
	max-width: 1200px;
	padding: 0px 15px;
	margin: 0 auto;
	z-index: 100;
	top:0;
}
.products_menus li a {
	display: block;
	text-decoration: none;
	color: #FFF;
	border-right: 1px solid;
	border-bottom: 1px solid;
	text-align: center;
	padding: 0.5em 1em;
	background: #999999;
}

.products_menus li .current {
	color: #FFF;
	text-decoration: underline;
	background: #000;
	text-decoration: none;
}

.products_menus ul {
	display: flex;
	justify-content: flex-start;
	padding: 0px;
	flex-wrap: wrap;
}

}