@import url('https://fonts.googleapis.com/css2?family=BIZ+UDPMincho&display=swap');

.force-one-column #main {
	width: 100% !important;
	max-width: 100% !important;
}

.force-one-column #main.two-column,
.force-one-column #main.left-set {
	width: 100% !important;
	max-width: 100% !important;
}

.no-sidebar {
	background: #fff;
}

.page-header {
	padding: 0;
	text-align: left;
	margin: 32px 0 30px 0;
	background-color: #1c1311;

	img{
		margin: 0 auto;
	}

	h1.page-title{
		font-family: "BIZ UDPMincho", serif;
		font-weight: 400;
		font-style: normal;
		font-size: 24px;
		border: none;

		span{
			padding: 0;
			margin: 0;
		}

		span::after{
			border: 0;
		}
	}
}

@media screen and (min-width: 62.5em){
	.page-header {
		text-align: center;
		margin: 0 0 30px 0;

		h1.page-title{
			font-size: 36px;
		}
	}
}

#content {
	margin: 0 10px;
}

@media screen and (min-width: 62.5em){
	.page-header {
		padding-top: 120px !important;
	}
	
	#content {
		margin: 0;
	}
}

.category-section {
	margin-bottom: 40px;
}

.category-section h2 {
	font-size: 24px;
	margin-bottom: 40px;
	padding-bottom: 10px;
	text-align: center;
	position: relative;
	display: inline-block;
	width: 100%;
}

.category-section h2::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translateX(-50%);
	width: 60px;
	height: 3px;
	background: #333;
}

.category-grid {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 10px;
	max-width: 1000px;
	margin: 0 auto;
}

.category-grid a {
	text-decoration: none;
	color: #333;
}

.category-grid img {
	width: 100%;
	height: auto;
	display: block;
	margin-bottom: 10px;
}

.category-grid .post-title {
	font-size: 14px;
}

@media screen and (min-width: 62.5em){
	.category-grid {
		grid-template-columns: repeat(3, 1fr);
		gap: 50px;
	}
}