@charset "utf-8";

html,body{
	height: auto;
}

/* 変数 */

:root {
	--main-bg-gradient-webkit: -webkit-linear-gradient(135deg, #ecf2c4 0%, #d5ead9 50%, #adcbd6 100%) fixed;
	--main-bg-gradient-moz: -moz-linear-gradient(135deg, #ecf2c4 0%, #d5ead9 50%, #adcbd6 100%) fixed;
	--main-bg-gradient-ms: -ms-linear-gradient(135deg, #ecf2c4 0%, #d5ead9 50%, #adcbd6 100%) fixed;
	--main-bg-gradient: linear-gradient(135deg, #ecf2c4 0%, #d5ead9 50%, #adcbd6 100%) fixed;
	--main-btn-color: #4a97b3;
	--main-active-btn-color: #66a7bf;
	--main-text-color: #404c66;
	--main-color: #4db0cd;

	--sub-bg-gradient-webkit: -webkit-linear-gradient(left, #4a97b3 0%, #adcbd6 100%);
	--sub-bg-gradient-moz: -moz-linear-gradient(left, #4a97b3 0%, #adcbd6 100%);
	--sub-bg-gradient-ms: -ms-linear-gradient(left, #4a97b3 0%, #adcbd6 100%);
	--sub-bg-gradient: linear-gradient(to right, #4a97b3 0%, #adcbd6 100%);

	--widget-text-color: #00427c;
}

.container {
    max-width: 1280px;
}

.boxlayout {
    background-color: lightgray;
}

/* chino 追加スタイル*/
html, body{
    height: 100%;
}
body {
    font-family: 'メイリオ', 'Meiryo',sans-serif,'ヒラギノUD角ゴF Std', 'ヒラギノ角ゴ Pro W3','ＭＳ Ｐゴシック';
    padding: 0;
    margin: 0;
    font-size: 16px;
	/*background: #def;*/
	background: var(--main-bg-gradient-webkit);
	background: var(--main-bg-gradient-moz);
	background: var(--main-bg-gradient-ms);
	background: var(--main-bg-gradient);
}

/**
 *  共通クラス
 */
ul {
    padding-left: 0;
}

li {
    list-style: none;
}
a{
    color: inherit;
}
a:active, a:hover, a:focus{
    text-decoration: none;
    color: inherit;
}
.fleft { float: left; }
.fright { float: right; }
.fnone { float: none; }

.d-none{ display: none; }
.d-flex{
    display: flex;
    flex-wrap: wrap;
}
.d-inline{ display: inline; }
.d-block{ display: block; }
.d-inbl{ display: inline-block; }

.fs70 { font-size: 70%; }
.fs80 { font-size: 80%; }
.fs90 { font-size: 90%; }

.pa0 { padding: 0 !important; }
.pl0 { padding-left: 0 !important; }
.pr0 { padding-right: 0 !important; }
.pt0 { padding-top: 0 !important; }
.pb0 { padding-bottom: 0 !important; }
.plr0 {
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.pa10 { padding: 10px !important; }
.pl10 { padding-left: 10px !important; }
.pr10 { padding-right: 10px !important; }
.pt10 { padding-top: 10px !important; }
.pb10 { padding-bottom: 10px !important; }
.plr10 {
    padding-left: 10px !important;
    padding-right: 10px !important;
}

.ma0 { margin: 0 !important; }
.mt0 { margin-top: 0 !important; }
.mb0 { margin-bottom: 0 !important; }
.ml0 { margin-left: 0 !important; }
.mr0 { margin-right: 0 !important; }
.mlr0 {
    margin-left: 0 !important;
    margin-right: 0 !important;
}

.mt10 { margin-top: 10px !important; }
.mb10 { margin-bottom: 10px !important; }
.ml10 { margin-left: 10px !important; }
.mr10 { margin-right: 10px !important; }
.mlr10{
    margin-left: 10px !important;
    margin-right: 10px !important;
}

.mt20 { margin-top: 20px !important; }
.mb20 { margin-bottom: 20px !important; }
.ml20 { margin-left: 20px !important; }
.mr20 { margin-right: 20px !important; }
.mlr20{
    margin-left: 20px !important;
    margin-right: 20px !important;
}

.mt30 { margin-top: 30px !important; }
.mb30 { margin-bottom: 30px !important; }
.ml30 { margin-left: 30px !important; }
.mr30 { margin-right: 30px !important; }
.mlr30{
    margin-left: 30px !important;
    margin-right: 30px !important;
}


.mlrauto {
    margin-left: auto !important;
    margin-right: auto !important;
}

.tcenter {
    text-align: center !important;
}

.p_t30{ top: 30px !important; }
.p_r30{ right: 30px !important; }
.p_l30{ left: 30px !important; }
.p_b30{ bottom: 30px !important; }

.w25{ width: 25% !important; }
.w50{ width: 50% !important; }
.w100{ width: 100% !important; }

.h25{ height: 25% !important; }
.h50{ height: 50% !important; }
.h100{ height: 100% !important; }

.wh10px{
    width: 10px !important;
    height: 10px !important;
}

.wh20px{
    width: 20px !important;
    height: 20px !important;
}
.wh25px{
    width: 25px !important;
    height: 25px !important;
}
.wh30px{
    width: 30px !important;
    height: 30px !important;
}
.wh40px{
    width: 40px !important;
    height: 40px !important;
}
.wh50px{
    width: 50px !important;
    height: 50px !important;
}
.wh75px{
    width: 75px !important;
    height: 75px !important;
}
.wh100px{
    width: 100px !important;
    height: 100px !important;
}

.clearfix:after {
    clear: both;
    content: ".";
    display: block;
    height: 0;
    visibility: hidden;
}


button{
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    appearance: none;
}


.flat-btn {
    font-weight: bold;
    border: none;
    color: #FFF;
    padding: 20px 0;
    text-decoration: none;
}

.flat-btn.blue {
    background: #63CAF1;
}

.flat-btn.blue:hover,
.flat-btn.blue:focus,
.flat-btn.blue:active,
.flat-btn.blue.touched {
    background: #00AAEB;
    color: #fff;
}

.flat-btn.blue.disable {
    background: #B3B3B3;
    color: #F2F2F2;
    cursor: auto;
    outline: none;
}

.flat-btn.blue.disable:hover,
.flat-btn.blue.disable:focus,
.flat-btn.blue.disable:active {
    background: #B3B3B3;
}

.wd-wp {
    word-wrap: break-word;
    word-break: break-all;
    /*white-space: nowrap;*/
}
.wr-wrap{
    word-wrap: break-word;
    word-break: break-all;
    white-space: pre-line;
}

.optgrp optgroup {
    color: #999;
}

.optgrp optgroup option {
    color: #000;
}

.link-w {
    color: #FFF;
}

pre{
    font-size: 16px;
    margin: 5px;
    padding: 6px;
    color: #c00;
    font-style: italic;
    border: 1px solid #aaa;
    background: #efefef;
    border-radius: 4px;
}


.alert-sm{
    font-size: 12px;
    padding: 0.5rem 1rem;
}


.auto-height{
	min-height: 100%;
	flex-direction: column;
	display: flex;
}
.auto-height .flex-grow{
	flex-grow: 1;
}


.custom_form .form-group {
	font-size: 0.9em;
	color: #ccc;
	background: #f2f2f2;
	border-radius: 5px;
	padding-top: 10px;
	padding-bottom: 10px;
}

.custom_form .nostyle-form {
	display: inline-block;
	border: none;
	background: transparent;
}
.custom_form input.nostyle-form:-internal-autofill-selected,
.custom_form input.nostyle-form:-webkit-autofill{
	background-color: transparent;
	box-shadow: 0 0 0 1000px #f2f2f2 inset;
}

.custom_form .nostyle-form:hover,
.custom_form .nostyle-form:active,
.custom_form .nostyle-form:focus
 {
	border: none;
	box-shadow: none;
	outline: none;
}

.custom_form input[type="text"].nostyle-form,
.custom_form input[type="password"].nostyle-form,
.custom_form input[type="number"].nostyle-form {
	font-size: inherit;
	padding-top: 0;
	padding-bottom: 0;
	color: var(--main-text-color);
}
.custom_form input[type="text"].nostyle-form::placeholder,
.custom_form input[type="password"].nostyle-form::placeholder,
.custom_form input[type="number"].nostyle-form::placeholder {
	color: #aaa;
}

.custom_form h3 {
	color: var(--main-text-color);
	font-size: 0.9em;
	font-weight: bold;
}

.custom_form input[type="checkbox"] {
	cursor: pointer;
	padding-left: 30px; /*label手前にチェックボックス用の余白を開ける*/
	vertical-align: middle;
	position: relative;
	width: 20px;
	height: 20px;
	background: #f2f2f2;
	border: 2px solid #e6e6e6;
}

.custom_form input[type="checkbox"]:checked {
	background: var(--main-color);
	border: 2px solid var(--main-color);
}

.custom_btn {
	border-radius: 100vh;
	background-color: var(--main-btn-color);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
	padding: 0.8em 1em;
	border: none;
	color: #fff;
}
.custom_btn:active,
.custom_btn:focus,
.custom_btn:hover {
	color: #fff;
	background-color: var(--main-active-btn-color);
}
.custom_btn.clear_btn {
	background-color: rgba(255,255,255,.4);
	color: var(--main-text-color);
}

.custom_btn.clear_btn:active,
.custom_btn.clear_btn:focus,
.custom_btn.clear_btn:hover {
	background-color: rgba(255,255,255,.9);
	color: var(--main-color);
	box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

#OpenMenu .custom_btn,
#Logout .custom_btn {
	font-size: 0.8em;
	padding: 1em;
	padding-right: 1.5em;
	outline: none;
}

.widget-loading-area .nodata{
	text-align: center;
	font-size: 0.8em;
	border-radius: 5px;
	background-color: #f6f6f6;
	padding: 0.8em 1em;
	border: none;
	color: #999;
}

.custom_scroll::-webkit-scrollbar {
    width: 12px;
}

.custom_scroll::-webkit-scrollbar-track {
    background-color: #e6e6e6;
    border-radius: 100vh;
}

.custom_scroll::-webkit-scrollbar-thumb {
    background-color: #999;
    border-radius: 100vh;
}

/**
 *  共通クラス　ここまで
 */


#wrap>.container-fluid {
    margin-bottom: 30px;
}

.heading {
    background: #D3F2F3;
    border-left: 10px solid #09729C;
    color: #09729C;
    margin-bottom: 20px;
}

.heading h2 {
    margin: 0;
    padding: 20px 22px;
    font-size: 1.8em;
    letter-spacing: 1px;
    font-weight: normal;
}

.icon-wrapper {
    position: relative;
    display: inline-block;
    width: 14px;
    height: 14px;
}

.whats a {
    text-decoration: underline;
    color: #00AAEB;
    font-size: 0.8em;
    cursor: pointer;
}

.whats span.glyphicon {
    color: #333;
    font-size: 0.8em;
    right: 0;
}

.pic_wrapper {
    overflow: hidden;
    width: 100px;
    height: 100px;
    position: relative;
}

.pic_wrapper img {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    width: auto;
    height: 100%;
}

ul.deci li {
    list-style: decimal inside none;
    padding-bottom: 3px;
    padding-left: 1em;
    text-indent: -1em;
}

ul.disc li {
    list-style: disc inside none;
    padding-bottom: 5px;
    padding-left: 1em;
    text-indent: -1em;
}

ul.none li {
    list-style: none outside none;
    padding-bottom: 3px;
    padding-left: 1em;
    text-indent: -1em;
}

.tab-block {
    margin: 30px 0 20px;
}

.tab-header {
    background: #F3F2E9;
    display: inline-block;
    padding: 10px 20px 0;
    color: #534741;
    font-weight: bold;
    font-size: 1.4em;
}

.tab-body {
    background: #F3F2E9;
    padding: 20px;
}

.subhead {
    color: #09729C;
    border-bottom: 2px solid #09729C;
    padding-bottom: 5px;
    margin: 30px 0 15px;
}

.subhead h4 {
    border-left: 0;
    margin: 0;
}

.form-control-feedback {
    top: 14px;
    right: 1.3em;
}

.msg-body {
    padding: 20px 0 30px;
    font-size: 1.1em;
}

.datepicker.dropdown-menu{
    z-index: 9999;
    transform: translate3d(0,0,0);
    -webkit-transform: translate3d(0,0,0);
}

.notification_area{
    width: 80%;
    margin: 20px 0;
    padding: 16px 20px;
    border: 4px solid #e9e9e9;
    font-size: 0.9em;
}




/* カスタムコントロールのスイッチを右に */
.custom-control.custom-checkbox{padding-left: 0;}

label.custom-control-label {
	position: relative;
	padding-right: 1.5rem;
	cursor: pointer;
}

label.custom-control-label::before, label.custom-control-label::after{
  right: 0;
  left: auto;
}
/* カスタムコントロールのスイッチを右に */

.custom-switch {
  padding-left: 2.25rem;
}

.custom-switch .custom-control-label::before {
  left: -2.25rem;
  width: 2.2rem;
  height: 1.2rem;
  pointer-events: all;
  border-radius: 0.6rem;
  background: #ccc;
  outline: 3px solid #ccc;
  border: none;
}

.custom-switch .custom-control-label::after {
	top: calc(0.25rem);
	left: calc(-2.25rem);
	width: calc(1.2rem );
	height: calc(1.2rem);
	background-color: #fff;
	border: 2px solid #ccc;
	border-radius: 0.6rem;
	transition: transform 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.custom-switch .custom-control-input:focus::after{
	outline: 0;
	border: none;
	appearance: none;
	-webkit-appearance: none;/*Google Chrome/Safari対応*/
	-moz-appearance: none;/*Firefox対応*/
	-o-appearance: none;/*Opera対応*/
}

.custom-switch .custom-control-input:checked ~ .custom-control-label::after {
	transform: translateX(1rem);
	-webkit-transform: translateX(1rem);
	border: 2px solid var(--main-btn-color);
}
.custom-control-input:checked ~ .custom-control-label::before{
	background: var(--main-btn-color);
	outline: 3px solid var(--main-btn-color);
	border: none;
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label{
	cursor: inherit;
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::after {
	border: 2px solid #ccc;
}

.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before {
	background: #ccc;
}
.custom-switch .custom-control-input:disabled:checked ~ .custom-control-label::before{
	outline: 3px solid #ccc;
}

.custom-control-radio {
	display: none;
	margin: 0;
}
.custom-control-radio+label{
	position: relative;
	display: flex;
	align-items: center;
}
.custom-control-radio+label::before{
	content: '';
	display: block;
	border-radius: 100vh;
	border: 2px solid #ddd;
	width: 20px;
	height: 20px;
	aspect-ratio: 1;
	background: #fff;
	box-border: contain-box;
}
.custom-control-radio:checked+label::before{
	border: 2px solid #4db0cd;
}
.custom-control-radio:checked+label::after {
	content: '';
	display: block;
	border-radius: 100vh;
	width: 10px;
	height: 10px;
	aspect-ratio: 1;
	background-color: #4db0cd;
	position: absolute;
	left: 5px;
}

/* ポップアップ */
.popup {
    display: none;
    position: relative;
    z-index: 100;
}

.popup-inner {
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
    padding: 10px 16px;
    font-size: 0.8em;
    display: inline-block;
    border: 3px solid #00AAEB;
    position: absolute;
    width: 400px;
    background: rgba(255, 255, 255, 0.85);
    color: #666;
}

.popup-inner b {
    color: #00AAEB;
}

section.page-section {
    margin-top: 160px;
    margin-bottom: 60px;
}
/* /ポップアップ */

/* モーダル */
.modal {
    z-index: 9999;
}
.modal-backdrop {
    z-index: 8999;
}

.modal .modal-content{
    width: 90%;
    margin: 0 auto;
}
.menu_setting .modal-content{
    background: #fff;
    box-shadow: 0 5px 10px 0 rgb(0 0 0 / 20%);
    color: #666;
    width: 90%;
    margin: 0 auto;
}
.menu_setting .modal-header .modal-title{
    font-size: 1em;
    font-weight: bold;
}
.menu_setting .modal-header .modal-title span.w-icon{
    color: var(--main-color);
}
.menu_setting .modal-header,
.menu_setting .modal-footer{
    border-top: none;
    border-bottom: none;
}
.menu_setting .setting_caption {
	font-size: 0.8em;
}
.menu_setting .modal-footer button {
	font-size: 0.7em;
}


.custom-modal .form-wrapper .form-group {
    padding: 25px 0;
}

.custom-modal .modal-content {
    border-radius: 0;
    background-color: #F2F2F2;
}

.custom-modal .modal-title {
    border: 0;
    font-size: 24px;
    color: #09729C;
    margin-bottom: 6px;
}

.custom-modal .modal-header,
.custom-modal .modal-footer {
    border: 0;
}

.custom-modal .modal-header {
    padding: 20px 20px 16px;
}

.custom-modal .modal-footer {
    padding: 30px 20px;
}

.custom-modal .modal-header p {
    color: #808080;
    font-size: 14px;
    border: 0;
    margin-bottom: 0;
}

.custom-modal .modal-header .close {
    color: #09729C;
    font-size: 32px;
    /*opacity: 0.5;*/
}

.custom-modal .modal-body {
    /*background: #DFECF2;*/
    background: #FFF;
    border-top: 3px solid #dfecf2;
    border-bottom: 3px solid #dfecf2;
}

#SettingWidgetList {
    min-height: 100px;
    max-height: 400px;
    overflow-y: auto;
}

.custom-modal .modal-body table {
    border-spacing: 8px;
    border-collapse: separate;
    margin-bottom: 0;
}

.custom-modal .modal-body th,
.custom-modal .modal-body td {
    border: 0;
    font-size: 0.9em;
    padding: 10px;
}

.custom-modal .modal-body th {
    color: #09729C;
    text-align: right;
}

.custom-modal .modal-body td {
    text-align: left;
    background: #fff;
}

.custom-modal .modal-body td .form-confirm {
    word-wrap: break-word;
    word-break: break-all;
    white-space: pre-line;
    line-height: 1.4em;
    overflow-y: auto;
    max-height: 300px;
}

.custom-modal .modal-body .resv-info-txt {
    line-height: 1.4em;
}
.custom-modal .modal-body .resv-info-txt ul li{
    padding: 6px 0;
    border-bottom: 1px solid #EEE;
}
.custom-modal .modal-body .resv-info-txt ul li:last-child{
    border-bottom: none;
}
.custom-modal .modal-body .resv-info-txt .event_period {
    color: #999;
    font-size: 0.8em;
    width: 14%;
}
.custom-modal .modal-body .resv-info-txt .event_title {
    width: 86%;
}


.custom-modal .form-control:focus:not (.no-ctl ),
.custom-modal .form-control:hover:not (.no-ctl ),
.custom-modal .form-control:active:not (.no-ctl ){
    box-shadow: none;
    border-width: 4px;
    border-color: #00AAEB;
}

.custom-modal div.form-control:focus {
    border-width: 3px;
}
/* /モーダル */
#Wrap{
    height: 100%;
}
#footer{
    /*color: #09729c;*/
    padding-top: 30px;
    color: #666;
}
#footer .footer_title {
	text-align: center;
	margin-bottom: 25px;
	font-size: 0.7em;
}

#NotSetTenant{
    margin: 150px auto 50px;
    background: #f3f7f9;
    border-radius: 10px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
    padding: 30px;
}
#NoWidget{
    margin-top: 50px;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
    padding: 30px;
    text-align: center;
}

.login-bg_w{
	background: #fff;
}
#Login{
    margin-top: 100px;
    margin-bottom: 10px;
    /*
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
    padding: 30px;
    */
}

#Login .custom_btn {
	box-shadow: 0 6px 10px rgba(0,0,0,0.1);
}

#TopLogo{
    margin-top: 100px;
    margin-bottom: 30px;
}
#LoginFormIcon{
    /*width: 50px;*/
    margin: 0 auto;
    font-weight: bold;
    color: var(--main-color);
    font-size: 1.5em;
    text-align: center;
    text-decoration: underline;
}

.svg-wrap > svg {
  fill: currentColor;
}

.svg-bulk > svg {
    fill: currentColor;
}

#RemindPass{
    margin-top: 10px;
    margin-bottom: 10px;
    text-align: center;
}
#RemindPass a{
    color: #09729c;
    text-decoration: none;
    cursor: pointer;
}
#RemindPass a:hover,
#RemindPass a:active,
#RemindPass a:focus{
    text-decoration: underline;
}


