﻿@charset "UTF-8";

@import url(https://fonts.googleapis.com/earlyaccess/notosansjp.css);

body
{
	font-family: Roboto, 'Noto Sans JP', sans-serif;
	overflow-y: auto;
	overflow-x: hidden;
	-webkit-font-smoothing: antialiased;
}

/****************************************
 Layout
****************************************/
.l-navSticky-top
{
	position: -webkit-sticky; /*ベンダープレフィックス*/
	position: sticky; /*固定*/
	top: 66px; /*固定したい位置*/
	z-index: 99;
	padding-top: 5px;
	margin-top: -5px;
}

/****************************************
 Component
****************************************/
.c-link
{
	color: #428bca;
	text-decoration: none;
}

	.c-link:hover,
	.c-link:focus
	{
		color: #2a6496;
		text-decoration: underline;
	}

input[type="submit"][class="c-link"]
{
	background-color: transparent;
	border: 0px solid transparent;
}

.c-btnTopBottom
{
	display: inline-block;
	width: 60px;
	height: 60px;
	text-align: center;
	line-height: 90px;
	border: 1px solid #226fbf;
}

.c-btnTopBottom__top
{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../img/backtoTop.png) no-repeat;
}

.c-btnTopBottom__bottom
{
	display: inline-block;
	width: 40px;
	height: 40px;
	background: url(../img/skiptoBottom.png) no-repeat;
}

.c-bread {
	padding: 0;
	list-style: none;
	font-size: 12px;
	margin-bottom: 8px;
}

.c-bread__item
{
	display: inline-block;
	margin-right: 12px;
}

.c-bread__link
{
	color: gray;
}

.c-progress
{
	position: fixed;
	top: 70px;
	left: 300px;
	z-index: 1;
}

.c-mainttl
{
	color: #226fbf;
	font-size: 24px;
	text-align: center;
}

.c-menubtn
{
	width: 100%;
	height: 50px;
	line-height: 38px;
	font-size: 16px;
}

.c-menubtn2
{
	width: 50%;
	height: 50px;
	line-height: 38px;
	font-size: 16px;
}

.c-ctrlboxFlex
{
	display: flex;
	flex-wrap: wrap;
	gap: 20px;
}

