@charset "utf-8";

.g-wrap .info_list {
	margin-top: 100px;
}

.g-wrap .info_item {
	border-top: 1px solid #B2C6D4;
}

.g-wrap .info_item:last-child {
	border-bottom: 1px solid #B2C6D4;
}

.g-wrap .info_item a {
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-between;
	padding: 2em 0;
	width: 100%;
	position: relative;
}

.g-wrap .info_item a::after {
	content: "";
	background: url(../images/common/btn_detail_arrow.svg) no-repeat center/ contain;
	font-size: 0;
	display: inline-block;
	width: 35px;
	height: 35px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.g-wrap .info_date {
	font-size: 18px;
	margin-right: 35px;
	width: 250px;
	position: relative;
	line-height: 1;
}

.g-wrap .info_item._new .info_date::after {
	content: "NEW";
	white-space: nowrap;
	font-family: 'Josefin Sans', sans-serif;
	font-weight: 600;
	/*semibold*/
	font-size: 15px;
	letter-spacing: 0.12em;
	color: #fff;
	background-color: #FF0000;
	padding: 7px 10px 2px;
	position: absolute;
	right: 0;
	top: 50%;
	transform: translateY(-50%);
}

.g-wrap .info_title {
	font-size: 18px;
	font-weight: 500;
	padding-right: 50px;
	width: calc(100% - 250px - 35px);
}

@media (max-width: 768px) {
	.g-wrap .info_list {
		margin-top: 40px;
	}

	.g-wrap .info_item a {
		padding: 15px 0;
	}

	.g-wrap .info_item a::after {
		width: 22px;
		height: 22px;
	}

	.g-wrap .info_date {
		width: auto;
		margin-right: 0;
		padding-right: 50px;
		font-size: 13px;
	}

	.g-wrap .info_item._new .info_date::after {
		padding: 4px 5px 1px;
		font-size: 10px;
	}

	.g-wrap .info_title {
		width: 100%;
		font-size: 14px;
		margin-top: 8px;
		padding-right: 30px;
	}

}