@charset "utf-8";

/*----------------------
.newsList
----------------------*/
.newsList .wrap{
	margin-bottom: 50px;
}
.newsList ul{
	display: flex;
	flex-wrap: wrap;
	margin-bottom: 20px;
}
.newsList li{
	width: 48%;
	margin-bottom: 30px;
}
.newsList li:nth-of-type(odd){
	margin-right: 4%;
}
.newsList li .img{
	border-radius: 10px;
	overflow: hidden;
	margin-bottom: 7px;
}
.newsList li a p{
	line-height: 1.5;
	margin-bottom: 5px;
}
@media screen and (min-width: 769px) {
	.newsList .wrap{
		margin-bottom: 50px;
	}
	.newsList ul{
		display: flex;
		flex-wrap: wrap;
	}
	.newsList li{
		width: 24%;
		margin-bottom: 30px;
	}
	.newsList li:nth-of-type(n+1){
        margin-right: 12px;
	}
	.newsList li:nth-of-type(4n){
		margin-right: 0%;
	}
	.newsList li .img{
		margin-bottom: 7px;
	}
	.newsList li a p{
		line-height: 1.5;
		margin-bottom: 5px;
	}
}
/*----------------------
#mv
----------------------*/
.detail #mv .wrap{
	margin-bottom: 50px;
}
/*----------------------
.detailWrap
----------------------*/
.detailWrap{
	position: relative;
	margin-bottom: 50px;
}

.detailText{
	position: relative;
	padding-bottom: 20px;
	margin-bottom: 20px;
}
.detailText:after{
	content: '';
	position: absolute;
	right: 0;
	left: 0;
	bottom: 0;
	top: 0;
	margin: auto;
	width: 100%;
	height: 100%;
	border-bottom: 1px dotted #d1d1d6;
}
.detailWrap h2{
	/* width: 90%; */
	margin: auto 0 10px;
	font-size: 24px;
	font-weight: bold;
	line-height: 1.5;
}

.thumbnail{
	margin-bottom: 20px;
}
.detailWrap p:not(.comment):not(.time):not(.favorite){
	font-size: 16px;
	line-height: 1.8;
	margin-bottom: 20px;
	text-align: left;
}
.detailWrap p:not(.comment):not(.time):not(.favorite):last-of-type{
	margin-bottom: 0;
}
.detailWrap p.time{
	/* width: 90%; */
	margin: auto 0 20px;
	text-align: right;
}
.detailWrap .iconArea{
	/* width: 90%; */
	margin: auto;
}
@media screen and (min-width: 769px) {
	#detailArea .detailWrap{
		flex-direction: column;
	}
	.thumbnail{
		margin-bottom: 30px;
	}
	.detailWrap p:not(.comment){
		margin-bottom: 30px;
	}
}
