/* global */

/*
 * html {
    transform-origin: top left;
    transform: scale(0.8);
}
*/
body {
	font-family: 'M PLUS 1p', sans-serif;
	color: #333333;
	background-color: white;
	font-size: 12px;
}
h2 {
	font-size: 1.4em;
	font-weight: 900;
	margin: 0 0 1em;
}
h2 i {
	margin-right: 0.3em;
}
h3 {
	font-size: 1.2em;
	font-weight: 900;
	margin: 1em 0;
	color: #3490dc;
}
h4 {
	font-size: 1.2em;
	font-weight: 900;
	margin: 1em 0;
}
.container {
	max-width: 100%;
}

/* 左サイドメニュー */
nav {
	position: fixed !important;
	width: 100%;
	z-index: 5000;
	height: 50px;
	background-color: #B3B3B3 !important;
}
.navbar span {
	display: inline-block;
	margin-left: 6px;
	color: white;
	font-size: 0.6em;
}
.navbar-nav i {
	margin-right: 6px;
}
.navbar-brand > img {
	width: 24px;
	height: 24px;
	margin-right: 6px;
}
#navbarDropdown {
	color: white !important;
}

/* 1行ブロックdiv */
div.row {
	margin-bottom: 0.5em;
}

/* 画面上部ファンクションボタン */
div.function-buttons {
	background-color: #fbfbfb;
	height: 50px;
	width: calc(100% - 0px);
	position: fixed;
	left: 0px;
	top: 50px;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	border-bottom: 1px solid #f2f2f2;
	z-index: 3000;
}
div.function-buttons.bottom {
	top: unset;
	bottom: 0;
	border-top: 1px solid #f2f2f2;
}
div.function-buttons > button,
div.function-buttons.bottom > div{
	display: inline-block;
	margin: 0 4px;
	font-size: 0.8em;
	width: 80px;
	border: 0;
	background-color: #e6e6e6;
	padding: 4px;
	border-radius: 2px;
}
.function-button-set1 {
	display: block;
}
.function-button-set2 {
	display: none;
}

/* labelタグ文字列の右に余白 */
div.function label {
	margin-right: 1em;
}
/* radioボタンの右に余白 */
input[type=radio] {
    margin-right: 0.5em;
}

/* inputタグ用スタイル */
input[type="text"],input[type="number"], input[type="tel"], input[type="date"], input[type="month"],select {
	padding: 2px 6px;
	font-size: 0.9em;
	margin:0 0.5em 0 0;
	border: 1px solid #ccc;
}
.input-text-vshort {
	width: 40px;
}
.input-text-short {
	width: 60px;
}
.input-text-hshort {
    width: 80px;
}
.input-text-medium {
	width: 100px;
}
.input-text-long {
	width: 140px;
}
.input-text-nlong {
	width: 250px;
}
.input-text-slong {
	width: 100%;
	max-width: 500px;
}
.input-text-vlong {
	width: 100%;
	max-width: 800px;
}
.input-text-date {
	width: 140px;
}
.input-text-month {
	width: 125px;
}
input:focus, select:focus, textarea:focus {
	outline: 1px  solid #ccc;
}
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;
}
input:-moz-read-only {
	background-color: #f2f2f2;
}
input:read-only, input:disabled{
	background-color: #f2f2f2;
}

/* 位置調整用のマージンスタイル */
.m2 {
	margin: 2px;
}

select {
	font-size: 1em !important;
}

.row-sub-label {
	width: auto;
}
.clabel > label {
	margin-left: 1em;
}
.input-text-long_2 {
	width: 300px;
}
.scroll-div {
	height: 200px;
	overflow: auto;
}
.scroll-heading {
	height: 200px;
	padding-top: 10%;
	font-weight: bold;
	font-size: 13px;
}
.input-amount {
	text-align: right;
}

