@charset "utf-8";
/*============================
MV
============================*/
#mv .image .image-content {
	background-image: url("../img/news/mv.jpg");
}

/*============================
ニュース一覧
============================*/
#news_list {
	padding: 2.50rem 0;
	box-sizing: border-box;
	position: relative;
	margin-bottom: 1.50rem;
}
@media screen and (max-width: 640px) {
	#news_list {
		padding: 1.00rem 0;
		margin-bottom: 1.00rem;
	}	
}


/* タイトル */
#news_list .title_wrap {
	padding-bottom: 0.70rem;
}

#news_list .title_wrap .en {
	font-size: 0.50rem;
	font-weight: bold;
	color: #E93C1E;
}

#news_list .title_wrap .en span {
	position: relative;
}

#news_list .title_wrap .en span::before {
	content: '';
	width: 0.50rem;
	height: 0.01rem;
	background: #E93C1E;
	position: absolute;
	right: -0.80rem;
	top: 60%;
}

#news_list .title_wrap .en span::after {
	content: '';
	width: 0.05rem;
	height: 0.05rem;
	background: #E93C1E;
	position: absolute;
	right: -0.87rem;
	top: 57%;
	border-radius: 50%;
}

#news_list .title_wrap .jp {
	font-size: 0.20rem;
	font-weight: bold;
	padding-top: 0.20rem;
}

#news_list .list {
	padding-left: 0.60rem;
	margin-bottom: 0.35rem;
}
@media screen and (max-width: 640px) {
	#news_list .list {
		padding-left: 0;
	}	
}


#news_list .list .item {
	margin-bottom: 0.35rem;
}
@media screen and (max-width: 640px) {
	#news_list .list .item {
		border-bottom: 1px solid #CCCCCC;
		padding-bottom: 0.15rem;
		margin-bottom: 0.15rem;
	}	
}

#news_list .list .item a {
	display: flex;
	flex-wrap: wrap;
}

/* 日付 */
#news_list .list .item a .date {
	font-size: 0.16rem;
	color: #000;
	width: 0.80rem;
	padding-top: 0.08rem;
}
@media screen and (max-width: 640px) {
	#news_list .list .item a .date {
		font-size: 0.14rem;
		width: auto;
	}	
}

/* カテゴリー */
#news_list .list .item a .category {
	color: #fff;
	width: 1.00rem;
	text-align: center;
	border-radius: 0.10rem;
	padding: 0.05rem 0;
	box-sizing: border-box;
	margin-left: 0.20rem;
	font-size: 0.12rem;
}
#news_list .list .item a .category span {
    display: block;
    padding: 0.05rem;
    border-radius: 0.15rem;
}
@media screen and (max-width: 640px) {
	#news_list .list .item a .category {
		font-size: 0.10rem;
		width: 0.70rem;
	}	
}



#news_list .list .item a .category.expo span {
	background: #E93C1E;
}

#news_list .list .item a .category.event span {
	background: #E52558;
}

#news_list .list .item a .category.education span {
	background: #E8601E;
}

#news_list .list .item a .category.press span {
	background: #E8831E;
}

#news_list .list .item a .category.blog span {
	background: #E0B02E;
}

/* 本文 */
#news_list .list .item a .text {
	font-size: 0.16rem;
	color: #000;
	padding-left: 0.30rem;
	box-sizing: border-box;
	position: relative;
	line-height: 1.65;
	width: calc(100% - 2rem);
}
@media screen and (max-width: 640px) {
	#news_list .list .item a .text {
		width: 100%;
		font-size: 0.15rem;
		padding-left: 0;
		padding-top: 0.10rem;
	}	
}


#news_list .list .item a:hover .text {
	color: #E93C1E;
}

#news_list .list .item a .text::after {
	content: '';
	width: 0.22rem;
	height: 0.22rem;
	background: url(../img/common/news_arrow.svg) no-repeat;
	background-size: contain;
	position: absolute;
	right: -0.40rem;
	top: 50%;
	transform: translateY(-50%);
	opacity: 0;
	transition: all .4s;
}

#news_list .list .item a .text:hover:after {
	opacity: 1;
}

/* ボタン */
#news_list .btn_common a {
	margin: 0.75rem auto 0;
}
/*============================
ニュース一覧
============================*/
#news_detail {
	padding-top: 1.20rem;
}

#news_detail .cont_wrap {
	max-width: 8.00rem;
	width: 100%;
	margin: auto;
	margin-bottom: 1rem;
}

