@charset "utf-8";
/* CSS Document */


/*　トップの帯び
-------------------------- */

.charged {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 99999;
	background: #f6f6f6;
	padding: 10px 0;
	font-size: 11px;
	border-bottom: solid 1px #e9e9e9;
	}

.charged .wrapper {
	width: 1060px;
	margin: 0 auto;
	}

.charged p {
	float: left;
	text-decoration: underline;
	position:  relative;
	top: 3px;
	}

.charged p:hover {
	position: relative;
	top: 4px;
	left: 1px;
}

.charged .btn {
	float: right;
	}

.charged ul {
	float: left;
}

.charged ul li {
	display: inline-block;
}

.charged ul:nth-of-type(1) {
	margin: 0 15px 0 0;
	position:  relative;
	top: 3px;
}

.charged ul:nth-of-type(1) li {
	margin: 0 15px 0 0;
}

.charged ul:nth-of-type(1) li:hover {
	position: relative;
	top: 1px;
	left; 1px;
}

.charged ul:nth-of-type(1) li a:before {
	content: "▶";
	margin: 0 3px 0 0;
}

.charged ul:nth-of-type(2) li {
	margin: 0 7px 0 0;
	opacity: 1;
	transition: all .2s ease;
}

.charged ul:nth-of-type(2) li:hover {
	opacity: 0.4;
	transition: all .2s ease;
}

.charged ul:nth-of-type(2) li img {
	width: 18px;
}

.charged ul li:last-of-type {
	margin: 0;
}

/*======================================================================
　ヘッダー
======================================================================== */

body > header {
	width: 1060px;
	margin: 65px auto 0;
	}

/*----------------------------------------------
　ロゴ
------------------------------------------------ */	

body > header .wrapper_fix {
	display: inline-block;
}
	
body > header h1 {
	width: 220px;
	margin: 0 30px 0 0;
	}

/*----------------------------------------------
　グローバルナビ
------------------------------------------------ */	

body > header .wrapper_dummy {
	display: inline-block;
	vertical-align:  bottom;
}

body > header .gNav {
	width: 490px;
	display: inline-block;
	}


body > header .gNav li {
	margin: 0 16px 0 0;
	font-size: 12px;
	float: left;
	position: relative;
	color: #444;
	}

/*　ホバー
-------------------------- */

body > header .gNav li:after {
	content: "";
	position: absolute;
	top: 130%;
	width: 100%;
	height: 2px;
	background: #e0ac43;
	transform: scaleX(0);
	transition: all .2s ease;
	}
	
body > header .gNav li:hover:after {
	transform: scaleX(1);
	transition: all .2s ease;
	}
	
	
/*----------------------------------------------
　検索
------------------------------------------------ */	

body > header .top_search {
	display: inline-block;
	vertical-align: bottom;
}

body > header .top_search input[type="text"] {
	border-top: solid 1px #aaa;
	border-left: solid 1px #aaa;
	border-bottom: solid 1px #aaa;
	padding: 5px;
	font-size: 13px;
	width: 235px;
	}

body > header .top_search input[type="submit"] {
	color: white;
	font-size: 13px;
	padding: 6px 14px 6px 0;
	background: #423f3c url(../images/search-white.png) no-repeat;
	background-position: 50px 11px;
	background-size: 12px;
	width: 73px;
	opacity: 1;
	transition: all .2s ease;
	}

body > header .top_search input[type="submit"]:hover {
	opacity: 0.8;
	transition: all .2s ease;
	}



/*======================================================================
　ナビゲーション
======================================================================== */

nav {
	width: 100%;
	}


/*----------------------------------------------
　ナビ
------------------------------------------------ */	

nav > ul {
	position: relative;
	width:  1060px;
	margin: 32px auto;
	}

nav > ul > li {
	width: 106px;
	float: left;
	}
	
nav > ul > li:last-of-type {
	border-right: solid 1px #aaa;
	}

nav > ul > li > a {
	border-left: solid 1px #aaa;
	opacity: 1;
	transition: all .2s ease;
	}

nav > ul > li:hover > a {
	opacity: 0.4;
	transition: all .2s ease;
}

nav > ul > li > a > figure {
	width: 25px;
	margin: 0 auto 7px;
	}	


nav > ul > li > a > p {
	font-size: 11px;
	text-align: center;
	}

/*----------------------------------------------
　メガメニュー
------------------------------------------------ */	

nav .contents {
	padding: 25px;
	position: absolute;
	top: 150%;
	left: 50%;
	transform: translateX(-50%);
	width: 1040px;
	background: #fff;
	border: solid 1px #aaa;
	z-index: 999;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	}


/*　開閉
-------------------------- */

nav > ul > li:hover > a ~ .contents {
	opacity: 1;
	visibility: visible;
	transition: all .3s ease;
	}


/*　吹き出し
-------------------------- */

nav .contents:after,
nav .contents:before {
	content: "";
	position: absolute;
	border: solid 10px transparent;
	top: -20px;
}

nav .contents:after {
	border-bottom: solid 10px #fff;
	top: -19px
}

nav .contents:before {
	border-bottom: solid 10px #aaa;
}


/* 変数 */
:root {
	--fukidasi: 32px;
	--fukidasiplus: 106px;
	}


/* 1番目 */
nav li:nth-of-type(1) .contents:after,
nav li:nth-of-type(1) .contents:before {
	left: var(--fukidasi);	
	}


nav li:nth-of-type(2) .contents:after,
nav li:nth-of-type(2) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 1) ;	
	}
	
/* 3番目 */
nav li:nth-of-type(3) .contents:after,
nav li:nth-of-type(3) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 2) ;	
	}
	
/* 4番目 */
nav li:nth-of-type(4) .contents:after,
nav li:nth-of-type(4) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 3) ;	
	}
	
/* 5番目 */
nav li:nth-of-type(5) .contents:after,
nav li:nth-of-type(5) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 4) ;	
	}
	
