@charset "UTF-8";

a
{
    text-decoration: none;
    color: #333;
}

ul
{
    list-style: none;
    padding: 0;
    margin: 0;
}


#news_list
{
	width: 100%;
}

#news_list_item
{
	padding: 15px 0;
	border-bottom: 1px solid #E6E6E6;
}
/*
#news_list_item:first-child
{
	border-top: 4px solid #ff6600;
}
*/

#news_list_item a
{
	position: relative;
	display: flex;
	padding-right: 30px;
}

#news_list_item_no_link
{
	position: relative;
	display: flex;
	padding-right: 30px;
}

#news_list_date
{
	font-size: 15px;
	display: flex;
	margin-right: 15px;
	align-items: center;
}

#news_item
{
	background: #F6C6A2;
	border-radius: 14px;
	width: 6em;
	/* 親要素の文字サイズを基準 */
	text-align: center;
	margin-left: 20px;
}

#arrow
{
	width: 25px;
	height: 1px;
	background: #707070;
	position: absolute;
	top: 50%;
	right: 0;
}

#arrow::after
{
	content: "";
	display: block;
	width: 6px;
	height: 1px;
	background: #707070;
	transform: rotate(45deg);
	position: absolute;
	right: 0px;
	bottom: 2px;
}


@media screen and (max-width: 1024px)
{
	.news_list_item a {
		display: block;
	}
}

@media screen and (max-width: 769px)
{
	.news_list_item a  {
		font-size: 14px;
	}


}
@media screen and (max-width: 480px)
{
	.arrow {
		display: none;
	}
	.news_list_item a {
		padding-right: 0;
	}
}