/*
 * File: KSE002.css
 * Description: 公表詳細画面
 * Author: NSK
 * Date: 2025-12-09
 */

/* 読み取り専用チェックボックス脇のlabelにチェックボックスもどきを表示 */
input[type=checkbox][readonly]+label {
    display: inline-block;
    width: 13.5px;
    height: 13.5px;
    border: 1px solid #ccc;
    margin-left: 12px;
    margin-right: 8px;
    border-radius: 2px 2px 2px 2px;
    background-color: #fff;
    box-shadow: inset 0px 2px 0px 0px #888,inset 2px 0px 0px 0px #888;
    pointer-events: none;
}

/* 読み取り専用チェックボックス チェック時のレイアウト */
input[type=checkbox][readonly]:checked+label {
	background-color: #fff;
	border-color: #fff;
	border: 1px solid #ccc;
}


/* 読み取り専用チェックボックス チェックマーク */
input[type=checkbox][readonly]:checked+label::after {
	content: "";
	display: block;
	width: 0.7em;
	height: 0.4em;
	border: 1px solid black;
	border-width: 0 0 3px 3px;
	transform: rotate(-52deg) translate(0, 0.18em);
	border-radius: 2px 2px 2px 2px;
}