@charset "utf-8";

body {
	overflow-x: hidden;
	width: 100%;
	margin: 0;
	padding: 0;
	font-family: 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
	line-height: 1.75;
	font-size: 18px;
	color: #000;
	font-weight: 500;
}


/* ---------------------------------------------------------

	cata

--------------------------------------------------------- */

#cata > ul {
	position: fixed;
	list-style-type: none;
	width: 100%;
	height: 48px;
	margin: 0 auto 40px;
	padding: 0;
	background: #2482aa;
}

#cata > ul > li {
	position: relative;
	float: left;
	width: calc(100%/3);
	margin: 0;
	padding: 0;
	text-align: center;
}

#cata > ul > li > span,
#cata > ul > li > a {
	box-sizing: border-box;
	display: block;
	margin: 0;
	padding: 0;
	border-right: 1px solid #fff;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	line-height: 48px;
	text-decoration: none;
	transition: background-color 1s;
}

#cata > ul > li:last-child > a {
	border-right: none;
}

#cata > ul > li:hover > a {
	background: #309fce;
	color: #fff;
}

#cata > ul > li ul {
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	margin: 0;
	padding: 0;
	background: #ddf4fd;
}


#cata > ul > li ul li {
	overflow: hidden;
	width: 100%;
	height: 0;
	-moz-transition: .2s;
	-webkit-transition: .2s;
	-o-transition: .2s;
	-ms-transition: .2s;
	transition: .2s;
}

#cata > ul > li li a {
	box-sizing: border-box;
	display: block;
	padding: 18px 16px;
	background: #ddf4fd;
	border-bottom: 1px solid #fff;
	text-align: left;
	font-weight: normal;
	color: #2482aa;
	text-decoration: none;
	transition: background-color 1s;
	line-height: 1;
}

#cata > ul > li li a:hover {
	background-color: #f1f9fc;
}

#cata > ul > li:hover ul li {
	overflow: visible;
	height: 52px;
}

@media screen and (max-width: 767px) {
	
	#cata > ul {
		position: relative;
	}
	
	#cata > ul > li {
		position: static;
	}
	
	#cata > ul > li ul {
		left: 0;
		right: 0;
	}
	
}


/* ---------------------------------------------------------

	list

--------------------------------------------------------- */

#prodBox #list {
	overflow: hidden;
	margin: 0 -1% 16px;
	padding: 88px 0 0;
	list-style: none;
}

#prodBox #list > li {
	box-sizing: border-box;
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 18%;
    margin: 0 1% 20px;
    padding: 4px;
	border: 1px solid #dedede;
}

#prodBox #list > li:nth-child(5n+1) {
	clear: both;
}

#list h2 {
	margin: 0 0 8px;
	padding: 8px;
	background-color: #eee;
	font-size: 15px;
	text-align: left;
	line-height: 1.5;
}

#list h2 a {
	display: block;
	color: #2482aa;
	text-decoration: none;
}

#list h2 + div {
	text-align: center;
}

#list ul.color {
	margin: 0 10px;
	padding: 0;
	list-style: none;
}

#list ul.color li {
	margin: 8px 0;
	line-height: 1.2;
}

#list ul.color small {
	font-size: 12px;
	color: #999;
}

#list ul.price {
	margin: 0 10px;
	padding: 0;
	list-style: none;
}

#list ul.price li {
	display: table;
	width: 100%;
	margin: 16px 0 0;
	padding: 16px 0 0;
	border-top: 1px solid #dedede;
}

#list ul.price li > span {
	display: table-cell;
}

#list ul.price li > b {
	display: table-cell;
	text-align: right;
}

@media screen and (max-width: 767px) {
	
	#prodBox #list {
		padding: 0;
	}
	
	#prodBox #list > li {
		width: 48%;
	}

	#prodBox #list > li:nth-child(5n+1) {
		clear: none;
	}
	
	#prodBox #list > li:nth-child(odd) {
		clear: both;
	}
	
}


/* ---------------------------------------------------------

	詳細

--------------------------------------------------------- */

#detailBox {
	box-sizing: border-box;
	max-width: 800px;
	width: 100%;
	margin: 0 auto;
	padding: 0 20px 20px;
}

#detail {
	width: 100%;
	border-collapse:collapse;
	border-spacing:0;
}

#detail th,
#detail td {
	box-sizing: border-box;
	padding: 0;
	background-color: transparent;
	border: none;
}

#detail th {
	width: 36%;
	text-align: center;
}

#detail td {
	width: 64%;
	padding-left: 16px;
}

#detail ul.color {
	margin: 0 10px;
	padding: 0;
	list-style: none;
}

#detail ul.color li {
	margin: 8px 0;
	line-height: 1.2;
}

#detail ul.color small {
	font-size: 12px;
	color: #999;
}


#dataSheet {
	width: 100%;
	margin-bottom: 40px;
	table-layout: fixed;
	word-break: break-all;
	border-collapse:collapse;
	border-spacing:0;
}

#dataSheet th {
	width: 30%;
}

#dataSheet td {
	width: 70%;
}

#detailBox > h1 {
	margin-top: 30px;
	text-align: left;
	font-size: 120%;
}

#detailBox section {}

#detailBox section h1 {
	padding: 8px;
	background: #eee;
	font-size: 100%;
	text-align: left;
}

/* ------------------------------------------------

	clearfix

------------------------------------------------ */

.clearfix:after {
    content: "."; 
    display: block; 
    height: 0; 
    clear: both; 
    visibility: hidden;
	font-size: 0.1em;
}

.clearfix {
	display: inline-block;
}

/*\*/
* html .clearfix { height: 1%;}
.clearfix { display: block;}
/**/