@charset "utf-8";

/* news.css */

.news .content_area p.news_ttl,
.archive .content_area p.news_ttl {
	margin-top: 2px;
}

.news .content_area p,
.archive .content_area p {
	margin: 0;
}

.news .content_area ul,
.archive .content_area ul {
	padding-left: 0;
}

.news .news_tab,
.archive .news_tab {
	margin: 60px auto 50px;
}

/* tab */
.content_area .news_tab {
	display: flex;
	flex-wrap: wrap;
	text-decoration: none;
	/*     margin-bottom: 56px; */
	justify-content: center;
}

.content_area .tab_link {
	font-weight: 600;
	position: relative;
	display: inline-block;
	margin-right: 31px;
	text-decoration: none;
	transition: color 0.3s;
}

.content_area .tab_link:hover {
	color: #62B06C;
}

/* .content_area .tab_link:last-child {
    margin-right: 0;
} */

.content_area .news_tab li:last-child .tab_link {
	margin-right: 0;
}

/* .content_area .tab_link:hover::after, */
.content_area .active .tab_link::after {
	opacity: 1;
	visibility: visible;
}

.content_area .tab_link::after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 2px;
	background: #62B06C;
	opacity: 0;
	visibility: hidden;
	transition: all 0.3s;
}

/* .content_area .news_tab li.active .tab_link {
    color: #62B06C;
} */

.content_area .news_tab li {
	position: relative;
	display: block;
	list-style: none;
}

.content_area .news_tab li:not(:last-child)::after {
	position: absolute;
	content: '';
	display: inline-block;
	margin-right: 20px;
	width: 1px;
	height: 24px;
	background: #CCCCCC;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 15px;
}

/* news_list */
.news_list {
	border-top: 1px solid #F0F0F0;
	padding: 0;
}

.news_list li {
	list-style: none;
	line-height: 1.6;
	margin: 0;
	border-bottom: 1px solid #F0F0F0;
}

.news_list li a {
	display: flex;
	flex-wrap: wrap;
	width: 100%;
	color: #03382D;
	text-decoration: none;
	padding: 24px 98px 20px 0;
	box-sizing: border-box;
	transition: all .3s ease;
	align-items: center;
	position: relative;
}

.news_list li a::after {
	position: absolute;
	content: '';
	width: 11px;
	height: 11px;
	border-top: 2px solid #03382D;
	border-right: 2px solid #03382D;
	top: calc(50% - 6px);
	right: 32px;
	transform: rotate(45deg);
	transition: all .3s ease;
}

.news_cate {
    display: block;
    font-size: 1.2rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.4;
    text-align: center;
    color: #03382D;
    width: 130px;
    margin-right: 20px;
    padding: 8px 10px;
    background: #F2F4F3;
    border-radius: 100px;
    transition: all .3s ease;
    max-height: 100%;
}

.news_date {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	width: 100px;
	margin-right: 9px;
	max-height: 100%;
}

.news_title {
	font-size: 1.5rem;
	letter-spacing: 0.1em;
	line-height: 1.4;
	max-width: calc(100% - 260px);
	max-height: 100%;
}

/* hover */
.news_list li a:hover {
	color: #62B06C;
}

.news_list li a:hover .news_cate {
	color: #FFF;
	background: #62B06C;
}

.news_list li a:hover::after {
	border-color: #62B06C;
}


/**** single.php ******/
#news_t {
	display: flex;
	flex-wrap: wrap;
	margin: 60px auto 0;
}

#news_s {
	border-top: 1px solid #ddd;
	border-bottom: 1px solid #ddd;
	padding: 50px 0;
	margin: 30px 0;
}

#news_s>*:first-child {
	margin-top: 0;
}

#news_s>*:last-child {
	margin-bottom: 0;
}

#news_retop {
	display: flex;
	justify-content: center;
}

/* a.link_back {
    color: #FFF;
    background: #aaa url(../images/arrow_left_white.svg) left 20px center no-repeat;
    background-size: 18px 18px;
    width: 250px;
}

a.link_back:hover {
    background: #ccc url(../images/arrow_left_white.svg) left 20px center no-repeat;
    background-size: 18px 18px;
} */


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

	.news .news_tab,
	.archive .news_tab {
		margin: 30px auto 20px;
	}

	/* tab */

	.content_area .news_tab {
		justify-content: inherit;
		/*         margin-bottom: 20px; */
	}

	.content_area .news_tab .tab_item {
		width: 50%;
		text-align: center;
		margin-bottom: 15px;
		margin-right: 0;
	}

	.content_area .news_tab .tab_item:nth-child(2n)::after {
		content: none;
	}

	.content_area .news_tab .tab_item:not(:last-child)::after {
		right: 0;
	}

	.content_area .news_tab li .tab_link {
		margin-right: 0;
	}

	/* news_list */
	.news_list {
		border-top: 1px solid #CCD9D4;
	}

	.news_list li {
		border-bottom: 1px solid #CCD9D4;
	}

	.news_list li a {
		padding: 11px 34px 12px 0;
	}

	.news_list li a::after {
		width: 10px;
		height: 10px;
		right: 17px;
	}

	.news_cate {
		font-size: 1.2rem;
		font-weight: 500;
		width: auto;
		min-width: 106px;
		margin-right: 10px;
		padding: 3px 7px 2px;
		background: #F2F4F3;
		border-radius: 100px;
		transition: all .3s ease;
	}

	.news_date {
		font-size: 1.3rem;
		letter-spacing: 0;
		width: 80px;
		margin: 2px 0 0;
	}

	.news_title {
		font-size: 1.3rem;
		width: 100%;
		max-width: none;
		margin: 8px 0 0;
	}


	/**** single.php ******/

	#news_t {
		margin: 30px auto 0;
	}

	#news_s {
		padding: 20px 0;
		margin: 20px 0;
	}

}