@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. Sidebar(right)
	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
================================================== */
/*
トップページは3コラム
left 固定
right　固定
center　リキッド（メイン）
*/
#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;
	width:170px;
	height:auto;
	margin-left: -100%;
}
#column_center {
	float:left;
	width:100%;
}
#column_center_inner {
	margin:0 310px 0 180px;
	height: auto;
}
#column_right {
	float:left;
	width:300px;
	margin-left:-300px;	
}
#footer_container {
	width: 100%;
	min-width: 960px;
	background: #000066;
}

#column_single {
	width: 940px;
	height: auto;
	margin:0 auto;
}
/* 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:150px;
	margin-left:150px;
	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;
}
#column_center_inner {
	 border: 1px solid #CCCCCC; 
	padding-bottom: 1px;
}
#featured_area {
	position: relative;
	width:100%;
	height: auto;
}
#featured_area ul#featured_contents {
	width:100%;
	max-width: 740px;
	margin: 0 auto
}
#featured_area ul#featured_contents li {
	width:100%;
}
#featured_area ul#featured_contents img {
	width:100%;
}
#featured_area ul#featured_contents ul#featured_contents_sub li {
	float: left;
	width:50%;
	max-width: 370px;
}
/*#featured_area ul#featured_contents {
	max-width: 99%;
	margin: 0.5%;
}
#featured_area ul#featured_contents li {
	float: left;
	width:33%;
	margin-right:0.5%;
}
#featured_area ul#featured_contents li:last-child {
	margin-right:0;
}
#featured_area ul#featured_contents img {
	width:100%;
}*/
#category_banner_area {
	text-align:center;
}
#category_banner_area img {
	display:block;
	max-width: 100%;
	margin: 0 auto;
}
#recent_item {
	min-height:190px;
}
#recent_item .title {
	height: 30px;
	padding-left: 30px;
	border-top:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
	background: url(imgs/img_bg_recent.png) no-repeat 14px center;
	color:#000066;
	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;
}
.ranking {
	position: relative;
	height: 218px
}
.ranking .title {
	height: 30px;
	padding-left: 28px;
	border-top:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
	background: url(imgs/img_bg_ranking.png) no-repeat 14px center;
	color:#CC0000;
	font-weight: bold;
	line-height: 30px;
}
.ranking .title .date {
	color: #333333;
	font-size: 9px;
}
/*カルーセル１つめ->メインコンテンツのトップ*/
#carousel01 {
	position: relative;
	width: 100%;
	height: 134px;
	overflow: hidden;
	margin:0 auto;

}
#carousel01 ul li {
	float:left;
	display: inline;
}
#carousel01 ul li div {
	 margin: 4px 0 0 26px;
}
#carousel_prev01 {
	position: absolute;
	top:0;
	left: 0;
	width: 26px;
	height: 134px;
	background: url(imgs/img_btn_featured_l.png) no-repeat left center;
	cursor: pointer;
}
#carousel_next01{
	position: absolute;
	top:0;
	right: 0;
	width: 26px;
	height: 134px;
	background: url(imgs/img_btn_featured_r.png) no-repeat left center;
	cursor: pointer;
}
/*カルーセル２つ目以降->各ランキング*/
#carousel02,
#carousel03,
#carousel04 {
	position: relative;
	width: 100%;
	height: 187px;
	overflow: hidden;
	margin:0 auto;

}
#carousel02 ul li,
#carousel03 ul li,
#carousel04 ul li {
	float:left;
	display: inline-block;
	display: inline;
	*zoom:1;
}
#carousel02 ul li div,
#carousel03 ul li div,
#carousel04 ul li div {
	 margin: 4px 10px 0 26px;
}
#carousel_prev02,
#carousel_prev03,
#carousel_prev04 {
	position: absolute;
	top:0;
	left: 0;
	width: 26px;
	height: 187px;
	background: url(imgs/img_btn_ranking_l.png) no-repeat left center;
	cursor: pointer;
}
#carousel_next02,
#carousel_next03,
#carousel_next04 {
	position: absolute;
	top:0;
	right: 0;
	width: 26px;
	height: 187px;
	background: url(imgs/img_btn_ranking_r.png) no-repeat left center;
	cursor: pointer;
}
.ranking_item {
	text-align: center;
	width: 150px;
}
.ranking_item .item_num,
.ranking_item .item_thumbnail,
.ranking_item .item_name,
.ranking_item .item_price {
	display: block;
	margin:0 auto 10px;
}
.ranking_item .item_num,
.ranking_item .item_price {
	color:#CC0000;
	font-weight: bold;
}
.ranking_item .item_thumbnail {
	width: 100px;
	height: 100px;
}
.ranking_item .item_thumbnail img {
	display: block;
	max-width: 95px;
	max-height: 95px;
	margin:0 auto;
}
.ranking_item .item_name {
	width: 100px;
	height: 2em;
	overflow: hidden;
}
/*その他の下層ページ*/
#mainContent {
	padding: 20px;
}
#mainContent h2 {
	font-size: 31px;
}
#mainContent p,
#mainContent li,
#mainContent dt,
#mainContent dd,
#mainContent a {
	font-size: 15px;
	line-height: 1.6;
}
#mainContent p,
#mainContent ol,
#mainContent ul,
#mainContent dt,
#mainContent dd,
#mainContent a {
	margin-bottom:15px;
}
#mainContent #tool {
	text-align: center;
}
#mainContent #keisai {
	width:600px;
	margin: 0 auto;
}
#mainContent ol {
	margin: 15px 0;
	padding-left: 31px;
	list-style-type: decimal;
}
#mainContent ol li {
	margin: 15px 0;
}
#mainContent #corporate dl {
	width: 600px;
	margin:0 auto;
	border-bottom: 1px solid #CCCCCC;
}
#mainContent #corporate  dt{
	float: left;
	width: 108px;
	padding-top:15px; 
	border-top:1px solid #CCCCCC;
	font-weight: bold;
}
#mainContent #corporate dd {
	float: left;
	width: 492px;
	padding-top:15px; 
	border-top:1px solid #CCCCCC;
}
/* 05. Sidebar(left)
================================================== */
#column_left h2.title {
	border-bottom: 1px solid #CCCCCC;
}
#column_left h2.title span {
	display: block;
	width:78px;
	height: 16px;
	margin:0 auto 4px;
	background: url(imgs/img_title_genre.png) no-repeat top left;
	text-indent: -9999em;

}
#column_left ul li {
	position: relative;
	width:170px;
	height: 30px;
	border-bottom:1px solid #CCCCCC;
	background: url(imgs/img_bg_genre.png) no-repeat center right;
	line-height: 30px;
}
#column_left ul li:hover {
	background: #FAFAFA;	
}
#column_left ul li a {
	display: block;
	width: 100%;
}
#column_left ul li a:hover {
	background: url(imgs/img_bg_genre.png) no-repeat center right;	
}
#column_left ul li ul {
	display: none;
}
#column_left ul li .sub.open {
	display: block;
	position: absolute;
	top:-1px;
	left: 150px;
	z-index: 1000;
	width: 200px;
	padding:10px 0;
	background: #FAFAFA;
	border-top:1px solid #CCCCCC;
	border-right:1px solid #CCCCCC;
	border-bottom:1px solid #CCCCCC;
	box-shadow: 2px 2px 2px rgba(0,0,0,0.1);
}
#column_left ul li ul li {
	margin: 0 auto;
	border-bottom:1px dotted #CCCCCC;
}
#column_left ul li.genre_subgroup {
	color:#0F6499;
	font-weight: bold;
	cursor: default;
}
#column_left #adslot_160x600 {
	margin:10px 0 0 0;
}
/* 06. Sidebar(right)
================================================== */
#column_right .column_right_sub {
	margin:0 0 10px 0;
}
#banner_pointupnet {
	width: 300px;
	height: 80px;
	background: #CC0000;
}
#banner_pointupnet .title {
	float: left;
	width: 100px;
	height: 80px;
	background: url(imgs/img_title_pointupnet.png) no-repeat center center;
	text-indent: -9999em;
}
#banner_pointupnet .point_data {
	float: left;
	width: 99px;
	height: 80px;
}
#banner_pointupnet .point_data dt,
#banner_pointupnet .point_data dd {
	width: 100%;
	background: #FFFFFF;
	border: 1px solid #CC0000;
	text-align: center;
	vertical-align: baseline;
}
#banner_pointupnet .point_data dt {
	height: 30px;
	line-height: 30px;
	color:#CC0000;
	font-weight: bold;
}
#banner_pointupnet .point_data dd {
	height: 46px;
	vertical-align: bottom;
}
#banner_pointupnet .point_data .num {
	font-size: 42px;
}
/* 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: 1px solid #CCCCCC;*/
	font-size: 19px;
	text-indent: 7px;
	/* line-height: 36px; */
}
#search_filter_box {
	position: absolute;
	top:0;
	right: -4px;
	z-index: 1000;
	width:100px;
	height: 36px;
	border-left: 1px solid #CCCCCC;
	/*border:1px solid #CCC;*/
}
#search_filter_panel.open {
	display: block;
	position: absolute;
	top:38px;
	right: 0;
	z-index: 1000;
	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: -9999px;*/
	color:transparent;
	text-transform: capitalize;/*IE7対策*/
	cursor:pointer;
	position: relative;
}