@charset "utf-8";


/*全体の設定
---------------------------------------------------------------------------*/
body {
	color: #FFF;	/*全体の文字色*/
	margin: 0px;
	padding: 0px;
	font: 14px/2 "メイリオ", Meiryo, "ＭＳ Ｐゴシック", Osaka, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";/*文字サイズ・行間・フォント設定*/
	background: #000 url(../images/bg.jpg) no-repeat center top;	/*背景色、背景画像の読み込み＆リピートしない＆左右中央の上部に配置*/
}
h1,h2,h3,h4,h5,p,ul,ol,li,dl,dt,dd,form,figure{
	margin: 0px;
	padding: 0px;
}
ul{
	list-style-type: none;
}
img {
	border: none;
}
input,textarea,select {
	font-size: 1em;
}
form {
	margin: 0px;
}
table {
	border-collapse:collapse;
	font-size: 100%;
	border-spacing: 0;
}

/*リンク（全般）設定
---------------------------------------------------------------------------*/
a {
	color: #FFF;	/*リンクテキストの色*/
}
a:hover {
	color: #FFFF00;			/*マウスオン時の文字色（全体）*/
	text-decoration: none;	/*マウスオン時に下線を消す設定。残したいならこの１行削除。*/
}

/*コンテナー（HPを囲むブロック）
---------------------------------------------------------------------------*/
#container {
	width: 990px;	/*コンテナー幅*/
	margin-right: auto;
	margin-left: auto;
}

/*ヘッダー（サイトロゴが入ったブロック）
---------------------------------------------------------------------------*/
header {
	height: 162px;	/*ヘッダーブロックの高さ*/
	width: 100%;	/*ヘッダーブロックの幅*/
	position: relative;
}
/*h1ロゴの設定*/
header h1 {
	position: absolute;
	left: 0px;	/*ヘッダーブロックに対して左から0pxの位置に配置*/
	top: 0px;	/*ヘッダーブロックに対して上から0pxの位置に配置*/
	width: 988px;	/*ブロック幅*/
	text-align: center;	/*センタリング*/
	background-color: #000000;	/*背景色、背景画像の読み込み*/
	border-radius: 0 0 5px 5px;	/*各丸のサイズ。左から、左上、右上、右下、左下への指定*/
	border-right: 1px solid #5f5f5f;	/*右の線の幅、線種、色。*/
	border-bottom: 1px solid #5f5f5f;	/*下の線*/
	border-left: 1px solid #5f5f5f;	/*左の線*/
	padding: 30px 0px;	/*余白。左から、上下、左右への指定*/
}

/*メインコンテンツ（右側ブロック）
---------------------------------------------------------------------------*/
#main {
	width: 988px;	/*メインコンテンツ幅*/
//	float: right;	/*右側へ回り込み*/
	padding-bottom: 30px;
}
/*mainコンテンツのh1タグの設定*/
#main h1 {
	clear: both;
	background-color:#000000;
	border-radius: 5px;	/*角丸のサイズ*/
	border: 1px solid #5f5f5f;	/*枠線の幅、線種、色。*/
	font-size: 100%;	/*文字サイズ*/
	color: #FFF;		/*文字色*/
	padding: 3px 0px 3px 0px;	/*余白。左から、上、右、下、左への指定。*/
	margin-bottom:5px;
	text-align:center;
}
#main h1 img{
//	width: 100%;
}

/*mainコンテンツの段落タグ設定*/
#main p {
	padding: 0.5em 10px 1em;	/*左から、上、左右、下への余白*/
}

/*サブコンテンツ（左側ブロック）
---------------------------------------------------------------------------*/
#sub {
//	float: left;	/*左に回り込み*/
	width: 988px;	/*サブコンテンツ幅*/
	padding-bottom: 30px;
}
/*subコンテンツのh1タグの設定*/
#sub h1 {
	padding: 0px 10px;	/*左から、上下、左右への余白*/
	font-size: 100%;	/*文字サイズ*/
	color: #FFF;	/*文字色*/
	background-color: #222;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #000);	/*同上*/
	background-image: linear-gradient(#222, #000);			/*同上*/
	border-bottom: 5px solid #939393;	/*下線の幅、線種、色*/
}
/*box1設定*/
#sub .box1 {
	border: 1px solid #5f5f5f;	/*枠線の幅、線種、色*/
	border-radius: 5px;	/*角丸のサイズ*/
	padding: 10px;		/*ボックス内の余白*/
	background-color: #2d2d2d;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#2d2d2d), to(#1a1a1a));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#2d2d2d, #1a1a1a);	/*同上*/
	background-image: linear-gradient(#2d2d2d, #1a1a1a);			/*同上*/
}

