@charset "UTF-8";

/* ----------------------------------------
  reset
---------------------------------------- */

/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
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 {
	border: 0;
	font: inherit;
	font-size: 100%;
	margin: 0;
	padding: 0;
	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: none;
	content: "";
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
th {
	text-align: left;
}


/* ----------------------------------------
  common
---------------------------------------- */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjapanese.css);
body {
	background-color: #fff;
	font-family: 'Noto Sans Japanese', YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
	color: #54698d;
	font-size: 13px;
	line-height: 1.4;
	-webkit-text-size-adjust: 100%;
}
@media all and (-ms-high-contrast:none) {
	body {
		font-family: "メイリオ", "Meiryo", 'Noto Sans Japanese', YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
	}
}
a {
	color: #54698d;
	text-decoration: none;
}
img {
	max-width: 100%;
	width: auto;
	height: auto;
	vertical-align: bottom;
}
.clearfix:after {
	content: "";
	clear: both;
	display: block;
}
input,
textarea,
select,
button {
    font-family: 'Noto Sans Japanese', YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
}
@media all and (-ms-high-contrast:none) {
	input,
    textarea,
    select,
    button {
		font-family: "メイリオ", "Meiryo", 'Noto Sans Japanese', YuGothic, "Yu Gothic", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "ＭＳ Ｐゴシック", "MS PGothic", "Osaka", sans-serif;
	}
}


/* ----------------------------------------
  layouts
---------------------------------------- */

/* 画面全体 */
.base {
	width: 100%;
	min-width: 960px; /* 暫定値 */
	min-height: 100vh;
	background-color: #f4f5f7;
	position: relative;
}
.base-orange {
	background-color: #f8f5f0;
}

/* サイドバー */
.sideBar {
	box-sizing: border-box;
	width: 160px;
	height: 100vh;
	background-color: #505152;
	position: fixed;
	left: 0;
	top: 0;
	z-index: 10000;
}
.sideBar-logo {
	background-color: #3d3f40;
	padding: 20px 15px;
}
.sideBar-home a {
	display: block;
	background-color: #3d3f40;
	padding: 15px;
	color: #fff;
	font-size: 28px;
	text-align: center;
}
.sideBar-menuList {
	background-color: #3d3f40;
	padding-top: 10px;
}
.sideBar-menuList_item a {
	display: block;
	background-color: #505152;
	padding: 15px;
	color: #fff;
	position: relative;
}
.sideBar-menuList_item a .fa-chevron-right {
	width: 9px;
	height: 13px;
	color: #0a1427;
	position: absolute;
	right: 10px;
	top: 50%;
	margin-top: -6px;
	transition: color .2s;
}
.sideBar-menuList_item.current a .fa-chevron-right,
.sideBar-menuList_item a:hover .fa-chevron-right {
	color: #fff;
}
.sideBar-adminMenu {
	background-color: #505152;
	padding: 15px 0;
}
.sideBar-adminMenu_head {
	padding: 0 15px;
	color: #fff;
}
.sideBar-adminMenu_head .fa-user {
	margin-right: 3px;
	font-size: 14px;
}
.sideBar-menuList-admin {
	padding-top: 0;
	margin-top: 10px;
}
.sideBar-menuList-admin_item a {
	padding: 5px 15px;
}

/* メインカラム（サイドバー以外の部分） */
.mainColumn {
	box-sizing: border-box;
	width: 100%;
	padding-left: 160px;
}

/* ページコンテンツ */
.pageHead {
	background-color: #e6eaef;
	padding: 12px 20px;
	color: #2f3c52;
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
}
.base-orange .pageHead {
	background-color: #f9ebd3;
}
.pageBody {
	max-width: 1120px; /* 1120 + 160(sidebar) = 1280 */
	padding: 20px;
}

/* コピーライト */
.footer_copyright {
	padding: 40px 0;
	font-size: 12px;
	text-align: center;
}

/* ページトップボタン */
.btn_pagetop {
	width: 36px;
	height: 36px;
	position: fixed;
	right: 20px;
	bottom: 20px;
}
.btn_pagetop a {
	display: block;
	box-shadow: 0 0 2px 2px #fff;
	border-radius: 50%;
	background-color: #0a7bde;
	width: 100%;
	height: 100%;
	text-align: center;
	line-height: 36px;
	transition: opacity .2s;
}
.btn_pagetop a .fa-chevron-up {
	color: #fff;
}
.btn_pagetop a:hover {
	opacity: 0.6;
}


/* ----------------------------------------
  modules
---------------------------------------- */

/* モジュールページ用 */
.parts {
	margin-top: 40px;
}

/* 仕切り線 */
hr {
	border: none;
	border-top: solid 2px #e5eaee;
	margin: 30px 0;
}

/* １カラムレイアウト */
.mod-1column {
	margin-top: 15px;
	width: 100%;
}
/* ２カラムレイアウト */
.mod-2column {
	margin-top: 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
}
.mod-2column_item {
	width: 49%;
}
.mod-2column_item-main {
	width: 63%;
}
.mod-2column_item-sub {
	width: 35%;
}
/* ３カラムレイアウト */
.mod-3column {
	margin-top: 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
}
.mod-3column_item {
	width: 32%;
}
/* ４カラムレイアウト */
.mod-4column {
	margin-top: 15px;
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
}
.mod-4column_item {
	width: 23.5%;
}

/* ページ見出し */
.mod-headline {
	margin-bottom: 20px;
	color: #2f3c52;
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}
/* ブロック見出し */
.mod-head {
	margin-bottom: 15px;
}
.mod-head-orange {
	color: #f0a02d;
}
.mod-head_title {
	display: inline-block;
	font-size: 18px;
	font-weight: bold;
}
.mod-head_notes {
	display: inline-block;
	margin-left: 10px;
	font-size: 11px;
	font-weight: bold;
}
.mod-subHead_title {
	font-size: 14px;
	font-weight: bold;
}

/* 注釈文言単体 */
.mod-notes {
	font-size: 11px;
}

