@charset "utf-8";
/* CSS Document */
.st-listBoxC {
    background-color: #f7f7f7;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333;
}
.st-listBoxC .listBoxIn {
    padding: 0.75rem;
}
.noDisC {
    display: block;
}
/*----------------------------------
= store_list
----------------------------------*/
.st_list_wrap{
	margin: 1rem 0 2rem;
}
.st_card {
	width: 100%;
	display: flex;
	background-color: #fff;
	border: 1px solid #e1e5e7;
	border-radius: 14px;
	overflow: hidden;
	color: #320703;
	margin-bottom: 1.5rem;
}
.st_thumb {
	flex: 0 0 50%;
	padding: 14px 12px;
	}
.st_thumb .thumb_wrap {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	overflow: hidden;
	border-radius: 14px;
}
.st_thumb .thumb_wrap img {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
	}
.st_content {
	flex: 1 1 50%;
	padding: 14px 12px;
	position: relative;
}
.st_content .bookmark {
	position: absolute;
	top: 14px;
	right: 12px;
	font-size: 18px;
}
.st_content .st_title {
	color: #320703;
	font-size: 20px;
	font-weight: 700;
	overflow: hidden;
	text-overflow: ellipsis;
	margin-top: 2px;
	margin-right: 16PX;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
    word-break: break-word;
}
.st_content .st_text{
	font-size: 14px;
	color: #6b7280;
	margin: 8px 0 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    word-break: break-word;
}
.st_content .hr {
	height: 1px;
	background: #f1f5f9;
	margin: 10px 0;
}
.st_content .st_foot .fl-sb {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.st_content .st_foot .pct {
	font-weight: 800;
	font-size: 24px;
	color: #320703;
}
.st_content .st_foot .alert {
	font-size: 11px;
	padding: 4px 8px;
	margin: 0;
}
.st_foot .condition {
	display: inline-block;
	font-size: 11px;
	background-color: #F3F4F6;
	border-radius: 4px;
	padding: 2px 6px;
}
@media (max-width: 480px) {
	.st_card {
		display: flex;
		flex-direction: column;
	}
	.st_thumb {
	flex: 1 1 50%;
	padding: 0;
	}
	.st_thumb .thumb_wrap {
		border-bottom-right-radius: 0;
		border-bottom-left-radius: 0;
	}
	.st_content .st_title {
		font-size: 18px;
	}
	.st_content .st_text{
		font-size: 12px;
	}
}
/*----------------------------------
= nw_store
----------------------------------*/
.subTitle {
	color: #333;
	font-size: 16px;
	font-weight: 600;
}
.nw-stBox {
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}
.nw-stBox li {
	width: 100%;
	min-width: 0;
	background-color: #fff;
	border: 1px solid #e1e5e7;
	border-radius: .5rem;
}
.nw-stBox li .fl-row {
	min-width: 0;
}
.stName {
	display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
	word-break: break-word;
	overflow: hidden;       
}
.nw-stBox .stText {
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	word-break: break-word;
	overflow: hidden;       
}

@media (max-width: 768px) {
	.nw-stBox {
		display: grid;
		grid-template-columns: repeat(3, 1fr);
		gap: 2.5rem 2rem;
}
}
@media (max-width: 480px) {
	.nw-stBox {
		display: grid;
		grid-template-columns: repeat(2, 1fr);
		gap: 1.5rem 1rem;
}
}

/*----------------------------------
= store_detail
----------------------------------*/
.shopBaseDetail {
	position: relative;
}
.shopDetailKana {
	color:#666;
	font-size: 10px;
	margin-bottom: 10px;
}
.shopBaseDetail .bookmark {
	position: absolute;
	top: 5px;
	right: 0;
	z-index: 2;
	font-size: 24px;
}