@charset "UTF-8";
/* Table of Content
==================================================
	00. CSS Reset & Clearfix
	01. Basic Styles & Typography (header, paragraph, blockquote, lists, links, tables etc.)
    02. Page Layout
	03. Header (logo, search field)
	04. Content
	05. Sidebar(left)
	06. 
	07. Footer
	08. Forms & Buttons

	index.html(index.php) - style.css
	kekka.php             - style2.css
								 list - list.css
				              catalog - catalog.css
/* 
================================================== */


/* 00. CSS Reset & Clearfix
================================================== */
/* http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
*/

html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed, 
figure, figcaption, footer, header, hgroup, 
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
body {
	line-height: 1;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
input::-ms-clear {
	visibility:hidden;
}
*:focus {
	outline: 0
}

/*clearfix*/
.clearfix:after {
  content: "."; 
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}
.clearfix {
  min-height: 1px;
}
* html .clearfix {
  height: 1px;
  /*¥*//*/
  height: auto;
  overflow: hidden;
  /**/
}
/* 01. Basic Styles & Typography
================================================== */

/* 参考: Golden scale for 12px font
Title: 31px
Headlines: 19px
Sub-headlines: 15px
Primary Text: 12px
Secondary Text: 9px
========================================== */

/* Color scheme:
key color: #CC0000 (red)
counter color: #00CC3A (green)
triad: #CC0000 (red) + #D4D215(yellow) #0F6499(blue)
========================================== */

body {
    font-size: 12px;
    line-height: 1;
    font-family:"ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    color: #333333;
    -webkit-font-smoothing: antialiased; /* Fix for webkit rendering */
    -webkit-text-size-adjust: 100%;
}
/*link*/
a {
/*	color:#0F6499; */
	font-weight:bold;
	transition: color 150ms linear;
	-moz-transition: color 150ms linear;
	-webkit-transition: color 150ms linear;
	-o-transition: color 150ms linear;	
}
a:hover {
	/* color:#CC0000; */
}
a, a:visited { 
	text-decoration: none; 
	outline: 0; 
}
a:hover { 
	text-decoration: underline; 
	outline: 0; 
}
a img:hover {
	opacity: 0.6;
	-ms-filter:"alpha(opacity=60)";/*IE*/
}

/* 02. Page Layout
================================================== */
/*
結果ページは2コラム
left 固定
right　リキッド（メイン）
*/
#main_container {
	width:100%;
	min-width:960px;
	margin:10px 0 0 0;
	padding:0 10px;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
}
#header {
	width:100%;
	margin:0 0 10px 0;
}
#searchbox {
	width:100%;
	height:60px;
	margin:0 0 10px 0;
}
#wrapper {
	width:100%;
	margin:0 0 10px 0;
}
#column_left {
	float:left; /* メニューが左 */
	/* float:right;  メニューが右 */
	width:180px;
	height:auto;
	margin-left: -100%;
}
#column_center {
	float:left;
	width:100%;
}
#column_center_inner {
	margin:0 0 0 190px; /* メニューが左 */
	/* margin:0 190px 0 0; メニューが右 */
	height: auto;
}
#footer_container {
	width: 100%;
	min-width: 960px;
	background: #000066;
}
/* 03. Header (logo, main navigation, search field)
================================================== */
/*
トップページと共通
*/
#header h1 {
	width:234px;
	height:60px;
	margin-bottom:10px;
	background: url(imgs/logo.gif) no-repeat top left;
	text-indent: -9999em;
}
#header h1 a {
	display: block;
	width: 100%;
	height: 60px;
}
#searchbox {
	padding: 10px 0 0 10px;
	background: #000066;
	border:1px solid #000066;
	zoom:1;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
}
#searchbox.fixed {/*スクロール時に画面上部に固定させるため*/
/*	position: fixed; */
	top: 0;
	left: 0;
	z-index: 10000;