/* ボタン */
.mod-button a,
.mod-button button,
.mod-button input[type="submit"],
.mod-button input[type="button"],
.mod-button input[type="reset"] {
	margin: 0;
	border: 0;
	background: none;
	padding: 0;
	outline: none;
	appearance: none;
	display: block;
	width: 100%;
	border-radius: 4px;
	background-color: #0a7bde;
	padding: 10px 0;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: .2s;
}
.mod-button-delete a,
.mod-button-delete button,
.mod-button-delete input[type="submit"],
.mod-button-delete input[type="button"],
.mod-button-delete input[type="reset"] {
	background-color: #e74040;
}
.mod-button-cancel a,
.mod-button-cancel button,
.mod-button-cancel input[type="submit"],
.mod-button-cancel input[type="button"],
.mod-button-cancel input[type="reset"] {
	background-color: #8f979f;
}
.mod-button a:hover,
.mod-button button:hover,
.mod-button input[type="submit"]:hover,
.mod-button input[type="button"]:hover,
.mod-button input[type="reset"]:hover {
	opacity: 0.6;
}
.mod-button-disable input[type="submit"] {
	background-color: #bfc9d2;
	cursor: default;
}
.mod-button-disable input[type="submit"]:hover {
	opacity: 1;
}
.mod-detailButton a,
.mod-detailButton button,
.mod-detailButton input[type="submit"],
.mod-detailButton input[type="button"],
.mod-detailButton input[type="reset"] {
	margin: 0;
	border: 0;
	background: none;
	padding: 0;
	outline: none;
	appearance: none;
	display: block;
	width: 40px;
	height: 22px;
	border-radius: 4px;
	border: solid 1px #d8dde6;
	background-color: #fff;
	color: #54698d;
	font-size: 12px;
	line-height: 22px;
	text-align: center;
	cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s;
}
.mod-detailButton a:hover,
.mod-detailButton button:hover,
.mod-detailButton input[type="submit"]:hover,
.mod-detailButton input[type="button"]:hover,
.mod-detailButton input[type="reset"]:hover {
	background-color: #eee;
}

/* ボタン：複数 */
.mod-buttons {
	margin-top: 40px;
	text-align: center;
}
.mod-buttons + .mod-buttons {
	margin-top: 20px;
}
.mod-buttons .mod-button {
	display: inline-block;
	width: 30%;
	margin: 0 1%;
	vertical-align: text-top;
}
.mod-buttons .mod-button-inline {
    width: auto;
    margin: 0;
}
.mod-buttons .mod-button-inline + .mod-button-inline {
    margin-left: 5px;
}
.mod-buttons .mod-button-inline a,
.mod-buttons .mod-button-inline button {
    box-sizing: border-box;
    padding: 10px;
}
/* 注釈を入れる */
.mod-button_notes {
	margin-top: 5px;
	font-size: 11px;
	text-align: left;
}

/* テキストフィールド */
.mod-inputText {
	border-radius: 3px;
	border: solid 1px #b2bac0;
	background-color: #ffffff;
	padding: 5px 8px;
	position: relative;
}
.mod-inputText.is-disabled {
	background-color: #bfc9d2;
}
.mod-inputText-w100 {
	display: inline-block;
	width: 100px;
}
.mod-inputText-w150 {
	display: inline-block;
	width: 150px;
}
.mod-inputText-w200 {
	display: inline-block;
	width: 200px;
}
.mod-inputText.active {
	box-shadow: 0 0 3px 0 rgba(0, 118, 222, 0.5);
	border: solid 1px #0076de;
}
.mod-inputText_label {
	color: #54698d;
	font-size: 13px;
	font-weight: bold;
}
.mod-inputText_error {
	margin-left: 5px;
	vertical-align: top;
	color: #e74040;
	font-size: 12px;
}
.mod-inputText_notes {
	margin-top: 3px;
	font-size: 11px;
	font-weight: bold;
}
.mod-inputText input[type="text"] ,
.mod-inputText input[type="password"] {
	margin: 0;
	border: 0;
	background: none;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	margin-top: 5px;
	width: 100%;
	color: #53575f;
	font-size: 14px;
	line-height: 1.25;
}
/* placeholderの文字色 */
.mod-inputText input[type="text"]:placeholder-shown {
	color: #b8bcc2;
}
.mod-inputText input[type="text"]::-webkit-input-placeholder {
	color: #b8bcc2;
}
.mod-inputText input[type="text"]:-moz-placeholder {
	color: #b8bcc2; opacity: 1;
}
.mod-inputText input[type="text"]::-moz-placeholder {
	color: #b8bcc2; opacity: 1;
}
.mod-inputText input[type="text"]:-ms-input-placeholder {
	color: #b8bcc2;
}
/* オートフィル無効化 */
.mod-inputText input[type="text"]:-webkit-autofill ,
.mod-inputText input[type="password"]:-webkit-autofill {
	-webkit-box-shadow: 0 0 0px 1000px white inset;
}
/* 必須アイコン */
.mod-inputText_label .ic_require {
	display: inline-block;
	margin-left: 5px;
	border-radius: 3px;
	background-color: #e74040;
	padding: 0 5px;
	vertical-align: text-bottom;
	color: #fff;
	font-size: 11px;
	font-weight: normal;
	text-align: center;
	line-height: 16px;
}
/* フィールド外テキスト(単位など) */
.mod-inputText-unit {
	padding-right: 45px;
}
.mod-inputText_unit {
	width: 30px;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	position: absolute;
	right: 10px;
	bottom: 5px;
}

/* テキストフィールド：2つ繋げて並べる */
.mod-2columsInput {
	display: -webkit-flex;
	display: flex;
}
.mod-2columsInput .mod-inputText {
	width: 50%;
	border-radius: 0;
	border-right: 0;
}
.mod-2columsInput .mod-inputText + .mod-inputText {
	border-right: solid 1px #b2bac0;
}
.mod-2columsInput .mod-inputText:first-child {
	border-radius: 3px 0 0 3px;
}
.mod-2columsInput .mod-inputText:last-child {
	border-radius: 0 3px 3px 0;
}

/* テキストフィールド：郵便番号 */
.mod-zipcode {
	font-size: 14px;
	font-weight: bold;
}
.mod-zipcode .mod-inputText {
	display: inline-block;
	margin: 0 10px;
	width: 70px;
	padding: 10px 8px;
}

/* geocoding */
.mod-geocoding_button {
	margin-top: 5px;
	text-align: right;
}
.mod-geocoding_button span {
	display: inline-block;
	margin-left: 10px;
	border-radius: 2px;
	background-color: #0a7bde;
	padding: 0 4px 1px;
	color: #fff;
	font-size: 16px;
	cursor: pointer;
}

