/**
 * ブース一覧 (.shopList) スタイル
 *
 * イベントページのショートコード [cp_booth_listing] 用
 */

/* 出展者ページ概要テーブル */
.cp-exhibitor-summary {
	width: 100%;
	border-collapse: collapse;
	margin-bottom: 2em;
	font-size: 0.95em;
}
.cp-exhibitor-summary th,
.cp-exhibitor-summary td {
	padding: 10px 14px;
	border: 1px solid #e0ddd4;
	vertical-align: top;
	text-align: left;
}
.cp-exhibitor-summary th {
	width: 28%;
	background: #f6f3ec;
	font-weight: 600;
	white-space: nowrap;
}
.cp-exhibitor-summary td a {
	margin-right: 0.5em;
}
.cp-exhibitor-summary .cp-summary-list {
	margin: 0;
	padding-left: 1.2em;
}
@media screen and (max-width: 600px) {
	.cp-exhibitor-summary th {
		width: 35%;
		font-size: 0.9em;
	}
}

.shopList {
	width: 100%;
	display: grid;
	gap: 16px;
	grid-template-columns: repeat(2, 1fr);
	margin: 0;
	padding: 0;
}

@media screen and (min-width: 768px) {
	.shopList {
		grid-template-columns: repeat(5, 1fr);
	}
}

.shopList li,
.shopList ul,
.shopList p {
	list-style-type: none;
	margin: 0;
	padding: 0;
}

.shopList__logo img {
	width: 100%;
	aspect-ratio: 1 / 1;
	object-fit: contain;
	background-color: #fff;
}

.shopList__title {
	font-weight: bold;
	font-size: 16px;
	margin-top: 8px !important;
}

.shopList__date {
	overflow: hidden;
	margin-top: 8px !important;
}

.shopList__date li {
	float: left;
	font-size: 11px;
	background-color: #ddd;
	font-weight: bold;
	margin-right: 8px;
	padding: 4px 12px;
	color: #999;
}

.shopList__date li.active {
	background-color: #333;
	color: #fff;
}

.shopList__genre {
	overflow: hidden;
	margin-top: 12px !important;
}

.shopList__genre li {
	float: left;
	font-size: 11px;
	background-color: #efebe5;
	padding: 4px 8px;
	border-radius: 12px;
	margin-right: 8px !important;
	margin-bottom: 8px !important;
}

.shopList__linkItem a {
	text-decoration: none;
	text-align: center;
	position: relative;
	display: block;
	color: #333;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 8px !important;
	padding: 8px 0 !important;
}

.shopList__linkItem a::after {
	content: "";
	height: 1px;
	display: block;
	width: 100%;
	position: absolute;
	bottom: 0;
	left: 0;
	background-color: #333;
}

/* Vol別ジャンルウィジェット */
.cp-genre-tagcloud {
	display: flex;
	flex-wrap: wrap;
	gap: 6px;
}

.cp-genre-tagcloud .tag-cloud-link {
	display: inline-block;
	padding: 4px 10px;
	font-size: 13px !important;
	background-color: #efebe5;
	border-radius: 16px;
	color: #333;
	text-decoration: none;
	transition: background-color 0.2s;
}

.cp-genre-tagcloud .tag-cloud-link:hover {
	background-color: #ddd;
}

.cp-genre-tagcloud .cp-genre-active {
	background-color: #333;
	color: #fff;
}
