/* userカスタマイズ用 CSS */

/* 画像の出し分け */
body.layout1 .pcImage {
  display: inline-block;
}
body.layout1 .spImage {
  display: none;
}

body.layout2 .pcImage {
  display: none;
}
body.layout2 .spImage {
  display: inline-block;
}

/*カテゴリ一覧のcssを記述 */
.category_modal {
  padding-left: 0;
  padding-right: 0;
  overflow: auto;
}

body.layout1 .category_modal {
  min-width: 1200px;
}

.category_modal * {
  color: #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
}

.category_modal .close_icon {
  top: 40px;
}

body.layout2 .category_modal .close_icon {
  top: 15px;
}

.category_title {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 28px 0;
}

body.layout2 .category_title {
  font-size: 24px;
  text-align: center;
  padding: 0 3.2% 20px;
}

.category_title span {
  padding-left: 45px;
  position: relative;
}

body.layout2 .category_title span {
  padding-left: 45px;
}

.category_title span:before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("../img/icon_pc_favo.png") no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 0.1em;
}

body.layout2 .category_title span:before {
  width: 25px;
  height: 25px;
  left: 6px;
}

#category h1 {
  text-align: center;
  margin: 0;
  padding: 20px 0;
}

.layout2 #category h1 {
  padding: 0 3.2% 20px;
}

#category h1 span {
  display: inline-block;
  vertical-align: middle;
  font-size: 30px;
  padding-left: 13px;
}

.layout2 #category h1 span {
  font-size: 24px;
}

#category h1 .icon {
  width: 35px;
  height: auto;
  vertical-align: middle;
  margin: 4px;
  margin-bottom: 7px;
}

body.layout2 #category h1 .icon {
  width: 30px;
}

/* recommend_items
------------------------------------ */
.recommend {
  background: #f2f2f2;
  padding: 42px 0 70px;
}

body.layout2 .recommend {
  padding: 20px 3.2% 40px;
}

.recommend_title {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0 auto 50px;
}

body.layout2 .recommend_title {
  font-size: 20px;
  margin-bottom: 20px;
}

.recommend_items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  list-style: none;
  margin: 0 auto;
  padding: 0;
  max-width: 1470px;
}

.recommend_items li {
  width: 18.36%;
  list-style: none;
  padding: 0;
}

.recommend_items a[href="javascript:void(0)"]  {
  cursor: auto;
}

body.layout2 .recommend_items li {
  width: 48.5%;
}

body.layout1 .recommend_items li:nth-child(n+2) {
  margin-left: 2%;
}

body.layout2 .recommend_items li:nth-child(even) {
  margin-left: 3%;
}

body.layout2 .recommend_items li:nth-child(n+3) {
  margin-top: 10px;
}

.recommend_items img {
  width: 100%;
  height: auto;
}

