/* ============================================================
   Erotolk Adult DB — product single page
   設計参考: PopVerseMix .ws-hero / AV+ av_hero CTA方針
   ============================================================ */

/* ----- 全体ラップ ----- */
.eadb-wrap {
	max-width: 900px;
	margin: 24px auto;
	padding: 0 16px;
	box-sizing: border-box;
}

/* ----- パンくず ----- */
.eadb-breadcrumb__list {
	display: flex;
	flex-wrap: wrap;
	gap: 4px;
	list-style: none;
	padding: 0;
	margin: 0 0 12px;
	font-size: 0.8rem;
	color: #888;
}
.eadb-breadcrumb__item + .eadb-breadcrumb__item::before {
	content: "›";
	margin-right: 4px;
}
.eadb-breadcrumb__item a { color: #888; text-decoration: none; }
.eadb-breadcrumb__item a:hover { text-decoration: underline; }
.eadb-breadcrumb__item--current { color: #555; }

/* ----- PR表記 ----- */
.eadb-pr-notice {
	font-size: 0.72rem;
	color: #aaa;
	margin: 0 0 16px;
}

/* ----- ヒーローブロック（PC: 左カバー/右情報） ----- */
.eadb-hero {
	display: flex;
	gap: 28px;
	align-items: flex-start;
	margin-bottom: 40px;
}

.eadb-hero__thumb {
	flex: 0 0 260px;
	width: 260px;
}
.eadb-hero__thumb img {
	width: 100%;
	height: auto;
	border-radius: 4px;
	display: block;
}

.eadb-hero__info {
	flex: 1;
	min-width: 0;
}

.eadb-hero__title {
	font-size: 1.35rem;
	line-height: 1.45;
	margin: 0 0 16px;
}

/* ----- CTAボタン（ヒーロー内） ----- */
.eadb-cta--hero {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-bottom: 18px;
}

.eadb-cta__btn {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	padding: 13px 20px;
	border-radius: 5px;
	font-size: 1rem;
	font-weight: 700;
	text-decoration: none;
	text-align: center;
	transition: opacity 0.15s;
	cursor: pointer;
}
.eadb-cta__btn:hover { opacity: 0.85; }
.eadb-cta__btn--primary {
	background: #d63031;
	color: #fff;
}
.eadb-cta__btn--secondary {
	background: #2d3436;
	color: #fff;
}
.eadb-cta__price {
	font-size: 0.82rem;
	opacity: 0.88;
}

/* ----- メタテーブル ----- */
.eadb-meta {
	width: 100%;
	border-collapse: collapse;
	font-size: 0.88rem;
	margin-top: 4px;
}
.eadb-meta th,
.eadb-meta td {
	padding: 7px 10px;
	border: 1px solid #e0e0e0;
	vertical-align: top;
	text-align: left;
}
.eadb-meta th {
	background: #f7f7f7;
	white-space: nowrap;
	width: 6em;
	font-weight: 600;
}

/* ----- 作品説明 ----- */
.eadb-description {
	line-height: 1.85;
	margin-bottom: 36px;
}

/* ----- リンクカード（説明文後） ----- */
.eadb-link-card {
	display: flex;
	gap: 16px;
	align-items: flex-start;
	border: 1px solid #e0e0e0;
	border-radius: 6px;
	padding: 16px;
	margin-bottom: 32px;
}
.eadb-link-card__thumb {
	flex: 0 0 100px;
	width: 100px;
}
.eadb-link-card__thumb img {
	width: 100%;
	height: auto;
	border-radius: 3px;
	display: block;
}
.eadb-link-card__btns {
	flex: 1;
	min-width: 0;
	display: flex;
	flex-direction: column;
	gap: 8px;
}
.eadb-link-card__title {
	display: block;
	font-size: 0.9rem;
	margin-bottom: 4px;
	line-height: 1.5;
}
.eadb-lc-btn {
	display: block;
	padding: 11px 16px;
	border-radius: 4px;
	font-size: 0.95rem;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	transition: opacity 0.15s;
}
.eadb-lc-btn:hover { opacity: 0.85; }
.eadb-lc-btn--main {
	background: #d63031;
	color: #fff;
}
.eadb-lc-btn--sub {
	background: #636e72;
	color: #fff;
}

/* ============================================================
   SP (〜767px): タイトル→カバー→CTA→テーブル
   ============================================================ */
@media (max-width: 767px) {
	.eadb-hero {
		flex-direction: column;
		gap: 0;
	}

	/* SP表示順: title(1) → thumb(2) → cta(3) → meta(4) */
	.eadb-hero__title  { order: 1; margin-bottom: 12px; font-size: 1.15rem; }
	.eadb-hero__thumb  { order: 2; width: 100%; flex-basis: auto; margin-bottom: 14px; }
	.eadb-cta--hero    { order: 3; }
	.eadb-meta         { order: 4; }

	/* info カラムを flex コンテナに */
	.eadb-hero__info {
		display: flex;
		flex-direction: column;
		width: 100%;
	}

	.eadb-cta__btn { font-size: 1.05rem; padding: 15px 16px; }

	.eadb-link-card {
		flex-direction: column;
	}
	.eadb-link-card__thumb {
		width: 100%;
		flex-basis: auto;
	}
}
