.pickup-container {
	display: flex;
	max-width: 1243px;
	margin: 0 auto;
	padding: 50px 0;
}
.seminar-container {
	display: flex;
	max-width: 1243px;
	margin: 0 auto;
	padding: 50px 0;
	gap: 30px;
}
.archive-container {
	display: flex;
	max-width: 1243px;
	margin: 0 auto;
	padding: 50px 0;
	gap: 30px;
}
.past-container {
	display: flex;
	max-width: 1243px;
	margin: 0 auto;
	padding: 50px 0;
	gap: 30px;
}
.pickup-content {
	width: 100%;
}
.seminar-content {
	width: 100%;
}
.archive-content {
	width: 100%;
}
.past-content {
	width: 100%;
}
.seminar-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
	gap: 20px;
}

.pickup-item {
	display: flex;
	gap: 30px;
	align-items: center;
	background: #fff;
	border-radius: 10px;
	padding: 20px 0;
	width: 100%;
}

.pickup-image img {
	width: 681px; /* 画像幅を固定 */
	height: auto;
	border-radius: 10px;
}

.pickup-details {
	flex: 1;
}

.pickup-title {
	text-align: left;
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 10px;
	text-decoration: none;
}
.pickup-title a {
	color: #000;
	text-decoration: none;
}
.pickup-title a:hover {
	color: #af9448;
	text-decoration: none;
}
.pickup-date,
.pickup-location {
	font-size: 16px;
	color: #000;
	margin: 5px 0;
}

