<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@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; /* 角を少し丸めたい場合 */
}

/*パンくず*/
#bread_crump_wrap {
	width: 100%;
	height: auto;
	padding: 3px 0;
	background: #2d1e86;
	box-sizing: border-box;
}
#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: "&gt;";
	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: "&gt;";
	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 #list {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	font-family: 'Yu Gothic','游ゴシック','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,"TBUD丸ゴシック R",sans-serif;
}
#list_wrap #list &gt; div {
	width:49%;
	margin-bottom: 15px;
	text-align: right;
	position: relative;
	display: flex;
	flex-direction: column;
}
#list_wrap #list &gt; div p {
	margin-bottom: 5px;
}
#list_wrap #list &gt; div p.thumb_product {
	text-align: center;
}
#list_wrap #list &gt; div p.name_product {
	text-align: left;
	flex-grow:1;
}
#list_wrap #list &gt; div p.price_product {
	display: inline-block;
	position: relative;
	box-sizing: border-box;
	font-weight: bold;
	margin-top: auto;
}
#list_wrap #list &gt; div a {
	display: block;
	position: absolute;
	width: 100%;
	height:100%;
	top: 0;
	left: 0;
}
#list_wrap #list &gt; div.soldout .thumb_product {
	position: relative;
}
#list_wrap #list &gt; 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 &gt; 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;
}

/* 追加 */
.content {
	margin-top: 66px;
}
.cart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px; /* 必要に応じて調整 */
}

.cart-header h2 {
  margin: 0;
  font-size: 1.5em; /* デザインに応じて調整 */
}

.continue-btn {
  display: inline-block;
  background-color: #007bff; /* ボタン色（例） */
  color: white;
  text-decoration: none;
  padding: 8px 16px;
  border-radius: 4px;
  font-size: 0.9em;
  transition: background-color 0.2s;
  width: 35%;
  text-align: center;
}

.continue-btn:hover {
  background-color: #0056b3;
}



/********************************************
ランドスケープ
*********************************************/
@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 &gt; 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;
	}

		
	/*リスト*/
	#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 &gt; ul {
		border-top:1px solid #000;
		border-bottom: 1px solid #000;
	}
	#list_wrap #local_menu &gt; ul &gt; li {
		border-bottom: 1px solid #000;
	}
	#list_wrap #local_menu &gt; ul &gt; li &gt; a {
		display: block;
		font-size: 1.8rem;
		padding: 8px 5px;
		font-weight: bold;
		color: #000;
		position: relative;
	}
	#list_wrap #local_menu &gt; ul &gt; li &gt; a:after {
		content: "&gt;";
		position: absolute;
		right:10px;
		font-size: 90%;
		font-weight: bold;
	}
	#list_wrap #local_menu &gt; ul &gt; li.has-child &gt; a:after {
		transform: rotate(90deg);
	}
	#list_wrap #local_menu &gt; ul &gt; li.current &gt; a {
		color: #FFF;
		background: #000;
	}
	#list_wrap #local_menu &gt; ul &gt; li .nav_child {
		display: none;
	}
	#list_wrap #local_menu &gt; ul &gt; li.current .nav_child {
		display: block;
	}
	#list_wrap #local_menu &gt; ul &gt; li .nav_child li {
		margin-bottom: 5px;
	}
	#list_wrap #local_menu &gt; ul &gt; li .nav_child a {
		color: #000;
		display: block;
		padding: 5px;
		transition: all 0.3s;
	}
	#list_wrap #local_menu &gt; ul &gt; li .nav_child a:hover {
		background: #c2c2c2;
	}

/* 追加 */
	.content {
		font-family: 'Yu Gothic','游ゴシック','ヒラギノ角ゴシック','Hiragino Sans','メイリオ', Meiryo,"TBUD丸ゴシック R",sans-serif;
	}
	.content {
		margin-top: 60px;
	}
	.cart-title {
    	font-size: 2.2rem;
    	margin-bottom: 32px;
    	text-align: left;
    	font-weight: bold;
  	}
  	#total-price {
  		text-align: center;
  	}
  	.free-shipping-wrap,
  	.amazon-btn-wrap {
  		text-align: center;
  	}
  	.quantity-change-btn,
  	.item-delete-btn {
  		font-size: 1em;
  	}
}

/********************************************
タブレット　ランドスケープ
*********************************************/
@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) {
	
}</pre></body></html>