.div-flex {
	display: flex;
	align-items: center;
}
/* メインコンテナ */
.main-container {
	max-width: 1200px;
	margin: 4rem auto;
	padding: 0 2rem;
	display: flex;
	gap: 4rem;
}

/* 記事カード */
.article-card {
	background: white;
	border-radius: 8px;
	overflow: hidden;
	max-width: 720px;
	margin: 0 auto 3rem;
	box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);
	transition: all 0.3s ease;
	border: 1px solid var(--border-light);
}

.article-card:hover {
	transform: translateY(-5px);
	/* 熾火の表現: カードの影を暖色系のグロー（発光）に変更 */
	border-color: var(--soft-ember);
	box-shadow: 0 8px 25px rgba(211, 84, 0, 0.2);
}

/* === イメージ画像セクションは変更しない === */
.article-image {
	width: 100%;
	height: auto;
	object-fit: cover;
	position: relative;
	overflow: hidden;
}

.fire-visual {
	width: 100%;
	height: 100%;
	background: linear-gradient(135deg, var(--celadon) 0%, var(--dark-brown) 100%);
	display: flex;
	align-items: center;
	justify-content: center;
	position: relative;
}

.fire-icon {
	font-size: 3rem;
	opacity: 0.3;
	color: var(--soft-ember);
	animation: gentle-glow 3s ease-in-out infinite;
}

@keyframes gentle-glow {
	0%, 100% { opacity: 0.3; transform: scale(1); }
	50% { opacity: 0.5; transform: scale(1.05); }
}
/* ======================================= */

.article-content {
	padding: 2rem 2.5rem 2.5rem;
}

.post-date {
	font-size: 0.875rem;
	color: var(--light-gray);
	margin-bottom: 0.75rem;
}

.post-category {
	display: inline-block;
	font-size: 0.75rem;
	color: var(--ember-orange);
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 0.1em;
	margin-bottom: 1rem;
}

.post-title {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.75rem;
	font-weight: 600;
	color: var(--sumi-black);
	margin-bottom: 1rem;
	line-height: 1.4;
}

.post-title a {
	color: inherit;
	text-decoration: none;
	transition: color 0.3s ease;
}

.post-title a:hover {
	color: var(--ember-orange);
}

.post-excerpt {
	font-size: 0.95rem;
	color: var(--text-gray);
	line-height: 1.8;
	margin-bottom: 1.5rem;
}

.read-more {
	color: var(--ember-orange);
	text-decoration: none;
	font-size: 0.9rem;
	font-weight: 500;
	display: inline-flex;
	align-items: center;
	gap: 0.5rem;
	transition: all 0.3s ease;
}

.read-more:hover {
	gap: 0.75rem;
	/* 熾火の表現: リンクの文字色と影 */
	color: var(--ember-glow);
	text-shadow: 0 0 5px rgba(211, 84, 0, 0.4);
}

.widget {
	background: white;
	width: 280px;
	height: 340px;
	padding: 2rem;
	margin-bottom: 2rem;
	border-radius: 8px;
	box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
	border: 1px solid var(--border-light);
}

.widget:hover {
	transform: translateY(-5px);
	/* 熾火の表現: カードの影を暖色系のグロー（発光）に変更 */
	border-color: var(--soft-ember);
	box-shadow: 0 8px 25px rgba(211, 84, 0, 0.2);
}

.widget-title {
	font-family: 'Noto Serif JP', serif;
	font-size: 1.25rem;
	font-weight: 600;
	color: var(--sumi-black);
	margin-bottom: 1.5rem;
	padding-bottom: 1rem;
	/* 熾火の表現: 見出しの下線を暖かい色に */
	border-bottom: 2px solid var(--soft-ember);
}

.profile-text {
	line-height: 1.5rem;
	max-height: 7rem;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-line-clamp: 4;
	-webkit-box-orient: vertical;
	font-size: 0.9rem;
	line-height: 1.8;
	color: var(--text-gray);
}

.fireband-note {
	font-family: 'Noto Sans JP', sans-serif;
	font-size: 0.85rem;
	color: var(--ember-orange);
	margin-top: 1rem;
	opacity: 0.8;
	font-weight: 500;
}

/* カテゴリーリスト */
.category-list {
	list-style: none;
}
.category-list li {
	margin-top: 1.6rem;
}
.category-list li:first-child {
	margin-top: 0;
}
.category-list li input {
	width: 100%;
}

.category-item {
	padding: 0.75rem 0;
	border-bottom: 1px dotted var(--border-light);
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.category-item:last-child {
	border-bottom: none;
}

.category-link {
	color: var(--text-gray);
	text-decoration: none;
	font-size: 0.9rem;
	transition: all 0.3s ease;
	position: relative;
	padding-left: 0;
}

.category-link:hover {
	color: var(--ember-orange);
	padding-left: 0.5rem;
}

.category-count {
	font-size: 0.85rem;
	color: var(--light-gray);
}

/* 検索ボックス */
.search-box {
	position: relative;
	margin-bottom: 1rem;
}

.search-input {
	width: 100%;
	padding: 0.75rem 1rem;
	border: 1px solid var(--border-light);
	border-radius: 25px;
	font-size: 0.9rem;
	transition: border-color 0.3s ease;
}

.search-input:focus {
	outline: none;
	border-color: var(--ember-orange);
}

.search-icon {
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%);
	color: var(--light-gray);
}

.search-btn {
	cursor: pointer;
    background: var(--washi-beige);
	color: var(--ember-orange);
	display: inline-block;
	width: 40%;
	height: 30px;
	margin: 2rem 0 0 30%;
    padding: 0.2rem 0.2rem;
    border: none;
    transition: background-color 0.3s ease, color 0.3s ease;
}
.search-btn:hover {
    background: var(--ember-orange);
    color: var(--washi-beige);
}

@media (max-width: 1024px) {
	
}	

@media (max-width: 768px) {
	.main-container {
		display: grid;
		margin: 2rem auto;
	}
	.articles-section {
		height: auto;
		
	}

	.article-card {
		height: 180px;
		display: flex;
		margin-bottom: 1.5rem;
	}
	.article-image {
		width: 50%;
		height: 100%;
		margin:0;
		padding: 0;
	}

	.fire-visual img {
		height: 100%;
		object-fit: cover;
		object-position: center;
	}

	.article-content {
		width: 50%;
		height: 100%;
		margin: 0;
		padding: 0.3rem;
		display: flex;
		flex-direction: column;
	}

	.post-date {
		font-size: 0.55rem;
		margin-bottom: 0;
	}

	.post-category {
		font-size: 0.45rem;
		margin-bottom: 0;
	}

	.post-title {
		margin-top: 0.5rem;
		font-size: 0.8rem;
	}

	.post-excerpt {
		height: auto;
		font-size: 0.6rem;
	}

	.read-more {
		margin-top: auto;
		font-size: 0.65rem;
	}

	.widget {
		width: auto;
		padding: 1rem;
		height: auto;
	}

	.widget-title {
		font-size: 1rem;
		margin-bottom: 1rem;
		padding-bottom: 0.7rem;
	}

	.category-list li {
		margin-top: 0.8rem;
	}
	
	
}