/**
 * プラグインストア専用（body.jc-plugin-store だけ）。
 * トークン正本: docs/design-spec-plugin-store.md
 * コーポレート全体・白紙LPには載せない。
 */

body.jc-plugin-store {
	--jc-ink: #3f3f4f;
	--jc-teal: #0dc7ac;
	--jc-cyan: #02c2e1;
	--jc-green: #16cb81;
	--jc-lime: #f3fda8;
	--jc-mint: #f7fffe;
	--jc-gray: #efeff2;
	--jc-grad: linear-gradient(90deg, #02c2e1 25%, #0dc7ac 50%, #16cb81 75%);
	--jc-radius-btn: 100px;
	--jc-radius-card: 16px;
	--jc-wide: 1080px;
	color: var(--jc-ink);
	font-family: Helvetica, "Yu Gothic", YuGothic, "Hiragino Sans", sans-serif;
}

body.jc-plugin-store .article-header,
body.jc-plugin-store .article-title,
body.jc-plugin-store .page-title,
body.jc-plugin-store .c-breadcrumb,
body.jc-plugin-store .emanon-breadcrumb,
body.jc-plugin-store .breadcrumb,
body.jc-plugin-store .first-view,
body.jc-plugin-store .l-breadcrumb {
	display: none !important;
}

body.jc-plugin-store .article,
body.jc-plugin-store .l-content,
body.jc-plugin-store .entry-content,
body.jc-plugin-store .jc-store {
	max-width: none;
	padding: 0;
	margin: 0;
	background: transparent;
}

.jc-store-hero {
	position: relative;
	overflow: hidden;
	background: var(--jc-grad);
	color: #fff;
	padding: 72px 24px 0;
}

.jc-store-hero::before {
	content: "";
	position: absolute;
	inset: 0;
	background-image: url("assets/hero-pattern.svg");
	background-size: 160px 160px;
	opacity: 1;
	pointer-events: none;
}

.jc-store-hero__inner {
	position: relative;
	z-index: 1;
	display: grid;
	grid-template-columns: minmax(0, 1.15fr) minmax(0, 1fr);
	gap: 32px;
	align-items: center;
	max-width: var(--jc-wide);
	margin: 0 auto;
	padding-bottom: 28px;
}

.jc-store-kicker {
	margin: 0 0 14px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.14em;
	color: #fff;
}

.jc-store-hero h1,
.jc-store-title {
	margin: 0 0 16px;
	font-size: clamp(28px, 4vw, 46px);
	font-weight: 700;
	line-height: 1.4;
	color: #fff;
	letter-spacing: 0.02em;
}

.jc-store-mark {
	display: inline;
	background: var(--jc-lime);
	color: var(--jc-ink);
	padding: 0 0.18em 0.04em;
	border-radius: 4px;
	box-decoration-break: clone;
	-webkit-box-decoration-break: clone;
}

.jc-store-lead {
	margin: 0 0 28px;
	font-size: 16px;
	line-height: 1.9;
	color: #fff;
	max-width: 28em;
}

.jc-store-actions {
	display: flex;
	flex-wrap: wrap;
	gap: 12px;
}

.jc-store-btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 56px;
	padding: 16px 32px;
	border-radius: var(--jc-radius-btn);
	font-size: 16px;
	font-weight: 700;
	line-height: 1.3;
	text-decoration: none;
	border: 0;
}

.jc-store-btn--main {
	background: var(--jc-lime);
	color: var(--jc-ink);
}

.jc-store-btn--sub {
	background: #fff;
	color: var(--jc-ink);
}

.jc-store-btn:hover {
	filter: brightness(0.97);
}

.jc-store-hero__visual {
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
}

.jc-store-hero__visual img,
.jc-store-hero__visual svg {
	display: block;
	width: 100%;
	height: auto;
}

.jc-store-wave {
	display: block;
	width: 100%;
	height: 56px;
	margin: 0;
}

.jc-store-shelf {
	background: var(--jc-mint);
	padding: 48px 24px 80px;
}

.jc-store-shelf__inner {
	max-width: var(--jc-wide);
	margin: 0 auto;
}

.jc-store-label {
	margin: 0 0 8px;
	font-size: 13px;
	font-weight: 700;
	letter-spacing: 0.16em;
	color: var(--jc-teal);
	text-transform: uppercase;
}

.jc-store-shelf h2 {
	margin: 0 0 28px;
	font-size: clamp(24px, 3vw, 32px);
	font-weight: 700;
	color: var(--jc-ink);
	line-height: 1.4;
}

.jc-store-card {
	background: #fff;
	border-radius: var(--jc-radius-card);
	padding: 28px 28px 24px;
	box-shadow: 0 10px 28px rgba(13, 199, 172, 0.08);
	max-width: 640px;
}

.jc-store-card h3 {
	margin: 0 0 10px;
	font-size: 22px;
	font-weight: 700;
	color: var(--jc-ink);
}

.jc-store-card p {
	margin: 0 0 18px;
	font-size: 15px;
	line-height: 1.8;
	color: var(--jc-ink);
}

@media (max-width: 820px) {
	.jc-store-hero {
		padding-top: 48px;
	}

	.jc-store-hero__inner {
		grid-template-columns: 1fr;
	}

	.jc-store-actions {
		flex-direction: column;
	}

	.jc-store-btn {
		width: 100%;
	}

	.jc-store-hero__visual {
		order: -1;
		max-width: 360px;
	}
}