#PasswordReset{
    margin-top: 100px;
    margin-bottom: 10px;
    background: rgba(255,255,255,0.6);
    border-radius: 10px;
    box-shadow: 0 2px 3px rgba(0,0,0,0.3);
    padding: 30px;
}

#HeaderNavi{
    color: #fff;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 25px;
}

#HeaderNavWrap {
	background: rgba(255,255,255,.5);
	height: 120px;
	padding-top: 30px;
}

#HeaderLogo {

}

#HeaderLogo .header-logo-wrap {
	background: #fff;
	box-shadow: 0 5px 3px rgba(0, 0, 0, 0.3);
	border-radius: 100vh;
	/*padding: 0.9em;*/
	aspect-ratio: 1;
	max-width: 100px;
}

#HeaderLogo img {
	background-size: cover;
}

/*#navLogo{
    margin-top:8px;
}*/
#Userinfo .menu_box {
	/*background: rgba(0, 0, 0, 0.3);
	*/
	color: var(--main-text-color);
}



#SettingWidgetList .list-group-item{
	cursor: pointer;
    margin-bottom: 2px;
    padding: 12px 16px;
    background: rgba(113,123,127,0.5);
    color: #fff;
    height: 50px;
    font-size: 0.8em;
}
#SettingWidgetList .list-group-item.active{
    margin-bottom: 2px;
    background: rgba(9,114,156,0.6);
    border: none;
    color: rgba(255,255,255,1);
}
#SettingWidgetList .widgetmenu-rightbox{
    display: flex;
    float: right;
    margin-left: 1em;
}
#SettingWidgetList .widgetmenu-rightbox .widget-sortwrap{
    display: flex;
    flex-flow: column;
    justify-content:space-between;
    margin-left: 8px;
}

