@charset "UTF-8";
/* =============================================================
 * seminar.css — オンラインセミナー申込みページ専用スタイル（モック）
 * -------------------------------------------------------------
 * ・土台は style.css / common.css / event-common.css。ここは固有差分のみ。
 * ・既存の流儀（rem 指定、ブレークポイント 896px）に合わせる。
 * ・テーマ化時はこのファイルを theme/g-nesta/css/seminar.css へ移し、
 *   functions.php の is_page('seminar') 分岐で event-common.css と共に読み込む。
 * ・画像は PDF(GN web_EVENT_03 1P目) からの暫定。デザイナー支給で差し替え。
 * ============================================================= */

/* ヒーロー背景（暫定画像） */
.smnHero {
	background-image: url(../img/seminar/hero.jpg);
}
/* タイトルは2行とも同サイズ・大きめ（スクショ準拠） */
.smnHero .evHero__title {
	font-size: 4.8rem;
	letter-spacing: 0.1em;
	line-height: 1.45;
}
.smnHero .evHero__title .lg {
	margin-top: 0;
	font-size: inherit;
	letter-spacing: 0.06em;
}

/* 2. こんな課題をお持ちの企業様へ（3カード） */
/* セクション上の余白（見出し上のスペースを少し広げる） */
.smnIssue {
	padding-top: 4.5rem;
}
/* この見出しのみ下マージンを0に */
.smnIssue .evHeadLine {
	margin-bottom: 0;
}
.smnIssue__list {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	gap: 2.6rem;
}
.smnIssue__item {
	position: relative;
	width: calc((100% - 5.2rem) / 3);
	margin-top: 8rem;            /* イラストが上にはみ出す分の余白 */
	background: #dad3c5;         /* 本文エリア（薄ベージュ） */
}
/* イラストはカードの上に浮かせ、下半分をカード内に重ねる */
.smnIssue__pho {
	position: absolute;
	left: 50%;
	bottom: 100%;
	transform: translate(-50%, 6.4rem);  /* 高さの約半分をカード内に */
	height: 13rem;
	display: flex;
	align-items: flex-end;
	justify-content: center;
}
.smnIssue__pho img {
	height: 100%;
	width: auto;
}
.smnIssue__ttl {
	padding: 7.4rem 1.4rem 2rem;  /* 上余白を広げイラスト下半分と干渉させない */
	text-align: center;
	color: var(--ev-text);
	font-size: 1.9rem;
	font-weight: 500;
	letter-spacing: 0.04em;
	line-height: 1.55;
	background: #c7bda8;         /* 見出し帯（濃いめベージュ） */
}
.smnIssue__txt {
	padding: 2rem 2rem 2.6rem;
	font-size: 1.4rem;
	letter-spacing: 0.02em;
	line-height: 1.85;
}

/* 3-5. 背景と見どころ＋開催概要：共通の建物背景＋上→下グラデのレイヤー */
.smnBgWrap {
	position: relative;
	background-image: url(../img/seminar/overview-bg.jpg);
	background-size: cover;
	background-position: center bottom;
	background-repeat: no-repeat;
}
/* 上=水色 → 中=白 → 下=透明（建物が透ける）のグラデ */
.smnBgWrap::before {
	content: "";
	position: absolute;
	inset: 0;
	z-index: 0;
	background: linear-gradient(180deg,
		rgba(196, 217, 234, 0.64) 0%,
		rgba(200, 220, 236, 0.54) 35%,
		rgba(210, 227, 240, 0.42) 52%,
		rgba(226, 238, 246, 0.34) 66%,
		rgba(244, 249, 252, 0.28) 80%,
		rgba(255, 255, 255, 0.2) 92%,
		rgba(255, 255, 255, 0.16) 100%);
}
.smnBgWrap > * {
	position: relative;
	z-index: 1;
}

/* 3. セミナーの背景と見どころ（背景はラッパーのグラデを透過利用） */
.smnAbout {
	background: transparent;
}
.smnAbout__lead {
	margin-bottom: 3rem;
	text-align: center;
	color: var(--ev-text);
	font-size: 2.3rem;
	font-weight: 500;
	letter-spacing: 0.08em;
	line-height: 1.6;
}
/* リード見出し下の短い中央罫線 */
.smnAbout__lead::after {
	content: "";
	display: block;
	width: 34rem;
	max-width: 80%;
	height: 0.1rem;
	margin: 2.4rem auto 0;
	background: rgba(41, 41, 41, 0.4);
}
.smnAbout__lead:not(:first-of-type) {
	margin-top: 6rem;
}
.smnAbout__txt {
	max-width: 65rem;
	margin: 0 auto 2.2rem;
	font-size: 1.6rem;
	letter-spacing: 0.04em;
	line-height: 2.1;
	text-align: justify;
}
.smnAbout__check {
	max-width: 65rem;
	margin: 0 auto 3rem;
}
.smnAbout__check li {
	position: relative;
	padding: 0.9rem 1rem 0.9rem 4rem;
	color: var(--ev-red);
	font-size: 2.2rem;
	font-weight: 700;
	letter-spacing: 0.04em;
	line-height: 1.6;
}
.smnAbout__check li:not(:last-child) {
	margin-bottom: 0.8rem;
}
.smnAbout__check li::before {
	content: "✓";
	position: absolute;
	left: 0.4rem;
	top: 1.5rem;
	display: flex;
	align-items: center;
	justify-content: center;
	width: 2.2rem;
	height: 2.2rem;
	color: var(--ev-red);
	font-size: 2.1rem;
	line-height: 1;
	border: 0.1rem solid #000;
}

/* 4. 開催概要：背景はラッパーの建物写真＋グラデを透過利用（独自背景は無効化） */
.smnOutline .evOutline__bg {
	background: transparent;
}
.smnOutline .evOutline__bg::before {
	display: none;
}

/* ===== レスポンシブ（896px 以下） ===== */
@media all and (max-width: 896px) {
	.smnHero .evHero__title {
		font-size: 2.6rem;
		line-height: 1.5;
	}
	.smnIssue__list {
		flex-direction: column;
		gap: 0.5rem;
	}
	.smnIssue__item {
		width: 100%;
		margin-top: 6.5rem;
	}
	.smnIssue__pho {
		height: 12rem;
	}
	.smnIssue__ttl {
		font-size: 1.7rem;
	}
	.smnIssue__txt {
		font-size: 1.3rem;
	}
	.smnAbout__lead {
		margin-bottom: 2rem;
		font-size: 1.8rem;
	}
	.smnAbout__lead::after {
		width: 22rem;
		margin-top: 1.6rem;
	}
	.smnAbout__lead:not(:first-of-type) {
		margin-top: 4rem;
	}
	.smnAbout__txt {
		font-size: 1.3rem;
		line-height: 2;
	}
	.smnAbout__check li {
		padding: 0.6rem 0.4rem 0.6rem 3.4rem;
		font-size: 1.6rem;
	}
	.smnAbout__check li::before {
		top: 0.55rem;
		width: 2rem;
		height: 2rem;
		font-size: 1.9rem;
	}
}