/* チェックボックス */
.mod-checkbox {
	padding: 5px 0;
	color: #2f3c52;
	font-weight: bold;
}
.mod-checkbox label {
	display: inline-block;
	cursor: pointer;
}
.mod-checkbox input[type="checkbox"] {
	margin: 0;
	border: 0;
	background: none;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	width: 16px;
	height: 16px;
	border-radius: 4px;
	border: solid 1px #b2bac0;
	background-color: #fff;
	margin-right: 8px;
	vertical-align: sub;
	position: relative;
}
.mod-checkbox.is-disabled input[type="checkbox"] {
	background-color: #bfc9d2;
}
.mod-checkbox input[type="checkbox"]:before {
	content: "";
	display: block;
	position: absolute;
	top: 1px;
	left: 5px;
	width: 3px;
	height: 8px;
	transform: rotate(40deg);
	border-bottom: 1px solid #e5eaee;
	border-right: 1px solid #e5eaee;
}
.mod-checkbox input[type="checkbox"]:checked {
	border-color: #6fde9f;
	background-color: #6fde9f;
}
.mod-checkbox input[type="checkbox"]:checked:before {
	border-color: #fff;
}
/* チェックボックス：横並び */
.mod-checkbox_head {
	display: inline-block;
	margin-right: 20px;
	font-size: 14px;
	font-weight: bold;
}
.mod-checkbox-horizontal {
	display: inline-block;
	padding: 5px 0;
	color: #2f3c52;
	font-weight: bold;
}
.mod-checkbox-horizontal + .mod-checkbox-horizontal {
	margin-left: 15px;
}

/* チェックボックス：スイッチ風 */
.mod-switch_name {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	font-size: 14px;
	font-weight: bold;
	line-height: 1px;
}
.mod-switch input[type="checkbox"] {
	display: none;
}
.mod-switch label {
	display: inline-block;
	vertical-align: middle;
}
.mod-switch label .switch {
	border: solid 1px #ccc;
	display: inline-block;
	width: 48px;
	height: 24px;
	background-color: #9faab6;
	border-radius: 12px;
	vertical-align: middle;
	overflow: hidden;
	transition: .1s;
	opacity: .1s;
	position: relative;
	cursor: pointer;
	pointer-events: none;
}
.mod-switch label .switch:before {
	content: "";
	display: block;
	position: absolute;
	top: 5px;
	left: 11px;
	width: 4px;
	height: 9px;
	transform: rotate(40deg);
	border-bottom: 2px solid #fff;
	border-right: 2px solid #fff;
}
.mod-switch label .switch .separator {
	width: 20px;
	height: 20px;
	border-radius: 10px;
	background-color: #fff;
	position: absolute;
	left: 2px;
	top: 2px;
	transition: left .1s;
}
.mod-switch :checked ~ .switch {
	background-color: #0070d2;
}
.mod-switch :checked ~ .switch .separator {
	left: 25px;
}

/* 汎用的なエラー出力 */
.mod-lowerError {
	color: #e74040;
	font-size: 12px;
	font-weight: bold;
}

/* セレクトボックス */
.mod-select_label {
	display: inline-block;
	margin-right: 15px;
    vertical-align: middle;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
}
.mod-select {
	display: inline-block;
	vertical-align: middle;
	position: relative;
}
.mod-select select {
	margin: 0;
	border: 0;
	background: none;
	padding: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	display: block;
	box-sizing: border-box;
	width: 100%;
	border-radius: 3px;
	border: solid 1px #b2bac0;
	padding: 11px 40px 10px 15px;
	background-color: #fff;
	color: #2f3c52;
	font-size: 13px;
	font-weight: bold;
	line-height: 1;
}
.mod-select.is-disabled select {
	background-color: #bfc9d2;
}
.mod-select select::-ms-expand {
	display: none;
}
.mod-select:before,
.mod-select:after {
	content: "";
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	position: absolute;
	top: 50%;
	right: 15px;
}
.mod-select:before {
	border-width: 0 4px 4px 4px;
	border-color: transparent transparent #54698d transparent;
	margin-top: -6px;
}
.mod-select:after {
	border-width: 4px 4px 0 4px;
	border-color: #54698d transparent transparent transparent;
	margin-top: 2px;
}

/* ラジオボタン：タブ風 */
.mod-tabRadio_head {
	display: inline-block;
	margin-right: 10px;
	vertical-align: middle;
	font-size: 14px;
	font-weight: bold;
	line-height: 1;
}
.mod-tabRadio_body {
	display: inline-block;
	vertical-align: middle;
}
.mod-tabRadio {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	width: 100%;
}
.mod-tabRadio label {
	display: block;
	flex: 1 0 auto;
}
.mod-tabRadio input[type="radio"] {
	display: none;
}
.mod-tabRadio label .tab {
	box-sizing: border-box;
	display: block;
	width: 100%;
	border: solid 1px #0a7bde;
	border-left: 0;
	background-color: #fff;
	padding: 8px 15px;
	color: #0a7bde;
	font-size: 14px;
	line-height: 1;
	text-align: center;
	word-break: keep-all;
	cursor: pointer;
}
.mod-tabRadio label:first-child .tab {
	border-left: solid 1px #0a7bde;
	border-radius: 3px 0 0 3px;
}
.mod-tabRadio label:last-child .tab {
	border-radius: 0 3px 3px 0;
}
.mod-tabRadio :checked + .tab {
	background-color: #0a7bde;
	color: #fff;
}
.mod-tabRadio.is-disabled label .tab {
    border-color: #bfc9d3;
    color: #bfc9d3;
}
.mod-tabRadio.is-disabled label:first-child .tab {
	border-left: solid 1px #bfc9d3;
}
.mod-tabRadio.is-disabled :checked + .tab {
	background-color: #bfc9d3;
	color: #fff;
}

/* 複数のフォーム要素を横並びにするとき */
.mod-sideBySide * {
	display: inline-block;
	vertical-align: middle;
}
.mod-sideBySide .mod-button a,
.mod-sideBySide .mod-button button,
.mod-sideBySide .mod-button input[type="submit"],
.mod-sideBySide .mod-button input[type="button"],
.mod-sideBySide .mod-button input[type="reset"] {
	padding-left: 10px;
	padding-right: 10px;
}