/* 6番目 */
nav li:nth-of-type(6) .contents:after,
nav li:nth-of-type(6) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 5) ;	
	}
	
/* 7番目 */
nav li:nth-of-type(7) .contents:after,
nav li:nth-of-type(7) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 6) ;	
	}
	
/* 8番目 */
nav li:nth-of-type(8) .contents:after,
nav li:nth-of-type(8) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 7) ;	
	}
	
/* 9番目 */
nav li:nth-of-type(9) .contents:after,
nav li:nth-of-type(9) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 8) ;	
	}
	
/* 10番目 */
nav li:nth-of-type(10) .contents:after,
nav li:nth-of-type(10) .contents:before {
	left: calc(var(--fukidasi) + var(--fukidasiplus) * 9) ;	
	}



/*　カテゴリ
-------------------------- */


nav .contents ul {
	width: 800px;
	float: left;
	}

nav .contents ul li {
	width: 150px;
	display: inline-block;
	font-size: 12px;
	font-weight: 400;
	margin: 0 45px 25px 0;
	border-bottom: solid 1px #e9e9e9;
	position: relative;
}

nav .contents ul li a {
	padding: 0 0 15px;
}

nav .contents ul li:before {
	content: "";
	position: absolute;
	top: 31%;
	transform: translateY(-50%);
	right: 0;
	width: 5px;
	height: 8px;
	background: url(../../common_new/images/prev_black.png) no-repeat;
	background-size: contain;
}


/*　ホバー */

nav .contents ul li:after {
	content: "";
	position: absolute;
	top: 100%;
	width: 0;
	height: 1px;
	background: #e0ac43;
	transition: all .3s ease;
	}
	
nav .contents ul li:hover:after {
	width: 100%;
	transition: all .3s ease;
	}



/*　レコメンド
-------------------------- */

nav .contents .recommend {
	width: 150px;
	float: right;
}

nav .contents .recommend .ttl {
	font-size: 14px;
	font-weight: 700;
	margin: 0 0 20px;
	text-align: center;
}

nav .contents .recommend figure {
	margin: 0 0 10px;
	opacity: 1;
	transition: all .2s ease;
}

nav .contents .recommend:hover figure {
	opacity: 0.8;
	transition: all .2s ease;
} 

nav .contents .recommend .txt {
	font-size: 11px;
	letter-spacing: 1px;
	text-align: center;
	line-height: 18px;
}


/*======================================================================
　スライダー
======================================================================== */

.slider {
	width: 1060px;
	margin: 0 auto 60px;
	position: relative;
	}

.slider ul li a {
	position: relative;
}

.slider ul li a:after {
	content: "";
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	box-shadow: none;
	transition: all .4s ease;
}

.slider ul li a:hover:after {
	box-shadow: 0 0 0 8px rgba(0,0,0,0.3) inset;
	transition: all .4s ease;
}





/*----------------------------------------------
　bx設定
------------------------------------------------ */	


.slider .bx-wrapper .bx-controls-direction a {
	top: 50%;
	transform: translateY(-50%);
	width: 50px;
	margin-top: 0;
	height: 70px;
	}


.slider .bx-wrapper .bx-next {
	background: url(../../common_new/images/next.png) no-repeat;
	right: -85px;
	transition: all .1s ease;
	}

.slider .bx-wrapper .bx-prev {
	background: url(../../common_new/images/prev.png) no-repeat;
	left: -80px;
	transition: all .1s ease;
	}



/*======================================================================
　重要なお知らせ
======================================================================== */


.information {
	width: 1060px;
	/* margin: 0 auto 30px; *//*通常*/
	margin: 0 auto 15px; /*システム入れ替え*/
	padding: 15px 40px 15px 15px;
	border: solid 1px #dcdcdc;
	line-height: 22px;
	position: relative;
}

.information p {
	/* background: #f6f6f6; */
	text-align: center;
}

.information p span {
	color: #c75050;
	font-weight: 500;
}
/* 
.information p span:before {
	content: "［";
	margin: 0 5px 0 0;
}

.information p span:after {
	content: "］";
	margin: 0 0 0 5px;
}
*/
.information p a {
	font-size: 13px;
	font-weight: normal;
	margin: 10px;
	transition: 0.5s;
}

.information p a:hover {
	background: #eae9e9;
}


.information .info_lft {
	width: 415px;
	height: 23px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	text-align: center;
	}
	
.information .info_lft .ttl {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}

.information .info_lft .sub {
	font-size: 12px;
	font-weight: 500;
	}
	
.information .info_rgt {
	/*width: 500px;*/
	width: 600px;
	float: right;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	}
	
.information .info_rgt span {
    color: #C94F4C;
    font-weight: 500;
  }

.information .info_rgt a {
	text-decoration: underline;
  display: inline;
  vertical-align: top;
  }

.information .info_rgt p {
  text-align: center;
 }
/*======================================================================
　重要なお知らせ 2つ目
======================================================================== */



.information .info2_lft {
	/*width: 315px;*/
	width: 405px;
	height: 45px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	text-align: center;
	}
	
.information .info2_lft .ttl {
	font-size: 15px;
	font-weight: 500;
	letter-spacing: 1px;
}

.information .info2_lft .sub {
	font-size: 12px;
	font-weight: 500;
	}
	
.information .info2_rgt {
	/* width: 940px; */
	float: right;
	font-size: 12px;
	font-weight: 400;
	line-height: 18px;
	}
	
.information .info2_rgt span {
    color: #C94F4C;
    font-weight: 500;
  }

.information .info2_rgt a {
	text-decoration: underline;
  display: inline;
  vertical-align: top;
  }

/*======================================================================
　共通バナー
======================================================================== */

.common_bnr {
	width: 1060px;
	margin: 0 auto;
	}
	
.common_bnr ul li {
	width: 346px;
	float: left;
	margin: 0 11px 0 0;
	opacity: 1;
	transition: all .2s ease;
	}