/*上側のメインメニュー
---------------------------------------------------------------------------*/
/*各メニューの設定*/
nav#mainmenu{
  list-style-type: none;
  width: 990px;
  height: 40px;
  padding: 0;
  background: #101010;
  border-bottom: 5px solid #333333;
  border-radius: 3px 3px 0 0;
//  margin: 30px auto 300px;
}

nav#mainmenu li{
  position: relative;
  width: 12.5%;
  float: left;
  margin: 0;
  padding: 0;
  text-align: center;
}

nav#mainmenu li a{
  display: block;
  margin: 0;
  padding: 15px 0 11px;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 1;
  text-decoration: none;
}

nav#mainmenu li ul{
	display:none;
	list-style: none;
	position: absolute;
	top: 100%;
	left: 0;
	margin: 0;
	padding: 0;
	border-radius: 0 0 3px 3px;
}
nav#mainmenu li:last-child ul{
	left: -100%;
	width: 100%
}
nav#mainmenu li ul li{
  width: 100%;
  color: #fff;
  -moz-transition: .2s;
  -webkit-transition: .2s;
  -o-transition: .2s;
  -ms-transition: .2s;
  transition: .2s;
}

nav#mainmenu li ul li a{
  padding: 13px 15px;
  background: #101010;
  text-align: left;
  font-size: 12px;
  font-weight: normal;
  border-radius: 3px 3px 0 0;
}

nav#mainmenu li:hover > a{
  background: #333333;
  color: #eff7b1;
}

nav#mainmenu > li:hover > a{
  border-radius: 3px 3px 0 0;
}

nav#mainmenu li:hover ul li{
  overflow: visible;
  height: 38px;
  border-top: 1px solid #333333;
  border-bottom: 1px solid #333333;
}

nav#mainmenu li:hover ul li:first-child{
  border-top: 0;
}
nav#mainmenu li:hover ul li:last-child{
  border-bottom: 0;
}
nav#mainmenu li:hover ul li:last-child a{
  border-radius: 0 0 3px 3px;
}

/*
nav#mainmenu ul li a {
	width: 100px;		/*メニューの幅*/
	font-size: 11px;
	/*width: 213px;*/		/*メニューの幅*/
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.7) url(../images/arrow1.png) no-repeat 10px center;/*左のカンマ区切りの4つの数値は、左3つはRGBカラーでの色指定で4つめは透明度(0.7＝70％)。背景画像の読み込み、リピートしない、左から10px、上下中央に配置。*/
	border: 1px solid #5f5f5f;	/*枠線の幅、線種、色*/
	border-radius: 5px;			/*角丸のサイズ*/
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*同上*/
	margin-bottom: 1em;			/*メニュー間のスペース*/
	padding: 5px 0px 5px 35px;	/*左から、上、右、下、左への余白*/
}
*/

/*マウスオン時の設定*/
/*
nav#mainmenu ul li a:hover {
	background: #000 url(../images/arrow1.png) no-repeat 12px center;
	border: 1px solid #818181;
}
*/
/*フッター設定
---------------------------------------------------------------------------*/
footer {
	clear: both;
	text-align: center;
	padding-top: 15px;
	padding-bottom: 15px;
}
footer .pr {
	display: block;
	font-size: 80%;
}
footer a {
	text-decoration: none;
}

/*collection内の各ブロック
---------------------------------------------------------------------------*/
/*各ボックスの設定*/
#main section.list article {
	border: 1px solid #5f5f5f;	/*枠線の幅、線種、色*/
	border-radius: 6px;			/*角丸のサイズ*/
	margin-bottom: 1em;			/*ブロック間のスペース*/
	padding: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #000);	/*同上*/
	background-image: linear-gradient(#222, #000);			/*同上*/
}
/*ボックス内の段落タグ設定*/
#main section.list article p {
	padding: 10px;	/*ボックス内の余白*/
