/*** 使用許諾条件およびサービス仕様への同意 ***/
/* container */
/* eula-container */
.eula-container {
	width: 98%;
	background-color: rgb(208, 233, 255);
	border-radius: 8px;
	border: 1px solid rgb(204, 204, 204);
	margin-right: 20px;
	padding: 4px 6px 4px 10px;
}
.eula-container h2 {
	color: rgb(39, 146, 195);
}
.eula-container p {
	padding: 2px 8px 2px 8px;
	margin: 2px 8px 2px 8px;
}

/* check box */
div.consent-wrapper {
	display: flex;
	align-items: center;
	gap: 8px;
	margin-top: 10px;
	padding-left: 14px;
}
#consent-check {
	/* チェックボックスが縮まないようにする */
	flex-shrink: 0;
	width: 18px;
	height: 18px;
	margin: 0;
		/* ブラウザのデフォルト余白を消す
	margin-left: 16px;
	margin-right: 4px;*/
}
input#consent-check:hover {
	cursor: pointer;
}
#consent-label {
	line-height: 1.5;
	/* 複数行の行間を調整 */
	cursor: pointer;
	/* クリック可能カーソル */
}

/* eula-func */
.eula-func {
	display: flex;
	flex-direction: row;
	flex-wrap: nowrap;
	align-items: center;
	justify-content: space-around;
	margin-top: 15px;
}
.eula-func input[type=button][disabled] {
	background-color: darkgray;
	color: gray;
	cursor: default;
}
.eula-button input {
	margin: 10px 20px 10px 20px;
}

.eula-button input#btnagree {
	border: 2px solid rgb(255, 0, 0);	
}

/* eula-list */
div.eula-license-list {
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	align-items: center;
	justify-content: space-around;
	align-content: flex-start;
	align-items: flex-start;
	width: 96%;
	margin-top: 20px;
	margin-left: 30px;
	margin-bottom: 40px;
}
.eula-license-list p {
	color:rgb(39, 146, 195);
	font-size: large;
}
/* table */
.lic-list {
	overflow: auto;
	max-height: 250px;
	width: 98%;
	border-bottom: 1px solid rgb(204, 204, 204);
	font-size: small;
	/* 幅固定で折り返しのため */
	table-layout: fixed;
}
.lic-list p {
	margin: 0 0 0 0;
	padding: 1px 1px 1px 1px;
	font-size: small;
	border-radius: 4px;
}

.lic-list table {
	width: 100%;
	margin: 0;
	border-spacing: 0;
	border-collapse: separate;
}
.lic-list table td,
.lic-list table th
{
	width: 25%;
	max-width: 25%;
	border-right: 2px solid rgb(204, 204, 204);
	border-bottom: 2px solid rgb(204, 204, 204);
	line-height: 1.2;
}
.lic-list table td {
	/* 幅固定で折り返し指定 */
	/*white-space: nowrap;*/
	word-break: break-word;
	white-space: normal;
	/* ****************** */
	padding: 1px 2px 1px 6px;
	background-color: rgb(255, 255, 255);
}
.lic-list table th {
	position: sticky;
	top: 0;
	left: 0;
	background-color: rgb(173, 216, 230);
}

.lic-list table tr:first-child th {
	border-top: 2px solid rgb(204, 204, 204);
	border-bottom: 3px double rgb(204, 204, 204);
	padding: 2px 4px 1px 6px;
}
.lic-list table th:first-child {
	border-left: 2px solid rgb(204, 204, 204);
}

.lic-list tbody td:first-child {
	/*background-color: rgb(173, 216, 230);*/
	border-left: 2px solid rgb(204, 204, 204);
	position: sticky;
	top: 0;
	left: 0;
}
/*
.lic-list tbody td:not(:first-child) {
	background-color: rgb(255, 255, 255);
}
*/
.lic-list table tr:first-child th:first-child {
	z-index: 1;
}

.lic-list table a {
  	color: #0b66c3;
  	word-break: break-all;
}
.lic-list table a:visited {
	color: rgba(74, 72, 142, 1);
}

  /* 奇数行の背景（任意） */
.lic-list table tbody tr:nth-child(odd) td {
  	background: rgb(245 245 245);
}
/**********************************************************/
div.color-test {
	background-color: rgb(134 166 192);
}
