@charset "utf-8";

/* -----------------------------------------------------------
CSS Information

 File name:      list.css
 Update:         2017.6.15
 Style Info:     スタイルCSSファイル
----------------------------------------------------------- */
/********************************************
モバイルファースト
*********************************************/
.saletag {
  display: inline-block;
  background-color: red;
  color: white;
  font-weight: bold;
  padding: 5px 5px;
  text-align: center;
  border-radius: 1px; /* 角を少し丸めたい場合 */
}
/*title*/
#title_wrap {
	margin-top: 56px;
	width: 100%;
	height: 100px;
	padding: 5px 0;
	background: url("../img/shoes/title_bg.jpg") no-repeat;
	background-size: cover;
	background-position:top center;
	box-sizing: border-box;
}
#title_wrap #product_slide {
	height: 100%;
	background: url("../img/shoes/title_shoes.png")no-repeat;
	background-size: contain;
	background-position: center;
}
#title_wrap #product_slide .slick-slide {
	width: 100%;
	height: 90px;
}
#title_wrap #product_slide .slick-slide img {
	max-height: 100%;
	margin: 0 auto !important;
}

/*パンくず*/
#bread_crump_wrap {
	width: 100%;
	height: auto;
	padding: 3px 0;
	background: #2d1e86;
	box-sizing: border-box;
	margin-top: 70px;
}
#bread_crump_wrap ul {
	width: 95%;
	margin: 0 auto;
}
#bread_crump_wrap ul li {
	display: inline-block;
	padding-right: 15px;
	position: relative;
	font-size: 1.2rem;
	color: #FFF;
}
#bread_crump_wrap ul li a {
	display: block;
	color: #FFF;
}
#bread_crump_wrap ul li a:after {
	content: ">";
	position: absolute;
	right: 0;
}

/*ローカルメニュー*/
#local_menu {
	display: none;
}

/*フィルター*/
#list_wrap {
	margin: 15px 10px 30px;
}
#list_wrap #filter {
	width: 120px;
	margin-left: auto;
	margin-bottom: 10px;
	font-size: 1.4rem;
	position: relative;
	z-index: 10;
}
#list_wrap #filter p {
	background: #2d1e86;
	padding: 5px 0;
	padding-left: 20px;
	color: #FFF;
	position: relative;
	cursor: pointer;
}
#list_wrap #filter p:before {
	content: "";
	display: block;
	width: 1px;
	height: 15px;
	background: #FFF;
	position: absolute;
	top: 0;
	right: 25px;
	bottom: 0;
	margin: auto;
}
#list_wrap #filter p:after {
	content: ">";
	display: block;
	width: 16px;
	height: 16px;
	position: absolute;
	top: 5px;
	right: 2px;
	bottom: 0;
	margin: auto;
	transform:rotate(90deg);
}
#list_wrap #filter.open p:after {
	transform:rotate(-90deg);
	top: 0;
	right: 6px;
	bottom: 10px;
	margin: auto;
}
#list_wrap #filter ul {
	display: none;
	width: 100%;
	position: absolute;
	top: 29px;
	left: 0;
	background: rgba(0,128,204,0.90);
	padding: 10px 15px;
	color: #FFF;
	box-sizing: border-box;
}
#list_wrap #filter ul li {
	margin-bottom: 5px;
	font-weight: bold;
}
#list_wrap #filter ul li a {
	color: #FFF
}

/*リスト*/
#list_wrap #list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-family: 'Yu Gothic','游ゴシック','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,"TBUD丸ゴシック R",sans-serif;
}
#list_wrap #list > div {
	width:49%;
	margin-bottom: 30px;
	text-align: left;
	position: relative;
	display: flex;
	flex-direction: column;
}
#list_wrap #list > div p {
	margin-bottom: 5px;
}
#list_wrap #list > div .thumb_product {
	text-align: center;
	position: relative;
	margin-bottom: 5px;
}
#list_wrap #list > div .thumb_product .sale-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background-color: #bf0020;
    color: white;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: bold;
    border-radius: 2px;
    z-index: 10;
}
#list_wrap #list > div p.name_product {
	text-align: left;
	flex-grow:1;
	font-size: 0.9em;
}

#list_wrap #list > div p.price_product {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	font-size: 1.1em;
	font-weight: bold;
	margin-top: auto;
}
#list_wrap #list > div p.price_product small {
	margin-left: 5px;
    font-size: 0.7em;
    font-weight: normal;
}
#list_wrap #list > div p.is_pricedown {
  color: #bf0020;
  margin-top: -2px;
}

/* 横並びラッパー */
.product_info_other {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap; /* スマホ対応で折り返し可能に */
}


#list_wrap #list > div .point_product {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	font-weight: bold;
	margin-top: auto;
}

/* ポイント表示 */
.point_product {
  display: inline-block;
  font-weight: bold;
  font-size: 1.0em;
  color: #3879D9;
}
.point_product small {
	margin-left: 3px;
    font-size: 0.7em;
    font-weight: normal;
}
/* 共通バッジスタイル */
.badge {
  display: inline-block;
  padding: 4px 6px;
  font-size: 1.2rem;
  border-radius: 2px;
}
/* ポイントバッジ */
.badge-point {
  background-color: #fffae4;
  color: #ffb12d;
  border: 1px solid #ffb12d;
  font-weight: bold;
}
.badge-point small {
	margin-left: 3px;
    font-size: 0.7em;
    font-weight: normal;
    display: none;
}
.icon-stack {
    font-size: 0.6em;
}
/* 送料無料バッジ */
.badge-postage {
  background-color: #e8f1ff;
  color: #3879D9;
  border: 1px solid #3879D9;
  font-weight: normal;
}
/* SALEバッジ */
.badge-sale {
  background-color: #fff0f0;
  color: #bf0020;
  border: 1px solid #bf0020;
  font-weight: bold;
}