/* category_items
------------------------------------ */
.category_items {
  list-style: none;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

body.layout2 .category_items {
  padding: 0 3.2%;
}

.category_item {
  width: 47.5%;
  margin-top: 60px;
}

body.layout2 .category_item {
  width: 100%;
  margin-top: 35px;
}

body.layout1 .category_item:nth-child(even) {
  margin-left: 5%;
}

.category_item_title {
  border-bottom: 2px solid #959595;
  margin: 0 0 30px 0;
  padding-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: 100%;
  padding: 0 0 15px 0;
}

body.layout2 .category_item_title {
  margin-bottom: 15px;
  padding-bottom: 8px;
}

.category_item_title > span {
  display: block;
  width: 60%;
  padding-right: 1em;
  font-weight: bold;
  font-size: 24px;
}

body.layout2 .category_item_title > span {
  font-size: 15px;
}

.category_item_title > a {
  display: block;
  width: 40%;
  color: #333;
  text-decoration: none;
  font-size: 18px;
  text-align: right;
  font-weight: normal;
}

body.layout2 .category_item_title > a {
  font-size: 11px;
}

.category_item_title > a > span {
  position: relative;
  padding-left: 18px;
  color: #333;
  font-size: 18px;
  font-weight: normal;
}

body.layout2 .category_item_title > a > span {
  font-size: 11px;
  padding-left: 12px;
}

.category_item_title > a > span:before {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background: url("../img/product/modal/arrow_left.png") no-repeat;
  background-size: 100% auto;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -6px;
}

body.layout2 .category_item_title > a > span:before {
  width: 4px;
  height: 7px;
  margin-top: -3px;
}

.category_item_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.category_item_thumb {
  width: 47%;
}

body.layout2 .category_item_thumb {
  width: 48.5%;
}

.category_item_thumb img {
  width: 100%;
  height: auto;
}

.category_item_list {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 47%;
}

body.layout2 .category_item_list {
  width: 48.5%;
}

.category_item_list li {
  list-style: none;
  margin-bottom: 16px;
}

.category_item_list li:last-child {
  margin-bottom: 0;
}

body.layout2 .category_item_list li {
  margin-bottom: 8px;
}

.category_item_list a {
  color: #333;
  text-decoration: none;
  font-size: 14px;
  display: block;
  border-bottom: 1px solid #acacac;
  padding-right: 1em;
  position: relative;
}

body.layout2 .category_item_list a {
  font-size: 10px;
}

.category_item_list a:after {
  content: "";
  display: block;
  width: 8px;
  height: 12px;
  background: url("../img/product/modal/arrow_left.png") no-repeat;
  background-size: 100% auto;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -6px;
}

body.layout2 .category_item_list a:after {
  width: 4px;
  height: 6px;
  margin-top: -3px;
}

.category_item_relation {
  margin: 15px 0 0 0;
  background: #fff8e4;
  padding: 14px 5% 22px;
}

body.layout2 .category_item_relation {
  margin-top: 10px;
}

.category_item_relation_title {
  font-size: 18px;
  text-align: center;
  margin: 0 auto 8px;
}

body.layout2 .category_item_relation_title {
  font-size: 12px;
  margin-bottom: 6px;
}

.category_item_relation_list {
  list-style: none;
  padding: 0;
  margin: 0;
  overflow: hidden;
}

.category_item_relation_list li {
  list-style: none;
  padding: 0;
  width: 47%;
  float: left;
}

body.layout2 .category_item_relation_list li {
  width: 48.5%;
}

.category_item_relation_list li:nth-child(even) {
  margin-left: 6%;
}

body.layout2 .category_item_relation_list li:nth-child(even) {
  margin-left: 3%;
}

.category_item_relation_list img {
  width: 100%;
  height: auto;
}

.category_item_relation_list a {
  text-decoration: none;
  line-height: 1;
  display: block;
}

.category_item_relation_list a[href="javascript:void(0)"]  {
  cursor: auto;
}

.category_item_relation_list span {
  font-size: 14px;
  line-height: 1.7;
  margin-top: 2px;
  display: block;
}

body.layout2 .category_item_relation_list span {
  font-size: 10px;
}

body.layout1 #cooking_heating {
  margin-top: -10px;
}

body.layout1 #lighting {
  margin-top: -110px;
}

body.layout1 #backpack {
  margin-top: -60px;
}

/*使い方ガイドのcssを記述 */

header .btns .btn.guide{
  position: absolute;
  right: 25px;
}
body.layout2 header .btns .btn.guide{
  position: inherit;
}

.guide_modal {
  padding-left: 0;
  padding-right: 0;
  overflow: auto;
}

body.layout1 .guide_modal {
  min-width: 1200px;
}

.guide_modal * {
  color: #333;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 1.5;
}

.guide_title {
  font-size: 30px;
  color: #333;
  font-weight: bold;
  text-align: center;
  margin: 0;
  padding: 28px 0;
}

body.layout2 .guide_title {
  font-size: 24px;
  text-align: center;
  padding: 0 3.2%;
}

.guide_title span {
  padding-left: 35px;
  position: relative;
}

body.layout2 .guide_title span {
  padding-left: 30px;
}

.guide_title span:before {
  content: "";
  display: block;
  width: 19px;
  height: 28px;
  background: url("../img/icon_pc_guide.png") no-repeat;
  background-size: contain;
  position: absolute;
  top: 0.25em;
  left: 0;
}

body.layout2 .guide_title span:before {
  width: 14px;
  height: 20px;
}

.guide-content {
  width: 100%;
  max-width: 965px;
  margin: 100px auto;
}
body.layout2 .guide-content {
  max-width: 96%;
  margin: 50px auto;
  padding: 0 2%;
}

.guide-head {
  background: #c62418;
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 50px;
  text-align: center;
  padding: 10px;
}
body.layout2 .guide-head {
  font-size: 18px;
  margin-bottom: 35px;
  padding: 7px;
}

.guide-head + .guide-sec {
  margin-top: 0;
}

.guide-sec {
  margin-top: 85px;
}
body.layout2 .guide-sec {
  margin-top: 50px;
}

.guide-subhead {
  color: #c62418;
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 30px;
}
.guide-subhead::after {
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: #c62418;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -50px;
}

body.layout2 .guide-subhead {
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 20px;
}
body.layout2 .guide-subhead::after {
    width: 50px;
    margin-left: -25px;
    content: "";
    display: block;
    width: 100px;
    height: 5px;
    background: #c62418;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -50px;
}