/* 	opacity: 0.88; */
/* 	filter:alpha(opacity=0.88); */
	background:rgba(204,0,0,0.88);
	box-shadow: 0 2px 2px rgba(0,0,0,0.4);
	-webkit-box-shadow: 0 2px 2px rgba(0,0,0,0.4);
	-moz-box-shadow: 0 2px 2px rgba(0,0,0,0.4);
	-ms-box-shadow: 0 2px 2px rgba(0,0,0,0.4);
}
#searchbox_inner {
	width:88%;
	min-width: 728px;
}
#searchbox_inner_center {
	float:left;
	width: 100%;
}
#searchbox_inner_center_sub {
	margin-right:165px;
	margin-left:152px;
	zoom:1;
}
#searchbox_inner_left {
	float:left;
	width: 150px;
	margin-left:-100%;
}
#searchbox_inner_right {
	float:left;
	width: 150px;
	margin-left:-150px;
}
/*function nav (ログイン・ログアウト・マイページ)*/
#header {
	position: relative;
}
#function_nav {
	position: absolute;
	bottom:5px;
	right: 0;
	text-align: right;
}
#function_nav ul li {
	padding-top: 0.6em;
}
/* 04. Content
================================================== */
#column_center {
	box-sizing:border-box;
	-moz-box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-ms-box-sizing:border-box;
}
#featured_area {
	position: relative;
	width:100%;
	height: auto;
}
#featured_area_banner {
	width: 100%;
	margin:0 0 10px 0;
	border:1px solid #CCC;

}
#featured_area_banner ul {
	display: block;
	width: 100%

}
#featured_area_banner ul li {
	display: inline-block;
	*display: inline;
	width: 234px;
	margin:5px 5px;
	text-align: center;
	vertical-align: middle;
}
#featured_area_banner ul li img {
	width: 234px;
	margin: 0
}

#campaign_info {
	margin: 0 0 10px 0;
	padding:10px;
	background: #ffffff;
	border:1px solid #CCCCCC;
}

#campaign_info a{
	text-decoration: underline; 
}


#featured_area_top {
	margin: 0 0 10px 0;
	background: #F2F2F2;
	border:1px solid #CCCCCC;
}
#featured_area_top .displaystyle {
	margin: 10px;
	padding-bottom:4px; 
	border-bottom:1px solid #CCCCCC;
	box-shadow: 0 1px 2px rgba(255,255,255,1);
	-webkit-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-moz-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-ms-box-shadow: 0 1px 2px rgba(255,255,255,1);	
}
#featured_area_top .displaystyle img,
#featured_area_top .displaystyle form {
	display: inline;
}
#featured_area_top #relatedwords {
	margin: 10px;
}
#featured_area_top #relatedwords .title,
#featured_area_top #relatedwords ul {
	display: inline;
}
#featured_area_top #relatedwords li {
	margin-right: 10px;
	padding-bottom: 4px;
	display: inline-block;
	*display: inline;
	*zoom:1;
}
#featured_area_main #noresponce {
	width:100%;
/*	text-align: center;*/
	border:1px solid #CCCCCC;
}
#featured_area_main #noresponce h2,
#featured_area_main #noresponce h3,
#featured_area_main #noresponce p,
#featured_area_main #noresponce ul,
#featured_area_main #noresponce a {
	margin: 10px;
	line-height: 1.6em;

}
#featured_area_main #noresponce h2,
#featured_area_main #noresponce h3 {
	font-weight: bold;
}
#featured_area_main #noresponce h2 {
	border-bottom:1px dotted #CCCCCC;
	font-size: 31px;
}
#featured_area_main #noresponce h3 {
	font-size: 19px;
}
#featured_area_main #noresponce p {
	font-size: 15px;
}

#featured_area_main #noresponce #searchdirect {
/*	width: 500px;
	margin: 0 auto;
	border: 1px solid #CCCCCC;*/
}
#featured_area_main #noresponce #searchdirect ul {
	margin-bottom:1em;
}
#featured_area_main #noresponce #searchdirect li {
	line-height: 1.4em;
	text-align: left;
}
#featured_area_bottom #relatedwords {
	margin: 10px 0;
	padding:10px;
	border:1px solid #CCCCCC;
}
#featured_area_bottom #relatedwords .title,
#featured_area_bottom #relatedwords ul {
	display: inline;
}
#featured_area_bottom #relatedwords li {
	margin-right: 10px;
	display: inline-block;
	*display: inline;
	*zoom:1;
}
#featured_area_bottom #underitemlist {
	margin: 10px 0;
	border:1px solid #CCCCCC;
}