#SettingWidgetList .widgetmenu-rightbox .widget-sortwrap a.wd-up{
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255,255,255,1);
    margin-bottom: 5px;
}
#SettingWidgetList .widgetmenu-rightbox .widget-sortwrap a.wd-down{
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid rgba(255,255,255,1);
}

#SettingWidgetList > button:first-child .widgetmenu-rightbox .widget-sortwrap a.wd-up{
    border-bottom: 10px solid rgba(255,255,255,0.3);
}
#SettingWidgetList > button:last-child .widgetmenu-rightbox .widget-sortwrap a.wd-down{
    border-top: 10px solid rgba(255,255,255,0.3);
}

#SettingWidgetList .list-group-item,
#SettingWidgetList .list-group-item:active,
#SettingWidgetList .list-group-item:hover,
#SettingWidgetList .list-group-item:focus {
	border: none;
	outline: none;
	box-shadow: none;
}
section .widget-header {
	/*color: #404c66;*/
	color: #666;
}

#modal-settingmenu {
	/*padding-top: 10%;*/
}

#modal-widgetinfo {
	padding-top: 20vh;
}

#modal-widgetinfo .modal-dialog {
	max-width: 200px;
	margin: 0 auto;
}

#modal-widgetinfo .modal-content {
	background: rgba(0, 0, 0, 0.6);
	color: #fff;
}