#list_wrap #list > div a {
	display: block;
	position: absolute;
	width: 100%;
	height:100%;
	top: 0;
	left: 0;
}
#list_wrap #list > div.soldout .thumb_product {
	position: relative;
}
#list_wrap #list > div.soldout .thumb_product:after {
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(0,0,0,0.52);
}
#list_wrap #list > div.soldout .price_product:before {
	content: "";
	display: inline-block;
	width: 60px;
	height: 20px;
	padding-right: 5px;
	background: url("../img/shoes/tag_soldout.png")no-repeat;
	background-size: contain;
}

/*ページネーション*/
#pagenation {
	margin: 20px 0;
	text-align: center;
	font-family: 'Yu Gothic','游ゴシック','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,"TBUD丸ゴシック R",sans-serif;
}
#pagenation a {
	display: inline-block;
	padding: 5px 10px;
	margin: 0 3px;
	background: #0080cc;
	text-align: center;
	color: #FFF;
	position: relative;
}
#pagenation a.current, #pagenation a.next {
	background: none;
	color: #0080cc;
	font-weight: bold;
}
#pagenation a.next {
	padding-right: 20px;
}
#pagenation a.next:after {
	content: "";
	width: 17px;
	height: 10px;
	background: url("../img/shoes/arrow_next.png") no-repeat;
	background-size: contain;
	position: absolute;
	top: 0;
	right:0;
	bottom: 0;
	margin: auto;
}

/*会社概要*/
.company-section {
	font-family: 'Yu Gothic','游ゴシック','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,"TBUD丸ゴシック R",sans-serif;
}


/********************************************
ランドスケープ
*********************************************/
@media screen and (min-width:480px){
	/*title*/
	#title_wrap {
		height: 150px;
	}
	#title_wrap #product_slide .slick-slide {
		height: 140px;
	}
}


/********************************************
ランドスケープ
*********************************************/
@media screen and (min-width:640px){
	/*title*/
	#title_wrap {
		height: 200px;
		padding: 10px 0;
	}
	#title_wrap #product_slide .slick-slide {
		height: 180px;
	}
	
	/*リスト*/
	#list_wrap #list > div {
		width:24%;
	}
	
	/*ページネーション*/
	#pagenation {
		margin: 30px 0;
	}
}

/********************************************
タブレット
*********************************************/
@media screen and (min-width:768px){
	/*フィルター*/
	#list_wrap {
		margin: 25px 10px 35px;
	}
}

/********************************************
PC
*********************************************/
@media print, screen and (min-width: 980px) {
	/*パンくず*/
	#bread_crump_wrap ul {
		width: 960px;
		margin: 0 auto;
	}
	
	/*title*/
	#title_wrap {
		margin-top: 70px;
		height: 264px;
		padding: 15px 0;
	}
	#title_wrap #product_slide .slick-slide {
		height: 234px;
	}
	
	/*リスト*/
	#list_wrap {
		width: 960px;
		margin: 0 auto;
		margin-top: 40px;
		margin-bottom: 40px;
		padding-left: 250px;
		box-sizing: border-box;
		position: relative;
	}
	#list_wrap #local_menu {
		display: block;
		position: absolute;
		width: 200px;
		top: 40px;
		left: 0;
	}
	#list_wrap #local_menu > ul {
		border-top:1px solid #000;
		border-bottom: 1px solid #000;
	}
	#list_wrap #local_menu > ul > li {
		border-bottom: 1px solid #000;
	}
	#list_wrap #local_menu > ul > li > a {
		display: block;
		font-size: 1.8rem;
		padding: 8px 5px;
		font-weight: bold;
		color: #000;
		position: relative;
	}
	#list_wrap #local_menu > ul > li > a:after {
		content: ">";
		position: absolute;
		right:10px;
		font-size: 90%;
		font-weight: bold;
	}
	#list_wrap #local_menu > ul > li.has-child > a:after {
		transform: rotate(90deg);
	}
	#list_wrap #local_menu > ul > li.current > a {
		color: #FFF;
		background: #000;
	}
	#list_wrap #local_menu > ul > li .nav_child {
		display: none;
	}
	#list_wrap #local_menu > ul > li.current .nav_child {
		display: block;
	}
	#list_wrap #local_menu > ul > li .nav_child li {
		margin-bottom: 5px;
	}
	#list_wrap #local_menu > ul > li .nav_child a {
		color: #000;
		display: block;
		padding: 5px;
		transition: all 0.3s;
	}
	#list_wrap #local_menu > ul > li .nav_child a:hover {
		background: #c2c2c2;
	}
	#list_wrap #list {
		display: flex;
		justify-content: flex-start;
		flex-wrap: wrap;
		gap: 15px;
	}
	.badge-point small {
	margin-left: 3px;
    font-size: 0.7em;
    font-weight: normal;
    display: inline;
	}
}

/********************************************
タブレット　ランドスケープ
*********************************************/
@media only screen and (min-width: 1024px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1051px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1100px) {
	/*パンくず*/
	#bread_crump_wrap ul {
		width: 1080px;
		margin: 0 auto;
	}
	/*リスト*/
	#list_wrap {
		width: 1400px;
	}
}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1280px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1300px) {

}

/********************************************
PC
*********************************************/
@media only screen and (min-width: 1400px) {
	
}