/* テーブル */
.mod-tableHead {
	margin-bottom: 10px;
	font-size: 14px;
	font-weight: bold;
}
.mod-table {
	width: 100%;
	border-collapse: collapse;
	border: solid 1px #d8dde6;
	table-layout: fixed;
}
.mod-table_head {
	border-bottom: solid 1px #d8dde6;
	background-color: #fff;
	padding: 15px 15px 10px;
	color: #54698d;
	font-size: 14px;
	font-weight: bold;
}
.mod-table_cell {
	background-color: #fff;
	padding: 10px 15px;
	vertical-align: middle;
	color: #2f3c52;
	font-weight: bold;
	line-height: 1.25;
	word-wrap: break-word;
	cursor: pointer;
}
.mod-table_row:nth-child(even) .mod-table_cell {
	background-color: #f4f6f9;
}
.mod-table_cell .ic_arrow {
	display: block;
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 5px 0 5px 5px;
	border-color: transparent transparent transparent #747b82;
	margin-left: auto;
	margin-right: 20px;
}
.mod-table_cell .mod-button a,
.mod-table_cell .mod-button button,
.mod-table_cell .mod-button input[type="submit"],
.mod-table_cell .mod-button input[type="button"],
.mod-table_cell .mod-button input[type="reset"] {
	padding: 6px 0;
	font-size: 12px;
}
/* hover時 */
.mod-table_row:hover .mod-table_cell,
.mod-table_row.is-selected .mod-table_cell {
	background-color: #ccdefa;
}
/* hover時：状態別 */
.mod-table_row.is-on:hover .mod-table_cell,
.mod-table_row.is-on.is-selected .mod-table_cell {
    background-color: #e3f6d1;
}
.mod-table_row.is-off:hover .mod-table_cell,
.mod-table_row.is-off.is-selected .mod-table_cell {
    background-color: #d8d9db;
}
.mod-table_row.is-reboot:hover .mod-table_cell,
.mod-table_row.is-reboot.is-selected .mod-table_cell {
    background-color: #f9dfc1;
}

/* スクロールテーブル */
.mod-scrollTable {
	max-height: 200px;
	border-bottom: solid 1px #d8dde6;
	overflow: auto;
}
.mod-scrollTable .mod-table {
	border-top: 0;
}
/* thead側とtbody側で各カラムの幅を揃えること */

/* テーブル（項目名と項目値が横に並ぶパターン） */
.mod-verticalTable {
	width: 100%;
	border-collapse: collapse;
	border: solid 1px #d8dde6;
	table-layout: fixed;
}
.mod-verticalTable_head {
	background-color: #fff;
	padding: 10px 15px;
	color: #54698d;
	font-size: 14px;
	font-weight: bold;
}
.mod-verticalTable_cell {
	background-color: #fff;
	padding: 10px 15px;
	color: #2f3c52;
	font-size: 14px;
	font-weight: bold;
	line-height: 1.75;
	word-break: break-all;
}
.mod-verticalTable_row:nth-child(even) .mod-verticalTable_head,
.mod-verticalTable_row:nth-child(even) .mod-verticalTable_cell {
	background-color: #f4f6f9;
}

/* テーブルレイアウト */
.mod-tableLayout {
	width: 100%;
}
.mod-tableLayout_cell {
	padding: 5px 20px 5px 0;
	vertical-align: middle;
}

/* MACアドレス検索 */
.mod-macSearch {
	text-align: center;
}
.mod-macSearch .mod-inputText {
	display: inline-block;
	width: 455px;
	vertical-align: middle;
	text-align: left;
}
.mod-macSearch .mod-button {
	display: inline-block;
	margin-left: 5px;
	width: 90px;
	vertical-align: middle;
}
/* MACアドレス検索結果 */
.mod-macSearchResult {
	margin-top: 15px;
}
.mod-macSearchResult .mod-table_cell {
	border-top: solid 1px #d8dde6;
	background-color: #f4f6f9;
}

/* アクセスポイントの状態 */
.mod-stateList {
	text-align: center;
}
.mod-stateList_item {
	display: inline-block;
	margin: 0 15px;
	font-size: 14px;
	font-weight: bold;
	line-height: 24px;
}
.mod-state_icon {
	box-sizing: border-box;
	display: inline-block;
	width: 24px;
	height: 24px;
	border-radius: 12px;
	border: solid 3px #e2e5ec;
	margin-top: -5px;
	vertical-align: middle;
}
.mod-state_icon-on {
	background-color: #7ccd29;
}
.mod-state_icon-off {
	background-color: #9e9e9e;
}
.mod-state_icon-reboot {
	background-color: #f08617;
}

/* 参照画面 */
.mod-browse {
	width: 670px;
	margin: 0 auto;
	border: solid 1px #d8dde6;
	background-color: #fff;
	padding: 15px 30px;
}
.mod-browse + .mod-browse {
	border-top: 0;
}
.mod-browse .mod-head {
	margin-top: 10px;
}
.mod-browseTable {
	width: 100%;
	border-collapse: collapse;
	table-layout: fixed;
}
.mod-browseTable_head {
	width: 45%;
	padding: 15px;
	color: #2f3c52;
	font-size: 14px;
	font-weight: bold;
}
.mod-browseTable_cell {
	width: 55%;
	padding: 15px;
	color: #2f3c52;
	font-size: 14px;
	font-weight: bold;
}

/* 完了メッセージ */
.mod-complate {
	background: url(../img/ic_complete@2x.png) no-repeat center top;
	background-size: 36px auto;
	padding-top: 42px;
	margin-bottom: 30px;
	color: #3c4d65;
}
.mod-complate-orange {
	background-image: url(../img/ic_complete-orange@2x.png);
	color: #f0a02d;
}
.mod-complate_text {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
}

/* モーダル */
.modalOverlay {
	display: none;
	width: 100%;
	height: 100vh;
	background-color: rgba(50, 53, 56, 0.6);
	position: fixed;
	left: 0;
	top: 0;
	z-index: 100000;
}
.modalWindow {
	display: none;
	box-sizing: border-box;
	width: 480px;
	border-radius: 4px;
	background-color: #ffffff;
	box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.16);
	padding: 40px 10px;
	position: fixed;
	left: 50%;
	margin-left: -240px;
	z-index: 110000;
}
.modalWindow_text {
	font-size: 18px;
	font-weight: bold;
	text-align: center;
	line-height: 1.5;
}
.modalWindow .mod-buttons {
	margin-top: 30px;
}
.modalWindow .mod-button {
	width: 45%;
}