#recent_item {
	min-height:190px;
}
#recent_item .title {
	height: 30px;
	padding-left: 30px;
	border-bottom:1px solid #CCCCCC;
	background: url(imgs/img_bg_recent.png) no-repeat 14px center;
	color:#CC0000;
	font-weight: bold;
	line-height: 30px;
}
#recent_item .recentitem {
	float:left;
	width:100px;
	height: 160px;
	margin:10px 5px;
	border:1px solid #CCCCCC;
}
#recent_item .recentitem {
	text-align: center;
}
#recent_item .recentitem .recentimg {
	display: block;
	width:90px;
	height: 110px;
	margin: 10px auto;
}
#recent_item .recentitem .recentimg img {
	max-width: 90px;
	max-height: 110px;
}
/*検索結果の金額にかかるリンク*/
#featured_area_main .itembox .itemprice a,
#featured_area_main .itembox .itempoint a {

	color:#FF0000; 
}

iframe#dummy {
	z-index:10000;
	position: fixed;
}
#dummy{
	 height:100%;
	 width:100%;
	 position:absolute;
	 top:0;
	 left:0;
	 border:solid 1px #666666;
 }
/* 05. Sidebar(left)
================================================== */
#column_left .column_left_sub {
	margin:0 auto 10px;
	border:1px solid #CCCCCC;
	background: #F2F2F2;
	box-shadow: 0 0 5px rgba(255,255,255,1) inset;
	-webkit-box-shadow: 0 0 5px rgba(255,255,255,1) inset;
	-moz-box-shadow: 0 0 5px rgba(255,255,255,1) inset;
	-ms-box-shadow: 0 0 5px rgba(255,255,255,1) inset;
}
#column_left #column_left_nav {
	margin-bottom:10px;
}
#column_left .column_left_sub h2.title {
	margin: 12px 5px;
	padding:0 0 4px 0;
	border-bottom:1px solid #CCCCCC;
	box-shadow: 0 1px 2px rgba(255,255,255,1);
	-webkit-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-moz-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-ms-box-shadow: 0 1px 2px rgba(255,255,255,1);	
	text-align: center;
	font-weight: bold;
}
#column_left .column_left_sub .search_filter_box {
	margin:0 5px 10px;
	padding: 0 0 10px 0;
	border-bottom:1px solid #CCCCCC;
	box-shadow: 0 1px 2px rgba(255,255,255,1);
	-webkit-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-moz-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-ms-box-shadow: 0 1px 2px rgba(255,255,255,1);	
}
#column_left .column_left_sub .search_filter_box h3.title {
	margin-bottom:4px
}
#column_left .column_left_sub .search_filter_box p,
#column_left .column_left_sub .search_filter_box li {
	line-height: 1.6
}
#column_left .column_left_sub .search_filter_box.keyword input[type="text"] {
	width:162px;
}
#column_left .column_left_sub .search_filter_box select {
	width: 170px;
}
#column_left .column_left_sub .search_filter_box.sites li {
	display: inline-block;
	*display: inline;
	*zoom:1;
} 
#column_left .column_left_sub #column_left_genre {
	margin:0 5px 10px;
	padding: 0 0 10px 0;
	border-bottom:1px solid #CCCCCC;
	box-shadow: 0 1px 2px rgba(255,255,255,1);
	-webkit-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-moz-box-shadow: 0 1px 2px rgba(255,255,255,1);
	-ms-box-shadow: 0 1px 2px rgba(255,255,255,1);	
}
#column_left .column_left_sub #column_left_genre li {
	height: 30px;
	margin:0 5px;
	border-bottom:1px dotted #CCCCCC;
	line-height: 30px;	
}
#column_left .column_left_sub #column_left_genre li:hover {
	background: #FAFAFA;
	transition: color 150ms linear;
	-moz-transition: color 150ms linear;
	-webkit-transition: color 150ms linear;
	-o-transition: color 150ms linear;
}
#column_left ul li a {
	display: block;
	width: 100%;
}
#column_left .column_left_sub #column_left_genre li:last-child {
	border-bottom: none;
}
#column_left .column_left_sub2 {
	margin-bottom:10px;
	border:1px solid #CCCCCC;
}
#recent_item2 {
	margin-bottom:10px;
	text-align: center;
}
#recent_item2 .title {
	height: 30px;
	border-bottom:1px solid #CCCCCC;
	background: url(imgs/img_bg_recent.png) no-repeat 28px center;
	color:#CC0000;
	font-weight: bold;
	line-height: 30px;
	text-align: center;
}
#recent_item2 .recentitem2 {
	width:100px;
	height: 140px;
	margin:10px auto;
	border:1px solid #CCCCCC;
}
#recent_item2 .recentitem2 {
	text-align: center;
}
#recent_item2 .recentitem2 .recentimg2 {
	display: block;
	width:90px;
	height: 110px;
	margin: 10px auto 4px;
}
#recent_item2 .recentitem2 .recentimg2 img {
	max-width: 90px;
	max-height: 110px;
}

