@charset "utf8";
/* ----------------------------------------------
 * news.html *
 ---------------------------------------------- */

/* 一覧ページ */
#news_sidebar {
    width: 210px;
	margin-right: 50px;
}
#news_sidebar.tab-area {
    flex-direction: column;
    gap: 10px 0;
}
#news_sidebar .tab {
    width: 100%;
}
@media screen and (max-width: 768px) {
	#news_sidebar {
		width: 100%;
		margin-right: 0;
	}
	#news_sidebar.tab-area {
		flex-direction: row;
		gap: 10px 10px;
		margin-bottom: 30px;
	}
	#news_sidebar .tab {
		width: calc((100% - 20px) /3);
	}
}

/* #newslist_cont */
#newslist_cont {
	width: calc(100% - (210px + 50px));
}
#newslist_cont .under-title-01 {
    margin-bottom: 20px;
}

#newslist_cont .item {
    padding: 1em 0;
    width: 100%;
    border-bottom: 1px solid #bbb;
    display: flex;
    align-items: center;
}
#newslist_cont .item:first-of-type { border-top: 1px solid #bbb; }
.news_date {
    font-size: 15px;
    font-weight: bold;
    width: 120px;
    text-align: left;
}
.news_category {
    font-size: 14px;
    line-height: 1.2em;
	text-align: center;
    background-color: #4b6daf;
    color: #fff;
    padding: 0.5em 2em;
    border-radius: 50px;
    width: 180px;
}
#newslist_cont .item .news_title {
    width: calc(100% - 300px);
    padding-left: 1.5em;
    text-align: left;
}
.news_title a {
	
}

@media screen and (max-width: 768px) {
	#newslist_cont { width: 100%; }
	#newslist_cont .item {
		padding: 0.75em 0;
		flex-wrap: wrap;
	}
	.news_date {
		font-size: 14px;
		width: auto;
		margin-right: 1.0em;
	}
	.news_category {
		font-size: 12px;
		padding: 0.3em 1em;
		width: auto;
	}
	#newslist_cont .item .news_title {
		width: 100%;
		padding-left: 0;
		margin-top: 5px;
	}
	.news_title a {
		font-size: 14px;
	}
	
}


/* #newslist_cont ページャー */
#newslist_cont .paging {
    margin: 50px 0;
}
@media screen and (max-width: 768px) {
	#newslist_cont .paging {
		margin: 30px 0;
	}
}



/* ----------------------------------------------
 * news-detail.html *
 ---------------------------------------------- */
.news_detail_cont {}
.news_detail_cont .head {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin-bottom: 20px;
}

.news_detail_cont .news_category {
    width: auto;
}
.news_detail_cont .news_title {
    font-size: 30px;
    line-height: 1.6em;
    margin: 20px 0 50px;
}
.news_detail_cont .subtitle {
    color: #06a3fd;
    font-size: 20px;
    line-height: 1.6em;
    font-weight: bold;
    margin: 30px 0;
}
.news_detail_cont .text {
    margin: 30px 0;
}
.news_detail_cont .text_link {
	
}
.news_detail_cont .text_link + .text_link {
    margin-top: 15px;
}
.news_detail_cont .text_link > a {
    width: auto;
    border-bottom: 1px solid #333;
    display: inline-block;
	position: relative;
}
.news_detail_cont .text_link > a.external::after {
	content: "";
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("../images/i_external.png") no-repeat;
	background-size: contain;
	margin-left: 0.5em;
}
.news_detail_cont .news_img {
    width: 100%;
    margin: 50px 0;
}

@media screen and (max-width: 768px) {
	.news_detail_cont .news_title {
		font-size: 20px;
		margin: 20px 0 30px;
	}
	.news_detail_cont .subtitle {
		font-size: 16px;
		margin: 20px 0;
	}
	.news_detail_cont .text {
		margin: 20px 0;
	}
	
	.news_detail_cont .text_link + .text_link {
		margin-top: 10px;
	}
	
	.news_detail_cont .text_link > a {
		font-size: 14px;
	}
	.news_detail_cont .text_link > a.external::after {
		width: 15px;
		height: 15px;
	}
	
	.news_detail_cont .news_img {
		margin: 30px 0;
	}
	
}



