/* CSS Document */

@import url(reset.css);
@import url(form.css);
@import url(jquery.lity.css);


* {
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

body {
	font-size: 0.9em;
	color: #363636;
	background-color: #FFFFFF;
	text-align: left;
	line-height: 1.3em;
}

a {
	color: #0057a8;
	text-decoration: underline;
}

a:hover {
	text-decoration: none;
}

img {
	border: none;
}

img.icon {
	height: 1.5em;
	vertical-align: middle;
}

p {
	margin: 0.75em 0 0 0;
}

* p:first-of-type {
	margin: 0;
}

table {
	border-collapse: collapse;
}

.gimon {
	color: #FF5959;
	font-weight: bold;
	font-size: 0.8em;
}

.small {
	font-size: 0.85em;
}

.big {
	font-size: 1.25em;
}

.gray {
	color: #999 !important;
}

.red {
	color: #C00 !important;
}

.blue {
	color: #0B5AD3 !important;
}

.tyusyaku {
	color: #999;
	font-size: 11px;
}

#login {
	display: table;
	width: 100%;
	min-height: -webkit-calc(100vh - 61px);
	min-height: calc(100vh - 61px);
	background: rgba(255, 255, 255, 0.9);
}

#login #contents {
	display: table-cell;
	vertical-align: middle;
	width: 100%;
}

#login table {
	border: 3px solid #DEDEDE;
	border-collapse: separate;
	padding: 20px;
	margin: auto;
}

#login th {
	width: auto;
	white-space: nowrap;
	vertical-align: middle;
	padding: 5px 1em;
	text-align: left;
	background-color: #F4F4F4;
	border-bottom: 2px solid #FFF;
}

#login td {
	width: auto;
	vertical-align: middle;
	color: #666;
	padding: 5px;
}

/* header */

#header {
	width: 100%;
	height: 61px;
	background: #FFF;
	background-image: url(../img/logo.gif);
	background-repeat: no-repeat;
	background-size: auto;
	background-position: 20px center;
	border-bottom: 3px double #DEDEDE;
}

#headerMenu {
	padding-right: 20px;
}

#headerMenu li {
	float: right;
	width: 50px;
	text-align: center;
	list-style: none;
	padding-top: 15px;
}

#headerMenu li img.icon {
	display: block;
	margin: auto;
	width: 25px;
	height: 25px;
}

#headerMenu li a {
	color: #000;
	text-decoration: none;
	font-size: 0.7em;
}

#wrapper {
	width: 100%;
	border: none;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
	-webkit-box-direction: reverse;
	-ms-flex-direction: row-reverse;
	flex-direction: row-reverse;
	min-height: -webkit-calc(100vh - 61px);
	min-height: calc(100vh - 61px);

}

#contents {
	width: 100%;
	margin: 0 auto;
	padding: 25px 25px 50px 25px;
	border: none;
}

#sideMenu {
	float: left;
	width: 250px;
	background: #F4F4F4;
	padding: 25px;
}

#sideMenu dl {
	margin-bottom: 30px;
	font-size: 0.9em;
}

#sideMenu dt {
	margin-bottom: 8px;
	padding-bottom: 3px;
	line-height: 1em;
	border-bottom: 1px solid #CCC;
}

#sideMenu dt img {
	vertical-align: middle;
	padding-right: 8px;
	padding-bottom: 1px;
}

#sideMenu dd {
	margin-bottom: 8px;
	font-weight: normal;
	line-height: 1.25em;
}

#sideMenu dd a {
	color: #363636;
	text-decoration: none;
}

#sideMenu dd a:before {
	content: "■ ";
	color: #CCC;
}

#sideMenu dd a:hover {
	color: #666;
	text-decoration: none;
}


/* common */

.section {
	overflow: hidden;
	width: 100%;
}

.section .left {
	width: 48%;
	float: left;
}

.section .right {
	width: 48%;
	float: right;
}


.button {
	font-size: 12px;
	margin-right: 2px;
	color: #FFF;
	background-color: #0057a8;
	border: none;
	padding: 3px 1em 3px 1em;
	text-decoration: none;
	white-space: nowrap;
}

.button:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.buttonRed {
	background-color: #AD4444 !important;
}

.buttonRight {
	float: right;
}

.announce {
	border: 3px double #9FB5CB;
	background-color: #EBF4FC;
	background-size: 1.5em;
	padding: 15px;
	color: #036;
	margin: 15px 0;
}

.error-msg {
	border: 3px double #D7B9BA;
	background-size: 1.5em;
	background-color: #F9EDEE;
	padding: 15px;
	color: #900;
	margin: 15px 0;
}

h1 {
	font-size: 23px;
	font-weight: bold;
	margin: 0 0 20px 0;
	padding: 0.75em;
	background-color: #F4F4F4;
	border-top: 2px solid #999;
	border-bottom: 2px solid #999;
}

h2 {
	border-bottom: 1px solid #CCC;
	border-left: 3px solid #0057a8;
	font-weight: bold;
	font-size: 18px;
	margin: 40px 0 20px 0;
	padding: 5px 0 5px 0.5em;
}