//	padding: 0px;
//	margin-left: 220px;	/*左の写真とのバランスをとって設定*/
}
/*ボックス内の写真設定*/
#main section.list article figure img {
	float: left;			/*画像を左へ回り込み*/
	background-color: #000;	/*画像の背景色。ここでは枠線と画像の間の色になります。*/
	padding: 5px;			/*余白。ここに上の行で設定した背景色が出ます。*/
	margin-left: 20px;
	margin-right: 20px;
	border: 1px solid #CCC;	/*枠線の幅、線種、色*/
	vertical-align: bottom;
}
/*ボックス内のh1タグ設定*/
#main section.list article h1 {
	background: none;
	border-radius: 0;
	border: none;
	border-bottom: 1px solid #FFF;	/*下線の幅、線種、色*/
	padding: 0px 0px 0px 5px;			/*左から、上、右、下、左への余白*/
	font-size: 100%;
	margin-bottom: 0.5em;
}
/*リンク設定*/
#main section.list article a {
	padding: 10px;	/*ボックス内の余白*/
	text-decoration: none;
	display: block;
	overflow: hidden;
	-webkit-transition: 0.5s;	/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
	transition: 0.5s;			/*マウスオン時の移り変わるまでの時間設定。0.5秒。*/
}
#main section.list article a:hover {
	background-color: #000;	/*マウスオン時のボックス色*/
	color: #FFF;
}

/*Presslist*/
#main section.list #press-block {
	border: 1px solid #5f5f5f;	/*枠線の幅、線種、色*/
	border-radius: 6px;			/*角丸のサイズ*/
	margin-bottom: 1em;			/*ブロック間のスペース*/
	padding: 10px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #000);	/*同上*/
	background-image: linear-gradient(#222, #000);			/*同上*/
}

#main section.list #press-block .title{
	border-bottom: #878787 solid 1px;
	margin-bottom: 20px;
}
#main section.list #press-block .swipebox{
	overflow:hidden;
	margin-bottom: 5px;
}
#main section.list #press-block .swipebox ul li{
	float:left;
	width:165px;
	height:170px;
	margin-right:9px;
	margin-bottom:15px
}

/*Shoplist*/
#main section.list #shop-block {
	border: 1px solid #5f5f5f;	/*枠線の幅、線種、色*/
	border-radius: 6px;			/*角丸のサイズ*/
	margin-bottom: 1em;			/*ブロック間のスペース*/
	padding: 40px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #000);	/*同上*/
	background-image: linear-gradient(#222, #000);			/*同上*/
}
#main section.list #shop-block .shopListBlock{
	margin-bottom: 40px;
}
#main section.list #shop-block .shopListBlock .area1{
	font-size: 16px;
	font-weight: bold;
}

/*コレクション*/
#collection_top{
	clear: both;
	margin-bottom: 30px;
	padding: 0;
	width:100%;
}
#collection_top h2{
	float:left;
	width:48%;
}
#collection_top p{
	float:right;
	width:48%;
}
#collection_detail{
	clear: both;
	margin: 0;
	padding: 0;
	width: 100%;
}
#collection_detail ul{
	list-style-type: none;
	margin: 0;
	padding: 0;
}
#collection_detail li{
	float: left;
	width: 33.1%;
	height: 570px;
	background-color: #101010;
//	background-color: #000000;
	border: 1px solid #5f5f5f;
	border-radius: 6px;
	margin-bottom: 1em;
	margin: 0;
	padding: 0;
}
#collection_detail a.mainimg{  
}
#collection_detail a{  
	float: left;
	display:block;
	padding: 0.5em 0;
	color: white;
}  
#collection_detail a:hover{
	color: white;
}
/*サイトマップ*/
#main section.list #sitemap-block {
	border: 1px solid #5f5f5f;	/*枠線の幅、線種、色*/
	border-radius: 6px;			/*角丸のサイズ*/
	margin-bottom: 1em;			/*ブロック間のスペース*/
	padding: 40px;
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#000));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #000);	/*同上*/
	background-image: linear-gradient(#222, #000);			/*同上*/
}
#main section.list #sitemap-block a{
	text-decoration:none;
}

