



/*===========================================================*/
/*　製品を探す　タイトル　*/
/*===========================================================*/


.product-lookfor-title-sub {
	display: block;
	position:relative;
	top: 0;
	right: 0;
	width: 100%;
	height: 48px;
	background-color: #004198;
	box-sizing: border-box;
}

.product-lookfor-title-sub p {
	display: block;
	position: relative;
	line-height: 48px;
	padding: 0 0 0 0;
	margin: 0 auto 0 auto;
	width: 90%;
	font-size: 1.2em;
	color: #fff;
}






/*===========================================================*/
/*　機能から探す　*/
/*===========================================================*/
.product_cat_list ul{

	display: grid;
	justify-content: space-between;
	justify-self: start;
	align-items: stretch;
	grid-template-columns: repeat( auto-fill, minmax(calc(24% - 0.25rem), 1fr) );
	column-gap: 0.5rem;
	row-gap: 0.5rem;

	margin: 2rem auto 4rem;

}

.product_cat_list ul li a{

	display: flex;

	height: 100%;
	justify-content: space-between;
	align-items: center;
	flex-direction: column;
	column-gap: 1rem;
	row-gap: 2rem;
	padding: 2rem 1rem;
	border: 1px solid #d9d9d9;
	border-radius: 0.5rem;
	background-color: #fff;
	overflow: hidden;
	transition: all 0.5s;

}

.product_cat_list ul li a:hover{

	background-color: #f6faff;
	/* opacity: 0.7; */

}

.product_cat_list ul li a img{

	max-width: 200px;
	max-height: 100px;

}

.product_cat_list ul li a span{

	display: block;

	/* font-size: 1.2em; */
	font-weight: bold;
	text-align: center;
	white-space: pre-wrap;
	word-break: keep-all;

}

.product_cat_list ul.thumb li a{

	row-gap: 0;
	padding: 0;
}



.product_cat_list ul.thumb li a p{

	width: 100%;
	height: calc(100px + 5.5rem);

}
.product_cat_list ul.thumb li a img{

	min-width: 100%;
	min-height: 100%;
	opacity: 0.7;
	transition: all 0.5s;
	object-fit: cover;

}

.product_cat_list ul.thumb li a:hover img{

	opacity: 1;

}

.product_cat_list ul.thumb li a span{
	white-space: normal;
	word-break: normal;
	padding: 1rem 0;
}

.product_top{
	padding-bottom: 60px;
}


.series_list{
	padding-bottom: 60px;
}

.series_list dl{
	margin-bottom: 2em;
}


.series_list dl div a{
	display: grid;
	grid-template:
	"ser_img ser_title" auto
	"ser_img ser_ex" auto
	/ 6em 1fr;
	column-gap: 2rem;
	row-gap: 0.5rem;
	justify-content: start;
	justify-items: stretch;
	align-items: stretch;
	margin-bottom: 0.5rem;
	background-color: #fff;
	padding: 0.5rem 1em 0.5em 0.5em;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.05);
	border-radius: 3px;
	cursor: pointer;
	position: relative;
	transition: all 0.4s;
}

.series_list dl div a::after{
	position: absolute;
	top: calc(50% - 0.125em);
	right: 0.5em;
	display: block;
	content: '';
	height: 0.5em;
	width: calc(tan(60deg) * 0.5em / 2);
	clip-path: polygon(0 0, 100% 50%, 0 100%);
	background-color: #333;
}

.series_list dl div a:hover{

	background-color: #faffff;
	box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.2);
	opacity: 0.8;

}




.series_list .p-each-title{
	background-color: #004198;
	color: #fff;
	padding: 0.5rem 1em;
	margin-bottom: 0.5rem;
}

.series_list dl div dt{
	grid-area: ser_title;
	font-weight: bold;
	font-size: 1.1em;
}

.series_list dl div dd {
	grid-area: ser_ex;

}


.series_list dl div dd:has(img) {
	grid-area: ser_img;

}

.series_list dl div dd img{
	width: 100%;
}


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

	.product_cat_list ul{

		grid-template-columns: repeat( auto-fill, minmax(calc(50% - 0.5rem), 1fr) );

	}


}

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

	.product_cat_list ul{

		grid-template-columns: repeat( auto-fill, minmax(calc(100%), 1fr) );

	}

	.product_cat_list ul li a{
		justify-content: flex-start;
		flex-direction: row;
		min-height: 10em;
	}

	.product_cat_list ul li a p{

		min-width: 100px;
		text-align: center;


	}

	.product_cat_list ul li a img{

		max-width: 100px;
		max-height: 80px;
	}

	.product_cat_list ul li a span{

		text-align: left;

	}

	.product_cat_list ul.thumb  li a{
		min-height: 8em;
	}

	.product_cat_list ul.thumb li a p{

		width: 130px;
		min-width: 130px;
		min-height: 8em;
		height: 100%;

	}


}


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

	.series_list dl div a{

		column-gap: 0;

	}

	.product_cat_list ul li a{
		justify-content: flex-start;
		flex-direction: row;
		min-height: 9em;
	}

	.product_cat_list ul li a p{

		min-width: 75px;

	}

	.product_cat_list ul li a img{

		max-width: 75px;
		max-height: 75px;
	}



}



