@charset "utf-8";
/* CSS Document */

#title-area {
	background: url(../images/main_image.jpg) 30% center no-repeat;
	background-size: cover;
}




.title-news {
	position: absolute;
	top: auto;
	left: 0;
	right: 0;
	bottom: 0;
	height: auto;
	margin: auto;
	transform: translateY(50%);
	padding: 0 !important;
	text-align: left;
	--w: 20px;
}

.title-news:before,
.title-news:after {
	position: absolute;
	content: "";
	display: block;
	width: var(--w);
	height: var(--w);
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	bottom: 50%;
}

.title-news:before {
	left: calc(var(--w) * -1);
	background-image: var(--round-out-corner-RB);
}

.title-news:after {
	right: calc(var(--w) * -1);
	background-image: var(--round-out-corner-LB);
}

.title-news .news-list {
	width: 100%;
	border: none;
	box-sizing: border-box;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 5px;
}

.title-news .news-list li {
	line-height: 2;
	list-style: none;
	box-sizing: border-box;
	transition: all 0.1s ease-in-out;
	padding: 10px;
}

.title-news .news-list li:hover {
	background-color: transparent;
}

.title-news .news-list a {
	position: relative;
	display: block;
	font-size: 1.3rem;
	text-decoration: none;
	overflow: hidden;
	white-space: nowrap;
	text-overflow: ellipsis;
	margin: 0;
	padding: 10px 25px 10px 10px;
	background-image: url(../../../../common/images/arrow.png);
	background-size: 3px 5px;
	background-repeat: no-repeat;
	background-position: right 20px center;
	border-radius: 3px;
	transition: all 0.1s ease-in-out;
	color: #000;
	font-weight: bolder;
}

.title-news .news-list a:hover {
	background-color: var(--color-link);
	color: #fff;
}

.title-news .news-list time {
	display: inline-block;
	width: 90px;
}

.title-news .news-list .cat {
	display: inline-block;
	width: 90px;
}

.title-news .news-list .ttl {
	width: calc(100% - 90px);
}

.title-news .news-list .cat + .ttl {
	width: calc(100% - 180px);
}

@media screen and (min-width: 768px) {

	.title-news {
		
	}

	.title-news .news-list li a {
		padding: 15px 25px;
	}

	.title-news .news-list li time {
		width: 110px;
	}
	
	.title-news .news-list li .cat {
		width: 90px;
	}
	
	.title-news .news-list li .ttl {
		width: calc(100% - 110px);
	}
	
	.title-news .news-list li .cat + .ttl {
		width: calc(100% - 200px);
	}

}

@media screen and (min-width: 1280px) {

	.title-news {
		
	}

	.title-news .news-list li a {
		font-size: 1.4rem;
	}

	#contents-area #contents-menu li {
		width: calc(25% - 30px);
	}

}






#contents-area .news {
	
}

#contents-area .news h3 {
	margin-bottom: 0;
	padding: 20px 0;
	border-top: 1px solid rgb(217, 217, 217);
	text-align: center;
	line-height: 1.5;
}

#contents-area .news h3 a {
	padding-left: 0 !important;
	color: var(--color-link);
}
#contents-area .news h3 a:hover {
	color: rgb(0, 0, 0);
}

#contents-area .news a:before {
	display: none !important;
}

#contents-area .news-list {
}

#contents-area .news-list li {
	min-height: 50px;
}

#contents-area .news-list li a {
	min-height: 50px;
}




#contents-area #contents-menu {
	width: 100%;
}

#contents-area #contents-menu ul {
	width: 100%;
}

#contents-area #contents-menu li {
	width: 100%;
	margin-bottom: 20px;
	box-sizing: border-box;
}

#contents-area #contents-menu li figure img {
	filter: brightness(1);
	transition: all 0.2s ease-in-out;
	border-radius: 3px;
}

#contents-area #contents-menu li a:hover figure img {
	filter: brightness(1.1);
}

#contents-area #contents-menu li figcaption {
	position: relative;
	padding-left: 25px;
	font-size: 1.5rem;
	font-weight: 600;
	line-height: 1.5;
	transition: all 0.2s ease-in-out;
}

#contents-area #contents-menu li figcaption:before {
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	width: 18px;
	height: 18px;
	margin: auto;
	background-color: #666;
	background-image: url(../../common/images/arrow_round.png);
	background-position: left center;
	background-repeat: no-repeat;
	background-size: 100%;
	border-radius: 50%;
	transition: all 0.2s ease-in-out;
}

#contents-area #contents-menu li a[target="_blank"] figcaption:after {
	width: 1em;
	height: 1em;
	margin-left: 0.25em;
	display: inline-block;
	content: "";
	background-image: url(../../common/images/icon_blank.png);
	background-position: center;
	background-repeat: no-repeat;
	background-size: 10px 9px;
}

#contents-area #contents-menu li a:hover figcaption:before {
	background-color: var(--color-link);
}

#contents-area #contents-menu li a:hover figcaption {
	background-position: 3px center;
}



#contents-area .news-list li time {
	width: 110px;
}

#contents-area .news-list li .ttl {
	width: calc(100% - 110px);
	line-height: 1.6;
}


@media screen and (min-width: 768px) {

	#contents-area #contents-menu ul {
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
	}
	
	#contents-area #contents-menu li {
		width: calc(50% - 10px);
		margin-bottom: 40px;
	}

	/* ---------- */

	#contents-area .news {
		display: flex;
		justify-content: space-between;
	}
	
	#contents-area .news h3 {
		display: flex;
		align-items: center;
		justify-content: center;
		width: calc(25% - 30px);
		padding: 30px 0;
		border-bottom: 1px solid rgb(217, 217, 217);
	}
	
	#contents-area .news h3 a {
		padding-left: 0 !important;
		color: var(--color-link);
	}
	#contents-area .news h3 a:hover {
		color: rgb(0, 0, 0);
	}
	
	#contents-area .news a:before {
		display: none !important;
	}
	
	#contents-area .news-list {
		width: calc(75% - 10px);
	}
}

@media screen and (min-width: 1280px) {

	#contents-area #contents-menu li {
		width: calc(25% - 30px);
	}

}