@charset "utf-8";

.newsWrap *{
	box-sizing: border-box;
}

/* News Archives Wrap */
.newsWrap{
	max-width: 90%;
	margin: 0 auto;
	background: #fff;
	color: #333;
}
.newsWrap a{
	color: #333;
	text-decoration: none;
}
.newsWrap .page_title{
	margin-top: 3.3rem;
	margin-bottom: 3.3rem;
	font-family: 'Brown';
	font-size: 25px;
	line-height: 1.8;
	letter-spacing: 0.2em;
	text-align: center;
}

/* News Archives */
.newsArchive{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	max-width: 1700px;
	width: 100%;
	margin: 0 auto 150px;
}
.newsArchive > li{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	width: calc( (100% - 6.66%) /2 );
	margin: 0;
	padding: 40px 0 40px;
	border-top: 1px solid #ccc;
	list-style: none;
}
.newsArchive > li:nth-child(odd){
	margin-right: 6.66%;
}
.newsArchive > li:nth-last-child(-n+2){
	border-bottom: 1px solid #ccc;
}

/* Left side of News Archives */
.newsArchive > li .thumb{
	align-self: flex-start;
	max-width: none;
	width: 45%;
	height: auto;
}
.newsArchive > li .thumb img{
	max-width: 100%;
	height: auto;
	outline: 1px solid #eee;
	opacity: 1;
	transition-duration: 0.3s;
	transition-property: opacity;
}
.newsArchive > li .thumb:hover img{
	opacity: 0.6;
}

/* Right side of News Archives */
.newsArchive .container{
	position: relative;
	width: 55%;
	padding-left: 30px;
}

.newsArchive .tagList{
	display: flex;
	flex-flow: row wrap;
	justify-content: flex-start;
	margin: 0 0 30px;
	padding: 0;
	list-style: none;
}
.newsArchive .tagList > li{
	min-width: 135px;
	margin: 0;
	padding: 5px 5px 5px;
	line-height: 1.6em;
	border: 1px solid #333;
	border-radius: 50px;
	text-align: center;
	cursor: default;
}
.newsArchive .title{
	margin: 0 0 20px;
	font-size: 1.35rem;
	font-weight: normal;
	line-height: 1.6em;
	letter-spacing: 0.05em;
}
.newsArchive .contents{
	word-break: break-all;
	font-size: 1.2rem;
	line-height: 1.9em;
	margin-bottom: 4rem;
	text-align: justify;
}

.newsArchive .btn{
	display: inline-block;
	position: absolute;
	bottom: 0;
	min-width: 125px;
	padding: 8px 18px 8px 18px;
	border: 1px solid #000;
	background-color: #fff;
	color: inherit;
	text-align: center;
	transition-duration: 0.3s;
	transition-property: background-color, color;
	border-radius: 5px;
}
.newsArchive .btn:after{
	content: "";
	display: block;
	width: 0.5em;
	height: 0.5em;
	position: absolute;
	top: 50%;
	margin-top: -0.3em;
	right: 1.0em;
	border-top: #333 solid 1px;
	border-right: #333 solid 1px;
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
	transition-duration: 0.3s;
	transition-property: border-color;
}
.newsArchive .btn:hover{
	background-color: #000;
	color: #fff;
}
.newsArchive .btn:hover:after{
	border-color: #fff;
}



@media screen and (max-width: 768px) {
	.newsArchive .container{
		padding-left: 20px;
	}

	.newsArchive .tagList > li{
		min-width: 60%;
		padding: 3px 3px 3px;
	}
	
	.newsArchive .contents{
	margin-bottom: 7rem;
	}

	.newsArchive .btn{
		min-width: auto;
	}
} /*End of @media(max-width: 768px)*/

@media screen and (max-width: 767px) {
	.newsWrap{
		max-width: none;
	}

	.newsArchive{
		width: calc(100% - 45px);
		margin: 0 auto;
	}
	.newsArchive > li{
		width: auto;
	}
	.newsArchive > li:nth-child(odd){
		margin-right: auto;
	}
	
	.newsArchive .tagList {
	font-size: 1rem;
    margin: 0 0 20px;
	}

	.newsArchive .container{
		padding-left: 20px;
	}

	.newsArchive .contents{
		line-height: 1.7;
	}

	.newsArchive .title{
		font-size: 1.2rem;
		margin: 0 0 15px;
	}

} /*End of @media(max-width: 767px)*/

@media screen and (max-width: 374px) {
	.newsArchive .container{
		padding-left: 15px;
	}

	.newsArchive > li{
		position: relative;
	}

	.newsArchive .container{
		position: initial;
	}

	.newsArchive .tagList{
		margin-bottom: 15px;
	}
	.newsArchive .tagList > li{
		min-width: auto;
		padding: 3px 10px;
	}

	.newsArchive .title{
		margin-bottom: 15px;
		font-size: inherit;
	}

	.newsArchive .contents{
		min-height: 120px;
		line-height: 1.7;
	}

	.newsArchive .btn{
		bottom: 48px;
		left: 50%;
		transform: translateX(-50%);
	}
} /*End of @media(max-width: 374px)*/