/* left menu */
div.left-menu {
	width: 320px;
	background-color: rgba(230, 230, 230, 1);
	position: fixed;
	top: 0;
	font-size: 0.9em;
	height: calc(100% - 50px);
	z-index: 5000;
	margin-top: 50px;
	overflow: scroll;
	left: -320px;
	transition: all 300ms 0s ease;
}
.left-menu.menu--isOpen {
	transform:translateX(320px)
}
div.left-menu ul,
div.left-menu li {
	margin: 0;
	padding: 0;
	list-style: none;
}
div.left-menu > ul {
	padding: 1em 0;
}
div.left-menu li {
	cursor: pointer;
	padding: 0.2em 1.5em;
}
div.left-menu i {
	color: #666;
	margin-right: 0.5em;
}
div.left-menu li > a > span {
	color: #666;
	margin-right: 4px;
}

/* main container */
main .container {
	margin-top: 100px;
	max-width: initial;
	width: auto;
	padding: 0 48px;
}
main .guest {
	margin-left: 0;
}

/* dashboard */
div.information-list {
}
div.information-list > span {
	display: inline-block;
	margin: 0.1em;
}
div.information-list > span:first-child {
	color: #074080;
	margin-left: 0;
	margin-right: 0.6em;
}
input.selected {
	border: solid 2px #87cefa;
}

/* select box */
.select-box-small {
	width: 25%;
	border-radius: 2px;
}

#sub_menu_tab {
	display: flex;
	flex-wrap: nowrap;
}

#sub_menu_tab > div {
	width: 100%;
	text-align: center;
	vertical-align: middle;
	padding: .375rem .75rem;
	border-radius: .4rem .4rem 0 0;
	background: #e6e6e6;
	cursor: pointer;
}

#sub_menu_tab > div.tabSelect {
	background: white;
	border: solid 1px #e6e6e6;
	border-bottom: none;
}

#sub_menu_tab > div.tabGreen {
	border-top: solid 3px lightgreen;
}

#sub_menu_tab > div.tabRed {
	border-top: solid 3px orangered;
}

tr.trSelect {
	background: lavender;
}

tr.disabledRow {
	background: #e6e6e6
}

.modal.js-modal{
	display: none;
	height: 100vh;
	position: fixed;
	top: 0;
	width: 100%;
	background: rgba(0, 0, 0, 0.2);
	z-index: 11111;
}
.modal_bg {
	height: 100vh;
	position: absolute;
	width: 100%;
}
.modal_content {
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	width: 400px;
	background: white;
	height: 250px;
	padding: 40px;
	z-index: 111111;
}

.modal .row.modalButton {
	margin-top:30px;
	justify-content: space-around;
}

.modal .row.modalButton > button {
	border: none;
	border-radius: 5px;
	padding: 6px 0;
	width: 70px;
	background: lightgray;
	color: darkslategray;
}
.modal .row.modalButton > button.yes {
	background: cornflowerblue;
	color: white;
}
.modal .function div.row {
	width: 100%;
	margin-right: 0;
	margin-left: 0;
}

.function-buttons.large-modal {
	width: 100%;
	left: 0;
}

.dropdown .dropdown-menu {
	overflow:auto;
	max-height: 250px;
}
.dropdown ul {
	padding: 0;
	border-radius: 0;
}
.dropdown ul li, .dropdown ol li {
	font-size: 12px;
	color: #404040;
	border-left: solid 6px cornflowerblue;/*左側の線*/
	border-bottom: solid 2px #dadada;/*下に灰色線*/
	background: whitesmoke;
	margin-bottom: 1px;/*下のバーとの余白*/
	line-height: 1.5;
	padding: 0.3em;
	list-style-type: none!important;/*ポチ消す*/
	font-weight: bold;
}
.dropdown ul li:hover, .dropdown ol li:hover {
	color: white;
	background-color: royalblue;
}

td.withinput{
	position:relative;
}

td.withinput input {
	width:100%; box-sizing:border-box;
}

