@charset "utf-8";



/* index ------------------------*/



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

.news__list__title-tex {
	margin-bottom: 40px;
	font-size: 2rem;
	font-weight: 500;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.news__side {
	max-width: calc(150px + 5vw);
	flex-basis: calc(150px + 5vw);
}

.news__side__list {
	position: sticky;
	top: 20px;
}

.news__side__list__item {
	margin-bottom: 10px;
	position: relative;
}

.news__side__list__item:after {
	content: "";
	width: 5px;
	height: 5px;
	display: block;
	border-right: 2px solid rgba(0, 0, 0, 1);
	border-bottom: 2px solid rgba(0, 0, 0, 1);
	position: absolute;
	top: calc(50% - 5px);
	right: 20px;
	transform: rotate3d(0, 0, 1, 45deg);
}

.news__side__list__item:last-child {
	margin-bottom: 0;
}

.news__side__list__item select {
	width: 100%;
	height: 50px;
	padding: 0 10px;
	background-color: rgba(0, 0, 0, .05);
	border: 0;
	font-size: 1.2rem;
	box-sizing: border-box;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
.news__side__list__item select::-ms-expand {
    display: none;
}

.news__side__list__item select:hover,
.news__side__list__item select:focus {
	background-color: rgba(0, 0, 0, .1);
}

.news__contents {
	max-width: calc(100% - (150px + 5vw) - 6vw);
	flex-basis: calc(100% - (150px + 5vw) - 6vw);
}

.news__list {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.news__list__item {
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.news__list__anc {
	padding: 30px 0;
	display: flex;
	text-decoration: none;
}

.news__list__date {
	max-width: calc(50px + 6vw);
	flex-basis: calc(50px + 6vw);
	font-size: 1.3rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, .6);
}

.news__list__wrap {
	max-width: calc(100% - (50px + 6vw));
	flex-basis: calc(100% - (50px + 6vw));
}

.news__list__title {
	margin-bottom: 10px;
	font-size: 1.8rem;
	line-height: 1.6;
}

a:hover .news__list__title {
	text-decoration: underline;
}

.news__list__category {
	display: flex;
}

.news__list__category li {
	height: 20px;
	margin-right: 10px;
	display: flex;
	padding: 0 10px;
	font-size: 1.1rem;
	line-height: 1.4;
	background-color: rgba(0, 0, 0, .08);
	color: rgba(0, 0, 0, .6);
	align-items: center;
}


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

	.news {
		display: block;
	}

	.news__list__title-tex {
		margin-bottom: 20px;
		font-size: 1.6rem;
	}

	.news__side,
	.news__contents {
		width: 100%;
		max-width: none;
	}

	.news__side {
		margin-bottom: 40px;
	}

	.news__side__list {
		display: flex;
	}

	.news__side__list__item {
		max-width: 150px;
		flex-basis: 150px;
		margin-bottom: 0;
		margin-right: 10px;
	}

	.news__side__list__item select {
		height: 40px;
	}

	.news__list__anc {
		display: block;
	}

	.news__list__date,
	.news__list__wrap {
		max-width: none;
		display: block;
	}

	.news__list__date {
		margin-bottom: 10px;
	}

}


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

	.news__list__anc {
		padding: 20px 0;
	}

	.news__list__date {
		margin-bottom: 5px;
		font-size: 1.2rem;
	}

	.news__list__title {
		font-size: 1.6rem;
	}

}



/* detail ------------------------*/



.news__header {
	margin-bottom: 60px;
}

.news__header__title {
	margin-bottom: 10px;
	font-size: 3rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, 1);
}

.news__header__list {
	display: flex;
	align-items: center;
}

.news__header__date {
	margin-right: 20px;
	font-size: 1.3rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, .6);
}

.news__header__cate {
	display: flex;
	align-items: center;
}

.news__header__cate li a {
	height: 20px;
	margin-right: 5px;
	display: flex;
	padding: 0 10px;
	font-size: 1.1rem;
	line-height: 1.4;
	background-color: rgba(0, 0, 0, .08);
	text-decoration: none;
	color: rgba(0, 0, 0, .6);
	align-items: center;
}

.news__header__cate li a:hover {
	background-color: rgba(0, 0, 0, .15);
	color: rgba(0, 0, 0, 1);
}

.news__sublist {
	margin-top: 100px;
	padding-top: 100px;
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.news__sublist__title {
	margin-bottom: 20px;
	font-size: 1.6rem;
	font-weight: 600;
	line-height: 2;
	color: rgba(0, 0, 0, 1);
}

.news__sublist__list {
	border-bottom: 1px solid rgba(0, 0, 0, .1);
}

.news__sublist__list__item {
	border-top: 1px solid rgba(0, 0, 0, .1);
}

.news__sublist__list__anc {
	padding: 20px 0;
	display: flex;
	text-decoration: none;
	justify-content: space-between;
}

.news__sublist__list__date {
	max-width: 60px;
	flex-basis: 60px;
	font-size: 1.1rem;
	line-height: 1.6;
	color: rgba(0, 0, 0, .6);
}

.news__sublist__list__main {
	max-width: calc(100% - 60px - 40px);
	flex-basis: calc(100% - 60px - 40px);
}

.news__sublist__list__title {
	max-width: calc(100% - 60px - 40px);
	flex-basis: calc(100% - 60px - 40px);
	font-size: 1.4rem;
	line-height: 1.6;
}

.news__sublist__list__anc:hover .news__sublist__list__title {
	text-decoration: underline;
}

.news__sublist__list__cate {
	margin-top: 10px;
	display: flex;
	flex-wrap: wrap;
	align-items: center;
}

.news__sublist__list__cate li {
	height: 20px;
	margin-right: 5px;
	display: flex;
	padding: 0 10px;
	font-size: 1.1rem;
	line-height: 1.4;
	background-color: rgba(0, 0, 0, .08);
	color: rgba(0, 0, 0, .6);
	align-items: center;
}


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

	.news__sublist {
		margin-top: 80px;
		padding-top: 80px;
	}

	.news__header__title {
		font-size: 2.5rem;
	}

}


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

	.news__header__list {
		display: block;
	}

	.news__header__date {
		margin-bottom: 10px;
	}

}


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

	.news__sublist__list__anc {
		display: block;
	}

	.news__sublist__list__date,
	.news__sublist__list__title {
		max-width: none;
		display: block;
	}

	.news__header__title {
		font-size: 2rem;
	}

	.news__sublist__list__date {
		margin-bottom: 5px;
	}

}