.guide-text,
.guide-text p,
.guide-text span,
.guide-text ul {
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
body.layout2 .guide-text p,
body.layout2 .guide-text,
body.layout2 .guide-text span,
body.layout2 .guide-text ul {
  font-size: 15px;
}


.guide-image--2col {
  margin: 50px auto;
  overflow: hidden;
}
body.layout2 .guide-image--2col {
  display: block;
  margin: 30px auto;
}

.guide-image--2col img:nth-child(even) {
  margin-left: 37px;
}

body.layout2 .guide-image--2col img:nth-child(even) {
  margin-left: 0;
  margin-top: 10px;
}


.guide-image--2col img {
  width: 464px;
  height: auto;
  display: block;
  float: left;
  border: 2px solid #ccc;
}
body.layout2 .guide-image--2col img {
  width: 100%;
}

.guide-image {
  text-align: center;
  margin: 50px auto;
}
body.layout2 .guide-image {
  margin: 30px auto;
}

.guide-image img {
  max-width: 634px;
  height: auto;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: block;
  margin: 0 auto;
  border: 2px solid #ccc;
}
body.layout2 .guide-image img {
  max-width: 100%;
}


/* ******************************************************
   2022/04/10 add
 ******************************************************* */
body.layout2 header .logo{
	width: 118px;
}
body.layout2 header .btns{
	width: calc(100vw - 125px);
}
body.layout2 #items .info{
    width: calc(100vw - 180px);
}

/* ** 型番表示／非表示・改行 ** */
/*
#favorite .name_column .itemno{
	display:none!important;
}
*/

#favorite .name_column .itemno{
	display: block;
}

/* ** 上部メニューの表示非表示 ** */

/* * PCレイアウト時 * */
/* メニュー */
body.layout1 header .btns .btn.menu{
	/* 表示 */
	display:inline-block;
	margin-left: 10px;
	/* 非表示 */
	/*display:none;*/
}
/* お気に入り */
body.layout1 header .btns .btn.favorite{
	display:none;
}
/* 商品検索 */
body.layout1 header .btns .btn.itemsearch{
	display:inline-block;
}
/* pdf */
body.layout1 header .btns .btn.pdf{
	display:inline-block;
}
/* 印刷 */
body.layout1 header .btns .btn.printer{
	display:none;
}

/* * スマホレイアウト時 * */
/* メニュー */
body.layout2 header .btns .btn.menu{
	display:inline-block;
	margin-left: 50px;
}
/* お気に入り */
body.layout2 header .btns .btn.favorite{
	display:none;
}
/* 商品検索 */
body.layout2 header .btns .btn.itemsearch{
	display:inline-block;
}
/* pdf */
body.layout2 header .btns .btn.pdf{
	display:inline-block;
}
/* 印刷 */
body.layout2 header .btns .btn.printer{
	display:none;
}

/* * PCレイアウト時ヘッダーのロゴの左の余白を削除 * */
body.layout1 header .logo > a > img{
	margin-left: 0px;
}

/* * スマホレイアウト時ヘッダーのロゴの左の余白を削除 * */
body.layout2 header .logo > a > img{
	margin-left: 0px;
}

/* * PCレイアウト時　商品検索の入力枠部分を中央に表示 * */
.search_item .title {
	width: 100px;
}
/* * スマホレイアウト時　商品検索の入力枠部分を中央に表示 * */
.layout2 .search_item .title{
	width: 30%;
}

.layout2 .search_item .form_item{
	width: 70%;
}

/* 商品名の長さ調整 */
#favorite .name_column{
	width: 490px;
}
/* 不要カラム削除 */
#favorite .info_column{
	display:none;
}

/* お気に入りタブ削除 */
.tab_navi{
display: none;
}

/* お気に入り★の削除 */
#items .icon.favorite{
	display:none;
}

/* 商品一覧・画像表示 */
/*#items .image{
	display:none;
}*/

/* 商品名の長さ調整 */
#items .name{
	width: 280px;
}

#items .detail{
	display:none!important;
}

/* ヘッダー色変更 */
header{
	background-color: #b5ada3;
}

/* 文字色変更 */
body{
	color:rgb(90,90,90);
}

/* 上位文字の色変更 */
header .btns .btn{
	color: rgb(121 110 101);
}

/* ECサイトはこちらの＜ボタンの色＞＜文字の色＞変更 */
#items .info .ec .btn{
	color:#ffffff;
	background-color:rgb(121 110 101);
}

/* 検索、クリアボタンの色変更 */
.search_button #search{
	color:#ffffff;
	background-color:rgb(121 110 101);
}

/* ページ移動、ECサイトボタン＜ボタンの色＞＜文字の色＞変更 */
#itemsearch .transition .btn{
	color:#ffffff;
	background-color:rgb(121 110 101);
}

/* スマホの商品情報のみえる高さ */
body.layout2 #items .info{
    width: calc(100vw - 160px);
}

/* PCの左上ロゴ */
header .logo > a > img{
	height:80px;
	width:auto;
}
/* SPの左上ロゴ */
body.layout2 header .logo > a > img{
	height:48px;
	width:auto;
}