.sticky_table thead th {
	/* 縦スクロール時に固定する */
	position: -webkit-sticky;
	position: sticky;
	top: 0;
	/* tbody内のセルより手前に表示する */
	z-index: 1;
}

.sticky_table_wrapper {
	overflow: scroll;
	width: calc(100vw - 1rem);
	height: 35vh;
}

/* テーブルソーター用 */
.tablesorter-default {
	width:100%;
	font:12px/18px Arial,Sans-serif;
	color:#333;
	background-color:#fff;
	border-spacing:0;
	margin:10px 0 15px;
	text-align:left
}

.tablesorter-default th, .tablesorter-default thead td {
	font-weight:700;
	color:#000;
	background-color:#6cb2eb;
	border-collapse:collapse;
	border-bottom:#ccc 2px solid;
	padding:0
}

.tablesorter-default tfoot td, .tablesorter-default tfoot th {
	border:0
}
.tablesorter-default .header, .tablesorter-default .tablesorter-header
{
	background-image:url(data:image/gif;base64,R0lGODlhFQAJAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAkAAAIXjI+AywnaYnhUMoqt3gZXPmVg94yJVQAAOw==);background-position:center right;background-repeat:no-repeat;cursor:pointer;white-space:normal;padding:4px 20px 4px 4px
}

.tablesorter-default thead .headerSortUp, .tablesorter-default thead .tablesorter-headerAsc, .tablesorter-default thead .tablesorter-headerSortUp
{
    background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjI8Bya2wnINUMopZAQA7);border-bottom:#000 2px solid
}