h3 {
	font-size: 13px;
	font-weight: bold;
	margin: 15px 0 5px 0;
}

.searchArea {
	background-color: #F4F4F4;
	border: 3px double #CCC;
	padding: 10px;
	margin: 15px 0 40px 0;
}

.searchArea table {
	width: 100%;
	font-size: 0.8em;
}

.searchArea table td {
	padding: 0 15px;
}

.searchArea table td hr {
	margin: 10px 0;
	border-top: 1px solid #CCC !important;
}

.actionList {
	background-color: #F4F4F4;
	border: 3px double #CCC;
	padding: 5px 10px;
	margin: 15px 0;
}

.tabMenu {
	border-bottom: 2px solid #0057a8;
}

.tabMenu a {
	border-bottom: 0;
	display: inline-block;
	margin-left: 0.5em;
	padding: 0.5em 2em 0.2em 2em;
	background: #D8D8D8;
	text-decoration: none;
	color: #979797;
}

.tabMenu a.active {
	background: #0057a8;
	color: #FFF;
}

.tabMenu a:hover {
	opacity: 0.7;
	filter: alpha(opacity=70);
}

.lity-container .lity-content .lity-iframe-container {
	height: 80vh !important;
	max-height: 80vh !important;
	overflow: auto;
}

/************ table ************/

table.default {
	border-top: 1px solid #CCCCCC;
	margin: 20px 0;
}

table.narrow {
	width: auto;
}

table.wide {
	width: 100%;
}

table.default th {
	vertical-align: middle;
	text-align: left;
	padding: 6px 7px;
	border-bottom: 1px solid #CCCCCC;
	background-color: #F4F4F4;
	max-width: 300px;
}


table.thfull th {
	white-space: inherit;
	max-width: 100% !important;
}

table.default thead th {
	text-align: center;
	border: 1px solid #CCCCCC;
}

table.default td {
	vertical-align: middle;
	margin: 0;
	padding: 6px 7px;
	border-bottom: 1px solid #CCCCCC;
	background-color: #FFFFFF;
}

table.default td.ankenTitle {
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	max-width: 0;
	min-width: 200px;
}

table.default td.incomplete {
	background: #F1F1F1;
	color: #949494;
	text-align: center;
}

table.default td.incomplete a {
	color: #949494;
}


table.default td.complete {
	text-align: center;
}

table.default td.complete .icon,
table.default td.incomplete .icon {
	height: 1.1em;
}

table.default td.zaikonasi-gokan {
	background: #fff8d1;
}

table.default td.zaikonasi-nouki {
	background: #e3ffdf;
}


table.intricate {
	border-bottom: 3px solid #AAA;
}

table.intricate tbody tr:nth-child(odd) {
	border-top: 3px solid #AAA;
}

table.intricate tbody th,
table.intricate tbody td {
	border-bottom: 1px solid #CCC;
}

table.intricate tbody td {
	border-bottom: 1px solid #CCC;
}


.loopRecord {
	box-shadow: 0px 1px 2px 1px #dcdcdc;
	margin: 10px 0;
	padding: 10px;
	display: table;
	border-collapse: separate;
}


table.default .right {
	text-align: right !important;
}

table.default .left {
	text-align: left !important;
}

table.default .center {
	text-align: center !important;
}

table.move-list {
	width: 100%;
	margin: 5px 0;
	padding: 0px 3px 0px 3px;
	font-size: 0.8em;
}

table.move-list td {
	padding: 2px;
}

table.move-list a {
	margin-right: 2px;
	color: #363636;
	background-color: #EAEAEA;
	border: 1px solid #ACACAC;
	padding: 2px 6px 2px 6px;
	text-decoration: none;
}

table.move-list a:link,
.contents .move-list a:visited {
	color: #363636;
}

table.move-list a:hover {
	color: #363636;
	background-color: #CDDBFF;
}

table.move-list .now,
table.move-list .now:hover {
	color: #FFF !important;
	background-color: #0057a8;
}

.innerTable {
	width: auto;
}

.innerTable th {
	width: auto !important;
	padding: 2px 1em 2px 0 !important;
	border: none !important;
	background-color: #FFF !important;
	vertical-align: middle !important;
}

.innerTable th[valign="top"],
.innerTable td[valign="top"] {
	vertical-align: top !important;
}

.innerTable td {
	width: auto !important;
	padding: 2px 7px !important;
	border: none !important;
	vertical-align: top !important;
}

.innerTable td[valign="middle"] {
	vertical-align: middle !important;
}



/** originalStyle **/

.progressbar {
	height: 2px;
	width: 100%;
	background: #D3D3D3;
	text-align: left;
	margin: 0.3em auto;
}

.progressbar img {
	height: 2px;
}



.separatorHead td {
	border-top: 3px solid #AAA !important;
}

.separatorHead:first-child td {
	border-top: 1px solid #CCCCCC !important;
}