/* モーダル：パートナーお知らせ */
.modalWindow-notice {
    padding: 0 15px;
}
.mod-modalNoticeList_item {
    padding: 20px 0;
}
.mod-modalNoticeList_item + .mod-modalNoticeList_item {
    border-top: solid 1px #d8dde6;
}
.mod-modalNotice {
    padding: 0 20px;
    position: relative;
}
.mod-modalNotice:before {
    content: "";
    display: block;
    width: 5px;
    height: 100%;
    background-color: #2272b9;
    position: absolute;
    left: 0;
    top: 0;
}
.mod-modalNotice_data {
    margin-top: 6px;
    font-size: 12px;
}

/* 画面右下追従通知 */
.mod-fixedNoticeWrap {
    box-sizing: border-box;
    width: 408px;
    border-left: solid 4px #2272b9;
    background-color: #fff;
    padding: 0 20px;
    box-shadow: 0 0 3px 0 rgba(147, 156, 165, 0.5);
    position: fixed;
    left: 100%;
    bottom: 120px;
    z-index: 9000;
    -webkit-transition: .2s;
	transition: .2s;
}
.mod-fixedNoticeWrap.is-open {
    transform: translateX(-400px);
}
.mod-fixedNoticeList_item {
    padding: 20px 0;
}
.mod-fixedNoticeList_item + .mod-fixedNoticeList_item {
    border-top: solid 1px #d8dde6;
}
.mod-fixedNotice_title {
    font-size: 13px;
}
.mod-fixedNotice_content {
    margin-top: 10px;
}
.mod-fixedNotice_button {
    width: 36px;
    height: 36px;
    background-color: #2272b9;
    position: absolute;
    left: -36px;
    bottom: 0;
    cursor: pointer;
}
.mod-fixedNotice_button:before,
.mod-fixedNotice_button:after {
    content: "";
    display: block;
    background-color: #fff;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    -webkit-transition: .2s;
    transition: .2s;
}
.mod-fixedNotice_button:before {
    width: 2px;
    height: 12px;
}
.mod-fixedNotice_button:after {
    width: 12px;
    height: 2px;
}
.is-open .mod-fixedNotice_button:before {
    transform: rotate(45deg);
}
.is-open .mod-fixedNotice_button:after {
    transform: rotate(45deg);
}


/* 通常メッセージブロック */
.mod-messageBlock {
	border-radius: 3px;
	background-color: #fff;
/*	box-shadow: 0 0 3px 0 rgba(147, 156, 165, 0.5);*/
	padding: 15px 20px;
}
.mod-messageBlock p + p {
	margin-top: 20px;
}

/* エラーメッセージブロック */

/***  2020.08.26 <T.Seki>  ***/
.mod-errorBlock[msgid='escape'] {
    color:               #ffffff;
    display:             none;
    background-color:    transparent;
}

.mod-errorBlock {
	border-radius: 3px;
	background-color: #f8e8e8;
	padding: 10px 10px 10px 35px;
	color: #e74040;
	position: relative;
}
.mod-errorBlock p + p {
	margin-top: 10px;
}
.mod-errorBlock .fa-exclamation-circle {
	font-size: 18px;
	position: absolute;
	left: 12px;
	top: 9px;
}


/* テキストフィールドに出力する際 */
.mod-inputText .mod-errorBlock {
	width: 300px;
	font-size: 13px;
	font-weight: normal;
    position: absolute;
    left: 110%;
    top: 50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
}
.mod-inputText .mod-errorBlock:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 15px 6px 0;
    border-color: transparent #f8e8e8 transparent transparent;
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -5px;
}
/* チェックボックスに出力する際 */
.mod-select .mod-errorBlock {
	width: 300px;
	font-size: 13px;
	font-weight: normal;
    position: absolute;
    left: 110%;
    top: 50%;
    -webkit-transform:translateY(-50%);
    transform:translateY(-50%);
}
.mod-select .mod-errorBlock:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 15px 6px 0;
    border-color: transparent #f8e8e8 transparent transparent;
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -5px;
}

/* グレー背景ブロック */
.mod-greyBlock {
	background-color: #e5eaee;
	padding: 20px;
}

/* メッセージ：完了系 */
.mod_message-complate {
	background: url(../img/ic_complete@2x.png) no-repeat left center;
	background-size: contain;
	height: 22px;
	padding-left: 30px;
	font-size: 14px;
	font-weight: bold;
	line-height: 22px;
}

