@charset "UTF-8";
/* 日本下水道事業団コーポレートサイト 新着情報一覧ならびにTOPICS一覧用CSS */


/*--------------------------------------------------------------------------- NEWS */
.red-text {
  color: red;
}

#news {
	width: 100%;
	padding-bottom: 60px;
}

#news .newsList {
	padding: 0 20px;
	margin-top: -20px;
}

#news .newsList li {
	border-bottom: 1px solid #dee3e3;
}

#news .newsList li a {
	display: block;
	padding: 20px 32px 20px 0;
	position: relative;
}

#news .newsList li a:after {
    content: "";
    display: block;
    width: 10px;
    height: 14px;
    background: url(/common/images/link-gr.svg) center center / 10px 14px no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 12px;
    margin: auto;
}

#news .newsList li a.external:after {
	content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(/common/images/external-icon-gr.svg) center center / 20px 20px no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    margin: auto;
}

#news .newsList li .date {
	display: block;
	font-size: 1.2rem;
	position: relative;
	padding-left: 18px;
	margin-bottom: 10px;
}

#news .newsList li .date:before {
	content: "";
    display: block;
    width: 14px;
    height: 12px;
    background: url("/common/images/calender-icon.svg") center center / 14px 12px no-repeat;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}

#news .newsList li .newsTxt {
	line-height: 1.5;
}

#news .btnList {
	margin-top: 40px;
}

/*----------------------------DISABLE*/

#news .newsList li a.disable {
	pointer-events: none;
}

#news .newsList li a.disable:after {
	content: none;
}

#news .newsList li a.disable .imgIcon {
	display: none;
}


/*----------------------------HOVER*/

#news .newsList li a .newsTxt {
	transition: all 200ms ease;
}

#news .newsList li a.hover .newsTxt {
	color: #0564c8;
	text-decoration: underline;
}

#news .newsList li a:after {
	transition: all 200ms ease;
}

#news .newsList li a.hover:after {
	background: url(/common/images/link-bl.svg) center center / 10px 14px no-repeat;
	transform: translate(3px,0);
}

#news .newsList li a.external.hover:after {
	background: url(/common/images/external-icon-bl.svg) center center / 20px 20px no-repeat;
	transform: none;
}


/*------------------------------------------------------------------------------------

以下 TAB 用

------------------------------------------------------------------------------------*/

@media (min-width: 481px) and (max-width: 768px) { 
	
	#news .newsList {
    	padding: 0 12%;
	}
}


/*------------------------------------------------------------------------------------

以下 PC 用

------------------------------------------------------------------------------------*/

@media print, screen and (min-width: 769px) {


/*--------------------------------------------------------------------------- NEWS */
	
	#news {
		padding-bottom: 0;
	}
	
	#news .newsInner {
		width: 1000px;
		margin: 0 auto;
	}
	
	#news .newsList {
    	padding: 0;
    	margin-top: -30px;
	}

}
 .blue_list{
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
  padding:0.5em;
  background: #f5faff;
}
.link_button {
	font-weight: bold;/*太字に*/
	text-decoration: none;/*下線消す*/
	background: skyblue;/*背景を水色に*/
	color: white;/*文字を白に*/
	padding: 5px 10px;/*内側の余白*/
	border-radius: 20px;/*角を丸くする*/
	font-family: 'Yu Gothic UI';/*フォントをいい感じに*/
	box-shadow: 0px 2px 2px rgba(0, 0, 0, 0.29);
	margin-top:50px;
	margin-bottom: 30px;
	margin-left: 40px;
}
/*以下カーソルを当てたとき*/
.link_button:hover {
  background: silver;/*背景色をシルバーに*/
  text-decoration: none;/*下線を消す*/
  box-shadow: 0px 0px 1px rgba(0, 0, 0, 0.2);	
}

/*以下訪問済みのデザイン*/
.link_button:visited {
  color: gray;/*文字をグレイに*/
}