.tablesorter-default thead .headerSortDown,.tablesorter-default thead .tablesorter-headerDesc,.tablesorter-default thead .tablesorter-headerSortDown{background-image:url(data:image/gif;base64,R0lGODlhFQAEAIAAACMtMP///yH5BAEAAAEALAAAAAAVAAQAAAINjB+gC+jP2ptn0WskLQA7);border-bottom:#000 2px solid}

.tablesorter-default thead .sorter-false{background-image:none;cursor:default;padding:4px}

.tablesorter-default tfoot .tablesorter-headerAsc,.tablesorter-default tfoot .tablesorter-headerDesc,.tablesorter-default tfoot .tablesorter-headerSortDown,.tablesorter-default tfoot .tablesorter-headerSortUp{border-top:#000 2px solid}

.tablesorter-default td{background-color:#fff;border-bottom:#ccc 1px solid;padding:4px;vertical-align:top}

.tablesorter-default tbody>tr.even:hover>td,.tablesorter-default tbody>tr.hover>td,.tablesorter-default tbody>tr.odd:hover>td,.tablesorter-default tbody>tr:hover>td{background-color:#fff;color:#000}

.tablesorter-default .tablesorter-processing{background-position:center center!important;background-repeat:no-repeat!important;background-image:url(data:image/gif;base64,R0lGODlhFAAUAKEAAO7u7lpaWgAAAAAAACH/C05FVFNDQVBFMi4wAwEAAAAh+QQBCgACACwAAAAAFAAUAAACQZRvoIDtu1wLQUAlqKTVxqwhXIiBnDg6Y4eyx4lKW5XK7wrLeK3vbq8J2W4T4e1nMhpWrZCTt3xKZ8kgsggdJmUFACH5BAEKAAIALAcAAAALAAcAAAIUVB6ii7jajgCAuUmtovxtXnmdUAAAIfkEAQoAAgAsDQACAAcACwAAAhRUIpmHy/3gUVQAQO9NetuugCFWAAAh+QQBCgACACwNAAcABwALAAACE5QVcZjKbVo6ck2AF95m5/6BSwEAIfkEAQoAAgAsBwANAAsABwAAAhOUH3kr6QaAcSrGWe1VQl+mMUIBACH5BAEKAAIALAIADQALAAcAAAIUlICmh7ncTAgqijkruDiv7n2YUAAAIfkEAQoAAgAsAAAHAAcACwAAAhQUIGmHyedehIoqFXLKfPOAaZdWAAAh+QQFCgACACwAAAIABwALAAACFJQFcJiXb15zLYRl7cla8OtlGGgUADs=)!important}

.tablesorter-default tr.odd>td{background-color:#dfdfdf}

.tablesorter-default tr.even>td{background-color:#efefef}

.tablesorter-default tr.odd td.primary{background-color:#bfbfbf}

.tablesorter-default td.primary,.tablesorter-default tr.even td.primary{background-color:#d9d9d9}

.tablesorter-default tr.odd td.secondary{background-color:#d9d9d9}

.tablesorter-default td.secondary,.tablesorter-default tr.even td.secondary{background-color:#e6e6e6}

.tablesorter-default tr.odd td.tertiary{background-color:#e6e6e6}

.tablesorter-default td.tertiary,.tablesorter-default tr.even td.tertiary{background-color:#f2f2f2}

.tablesorter-default>caption{background-color:#fff}

.tablesorter-default .tablesorter-filter-row{background-color:#eee}

.tablesorter-default .tablesorter-filter-row td {
	background-color:#eee;
	border-bottom:#ccc 1px solid;
	line-height:normal;
	text-align:center;
	-webkit-transition:line-height .1s ease;
	-moz-transition:line-height .1s ease;
	-o-transition:line-height .1s ease;
	transition:line-height .1s ease
}

.tablesorter-default .tablesorter-filter-row .disabled {
	opacity:.5;cursor:not-allowed
}

.tablesorter-default .tablesorter-filter-row.hideme td {
	padding:2px;
	margin:0;
	line-height:0;
	cursor:pointer
}

.tablesorter-default .tablesorter-filter-row.hideme * {
	height:1px;
	min-height:0;
	border:0;
	padding:0;
	margin:0;
	opacity:0
}

.tablesorter-default input.tablesorter-filter, .tablesorter-default select.tablesorter-filter {
	width:95%;
	height:auto;
	margin:4px auto;
	padding:4px;
	background-color:#fff;
	border:1px solid #bbb;
	color:#333;
	-webkit-box-sizing:border-box;
	-moz-box-sizing:border-box;
	box-sizing:border-box;
	-webkit-transition:height .1s ease;
	-moz-transition:height .1s ease;
	-o-transition:height .1s ease;
	transition:height .1s ease
}

.tablesorter .filtered {
	display:none
}

.tablesorter .tablesorter-errorRow td {
	text-align:center;
	cursor:pointer;
	background-color:#e6bf99
}

.fixed-consumer-table tbody tr td {
	background-color: white;
	background-clip: padding-box;
}
.fixed-consumer-table thead th {
	background-color:#6cb2eb;
	background-clip: padding-box;
}
.fixed-consumer-table-column{
	position: sticky;
	left: 0;
}
.fixed-consumer-table-columna{
	position: sticky;
	left: 60px;
}
.fixed-consumer-table-columnb{
    position: sticky;
    left: 170px;
}
.fixed-consumer-table-column:before{
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	border: 1px solid #dee2e6;
}
.fixed-consumer-table-columna:before{
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 100%;
	height: 100%;
	border: 1px solid #dee2e6;
}
.fixed-consumer-table-columnb:before{
	content: "";
	position: absolute;
	top: -1px;
	left: -1px;
	width: 100%;
	height: 100%;
	border: 1px solid #dee2e6;
}

/* 画面ロード中 */
#loading {
	display: table;
	width: 100%;
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background-color: #fff;
	opacity: 0.8;
}
#loading .loadingMsg {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	padding-top: 140px;
	background: ('/css/loading.gif') center center no-repeat;
}

/* 点滅 */
.blink {
	-webkit-animation: blink 2s ease infinite;
	animation: blink 2s ease infinite;
}
@-webkit-keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}
@keyframes blink {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

/* tableセルにinput埋め込み用 */
.table-input-left {
	text-align: left;
	width: 100%;
	margin: 0;
	padding: 0;
}
.table-input-center {
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
}
.table-input-yellow-left:read-only {
	text-align: left;
	width: 100%;
	margin: 0;
	padding: 0;
	cursor: not-allowed;
	color: red;
	background-color: #ffeeba;
}
.table-input-yellow-center:read-only {
	text-align: center;
	width: 100%;
	margin: 0;
	padding: 0;
	cursor: not-allowd;
	color: red;
	background-color: #ffeeba;
}

/* ブラウザからの印刷用 */
@media print {
	.no-print {
		display: none;
	}

	.print-textarea {
		display: block;
		position: relative;
		width: 500px !important;
		height: 30vh !important;
	}

	.print-textarea-C092301 {
		width: 44vw !important;
		height: 25vh !important;
	}

}

/* マウスオーバーでの吹き出し表示 */
.balloon-base {
	position: relative;
}
.balloon-base:hover {
	background-color: #ffeeba;
}
.balloon-base:hover .balloon {
	display: inline;
}
.balloon {
	position: absolute;
	display: none;
	padding: 2px;
	background-color: rgba(192,178,235,0.90);
	width: 400px;
	top: -100px;
	left: -400px;
}
.balloon:after {
	border-left: 12px solid rgba(192,178,235,0.90);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	right: -12px;
	top: 30%;
	content: "";
	position: absolute;
}
.balloon-base2 {
    position: relative;
}
.balloon-base2:hover {
	background-color: #ffeeba;
}
.balloon-base2:hover .balloon2 {
	display: inline;
}
.balloon2 {
	position: absolute;
	display: none;
	padding: 2px;
	background-color: rgba(192,178,235,0.90);
	width: 400px;
	top: -100px;
	left: -400px;
}
.balloon2:after {
	border-left: 12px solid rgba(192,178,235,0.90);
	border-top: 10px solid transparent;
	border-bottom: 10px solid transparent;
	right: -12px;
	top: 30%;
	content: "";
	position: absolute;
}
/*FAQサイト用CSS*/
.accordion_menue {
	font-size: 24px;
	font-weight: bold;
	text-align: center;
	background-color: #D0B0FF;
	height: 50px;
	width: 100%;
	margin: 0;
	margin-top: 10px;
	padding: 0;
	display: table;
	border-radius: 40px 0px 40px 0px;
	cursor: pointer;
}
.accordion_menue > span {
	display: table-cell;
	vertical-align: middle;
}
.accordion_header {
	font-size: 16px;
	background-color: #DCC2FF;
	height: 30px;
	width: 100%;
	margin: 0;
	padding: 0;
	padding-left: 10px;
	display: table;
	border-left: 20px solid #B2D4FF;
	border-radius: 0px 0px 30px 0px;
	cursor: pointer;
}
.accordion_header > span {
	display: table-cell;
	vertical-align: middle;
}
.accordion_one {
	font-size: 16px;
	background-color: #EAD9FF;
	width: 100%;
	margin: 0;
	padding: 0;
	border-left: 20px solid #B2D4FF;
	display: table;
	cursor: pointer;
}
.accordion_one > div{
	color: blue;
	height: 100%;
	vertical-align: middle;
	padding-left: 10px;
	border-left: 20px solid #C2E4FF;
}
.answer{
	font-size: 16px;
	background-color: whitesmoke;
	padding-top: 10px;
	padding-left: 20px;
	border: 1px solid gray;
	border-radius: 10px 10px 10px 10px;
}
/* マウスオーバーした際の背景色 */
.accordion_menue:hover {
	background-color: pink;
	color: white;
}
.accordion_header:hover {
	background-color: pink;
	color: white;
}
.accordion_one:hover {
	background-color: pink;
	color: white;
}