/* 左カラムメニュー */
/* スイッチ：トリガー */
.mod-switchView {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 10px;
}
.mod-switchView_item {
	box-sizing: border-box;
	width: 49%;
	border-radius: 3px;
	background-color: #fff;
	border: solid 1px #0a7bde;
	padding: 12px 10px 9px 40px;
	color: #0a7bde;
	font-size: 14px;
	position: relative;
	cursor: pointer;
}
.mod-switchView_item:before {
	content: "";
	display: block;
	width: 16px;
	height: 16px;
	border-radius: 50%;
	border: solid 1px #b2bac0;
	background-color: #fff;
	position: absolute;
	left: 15px;
	top: 50%;
	margin-top: -8px;
}
.mod-switchView_item:after {
	content: "";
	display: block;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: #0a7bde;
	position: absolute;
	left: 19px;
	top: 50%;
	margin-top: -4px;
	opacity: 0;
}
.mod-switchView_item.is-current {
	background-color: #0a7bde;
	color: #fff;
}
.mod-switchView_item.is-current:after {
	opacity: 1;
}
/* スイッチ：コンテンツ */
.mod-subMenu {
	border-radius: 3px;
	box-shadow: 0 0 3px 0 rgba(147, 156, 165, 0.5);
	overflow: hidden;
}
.js-switchContents.js_view_ap,
.js-switchContents.js_view_group {
	display: none;
}
.js-switchContents.is-visible {
	display: block;
}
.mod-subMenu_head {
	background-color: #5a5b5c;
	padding: 12px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
}
.mod-subMenu_head .fa {
	margin-right: 10px;
}
.mod-subMenuLv0_btn,
.mod-subMenuLv1_btn {
	border-bottom: solid 1px #c5ced6;
	background-color: #e5eaee;
	color: #3d3f40;
	font-size: 14px;
	font-weight: bold;
	cursor: pointer;
	-webkit-transition: .2s;
	transition: .2s;
}
.mod-subMenuLv0_btn {
    padding: 5px 10px 3px 10px;
}
.mod-subMenuLv1_btn {
    padding: 5px 10px 3px 40px;
}
.mod-subMenuLv0_item .mod-subMenuLv1_btn {
    border-bottom-color: #e5eaee;
    background-color: #fff;
}
.mod-subMenuLv0_btn .js_accordion_trigger,
.mod-subMenuLv1_btn .js_accordion_trigger {
    display: inline-block;
    padding: 8px 10px;
}
.mod-subMenuLv0_btn .fa-caret-right,
.mod-subMenuLv0_btn .fa-caret-down,
.mod-subMenuLv1_btn .fa-caret-right,
.mod-subMenuLv1_btn .fa-caret-down {
	width: 8px;
	text-align: center;
}
.mod-subMenuLv1_btn .ic-ap,
.mod-subMenuLv2_item .ic-ap {
    display: inline-block;
	margin-right: 10px;
	width: 16px;
	height: 15px;
	background: url(../img/ic_ap@2x.png) no-repeat center top;
	background-size: contain;
	vertical-align: baseline;
}
.mod-subMenuLv1_btn>.fa-wifi {
    display: inline-block;
	margin-right: 10px;
	vertical-align: baseline;
}
.mod-subMenuLv0_btn:hover,
.is-selected>.mod-subMenuLv0_btn {
    background-color: #0a7bde;
    color: #fff;
}
.mod-subMenuLv1_btn:hover,
.is-selected>.mod-subMenuLv1_btn {
    background-color: #0a7bde;
    color: #fff;
}
.mod-subMenuLv1_btn:hover .ic-ap,
.is-selected>.mod-subMenuLv1_btn .ic-ap {
    background-image: url(../img/ic_ap_white@2x.png);
}
.mod-subMenuLv2_item {
	background-color: #fff;
	padding: 10px 10px 10px 80px;
	border-bottom: solid 1px #e5eaee;
	color: #3d3f40;
	font-size: 14px;
	position: relative;
	cursor: pointer;
}
.mod-subMenuLv2_item a {
	display: block;
}
.mod-subMenuLv2_item .fa-wifi {
	margin-right: 10px;
}
.mod-subMenuLv2_item .fa-chevron-right {
	width: 5px;
	height: 10px;
	color: #3d3f40;
	font-size: 10px;
	position: absolute;
	right: 15px;
	top: 50%;
	margin-top: -5px;
	transition: color .2s;
}
.mod-subMenuLv2_item:hover,
.mod-subMenuLv2_item.is-selected {
    background-color: #0a7bde;
    color: #fff;
}
.mod-subMenuLv2_item:hover .fa-chevron-right,
.mod-subMenuLv2_item.is-selected .fa-chevron-right {
    color: #fff;
}

/* アコーディオン動作：CLOSE時 */
.js_accordion>.js_accordion_contents {
	display: none;
}
.js_accordion>*>.js_accordion_trigger>.fa-caret-right {
	display: inline-block;
}
.js_accordion>*>.js_accordion_trigger>.fa-caret-down {
	display: none;
}
/* アコーディオン動作：OPEN時 */
.js_accordion.is-visible>.js_accordion_contents {
	display: block;
}
.js_accordion.is-visible>*>.js_accordion_trigger>.fa-caret-right {
	display: none;
}
.js_accordion.is-visible>*>.js_accordion_trigger>.fa-caret-down {
	display: inline-block;
}

/* 認証グループ追加 */
.mod-addGroup {
    margin-top: 10px;
}
.mod-addGroup a {
	display: block;
	color: #3d3f40;
	font-size: 14px;
	font-weight: bold;
    text-align: right;
}
.mod-addGroup .fa-users {
	margin-right: 10px;
	vertical-align: bottom;
	font-size: 20px;
}
.mod-addGroup .fa-plus-circle {
    margin-left: 10px;
	vertical-align: bottom;
	font-size: 24px;
}

/* ファイルアップロード */
.mod-fileUpload {
	border-radius: 3px;
	background-color: #fff;
	box-shadow: 0 0 3px 0 rgba(147, 156, 165, 0.5);
	padding: 35px 30px 40px;
	text-align: center;
}
.mod-fileUpload_text {
	margin-bottom: 25px;
	font-weight: bold;
}
.mod-fileButton input[type="file"] {
	display: none;
}
.mod-fileButton button {
	margin: 0 auto;
	border: 0;
	background: none;
	padding: 0;
	outline: none;
	appearance: none;
	display: block;
	width: 150px;
	border-radius: 4px;
	background-color: #0a7bde;
	padding: 6px 0 5px;
	color: #fff;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
	cursor: pointer;
	transition: .2s;
}
.mod-fileButton button .fa {
	margin-left: 10px;
	vertical-align: top;
	font-size: 20px;
}
.mod-fileButton button:hover {
	opacity: 0.6;
}
.mod-fileButton .fa-cloud-upload {
	display: block;
	margin-top: 30px;
	color: #e5eaee;
	font-size: 48px;
}
.mod-fileButton input.filename {
	margin: 15px 0 0;
	border: 0;
	background: none;
	padding: 0;
	outline: none;
	appearance: none;
	display: block;
	width: 100%;
	color: #54698d;
	font-size: 13px;
	font-weight: bold;
	text-align: center;
}
.mod-fileButton .mod-button {
	margin: 20px auto 0;
	width: 320px;
}

/* 検索バー */
.mod-searchBar {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
	background-color: #e5eaee;
	padding: 20px;
}
/*
.mod-searchBar .mod-inputText {
	width: 70%;
}
.mod-searchBar .mod-button {
	width: 25%;
}*/
.mod-searchBar>div:first-child {
    margin-top: 0;
}
.mod-searchBar .mod-button {
    margin: 15px auto 0;
}

/* AP/SSID検索 */
.mod-ssidSearch {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-justify-content: space-between;
	justify-content: space-between;
	-webkit-align-items: flex-end;
	align-items: flex-end;
}
.mod-ssidSearch_input {
	width: 60%;
}
.mod-ssidSearch_input .mod-inputText + .mod-inputText {
	margin-top: 10px;
}
.mod-ssidSearch_button {
	width: 30%;
}
.mod-ssidSearch_button .mod-button,
.mod-ssidSearch_button .mod-button input[type="submit"] {
	height: 100%;
}