/*===========================================================*/
/*　クリックしたらナビが出現 */
/*===========================================================*/


#product-sub-nav {
	display: block;
	position:relative;
	top: 0;
	width:100%;
	background-color: #f4f0eb;
  padding: 0 0 0 0;
  margin: 0 0 0 0;
	/*transition: all 0.6s;*/
	z-index: 1;
}


#product-sub-nav .product-sub-nav-inner {
	position:relative;
  z-index: 1;
  width: 100%;
  min-width: 290px;
  /*height: 100vh;*/
  /*overflow: auto;*/
  -webkit-overflow-scrolling: touch;
  /*padding-bottom: 200px;*/
	background-color: #f4f0eb;
	border-right: 1px solid #bebebe;
	border-left: 1px solid #bebebe;
	overflow: hidden;
}

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

	#product-sub-nav {
		display: block;
		position:relative;
		top: 0;
		  width: 95%;
		  margin: 0 auto 0 auto;
		background-color: #f4f0eb;
	  padding: 0 0 0 0;
		/*transition: all 0.6s;*/
		z-index: 1;
	}

}









#product-sub-nav .product-sub-nav-inner ul {
	padding: 0;
	margin: 0;
	width: auto;
	min-width: 290px;
	list-style-type: none;
	z-index: 1;
}

#product-sub-nav .product-sub-nav-inner ul li {
	position: relative;
	float: left;
	width: 100%;
	min-width: 290px;
	border-top: 1px solid #bebebe;
	line-height: 62px;
}

#product-sub-nav .product-sub-nav-inner ul li:last-child {
	border-bottom: 1px solid #bebebe;
}

#product-sub-nav .product-sub-nav-inner ul li li:last-child {
	border-bottom: none;
}

#product-sub-nav .product-sub-nav-inner ul li a {
	display: block;
	float: left;
	width: 100%;
	min-width: 290px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: 62px;
	line-height: 62px;
	text-align: left;
	color: #004198;
	font-weight: 500;
	font-family: "BIZ UDPGothic", sans-serif;
	font-size: 1.2em;
	text-decoration: none;
	/* text-transform: uppercase; */
}

#product-sub-nav .product-sub-nav-inner ul li .top_box {
	display: block;
	float: left;
	width: 100%;
	min-width: 290px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	height: 62px;
	line-height: 62px;
	text-align: left;
	color: #004198;
	font-weight: 500;
	font-family: "BIZ UDPGothic", sans-serif;
	font-size: 1.2em;
	text-decoration: none;
	/* text-transform: uppercase; */
}

#product-sub-nav .product-sub-nav-inner ul li li a {
	width: 100%;
	min-width: 290px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	color: #004198;
	font-weight: 400;
	font-family: "BIZ UDPGothic", sans-serif;
	letter-spacing: 0.4px;
	font-size: 1em;
	background-color: #f2f2f2;
	/*
	height: 62px;
	line-height: 62px;
	*/
	height: 42px;
	line-height: 42px;
	/*
	opacity: 0.75;
	filter: alpha(opacity=75);
	*/
	text-shadow: none !important;
	visibility: visible;
}

#product-sub-nav .product-sub-nav-inner ul li li .abox {
	width: 100%;
	min-width: 290px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	color: #004198;
	font-weight: 400;
	font-family: "BIZ UDPGothic", sans-serif;
	letter-spacing: 0.4px;
	font-size: 1em;
	background-color: #f2f2f2;
	/*
	height: 62px;
	line-height: 62px;
	*/
	height: 42px;
	line-height: 42px;
	/*
	opacity: 0.75;
	filter: alpha(opacity=75);
	*/
	text-shadow: none !important;
	visibility: visible;
}

#product-sub-nav .product-sub-nav-inner ul li li .abox p {
	color: #004198;
}

#product-sub-nav .product-sub-nav-inner ul li.mean-last a {
	/*
	border-bottom: none;
	margin-bottom: 0;
	*/
	border-bottom: 1px solid #f4f0eb;
}

#product-sub-nav .product-sub-nav-inner ul li li li a {
	color: #333;
	width: 100%;
	min-width: 290px;
	margin: 0 0 0 0;
	padding: 0 0 0 0;
	font-weight: 400;
	font-family: "BIZ UDPGothic", sans-serif;
	font-size: 1.1em;
	background-color: #d9d9d9;
}



/* クリックで出現用 */
/*
#product-sub-nav .product-sub-nav-inner ul li ul {
  display: none;
}
*/


/*
.mean-container .mean-nav ul li li li li a {
	width: 60%;
	padding: 1em 20%;
}

.mean-container .mean-nav ul li li li li li a {
	width: 50%;
	padding: 1em 25%;
}
*/

