@charset "UTF-8";

/*--------------------------------------------------------------------
 *	共通の記述
 *--------------------------------------------------------------------*/

.link-list-cat {
	display: flex;
	flex-wrap: wrap;
}
.link-list-cat a,
.link-list-group a {
	text-decoration: none;
}
.link-list-cat a:hover {
	opacity: 0.8;
	background-color: #666;
	color: #fff;
}
.link-list-cat > li > a,
.link-list-group > li > span {
	display: flex;
	justify-content: center;
	align-items: center;
	background: #e6e6e6;
	font-weight: bold;
}
.link-list-group li ul {
	list-style: disc;
	list-style-position: inside;
	display: flex;
	flex-wrap: wrap;
}
.link-list-group li ul li {
	position: relative;
	margin-top: 1em;
	border-bottom: 1px solid #cccccc;
	cursor: pointer;
}
.link-list-group li ul li a {
	display: inline-flex;
	padding: 1em 0;
}

/*--------------------------------------------------------------------
 *	737px未満用（SP用）の記述
 *--------------------------------------------------------------------*/
@media screen and (max-width: 767px) {
/* 768px未満用（SP用）の記述 */

h2.ttl-list {
	padding-left: min(7%, 35px);
	background: url(../images/icon_footprint.png) no-repeat left center/min(5%, 28px);
	font-size: 20px;
}
.link-list-cat > li {
	width: 48%;
	margin-right: 3%;
	margin-bottom: 3%;
}
.link-list-cat > li:nth-child(2n) {
	margin-right: 0;
}
.link-list-cat > li > a,
.link-list-group > li > span {
	padding: 1em 0;
	font-size: 14px;
}
.link-list-group > li {
	margin-bottom: 6%;
}
.link-list-group > li > span {
	cursor: pointer;
}
.link-list-group > li > span:hover {
	opacity: 0.8;
	background-color: #666;
	color: #fff;
	transition: all 0.5s ease;
}
.link-list-group li ul {
	margin: 0 3.2% 12%;
}
.link-list-group li ul li {
	width: 44%;
	margin: 1.8em 6% 0 0;
	padding-left: 1%;
}
.link-list-group li ul li:nth-child(2n) {
	margin-right: 0;
}
.link-list-group li ul li a {
	padding: 1em 0;
	font-size: 12px;
}

/* 768px未満用（SP用）の記述 end -------------------------------------*/
}


/*-------------------------------------------------------------------------------*
 *	768px以上用（PC用）・印刷の記述
 *-------------------------------------------------------------------------------*/
@media screen and (min-width: 768px), print {
/* 768px以上用（PC用）・印刷の記述 */

h2.ttl-list {
	padding-left: 2.89%;
	background: url(../images/icon_footprint.png) no-repeat left center/2%;
	font-size: min(2vw, 28px);
}
.link-list-cat > li {
	max-width: 256px;
	width: 18.55%;
	margin-right: 1.8%;
	margin-bottom: 1.8%;
}
.link-list-cat > li:nth-child(5n) {
	margin-right: 0;
}
.link-list-cat > li > a,
.link-list-group > li > span {
	padding: 1em 0;
	font-size: min(1.3vw, 18px);
}
.link-list-group > li {
	margin-bottom: 58px;
}
.link-list-group > li > span {
	max-width: 342px;
	width: 21.375%;
}
.link-list-group li ul {
	margin: 0 3.2%;
}
.link-list-group li ul li {
	max-width: 220px;
	width: 16%;
	margin: 1.8em 3.2% 0 0;
	padding-left: 1%;
}
.link-list-group li ul li:nth-child(5n) {
	margin-right: 0;
}
.link-list-group li ul li a {
	padding: 1em 0;
	font-size: min(1.15vw, 16px);
}

/* 737px以上用（PC用）の記述 end -------------------------------------*/
}



/*--------------------------------------------------------------------
 *	clear fix
 *--------------------------------------------------------------------*/
body#home section#contents {
	zoom: 100%;
}
body#home section#contents:after {
	content: "";
	display: block;
	clear: both;
}