/* 入れ替え */
.mod-replace {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
}
.mod-replace_selectAll {
	font-weight: bold;
	text-align: right;
}
.mod-replace_selectAll span {
	cursor: pointer;
}
.mod-replace_selectAll span:hover {
	text-decoration: underline;
}
.mod-replaceGroup {
	width: 46%;
}
.mod-replaceBox {
	margin-top: 5px;
	background-color: #fff;
	box-shadow: 0 1px 2px 0 #d8dde6;
}
.mod-replaceBox_head {
	padding: 10px 0;
	border-bottom: solid 1px #e6e6e6;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.mod-replaceBox_body {
	height: 400px;
	overflow: scroll;
	overflow-x: hidden;
}
.mod-replaceList_item:nth-child(odd) {
	background-color: #f5f7fa;
}
.mod-replaceList_item .mod-checkbox label {
	display: block;
	padding: 10px 15px;
	cursor: pointer;
}
.mod-replaceList_item input[type="checkbox"] {
	vertical-align: middle;
}
.mod-replaceList_names {
	display: inline-block;
	vertical-align: middle;
	font-weight: normal;
}
.mod-replaceButton-left,
.mod-replaceButton-right {
	width: 40px;
	height: 50px;
	text-align: center;
	position: absolute;
	left: 0;
	right: 0;
	top: 0;
	bottom: 0;
	margin: auto;
	cursor: pointer;
}
.mod-replaceButton-left i,
.mod-replaceButton-right i {
	font-size: 40px;
	line-height: 50px;
}
.mod-replaceButton-right {
	top: -60px;
}
.mod-replaceButton-left {
	bottom: -60px;
}

/* アクセスポイントのステータス */
.mod-state_label {
    display: inline-block;
    margin-right: 10px;
    vertical-align: middle;
    font-size: 14px;
    font-weight: bold;
    line-height: 1;
}
.mod-state {
	display: inline-block;
	width: 65px;
	border-radius: 3px;
	border: solid 1px #8f979f;
	background-color: #ffffff;
	padding: 6px 0 5px;
	color: #8f979f;
	font-size: 14px;
	font-weight: normal;
	text-align: center;
	line-height: 1;
}
.mod-state +.mod-state {
	margin-left: 8px;
}
.mod-state.is-active {
	color: #fff;
}
.mod-state.mod-state-on.is-active {
	border: solid 1px #7ccd2a;
	background-color: #7ccd2a;
}
.mod-state.mod-state-off.is-active {
	border: solid 1px #8f979f;
	background-color: #8f979f;
}
.mod-state.mod-state-reboot.is-active {
	border: solid 1px #f08617;
	background-color: #f08617;
}

/* 定義リスト */
.mod-definition {
	display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    position: relative;
	background-color: #fff;
}
.mod-definition + .mod-definition {
	margin-top: 10px;
}
.mod-definition_title {
	width: 20%;
	padding: 10px 15px;
    font-size: 14px;
    font-weight: bold;
}
.mod-definition_data {
	width: 70%;
	padding: 10px 15px;
	color: #2f3c52;
    font-size: 14px;
    font-weight: bold;
}

/* AP履歴ダウンロード */
.mod-ssidHistory * {
	display: inline-block;
	vertical-align: middle;
}
.mod-ssidHistory .mod-inputText {
	width: 15%;
	margin: 0 5px;
}
.mod-ssidHistory .mod-button {
	margin-left: 20px;
	width: 130px;
}
.mod-monthPager {
	font-size: 12px;
	font-weight: bold;
	text-align: center;
}

/* インポート確認 */
.mod-importConfirm_text {
    margin-bottom: 15px;
}
.mod-importList_item {
    display: -webkit-flex;
	display: flex;
	-webkit-flex-wrap: wrap;
	flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 6px 0;
}
.mod-importList_head {
    width: 120px;
    color: #342b1f;
    font-weight: bold;
}
.mod-importList_text {
    flex: 1;
}

/* 汎用アコーディオン */
.js_accordion_trigger {
	cursor: pointer;
	position: relative;
	margin-bottom: 0;
}
.js_accordion .fa-chevron-down,
.js_accordion .fa-chevron-up {
	position: absolute;
	right: 0;
	top: 50%;
	margin-top: -7px;
}
.js_accordion .fa-chevron-down {
	display: inline-block;
}
.js_accordion .fa-chevron-up {
	display: none;
}
.js_accordion.is-visible .fa-chevron-down {
	display: none;
}
.js_accordion.is-visible .fa-chevron-up {
	display: inline-block;
}

/* お知らせ通知 */
.mod-notice {
	border-left: solid 10px #2272b9;
	background-color: #fff;
	margin-bottom: 40px;
}
.mod-notice_head {
	padding: 15px 40px 15px 20px;
}
.mod-notice_head .fa-chevron-down {
    right: 20px;
}
.mod-notice_head .fa-chevron-up {
    right: 20px;
}
.mod-notice_body {
    padding: 0 40px 15px 20px;
}

/* 詳細検索ボタン */
.mod-detailSearch_button {
    margin-top: 15px;
    margin-left: auto;
    width: 60px;
    position: relative;
}
.mod-detailSearch_button:before {
    content: "";
    display: block;
    width: 2px;
    height: 12px;
    background-color: #54698d;
    position: absolute;
    right: -8px;
    top: 2px;
    -webkit-transition: .2s;
    transition: .2s;
}
.mod-detailSearch_button:after {
    content: "";
    display: block;
    width: 12px;
    height: 2px;
    background-color: #54698d;
    position: absolute;
    right: -13px;
    top: 7px;
    -webkit-transition: .2s;
    transition: .2s;
}
.js_accordion.is-visible .mod-detailSearch_button:before {
    transform: rotate(45deg);
}
.js_accordion.is-visible .mod-detailSearch_button:after {
    transform: rotate(45deg);
}

/* 一覧のフィルタや凡例を置くところ */
.mod-tableControl {
    margin-top: 15px;
    text-align: center;
    position: relative;
}
.mod-tableControl .mod-select-number {
    position: absolute;
    left: 0;
    top: 0;
}
.mod-tableControl .mod-stateList,
.mod-tableControl .mod-select-state {
    display: inline-block;
    vertical-align: middle;
}

/* 選択中のAP名表示 */
.mod-selected {
    margin-top: 15px;
    text-align: center;
}
.mod-selected_value {
    font-weight: bold;
}