.common_bnr ul li:last-of-type {
	margin: 0;
	}

.common_bnr ul li:hover {
	opacity: 0.8;
	transition: all .2s ease;
	}

.common_bnr ul li figure {
	margin: 0 0 15px;
}

.common_bnr ul li .ttl {
	font-size: 13px;
	margin: 0 0 12px;
	font-weight: 700;
}

.common_bnr ul li .txt {
	font-size: 12px;
	line-height: 18px;
	font-weight: 400;
	color: #444;
}




/*======================================================================
　サイドナビ
======================================================================== */


aside {
	width: 260px;
	float: left;
	}
	
	
/*----------------------------------------------
　検索
------------------------------------------------ */	

.side_search {
	background: #f6f6f6;
	border: solid 1px #e9e9e9;
	margin: 0 0 15px;
	padding: 30px 30px 20px 30px;
}

.side_search form {
	position: relative;
	margin: 0 0 20px;
}


.side_search input[type="text"] {
	border: solid 1px #aaa;
	padding: 5px 8px;
	font-size: 13px;
	width: 100%;
	background: #fff;
	}

.side_search input[type="submit"] {
	background: url(../images/search-black.png) no-repeat;
	background-size: contain;
	width: 14px;
	height: 14px;
	position: absolute;
	top: 8px;
	right: 10px;
	}

.side_search input[type="submit"]:hover {
	top: 9px;
	right: 9px;
	}


/*　ホットワード
-------------------------- */

.side_search .hotword {
	font-size: 12px;
	}

.side_search .hotword:before {
	content: "HOT WORD";
	color: #fff;
	padding: 5px 10px;
	background: #423f3c;
	display: inline-block;
	font-size: 10px;
	font-weight: 200;
	margin: 0 3px 10px 0;
	}


.side_search .hotword a {
	display: inline-block;
	margin: 0 2px 13px 0;
	width: auto;
	}


.side_search .hotword a:hover {
	text-decoration: underline;
	}


/*----------------------------------------------
　あす楽
------------------------------------------------ */	

.ashuraku {
	position: relative;
	background: url(../images/asuraku.png) no-repeat;
	border: solid 1px #dcdcdc;
	background-position: center 25px;
	padding: 112px 25px 25px 25px;
	text-align: center;
	margin: 0 0 15px;
	}
	

.ashuraku form {
	margin: 0 0 15px
}


.ashuraku .time {
	font-size: 20px;
	font-weight: 700;
	letter-spacing: 0;
	color: #b92e2e;
	width: 23px;
	vertical-align: -1px;
	}

.ashuraku .time + span {
	font-size: 18px;
}


.ashuraku .day {
	font-size: 42px;
	font-weight: 900;
	letter-spacing: 0;
	color: #b92e2e;
	display: inline;
	width: 50px;
	height: 50px;
	padding: 0 0 12px;
	vertical-align: -1px;
	text-align: center;
	}

.ashuraku .day + span {
	font-size: 26px;
	color: #b92e2e;
	font-weight: 700; 
}

.ashuraku .day + span ~ span {
	font-size: 20px;
}

.ashuraku p {
	font-size: 12px;
	color: #666;
	line-height: 18px;
}


/*----------------------------------------------
　バナー
------------------------------------------------ */	

.bnr li {
	margin: 0 0 15px;
	position: relative;
	opacity: 1;
	transition: all .2s ease;
	}

.bnr li:hover {
	opacity: 0.8;
	transition: all .2s ease;
	} 

/*----------------------------------------------
　アコーディオンメニュー
------------------------------------------------ */	

.side_nav {
	background: #f6f6f6;
	}


.side_nav .category {
	padding: 15px 15px 0 15px;
	}

.side_nav .category:last-of-type {
	padding: 15px;
	}


/*　デザイン
-------------------------- */


/* タイトル */

.side_nav .category .ttl {
	margin: 0 0 15px;
	text-align: center;
	background: #f5bd4e;
	color: #fff;
	font-size: 13px;
	font-weight: 500;
	position: relative;
	width: 270px;
	left: -20px;
	opacity: 1;
	transition: all .2s ease;
	}

.side_nav .category .ttl a {
	padding: 12px 0;
}

.side_nav .category .ttl:hover {
	opacity: 0.8;
	transition: all .2s ease;
}

.side_nav .category .ttl:before,
.side_nav .category .ttl:after {
	content: "";
	position: absolute;
	bottom: -5px;
	border-style: solid;
	}

.side_nav .category .ttl:before {
	left: 0;
	border-width: 0 5px 5px 0;
	border-color: transparent #d6a950 transparent transparent;
	}
	
.side_nav .category .ttl:after {
	right: 0;
	border-width: 5px 5px 0 0;
	border-color: #d6a950 transparent transparent transparent;
	}


/* タイトル */

.side_nav .category .ttl.red {
	background: #c75050;
	}

.side_nav .category .ttl.red:before {
	left: 0;
	border-width: 0 5px 5px 0;
	border-color: transparent #9c4747 transparent transparent;
	}
	
.side_nav .category .ttl.red:after {
	right: 0;
	border-width: 5px 5px 0 0;
	border-color: #9c4747 transparent transparent transparent;
	}





/* 階層① */

.side_nav .category > ul > li {
	margin: 0 0 3px;
	background: #fff;
	font-size: 12px;
	position: relative;
	}

.side_nav .category > ul > li > label,
.side_nav .category > ul > li > a {
	padding: 18px 18px 18px 60px;
	display: block;
	position: relative;
	top: 0;
	left: 0;
}


.side_nav .category > ul > li label:hover,
.side_nav .category > ul > li a:hover {
	position: relative;
	top: 1px;
	left 1px;
}



.side_nav .category > ul > li > label img,
.side_nav .category > ul > li > a img {
	width: 30px;
	position: absolute;
	top: 11px;
	left: 16px;
}

