@charset "utf-8";
/* info_common.css */

/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* お知らせリスト　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.info_list_box li {
	border-bottom: 1px dotted #000000;
}
.info_list_box li:last-child {
	border-bottom-style: none;
}

/* リンクタグ */
.info_list_box li a {
	display: flex;
	color: #000000;
	text-decoration: none;
	font-size: 16px;
	font-weight: 700;
	padding-left: 20px;
	padding-right: 20px;
	padding-top: 25px;
	padding-bottom: 25px;
	width: 100%;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	webkit-transition: all 0.3s ease;
	-moz-transition: all 0.3s ease;
	-o-transition: all 0.3s ease;
	transition: all  0.3s ease;
}
.info_list_box li a:hover {
	background-color: #F0F0F0;
}

/* 日付 */
.info_date {
	width: 120px;
	display: block;
	float: left;
}

/* タイトル */
.info_title {
	display: block;
	width: calc(100% - 120px);
	border-left: 1px solid #000000;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
	float: right;
	padding-left: 25px;
}






/* ↓↓↓↓↓↓↓↓↓↓ ---以下スマホ--- ↓↓↓↓↓↓↓↓↓↓ */


@media screen and (max-width: 768px) {
	
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
/* お知らせリスト　　　　　　　                                           */
/*++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++*/
.info_list_box li {
	border-bottom: 1px dotted #000000;
}
.info_list_box li:last-child {
	border-bottom-style: solid;
}

/* リンクタグ */
.info_list_box li a {
	font-size: 14px;
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 20px;
	padding-bottom: 20px;
	display: block;
}

/* 日付 */
.info_date {
	width: 100%;
	float: none;
}

/* タイトル */
.info_title {
	width: 100%;
	border-left-style: none;
	float: none;
	padding-left: 0px;
}

}