input[type="checkbox"] {
	width: 1.5rem;
	height: 1.5rem;
}

/***** オンライン申請できる人／できない人関連 *****/
#onlineTermsDiv {
	display: flex;
	flex-direction: column;
	height: 100%;
}

#onlineTermsTitleDiv {
	padding: 0.5rem 0;
	font-size: var(--font-size-ll);
	font-weight: bold;
	display: flex;
	justify-content: center;
	position: relative;
}

#onlineTermsFlexDiv {
	display: flex;
	flex-direction: column;
	flex: auto;
	overflow-y: auto;
}
.onlineTermsChildDiv {
	display: flex;
	justify-content: center;
	padding-bottom: 1rem;
}

#onlineTermsDiv thead {
	position: relative;	/* cCommon-tableのposition:sticky打ち消し */
}

#onlineTermsDiv th, #onlineTermsDiv td{
	font-size: var(--font-size-s);
}

#onlineTermsLabel {
	display: flex;
	align-items: center;
}
#onlineTermsCheck {
	width: 1.5rem;
	height: 1.5rem;
}

/* 日本語の長文やスペース無しの文字列も安全に折り返す */
.wrap {
  overflow-wrap: anywhere; /* モダン */
  word-break: break-all;   /* フォールバック（古いブラウザや英数字の連続対策） */
  /* line-height: 1.7; */
}
/* 「・」で箇条書きにしたい場合（通常の黒丸ではなく） */
ul.jp-dot { padding-left: 1.2rem; margin: 0; }
ul.jp-dot li::marker { content: "・ "; } /* 日本語の中黒をマーカーに */

/* オーバーライト */
.pCommon-table tbody tr td {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