#product-sub-nav .product-sub-nav-inner ul li {
	background: #252525;
	background: rgba(255,255,255,0.6);
}

#product-sub-nav .product-sub-nav-inner ul li a {
	background: #252525;
	background: rgba(255,255,255,0.6);
}

#product-sub-nav .product-sub-nav-inner ul li .top_box {
	background: #252525;
	background: rgba(255,255,255,0.6);
}

#product-sub-nav .product-sub-nav-inner ul li .abox {
	background: #252525;
	background: rgba(255,255,255,0.6);
}



/*
#product-sub-nav .product-sub-nav-inner ul li a:hover {
	background: #252525;
	background: rgba(255,255,255,0.6);
}
*/

#product-sub-nav .product-sub-nav-inner ul li li a:hover,
#product-sub-nav .product-sub-nav-inner ul li li a.current {
	color: #fff;
	width: 100%;
	min-width: 290px;
	padding: 0 0 0 0;
	background-color: #004198;
	/*background-color: #a8221a;*/
}

#product-sub-nav .product-sub-nav-inner ul li li li a:hover {
	color: #fff;
	width: 100%;
	min-width: 290px;
	padding: 0 0 0 0;
	background-color: #004198;
	/*background-color: #a8221a;*/
}

#product-sub-nav .product-sub-nav-inner ul li .abox:hover {
	color: #fff;
	width: 100%;
	min-width: 290px;
	padding: 0 0 0 0;
	background-color: #004198;
	/*background-color: #a8221a;*/
}



#product-sub-nav .product-sub-nav-inner ul li a p {
	padding: 0 0 0 18px;
}

#product-sub-nav .product-sub-nav-inner ul li .top_box p {
	padding: 0 0 0 18px;
}

#product-sub-nav .product-sub-nav-inner ul li li a p {
	padding: 0 0 0 28px;
}

#product-sub-nav .product-sub-nav-inner ul li li li a p {
	padding: 0 0 0 18px;
	font-size: 0.9em;
	letter-spacing: -1px;
}

#product-sub-nav .product-sub-nav-inner ul li .abox p {
	padding: 0 0 0 18px;
	letter-spacing: -1px;
}




#product-sub-nav .product-sub-nav-inner ul li a .mean-kind {
	margin-top: 0;
	width: 62px;
	height: 62px;
	line-height: 62px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	background-color: #eaeaea;
	border: none !important;
	font-size: 1.1em;
}

#product-sub-nav .product-sub-nav-inner ul li a:hover .mean-kind {
	width: 62px;
	height: 62px;
	color: #fff;
	background-color: #004198;
}









#product-sub-nav .product-sub-nav-inner ul li .top_box .mean-kind {
	margin-top: 0;
	width: 62px;
	height: 62px;
	line-height: 62px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	background-color: #eaeaea;
	border: none !important;
	font-size: 1.1em;
}

#product-sub-nav .product-sub-nav-inner ul li .top_box:hover .mean-kind {
	width: 62px;
	height: 62px;
	color: #fff;
	background-color: #004198;
}





#product-sub-nav .product-sub-nav-inner ul li a .mean-expand {
	margin-top: 0;
	/*
	width: 62px;
	height: 62px;
	line-height: 62px;
	*/
	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	background-color: #eaeaea;
	border: none !important;
	font-size: 1.6em;
}

#product-sub-nav .product-sub-nav-inner ul li a:hover .mean-expand {
	/*
	width: 62px;
	height: 62px;
	*/
	width: 42px;
	height: 42px;
	color: #fff;
	background-color: #004198;
}





#product-sub-nav .product-sub-nav-inner ul li .abox:hover {
	background-color: #f0f6f8;
}


#product-sub-nav .product-sub-nav-inner ul li .abox .mean-kind {
	margin-top: 0;
	width: 62px;
	height: 62px;
	line-height: 62px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	background-color: #eaeaea;
	border: none !important;
	font-size: 1.1em;
}

#product-sub-nav .product-sub-nav-inner ul li .abox:hover .mean-kind {
	width: 62px;
	height: 62px;
	color: #fff;
	background-color: #004198;
}

#product-sub-nav .product-sub-nav-inner ul li .abox .mean-expand {
	margin-top: 0;

	width: 42px;
	height: 42px;
	line-height: 42px;
	text-align: center;
	position: absolute;
	right: 0;
	top: 0;
	z-index: 2;
	background-color: #eaeaea;
	border: none !important;
	font-size: 1.6em;
}

#product-sub-nav .product-sub-nav-inner ul li .abox:hover .mean-expand {
	width: 42px;
	height: 42px;
	color: #fff;
	background-color: #004198;
}





#product-sub-nav .mean-push {
	float: left;
	width: 100%;
	margin: 0;
	clear: both;
}

#product-sub-nav .wrapper {
	width: 100%;
	padding: 0;
	margin: 0;
}






/* Fix for box sizing on Foundation Framework etc. */
.mean-container .mean-bar, .mean-container .mean-bar * {
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}


.mean-remove {
	display: none !important;
}































