@charset "utf-8";

/*-----------------------------------------------------------
				ダイアログ
-----------------------------------------------------------*/
#icc_wrap {
    line-height: 1.45;
}
#icc_wrap label {
    font-size: 90%;
	cursor: pointer;
    text-align: left;
	border: none;
}
#icc_wrap input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    appearance: none;
    -webkit-appearance: none;
}
#icc_wrap label span {
    position: relative;
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
	padding-left: 25px;
    margin-top: 10px;
}
#icc_wrap input[type="checkbox"] + span::before {
    content: '';
	position: absolute;
    width: 20px;
    height: 20px;
    background: #fff;
    border-radius: 3px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    border: 1px solid black;
    box-sizing: border-box;
}
#icc_wrap input[type="checkbox"]:checked + span::after {
    position: absolute;
    display: block;
    content: '';
    height: 20px;
    width: 20px;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    background: url(../common_bookshelf/check.png) center no-repeat;
    background-size: 140%;
}