#main section.list #sitemap-block ul{
	list-style-type: square;
	margin: 0;
	padding: 0;
}
#main section.list #sitemap-block ul li ul{
	margin-left:10px;
}

/*トップページ内「更新情報・お知らせ」ブロック
---------------------------------------------------------------------------*/
/*ブロック全体の設定*/
#new dl{
	overflow: auto;	/*高さ指定を超えるとiframe風にスクロールが出る設定。全部表示させたいならこの行と下のheightの行を削除。*/
	height: 150px;
	margin: 5px 10px 0px;
}
/*日付設定*/
#new dt {
	font-weight: bold;	/*太字にする設定。標準がいいならこの行削除。*/
	float: left;
	width: 8em;
}
/*記事設定*/
#new dd {
	border-bottom: 1px solid #333;	/*下線の幅、線種、色。*/
	padding-left: 8em;
}
#new dd img {
	vertical-align: middle;
}

/*テーブル１
---------------------------------------------------------------------------*/
.ta1 {
	width: 100%;
}
.ta1, .ta1 td, .ta1 th{
	border: 1px solid #c9c9c9;	/*テーブルの枠線の幅、線種、色*/
}
/*テーブル内の右側*/
.ta1 td{
	padding: 10px;
}
/*テーブル内の左側の見出し部分*/
.ta1 th{
	width: 200px;	/*幅*/
	padding: 10px;
	text-align: center;
	background: #111;	/*背景色*/
}
/*テーブル１行目に入った見出し部分*/
.ta1 th.tamidashi{
	width: auto;
	text-align: left;
	background: #333;	/*背景色*/
}
/*テーブルのキャプション設定*/
.ta1 caption{
	padding: 10px;
	border-top: 1px solid #c9c9c9;		/*上側の線の幅、線種、色*/
	border-right: 1px solid #c9c9c9;	/*右側の線の幅、線種、色*/
	border-left: 1px solid #c9c9c9;		/*左側の線の幅、線種、色*/
	text-align: left;
	font-weight: bold;	/*文字を太字にする設定*/
	background-color: #222;	/*背景色（古いブラウザだとここの色のみが出ます）*/
	background-image: -webkit-gradient(linear, left top, left bottom, from(#222), to(#111));	/*グラデーション*/
	background-image: -webkit-linear-gradient(#222, #111);	/*同上*/
	background-image: linear-gradient(#222, #111);			/*同上*/
}

/*PAGE TOP設定
---------------------------------------------------------------------------*/
#pagetop {
	clear: both;
	text-align: right;
}
#pagetop a {
	text-decoration: none;
	text-align: center;
	display: inline-block;
	width: 14em;			/*ボックスの幅*/
	font-size: 10px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
	border-radius: 10px;	/*角丸のサイズ*/
	border: 1px solid #c9c9c9;	/*枠線の幅、線種、色*/
}
#pagetop a:hover {
	border: 1px solid #818181;	/*マウスオン時の枠線の幅、線種、色*/
}

/*PAGE BOTTOM設定
---------------------------------------------------------------------------*/
#pagebottom {
	clear: both;
	border-bottom: 1px solid #818181;	/*マウスオン時の枠線の幅、線種、色*/
	text-align: left;
}
#pagebottom a {
	text-decoration: none;
	text-align: center;
	display: inline-block;
	font-size: 10px;		/*文字サイズ*/
	letter-spacing: 0.1em;	/*文字間隔。少し広げる設定。*/
}
#pagebottom a:hover {
	text-decoration: underline;
}

/*その他
---------------------------------------------------------------------------*/
.look {
	background: #e8e8e8;
	color: #818181;
}
.mb1em {
	margin-bottom: 1em;
}
.clear {
	clear: both;
}
ul.disc {
	padding: 0em 25px 1em;
	list-style: disc;
}
.color1 {
	color: #FFFF00;
}
.pr {
	font-size: 10px;
}
.btn {
	font-size: 13px;
}
.wl {
	width: 96%;
}
.ws {
	width: 50%;
}
.c {
	text-align: center;
}
figcaption {
	font-size: 11px;
}
.mini1 {
	font-size: 12px;
	line-height: 1.6;
}

.clearfix:after {
content: ".";
display: block;
height: 0;
clear: both;
visibility: hidden;
}

.clearfix {
display: inline-block;
}
