@charset "utf-8";

/*-------------------------------------------------------------------

	#siteContent__aside

-------------------------------------------------------------------*/

#siteContent__aside[data-design-pattern="fill"] {
	background-color: #F5F6F6;
}

@media screen and (max-width:768px) {

	#siteContent__aside[data-design-pattern="fill"] {
		overflow: hidden;
	}

}

@media screen and (min-width:769px) {

	#siteContent__aside[data-design-pattern="fill"] {
	}

}

/* ------------------------------------------------------------------

	.sectionDocument

------------------------------------------------------------------- */

.sectionDocument {
	line-height: 1.5;
}

.sectionDocument__heading {
	font-weight: normal;
	text-align: center;
}

.sectionDocument__content .headingRectangleTextType2 {
	margin-bottom: 1em;
}

.sectionDocument__content .headingRectangleTextType2 ~ .headingRectangleTextType2 {
	margin-top: 2em;
}

@media screen and (max-width:768px) {

	.sectionDocument {
		padding-bottom: 50px;
	}

	.sectionDocument__heading {
		font-size: 22px;
	}

	.sectionDocument__header[data-header-type="description"] .sectionDocument__description {
		margin-top: 20px;
	}

}

@media screen and (min-width:769px) {

	.sectionDocument {
		padding-bottom: 70px;
		padding-top: 50px;
	}

	.sectionDocument__heading {
		font-size: 30px;
	}

	.sectionDocument__header[data-header-type="description"] .sectionDocument__description {
		margin-top: 30px;
	}

	.sectionDocument__content {
		font-size: 14px;
	}

}

/*-------------------------------------------------------------------

	.listTopics

-------------------------------------------------------------------*/

.listTopics {
	list-style: none;
	margin: 0;
	padding: 0;
}

.listTopics li {
	display: flex;
	padding-left: 1em;
	position: relative;
}

.listTopics li a:link,
.listTopics li a:visited {
	color: #333;
}

.listTopics li a:hover {
	color: #d6000f;
}

.listTopics li::before {
	border-color: transparent transparent transparent #000;
	border-style: solid;
	border-width: 4px 5px;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 0.4em;
}

.listTopics .date {
	flex-shrink: 0;
}

@media screen and (max-width: 768px) {

	.listTopics {}

	.listTopics li {
		font-size: 14px;
	}

	.listTopics li + li {
		margin-top: 10px;
	}

	.listTopics li:nth-child( n + 6 ) {
		display: none;
	}

	.listTopics .date {
		width: 6em;
	}

}

@media screen and (min-width: 769px) {

	.listTopics {}

	.listTopics li {
		font-size: 14px;
	}

	.listTopics li + li {
		margin-top: 10px;
	}

	.listTopics .date {
		width: 105px;
	}

}

/*-------------------------------------------------------------------

	.navAside

-------------------------------------------------------------------*/

.navAside ul {
	display: flex;
	flex-wrap: wrap;
}

.navAside[data-item-justify="center"] ul {
	justify-content: center;
}

.navAside a {
	align-items: center;
	background-color: #fff;
	border: 1px solid #000;
	box-sizing: border-box;
	color: #000;
	display: flex;
	font-size: 14px;
	height: 100%;
	padding: 12px 15px 12px 35px;
	position: relative;
}

.navAside a::before {
	border-color: transparent transparent transparent #000;
	border-style: solid;
	border-width: 5px 8px;
	content: "";
	display: block;
	left: 15px;
	margin-top: -4px;
	position: absolute;
	top: 50%;
}

.navAside[data-button-type="anchor"] a::before {
	border-color: #000 transparent transparent transparent;
	border-width: 8px 5px;
	margin-top: -4px;
}

@media screen and (max-width:768px) {

	#siteContent__aside .navAside {
		padding: 0 15px;
	}

	.navAside {
		margin: 30px 0;
	}

	.navAside ul {
		flex-wrap: wrap;
		gap: 20px;
	}

	.navAside a {
		font-size: 12px;
	}

	.navAside[data-item-col-sp="1"] {
		flex-direction: column;
	}

	.navAside[data-item-col-sp="1"] li {
		width: 100%;
	}

	.navAside[data-item-col-sp="2"] li {
		width: calc( calc( 100% - 20px ) / 2 );
	}

}

@media screen and (min-width:769px) {

	#siteContent__aside .navAside {
		margin: 0 auto;
		padding: 70px 0;
		width: 1000px;
	}

	.navAside ul {
		gap: 30px 50px;
	}

	.navAside li {
	}

	.navAside[data-item-col-pc="3"] li {
		width: calc( calc( 100% - 50px * 2 ) / 3 );
	}

	.navAside[data-item-justify="center"] ul {
		justify-content: center;
	}

}

/* ------------------------------------------------------------------

	.sitemap

------------------------------------------------------------------- */

.sitemap {
	display: grid;
	grid-template-rows: auto;
}

.sitemap section {
}

.sitemap section h4 {
	color: #000;
	font-weight: 500;
	margin-bottom: 0.75em;
}

.sitemap section h4 a {
	color: #000;
}

.sitemap section h4 a:hover {
	text-decoration: underline;
}

.sitemap section ul {
	list-style: none;
	margin: 0;
	padding: 0;
}

.sitemap section ul li {
	display: flex;
	padding-left: 1em;
	position: relative;
}

.sitemap section ul li a:link,
.sitemap section ul li a:visited {
	color: #333;
}

.sitemap section ul li a:hover {
	color: #d6000f;
}

.sitemap section ul li::before {
	border-color: transparent transparent transparent #000;
	border-style: solid;
	border-width: 4px 5px;
	content: "";
	display: block;
	left: 0;
	position: absolute;
	top: 0.4em;
}

@media screen and (max-width:768px) {

	.sitemap {
		grid-template-columns: repeat(2, 1fr);
		grid-gap: 30px;
	}

	.sitemap section h4 {
		font-size: 18px;
	}

	.sitemap section ul li + li {
		margin-top: 5px;
	}

}

@media screen and (min-width:769px) {

	.sitemap {
		grid-template-columns: repeat(3, 1fr);
		grid-gap: 50px 32px;
	}

	.sitemap section h4 {
		font-size: 20px;
	}

	.sitemap section ul li {
		font-size: 14px;
	}

	.sitemap section ul li + li {
		margin-top: 10px;
	}

}