@charset "utf-8";

/*===================================================================

	001. news

===================================================================*/

.news{
	display: flex;
	justify-content: space-between;
}

.left, .right{
	padding: 80px 0 370px;
	display: flex;
	flex-direction: column;
}

.left{
	width: 69.6875%;
	align-items: center;
}

.right{
	width: 30.3125%;
	align-items: flex-start;
	padding-left: 25px;
}

.news__cont{
	width: 98%;
	padding-left: 12.5%;
    margin-right: 20px;
}

.archive-title{
	font-size: 40px;
}

.archive{
	padding: 20px;
	font-size: 16px;
	font-weight: bold;
	line-height: 2;
}

.archive a:hover{
	opacity: .5;
}

/*===================================================================

	002. responsive

===================================================================*/

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

		001. recruit

	==============================================*/

	.news{
		flex-direction: column-reverse;
	}

	.left, .right{
		padding: 0;
		width: 100%;
	}

	.right{
		flex-direction: row;
		overflow-x: scroll;
		overflow-y: hidden;
		align-items: center;
		height: 46px;
		padding-left: 1em;
		margin-bottom: 25px;
	}

	.archive-title{
		font-size: 18px;
	}

	.archive-title::after{
		content: ":";
	}

	.archive{
		display: flex;
		font-weight: normal;
		line-height: 1;
		font-size: 18px;
	}

	.archive a:hover{
		opacity: .5;
	}

	.archive__list:not(:last-of-type){
		border-right: 1px solid #000;
		margin-right: 1em;
		padding-right: 1em;
	}
}