.side_nav .category > ul > li > a:after,
.side_nav .category > ul > li > label:after  {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	width: 4px;
	height: 4px;
	border-top: solid 2px #444;
	border-right: solid 2px #444;
	transform: translateY(-50%) rotate(45deg);
	}

.side_nav .category > ul > li > label:after {
	right: 18px;
	transform: rotate(135deg);
	}



/* 階層② */

.side_nav .category > ul > li > ul > li {
	font-size: 11px;
	position: relative;
	}

.side_nav .category > ul > li > ul > li:after {
	content: "";
	position: absolute;
	top: 50%;
	right: 18px;
	width: 3px;
	height: 3px;
	border-top: solid 1px #191919;
	border-right: solid 1px #191919;
	transform: translateY(-50%) rotate(45deg);
	}




	
/*　開閉
-------------------------- */
	
.side_nav .category ul > li > ul > li {
	height: 0;
	border: none;
	opacity: 0;
	visibility: hidden;
	transition: all .3s ease;
	}
	
.side_nav .category ul > li > ul > li a {
	padding: 0 0 0 16px;
	transition: all .3s ease;
}

.side_nav .category ul > li input + label {
	border-top: solid 3px #fff;
	border-left: solid 3px #fff;
	border-right: solid 3px #fff;
	transition: all .3s ease;
}

.side_nav .category ul > li input:checked + label {
	border-top: solid 3px #808080;
	border-left: solid 3px #808080;
	border-right: solid 3px #808080;
	transition: all .3s ease;
	border-bottom: dotted 1px #ccc;
}

.side_nav .category ul > li input ~ ul {
	border-bottom: solid 3px #fff;
	border-left: solid 3px #fff;
	border-right: solid 3px #fff;
	transition: all .3s ease;
}

.side_nav .category ul > li input:checked ~ ul {
	border-bottom: solid 3px #808080;
	border-left: solid 3px #808080;
	border-right: solid 3px #808080;
	transition: all .3s ease;
}

.side_nav .category ul > li input:checked ~ ul > li {
	height: 44px;
	border-top : dotted 1px #ccc;
	opacity: 1;
	visibility: visible;
	transition: all .3s ease;
	}

.side_nav .category ul > li input:checked ~ ul > li:first-of-type {
	border: none;
}

.side_nav .category ul > li input:checked ~ ul > li a {
	padding: 16px;
	transition: all .3s ease;
}

/*----------------------------------------------
　SNS
------------------------------------------------ */	

.side_sns {
	background: #f6f6f6;
	padding: 15px;
	}
	
.side_sns .wrapper {
	background: #fff;
	padding: 20px;
	}
	
.side_sns .ttl {
	text-align: center;


	font-weight: 700;
	margin: 0 0 15px;
	}


.side_sns ul li a {
	background: #f6f6f6;
	padding: 18px 0 18px 56px;
	margin: 0 0 15px;
	font-size: 12px;
	font-weight: 700;
	position: relative;
	border-radius: 5px;
	opacity: 1;
	transition: all .2s ease;
	}

.side_sns ul li a:hover {
	opacity: 0.8;
	transition: all .2s ease;
}


.side_sns ul li img {
	width: 25px;
	display: block;
	position: absolute;
	top: 12px;
	left: 16px;
	}

/*----------------------------------------------
　カレンダー
------------------------------------------------ */	

.side_cal {
	background: #f6f6f6;
	padding: 15px;
}

.side_cal .wrapper {
	background: #fff;
	padding: 25px;
	}

.side_cal .ttl {
	text-align: center;
	font-weight: 700;
	margin: 0 0 25px;
}


.side_cal .calbase_rakuten {
	width: 100%;
	}
	
	
.side_cal .caltitle_rakuten {
    font-size: 14px;
    font-weight: bold;
    text-align: center;
    margin: 0 0 20px;
		}

.side_cal .calframe_rakuten {
	width: 180px;
	font-size: 12px;
	font-weight: 500;
	margin: 0 0 20px;
	}

.side_cal .weektitle_rakuten {
	border-top: solid 1px #e9e9e9;
	}

.side_cal .calframe_rakuten th {
	font-size: 12px;
	font-weight: 500;
	padding: 0 0 10px;
	text-align: left;
	}

.side_cal .calframe_rakuten td {
	border-bottom: solid 1px #e9e9e9;
	border-left: dotted 1px #ddd;
	text-align: center;
	vertical-align: middle;
	padding: 7px 0;
	}

.side_cal .calframe_rakuten td:last-of-type {
	border-right: dotted 1px #ddd;
}

.side_cal .event_rakuten {
	font-size: 12px;
	}

/* 休業日 */
.side_cal td.event1day_rakuten {
	background: #ffd8d8;
	color: #3c3c3c !important;
	}

.side_cal font.event1day_rakuten {
	color: #ffd8d8;
	}

/* 配送のみ */
.side_cal td.event3day_rakuten {
	background: #9ec4ff;
	color: #3c3c3c !important;
	}

.side_cal font.event3day_rakuten {
	color: #9ec4ff;
	}







/*======================================================================
　アーティクル
======================================================================== */

article {
	width: 750px;
	float: right;
	}
	
article.index section {
	margin: 0 0 100px;
	}

article.index section:last-of-type {
	margin: 0;
}


/*　大見出し
-------------------------- */

article.index section h1 {
	font-size: 27px;
	font-weight: 900;
	margin: 6px 0 40px;
	padding: 0 0 12px;
	letter-spacing: 3px;
	border-bottom: solid 1px #191919;
	}

article.index section h1 span {
	font-size: 15px;
	letter-spacing: 3px;
	font-weight: 700;
	}

article.index section h1 span:before {
	content: "/";
	margin: 0 20px;
	}
		
article.index section h1:before {
	content: "";
	padding: 0px 42px 0 0;
	margin: 0 7px 0 0;
	}

article.index section:nth-of-type(1) h1:before {
	background: url(../images/01.png) no-repeat;
	background-position: center;
	background-size: contain;
	}

