@charset "utf-8";

/*::::: Home :::::*/
.home {
	max-width: var(--max-width);
	margin: 0 auto 5rem;
}
@media (min-width: 960px) {
	.home .site-nav .site-main-links,
	.home .site-nav .category-nav {
		grid-template-columns: 1fr;
	}
	.home .site-nav .category-nav .accordion-content a {
		border-radius: 0;
	}
	.home .site-nav .close-button {
		display: none;
	}
}

/* Slider */
.section-slider {
	max-width: var(--max-width);
	margin: 0 auto;
}
.section-slider .sliderWrapBnr {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	gap: 1rem;
	padding: 1.5rem;
}
@media (min-width: 560px) {
	.section-slider {
		display: grid;
		grid-template-columns: 1fr 29.6%;
		gap: 1rem;
	}
	.section-slider .sliderWrapBnr {
		grid-template-columns: 1fr;
		padding: 0;
	}
	.section-slider .sliderWrapBnr img {
		width: 100%;
	}
	.section-slider .slick-dots {
		position: absolute;
		right: 0;
		bottom: -2rem;
		left: 0;
	}
	.section-slider .fs-pt-column {
		grid-template-columns: repeat(4, 1fr);
	}
}
/* Column */
.home .fs-pt-column {
	grid-template-columns: repeat(2, 1fr);
	gap: 1.5rem 1rem;
	padding: 0 1.5rem;
}
.home .listItem.fs-pt-column {
	grid-template-columns: 1fr;
	gap: 1rem;
	padding: 0 1.5rem 1rem;
}
.home .listItem .fs-pt-column__heading {
	display: none;
}
.home .fs-pt-column__item {
	grid-column: unset;
	grid-row: unset;
	padding: 0;
}
.home .fs-pt-column__image .post-thumbnail {
	width: 100%;
}
.home .fs-pt-column__heading {
	font-size: 1em;
	font-weight: 400;
}
.home .topInfoList {
	padding: 0 1.5rem;
	margin-bottom: 3rem;
}
.home .topInfoList .itemDate {
	font-weight: 700;
	margin: 0;
}
.home .topInfoList .itemTxt {
	font-size: 1.1em;
	margin: 0;
}
.home .topInfoList .fs-pt-list__item {
	margin: 1rem 0;
}
@media (min-width: 560px) {
	.home .listItem.fs-pt-column {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 960px) {
	.home .fs-pt-column {
		grid-template-columns: repeat(4, 1fr);
		padding: 0 0 1rem;
	}
}

/* Banner */
.home .bnrArea {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	gap: 1rem;
	padding: 0 1.5rem;
}
.home .bnrArea > a {
	display: block;
	width: calc(50% - .5rem);
}
.home .bnrArea > a:first-child {
	width: 100%;
}
@media (min-width: 560px) {
	.home .bnrArea > a {
		width: 23.8%;
	}
	.home .bnrArea > a:first-child {
		width: auto;
		flex: 1;
	}
}

/* About */
.home .about {
	padding: 0 1.5rem;
}
.home .about .aboutLead {
	position: relative;
	display: flex;
	align-items: center;
	margin-bottom: 1.5rem;
}
.home .about .aboutLead .leadImg {
	width: 10rem;
	margin-right: 1rem;
}
.home .about .aboutLead .leadH3 {
	font-size: 1.2em;
}
.home .about .aboutLead .leadName {
	position: absolute;
	right: 0;
	bottom: 0;
	margin: 0;
}
.home .c-linkBtn {
	display: block;
	font-size: 14px;
	font-weight: 700;
	text-align: center;
	text-decoration: none;
	color: #999;
	padding: 1.5rem;
	border: 1px solid #999;
	border-radius: .8rem;
}
.home .c-linkBtn:hover {
	box-shadow: 0 0 0 1px #999 inset;
}
@media (min-width: 560px) {
	.home .about .aboutLead .leadImg {
		width: 15rem;
	}
}
