.column_intro_text {
	margin-top: 20px;
}

.column_intro_text p {
	margin: 0 0 1.6em;
	line-height: 2;
}

/* 一覧全体 */
.ijga-column-archive {
	display: block;
	margin-bottom: 40px;
}

/* 1記事カード */
.ijga-column-card {
	margin-bottom: 30px;
	padding-bottom: 30px;
	border-bottom: 1px solid #ddd;
}

/* カード全体をリンク化 */
.ijga-column-card__link {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	text-decoration: none;
	color: inherit;
}

/* 画像 */
.ijga-column-card__image {
	width: 320px;
	flex: 0 0 320px;
	overflow: hidden;
}

.ijga-column-card__image img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

/* 右側本文エリア */
.ijga-column-card__body {
	flex: 1;
	min-width: 0;
}

/* 日付・NEW */
.ijga-column-card__meta {
	display: flex;
	align-items: center;
	gap: 10px;
	margin-bottom: 12px;
}

.ijga-column-card__date {
	font-size: 14px;
	line-height: 1.6;
	color: #666;
}

.ijga-column-card__new {
	display: inline-block;
	padding: 2px 8px;
	font-size: 11px;
	line-height: 1.4;
	background: #111;
	color: #fff;
}

/* タイトル */
.ijga-column-card__title {
	margin: 0 0 16px;
	font-size: 24px;
	line-height: 1.5;
	font-weight: bold;
	word-break: normal;
	overflow-wrap: break-word;
}

/* VIEW MORE */
.ijga-column-card__more {
	display: inline-block;
	font-size: 14px;
	line-height: 1.6;
	text-decoration: underline;
}

/* スマホ */
@media screen and (max-width: 767px) {
	.ijga-column-card__link {
		display: block;
	}

	.ijga-column-card__image {
		width: 100%;
		flex: none;
		margin-bottom: 15px;
	}

	.ijga-column-card__image img {
		width: 100%;
		height: auto;
	}

	.ijga-column-card__title {
		font-size: 20px;
	}
}
.ijga-column-archive {
	max-width: 1100px;
	margin: 0 auto 40px;
	padding: 0 20px;
	box-sizing: border-box;
}

.ijga-column-card {
	margin: 0 0 30px;
	padding: 0 0 30px;
	border-bottom: 1px solid #ddd;
}

.ijga-column-card__link {
	display: flex;
	align-items: flex-start;
	gap: 30px;
	text-decoration: none;
	color: inherit;
}

.ijga-column-card__image {
	width: 320px;
	flex: 0 0 320px;
	overflow: hidden;
}

.ijga-column-card__image img {
	display: block;
	width: 100%;
	height: 220px;
	object-fit: cover;
}

.ijga-column-card__body {
	flex: 1;
	min-width: 0;
}

@media screen and (max-width: 767px) {
	.ijga-column-archive {
		padding: 0 15px;
	}

	.ijga-column-card__link {
		display: block;
	}

	.ijga-column-card__image {
		width: 100%;
		flex: none;
		margin-bottom: 15px;
	}

	.ijga-column-card__image img {
		height: auto;
	}
}
/* CTA全体 */
.ijga-cta-block {
	margin: 60px auto;
	padding: 40px 30px;
	background: #0a0a0a;
	color: #fff;
	text-align: center;
}

/* タイトル */
.ijga-cta-title {
	font-size: 24px;
	font-weight: bold;
	margin-bottom: 20px;
	line-height: 1.5;
}

/* テキスト */
.ijga-cta-text {
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 30px;
}

/* ボタンエリア */
.ijga-cta-btn-wrap {
	display: flex;
	flex-direction: column;
	gap: 15px;
	align-items: center;
}

/* 共通ボタン */
.ijga-cta-btn {
	display: block;
	width: 100%;
	max-width: 320px;
	height: 50px;
	line-height: 50px;
	text-align: center;
	border-radius: 50px;
	text-decoration: none;
	font-size: 14px;
	transition: 0.3s;
}

/* 枠線ボタン */
.ijga-cta-btn--outline {
	border: 1px solid #fff;
	color: #fff;
}

/* 塗りボタン */
.ijga-cta-btn--solid {
	background: #fff;
	color: #0a0a0a;
	font-weight: bold;
}

/* ホバー */
.ijga-cta-btn--outline:hover {
	background: #009d42;
	border-color: #009d42;
	color: #fff;
}

.ijga-cta-btn--solid:hover {
	background: #009d42;
	color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {
	.ijga-cta-btn-wrap {
		flex-direction: row;
		justify-content: center;
	}

	.ijga-cta-btn {
		max-width: 260px;
	}
}
/* CTA全体 */
.ijga-cta-block {
	margin: 60px auto;
	padding: 45px 30px;
	background: #0a0a0a;
	color: #fff;
	text-align: center;
}

.ijga-cta-lead {
	font-size: 13px;
	line-height: 1.6;
	margin-bottom: 10px;
	color: #ccc;
}

.ijga-cta-title {
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
	margin-bottom: 18px;
	text-align: center;
	color: #fff;
}

.ijga-cta-text {
	font-size: 14px;
	line-height: 1.9;
	margin-bottom: 30px;
	text-align: center;
	color: #fff;
}

.ijga-cta-btn-wrap {
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 20px;
	max-width: 760px;
	margin: 0 auto;
}

.ijga-cta-btn-col {
	width: calc(50% - 10px);
}

.ijga-cta-btn {
	display: block;
	width: 100%;
	height: 58px;
	line-height: 58px;
	text-align: center;
	border-radius: 50px;
	text-decoration: none;
	font-size: 15px;
	transition: 0.3s;
	box-sizing: border-box;
}

.ijga-cta-btn--outline {
	border: 1px solid #fff;
	color: #fff;
	background: transparent;
}

.ijga-cta-btn--solid {
	background: #fff;
	color: #0a0a0a;
	font-weight: bold;
	border: 1px solid #fff;
}

.ijga-cta-btn--outline:hover {
	background: #009d42;
	border-color: #009d42;
	color: #fff;
	text-decoration: none;
}

.ijga-cta-btn--solid:hover {
	background: #009d42;
	border-color: #009d42;
	color: #fff;
	text-decoration: none;
}

@media screen and (max-width: 767px) {
	.ijga-cta-block {
		padding: 35px 20px;
	}

	.ijga-cta-title {
		font-size: 20px;
	}

	.ijga-cta-btn-wrap {
		display: block;
		max-width: 100%;
	}

	.ijga-cta-btn-col {
		width: 100%;
		margin-bottom: 15px;
	}

	.ijga-cta-btn-col:last-child {
		margin-bottom: 0;
	}
}
.column_content .ttl_pt02 {
	margin-top: 50px;
}

.column_content .ttl_pt02:first-child {
	margin-top: 0;
}
.column_content p {
	margin-bottom: 1.6em;
	line-height: 2;
}