article.index section:nth-of-type(2) h1:before {
	background: url(../images/02.png) no-repeat;
	background-position: center;
	background-size: contain;
	}
	
article.index section:nth-of-type(3) h1:before {
	background: url(../images/03.png) no-repeat;
	background-position: center;
	background-size: contain;
	}

article.index section:nth-of-type(4) h1:before {
	background: url(../images/04.png) no-repeat;
	background-position: center;
	background-size: contain;
	}	
	
article.index section:nth-of-type(5) h1:before {
	background: url(../images/05.png) no-repeat;
	background-position: center;
	background-size: contain;
	}	
	
	
/*----------------------------------------------
　カテゴリ
------------------------------------------------ */	



/*　コンテンツ
-------------------------- */

.category .content:nth-of-type(n+2) {
	margin: 45px 0 0;
	border-top: dotted 1px #ccc;
	padding: 45px 0 0;
	}


/*　イメージ
-------------------------- */

.category .content figure {
	width: 320px;
	float: left;
	opacity: 1;
	transition: all .2s ease;
	}

.category .content figure:hover {
	opacity: 0.8;
	transition: all .2s ease;
	}


/*　コンテンツタイトル

-------------------------- */

.category .content .rgt {
	width: 405px;
	height: 320px;
	float: right;
	position: relative;
	}

.category .content .rgt h2 {
	font-size: 15px;
	font-weight: 500;
	padding: 5px 0 15px 42px;
	margin: 0 0 25px;
	border-bottom: solid 1px #aaa;
	position: relative;
	}

.category .content .rgt h2 a {
	font-size: 12px;
	font-weight: 400;
	color: #fff;
	padding: 5px 12px 8px 12px;
	width: auto;
	height: auto;
	display: inline-block;
	background: #f5bd4e;
	text-align: center;
	position: absolute;
	top: 0;
	right: 0;
	opacity: 1;
	transition: all .2s ease;
	}


.category .content .rgt h2 a:after {
	content: "";
	background: url(../../common_new/images/prev_white.png) no-repeat;
	background-size: contain;
	background-position: center 5px;
	padding: 0 0 0 7px;
	margin: 0 0 0 5px;
	}

.category .content .rgt h2 a:hover {
	opacity: 0.6;
	transition: all .2s ease;
	}


.category .content .rgt h2:before {
	content: "";
	width: 26px;
	height: 26px;
	position: absolute;
	top: 0;
	left: 0;
	}


/* アイコン */

.category .content:nth-of-type(1) .rgt h2:before {
	background: url(../images/gNav-table.png) no-repeat;
	background-size: contain;
	}

.category .content:nth-of-type(2) .rgt h2:before {
	background: url(../images/gNav-storage.png) no-repeat;
	background-size: contain;
	}


.category .content:nth-of-type(3) .rgt h2:before {
	background: url(../images/gNav-sofa.png) no-repeat;
	background-size: contain;
	width: 30px;
	height: 30px;
	}

.category .content:nth-of-type(4) .rgt h2:before {
	background: url(../images/gNav-light.png) no-repeat;
	background-size: contain;
	}
.category .content:nth-of-type(5) .rgt h2:before {
	background: url(../images/gNav-goods.png) no-repeat;
	background-size: contain;
	}




/*　カテゴリ部分
-------------------------- */

.category .content .rgt > ul > li {
	width: 45%;
	font-size: 13px;
	margin: 0 0 20px;
	letter-spacing: 1px;
	font-weight: 500;
	color: #444;
}

.category .content .rgt > ul > li:hover {
	position: relative;
	top: 1px;
	left: 1px;
	}

.category .content .rgt > ul > li:nth-child(odd) {
	float: left;
	}

.category .content .rgt > ul > li:nth-child(even) {
	float: right;
}

.category .content .rgt > ul > li a:after {
	content:"▶";
	font-size: 10px;
	float: right;
	position: relative;
	top: 2px;
}


/*　ランクカルーセル
-------------------------- */

.category .content .rgt .carousel {
	position: absolute;
	bottom: 0;
}

.category .content .rgt .carousel ul li {
	padding: 0 0 37px;
	width: 96px !important;
}


.category .content .rgt .carousel ul li:before {
	content: "";
	margin: 0 auto 10px;
	display: inline-block;
	width: 100%;
	height: 18px;
	vertical-align: middle;
}

.category .content .rgt .carousel ul li img {
	margin: 0 0 3px;
	opacity: 1;
	transition: all .2s ease;
	}

.category .content .rgt .carousel ul li:hover img {
	opacity: 0.8;
	transition: all .2s ease;

	}


.category .content .rgt .carousel ul li p {
	font-size: 10px;
	text-align: center;
	line-height: 16px;
	width: 130px;
	position: absolute;
	bottom:  0;
	left: 50%;
	transform: translateX(-50%);
}


/* 順位 */

.category .content .rgt .carousel ul li:nth-of-type(1):before {
	background: url(../images/rank-no1.png) no-repeat;
	background-size: contain;
	background-position: center;
	}

.category .content .rgt .carousel ul li:nth-of-type(2):before {
	background: url(../images/rank-no2.png) no-repeat;
	background-size: contain;
	background-position: center;
	}

.category .content .rgt .carousel ul li:nth-of-type(3):before {
	background: url(../images/rank-no3.png) no-repeat;
	background-size: contain;
	background-position: center;
	}

.category .content .rgt .carousel ul li:nth-of-type(4):before {
	background: url(../images/rank-no4.png) no-repeat;
	background-size: contain;
	background-position: center;
	}

.category .content .rgt .carousel ul li:nth-of-type(5):before {
	background: url(../images/rank-no5.png) no-repeat;
	background-size: contain;
	background-position: center;
	}




/* bx設定 */

.category .content .rgt .carousel .bx-wrapper {
	max-width: 100% !important;
	margin: 0 !important;
	}

.category .content .rgt .carousel .bx-viewport {
	width: 79% !important;
	height: auto !important;
	margin: 0 auto;
}


