/* ==========================================================================
   LINE page – contact-style shell + white card
   ========================================================================== */

.site-main--line {
	padding: 0;
}

.site-main--line > .container {
	max-width: none;
	padding: 0;
}

.line-page-shell {
	max-width: 760px;
	margin: 0 auto;
	padding: var(--page-section-top) 24px 4.5rem;
}

.line-page__lead {
	max-width: 56ch;
	margin: -0.75rem auto 2.25rem;
	padding: 0;
	font-size: 0.9375rem;
	font-weight: 500;
	line-height: 1.85;
	color: rgba(255, 255, 255, 0.92);
	text-align: center;
}

.line-page__lead p {
	margin: 0;
}

.line-page__card {
	position: relative;
	padding: clamp(1.75rem, 4vw, 2.5rem);
	background: rgba(255, 255, 255, 0.97);
	border: 1px solid rgba(122, 162, 202, 0.32);
	border-radius: 10px;
	box-shadow:
		0 24px 56px rgba(6, 13, 24, 0.28),
		0 1px 0 rgba(255, 255, 255, 0.6) inset;
}

.line-page__layout {
	display: grid;
	grid-template-columns: auto minmax(0, 1fr);
	gap: clamp(1.5rem, 4vw, 2.25rem);
	align-items: center;
}

.line-page__qr {
	text-align: center;
}

.line-page__qr-link {
	display: block;
	width: 180px;
	margin: 0 auto;
	border-radius: 12px;
	overflow: hidden;
	box-shadow: 0 0 0 4px rgba(6, 199, 85, 0.08);
	transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.line-page__qr-link:hover {
	transform: translateY(-2px);
	box-shadow:
		0 0 0 4px rgba(6, 199, 85, 0.14),
		0 10px 24px rgba(6, 199, 85, 0.2);
}

.line-page__qr-img {
	display: block;
	width: 100%;
	height: auto;
	background: #ffffff;
}

.line-page__qr-caption {
	margin: 0.75rem 0 0;
	font-size: 0.8125rem;
	font-weight: 600;
	line-height: 1.4;
	color: #445566;
}

.line-page__benefits-label {
	margin: 0 0 0.75rem;
	font-size: 0.8125rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	color: #1b56d0;
}

.line-page__benefits {
	margin: 0 0 1.5rem;
	padding: 0;
	list-style: none;
}

.line-page__benefits li {
	position: relative;
	margin: 0 0 0.65rem;
	padding-left: 1.25rem;
	font-size: 0.975rem;
	font-weight: 600;
	line-height: 1.55;
	color: #222222;
}

.line-page__benefits li:last-child {
	margin-bottom: 0;
}

.line-page__benefits li::before {
	content: "";
	position: absolute;
	top: 0.45em;
	left: 0;
	width: 9px;
	height: 9px;
	background: #06c755;
	clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
}

.line-page__btn {
	display: inline-flex;
	align-items: center;
	justify-content: center;
	min-height: 2.85rem;
	padding: 0.7rem 1.75rem;
	border: 2px solid #049a42;
	border-radius: 8px;
	background: #06c755;
	color: #ffffff;
	font-size: 0.975rem;
	font-weight: 800;
	letter-spacing: 0.04em;
	text-decoration: none;
	box-shadow: 0 8px 20px rgba(6, 199, 85, 0.28);
	transition: background 0.15s ease, transform 0.15s ease, box-shadow 0.15s ease;
}

.line-page__btn:hover {
	background: #05b34c;
	color: #ffffff;
	text-decoration: none;
	transform: translateY(-1px);
	box-shadow: 0 10px 24px rgba(6, 199, 85, 0.34);
}

.line-page__note {
	margin: 1.25rem 0 0;
	font-size: 0.8125rem;
	font-weight: 500;
	line-height: 1.6;
	color: rgba(255, 255, 255, 0.72);
	text-align: center;
}

@media (max-width: 700px) {
	.line-page__layout {
		grid-template-columns: 1fr;
		justify-items: center;
		text-align: center;
	}

	.line-page__content {
		width: 100%;
	}

	.line-page__benefits {
		text-align: left;
		max-width: 22rem;
		margin-left: auto;
		margin-right: auto;
	}

	.line-page__btn {
		width: 100%;
		max-width: 22rem;
	}
}
