/** tit 件 **/
.tit-cate-number{
	font-size: 12px;
    color: #575757;
    margin: 0 0 0 10px;
    font-weight: normal;
}

/** メニューカテゴリ共通 **/
.menu-frame {
	box-sizing: border-box;
	background: #f7f7f7;
	box-shadow: 0px 1px 1px rgba(0,0,0,0.1);
	position: relative;
	margin-bottom: 30px !important;
}
.menu-frame:before, .menu-frame:after{ 
	position:absolute;
	content:"";
	bottom:12px;left:15px;top:60%;
	width:45%;
	background:#999;
	z-index:-1;
	-webkit-box-shadow: 0 10px 15px #ccc;
	-moz-box-shadow: 0 10px 15px #ccc;
	box-shadow: 0 10px 15px #ccc;
	-webkit-transform: rotate(-4deg);
	-moz-transform: rotate(-4deg);
	transform: rotate(-4deg);
}
.menu-frame:after{
	-webkit-transform: rotate(4deg);
	-moz-transform: rotate(4deg);
	transform: rotate(4deg);
	right: 15px;left: auto;
}

/** 大カテ*/
.ctgy-lv1-wrap {
	padding: 20px 0;
}
.ctgy-lv1-nav {
	width: 96%;
	margin: auto;
}
.ctgy-lv1-nav-tit {
	font-size: 20px;
	font-weight: bold;
	color: #888;
}
.ctgy-lv1-nav-tit:before {
	font-family: "Material Icons"; 
	content: "\e5cc";
	position: relative;
	left: -2px;
	top: 2px;
}
.ctgy-lv1-nav-list {
	padding: 16px;
	border-radius: 6px;
}
.ctgy-lv1-wrap ul {
	overflow: hidden;
	list-style-type: none;
}
.ctgy-lv1-wrap ul li {
	width: 20%;
	box-sizing: border-box;
	height: 25px;
	padding-top: 5px;
	float: left;
	margin: 0 0 12px 0;
	border-left: 1px dotted #aaa;
}
.ctgy-lv1-wrap ul li:first-child, .ctgy-lv1-wrap ul li:nth-child(5n+1) {
	border-left: none;
}
.ctgy-lv1-wrap ul li a {
	text-align: center;
	height: 17px;
	display: block;
	padding: 3px 8px 0 6px;
	text-decoration: none;
	color: #666;
	font: 13px/1 Helvetica, Verdana, sans-serif;
	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.ctgy-lv1-wrap ul li a:hover {
	color: #f97306;
	font-size: 14px;
	text-shadow: 5px 5px 18px #999;
}

/** 中カテ*/
.ctgy-lv2-wrap {
	padding: 10px 0;
	margin: 8px auto;
}
.ctgy-lv2-nav {
	width: 96%;
	margin: auto;
}
.ctgy-lv2-nav-tit {
	font-size: 18px;
	font-weight: bold;
	color: #888;
}
.ctgy-lv2-nav-tit:before {
	font-family: "Material Icons"; 
	content: "\e5cc";
	position: relative;
	left: -2px;
	top: 2px;
}
.ctgy-lv2-nav ul {
	list-style-type: none;
	margin: auto;
	padding: 0;
	overflow: auto;
	border-radius: 6px;
	box-sizing: border-box;
}
.ctgy-lv2-nav li {
	float: left;
	width: 16%;
	box-sizing: border-box;
	margin: 10px 0.8% 10px 0;
	display: block;
}
.ctgy-lv2-nav li:nth-child(6n) {
	margin-right: 0;
}
.ctgy-lv2-nav li:last-child:after {
	clear: both;
}
.ctgy-lv2-nav li a {
	display: block;
	padding: 6px 0 6px 10px;
	text-decoration: none;
	color: #666;
	font-size: 13px;
	position: relative;
	box-sizing: border-box;
	border-left: 8px solid #ddd;
	border-bottom: 1px solid #eee;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.ctgy-lv2-nav li a:before {
	content: "";
	width: 8px;
	height: 6px;
	background: #ddd;
	position: absolute;
	left: -8px;
	top: 100%;
	-webkit-transition: all 0.5s ease;
	-moz-transition: all 0.5s ease;
	-o-transition: all 0.5s ease;
	-ms-transition: all 0.5s ease;
	transition: all 0.5s ease;
}
.ctgy-lv2-nav li a:hover:before {
	width: 100%;
	height: 0px;
}
.ctgy-lv2-nav li a:hover {
	border-bottom: 1px dotted #f7f7f7;
	border-left: 8px solid #aaa;
	font-weight: bold;
	background-image: linear-gradient(to right, #ddd, #eee 50%, #f7f7f7 100%);
}

/** ordering  **/
.order-list {
	margin: 10px 0;
}
.order-btn-group {
	display:-webkit-flex;
	display:flex;
	width:100%;
	list-style-type:none;
	padding:0;
	border-bottom: 2px solid #ccc;
}
.order-btn-group a {
	display:block;
	margin-top: 4px;
	padding:8px 24px;
	font-size:13px;
	background-color:#eee;
	color:#575757;
	text-align:center;
	text-decoration:none;
	border-width: 1px 1px 0px 1px;
	border-style: solid;
	border-color: #ccc;
	border-radius: 4px 4px 0 0;
}

/* Add a background color on hover */
.order-btn-group a:hover {
	background-color: #fff;
}
.order-btn-group a.active {
	color: #f97306;
	font-weight: bold;
	background: #fff;
	position: relative;
	top: 2px;
	margin-top: 0;
	padding:6px 20px;
	border-right: 1px solid #eee;
	-webkit-box-shadow: 4px 0 5px -2px #888;
	box-shadow: 4px 0 3px -2px #888;
}
@media screen and (-webkit-min-device-pixel-ratio:0) { 
    ul.order-btn-group a.active {
		padding:7px 20px;
    }
}
@-moz-document url-prefix() {
    ul.order-btn-group a.active {
		padding:7px 20px;
    }
}
.order-btn-group a.active:before {
	font-family: "Material Icons"; 
	content: "\e834";
	position: relative;
	left: -6px;
	top: 2px;
	font-size: 16px;
	color: #f97306;
}

/** catgegory 中小**/
.ctgy-lv12-wrap {
	padding: 20px 0;
  	margin: 20px 0;
}
.ctgy-lv12-nav:after {
	content: "";
	clear: both;
	display: table;
}
.ctgy-lv12-nav {
	margin: auto;
}
.ctgy-lv12-ul {
	list-style-type: none;
	position: relative;
}
.ctgy-lv12-ul > li {
	overflow: auto;
	box-sizing: border-box;
	width: 20%;
	height: 30px;
	padding-top: 5px;
	float: left;
	margin: 0 0 10px 0;
	border-left: 1px solid #aaa;
	color: #666;
	text-align: center;

	-webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	-ms-transition: all 0.3s ease;
	transition: all 0.3s ease;
}
.ctgy-lv12-ul > li:first-child, .ctgy-lv12-ul > li:nth-child(5n+1) {
	border-left: none;
}
.ctgy-lv12-ul > li:hover {
	background: #ddd;
	color: #0093ff;
}
.ctgy-lv12-ul > li:hover > a {
	color: #f97306;
	font-weight: bold;
}
.ctgy-lv12-ul > li > a {
	height: 17px;
	display: block;
	padding: 4px 8px 4px 6px;
	text-decoration: none;
	color: #666;
	font: 13px/1 Helvetica, Verdana, sans-serif;
}
.ctgy-lv12-ul > li.active {
	background: #ddd;
	/* height: 174px; */
}
.ctgy-lv12-ul > li.active > a {
	font-weight: bold;
	color: #f97306;
	font-size: 16px;
}
.ctgy-lv12-ul > li:nth-child(5n+1) {
	content: "";
	clear: both;
	display: table;
}
.ctgy-lv12-ul ul {
	display: none;
	background: #ddd;
	position: absolute;
	padding: 20px 0;
	list-style: none;
	left: 0;
	overflow: auto;
}
.ctgy-lv12-ul > li.active ul {
	display: block;
}
.ctgy-lv12-ul ul li {
	float: left;
	margin: 4px 0;
	position: relative;
	width: 20%;
}
.ctgy-lv12-ul ul li a {
	height: 30px;
	display: block;
	padding: 0 20px;
	text-decoration: none;
	font-size: 13px;
	color: #666;
	line-height: 30px;
}
.ctgy-lv12-ul ul li a:hover {
	color: #fff;
	background: #999;
}
.ctgy-lv12-ul ul li a:before {
	content: "";
	position: absolute;
	width: 100%;
	height: 2px;
	bottom: 0;
	left: 0;
	background: #555;
	visibility: hidden;
	border-radius: 5px;
	transform: scaleX(0);
	transition: .25s linear;
}
.ctgy-lv12-ul ul li a:hover:before {
	visibility: visible;
	transform: scaleX(1);
}

/**カテゴリのブランドバナー**/
.BrandDescription{
	margin: 30px 0;
}
.BrandDescriptionArea{
  min-height: 280px;
}
.BrandDescriptionImage{
	width: 100%;
	height: auto;
	margin: 0 0 20px 0;
}
.BrandDescriptionCatch{
	color: #f97306;
	font-weight: bold;
	font-size: 17px;
	line-height: 1.5;
	margin: 0 0 10px 0;
}
@media only screen and (max-width: 768px) {
	.BrandDescription{
		margin: 20px 0 30px 0;
	}	
	.BrandDescriptionArea{
  	min-height: 100px;
	}
	.BrandDescriptionCatch{
		margin: 0 10px 10px 10px;
	}
	.BrandDescriptionText{
		margin: 0 10px;
	}
}