.pickup-tags .tag {
	display: inline-block;
	background: #fff;
	color: #333;
	padding: 5px 10px;
	margin-top: 8px;
	margin-right: 5px;
	border-radius: 20px;
	border: 1px solid var(--Gray-3, #828282);
	background: #fff;
	font-size: 14px;
}
.pickup-hr {
	width: 100%;
	max-width: 681px;
	height: 1px;
	border: 1px solid #e0e0e0;
	margin: 20px 0;
}
.pickup-link {
	display: inline-block;
	margin-top: 47px;
	border-radius: 50px;
	border: 1px solid var(--Kima_green, #af9448);
	background: #fff;
	color: #af9448;
	padding: 10px 20px;
	text-decoration: none;
}

.pickup-link:hover {
	text-decoration: none;
	background: #af9448;
	color: #fff;
}

.seminar-item {
	background: #fff;
	/* border: 1px solid #ddd; */
	border-radius: 10px;
	padding: 15px;
	text-align: center;
	box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
	transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.seminar-item:hover {
	transform: translateY(-10px); /* 上に10px移動 */
	background-color: #f2f2f2; /* 背景色変更 */
	box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15); /* 影の強調 */
}

.seminar-title {
	font-size: 18px;
	margin-top: 10px;
}

.seminar-date,
.seminar-location {
	font-size: 12px;
	color: #666;
	margin: 5px 0;
}

.seminar-tags .tag {
	display: inline-block;
	background: #fff;
	color: #333;
	padding: 5px 10px;
	margin-top: 8px;
	margin-right: 5px;
	border-radius: 20px;
	border: 1px solid var(--Gray-3, #828282);
	background: #fff;
	font-size: 10px;
}

.seminar-item h3 {
	font-size: 18px;
	margin: 10px 0;
	text-align: left;
}

.seminar-item p {
	font-size: 12px;
	color: #666;
	text-align: left;
}

.seminar-item-link {
	display: block;
	color: inherit;
	text-decoration: none;
	height: 100%;
}

.seminar-item-link:hover {
	text-decoration: none;
	color: inherit;
}

.seminar-item img {
	width: 100%;
	border-radius: 10px;
}

.pagination {
	margin-top: 20px;
	text-align: center;
}

.page-header-seminar {
	background-image: url('../images/seminar-header.png');
	/* background-color: #d8cfc2; */
	background-size: cover;
	background-position: center 45%;
	background-repeat: no-repeat;
	height: 350px;
	display: flex;
	align-items: flex-end;
	justify-content: center;
	position: relative;
	margin-top: 10px;
	overflow: hidden;
	max-width: 100%;
}

/* PC版では head-container 内のテキスト要素を非表示 */
.page-header-seminar .head-container {
	display: none;
}

/* セミナータイトルのスタイル */
.seminar-title-header {
	display: flex;
	align-items: center;
	color: #fff;
	font-family: 'Plus Jakarta Sans';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
	padding: 114px 12px 20px;
}

/* 拡大率150%前後のとき専用スタイル */
.page-header-seminar.zoomed-150 {
	height: 270px;
}

/* 拡大率が160%以上のとき専用スタイル */
.page-header-seminar.zoomed-high {
	height: 250px;
}

.pickup-content h2,
.seminar-content h2,
.archive-content h2,
.past-content h2 {
	margin: 20px 0;
	font-weight: 700;
}

.seminar-title {
	display: flex;
	align-items: center;
	margin-top: 0;
	margin-bottom: 20px;
	color: #000;
	font-family: 'Plus Jakarta Sans';
	font-size: 14px;
	font-style: normal;
	font-weight: 700;
	line-height: normal;
}

.pagination {
	text-align: center;
	margin: 40px 0;
}

.pagination a,
.pagination span {
	display: inline-block;
	padding: 10px 20px;
	margin: 5px;
	font-size: 16px;
	border: 1px solid #3e3a39;
	color: #3e3a39;
	text-decoration: none;
	border-radius: 5px;
	transition: background 0.3s;
}

.pagination a:hover {
	background: #af9448;
	color: #fff;
}

.pagination .current {
	background: #3e3a39;
	color: #fff;
	border-color: #3e3a39;
}

/* =================================
   レスポンシブ対応（max-width: 768px）
================================= */
@media (max-width: 768px) {
	/* --- ページヘッダー調整 - スマホ版のみお知らせスタイル適用 --- */
	.page-header-seminar {
		background-image: none !important;
		height: 200px;
		margin: 10px auto;
		padding: 10px 23px;
		font-family: 'Noto Sans JP';
		position: relative;
		overflow: hidden;
		display: block;
	}

	.page-header-seminar::before {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(to bottom, #af9448, #8b7a3a);
		z-index: 1;
	}

	.page-header-seminar::after {
		content: '';
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		background: linear-gradient(180deg, #c8dcd0 13.32%, #fff 64.82%);
		mix-blend-mode: multiply;
		z-index: 2;
	}

	.page-header-seminar .head-container {
		position: relative;
		z-index: 3;
		display: block !important; /* PC版の非表示設定を上書き */
	}

	.page-header-seminar .head-container h1 {
		color: #fff;
		font-family: 'Noto Sans JP';
		font-size: 24px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
	}

	.page-header-seminar .head-container p {
		color: #fff;
		font-family: 'Noto Sans JP';
		font-size: 14px;
		font-style: normal;
		font-weight: 400;
		line-height: 26px;
	}

	.seminar-title-header {
		margin: 30px 0 10px;
		padding: 0;
		color: #fff;
		font-family: 'Plus Jakarta Sans';
		font-size: 14px;
		font-style: normal;
		font-weight: 700;
		line-height: normal;
	}
	.breadcrumbs {
		margin: 70px 20px 0;
	}

	/* --- ピックアップセクション調整 --- */
	.pickup-container {
		flex-direction: column; /* 縦並びに */
		padding: 30px 15px;
		max-width: 100%; /* 横幅は100%に */
	}
	.pickup-item {
		flex-direction: column; /* 画像と詳細情報を縦並びに */
		align-items: center;
		text-align: center;
		gap: 20px; /* 要素間の余白を調整 */
	}
	.pickup-image img {
		width: 100%; /* 画像をコンテナ幅にフィット */
		max-width: 100%;
		height: auto;
		border-radius: 10px;
	}
	.pickup-details {
		padding: 0 10px;
	}
	.pickup-title {
		font-size: 20px; /* タイトルサイズの調整 */
	}
	.pickup-date,
	.pickup-location {
		font-size: 14px;
	}
	.pickup-tags .tag {
		font-size: 12px;
		margin: 0 3px 3px 0;
	}
	.pickup-link {
		padding: 8px 15px;
		font-size: 14px;
		display: none;
	}

	/* --- セミナー一覧調整 --- */
	.seminar-container,
	.archive-container,
	.past-container {
		padding: 30px 15px;
		max-width: 100%;
	}
	.seminar-grid {
		gap: 15px; /* グリッドのギャップを縮小 */
	}
	.seminar-item {
		padding: 10px;
		text-align: center;
	}
	.seminar-item h3 {
		font-size: 16px;
		margin: 15px 0;
	}
	.seminar-date,
	.seminar-location,
	.seminar-item p {
		font-size: 12px;
	}
	.seminar-tags .tag {
		font-size: 11px;
		padding: 4px 8px;
	}
	.seminar-item-link {
		display: block;
		color: inherit;
		text-decoration: none;
		height: 100%;
	}
	.seminar-image img {
		width: 100%;
		border-radius: 10px;
	}
	/* --- ページネーション調整 --- */
	.pagination {
		margin: 10px 0;
	}
	.pagination a,
	.pagination span {
		padding: 8px 15px;
		font-size: 14px;
		margin: 3px;
	}
}
