@charset "utf-8";

/* -----------------------------
	ページ幅
-------------------------------- */

#news .contents{
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	position: relative;
}
#news .contents-left{
	width: 860px;
}
#news .contents-right{
	width: 260px;
}


@media screen and (max-width: 768px){
	
	#news .contents {
	}
	#news .contents .contents-left {
		padding: 0 20px;
		width: 100%;
	}
	#news .contents .contents-right {
		padding: 50px 20px 0;
		width: 100%;
	}
	
}


/* -----------------------------
	ページパーツ（　contents-left　）
-------------------------------- */

/*サブタイトル*/
.news-subtitle {
	font-weight: bold;
    font-size: 1.6rem;
    padding: 0 0 20px 0;
	letter-spacing: 0.05em;
}

/*リスト*/
.news-area .news-list{
	border-top: 1px #ddd solid;
	padding: 0 0 50px;
}
.news-area .news-list li{
	display: flex;
	padding: 25px 0;
	border-bottom: 1px #ddd solid;
}
.news-area .date{
	display: inline-block;
	font-size: 1.4rem;
	line-height: 1;
	margin: 4px 10px 0 0;
	color: #333;
	width: 100px;
	letter-spacing: .05em;
}	
.news-area .cate{
	display: inline-block;
	font-size: 1.2rem;
	line-height: 22px;
	text-align: center;
	padding: 0 15px;
	margin: 0 30px 0 0;
	border: 1px #535E6E solid;
	width: 90px;
}
.news-area .title {
	line-height: 1.5;
	width: 610px;
}
.news-area .news-list a{
	display: block;
	color: #333;
}
.news-area .news-list a:hover{
	color: #0E6EB8;
	opacity: 1;
}


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

	/*サブタイトル*/
	.news-subtitle {
		padding: 0 0 20px 0;
	}
	
	/* .news-list */
	.news-area .news-list{
		width: 100%;
		padding: 0 0 30px;
	}
	.news-area .news-list li{
		display: block;
		padding: 25px 0 20px;
	}
	.news-area .date{
		margin: 0 5px 0 0;
		width: auto;
	}	
	.news-area .cate{
		padding: 3px 10px;
		line-height: 1;
		margin: 0 5px 0 0;
		width: auto;
	}
	.news-area .title {
		width: 100%;
		line-height: 1.6;
		margin: 10px 0 0;
	}

}



/* -----------------------------
	ページパーツ（　tag-area　）
-------------------------------- */

#news .tag-area {
	padding: 0 0 30px 0;
}

#news .tag-area .tag-title {
	font-size: 1.5rem;
	padding: 0 0 20px 0;
}

#news .tag-area .tag-list {
	display: flex;
    width: 100%;
    flex-wrap: wrap;
}

#news .tag-area .tag-list li {
	text-align: center;
	margin: 0 10px 10px 0;
	line-height: 1.2;
}

/*#news .tag-area .tag-list li a {
	display: block;
	padding: 6px 15px;
	font-size: 1.2rem;
	background: #fff;
	border: #ccc solid 1px;
	color: #333;
}

#news .tag-area .tag-list li a:hover {
	border: #000 solid 1px;
	opacity: 1;
	background: #000;
	color:#fff;
}*/

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

	#news .tag-area {
		padding: 0;
	}
	
	#news .tag-area .tag-title {
		width: auto;
	}
	
	#news .tag-area .tag-list {
		width: auto;
	}
	
	#news .tag-area .tag-list li {
		margin: 0 8px 8px 0;
	}

	/*#news .tag-area .tag-list li a {
		padding: 4px 10px;
	}*/
	
}

/* -----------------------------------------------------------
    詳細（　title-box　）
-------------------------------------------------------------- */

#news .title-box .date {
	display: inline-block;
    width: 80px;
	font-size: 1.2rem;
	line-height: 1;
	padding: 0 0 15px;
}

#news .title-box .cate {
	display: inline-block;
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
	padding: 3px 15px;
	margin: 0 10px 0 0;
	border: 1px #535E6E solid;
}

#news .title-box .title {
	font-size: 2.8rem;
	font-weight: 700;
	padding: 10px 0 0;
	margin: 0 0 40px;
	line-height: 1.4;
	background: url("../img/line-bg.png") no-repeat left bottom / 100% 4px;
}


@media screen and (max-width: 768px){
	
	#news .title-box .cate {
		padding: 3px 10px;
		margin: 0 5px 0 0;
	}
	
	#news .title-box .date {
		padding: 0 0 10px 0;
		width: 70px;
	}
	
	#news .title-box .title {
		font-size: 2.4rem;
		padding: 5px 0 0;
		margin: 0 0 20px;
	}
	
}


