@charset "UTF-8";

/* ----------------------------------------------
 リセットCSS
 ---------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	font: inherit;
	vertical-align: baseline;
}


/* HTML5 display-role reset for older browsers */

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
}

body {
	line-height: 1;
}

ol,
ul {
	list-style: none;
}

blockquote,
q {
	quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

a {
	margin: 0;
	padding: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent;
	text-decoration: none;
	color: #333;
}


/* For modern browsers */

.cf:before,
.cf:after {
	content: "";
	display: table;
}

.cf:after {
	clear: both;
}


/* For IE 6/7 (trigger hasLayout) */

.cf {
	zoom: 1;
}


/* ----------------------------------------------
 全体共通
 ---------------------------------------------- */

body {
	line-height: 1.4;
	color: #333;
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", Arial, sans-serif;
	font-size: 0.8em;
	background: #f1f4f7;
}

.button {
	position: relative;
	display: inline-block;
	padding: 0.25em 0.5em;
	text-decoration: none;
	color: #FFF;
	background: rgb(30, 144, 255);
	border: solid 1px #0f9ada;
	border-radius: 4px;
	box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2);
	text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
	cursor: pointer;
}

.button:hover {
	background: rgba(30, 144, 255, 0.7)
}

.button:disabled {
	background-image: none;
	background-color: #ccc;
	border-color: #ccc;
	cursor: default;
}

.btn-normal {
	width: 90px;
	height: 30px;
	box-sizing: border-box;
}

.btn-normal-min {
	width: 80px;
	height: 28px;
	box-sizing: border-box;
}

.btn-flex {
	height: 30px;
	padding: 0 15px;
	box-sizing: border-box;
}

button.delete {
	background: rgb(255, 20, 147);
	border: solid 1px #ff80bf;
}

button.delete:hover {
	background: rgba(255, 105, 180, 0.7);
}

button.back {
	background: rgb(128, 128, 128);
	border: solid 1px rgb(153, 153, 153);
}

button.back:hover {
	background: rgba(128, 128, 128, 0.7);
}

button.close {
	color: #555;
	background: rgb(239, 239, 239);
	border: solid 1px rgb(192, 192, 192);
	background: rgb(239, 239, 239);
}

button.close:hover {
	background: rgba(239, 239, 239, 0.7);
}

h1.title-main {
	font-size: 1.2em;
	padding-bottom: 2px;
	border-bottom: 1px solid #a9a9a9;
}

input {
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	color: #333;
	padding: 4px 6px;
	border-radius: 4px;
	box-shadow: rbg(0, 0, 0, 0.075) 0px 1px 1px 0px inset;
	border: 1px solid #ccc;
	font-size: 13px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="number"] {
	-moz-appearance: textfield;
}

select {
	font-size: 13px;
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 4px 6px;
}

option {
	font-size: 13px;
	font-family: "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
	color: #333;
}

.input-text {
	border-radius: 3px;
	height: 18px;
	font-size: 13px;
}

.input-text:focus {
	background-color: #ffffff;
}

.tar {
	text-align: right;
}

.tac {
	text-align: center;
}

.tal {
	text-align: left;
}

label.uneditable:after {
	content: "※編集不可";
	color: #11114d;
	margin-left: 5px;
}

label.error {
	display: block;
	color: red;
}

.alert {
	padding: 5px 5px;
	border: 1px solid transparent;
	border-radius: .25rem;
}

.alert-danger {
	background: #f2dede;
	border-color: #ebcccc;
	color: #a94442;
}


/* ----------------------------------------------
 ヘッダ
 ---------------------------------------------- */

.area-header {
	background: #fffffa;
	box-shadow: 0 2px 1px rgba(0, 0, 0, 0.24);
	/* border-bottom: 1px solid #a9a9a9; */
	padding-top: 10px;
}

.area-header-wrap {
	/* width: 1040px; */
	padding: 0 30px;
	box-sizing: border-box;
}

