@charset "utf-8";
/* CSS Document */
/*ランキング・即納*/
section#ranking,
section#pickup {
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
}
.ranking_list,
.pickup_list,
.win11_list{
    width: 100%;
    text-align: center;
    font-size: 16px;
    font-weight: bold;
    display: table;
}
.ranking_list ul,
.pickup_list ul {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 20px;
    padding: 0;
    margin: 0 0 20px;
    list-style: none;
    scroll-snap-type: x mandatory;
}
.win11_list ul {
	margin: 10px auto 0;
	width: 100%;
    box-sizing: border-box;
	display: table;
	border-collapse: separate;
	border-spacing: 10px;
}
.ranking_list ul li,
.pickup_list ul li{
    scroll-snap-align: start;
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    width: 220px;
    padding: 10px;
}
.win11_list ul li{
    flex: 0 0 auto;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 10px;
    box-sizing: border-box;
    width: 46%;
    padding: 1%;
	display: table-cell;
}
.win11_list ul li table th,
.win11_list ul li table td{
	font-size: 12px!important;
	line-height: 1em;
}
.win11_list ul li .cam_price{
	display: inline-block;
}

.ranking_list ul li img,
.pickup_list ul li img {
    margin: 0;
    padding: 0;
}
.ranking_list ul li h3,
.pickup_list ul li h3 {
    margin: 0;
    padding: 0;
    font-size: 12px;
    line-height: 1.4;
    font-weight: bold;
    height: 7em;
}
/*ボタン*/
.ranking_list > ul > li .btn_cv,
.pickup_list > ul > li .btn_cv {
    font-size: 12px!important;
}
/*即納ICON*/
.pickpu_sokunou {
    color: #fff;
    background: linear-gradient(-45deg, #e191f2 0%, #595cff 100%);
    margin-bottom: 5px;
}

/*PCTOPページ*/
.pc_wrap{
	margin: 0;
	padding: 0;
}
.pc_wrap .sidebyside::after{
	display: block;
	content: "";
	clear: both;
}
.pc_wrap .sidebyside ol,.pc_wrap .sidebyside ol li{
	font-size: 14px;
	margin: 0;
	padding: 0;
	/*border-bottom:1px solid #19192b;*/
}
.pc_wrap .sidebyside ol li:before{
	counter-increment: none;
	content: none;
	margin: 0;
	padding: 0;
}
.pc_wrap .sidebyside ol li a{
	display: inline-block;
	float: left;
	border-radius: 4px;
	padding: 5px 5px 5px 20px;
	margin: 0 5px;
	/*border:1px solid #19192b;*/
}
.pc_wrap .sidebyside ol li a:hover{
	background: #edc600;
}
.pc_wrap > div > ul > li.sideber{
	background: #eee;
	border-radius: 10px;
	padding: 10px;
}
.pc_wrap_title{
	background: #19192b;
	color: #fff;
	text-align: center;
	clear: both;
}
.main_frame .pc_wrap_title {
	padding: 0.5em;
	font-size: 20px;
}
.pc_wrap_title{
	background: #19192b;
	color: #fff;
	text-align: center;
}
.pc_wrap_title a{
	color: #fff!important;
}
	/* UL全体のレイアウト設定 */
	ul.pc_list {
		display: flex;
		flex-wrap: wrap;
		list-style: none;
		padding: 10px;
		margin: 0; 
		gap: 20px;
		border-radius: 10px;
	}

/* LIの個別設定 */
ul.pc_list li {
	flex: 1 1 calc(33% - 20px);
	border: 1px solid #ccc;
	border-radius: 6px;
	box-sizing: border-box;
	padding: 10px;
	text-align: center;
	background: #fff;
}

/* 空白要素のスタイリング */
ul.pc_list li.empty {
	background-color: transparent;
	border: none;
}

/* 画像のスタイリング */
ul.pc_list li img {
	display: block;
	margin: 0 auto;
	max-width: 200px;
	height: auto;
}
ul.pc_list li h3{ 
	font-size: 14px;
	line-height: 1.2em;
	padding: 0;
	margin: 0;
}

	@media only screen and (min-width:768px) and (max-width:1024px) {
		.pc_wrap > div > ul > li.sideber{
			margin-bottom: 20px;
		}
		.pc_wrap .sidebyside ol:after{
			display: block;
			clear: both;
			content: "";
		}
	}

		@media only screen and (max-width:767px) {
				.empty{ display: none;}
				.ranking_list ul li h3,
				.pickup_list ul li h3 {
					line-height: 1;
					font-weight: bold;
					height: auto;
				}
				.pc_wrap > div > ul > li.sideber{
					margin-bottom: 20px;
				}
				.pc_wrap .sidebyside ol:after{
					display: block;
					clear: both;
					content: "";
				}
				/*2カラム表記*/
				ul.pc_list {
					display: block;
					list-style: none; 
					padding: 10px;
					margin: 0;
					background: #eee;
					border-radius: 10px;
				}
				ul.pc_list li {
					border: 1px solid #ccc;
					border-radius: 10px;
					box-sizing: border-box;
					padding: 10px;
					margin-bottom: 10px;
					text-align: center;
					background: #fff;
				}

				/* 空白要素のスタイリング */
				ul.pc_list li.empty {
					background-color: transparent; /* 背景を透明にする */
					border: none;                  /* 枠線を削除 */
				}

				/* 画像のスタイリング */
				ul.pc_list li img {
					display: block;         /* 画像をブロック要素として扱う */
					margin: 0 auto;         /* 画像を中央揃え */
					max-width: 100%;        /* コンテンツに収まるようサイズを調整 */
					height: auto;           /* アスペクト比を維持して高さを調整 */
				}
			}