.category .content .rgt .carousel .bx-wrapper .bx-controls-direction a {
	top: 50%;
	transform: translateY(-50%);
	width: 15px;
	margin-top: 0;
	height: 28px;
	}

.category .content .rgt .carousel .bx-wrapper .bx-next {
	background: url(../../common_new/images/next.png) no-repeat;
	background-size: contain;
	right: 0px;
	transition: all .1s ease;
	}

.category .content .rgt .carousel .bx-wrapper .bx-prev {
	background: url(../../common_new/images/prev.png) no-repeat;
	background-size: contain;
	left: 0;
	transition: all .1s ease;
	}


/*　逆転
-------------------------- */

.category .content:nth-of-type(even) figure {
	float: right;
	}

.category .content:nth-of-type(even) .rgt {
	float: left;
	}



/*----------------------------------------------
　新着アイテム
------------------------------------------------ */	

.newitem .wrapper {
	margin: 0 0 100px;
	position: relative;
}


/*　タイトル
-------------------------- */

.newitem h2 {
	font-size: 16px;
	font-weight: 500;
	margin: 0 0 25px;
	padding: 5px 0px;
	}

.newitem h2 > span {
	font-size: 14px;
	font-weight: 500;
	display: inline-block;
	float: right;
	padding: 3px 0 0;
}


.newitem h2:before {
	content: "";
	padding: 0 0 0 30px;
	margin: 0 14px 0 0;
	}

/* アイコン */

.newitem .wrapper:nth-of-type(1) h2:before {
	background: url(../images/gNav-table.png) no-repeat;
	background-position: center;
	background-size: contain;
	}

.newitem .wrapper:nth-of-type(2) h2:before {
	background: url(../images/gNav-light.png) no-repeat;
	background-position: center;
	background-size: contain;
	}

.newitem .wrapper:nth-of-type(3) h2:before {
	background: url(../images/gNav-goods.png) no-repeat;
	background-position: center;
	background-size: contain;
	}





/*　アイテム
-------------------------- */

.newitem ul > li > ul > li{
	width: 240px;
	float: left;
	margin: 0 15px 15px 0;
	position: relative;
}

.newitem ul > li > ul > li:nth-of-type(3n) {
	margin: 0 0 21px;
}

.newitem ul > li > ul > li .content {
	position: absolute;
	top: 18%;
	left: 0;
	right: 0;
	background: rgba(25, 25, 25, 0.7) url(../images/new_ttl.png) no-repeat;
	background-position: center 45px;
	background-size: 90px;
	padding: 96px 0 55px 0;
	text-align: center;
	font-size: 10px;
	font-weight: 100;
	color: #fff;
	}