#modal-widgetinfo .modal-header {
	border-bottom: 1px solid #FFF;
	text-align: center;
	padding: 0.5rem 0.5rem;
}

#modal-widgetinfo .modal-header .modal-title {
	font-size: 0.8em;
	width: 100%;
}

#modal-widgetinfo .modal-body {
	min-height: 140px;
	font-size: 0.7em;
}

#modal-userinfo .form-group {
	font-size: 0.8em;
	padding: 10px 0;
	margin: 0 5px;
	border-bottom: 1px solid #eee;
}

#modal-userinfo .form-group:last-child {
	border-bottom: none;
}

#modal-changeuserpassword .modal-content .modal-notice-p,
#modal-resetwidget .modal-content .modal-notice-p {
    font-size: 0.8em;
}

#modal-resetwidget{
    padding-top: 20vh;
}

.modal .modal-header .modal-title{
	font-size: 0.95rem;
}

#UserIcon > svg,
#MenuBtnWrap > svg,
#Logout button > svg {
    width: 16px;
    height: 20px;
}
#Logout form {
    height: 100%;
}

#Userinfo {
	/*
    margin-right: 3px;
    margin-left: 20px;
	*/
}
#OpenMenu,
#Logout {
	height: auto;
	text-align: center;
}

#UserIcon{
    float: left;
    width: 15%;
}
.menu_box{
    height: 100%;
}
#Userinfo .menu_box{
    min-width: 220px;
    width: auto;
}
#Userinfo .last-login{
    font-size: 0.6rem;
    height: 1.2em;
}
#Userinfo .user-name{
    font-size: 1.4em;
    height: 1.2em;
    font-weight: bold;
    margin-top: 5px;
}
#Userinfo .user-name span{
    cursor: pointer;
}
#Userinfo .user-name:focus,
#Userinfo .user-name:hover,
#Userinfo .user-name:active{
    text-decoration: underline;
}
#FooterLogo .footerlogo_wrap{
    width: 100px;
    margin: 0 auto;
}
#footer address{
    padding: 10px 0 16px;
    font-size: 0.9em;
}
#footer address p{
    margin-bottom: 0;
}
/*
.container-grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 25% 25% 25% auto;
}*/

