@charset "utf-8";

/*---------------------------------------
 common （共通のスタイル）
=======================================*/


/* 検索結果
---------------------------------------*/
ul.searchresult li {
	margin:5px auto;
	background:#DDD;
}

/* 検索BOX
---------------------------------------*/
.searchbox {
	background:#000;
	position:fixed;
	top:20px;
	left:20px;
}
.searchbox ul {
	list-style:none;
	margin:0 auto;
}
.searchbox ul li {
	margin:10px;
	display: block;
	font-size:14px;
	font-weight:bold;
	color:white;
	background:#666666;
	background-position: center bottom;
	background-repeat: no-repeat;
	width:300px;
}

.searchbox a:link,a:visited,a:hover,a:active {
	/* color: #FFFF; */
}
.searchbox img {
	max-width:20px;
	max-height:20px;
}
.searchbox .color {
}
.searchbox .color div {
	position:relative;
	float:right;
	width:20px;
	height:20px;
	margin:5px;
}
.searchbox .color div label {
	position:absolute;
	top:0;
	left:15px;
}
.searchbox .color div img {
	position:absolute;
	bottom:0;
	left:0;
}
.searchbox .color div img.active {
	border:2px red solid;
}

.searchbox input[type=text],select{
	float:right;
}
.width p,.height p {
	float:right;
	margin:0;
}

/*--- ボタン ---*/
.button {
	display: inline-block;
	outline: none;
	cursor: pointer;
	text-align: center;
	text-decoration: none;
	font: 14px/100% FontAwesome;/*,Arial, Helvetica, sans-serif;*/
	padding: .5em 1.2em .55em;
	text-shadow: 0 1px 1px rgba(0,0,0,.3);
	-webkit-border-radius: .5em; 
	-moz-border-radius: .5em;
	border-radius: .5em;
	-webkit-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	-moz-box-shadow: 0 1px 2px rgba(0,0,0,.2);
	box-shadow: 0 1px 2px rgba(0,0,0,.2);
}
.button:hover {
	text-decoration: none;
}
.button:active {
	position: relative;
	top: 1px;
}

.gray {
	color: #e9e9e9;
	border: solid 1px #555;
	background: #6e6e6e;
	background: -webkit-gradient(linear, left top, left bottom, from(#888), to(#575757));
	background: -moz-linear-gradient(top,  #888,  #575757);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#888888', endColorstr='#575757');
}
.gray:hover {
	background: #616161;
	background: -webkit-gradient(linear, left top, left bottom, from(#757575), to(#4b4b4b));
	background: -moz-linear-gradient(top,  #757575,  #4b4b4b);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#757575', endColorstr='#4b4b4b');
}
.gray:active {
	color: #afafaf;
	background: -webkit-gradient(linear, left top, left bottom, from(#575757), to(#888));
	background: -moz-linear-gradient(top,  #575757,  #888);
	filter:  progid:DXImageTransform.Microsoft.gradient(startColorstr='#575757', endColorstr='#888888');
}
.gray:disabled {
	color: #555;
	text-decoration:line-through;	
}

/* Pagenation */
.pagenation ul{
}
.pagenation li{
	display:inline;
	padding:5px 10px;
	text-align:center;
	font-size:medium;
	line-height:1.2em;
	list-style:none;
	color:darkgray;
	border:none;
}

input::placeholder {
	color:#DDD;
}

/* IE */
input:-ms-input-placeholder {
	color:#DDD;
}

/* Edge */
input::-ms-input-placeholder {
 	color:#DDD;
}

