@charset "UTF-8";
/* 日本下水道事業団コーポレートサイト 事務所一覧用CSS */

/*--------------------------------------------------------------------------- 事務所一覧 */

.jimusyo .linkList .name {
	font-weight: 700;
}

.jimusyo .linkList span:not(.name) {
	font-weight: 400;
}

/*CHARGE*/

.jimusyo .linkList .charge {
	display: flex;
    align-items: baseline;
	margin-top: 8px;
}

.jimusyo .linkList .chargeHead {
	width: 40px;
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 700;
    text-align: center;
    line-height: 1;
    color: #fff;
    padding: 4px;
    border-radius: 4px;
    background-color: #1e283c;
}

.jimusyo .linkList .chargeArea {
	width: calc(100% - 40px);
	padding-left: 5px;
}


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

.jimusyo .linkList a.hover {
	text-decoration: none;
}

.jimusyo .linkList a.hover .name {
	text-decoration: underline;
}

.jimusyo .linkList .chargeHead {
	transition: background-color 200ms ease;
}

.jimusyo .linkList a.hover .chargeHead {
	background-color: #0564c8;
}

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

以下 PC 用

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

@media print, screen and (min-width: 769px) {
	
/*--------------------------------------------------------------------------- 事務所一覧 */
	
	.jimusyo .linkList .charge {
		margin-top: 8px;
	}
	
	.jimusyo .linkList .chargeHead {
		width: 50px;
		font-size: 1.4rem;
	}

	.jimusyo .linkList .chargeArea {
		width: calc(100% - 50px);
	}

}