@charset "UTF-8";

/* sec01 メインビジュアル */
.sec01 .image img {
	width: 100%;
}

.l-primary {
	display: flex;
	justify-content: space-between;
}
.l-main {
	width: 100%;
	max-width: 1024px;
}
@media screen and (max-width: 1024px) {
	.l-main {
		width: 100%;
		max-width: calc(100% - 266px);
	}
}
@media screen and (max-width: 991px) {
	.l-primary {
		display: flex;
		flex-direction: column;
		justify-content: space-between;
		gap: 50px;
	}
	.l-main {
		max-width: 100%;
	}
}
@media screen and (max-width: 767px) {
}
@media screen and (max-width: 480px) {
}

.column__heading {
	font-size: 30px;
	font-weight: 700;
	margin-bottom: 40px;
}
.column__list {
	display: flex;
	flex-wrap: wrap;
	row-gap: 50px;
	column-gap: 36px;
}
.column__item {
	display: flex;
	flex-direction: column;
	width: calc(48% - 18px);
}
.column__img {
	position: relative;
	width: 100%;
	padding-top: 75%;
	box-shadow: 15px 15px 10px rgba(0, 0, 0, 0.5);
}
.column__img::before {
	display: none;
}
.column__img img {
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	object-fit: cover;
	border-top: 2px solid #d3d7e1;
	border-left: 2px solid #d3d7e1;
}
.no_image {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	margin: auto;
	color: #fff;
	background-color: #9c9c9c;
	border-top: 2px solid #d3d7e1;
	border-left: 2px solid #d3d7e1;
}
.column__txt {
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	width: 100%;
	margin-left: 0;
	margin-top: 30px;
}
.column__txt time {
	font-size: 14px;
	color: #818181;
}
.column__content {
	font-size: 14px;
}
.cat__list a {
	display: inline-block;
	padding: 2px 10px;
	color: #fff;
	background-color: #442209;
	border: 1px solid #676767;
}
.column__ttl {
	font-size: 16px;
	text-decoration: underline;
	margin-bottom: 15px;
}

.column__item.is-hidden {
	display: none;
}
.pagination .is-hidden {
	opacity: 0;
	visibility: hidden;
}
.showMore-area {
	margin-top: 50px;
	padding-top: 30px;
	border-top: 1px solid #676767;
	text-align: center;
}
#showMore {
	position: relative;
	font-size: 16px;
	display: inline-block;
	cursor: pointer;
}
.icon-down::before {
	content: "";
	position: absolute;
	left: 50%;
	bottom: -15px;
	width: 10px;
	height: 10px;
	border-top: 2px solid currentColor;
	border-right: 2px solid currentColor;
	transform: translate(-50%, 0%) rotate(135deg);
}
.icon-right::before {
	content: "";
	position: absolute;
	top: 50%;
	right: 5px;
	width: 10px;
	height: 10px;
	border-top: 2px solid #676767;
	border-right: 2px solid #676767;
	transform: translate(0%, -50%) rotate(45deg);
}
@media screen and (max-width: 1024px) {
}
@media screen and (max-width: 767px) {
	.column__item {
		width: 100%;
	}
}
@media screen and (max-width: 480px) {
}