@charset "utf-8";

/*===========================================================
	NEWS LIST
===========================================================*/

#news_list {
}

#news_list li {
	padding: 28px 0;
	position: relative;
	font-size: 1.4rem;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

#news_list li::after {
	content: "";
	height: 1px;
	display: block;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	background: linear-gradient(to right, #cccccc, #ffffff);
}

.news_date {
	width: 90px;
	display: inline-block;
	vertical-align: middle;
}

.news_tag {
	padding: 0 10px;
	min-width: 100px;
	display: inline-block;
	border: solid 1px #707070;
	line-height: 22px;
	text-align: center;
	vertical-align: middle;
}

.news_title {
	margin-left: 20px;
	color: #333333;
	vertical-align: middle;
}

.news_title:hover {
	text-decoration: underline;
}

.wp-pagenavi {
	margin-top: 40px;
	display: flex;
	justify-content: space-between;
}

.previouspostslink,
.nextpostslink {
	width: 138px;
	border: solid 1px #B3B3B3;
	color: #333333;
	text-align: center;
	line-height: 52px;
	transition: 300ms;
}

.previouspostslink {
	margin-right: auto;
	padding-left: 30px;
	background: url("../images/news/news_arrow_left_g.svg") no-repeat center left 20px;
	background-size: 24px;
}

.nextpostslink {
	margin-left: auto;
	padding-right: 30px;
	background: url("../images/news/news_arrow_right_g.svg") no-repeat center right 20px;
	background-size: 24px;
}

.previouspostslink:hover,
.nextpostslink:hover {
	background-color: #B3B3B3;
	color: #ffffff;
}

.previouspostslink:hover {
	background-image: url("../images/news/news_arrow_left_w.svg");
}

.nextpostslink:hover {
	background-image: url("../images/news/news_arrow_right_w.svg");
}

/*===========================================================
	NEWS DETAIL
===========================================================*/

#news_title {
	font-size: 2.6rem;
}

#news_status {
	margin-top: 10px;
	padding-top: 10px;
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	border-top: dotted 1px #cccccc;
}

#news_status li {
	margin-bottom: 0.5em;
}

#news_date {
	width: 100px;
}

.news_tag + .news_tag {
	margin-left: 0.5em;
}

#news_text {
	margin: 40px auto;
	width: 100%;
	max-width: 800px;
}

#news_text::after {
	content: "";
	display: block;
	clear: both;
}

#news_text p,
#news_text ol,
#news_text ul,
#news_text h3,
#news_text h4,
#news_text h5,
#news_text h6,
#news_text pre {
	margin: 1em auto;
}

#news_text ol li,
#news_text ul li {
	margin-left: 1.5em;
}

#news_text ol li {
	list-style: decimal;
}

#news_text ul li {
	list-style: disc;
}

#news_text table {
	margin: 2.5em auto;
}

#news_text image {
	max-width: 100%;
}

#news_text a {
	color: #075729;
}

#news_text a:hover {
	text-decoration: underline;
}