section.grid-item{
    margin-bottom: 20px;
}
.grid-item{
    /*width: 32%;*/
}
#FacilityListWidget.grid-item{
    /*width: 98%;*/
}
#AlarmListWidget.grid-item{
    /*width: 98%;*/
}

.flex-container{
    display: flex;
}



.widget-box{
    padding: 10px;
    background: rgba(255,255,255,1);
    color: var(--widget-text-color);
    border-radius: 10px;
    border: 2px solid rgba(255,255,255,0.1);
    box-shadow: 4px 4px 7px rgba(0,0,0,0.1), inset 0 0 10px 1px rgba(255,255,255,0.4);
}
.widget-header h3{
    font-size: 0.95rem;
}
.widget-header h3 span.w-icon {
	color: var(--main-color);
	margin-right: 5px;
}

.widget-header h3 svg{
    font-size: 0.8em;
}
.widget-loading-area .ajax_failed{
    color: var(--main-text-color);
    background: #f3f7f9;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}


.btn.btn_widget {
    border-radius: 100vh;
    background: #f7fafb;
    border: 2px solid #e5eff2;
    font-size: 0.8rem;
    padding: 0.7em 1.1em;
    color: #4a97b3;
    position: relative;
}
.btn.btn_widget:active,
.btn.btn_widget:hover,
.btn.btn_widget:focus
{
	background: #e5eff2;
	color: #42869f;
}

.btn.btn_widget .badge {
	font-size: 0.5rem;
	display: inline-block;
	position: absolute;
	top: -6px;
	right: 0;
}

.btn.btn_widget span.svg-wrap {
	display: inline-block;
	width: 15px;
	margin-right: 10px;
}

.btn.btn_widget span.svg-wrap svg {
	aspect-ratio: 1;
}

.modal-backdrop{
    background-color: #000;
}
#SettingWidgetList .list-group-item.active{
    background: var(--main-btn-color);
}

