/* PeniBlo Store Info */
.peniblo-store-info,
.peniblo-store-actresses,
.peniblo-same-area {
	margin: 1.6em 0;
}

/* 店舗情報テーブル */
.peniblo-store-info__title {
	display: flex;
	align-items: center;
	gap: .6em;
	flex-wrap: wrap;
}
.peniblo-store-info__status {
	font-size: .62em;
	font-weight: 700;
	line-height: 1;
	padding: .35em .7em;
	border-radius: 999px;
	color: #fff;
	background: #2f9e44;
}
.peniblo-store-info__status--paused {
	background: #f08c00;
}
.peniblo-store-info__status--closed {
	background: #e03131;
}
.peniblo-store-info__closed-note {
	background: #fff5f5;
	border: 1px solid #ffc9c9;
	color: #c92a2a;
	padding: .7em 1em;
	border-radius: 8px;
	margin: .6em 0 1em;
}
.peniblo-store-info--closed .peniblo-store-info__table {
	opacity: .82;
}
.peniblo-store-info__table {
	width: 100%;
	border-collapse: collapse;
	margin: .4em 0;
}
.peniblo-store-info__table th,
.peniblo-store-info__table td {
	border: 1px solid #e3e3e3;
	padding: .6em .8em;
	text-align: left;
	vertical-align: top;
}
.peniblo-store-info__table th {
	width: 9em;
	background: #f7f7f9;
	font-weight: 700;
	white-space: nowrap;
}
.peniblo-store-info__meta {
	margin-top: .6em;
	font-size: .85em;
	color: #666;
	display: flex;
	gap: 1.2em;
	flex-wrap: wrap;
}
.peniblo-store-info__empty {
	color: #888;
}

/* 在籍AV女優グリッド */
.peniblo-store-actresses__grid {
	list-style: none;
	margin: .6em 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 14px;
}
.peniblo-store-actresses__item {
	margin: 0;
}
.peniblo-store-actresses__link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.peniblo-store-actresses__thumb {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 1 / 1;
	background: #f1f3f5;
	border-radius: 50%;
	overflow: hidden;
}
.peniblo-store-actresses__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.peniblo-store-actresses__noimage {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #adb5bd;
	font-size: .75em;
	letter-spacing: .05em;
}
.peniblo-store-actresses__name {
	display: block;
	margin-top: .4em;
	text-align: center;
	font-size: .9em;
	font-weight: 600;
	line-height: 1.3;
}
.peniblo-store-actresses__empty {
	color: #888;
}

/* 同エリア人気店 */
.peniblo-same-area__grid {
	list-style: none;
	margin: .6em 0 0;
	padding: 0;
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
	gap: 16px;
}
.peniblo-same-area__item {
	margin: 0;
}
.peniblo-same-area__link {
	display: block;
	text-decoration: none;
	color: inherit;
}
.peniblo-same-area__thumb {
	display: block;
	position: relative;
	width: 100%;
	aspect-ratio: 16 / 10;
	background: #f1f3f5;
	border-radius: 10px;
	overflow: hidden;
}
.peniblo-same-area__thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	display: block;
}
.peniblo-same-area__noimage {
	position: absolute;
	inset: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #adb5bd;
}
.peniblo-same-area__name {
	display: block;
	margin-top: .4em;
	font-weight: 700;
	line-height: 1.3;
}
.peniblo-same-area__count {
	display: block;
	margin-top: .2em;
	font-size: .82em;
	color: #e8590c;
	font-weight: 600;
}