.area-header header {
	display: flex;
	justify-content: space-between;
	width: 100%;
}


/* システム名 */

.area-header header .title-header {
	font-size: 1.6em;
	font-weight: bold;
}


/* ログイン情報 */

.area-header header .user-header {
	display: flex;
	align-self: center;
	height: 30px;
}

.area-header header .user-header div {
	line-height: 30px;
}

.area-header header .user-header form {
	margin-left: 12px;
}


/* ヘッダ ナビゲーション */

.area-header nav {
	width: 100%;
	padding: 10px 10px 0 10px;
}

.area-header nav ul {
	display: flex;
	justify-content: flex-start;
	width: 1000px;
	margin: 0 auto 0 0;
}

.area-header nav ul li {
	font-size: 1.1em;
	width: 150px;
	margin-right: 7px;
	text-align: center;
	user-select: none;
}

.area-header nav ul li a {
	display: block;
	border: 1px solid #fffffa;
	border-bottom: 5px solid #146b6b;
	cursor: pointer;
	padding: 10px 0;
}

.area-header nav ul li a:hover {
	background: #D1DBE4;
	border-bottom: 5px solid #b22222;
	border-radius: 5px 5px 0 0;
}

.area-header nav ul li.selected a {
	background: #f5f5f5;
	border: 1px solid #dcdcdc;
	border-bottom: 5px solid #b22222;
	border-radius: 5px 5px 0 0;
}

.area-header nav ul li img {
	padding-right: 5px;
}


/* ----------------------------------------------
 ボディ
 ---------------------------------------------- */

.area-wrapper {
	min-width: 1000px;
	margin: 7px 20px 30px 20px;
	display: flex;
	align-items: flex-start
}


/* ----------------------------------------------
 サイドメニュー
 ---------------------------------------------- */

.area-wrapper aside {
	background: #fffafa;
	border-radius: 5px;
	width: 200px;
}

.area-wrapper aside ul {
	border: 1px solid #a9a9a9;
	border-radius: 3px;
}

.area-wrapper aside ul li {
	position: relative;
	border-bottom: 1px solid #d3d3d3;
}

.area-wrapper aside ul li:first-child {
	background: #e6e6e6;
	font-weight: bold;
	padding: 7px 7px;
}

.area-wrapper aside ul li:last-child {
	border-bottom: 0;
}

.area-wrapper aside ul li:hover {
	background: #D1DBE4;
}

.area-wrapper aside ul li:first-child:hover {
	background: #e6e6e6;
	cursor: default;
}

.area-wrapper aside ul li.selected {
	background: #f5f5f5;
	font-weight: bold;
}

.area-wrapper aside ul li.selected:before {
	background-color: #b22222;
	position: absolute;
	content: "";
	top: 0;
	bottom: 0;
	left: 0;
	width: 3px;
}

.area-wrapper aside ul li a {
	display: block;
	padding: 12px 12px;
	cursor: pointer;
}


/* ----------------------------------------------
 メイン
 ---------------------------------------------- */

.area-main {
	background: #fffafa;
	border: 1px solid #a9a9a9;
	/* margin-left: 10px; */
	/* 全体幅 - サイドメニュー */
	width: calc(100% - 200px);
	box-sizing: border-box;
	padding: 15px 25px;
	border-radius: 3px;
}


/* ----------------------------------------------
 ローディング
 ---------------------------------------------- */

#loading_base {
	position: fixed;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	background: rgba(255, 255, 255, 0.05);
	z-index: 10001;
	cursor: wait;
}

#loading {
	padding: 15px;
	position: fixed;
	top: 50%;
	left: 50%;
	background-color: #FFF;
	filter: alpha(opacity=85);
	opacity: 0.85;
	z-index: 10001;
}

#loading .loadingMsg {
	text-align: center;
	padding-top: 100px;
	width: 100px;
	background-image: url("../images/loading.gif");
	background-position: center top;
	background-repeat: no-repeat;
}