@charset "utf-8";
/*
**-- 共通CSS
*/

/*-- 基本設定 -----------------------------------------------*/
* {
	-webkit-print-color-adjust:exact;
	-webkit-text-size-adjust:none;
}
html, body, div, span, table, tbody, th, td, iframe, ul, li, input, select, textarea, img, a {
	margin:0;
	padding:0;
	box-sizing:border-box;
	font-family:Arial, Helvetica, sans-serif, メイリオ, Meiryo, "Wヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro";
}
html, body {
	height:100%;
}
body {
	font-size:13px;
	line-height:1;
	text-align:left;
	vertical-align:top;
	background:#f5f5f5;
	color:#444444;
}
table {
	border-collapse:collapse;
	width:100%;
}
th {
	font-weight:normal;
	text-align:center;
}
input {
	background:#ffffff;
}
input[type="button"],
input[type="submit"] {
	-webkit-appearance:none;
	background:#94b564;
	border:solid 1px #94b564;
	color:#ffffff;
	font-size:11px;
	padding:0 8px;
	border-radius:0;
	transition:all 0.15s ease-in-out;
	height:25px;
	line-height:1;
	vertical-align:middle;
}
input[type="button"]:hover,
input[type="submit"]:hover {
	background:#89ad4d;
	border:solid 1px #89ad4d;
	cursor:pointer;
}
input[type="button"]:disabled,
input[type="submit"]:disabled {
	transition:all 0s ease-in-out;
	color:#c4c5d6 !important;
	background:#f4f5f8 !important;
	border:solid 1px #c5c5c5 !important;
	cursor:auto;
}
input[type="button"]:focus,
input[type="submit"]:focus {
	border:solid 1px #29b2e1 !important;
	outline:none;
}
input[type="button"][feature="commit"],		/*-- 追加複製登録 --*/
input[type="submit"][feature="commit"] {
	background:#fe970a;
	border:solid 1px #fe970a;
}
input[type="button"][feature="commit"]:hover,
input[type="submit"][feature="commit"]:hover {
	background:#d58512;
	border:solid 1px #d58512;
}
input[type="button"][feature="link"],		/*-- link --*/
input[type="submit"][feature="link"] {
	background:#ffffff;
	border:solid 1px #1caf9a;
	vertical-align:middle;
	text-decoration:none;
	color:#1caf9a;
}
input[type="button"][feature="link"]:hover,
input[type="submit"][feature="link"]:hover {
	background-color:#e2e5ec;
}
input[type="text"],
input[type="password"] {
	-webkit-appearance:none;
	border-radius:0;
	padding:4px 6px;
	border:solid 1px #c5c5c5;
	font-size:13px;
	transition:border-color ease-in-out 0.15s;
	width:125px;
	line-height:1;
	vertical-align:middle;
}
input[type="text"]:focus,
input[type="password"]:focus {
	border:solid 1px #29b2e1 !important;
	outline:none;
}
input[type="text"].Inactive:focus,
input[type="password"].Inactive:focus {
	border:solid 1px #c5c5c5 !important;
	outline:none;
}
.Link {
	padding:5px 8px;
	height:25px;
	font-size:11px;
	background:#ffffff;
	border:solid 1px #1caf9a;
	vertical-align:middle;
	text-decoration:none;
	line-height:1;
	color:#1caf9a;
}
.Link:hover {
	background-color:#e2e5ec;
	cursor:pointer;
}
span[type="file"] {
	vertical-align:middle;
	display:inline-block;
}
span[type="file"] > input[type="text"]:focus {
	border-color:#ebedf2;
	outline:0;
}
span[type="file"] > input[type="file"] {
	display:none;
}
input[type="checkbox"] {
	-webkit-appearance:none;
	position:relative;
	border:solid 1px #bbbbbb;
	width:17px;
	height:17px;
	margin:4px;
	padding:0;
	vertical-align:middle;
	cursor:pointer;
}
input[type="checkbox"]:checked:after {
	content:'';
	border:solid 1px #72706e;
	position:absolute;
	top:-1px;
	left:4px;
	width:5px;
	height:10px;
	border-width:0 2px 2px 0;
	transform:rotate(45deg);
}
input[type="radio"] {
	-webkit-appearance:none;
	position:relative;
	border:solid 1px #bbbbbb;
	border-radius:8px;
	width:17px;
	height:17px;
	margin:4px;
	padding:0;
	vertical-align:middle;
	cursor:pointer;
}
input[type="radio"]:checked:after {
	content:'';
	position:absolute;
	background-color:#7281a4;
	top:2px;
	left:2px;
	width:11px;
	height:11px;
	border-radius:5px;
}
input[type="checkbox"]:focus,
input[type="radio"]:focus {
	border:solid 1px #29b2e1 !important;
	outline:none;
}
select {
	padding:3px;
	background-color:#ffffff;
	border:solid 1px #c5c5c5;
	width:125px;
	vertical-align:middle;
	transition:border-color ease-in-out 0.15s;
}
select:focus {
	border-color:#29b2e1;
	outline-offset:-2px;
	outline:1px;
}
select::-ms-expand {
	border:none;
	background-color:transparent;
}
textarea {
	padding:4px 6px;
	background-color:#ffffff;
	border:solid 1px #c5c5c5;
	width:100%;
	vertical-align:middle;
	transition:border-color ease-in-out 0.15s;
	line-height:1.2;
	overflow-x:auto;
	overflow-y:scroll;
	white-space:pre-wrap;
	resize:none;
}
textarea:focus {
	border-color:#29b2e1;
	outline-offset:-2px;
	outline:1px;
}
textarea::-webkit-scrollbar {
	width:8px;
	height:8px;
}
textarea::-webkit-scrollbar-track-piece {
	border-left:solid 1px #ebedf2;
}
textarea::-webkit-scrollbar-thumb {
	background-color:#ebedf2;
}
textarea::-webkit-scrollbar-corner {
	display:none;
}
img {
	border:none;
	vertical-align:middle;
}
/*-- フォーム -------------------------------------------------*/
.Required {
	background-color:#d8ecf6;
}
.Invalid {
	background-color:#fcf8e4;
}
.Inactive {
	background-color:#f5f5f5;
}
.Active {
	background-color:#f597af;
}
/*-- モデル --------------------------------------------------*/
.InputSet,
.Date,
.Month,
.Time {
	display:inline-block;
	vertical-align:middle;
}
.Date > input[type="text"] {
	width:36px;
}
.Date > input[type="text"]:first-child {
	width:53px;
}
.Month input[type="text"] {
	width:35px;
}
.Month input[type="text"]:first-child {
	width:50px;
}
.Time > input[type="text"] {
	width:35px;
}
.InputSet {
	display:inline-block;
	vertical-align:middle;
}
.InputSet > input:not(:last-child),
.Date > input:not(:last-child),
.Month > input:not(:last-child),
.Time > input:not(:last-child) {
	vertical-align:top;
	border-right:none;
}
.InputSet > input:not(:first-child),
.Date > input:not(:first-child),
.Month > input:not(:first-child),
.Time > input:not(:first-child) {
	vertical-align:top;
}
.Stt {
	display:block;
	position:relative;
}
.Stt > div {
	border:1px solid #c5c5c5;
	background:#fcfcfc;
	padding:2px;
	line-height:1.25;
	white-space:normal;
	font-size:10px;
	z-index:10;
}
.Stt > button {
	display:block;
	-webkit-appearance:none;
	background-color:transparent;
	width:22px;
	height:22px;
	padding:0;
	font-weight:bold;
	border:solid 1px #c5c5c5;
	position:absolute;
	top:0px;
	right:0px;
	height:21px;
	width:21px;
}
.Stt > button:disabled {
	background-color:#f5f5f5;
}
.Stt > button:not(:disabled):hover {
	background-color:#F597AF;
	cursor:pointer;
}
.Stt > button[active="true"] {
	background-color:#F8B6C7;
}
.Stt > button:focus {
	outline:none;
}
.Stt > button > img {
	width:16px;
	height:16px;
}
/*-- テンプレート -----------------------------------------------*/
.Template {
	height:100%;
	position:relative;
}
.Template > tbody > tr > th {
	width:135px;
	min-width:135px;
	max-width:135px;
}
.Template > tbody > tr:nth-child(1) > td {
	height:calc(100% - 20px);
	vertical-align:top;
}
.Template > tbody > tr:nth-child(2) > td {
	height:20px;
}
.Footer {
	background:#f5f5f5;
	height:20px;
}
.Footer > tbody > tr > td:first-child {
	padding-left:10px;
	text-align:left;
}
.Footer > tbody > tr > td:last-child {
	padding-right:10px;
	text-align:right;
}
.SideBar {
	position:absolute;
	top:0;
	min-height:100%;
	width:135px;
	background:#212328;
	overflow:hidden;
	color:#ffffff;
	transition:width 100ms linear;
	z-index:100;
}
.SideBar > table > tbody > tr > th {
	width:35px;
	min-width:35px;
	padding-left:15px;
	text-align:left;
}
.SideBar > table > tbody > tr:first-child > th {
	padding:15px;
	font-size:16px;
	font-weight:bold;
	text-align:left;
}
.SideBar > table > tbody > tr:last-child:not(:first-child) > th {
	font-size:10px;
	padding:15px;
	white-space:normal;
}
.SideBar > table > tbody > tr > th > img {
	width:16px;
	height:16px;
}
.SideBar > table > tbody > tr > td {
	padding:12px;
	padding-left:5px;
	padding-right:10px;
	white-space:nowrap;
	text-align:left;
}
.SideBar > table > tbody > tr:not(:nth-child(1)):not(:last-child):hover {
	background:#de4e4e;
	cursor:pointer;
}
.SideBar > table > tbody > tr[active="true"] {
	background:#de4e4e;
}
.SideBar > table > tbody > tr > td > div {
	display:none;
}
.SideBar > div {
	position:absolute;
	top:0;
	left:150px;
	height:100%;
	min-width:180px;
	background:#262a33;
}
.SideBar > div > ul {
	list-style-type:none;
}
.SideBar > div > ul > li {
	display:block;
	padding:12px 10px;
	white-space:nowrap;
	color:#ffffff;
	text-align:left;
}
.SideBar > div > ul > li:hover {
	background:#de4e4e;
	cursor:pointer;
}
/*-- ボディー -----------------------------------------------*/
.Body > tbody > tr > td {
	padding:20px;
	background:#ffffff;
}
.PopBody {
	width:auto;
	margin:50px auto;
	background-color:#ffffff;
	border:solid 1px #c5c5c5;
	display:table;
}
.ConfBox {
	border:solid 1px #c5c5c5;
	background:#ffffff;
}
.ConfBox > table > tr > th {
	padding:20px;
	padding-bottom:0;
	line-height:150%;
	white-space:nowrap;
}
.ConfBox > table > tr > td {
	padding:20px 15px 15px 15px;
	text-align:center;
}
/*-- レイアウト ------------------------------------------------*/
.Layout > tbody > tr {
	vertical-align:top;
}
.Layout > tbody > tr > td {
	padding:0;
	padding-right:10px;
}
.Layout > tbody > tr > td:last-child {
	padding-left:10px;
	padding-right:0;
}
.Layout > tbody > tr:last-child > td {
	padding-bottom:0;
}
/*-- タブ ----------------------------------------------------*/
.Tab > ul {
	position:relative;
	z-index:2;
	height:31px;
	white-space:nowrap;
}
.Tab > ul > li {
	position:relative;
	list-style-type:none;
	display:inline-block;
	width:125px;
	margin-left:10px;
}
.Tab > ul > li:first-child {
	margin-left:0;
}
.Tab > ul > li > label {
	position:absolute;
	display:block;
	top:0;
	left:0;
	width:124px;
	height:29px;
	text-align:center;
	line-height:32px;
	background-color:#ffffff;
	border:solid 1px #bbbbbb;
}
.Tab > div {
	position:relative;
	overflow:hidden;
	min-height:395px;
}
.Tab > div > iframe {
	display:block;
	width:100%;
}
.Tab > ul {
	border-bottom:solid 1px #bbbbbb;
}
.Tab > ul > li > input:checked + label {
	color:#575962;
	background-color:#ffffff;
	border-bottom:solid 1px #ffffff;
}
.Tab > ul > li > input:checked + label:after {
	content:'';
	position:absolute;
	background:#de4e4e;
	width:100%;
	height:2px;
	top:0;
	left:0;
}
.Tab > ul > li > label:hover {
	color:#575962;
	background-color:#f597af;
	cursor:pointer;
}
.Tab > ul > li > input:checked + label:hover {
	background-color:#ffffff;
	cursor:auto;
}
/*-- タイトル -------------------------------------------------*/
.PageHeader > tbody > tr > th,
.PageHeader > tbody > tr > td,
.PageFooter > tbody > tr > th,
.PageFooter > tbody > tr > td {
	padding:13px 20px 12px 20px;
	border-bottom:solid 1px #c5c5c5;
	background:#f5f5f5;
	white-space:nowrap;
}
.PageFooter > tbody > tr > th,
.PageFooter > tbody > tr > td {
	border-top:solid 1px #c5c5c5;
	border-bottom:none;
}
.PageHeader > tbody > tr > th,
.PageFooter > tbody > tr > th {
	font-size:14px;
	text-align:left;
	font-weight:bold;
}
.PageHeader .Input,
.PageFooter .Input {
	padding-top:6px;
	padding-bottom:6px;
}
.Control > tbody > tr > td {
	white-space:nowrap;
	padding:6px 0;
}
.Control .Text {
	padding:12px 0;
}
.Title > tbody > tr > td {
	white-space:nowrap;
	padding:6px 0;
}
.Title .Text {
	padding:12px 0;
}
.Title2 .Text2 {
	padding:8px 0;
}
.Title2 > tbody > tr > td {
	white-space: nowrap;
	padding: 1px 0;
}
/*-- フォーム -----------------------------------------------*/
.Form > tbody > tr > th,
.Form > tbody > tr > td {
	padding:1px;
	border:solid 1px #c5c5c5;
	white-space:nowrap;
}
.Form > tbody > tr > th {
	background:#f1f5f9;
	padding:7px;
	color:#56688a;
	font-weight:bold;
}
.Form .Text {
	padding:8px 6px;
}
.Form .Text2 {
	padding:6px 6px;
}
.Form .Input {
	padding:1px;
}
.Form .Ellipsis {
	padding:8px 6px;
}
/*-- リスト -------------------------------------------------*/
.List {
	background-color:#ffffff;
}
.List > tbody > tr > th,
.List > tbody > tr > td {
	padding:7px;
	border:solid 1px #c5c5c5;
	white-space:nowrap;
}
.List > tbody > tr > th {
	background:#f1f5f9;
	text-align:center;
	color:#56688a;
	font-weight:bold;
}
.List > tbody > tr:hover {
	background-color:#f597af;
	cursor:pointer;
}
.List > tbody > tr > th:hover {
	background-color:#f597af;
	cursor:pointer;
}
.List .Input {
	padding:1px;
}
/*-- スクロールボックス -------------------------------------------*/
.ScrollBox {
	overflow-y:scroll;
	border:solid 1px #c5c5c5;
	border-left:none;
	border-left:none;
}
.ScrollBox > table > tbody > tr:last-child > td {
	border-bottom:none;
}
.ScrollBox > table > tbody > tr:first-child > th {
	border-top:none;
}
.ScrollBox::-webkit-scrollbar {
	width:8px;
	height:8px;
}
.ScrollBox::-webkit-scrollbar-track-piece {
	border-left:solid 1px #ebedf2;
}
.ScrollBox::-webkit-scrollbar-thumb {
	background-color:#ebedf2;
}
/*-- バリデーションエラー -----------------------------------*/
.ValidBal {
	position:absolute;
	z-index:2000;
	background-color:#ffffff;
	border:solid 1px #c5c5c5;
	color:#ff0000;
	padding:8px;
	border-radius:4px;
	transition:opacity ease-in-out 0.15s;
}
.ValidBal:after {
	position:absolute;
	content:' ';
	background-color:#ffffff;
	border-bottom:solid 1px #c5c5c5;
	border-right:solid 1px #c5c5c5;
	border-left:none;
	border-top:none;
	width:8px;
	height:8px;
	left:8px;
	bottom:-5px;
	transform:rotate(45deg);
}
/*-- 文言候補リスト --------------------------------------------*/
.MiniList {
	border:solid 1px #c5c5c5;
	background-color:#ffffff;
	padding:0;
	overflow:hidden;
}
.MiniList > table > tbody > tr > td {
	padding:5px;
	max-width:100px;
	overflow:hidden;
	text-overflow:ellipsis;
	white-space:nowrap;
}
.MiniList > table > tbody > tr[active="1"] {
	background-color:#f597af;
}
.MiniList > table > tbody > tr:hover {
	background-color:#f597af;
	cursor:pointer;
}
.MiniList > table > tbody > tr:last-child > td:nth-child(2) {
	padding:1px;
}
.MiniList > table > tbody > tr:first-child {
	border-top:none;
}
.MiniList::-webkit-scrollbar {
	width:8px;
	height:8px;
}
.MiniList::-webkit-scrollbar-track-piece {
	border-left:solid 1px #c5c5c5;
}
.MiniList::-webkit-scrollbar-thumb {
	background-color:#c5c5c5;
}
.MiniList::-webkit-scrollbar-corner {
	display:none;
}
/*-- Ellipsis ---------------------------------------------*/
.Ellipsis {
	max-width:0;
	min-width:auto;
	overflow:hidden;
	text-overflow:ellipsis;
}
/*-- 印刷 -----------------------------------*/
@media print {
	* {
		border-radius:0;
	}
	.SideBar,
	.Footer,
	.Template > tbody > tr > th ,
	*[noprint],
	input[type="button"] {
		display:none;
	}
	input[type="text"], input[type="password"], input[type="file"] {
		border:none;
	}
	.PageHeader > tbody > tr > th,
	.PageHeader > tbody > tr > td {
		background-color:transparent;
	}
	.Body > tbody > tr > td {
		background-color:#ffffff !important;
	}
}