.c-ctrlbox
{
	padding: 0.5em 1em;
	background: linear-gradient(to bottom, #ffffff, #eeeeee);
	background: -webkit-linear-gradient(top, #fffff, #eeeeee);
	box-shadow: 2px 1px 5px rgba(0, 0, 0, 0.22);
	border-left: solid 5px #226FBF;
	color: #5d627b;
}

.c-ctrlboxP50
{
	width: calc(50% - 10px);
}

.c-ctrlbox__lbl
{
	font-size: 16px;
}

.panel-title > a
{
	color: #226fbf;
	font-weight: bold;
}

.c-panel__link
{
	display: block;
	padding: 10px 15px;
	background-color: #f5f5f5;
}

.c-panel__arrow::after
{
	content: "";
	position: absolute;
	top: 6px;
	right: 15px;
	display: inline-block;
	width: 0;
	height: 0;
	border: 7px solid transparent;
	border-bottom: 12px solid #428bca;
}

.collapsed.c-panel__arrow::after
{
	top: 14px;
	border-top: 12px solid #428bca;
	border-bottom: transparent;
}

.c-table,
.c-tableCase
{
	font-size: 10pt;
}

.c-table__cell
{
	height: 36px;
	padding: 5px;
	border: 1px lightgray solid;
	background-color: lightyellow;
	/*text-align: center !important;*/
}

.c-table__cell-1eighth
{
	width: calc(100% / 8);
}

.c-table__cell-3eighth
{
	width: calc(100% / 8 * 3);
}

.c-tableCase tbody
{
	width: 100%;
}

.c-tableCase__tr
{
	float: left;
	width: 50%;
}

.c-tableCase__cell
{
	display: block;
	height: 36.22px;
	padding: 5px;
	border-left: 1px lightgray solid;
	border-top: 1px lightgray solid;
	background-color: lightyellow;
	text-align: left;
}

th.c-tableCase__cell
{
	padding: 8px;
}

.c-tableCase__cell .c-checkbtn,
.c-tableCase__cell .c-radiobtn
{
	margin: 2px 0;
}

.c-tableCase__cell:last-child
{
	border-bottom: 1px lightgray solid;
}

.c-tableCase__border-right
{
	margin-right: -1px;
	border-right: 1px lightgray solid;
}

.c-tablePartition__width
{
	width: 877px;
}

.c-tablePartition__input-cell-width
{
	width: calc(877px - 189.66px);
}
/*ctrlboxのレイアウト用*/
.c-tableCtrlbox__cell
{
	display: block;
	height: 36px;
	padding: 5px;
}

.c-listtable__header
{
	background-color: #507cd1;
	color: #fff;
	font-weight: bold;
}

	.c-listtable__header th
	{
		border: 1px solid #fff;
	}

.c-listtable__body tr:nth-child(odd)
{
	background-color: #eff3fb;
}

.c-listtable__body.hikaku tr:first-child
{
	background-color: #d1ddf1;
	font-size: 18px;
}

	.c-listtable__body.hikaku tr:first-child td input
	{
		cursor: not-allowed;
		opacity: 0.5;
		filter: alpha(opacity=50);
		visibility: hidden;
	}

.c-listtable__cell
{
	padding: 5px;
}

.c-dropdown,
.c-textbox
{
	width: 100%;
	height: 25px;
}

	.c-dropdown.form-control,
	.c-textbox.form-control
	{
		padding: 0 6px;
	}

.c-checkbox label,
.c-radiobtn label
{
	display: inline-block;
	margin-bottom: 0;
	font-weight: normal;
	cursor: pointer;
}

.c-checkbox input[type="checkbox"],
.c-radiobtn input[type="radio"]
{
	display: inline-block;
	padding: 0;
	margin: 0 5px 0 10px;
	vertical-align: -2px;
}

.c-gridview
{
	border: solid 1px gainsboro;
	color: #333;
	font-size: 10pt;
}

	.c-gridview th,
	.c-gridview td
	{
		padding: 2px 4px;
		border: solid 1px gainsboro;
	}

.c-gridview__header,
.c-gridview__footer
{
	background-color: #507cd1;
	color: #fff;
	font-weight: bold;
	text-align: center;
}

.c-gridview__row
{
	background-color: #eff3fb;
}

.c-gridview__editRow
{
	background-color: #2461bf;
}

.c-gridview__selectRow
{
	background-color: #d1ddf1;
	font-weight: bold;
	transform: scale(1.03, 1.03);
}

.c-gridview__alternatingRow
{
	background-color: #fff;
}

.c-gridview__alternating .c-gridview__row:nth-child(odd)
{
	background-color: #fff;
}

.c-gridview__sortedAscendingCell
{
	background-color: #f5f7fb;
}

.c-gridview__sortedAscendingHeader
{
	background-color: #6095e1;
}

.c-gridview__sortedDescendingCell
{
	background-color: #e9ebef;
}

.c-gridview__sortedDescendingHeader
{
	background-color: #4870be;
}

.c-gridviewSticky
{
	overflow-y: scroll;
}

.c-gridviewSticky__table
{
	position: relative;
	border-collapse: collapse;
}

.c-gridviewSticky__header
{
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	background-color: #507cd1;
}

.c-gridviewSticky__pager
{
	position: -webkit-sticky;
	position: sticky;
	bottom: 0;
	background-color: #fff;
}

.c-gridviewSticky__footer
{
	display: none;
	position: -webkit-fixed;
	position: fixed;
	top: 168px;
	width: 1140px;
	background-color: #507cd1;
}

.c-pager
{
	background-color: #fff;
	color: #2461bf;
	font-size: 12pt;
	text-decoration: underline;
}

	.c-pager span,
	.c-pager a
	{
		padding-left: 6px;
		padding-right: 6px;
	}

		.c-pager a:hover
		{ /*マウスオーバー時*/
			color: #000;
		}
/*
input[type="submit"][class="c-btnUp"],
input[type="submit"][class="c-btnDown"]{
	display:block;
	width:40px;
	height:40px;
	padding:0;
	background-color: transparent;
	border:0px solid transparent;
}
input[type="submit"][class="c-btnUp"]:hover
input[type="submit"][class="c-btnDown"]:hover{
	background-color:#a00;
}
.c-btnUp{
	background:url(../img/change.png) no-repeat;
	margin-bottom:40px;
}
.c-btnUp:hover{
	transform:rotate(-90deg);
	transition: 300ms;
}
.c-btnDown{
	background:url(../img/change_reversal.png) no-repeat;
}
.c-btnDown:hover{
	transform:rotate(90deg);
	transition: 300ms;
}
*/
input[type="submit"][class="c-btnUp"],
input[type="submit"][class="c-btnDown"]
{
	/*	appearance: auto;
	user-select: none;
	white-space: pre;
	align-items: flex-start;
	text-align: center;
	box-sizing: border-box;*/
	width: 0;
	padding: 0;
	background-color: transparent;
	border: 10px solid transparent;
	color: transparent;
}

input[type="submit"][class="c-btnUp"]
{
	position: absolute;
	top: -35px;
	border-bottom: 18px solid #428bca;
}

input[type="submit"][class="c-btnDown"]
{
	position: absolute;
	top: 35px;
	border-top: 18px solid #428bca;
}
/****************************************
 ドラッグ＆ドロップ ファイルアップデート
****************************************/
.c-fileUpload
{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 80px;
	line-height: 380px;
}

.c-fileUpload2
{
	box-sizing: border-box;
	width: 100%;
	height: 100%;
	padding: 80px;
	line-height: 145px;
}

.c-dropArea-text
{
	position: absolute;
	top: 38%;
	left: 80px;
	margin: auto;
	line-height: 30px;
}

.c-dropArea-text2
{
	position: absolute;
	top: 25%;
	left: 80px;
	margin: auto;
	line-height: 30px;
}

#dropArea
{
	width: 100%;
	height: 500px;
	border: 2px dashed #494949;
	background: rgba(22, 165, 191, 0);
	transition: all 0.25s cubic-bezier(0.21, 0.51, 0.51, 1);
}

	#dropArea.dragover
	{
		border: 2px dashed #16a5bf;
		background: rgba(22, 165, 191, 0.6);
	}

#dropArea_dxf
{
	width: 100%;
	height: 250px;
	border: 2px dashed #494949;
	background: rgba(22, 165, 191, 0);
	transition: all 0.25s cubic-bezier(0.21, 0.51, 0.51, 1);
}

#dropArea_pdf
{
	width: 100%;
	height: 250px;
	border: 2px dashed #494949;
	background: rgba(22, 165, 191, 0);
	transition: all 0.25s cubic-bezier(0.21, 0.51, 0.51, 1);
}
/*#inputFile {
	position: relative;
	padding: 180px 0 100px;
	text-align: center;
}
#dropArea {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 100px 0 0;
	border: 2px dashed #494949;
	background: rgba(22, 165, 191, 0);
	transition: all 0.25s cubic-bezier(0.21, 0.51, 0.51, 1);
}
#dropArea.dragover {
	border: 2px solid #16a5bf;
	background: rgba(22, 165, 191, 0.6);
}
#uploadFile {
	position: absolute;
	top: 0;
	left: 0;
	z-index: 10;
	display: block;
	width: 300px;
	height: 80px;
	opacity: 0;
}
#inputFileWrap {
	position: relative;
	display: inline-block;
}
#btnInputFile,
#btnChangeFile {
	display: table;
	width: 300px;
}
#btnChangeFile {
	display: none;
}
#btnInputFile span,
#btnChangeFile span {
	position: relative;
	z-index: 2;
	display: table-cell;
	width: 300px;
	height: 80px;
	border: 1px solid #333;
	border-radius: 4px;
	background: #333;
	text-decoration: none;
	color: #fff;
	font-size: 26px;
	line-height: 1;
	font-weight: bold;
	vertical-align: middle;
}
#upFileWrap.selected #btnInputFile {
	display: none;
}
#upFileWrap.selected #btnChangeFile {
	display: table;
}*/
/****************************************
 パスワードの表示 / 非表示
****************************************/
.fa
{
	padding-left: 4px;
	vertical-align: -6px;
}

.fa-eye:before 
{
	content: url(../../image/eye_open.png);
}

.fa-eye-slash:before
{
	content: url(../../image/eye_slash.png);
}
/****************************************
 Utility
****************************************/
.u-relative
{
	position: relative;
}

.u-fixed
{
	position: fixed;
}

.u-wP9
{
	width: 9%;
}

.u-wP10
{
	width: 10%;
}

.u-wP11H
{
	width: 11%;
}

.u-wP16
{
	width: 16%;
}

.u-wP20
{
	width: 20%;
}

.u-wP25
{
	width: 25%;
}

.u-wP33
{
	width: 33.33333333333333%;
}

.u-wP50
{
}

.u-wP66
{
	width: 66.66666666666666%;
}

.u-wP75
{
	width: 75%;
}

.u-wP100
{
	width: 100%;
}

.u-w50
{
	width: 50px;
}

.u-w75
{
	width: 75px;
}

.u-w100
{
	width: 100px;
}

.u-w120
{
	width: 120px;
}

.u-w150
{
	width: 150px;
}

.u-w190
{
	width: 189.66px;
}

.u-w240
{
	width: 240px;
}

.u-w320
{
	width: 320px;
}

.u-w379
{
	width: 379px;
}

.u-w380
{
	width: 380.33px;
}

.u-m0
{
	margin: 0;
}

.u-mt5
{
	margin-top: 5px;
}

.u-mt20
{
	margin-top: 20px;
}

.u-mt50
{
	margin-top: 50px;
}

.u-mt100
{
	margin-top: 100px;
}

.u-ml10
{
	margin-left: 10px;
}

.u-ml20
{
	margin-left: 20px;
}

.u-mb5
{
	margin-bottom: 5px;
}

.u-mb6
{
	margin-bottom: 6px;
}

.u-mb10
{
	margin-bottom: 10px;
}

.u-mb20
{
	margin-bottom: 20px;
}

.u-mb30
{
	margin-bottom: 30px;
}

.u-mb70
{
	margin-bottom: 70px;
}

.u-mb100
{
	margin-bottom: 100px;
}

.u-p0
{
	padding: 0px;
}

.u-p8
{
	padding: 8px;
}

.u-pt20
{
	padding-top: 20px;
}

.u-pb5
{
	padding-bottom: 5px;
}

.u-pb20
{
	padding-bottom: 20px;
}

.u-fs10
{
	font-size: 10px;
}

.u-fs12
{
	font-size: 12px;
}

.u-fs14
{
	font-size: 14px;
}

.u-fs18
{
	font-size: 18px;
}

.u-fs24
{
	font-size: 24px;
}

.u-fwBold
{
	font-weight: bold;
}

.u-bgcWhite
{
	background-color: #fff;
}

.u-borderTNone
{
	border-top: none;
}

.u-borderLNone
{
	border-left: none;
}

.u-borderBNone
{
	border-bottom: none;
}

.u-borderRNone
{
	border-right: none;
}

.fc-timeline-header a {
	color: inherit;
	text-decoration: none;
}

