﻿/* -----------------------------------------------------------
    root
-------------------------------------------------------------- */
:root {
	--link: #a29987;
    --linkbg: #fff7f1;
    --en: "Inter", sans-serif;
    --main: #96876D;
    --cmnblack: #333;
    --cmnred: #e63d3d;
    --gray: #888;
    --border1: #ccc;
    --border2: #ddd;
    --cmnbg: #f4f4f4;
	--webicon: "FontAwesome";
	--serif: '游明朝', 'Yu Mincho', '游明朝体', 'YuMincho', 'ヒラギノ明朝 Pro W3', 'Hiragino Mincho Pro', 'ＭＳ Ｐ明朝', 'MS PMincho', serif;
    --sans: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "游ゴシック", YuGothic, "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

/*    NEWS
-------------------------------------------------------------- */
.news_area {
	padding: 80px 0;
}

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

.news_area .news_title {
	font-size: 2.1rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}

.news_area .news_list {
	width: 800px;
}

.news_area .news_list li{
	margin: 0 0 20px;
}
.news_area .news_list li:nth-of-type(3){
	margin: 0;
}
.news_area .news_list li:nth-of-type(n+4){
	display: none;
}

.news_area .news_list a{
	display: flex;
	width: 100%;
	box-sizing: border-box;
	align-items: center;
}
	
.news_area .news_de_title {
	flex: 1;
	font-weight: 400;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

.news_area .cate{
	display: inline-block;
	color: #c1c18b;
	font-size: 1.2rem;
	line-height: 1;
	text-align: center;
	padding: 5px 15px;
	border: 1px solid #c1c18b;
	margin: 0 30px;
}

.news_area .news_more > a{
	font-size: 1.5rem;
}
.news_area .news_more > a::before{
	display: inline-block;
	content: "\f105";
	font-weight: normal;
	font-family: 'FontAwesome';
	padding: 0 8px 0 0;
}

@media screen and (max-width: 768px){
	.news_area {
		padding: 40px 20px 50px;
	}

	.news_area .news_box{
		display: block;
		position: relative;
	}

	.news_area .news_title {
		font-size: 2rem;
	}

	.news_area .news_list {
		width: 100%;
	}

	.news_area .news_list li{
		margin: 25px 0 0;
	}
	.news_area .news_list li:nth-of-type(n+2){
		display: none;
	}

	.news_area .news_list a{
		flex-wrap: wrap;
	}

	.news_area .news_de_title {
		flex: auto;
		flex-shrink: 0;
		width: 100%;
		margin: 10px 0 0;
	}

	.news_area .cate{
		margin: 0 0 0 30px;
	}

	.news_area .news_more{
		position: absolute;
		top: 0;
		right: 0;
	}
}