@charset "UTF-8";

/* 製品カタログ */
/* -------------------------------------------------- */
.lowerSection {
	padding: 80px 0 150px;
}

#catalogTop {
	margin: 0 0 80px;
	border: none;
	background: #faf8f8;
}

#catalogTop.catalogNote a {
	margin-left: 1em;
	color: #C47661;
	text-decoration: underline;
}

.catalogLatest {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
	gap: clamp(20px, 5%, 80px);
}

.catalogLatest_img img {
	width: 100%;
	height: auto;
}

.catalogLatest_copy {
	flex: 1;
	max-width: 500px;
	min-width: 400px;
	width: 100%;
}

.catalogLatest_copy h2 {
	margin-bottom: 12px;
	font-family: "Zen Old Mincho", serif;
	font-size: 3.2rem;
	font-weight: 400;
}

.catalogLatest_year {
	margin-bottom: 35px;
	color: #5EA74A;
	font-weight: 600;
}

.catalogLatest_desc {
	padding-bottom: 2em;
	line-height: 1.6;
}

.catalogLatest_copy .btn4 {
	width: 360px;
	width: 100%;
	max-width: 480px;
}

.catalogLatest_copy .btn4 a {
	padding: 1.2em;
}

#catalogLatest_list {
	width: 100%;
	max-width: 480px;
	margin-top: 1em;
	display: flex;
	flex-direction: column;
	align-items: stretch;
	justify-content: space-between;
	gap: 0.25em;
}

#catalogLatest_list li {
	width: 100%;
}

#catalogLatest_list li.btn4 a {
	width: 100%;
	/* height: 100%; */
	padding: 0.75em 1.5em;
	padding-left: max(3%, 5em);
	font-size: clamp(1.2rem, 1.15vw, 1.3rem);
	color: #222;
	border: 1px solid;
	background: #fff;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

#catalogLatest_list li.btn4 a span {
	margin-left: 1em;
	font-size: clamp(1.0rem, 1.05vw, 1.2rem);
}

#catalogLatest_list li.btn4 a::after {
	content: "";
	position: absolute;
	top: 50%;
	right: 0.75em;
	width: 0.75em;
	height: 0.75em;
	transform: translateY(-50%);
	background: url(../../img/common/icon_arrow_black.svg) 0 0 no-repeat;
	background-size: contain;
	display: inline-block;
}

.catalogNote {
	margin: 65px 0 80px;
	padding: 22px;
	border: 1px solid #5EA74A;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.6rem;
}

.catalogNote a {
	color: #5EA74A;
	font-weight: 600;
}

.catalogArchive h2 {
	margin-bottom: 45px;
	font-family: "Zen Old Mincho", serif;
	font-size: 3.2rem;
	font-weight: 400;
}

.catalogArchive h3 {
	margin: 45px 0 25px;
	font-size: 2rem;
}

.catalogGrid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	gap: 25px;
}

.catalogGrid a {
	color: #333333;
}

.catalogGrid .catalog {
	display: flex;
	align-items: center;
	justify-content: center;
	font-family: "Zen Old Mincho", serif;
	font-size: 1.8rem;
}

.catalogGrid .catalog img {
	width: 100%;
	height: auto;
}

.catalogGrid p {
	margin-top: 10px;
	font-size: 1.2rem;
}

@media screen and (max-width: 767px) {
	.catalogLatest {
		flex-direction: column;
		gap: 30px;
	}

	.catalogLatest_copy {
		max-width: none;
		min-width: auto;
	}

	#catalogLatest_list {
		flex-direction: column;
		gap: 1em 0;
	}

	#catalogLatest_list li {
		width: 100%;
		/* max-width: 480px; */
	}

	#catalogLatest_list li.btn4 a {
		padding-left: max(3%, 2em);
	}

	.catalogLatest_copy a {
		width: 100%;
	}

	.catalogLatest_copy .btn4 {
		width: 100%;
	}

	.catalogLatest_desc {
		padding-bottom: 30px;
	}

	.catalogGrid {
		grid-template-columns: repeat(2, 1fr);
	}
}