@charset "UTF-8";

/* ================================================================
   2026.09 / 2026秋セミナー LP 上部プチアップデート
   既存 css/style.css は変更せず、このファイルを追加読込します。
   ================================================================ */

/* MV直下で「答え」と「証拠」を先出しする新エリア */
.seminar-points {
	width: 100%;
	max-width: 768px;
	margin: 0 auto;
	padding:
		clamp(44px, 9vw, 72px)
		8.333333%
		clamp(38px, 8vw, 64px);
	background: linear-gradient(180deg, #f4fbfe 0%, #ffffff 100%);
	border-top: 1px solid rgba(0, 145, 191, 0.10);
	border-bottom: 1px solid rgba(0, 145, 191, 0.10);
}

.seminar-points__inner {
	width: 100%;
	max-width: 640px;
	margin: 0 auto;
}

.seminar-points__eyebrow {
	margin: 0 0 8px;
	color: #0091bf;
	font-size: clamp(12px, 3vw, 16px);
	font-weight: 800;
	line-height: 1.3;
	letter-spacing: 0.18em;
	text-align: center;
}

.seminar-points__title {
	margin: 0;
	color: #183047;
	font-size: clamp(30px, 7.8vw, 48px);
	font-weight: 800;
	line-height: 1.28;
	letter-spacing: 0.02em;
	text-align: center;
}

.seminar-points__title strong {
	color: #e93a32;
	font-size: 1.08em;
	font-weight: 900;
}

.seminar-points__lead {
	margin: clamp(18px, 4.5vw, 28px) 0 0;
	color: #24323a;
	font-size: clamp(14px, 3.6vw, 18px);
	font-weight: 500;
	line-height: 1.8;
	letter-spacing: 0.01em;
	text-align: center;
}

.seminar-points__list {
	display: grid;
	gap: clamp(12px, 3vw, 18px);
	margin-top: clamp(28px, 6vw, 42px);
}

.seminar-point-card {
	display: grid;
	grid-template-columns: clamp(48px, 12vw, 64px) minmax(0, 1fr);
	gap: clamp(14px, 3.5vw, 22px);
	align-items: start;
	margin: 0;
	padding: clamp(18px, 4.4vw, 26px);
	background: #ffffff;
	border: 1px solid rgba(0, 145, 191, 0.18);
	border-radius: clamp(14px, 3.4vw, 20px);
	box-shadow: 0 10px 28px rgba(24, 48, 71, 0.07);
}

.seminar-point-card__no {
	display: flex;
	align-items: center;
	justify-content: center;
	width: clamp(48px, 12vw, 64px);
	height: clamp(48px, 12vw, 64px);
	border-radius: 50%;
	background: #0091bf;
	color: #ffffff;
	font-size: clamp(14px, 3.6vw, 18px);
	font-weight: 900;
	line-height: 1;
	letter-spacing: 0.04em;
}

.seminar-point-card__body h3 {
	margin: 0;
	color: #183047;
	font-size: clamp(18px, 4.6vw, 25px);
	font-weight: 800;
	line-height: 1.45;
	letter-spacing: 0.01em;
}

.seminar-point-card__body p {
	margin: clamp(7px, 1.8vw, 11px) 0 0;
	color: #4c5a64;
	font-size: clamp(13px, 3.4vw, 17px);
	font-weight: 500;
	line-height: 1.72;
}

.seminar-points__proof {
	margin-top: clamp(26px, 6vw, 42px);
	padding:
		clamp(28px, 6vw, 40px)
		clamp(20px, 5vw, 34px)
		clamp(24px, 5.5vw, 36px);
	background: #ffffff;
	border: 2px solid #e93a32;
	border-radius: clamp(16px, 4vw, 24px);
	text-align: center;
	box-shadow: 0 12px 34px rgba(233, 58, 50, 0.08);
}

.seminar-points__proof-label {
	display: inline-block;
	margin: 0 0 clamp(12px, 3vw, 18px);
	padding: 5px 12px;
	border-radius: 999px;
	background: #183047;
	color: #ffffff;
	font-size: clamp(11px, 2.8vw, 14px);
	font-weight: 800;
	line-height: 1.2;
	letter-spacing: 0.12em;
}

.seminar-points__proof-kicker {
	margin: 0;
	color: #12362c;
	font-size: clamp(16px, 4.3vw, 23px);
	font-weight: 800;
	line-height: 1.45;
}

.seminar-points__proof-result {
	margin: 4px 0 0;
	color: #183047;
	font-size: clamp(22px, 5.5vw, 32px);
	font-weight: 800;
	line-height: 1.35;
}

.seminar-points__proof-result strong {
	color: #e93a32;
	font-size: 1.48em;
	font-weight: 900;
	letter-spacing: -0.02em;
}

.seminar-points__proof-note {
	margin: clamp(12px, 3vw, 18px) 0 0;
	color: #4c5a64;
	font-size: clamp(13px, 3.3vw, 17px);
	font-weight: 500;
	line-height: 1.7;
}

/* 新エリア直後のCTA。ボタン画像と #seminar-form 導線は既存を利用 */
.cv-area--points {
	background: #ffffff;
	padding-top: clamp(24px, 5vw, 36px);
	padding-bottom: clamp(30px, 6vw, 44px);
}

.cv-area__context {
	margin: 0 0 clamp(12px, 3vw, 18px);
	color: #183047;
	font-size: clamp(13px, 3.4vw, 17px);
	font-weight: 800;
	line-height: 1.5;
	letter-spacing: 0.04em;
	text-align: center;
}

@media screen and (max-width: 480px) {
	.seminar-points__pc-break {
		display: none;
	}
}

@media screen and (max-width: 374px) {
	.seminar-point-card {
		grid-template-columns: 44px minmax(0, 1fr);
		gap: 12px;
		padding: 16px;
	}

	.seminar-point-card__no {
		width: 44px;
		height: 44px;
		font-size: 13px;
	}
}