.newitem ul > li > ul > li .content:after {
	content: "";
	width: 35px;
	height: 2px;
	background: #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	}

.newitem ul > li > ul > li .txt {
	font-size: 12px;
	margin: 7px 0 0;
	line-height: 18px;
}

/* 開閉 */



.newitem ul > li > ul > li .content {
	transform: scaleY(0.8);
	opacity: 0;

	transition: all .2s ease;
	}

.newitem ul > li > ul > li:hover .content {
	transform: scaleY(1);
	opacity: 1;
	transition: all .2s ease;
	}



/*　bx設定
-------------------------- */


/* もっとみる部分 */

.newitem .bx-wrapper .bx-controls-direction .bx-next {
  font-size: 12px;
  font-weight: 400;
  color: #f5bd4e;
  padding: 9px 0;
  width: 200px;
  background: #f5bd4e;
  text-align: center;
  text-indent: 0;
  opacity: 1;
  transition: all .2s ease;
  position: absolute;
  top: auto;
  bottom: -54px;
  right: 0;
 }


.newitem .bx-wrapper .bx-controls-direction .bx-next:before {
	color: #fff;
	position: absolute;
	top: 46%;
	transform: translateY(-50%);
	left: 20px;
	}


.newitem .wrapper:nth-of-type(1) .bx-wrapper .bx-controls-direction .bx-next:before {
	content: "家具の新着をもっと見る";
}

.newitem .wrapper:nth-of-type(2) .bx-wrapper .bx-controls-direction .bx-next:before {
	content: "照明の新着をもっと見る";
}

.newitem .wrapper:nth-of-type(3) .bx-wrapper .bx-controls-direction .bx-next:before {
	content: "雑貨の新着をもっと見る";
}


.newitem .bx-wrapper .bx-controls-direction .bx-next:after {
	content: "";
	background: url(../../common_new/images/prev_white.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 52%;
	transform:  translateY(-50%);
	right: 15px;
	width: 6px;
	height: 10px;
	}



.newitem .bx-wrapper .bx-controls-direction .bx-next:hover {
  opacity: 0.6;
  transition: all .2s ease;

}

/* ページャー */

.newitem .bx-wrapper .bx-pager,
.newitem .bx-wrapper .bx-controls-auto {
	bottom: -40px;
	}


/*----------------------------------------------
　おすすめアイテム
------------------------------------------------ */	


.recommend ul > li > ul > li {
	width: 360px;
	margin: 0 0 40px;
	float: left;
	position: relative;
	opacity: 1;
	transition: all .2s ease;
	}

.recommend ul > li > ul > li:hover {
	opacity: 0.8;
	transition: all .2s ease;
}

.recommend ul > li > ul > li:nth-of-type(2n) {
	float: right;
	}

.recommend ul > li > ul > li .ttl {
	font-size: 14px;
	padding: 26px 0 20px 95px;
	margin: 0 0 20px;
	border-bottom: solid 1px #aaa;
	position: relative;
	}

.recommend ul > li > ul > li .ttl:before {
	content: "";
	background: url(../images/pickup.png) no-repeat;
	background-size: contain;
	width: 80px;
	height: 28px;
	position: absolute;
	bottom: 10px;
	left: 2px;
	}

.recommend ul > li > ul > li .txt {
	font-size: 12px;
	font-weight: 400;
	line-height: 23px;
	color: #333;
	height: 90px;
	overflow: hidden;
	}


/*　bx設定
-------------------------- */


/* もっとみる部分 */

.recommend .bx-wrapper .bx-controls-direction .bx-next {
  font-size: 12px;
  font-weight: 400;
  color: #f3bd53;
  padding: 9px 0;
  width: 190px;
  background: #f3bd53;
  text-align: center;
  text-indent: 0;
  opacity: 1;
  transition: all .2s ease;
  position: absolute;
  top: 102%;
  right: 0;
 }


.recommend .bx-wrapper .bx-controls-direction .bx-next:before {
	content: "おすすめをもっと見る";
	color: #fff;
	position: absolute;
	top: 46%;
	transform: translateY(-50%);
	left: 20px;
	}

.recommend .bx-wrapper .bx-controls-direction .bx-next:after {
	content: "";
	background: url(../../common_new/images/prev_white.png) no-repeat;
	background-size: contain;
	position: absolute;
	top: 52%;
	transform:  translateY(-50%);
	right: 15px;
	width: 6px;
	height: 10px;
	}


.recommend .bx-wrapper .bx-controls-direction .bx-next:hover {
  opacity: 0.6;
  transition: all .2s ease;
}



/* ページャー */

.recommend .bx-wrapper .bx-pager,
.recommend .bx-wrapper .bx-controls-auto {
	bottom: -20px;
	}


/*----------------------------------------------
　特集・企画
------------------------------------------------ */	

.feature ul li {
	width: 365px;
	float: left;
	margin: 0 20px 20px 0;
	position: relative;
	overflow: hidden;
	}


.feature ul li:nth-of-type(2),
.feature ul li:nth-of-type(5) {
	margin: 0 0 20px;
	}

.feature ul li:nth-of-type(n+3) {

	width: 236.5px;
	}


/*　キャプション
-------------------------- */

.feature ul li .content {
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: rgba(25, 25, 25, 0.7);
	color: #fff;
	padding: 10px 20px;
	height: 150px;
}

.feature ul li .content .ttl {
	font-size: 12px;
	font-weight: 300;
	border-bottom: solid 1px #999;
	padding: 0px 0 15px;
	position: relative;
	margin: 0 0 12px;
	}
	
.feature ul li .content .txt {
	font-size: 12px;
	font-weight: 300;
	line-height: 18px;
	color: #ddd;
}


.feature ul li:nth-of-type(n+3) .content .ttl {
	width: 100%;
	margin: 0 0 12px;
	padding: 0 0 10px;
	}


/*　開閉 */

.feature ul li .content {
	transform: translateY(78%);
	transition: all .3s ease;
}

.feature ul li:hover .content {
	transform: translateY(0);
	transition: all .3s ease;
}


/*----------------------------------------------
　ブランド
------------------------------------------------ */	

.brand ul li {
	width: 270px;
	float: left;
	margin: 0 0 30px;
	border-bottom: dotted 1px #ccc;
	opacity: 1;
	transition: all .3s ease;
	position: relative;
	padding: 0 30px 30px 0;
	}



.brand ul li a {
	padding: 0 30px 0 0;	
	border-right: dotted 1px #ccc;
}

.brand ul li:nth-of-type(3n) {
	padding: 0 0 30px;
	width: 209px;
}

.brand ul li:nth-of-type(3n) a {
	padding: 0;
	border-right: none;
} 

.brand ul li:hover {
	opacity: 0.7;
	transition: all .3s ease;
	}



/*　画像
-------------------------- */

.brand ul li figure img {

	margin: 0 0 15px;
}

.brand ul li figure img:last-of-type {
	margin: 0 0 3px;
}


/*　テキスト
-------------------------- */

.brand ul li p {
	margin: 10px 0 0;
	font-size: 14px;
	text-align: center;
}

.brand ul li p span {
	font-weight: 500;
}

.brand ul li p span:before {
	content: "/";
	margin: 0 7px
}



/*======================================================================
　フッダー
======================================================================== */

footer {
	width: 100%;
	}

/*----------------------------------------------
　上部
------------------------------------------------ */	

footer .top {
	background: #f6f6f6;
	border-top: solid 1px #e9e9e9;
	}
	
footer .top > .wrapper {
	width: 1060px;
	margin: 0 auto;
	padding: 35px 0;
	}


/*　レフト
-------------------------- */

footer .top .lft {
	width: 517px;
	float: left;

	}

footer .top .lft .ttl {
	font-size: 15px;
	font-weight: 700;
	letter-spacing: 1.5px
	}
	
footer .top .lft .ttl span {
	width: 155px;
	padding: 8px 0;
	font-size: 11px;
	font-weight: 400;
	color: #fff;
	text-align: center;
	margin: 0 15px 0 0;
	display: inline-block;
	letter-spacing: 2px;
	}


/*　カスタマーサポート */

footer .top .customer {
	padding: 0px 0 35px;
	border-bottom: solid 1px #aaa;
	margin: 0px 0 35px;
}

footer .top .customer .ttl {
	margin: 0 0 18px;
}

footer .top .customer .ttl span {
	background: #314c64;
	}

footer .top .customer .cnt {
	position: relative;
	overflow: hidden;
	margin: 0 0 15px;
}


footer .top .customer .cnt .tel {
	color: #314c64;
	font-size: 32px;
	font-weight: 900;
	letter-spacing: 0;
	display: inline-block;
	margin: 0 28px 0 0;
}

footer .top .customer .cnt .btn {
	font-size: 10px;
	line-height: 12px;
	display: inline-block;
	margin: 0 15px 0 0;
	letter-spacing: 1px;
}

footer .top .customer .cnt .btn a {
	padding: 5px 0 5px 43px;
	display: block !important;
	}

footer .top .customer .cnt .btn:nth-of-type(2) {
	background: url(../images/fot-mail.png) no-repeat;
	}

footer .top .customer .cnt .btn:nth-of-type(3) {
	background: url(../images/fot-guid.png) no-repeat;
	margin: 0;
	}


footer .top .customer .cnt .btn:nth-of-type(2):hover {
	animation: btn_mail .1s ease;
	background: url(../images/fot-mail-hover.png) no-repeat;
	}

footer .top .customer .cnt .btn:nth-of-type(3):hover {
	animation: btn_guid .1s ease;
	background: url(../images/fot-guid-hover.png) no-repeat;
	}


@keyframes btn_mail {
	0% {
		background: url(../images/fot-mail.png) no-repeat;
		background-size: 34px;
		}
		
	50% {
		background: url(../images/fot-mail-hover.png)  no-repeat;
		background-size: 30px;
		background-position: 2px center;
		}
	
	100% {
		background: url(../images/fot-mail-hover.png) no-repeat;
		background-size: 34px;
		}
	
	}

@keyframes btn_guid {
	0% {
		background: url(../images/fot-guid.png) no-repeat;
		background-size: 34px;
		}
		
	50% {
		background: url(../images/fot-guid-hover.png)  no-repeat;
		background-size: 30px;
		background-position: 2px center;
		}
	
	100% {
		background: url(../images/fot-guid-hover.png) no-repeat;
		background-size: 34px;
		}
	
	}


footer .top .customer .time {
	font-size: 12px;
	color: #444;
	letter-spacing: 0.85px;
}


/*　メルマガ */

footer .top .newsletter .ttl {
	margin: 0 0 23px;
}

footer .top .newsletter .ttl span {
	background: #f5bd4e;

	}


footer .top .newsletter ul {
	background: url(../images/fot-merumaga.png) no-repeat;
	padding: 0 0 0 100px;
	float: left;
	}

footer .top .newsletter ul li {
	font-size: 13px;
	font-weight: 400;
	margin: 0 0 6px;
	letter-spacing: 1px;

}

footer .top .newsletter ul li:before {
	content: "■";
	font-size: 15px;
	margin: 0 3px 0 0
}

footer .top .newsletter .regi {


	float: right;
	width: 145px;
	text-align: center;
	background: #423f3c;
	border-radius: 6px;
	transition: all .3s ease;
	}

footer .top .newsletter .regi a {
	padding: 13px 0;
}

footer .top .newsletter .regi:hover {
	background: #f5bd4e;
	transition: all .3s ease;
}

footer .top .newsletter .regi img {
	width: 107px;
}


/*　ライト
-------------------------- */



footer .top .rgt {
	width: 500px;
	float: right;
}

footer .top .rgt .guid {
	width: 230px;
	background: #fff;
	border: solid 1px #e9e9e9;
	padding: 20px;
	letter-spacing: 1px;
	}

footer .top .rgt .guid:nth-of-type(1) {
	float: left;
}

footer .top .rgt .guid:nth-of-type(2) {
	float: right;
}

footer .top .rgt .guid .wrapper:nth-of-type(1) {
	margin: 0 0 20px;
}


footer .top .rgt .guid span {
	color: #a73b3b;
	font-weight: 700;
}

footer .top .rgt .guid .ttl {
	font-size: 14px;
	font-weight: 700;
	padding: 0 0 12px;
	margin: 0 0 15px;
	border-bottom: dotted 1px #aaa;
}

footer .top .rgt .guid .sub {
	font-size: 12px;
	font-weight: 700;
	margin: 0 0 4px
}

footer .top .rgt .guid .txt {
	font-size: 10px;
	color: #444;
	line-height: 16px;
	margin: 0 0 7px;
}

footer .top .rgt .guid .btn {
	text-align: right;
	}

footer .top .rgt .guid .btn a {
	background: #423f3c;
	color: #fff;
	font-size: 10px;
	font-weight: 300;
	width: 105px;
	padding: 6px 0;
	text-align: center;
	display: inline-block;
	position: relative;
	opacity: 1;
	transition: all .2s ease;
	}

footer .top .rgt .guid .btn a:after {
	content: "";
	border: solid 3px transparent;
	border-bottom: solid 3px #444;
	border-right: solid 3px #444;
	position: absolute;
	top: -5px;
	right: 0;
}

footer .top .rgt .guid .btn a:hover {

	opacity: 0.8;
	transition: all .2s ease;
}


footer .top .rgt .guid:nth-of-type(2) .txt {
	font-size: 12px;
	line-height: 18px;

}

footer .top .rgt .guid figcaption {
	font-size: 12px;
	color: #a73b3b;
	margin: 0 0 10px;
}

footer .top .rgt .guid figure {
	margin: 24px 0 10px;
}

footer .top .rgt .guid:nth-of-type(2) .wrapper {
	margin: 0;
}


/*----------------------------------------------
　下部
------------------------------------------------ */	

footer .btm {
	background: #423f3c;
	color: #e6e6e6;
	}
	
footer .btm > .wrapper {
	width: 1060px;
	margin: 0 auto;
	padding: 35px 0;
	position: relative;
	}

/* ロゴ */

footer .btm .logo {
	width: 208px;
	margin: 0 0 25px;
}

/* ナビ */

footer .btm .nav {
	position: absolute;
	top: 53px;
	right: 0;
}


footer .btm .nav li {
	font-size: 11px;
	font-weight: 300;
	float: left;
	width: 135px;
	border-left: solid 1px #adadad;
	text-align: center;
}

footer .btm .nav li:hover {
	position: relative;
	top: 1px;
	left: 1px;
	}


footer .btm .nav li:last-of-type {
	border-right: solid 1px #adadad;
}


/* 会社概要 */

footer .btm .profile .ttl {
	font-size: 12px;
	font-weight: 300;
	margin: 0 0 15px;
}

footer .btm .profile .txt {

	font-size: 10px;
	font-weight: 100;
	line-height: 20px
}


footer .btm .profile small {
	font-size: 10px;
	font-weight: 100;
}