/* -----------------------------------------------------------
    詳細（　detail-contents　）
-------------------------------------------------------------- */

#news .detail-contents {
	line-height: 1.8;
	padding: 0 0 50px !important;
}

/* pタグ */
#news .detail-contents p {
	margin-bottom: 1.5em;
	font-size: 1.6rem;
}

/* 見出し系 */
#news .detail-contents h1,
#news .detail-contents h2,
#news .detail-contents h3,
#news .detail-contents h4{
	font-weight: bold;
	line-height: 1.5;
}

#news .detail-contents h1 {
	margin: 40px 0 20px 0;
	font-size: 2.6rem;
	/*color: #000;*/
}

#news .detail-contents h2 {
    border-bottom: 3px #333 solid;
	font-size: 2.4rem;
	margin: 40px 0 30px 0;
	padding: 0 0 10px;
}

#news .detail-contents h3 {
	border-radius: 6px;
	background: #EFF1F6;
	font-size: 2.2rem;
	margin: 40px 0 30px 0;
	padding: 15px 30px;
}

#news .detail-contents h4 {
	font-size: 2rem;
	margin: 30px 0 20px 0;
	padding: 0 0 0 16px;
    position: relative;
}

#news .detail-contents h4::before {
	background: #0E6EB8;
	border-radius: 3px;
	content: '';
	display: block;
	height: calc(100% - 5px);
	left: 0;
	position: absolute;
	top: 2px;
	width: 4px;
}

#news .detail-contents img{
	display: block;
	height: auto;
	max-width: 860px;
	margin: 0 auto;
}

#news .detail-contents a:link{
	color: #0E6EB8;
	text-decoration: underline;
	display: inline-block;
}
#news .detail-contents a:hover{
	text-decoration: none;
}

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

	
	#news .detail-contents {
		padding: 0 0 30px !important;
	}

	#news .detail-contents h1 {
		margin: 30px 0 10px 0;
		font-size: 2.2rem;
	}
	
	#news .detail-contents h2 {
		margin: 30px 0 20px 0;
		padding: 0 0 8px;
		font-size: 2.0rem;
	}
	
	#news .detail-contents h3 {
		margin: 30px 0 20px 0;
		padding: 15px 15px;
		font-size: 1.8rem;
	}
	
	#news .detail-contents h4 {
		margin: 20px 0 10px 0;
		padding: 0 0 0 15px;
		font-size: 1.8rem;
	}
	
	#news .detail-contents h4::before {
		top: 3px;
		height: calc(100% - 6px);
	}
	
	#news .detail-contents img{
		float: none;
		width: 100%;
		max-width: 480px;
		margin: 0 auto;
		text-align: center;
		height: auto;
		display: block;
	}
}


/* -----------------------------
	詳細ページタグ
-------------------------------- */

#news .tag-box {
	border-top: 1px #DDD solid;
	border-bottom: 1px #DDD solid;
	margin: 0 0 50px 0;
	padding: 20px 0 10px 0;
}

#news .tag-box .tag-title {
	float: left;
	font-size: 1.4rem;
	padding: 5px 0 0 0;
	width: 80px;
}

#news .tag-box .tag-list {
	overflow: hidden;
}

#news .tag-box ul {
	float: left;
	width: 710px;
}

#news .tag-box ul li {
	float: left;
	line-height: 1.2;
	margin: 0 10px 10px 0;
	text-align: center;
}

#news .tag-box ul li a {
	background: #fff;
	border: #ccc solid 1px;
	color: #333;
	display: block;
	font-size: 1.2rem;
	padding: 6px 15px;
}

#news .tag-box ul li a:hover {
	background: #353254;
	border: #353254 solid 1px;
	color: #FFF;
    opacity: 1;
}

@media screen and (max-width: 768px){
	
	#news .tag-box {
		margin: 0 0 30px 0;
	}
	
	#news .tag-box .tag-title {
		padding: 5px 0 0 0;
		width: 60px;
		font-size: 1.3rem;
		float: left;
	}
	
	#news .tag-box ul {
		width: auto;
	}
	
	#news .tag-box ul li {
		margin: 0 8px 8px 0;
	}
	
	#news .tag-box ul li a {
		padding: 4px 10px;
	}
	
}


/* -----------------------------
	詳細ページ back-link
-------------------------------- */

#news .back-link .fas {
	display: inline-block;
    color: #bbb;
    margin: 0 10px 0 0;
}

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

	#news .back-link{
        font-size: 1.5rem;
    }
}