#column_left .column_left_sub .btn input[type="submit"] {
	background: none;
	border: none;
	display: block;
	width: 8em;
	margin: 4px auto 0;
	padding: 4px 0;
	background: #515151;
	color:#FFFFFF;
	border-radius:4px;
	-webkit-border-radius:4px;
	-moz-border-radius:4px;
	-ms-border-radius:4px;
}
#column_left .column_left_sub .btn input[type="submit"]:hover {
	cursor: pointer;
}

/* 06. 
================================================== */

/* 07. Footer
================================================== */
/*
トップページと共通
*/
#footer,
#footer a {
	color:#FFFFFF;	
}
#footer {
	padding:10px 0;
	text-align: center;
}
#footer #footer_nav li {
	display: inline-block;
	*display: inline;
	*zoom:1;
	margin-bottom:10px;
}
/* 08. Forms & Buttons
================================================== */
#genre_select_box,
#search_box,
#search_filter_box,
#submit_btn  {
	/*background: #FFF;*/
	border: none;
}
#genre_select_box {
	position: relative;
	width: 150px;
	height: 38px;
	background: #FFFFFF;
	/*border:1px solid #CCC;*/
}
#genre_selector_btn,
#search_filter_btn
 {
	background: #FFFFFF;
	line-height: 38px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
}
#search_filter_panel {
	display: none;
}
#searchbox_inner_left_genre {
	display: block;
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1000;
}
#searchbox_inner_left_genre {
	width:150px;
	height: 38px;
	border: none;
}
#searchbox_inner_center_sub {
	position: relative;
}
#search_box {
	width: 100%;
	height: 36px;
}
#search_box input[type="text"] {
	width: 100%;
	height: 36px;
	border:none;
	border-left: 11px solid #000066;
	font-size: 19px;
	text-indent: 7px;
	/* line-height: 36px; */
}
#search_filter_box {
	position: absolute;
	top:0;
	right: -4px;
	width:100px;
	height: 36px;
	border-left:1px solid #CCC;
	/*border:1px solid #CCC;*/
}
#search_filter_panel.open {
	display: block;
	position: absolute;
	top:38px;
	right: 0;
	z-index: 10000;
	box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	-webkit-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	-moz-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
	-ms-box-shadow: 0 2px 10px rgba(0,0,0,0.2);
}
#search_filter_panel {
	width: 578px;
	padding: 10px;
	background: #FFFFFF;
	border:1px solid #CCC;
	box-sizing:border-box;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	-ms-box-sizing:border-box;
}
#search_filter_panel dt {
	float: left;
	width: 120px;
	height: 24px;
	line-height: 24px;
}
#search_filter_panel dd {
	margin: 0 0 1em 0;
}
#search_filter_panel dd input[type="text"] {
	/*width:180px;*/
}
#submit_btn {
	background: none;
	padding: 0 0 0 10px;

}
#submit_btn input[type="submit"] {
	display: inline-block;
	*display: inline;
	*zoom:1;
	width:150px;
	height: 40px;
	border:none;
	background: transparent;
	background: url(imgs/img_btn_submit_1.png) no-repeat center center;
	/*text-indent: -9999em;*/
	color: transparent;
	text-transform: capitalize;/*IE7対策*/
	cursor:pointer;
	position: relative;
}
#pagination {
	margin:10px 0;
	padding:10px 0;
	background:#f0f0f0;
	border:1px solid #CCCCCC;
	text-align:center;
}
＃pagination ul {
}
#pagination ul li {
	display:inline-block;
	*display:inline;
	*zoom:1;
	width:22px;
	height:30px;
	margin:0 2px 0 0;
	background:#FFFFFF;
	border:1px solid #CC0000;
}
#pagination ul li 	
	display:block;
	width:100%;
	height:30px;
	color:#CC0000;
	font-weight:normal;
	line-height:30px;
	letter-spacing: -1px;
}
#pagination ul li:hover {
	background:#FF0000;
}
#pagination ul li a:hover {
	color:#FFFFFF;
	font-weight:bold;
}
#pagination ul li.current {
	border:none;
	background:none;
	font-weight:bold;
}
#pagination ul li.prev,
#pagination ul li.next {
	width:auto;
}