.password-remain-wrap{
    font-size: 0.8em;
}
.password-remain-wrap label{
    margin-bottom: 0.4rem;
}
.password-remain-wrap input{
    font-size: 1em;
}

.modal-content .col-form-label{
    font-size: 0.8em;
}

@media ( min-width: 767px) and (max-width : 1200px) {
	/*
    .grid-item{
        width: 48%;
    }
    #FacilityListWidget.grid-item{
        width: 91%;

    }
      #AlarmListWidget.grid-item{
        width: 91%;
    }

    #HeaderNavWrap{
        height: 100px;
    }*/
}

@media ( max-width : 767px) {
	#HeaderLogo .header-logo-wrap{
		max-width: 80px;
	}
	.container-grid {
		display: grid;
		gap: 16px;
		grid-template-columns: 1fr;
		grid-template-rows: auto;
	}
	#HeaderNavWrap {
	    height: 75px;
	    /*padding-top: 25px;*/
	}
    #Userinfo .user-name{
    	margin-top: 5px;
    	font-size: 1.2em;
    }
    #OpenMenu .custom_btn,
	#Logout .custom_btn {
		font-size: 0.6em;
		padding: 0.8em;
		padding-right: 1.2em;
	}
    /*
    .grid-item{
        width: 92%;
    }
    #FacilityListWidget.grid-item{
        width: 92%;

    }
    #AlarmListWidget.grid-item{
        width: 92%;
    }*/
}
@media ( min-width : 700px) {
    #OpenMenu .menu_box,
    #Logout .menu_box{
        width: auto;
    }
    #Logout button.menu_box{
        /*display: inline-flex;*/
        justify-content: center; /* コンテンツを水平方向に中央揃え */
        align-items: start; /* コンテンツを垂直方向に中央揃え */
        --padding-x: 1.2em;
    }

    #UserIcon > svg,
    #MenuBtnWrap > svg,
    #Logout button > svg{
        width: 20px;
    }
}
@media ( min-width : 1200px) {
    #modal-settingmenu{
        /*padding-top: 4%;*/
    }
    #modal-widgetinfo{
        padding-top: 15%;
    }
    #HeaderNavi .menu_box{
        font-size: 0.8em;
        height: auto;
    }
    #UserIcon > svg,
    #MenuBtnWrap > svg,
    #Logout button > svg{
        width: 26px;
        height: 30px;
    }
}
