@charset "utf-8";
/*------------------------------------------------
news
------------------------------------------------*/
.news-box{
	width: 1000px;
	margin: 0 auto;
	padding: 70px 0 90px;
}
.news-cat{
	width: 940px;
	margin: 0 auto 40px;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.news-cat__item{
	width: 180px;
	height: 60px;
}
.news-cat__item a{
	width: 100%;
	height: 100%;
	border: 2px solid #222;
	position: relative;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	background: #fff;
	color: #222;
	font-weight: bold;
	font-size: 15px;
	transition: all 0.25s ease;
	z-index: 1;
}
.news-cat__item a::before{
	content: "";
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	background: #222;
	left: 0;
	right: 0;
	bottom: 0;
	top: 0;
	margin: 0;
	transform-origin: center center;
	transform: scale(0);
	transition: all 0.25s ease;
	z-index: -1;
}
.news-cat__item a svg{
	display: block;
	opacity: 0;
	width: 16px;
	height: 16px;
	position: absolute;
	left: 0;
	right: 0;
	bottom: 8px;
	fill: #ffe400;
	margin: auto;
	transform-origin: center center;
	transform: rotate(90deg);
	transition: all 0.25s ease;
}
.news-cat__item--current a{
	color: #fff;
}
.news-cat__item--current a::before{
	transform: scale(1);
}
.news-cat__item--current a svg{
	opacity: 1;
	bottom: -8px;
}
@media screen and (min-width: 768px) { /* ---- PC ---- */
	.news-cat__item a:hover{
		color: #fff;
	}
	.news-cat__item a:hover::before{
		transform: scale(1);
	}
	.news-cat__item a:hover svg{
		opacity: 1;
		bottom: -8px;
	}
}
.news-cat-current{
	display: none;
}

/* ---------------------------------------------------------------- contents ---- */
.news-inner{
	width: 1000px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: flex-start;
}
.news-list-area{
	width: 710px;
}
.news-list{
	margin-bottom: 35px;
}
.news-list:not(.news-list--attention) .news-list__item:first-child{
	border-top: 1px solid #ccc;
}
.news-list__item{
	border-bottom: 1px solid #ccc;
}
.news-list__link{
	width: 100%;
	padding: 10px 0;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	position: relative;
}
.news-list__link svg{
	fill: #000;
	width: 45px;
	height: 11px;
	position: absolute;
	right: 2px;
	top: 0;
	bottom: 0;
	margin: auto;
}
.news-list__img{
	width: 80px;
	height: 80px;
	margin-right: 25px;
	background-image: url(../../../common/img/noimg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
}
.news-list__content{
	width: calc(100% - 105px);
	padding-right: 50px;
}
.news-list-date{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	line-height: 20px;
	margin-bottom: 10px;
}
.news-list-date__date{
	width: 90px;
	font-size: 13px;
	font-weight: bold;
	line-height: 20px;
}
.news-list__title{
	font-size: 15px;
	line-height: 25px;
}

/* ---------------------------------------------------------------- 重要なお知らせ ---- */
.news-attention-title{
	font-weight: bold;
	text-align: center;
	color: #f1443c;
	font-size: 24px;
	line-height: 35px;
	padding-top: 20px;
	padding-bottom: 0;
	letter-spacing: 0.1em;
	font-weight: bold;
	background: #eee;
	border-radius: 5px 5px 0 0;
}
.news-attention-title i{
	font-size: 30px;
	margin-right: 5px;
}
.news-list--attention{
	background: #eee;
	border-radius: 0 0 5px 5px;
	padding: 5px 20px 15px;
	margin-bottom: 40px;
}
.news-list--attention .news-list__item:last-child{
	border-bottom: none;
}
.news-list--attention .news-term{
	background: #f1443c;
}
.news-list--attention .news-list__content{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	width: 100%;
}
.news-list--attention .news-list-date{
	margin-right: 10px;
	margin-bottom: 0;
}
.news-list--attention .news-list__title{
	width: calc(100% - 210px);
}
/* ---------------------------------------------------------------- side ---- */
.news-side{
	width: 250px;
}
.news-banner{
	margin-bottom: 20px;
}
.news-banner__item{
	margin-bottom: 10px;
}
.news-recommend{
	padding-bottom: 25px;
	background: url(../img/bg_02.png) no-repeat left bottom / 248px auto;
}
.news-recommend__title{
	background: url(../img/bg_01.png) no-repeat left top / cover;
	height: 44px;
	width: 248px;
	margin: 0 auto;
	font-size: 18px;
	line-height: 18px;
	text-align: center;
	padding-top: 5px;
	font-weight: bold;
}
.news-recommend__item{
	border-top: 1px solid #ccc;
}
.news-recommend__item a{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	padding: 10px 0;
}
.news-recommend__item:first-of-type{
	border-top: none;
}
.news-recommend__item:first-of-type a{
	padding-top: 15px;
}
.news-recommend__image{
	width: 60px;
	height: 60px;
	background-image: url(../../../common/img/noimg.jpg);
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-position: center;
	margin-right: 10px;
}
.news-recommend__in{
	width: calc(100% - 70px);
}
.news-recommend__date{
	font-size: 11px;
	line-height: 11px;
	margin-bottom: 5px;
}
.news-recommend__text{
	font-size: 13px;
	line-height: 22px;
}

/* ---------------------------------------------------------------- Detail ---- */
.news-detail{
	width: 710px;
}
.news-detail-top{
	padding-bottom: 20px;
	border-bottom: 2px solid #000;
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: flex-start;
	margin-bottom: 40px;
}
.news-detail-top__img{
	width: 70px;
	height: 70px;
	background-repeat: no-repeat;
	-webkit-background-size: cover;
	background-size: cover;
	background-image: url(../../../common/img/noimg.jpg);
	background-position: center;
	margin-right: 20px;
}
.news-detail-top__content{
	width: calc(100% - 90px);
}
.news-detail-top-date{
	display: flex;
	justify-content: flex-start;
	flex-wrap: wrap;
	align-items: center;
	margin-bottom: 10px;
}
.news-detail-top-date__date{
	font-size: 13px;
	font-weight: bold;
	line-height: 20px;
	width: 90px;
}
.news-detail-top__title{
	font-size: 24px;
	line-height: 30px;
}
.news-detail__cnt{
	border-bottom: 2px solid #000;
	padding-bottom: 20px;
}
/* ---------------------------------------------------------------- SP ---- */
@media screen and (max-width: 767px){
	/*------------------------------------------------
	news
	------------------------------------------------*/
	.news-box{
		width: calc(100% - 30px);
		margin: 0 auto;
		padding: 35px 0 30px;
	}
	.news-cat{
		width: 100%;
		margin: 0 auto;
		display: block;
		border-bottom: 2px solid #222;
		display: none;
	}
	.news-cat__item{
		width: 100%;
		height: 40px;
	}
	.news-cat__item a{
		font-size: 13px;
		border-bottom: none;
	}
	.news-cat__item a::before{
		display: none;
	}
	.news-cat__item a svg{
		display: block;
		opacity: 1;
		width: 10px;
		height: 10px;
		transform: rotate(0deg);
		right: 15px;
		left: auto;
		top:0;
		bottom: 0;
		fill: #222;
	}
	.news-cat__item--current{
		display: none;
	}
	.news-cat-current{
		display: block;
		width: 100%;
		height: 50px;
		background: #222;
		color: #fff;
		font-size: 13px;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		align-items: center;
		font-weight: bold;
		position: relative;
	}
	.news-cat-current svg{
		width: 10px;
		height: 10px;
		fill: #ffe400;
		position: absolute;
		right: 15px;
		top: 0;
		bottom: 0;
		margin: auto;
		transform-origin: center center;
		transform: rotate(90deg);
		transition: all 0.25s ease;
	}
	.news-cat-current.js-accordion--active svg{
		transform: rotate(-90deg);
	}

	/* ---------------------------------------------------------------- contents ---- */
	.news-inner{
		width: 100%;
		display: block;
	}
	.news-list-area{
		margin-top: 14px;
		width: 100%;
		margin-bottom: 30px;
	}
	.news-list{
		margin-bottom: 30px;
	}
	.news-list__link{
		padding: 15px 0;
		align-items: flex-start;
	}
	.news-list__link svg{
		width: 22.5px;
		height: 5.5px;
		right: 0;
	}
	.news-list__img{
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}
	.news-list__content{
		width: calc(100% - 75px);
		padding-right: 30px;
	}
	.news-list-date{
		line-height: 15px;
		margin-bottom: 4px;
	}
	.news-list-date__date{
		width: 80px;
		font-size: 11px;
		font-weight: bold;
		line-height: 15px;
	}
	.news-list__title{
		font-size: 12px;
		line-height: 23px;
	}
	/* ---------------------------------------------------------------- 重要なお知らせ ---- */
	.news-attention-title{
		font-size: 16px;
		line-height: 25px;
		padding-top: 10px;
	}
	.news-attention-title i{
		font-size: 16px;
		margin-right: 5px;
	}
	.news-list--attention{
		padding: 10px;
		margin-bottom: 20px;
	}
	.news-list--attention .news-list__link{
		padding: 10px 0;
	}
	.news-list--attention .news-list__content{
		display: block;
	}
	.news-list--attention .news-list-date{
		margin-right: 10px;
		margin-bottom: 5px;
	}
	.news-list--attention .news-list__title{
		width: 100%;
	}
	/* ---------------------------------------------------------------- side ---- */
	.news-side{
		width: 100%;
	}
	.news-banner{
		margin-bottom: 40px;
		display: flex;
		justify-content: space-between;
		flex-wrap: wrap;
		align-items: center;
	}
	.news-banner__item{
		width: calc( (100% - 10px) / 2);
		margin-bottom: 0;
	}
	.news-banner__item:nth-child(-n+2){
		margin-bottom: 10px;

	}
	.news-banner__item:nth-child(2n){
		margin-right: 0;
	}
	.news-recommend{
		padding-bottom: 6vw;
		background: url(../img/sp/bg_02.png) no-repeat left bottom / 91.866666vw auto;
	}
	.news-recommend__title{
		background: url(../img/sp/bg_01.png) no-repeat left top / cover;
		height: 11.2vw;
		width: 91.866666vw;
		font-size: 20px;
		line-height: 20px;
		padding-top: 0;
	}
	.news-recommend__item{
	}
	.news-recommend__item a{
		padding: 10px 0;
	}
	.news-recommend__item:first-of-type{
	}
	.news-recommend__item:first-of-type a{
	}
	.news-recommend__image{
		margin-right: 13px;
	}
	.news-recommend__in{
		width: calc(100% - 73px);
	}
	.news-recommend__date{
		font-size: 11px;
		line-height: 11px;
		margin-bottom: 5px;
	}
	.news-recommend__text{
		font-size: 13px;
		line-height: 23px;
	}
	/* ---------------------------------------------------------------- Detail ---- */
	.news-detail{
		width: 100%;
		margin-bottom: 40px;
	}
	.news-detail-top{
		padding-bottom: 10px;
		margin-bottom: 20px;
	}
	.news-detail-top__img{
		width: 60px;
		height: 60px;
		margin-right: 15px;
	}
	.news-detail-top__content{
		width: calc(100% -75px);
	}
	.news-detail-top-date{
		margin-bottom: 5px;
	}
	.news-detail-top-date__date{
		font-size: 11px;
		font-weight: bold;
		line-height: 15px;
		width: 80px;
	}
	.news-detail-top__title{
		font-size: 18px;
		line-height: 25px;
	}

}