/* 日付、カテゴリー */
#news_detail .cont_wrap .title_wrap .cate_wrap {
	display: flex;
	align-items: center;
	margin-bottom: 0.50rem;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category {
	color: #fff;
	width: 1.00rem;
	text-align: center;
	border-radius: 0.10rem;
	padding: 0.05rem 0;
	box-sizing: border-box;
	margin-left: 0.20rem;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.expo {
	background: #E93C1E;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.event {
	background: #E52558;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.education {
	background: #E8601E;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.press {
	background: #E8831E;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.blog {
	background: #E0B02E;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.event {
	background-color: #004C6E;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.shop {
	background-color: #777300;
}

#news_detail .cont_wrap .title_wrap .cate_wrap .category.contents {
	background-color: #770069;
}


#news_detail .cont_wrap .title_wrap .date {
	font-size: 0.14rem;
	letter-spacing: 0.07em;
}

/* タイトル */
#news_detail .cont_wrap .title_wrap .news_detail_title {
	font-size: 0.26rem;
	font-weight: 600;
	letter-spacing: 0.07em;
	line-height: 1.65;
	margin-bottom: 0.25rem;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap .title_wrap .news_detail_title {
		font-size: 0.18rem;
		margin-bottom: 0.15rem;
	}
}


/* 写真 */
#news_detail .cont_wrap img {
	/* width: 100%; */
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap img {
		margin-bottom: 0.15rem;
	}
}

/* テキスト */
#news_detail .cont_wrap p {
	font-size: 0.18rem;
	line-height: 1.65;
	letter-spacing: 0.07em;
	margin-bottom: 0.20rem;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap p {
		font-size: 0.16rem;
		}
}

#news_detail .cont_wrap a {
	color: #3B49EB;
	text-decoration: underline;
}

#news_detail .cont_wrap a:hover {
	opacity: 0.7;
}

#news_detail .cont_wrap li {
	font-size: 0.16rem;
	line-height: 1.65;
	letter-spacing: 0.07em;
	margin-bottom: 0.10rem;
	list-style: disc inside;
	padding-left: 0.16rem;
	text-indent: -0.16rem;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap li {
		font-size: 0.14rem;
	}
}

/* #news_detail .cont_wrap h1 {
	font-size: 0.26rem;
	font-weight: 700;
	border-left: 5px solid #E93C1E;
	padding: 0.10rem;
	box-sizing: border-box;
	margin-bottom: 0.10rem;
	line-height: 1.3;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap h1 {
		font-size: 0.20rem;
		padding: 0.05rem 0.10rem;
	}
} */

#news_detail .cont_wrap h2 {
	font-size: 0.20rem;
	font-weight: 700;
	border-left: 5px solid #E93C1E;
	padding: 0.10rem;
	box-sizing: border-box;
	margin-bottom: 0.10rem;
	line-height: 1.3;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap h2 {
		font-size: 0.18rem;
		padding: 0.05rem 0.10rem;
	}
}

#news_detail .cont_wrap h3 {
	font-size: 0.20rem;
	font-weight: 700;
	padding-bottom: 0.10rem;
	line-height: 1.3;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap h3 {
		font-size: 0.18rem;
	}
}

#news_detail .cont_wrap h4 {
	font-size: 0.18rem;
	font-weight: 700;
	padding-bottom: 0.10rem;
	line-height: 1.3;

}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap h4 {
		font-size: 0.16rem;
	}
}

#news_detail .cont_wrap h5 {
	font-size: 0.18rem;
	font-weight: 700;
	padding-bottom: 0.10rem;
	line-height: 1.3;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap h5 {
		font-size: 0.16rem;
	}
}

/* 一覧に戻る */
#news_detail .cont_wrap .list_btn {
	text-align: center;
	margin-top: 1.20rem;
}

#news_detail .cont_wrap .list_btn a {
	width: 3.30rem;
	font-size: 0.14rem;
	background: #E93C1E;
	color: #fff;
	border: 1px solid #E93C1E;
	padding: 0.25rem 0;
	display: inline-block;
	text-align: center;
	position: relative;
	text-decoration: none;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap .list_btn a {
		width: 2.50rem;
	}
}


#news_detail .cont_wrap .list_btn a:hover {
	background: #fff;
	color: #E93C1E;
}

#news_detail .cont_wrap .list_btn a::after{
	content: '';
	width: 0.27rem;
	height: 0.01rem;
	background: #fff;
	position: absolute;
	left: 0.15rem;
	top: 50%;
	transform: translateY(-50%);
	transition: all .3s;
}
@media screen and (max-width: 640px) {
	#news_detail .cont_wrap .list_btn a::after{
		content: '';
		width: 0.10rem;
	}
}


#news_detail .cont_wrap .list_btn a:hover::after {
	width: 0.22rem;
	background: #E93C1E;
}