/* ページネーション */
.mod-paginate {
    margin-top: 15px;
    text-align: center;
}
.mod-paginate_item {
    display: inline-block;
    width: 28px;
    margin: 0 5px;
    vertical-align: middle;
}
.mod-paginate_item a {
    display: block;
    width: 28px;
    height: 28px;
    border-radius: 4px;
    background-color: #ffffff;
    border: solid 1px #b2bac0;
    font-weight: bold;
    line-height: 30px;
    position: relative;
}
.mod-paginate_item a:hover {
    background-color: #f5f7fa;
}

/* ※今のところページネーション自体のパーツはない */
.mod-pagenate_attend {
	margin-top: 10px;
	font-size: 14px;
}

/* loading */
.loading_bg {
    display: none; /* 一旦無効化 */
    width: 100%;
    height: 100vh;
    background-color: rgba(255, 255, 255, 0.8);
    position: fixed;
    left: 0;
    top: 0;
    z-index: 20000;
}
.loader {
    width: 100px;
    height: 100px;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index: 21000;
}
.loader span {
    display: inline-block;
    width: 20px;
    height: 20px;
    border-radius: 100%;
    background-color: #3498db;
    margin: 35px 5px;
    opacity: 0;
}
.loader span:nth-child(1) {
    animation: opacitychange 1s ease-in-out infinite;
}
.loader span:nth-child(2) {
    animation: opacitychange 1s ease-in-out 0.33s infinite;
}
.loader span:nth-child(3) {
    animation: opacitychange 1s ease-in-out 0.66s infinite;
}
@keyframes opacitychange {
    0%, 100% {
       opacity: 0;
    }
    60% {
        opacity: 1;
    }
}


/* ----------------------------------------
  ログイン画面
---------------------------------------- */
.login-base {
	background-color: #f4f5f7;
	width: 100%;
	height: 100vh;
	min-height: 770px;
	position: relative;
}
/* ログインフォーム */
.login-loginForm {
	box-sizing: border-box;
	width: 430px;
	border-radius: 4px;
	border: solid 1px #b2bac0;
	background-color: #fff;
	padding: 40px;
	position: absolute;
	left: 50%;
	margin-left: -215px;
	top: 50%;
	margin-top: -174px;
}
.login-loginForm_logo {
	width: 180px;
	margin: 0 auto;
}
.login-loginForm_caption {
	margin-top: 5px;
	color: #bfc9d2;
	font-size: 14px;
	font-weight: bold;
	text-align: center;
}
.login-inputText {
	margin-top: 15px;
}
.login-button {
	margin-top: 20px;
}
.login-button input[type="submit"] {
	padding: 15px 0;
}
/* エラー表示 */
.login-inputText .mod-errorBlock {
    width: 250px;
    position: absolute;
    left: 102%;
}
.login-inputText .mod-errorBlock:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 15px 6px 0;
    border-color: transparent #f8e8e8 transparent transparent;
    position: absolute;
    right: 100%;
    top: 50%;
    margin-top: -5px;
}
/* お知らせ */
.login-notice {
    width: 430px;
    height: 180px;
    overflow: scroll;
    overflow-x: hidden;
    position: absolute;
    left: 50%;
    margin-left: -215px;
    top: 50%;
    margin-top: -374px;
}
.login-notice .mod-notice {
    margin-bottom: 0;
}
.login-notice .mod-notice + .mod-notice {
    margin-top: 10px;
}
/* バナー */
.login-banners {
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: 200px;
}
.login-banners_item {
    display: inline-block;
    width: 290px;
    margin: 0 4px;
}
.login-banners_item a {
    display: block;
    background-color: #bfc9d2;
    width: 290px;
    height: 62px;
    color: #fff;
}


/* ----------------------------------------
  utility
---------------------------------------- */
.ut-w-10 { width: 10% !important; }
.ut-w-15 { width: 15% !important; }
.ut-w-20 { width: 20% !important; }
.ut-w-25 { width: 25% !important; }
.ut-w-30 { width: 30% !important; }
.ut-w-35 { width: 30% !important; }
.ut-w-40 { width: 40% !important; }
.ut-w-45 { width: 30% !important; }
.ut-w-50 { width: 50% !important; }
.ut-w-55 { width: 50% !important; }
.ut-w-60 { width: 60% !important; }
.ut-w-65 { width: 60% !important; }
.ut-w-70 { width: 70% !important; }
.ut-w-75 { width: 75% !important; }
.ut-w-80 { width: 80% !important; }
.ut-w-85 { width: 80% !important; }
.ut-w-90 { width: 90% !important; }
.ut-w-95 { width: 90% !important; }
.ut-w-100 { width: 100% !important; }
.ut-mt-0 { margin-top: 0 !important; }
.ut-mt-5 { margin-top: 5px !important; }
.ut-mt-10 { margin-top: 10px !important; }
.ut-mt-15 { margin-top: 15px !important; }
.ut-mt-20 { margin-top: 20px !important; }
.ut-mt-25 { margin-top: 25px !important; }
.ut-mt-30 { margin-top: 30px !important; }
.ut-mt-35 { margin-top: 35px !important; }
.ut-mt-40 { margin-top: 40px !important; }
.ut-mt-45 { margin-top: 45px !important; }
.ut-mt-50 { margin-top: 50px !important; }
.ut-mt-55 { margin-top: 55px !important; }
.ut-mt-60 { margin-top: 60px !important; }
.ut-mb-0 { margin-bottom: 0 !important; }
.ut-mb-5 { margin-bottom: 5px !important; }
.ut-mb-10 { margin-bottom: 10px !important; }
.ut-mb-15 { margin-bottom: 15px !important; }
.ut-mb-20 { margin-bottom: 20px !important; }
.ut-mb-25 { margin-bottom: 25px !important; }
.ut-mb-30 { margin-bottom: 30px !important; }
.ut-mb-35 { margin-bottom: 35px !important; }
.ut-mb-40 { margin-bottom: 40px !important; }
.ut-mb-45 { margin-bottom: 45px !important; }
.ut-mb-50 { margin-bottom: 50px !important; }
.ut-mb-55 { margin-bottom: 55px !important; }
.ut-mb-60 { margin-bottom: 60px !important; }
.ut-fw-n { font-weight: normal; }
.ut-fw-b { font-weight: bold; }
.ut-ta-l { text-align: left; }
.ut-ta-c { text-align: center; }
.ut-ta-r { text-align: right; }

.ut-pointer { cursor: pointer; }
