@charset "utf-8";
html {
	height: 100%;
}

body {
	margin: 0;
	padding: 0;
	min-height: 100%;
	display: flex;
	flex-direction: column;
	font-family:'Noto Sans JP', sans-serif;
	letter-spacing:0.02em;
	color:#242a31;
	background:#f8f9fd;
	position: relative;
}

*{
	box-sizing: border-box;
}

h1,h2,h3,h4,h5,p,table,span,a,li{
	padding:0;
	margin:0;
	font-style: normal;

}

ul ,ol {
	list-style:none;
	padding:0;
	margin:0;
}

table{
	border-collapse: separate; border-spacing: 0;
}

a{
	transition: all 0.2s ease;
	color:#464646;
}

select:hover{
	cursor: pointer;
}

.form-group{
	margin:0;
}

.modal-backdrop{
	width: 100%;
	height:100%;
}

.mb-0{
	margin-bottom:0 !important;
}

/* Bootstrapのガター幅を調整するための汎用CSS */
.row-0{margin-left:0px;margin-right:0px;}
.row-0 >div{padding-right:0px;padding-left:0px;}
.row-5{margin-left:-2.5px;margin-right:-2.5px;}
.row-5 >div{padding-right:2.5px;padding-left:2.5px;}
.row-10{margin-left:-5px;margin-right:-5px;}
.row-10 >div{padding-right:5px;padding-left:5px;}
.row-15{margin-left:-7.5px;margin-right:-7.5px;}
.row-15 >div{padding-right:7.5px;padding-left:7.5px;}
.row-20{margin-left:-10px;margin-right:-10px;}
.row-20 >div{padding-right:10px;padding-left:10px;}
.row-30{margin-left:-15px;margin-right:-15px;}
.row-30 >div{padding-right:15px;padding-left:15px;}
.row-40{margin-left:-20px;margin-right:-20px;}
.row-40 >div{padding-right:20px;padding-left:20px;}
.row-50{margin-left:-25px;margin-right:-25px;}
.row-50 >div{padding-right:25px;padding-left:25px;}
.row-20-0,.row-20-5,.row-20-10{margin-left:-10px;margin-right:-10px;}
.row-20-0,.row-20-5,.row-20-10 >div{padding-right:10px;padding-left:10px;}
.row-30-0 >div{padding-right:30px;padding-left:30px;}

/*
layout
*****************************/

.wrapper{
	min-width:1200px;
	min-height:100vh;
	display:flex;
	position: relative;
}

.top-wrapper{
	min-width:1200px;
	margin:100px 50px 0 50px;
	display: flex;
	gap:40px;
}

.top-wrapper .item-left,
.top-wrapper .item-right{
	width:50%;
}

.side-menu{
	width:300px;
	background:#1d2327;
	position: relative;
	box-shadow: 2px 0 2px rgba(0, 0, 0, 0.2);
}

.contents{
	width:calc(100% - 300px);
	padding:30px 50px;
	margin-top: 60px;
}

/*
title
*****************************/

h1{
	font-size:24px;
	font-weight:bold;
	margin:0 0 15px 0;
	position: relative;
}

h2{
	font-size:20px;
	font-weight:bold;
	border-bottom:1px solid #d4d4d4;
	padding-bottom:10px;
	margin:0px 0 10px 0;
}


h3{
	font-size:18px;
	font-weight:bold;
	margin:10px 0 10px 0;
}

table + h2{
	margin-top:30px;
}
/*
card
*****************************/

.card{
	padding:30px;
}

.card + .card{
	margin-top:30px;
}

/*
login-box
*****************************/

.logo-area{
	text-align: center;
	/** padding:50px 15px; */
}

.login-box{
	width:500px;
	margin:100px auto;
	background:#fff;
	border-radius: 10px;
	border:1px solid #f4f4f4;
	box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

.login-box-in{
	padding:0 50px 50px 50px;
}

.login-box label{
	color:#666;
}

.login-box .form-control{
	margin-bottom:15px;
}

.login-box-btn{
	padding:20px 20px 40px 20px;
	text-align: center;
}

input.form-control::placeholder {
    color: #666;
    opacity: 0.6;
}

/*
modal-remote
*****************************/

.modal-header{
	justify-content: center;
	color: #fff;
	background: #00a0e9;
	border-radius: 0.25rem 0.25rem 0 0;
}

.modal-title{
	flex: 1;
	text-align: center;
}

.modal-body{
	padding:30px 50px;
}

.modal-custom .modal-body,
.modal-custom-confirm .modal-body{
	padding:30px 40px 40px 40px;
}

.modal-custom .modal-body .btn-primary{
	width:70%;
	margin:10px auto 0 auto;
	display:block;
}

.modal-custom-confirm .btn-set{
	display:flex;
	justify-content: center;
	gap:15px;
	padding:20px 0 0 0;
}

.modal-custom-confirm .btn-set .btn{
	width:100px;
}

.lock-status{
	padding:50px;
	text-align: center;
}

.lock-status i,
ul.lock-menu li a i{
	font-size:26px;
	margin-bottom:5px;
}

.lock-status.unlock{
	color: #db2424;
}

.lock-status.locked{
	color:#00a0e9;
}

ul.lock-menu{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap:20px;
	width:100%;
	margin:20px 0 40px 0;
}

ul.lock-menu li a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	padding:30px;
	border:3px solid;
	border-radius: 10px;
}

ul.lock-menu li a:hover{
	text-decoration: none;
}

ul.lock-menu li:first-child a{
	color:#28a745;
	border-color: #28a745;
	background:#fff;
}

ul.lock-menu li:nth-child(2) a{
	color: #db2424;
	border-color: #db2424;
}

ul.lock-menu li:last-child a{
	color: #00a0e9;
	border-color: #00a0e9;
}

ul.lock-menu li:first-child a:hover{
	color:#fff;
	border-color: #28a745;
	background:#28a745;
}

ul.lock-menu li:nth-child(2) a:hover{
	color: #fff;
	background: #db2424;
}

ul.lock-menu li:last-child a:hover{
	color: #fff;
	background: #00a0e9;
}

ul.lock-menu-shared{
	display: grid;
	grid-template-columns: 1fr 1fr 1fr;
	gap:20px;
	width:100%;
	margin:20px 0 40px 0;
}

ul.lock-menu-shared li a{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	padding:30px;
	border:3px solid;
	border-radius: 10px;
}

ul.lock-menu-shared li a:hover{
	text-decoration: none;
}

ul.lock-menu-shared li:first-child a{
	color:#cc6600;
	border-color: #cc6600;
	background:#fff;
}

ul.lock-menu-shared li:nth-child(2) a{
	color: #db2424;
	border-color: #db2424;
}

ul.lock-menu-shared li:last-child a{
	color: #00a0e9;
	border-color: #00a0e9;
}


ul.lock-menu-shared li:first-child a:hover{
	color:#fff;
	border-color: #cc6600;
	background:#cc6600;
}

ul.lock-menu-shared li:nth-child(2) a:hover{
	color: #fff;
	background: #db2424;
}

ul.lock-menu-shared li:last-child a:hover{
	color: #fff;
	background: #00a0e9;
}

.lock-info{
	border-top:1px solid #ddd;
	padding:20px 10px;
}

.lock-info p{
	padding-left:25px;
	position: relative;
}
.lock-info p:before{
	content: "\f06a";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	position: absolute;
	top:0;
	left:0;
	color:#db2424;
}

.pass-info{
	font-size:14px;
	color:#db2424;
}

.form-error-txt{
	font-size:14px;
	color:#db2424;
	margin-bottom:20px;
	text-align: center;
	background-color: #ffeeee;
	padding:10px;
	border-radius: 4px;
}

.form-set{
	display: flex;
	gap:10px;
	margin-bottom:5px;
}

.form-set dt{
	width:150px;
	padding-top:7px;
}

.form-set dd{
	width:calc(100% - 150px);
}

.form-set .form-control{
	margin-bottom:7px;
}

/*
btn
*****************************/

.btn{
	box-shadow: 0 2px 3px rgba(0,0,0,0.25);
	transition: all 0.2s ease;
}

.btn:hover{
	opacity:0.8;
}

.btn-secondary.focus,
.btn-secondary:focus{
	box-shadow: 0 2px 3px rgba(0,0,0,0.25);
}

.btn-login{
	color:#fff;
	background:#00a0e9;
	width:300px;
	padding:10px;
	border-radius: 50px;
}

.btn-white{
	color:#333;
	background:#fff;
	border-color:#e0e0e0;
	width:300px;
	padding:10px;
	border-radius: 50px;
}

.btn-primary,
.btn-primary:hover{
	color:#fff;
	border-color:#00a0e9;
	background:#00a0e9;
}

.btn-back{
	color:#333;
	background:#fff;
	border-color:#e0e0e0;
}

.btn-gray{
    color:#fff;
    background:#808080;
    border-color:#e0e0e0;
}

.btn-red{
    color:#fff;
    background:#f00;
    border-color:#e0e0e0;
}

.btn-group-toggle .btn-secondary,
.btn-group-toggle .btn-secondary:hover{
	color:#333;
	border-color:#e0e0e0 !important;
	background:#e0e0e0 !important;
}

.btn-group-toggle .btn-secondary.active,
.btn-group-toggle .btn-secondary.active:hover{
	color:#fff;
	border-color:#00a0e9 !important;
	background:#00a0e9 !important;
}

.btn-cancel,
.btn-delete{
	color:#333;
	background:#e2e2e2;
}

.btn-alert{
	color:#fff;
	background:#e74040;
}

.btn-alert:hover{
	color:#fff;
}

/*
ttl-box
*****************************/
.ttl-box{
	position: relative;
	margin-bottom:20px;
}

.ttl-box .btn,
.ttl-box .btn-set{
	position:absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	right:0;
}

.ttl-box .btn-set .btn{
	position: static;
	transform:initial;
	-webkit-transform:initial;
	-ms-transform:initial;
}

.ttl-box .btn-set{
	display: flex;
	align-items: center;
	gap:10px;
}
.ttl-box h3{
	margin:0;
}
.ttl-box p{
	color:#888;
}


/*
header
*****************************/
header{
	position: fixed;
	top:0;
	left:0;
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding:0 30px 0 15px;
	background:#00a0e9;
	height:60px;
	box-shadow: 0 2px 3px rgba(0,0,0,0.2);
	z-index:10;
}

header .header-left{
	display:flex;
	align-items: center;
	gap:20px;
}

header .header-left #g-menu-link{
	display: flex;
	justify-content: center;
	align-items: center;
	flex-flow: column;
	gap:0px;
}

header .header-left #g-menu-link:hover{
	text-decoration: none;
}

header .header-left #g-menu-link div{
	font-size: 12px;
}

.dropdown{
	display:none;
	position: absolute;
	top: 100%;
	right: -10px;
	padding:15px 20px;
	transition: all 0.2s ease;
	width:250px;
	z-index: 50;
	border-radius: 0 0 4px 4px;
	box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

ul.u-nav{
	display:flex;
	gap:5px;
}

ul.u-nav li{
	position: relative;
}
ul.u-nav li > p{
	padding:17px 7px;
}
ul.u-nav li > p i{
	font-size:20px;
	color:#fff;
}

ul.u-nav li:hover{
	cursor: pointer;
}

ul.u-nav li:hover .dropdown,
ul.u-nav li .dropdown:hover {
	display: block;
	background:rgba(0,0,0,0.95);
}

ul.u-nav li:hover .dropdown li,
ul.u-nav li:hover .dropdown a{
	font-size: 14px;
	color:#fff;
}
ul.u-nav li:hover .dropdown a{
	position: relative;
	padding-left:15px;
}
ul.u-nav li:hover .dropdown a:before{
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left:0;
	font-size: 10px;
}

ul.u-nav li:hover .dropdown p{
	color:#fff;
	margin-bottom:10px;
}

.nav-button-with-icon {
	all: unset;
	display: block;
	padding: 3px 0 3px 15px;
	font-family: inherit;
	font-size: 14px;
	color:#fff;
	text-align: left;
	cursor: pointer;
	position: relative;
	line-height: 1.5;
}

.nav-button-with-icon::before {
	content: "\f0da";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left:0;
	font-size: 10px;
}

.nav-button-with-icon:focus {
	outline: none;
	box-shadow: none;
}

.nav-button-with-icon:hover {
	text-decoration: underline;
}

/*
side
*****************************/

.side-menu > ul{
	position: sticky;
	left:0;
	padding-bottom:50px;
}

.side-menu > ul > li > a{
	display:block;
	padding:10px;
}

.side-menu > ul > li > a{
	/*background:#1c6383;*/
	background: #005bab;
	padding:10px 10px 10px 35px !important;
	border-bottom:1px solid rgba(255,255,255,0.3);
}

.side-menu > ul > li > a:hover{
	opacity:0.8;
}

.side-menu > ul > li > ul{
	background:rgba(0,0,0,0.15);
	padding:10px 0px 10px 30px !important;
}

.side-menu > ul > li > ul a{
	font-size:14px;
	color:#ccc;
}

.side-menu > ul > li > ul a:hover{
	color:#00a0e9;
}

.side-menu > ul > li.menu-all{
	font-size:16px;
	font-weight:bold;
	color:#fff;
	padding:10px;
	/*background:#1c6383;*/
}

.side-menu ul li ul{
	padding-left:20px;
}

.side-menu ul li a{
	position: relative;
	padding: 5px;
	display: block;
	color:#fff;
}
.side-menu ul li a:hover{
	text-decoration: none;
}

.side-menu ul li a::before{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 15px;
	font-family: "Font Awesome 5 Free";
	font-weight:900;
}

.side-menu .acc::after{
	position: absolute;
	top:7px;
	right: 15px;
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	font-size: 12px;
}

.side-menu .acc.active::after{
	top:10px;
}

.side-menu ul li li a::before{
	left:-15px;
}

.i-user:before{
	content: "\f007";
}
.i-area:before{
	content: "\f3c5";
}
.i-area-user:before{
	content: "\f007";
}
.i-hotel:before{
	content: "\f1ad";
}
.i-room:before{
	content: "\f52a";
}

.i-entrance:before{
	content: "\f009";
	left:-13px;
}

.i-account:before{
	content: "\f007";
}
.i-key:before{
	content: "\f084";
	left:13px;
}
.i-group:before{
	content: "\f0c0";
	left:10px;
}
.i-history:before{
	content: "\f1da";
	left:12px;
}
.i-mail:before{
	content: "\f0e0";
	left:12px;
}
.i-area:before{
	content: "\f5fd";
	left:12px
}
.i-plan:before{
	content: "\f157";
	left:12px;
}
.i-external:before{
	content: "\f0ac";
	left:12px;
}
.i-shipping:before{
	content: "\f013";
	left:12px;
}

.acc:after{
	content: "\f0dd";
}
.acc.active:after{
	content: "\f0de";
}

.side-menu > ul > li > a.acc:after{
	content: "\f0dd";
}

.side-menu > ul > li > a.acc.active:after{
	content: "\f0de";
}


/*
txt-edit
***********************/

.txt-edit{
	display:flex;
	align-items: center;
	gap:0px;
	padding:5px 0;
	margin-bottom: 10px;
}

.txt-edit .item-txt{
	width:calc(100% - 50px);
}

.txt-edit .item-txt .form-control{
	margin-bottom:0;
}
.txt-edit .item-btn{
	width:50px;
}
.txt-edit .item-btn a{
	display: flex;
	justify-content: center;
	align-items: center;
	padding:10px;
	font-size:20px;
}
.txt-edit .item-btn a:hover{
	text-decoration: none;
}

/*
table
*****************************/

.table td,
.table th{
	vertical-align: middle;
}

.table{
	margin-bottom: 40px;
	font-size: 14px;
	table-layout:fixed;
}
.table tr:last-child td,
.table tr:last-child th{
	border-bottom: 1px solid #dee2e6;
}

.table-striped tbody tr:nth-of-type(odd){
	background:#f1f6f8;
}

table th,
table td{
	padding:5px 10px;
	height:55px;
}

.table-responsive{
	display: flex;
	position: relative;
}

.table-responsive table{
	margin-bottom: 0;
}

.table-responsive .table td,
.table-responsive .table th{
	padding:0.6rem .75rem;
}

.table-responsive table:first-child{
	width:300px;
	position: sticky;
	top:0;
	left:0;
	background: #fff;
	z-index: 2;
}

.table-responsive table:first-child th{
	background: #fff;
}
.table-responsive table:nth-child(n + 2){
	min-width:200px;
}

.table-responsive table:nth-child(n + 2) th,
.table-responsive table:nth-child(n + 2) td{
	text-align: center;
}

.table-responsive table{
	white-space: nowrap;
}

.table-room-info td:nth-last-child(2){
	width:200px;
	text-align: center;
}

.table-room-info td:last-child{
	width:63px;
	text-align: center;
}

.table-device th,
.table-device td{
	text-align: center;
}

.table-device td:first-child,
.table-device td:last-child{
	text-align: left;
}

.table-room-pass th:nth-child(3){
	width:150px;
}

.table-function th:nth-last-child(2),
.table-function td:nth-last-child(2),
.table-function th:last-child,
.table-function td:last-child{
	width:250px;
	text-align: center;
}

.table-function tbody th{
	font-weight:normal;
}

.table-room-pass th{
	text-align: center;
}

.table-room-pass td:nth-child(n + 2){
	text-align: center;
}

.table-ent th:last-child{
	width:250px;
}
.table-ent th:last-child,
.table-ent td:last-child{
	text-align: center;
}

.table.table-account thead th{
	height:95px;
	vertical-align: top;
	background:#fff;
}

.table.table-account .btn-group .btn{
	width:100px;
}

.table.table-account.select-table-type{
	transition: all 0.2s ease;
}

.table.table-account.select-table-type .btn-group{
	width:95%;
}
.table.table-account.select-table-type .btn-group .btn{
	width:100%;
	margin-bottom:7px;
}

.select-table-type.active,
.select-table-type.active thead th{
	background:#daf1fb;
}

.select-table-type.active tbody tr:nth-child(odd) td{
	background:#c9e2ed;
}
.table.table-account.select-table-type .btn-group .btn{
	padding-left:28px;
	background:#f3f3f3 !important;
	box-shadow:0 1px 2px rgba(0,0,0,0.15);
}

.table.table-account.select-table-type .btn-group .btn.active{
	background:#00a0e9 !important;
}
.table.table-account.select-table-type .btn-group .btn:before{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 5px;
	content: "\f058";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
	font-size: 18px;
	color:#cdcdcd;
}
.table.table-account.select-table-type .btn-group .btn.active:before{
	color:#fff;
}

.ent-num-set{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap:5px;
	width:100%;
	margin:0 auto;
}

.ent-num,
.btn-group.ent-num-set .btn.ent-num{
	display: flex;
	justify-content: center;
	align-items: center;
	padding:2px 5px;
	width:25px;
	height:25px;
	border-radius: 25px;
	color:#fff;
	line-height: 1;
	background:#00a0e9;
}
.btn-group.ent-num-set .btn.btn-secondary.ent-num{
	color: #333;
}
.btn-group.ent-num-set .btn.btn-secondary.ent-num.active{
	color:#fff;
}


.status-set{
	display: flex;
	justify-content: center;
	gap:7px;
}

.status-set a{
	padding: 5px;
}

.status-set i{
	font-size: 18px;
}

.status-set .item{
    position: relative;
	text-align: center;
}

.date-time-set{
	display: grid;
	grid-template-columns: 1fr 1fr 0.15fr 1fr 1fr;
	align-items: center;
	gap:5px;
	width:90%;
	margin:0 auto;
}

.date-time-set input{
	text-align: center;
}

.date-time-set input:hover{
	cursor: pointer;
}



/*
tool-link
*****************************/

.tooltip-link {
    cursor: pointer;
}

.tooltips {
    display: none;
    position: absolute;
	bottom:35px;
	right:-10px;
    background-color: rgba(0, 0, 0, 0.8); /* 黒色半透明 */
    color: #fff; /* 白色の文字 */
    padding: 15px;
    border-radius: 5px;
    font-size: 14px;
	text-align: left;
    z-index: 100;
	width:420px;
}

.tooltips::before {
    content: "";
    position: absolute;
    bottom:-7px; /* 親要素より上に配置 */
    right: 16px; /* 右端に配置 */
	border-style: solid;
	border-left: 7px solid transparent;
	border-right: 7px solid transparent;
	border-top: 7px solid rgba(0, 0, 0, 0.8);
	border-bottom: 0;
}

.tooltips-in{
	display: flex;
	gap:10px;
}

.tooltips-left{
	width:30px;
	text-align: center;
}
.tooltips-right{
	width:calc(100% - 30px);
	word-break: break-all;
	overflow-wrap : break-word;
}
.tooltips-right p{
	width: 100%;
	word-break: break-all;
	overflow-wrap : break-word;
}

/*
tab
*****************************/

ul.nav{
	margin-bottom:30px;
	border-bottom:1px solid #ddd;
}
.nav-link{
	border-bottom:3px solid transparent;
}
.nav-link.active{
	font-weight: bold;
	color:#00a0e9;
	border-bottom:3px solid #00a0e9;
}
.nav-link:hover{
	color:#00a0e9;
}

.tab-pane{
	animation: fadeIn 0.8s ease 0s 1 normal;
	-webkit-animation: fadeIn 0.8s ease 0s 1 normal;
}

@keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}

@-webkit-keyframes fadeIn {
	0% {opacity: 0}
	100% {opacity: 1}
}


/*
g-menu
************************************/

.g-menu-wrapper {
    position: relative;
}

.g-menu-in{
    position: relative;
}

.g-menu {
    position: fixed;
    top: 0;
    left: -300px; /* 初期状態で画面外 */
    width: 300px;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9); /* 黒半透明 */
    transition: left 0.3s ease;
    z-index: 1000;
	box-shadow: 2px 0 2px rgba(0, 0, 0, 0.2);
}

.g-menu.active {
    left: 0; /* メニューが表示される位置 */
}

.g-menu ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.g-menu ul li a::before {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 15px;
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
}

.g-menu ul li a {
    color: white;
    text-decoration: none;
    display: block;
    padding: 10px 0;
	position: relative;
}

#g-menu-link{
	font-size:18px;
	color:#fff;
}

#g-menu-close{
	position: absolute;
	top:10px;
	right:10px;
	font-size:18px;
	color:#fff;
}

.g-menu .menu-all{
	font-size: 16px;
    font-weight: bold;
    color: #fff;
    padding: 18px 10px 18px 15px;
}

.g-menu ul.menu-list a{
	background: #005bab;
    padding: 10px 10px 10px 35px !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.g-menu ul.menu-list a:hover{
	opacity: 0.8;
}

/*
password-reissue
***********************/
.pwd-reissue-title-area{
	text-align: center;
	padding: 50px 15px 30px 15px;
	font-size: 20px;
	font-weight: bold;
}

.pwd-reissue-text-area{
	text-align: center;
	font-size: 14px;
	padding-bottom: 30px;
}

.pwd-reissue-box-btn{
	padding: 20px 20px 0px 20px;
	text-align: center;
}

.help-txt {
	color: red;
	padding-top: 0.45rem;
	font-size: 14px;
}

/*
paginate
***********************/
.dataTables_info {
	width: 60%;
	float: left;
	font-size: 12px;
}

.dataTables_paginate {
	float: right;
	text-align: right;
	font-size: 12px;
}

.dataTables_paginate a {
	padding: 6px 9px !important;
	background: #f1f6f8 !important;
	border-color: #f1f6f8 !important;
	background: #ff0000;
}

.paginate_button a:hover {
	background-color: #ccc;
	text-decoration: none !important;
}

/*
news-box
****************************************/
.news-box h2{
	font-size: 22px;
	margin-bottom:10px;
	padding-bottom:15px;
}
.news-box ul li{
	padding:10px 0;
	border-bottom:1px solid #dee2e6;
}
.news-box ul li:nth-child(even){
	background:#f1f6f8;
}

.news-box ul li dl{
	display: flex;
	align-items: center;
	gap:10px;
	margin:0;
}
.news-box ul li dl dt{
	width:140px;
	margin:0;
	font-weight: normal;
	text-align: center;
}
.news-box ul li dl dd{
	width:calc(100% - 150px);
	margin:0;
}

.news-box ul li a{
	position: relative;
	padding-left:30px;
	display: block;
}

.news-box ul li a:before{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	left: 0;
	font-family: "Font Awesome 5 Free";
	font-weight:900;
}

.cat-i-important-notice:before{
	content: "\f05a";
	color:red;
}
.cat-i-topic:before{
	content: "\f06a";
}
.cat-i-update:before{
	content: "\f021";
}
.cat-i-product:before{
	content: "\f02b";
}
.cat-i-etc:before{
	content: "\f059";
}
.cat-i-download:before{
	content: "\f019";
}

/*
cat-box
****************************************/

.cat-box{
	margin-top:30px;
}

.cat-box ul{
	display: grid;
	grid-template-columns: 1fr 1fr ;
	gap:15px;
}

.cat-box ul li a{
	display:block;
	padding:20px 10px;
	text-align: center;
	color: #fff;
	border-radius:5px;
	background: #005bab;
	box-shadow: 0 2px 5px rgba(0,0,0,0.2);
	position: relative;
}

.cat-box ul li a:after{
	position: absolute;
	top: 50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	right:15px;
	content: "\f054";
	font-family: "Font Awesome 5 Free";
	font-weight:900;
}

.cat-box ul li a:hover{
	background:#054e8e;
	text-decoration: none;
}
.cat-box ul li a span{
	display: block;
	width: 100%;
}

.cat-ttl{
	font-size:20px;
	font-weight: bold;
}

.cat-num{
	font-size:24px;
	font-weight: bold;
	position: relative;
}

.cat-num:after{
	display: inline-block;
	font-size: 16px;
	padding-left:4px;
}

/*
custom
***********************/
.form-control{
	height: 35px;
    font-size: 14px;
}

.span-table-val{
    padding-left: 10px;
}

.span-radio-txt{
    padding: 5px 10px 0px 10px;
}

.flex-box{
	display: flex;
	align-items: center;
	margin-bottom:10px;
}

.flex-box h3{
	flex: 1;
}

.flex-box .btn{
	position: relative;
	margin: 0px 5px;
}

.edit-box{
	padding: 10px 10px;
}

.save-box{
    padding: 10px 10px;
}

.btn-box{
	display: flex;
	float: right;
	padding-top: 10px;
}

.btn-box-left{
    display: flex;
    float: left;
    padding-top: 10px;
}

.btn-box .btn{
	margin: 0px 5px;
}

.input-txt{
  padding: 0px 0px 0px 10px;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  height: 35px;
}

.input-txt:focus {
  background-color: #fff;
  border-color: #80bdff;
  outline: 0;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

.input-only-read{
	border: none;
	background-color: #ffffff00;
	pointer-events:none;
	appearance: none;
}

.table-in-index{
	margin-bottom: 20px;
}

.help-txt {
    color: #ff0000;
    padding:10px 5px 0px 5px;
}

.paginate_button a {
  cursor: pointer;
}

.side-menu {
  margin-top: 60px;
  max-height: calc(100vh - 60px);
  overflow-y: scroll;
  align-items: flex-start;
}

.side-menu::-webkit-scrollbar{
  width: 10px;
}
.side-menu::-webkit-scrollbar-thumb {
  background-color: rgba(136, 136, 136, 0.5);
  border-radius: 10px;
}

.side-menu::-webkit-scrollbar-thumb:hover {
  background-color: rgba(240, 240, 240, 0.6);
}

.side-menu::-webkit-scrollbar-track {
  background-color: rgba(136, 136, 136, 0.84);
}

.contents {
  max-height: calc(100vh - 60px);
  overflow-y: scroll;
  margin-top: 60px;
}

.faq-modal-detail {
  margin: 15px;
  width: 100%;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
  white-space: pre-wrap;
  word-wrap: break-word;
  word-break: break-word;
}

.fixed-button {
    position: fixed;
    text-align: right;
}

.Tooltip {
  --_bg: #000;
  --_color: #fff;
  --_triangle-size: 5px;
  --_gap: 3px;

  position: absolute;
  z-index: 1;
  display: block;
  width: max-content;
  max-width: 150px;
  padding: 10px;
  background-color: var(--_bg);
  color: var(--_color);
  text-align: left;
  border-radius: 8px;
  font-size: 12px;
  visibility: hidden;
  opacity: 0;
}

.Tooltip.-top {
  bottom: calc(100% + var(--_triangle-size) + var(--_gap));
  left: 50%;
  translate: -50% var(--_y, 0);
}

.Tooltip.-bottom {
  top: calc(100% + var(--_triangle-size) + var(--_gap));
  left: 50%;
  translate: -50% var(--_y, 0);
}

.Tooltip.-right {
  bottom: 50%;
  left: calc(100% + var(--_triangle-size) + var(--_gap));
  translate: var(--_x, 0) 50%;
}

.Tooltip.-left {
  bottom: 50%;
  right: calc(100% + var(--_triangle-size) + var(--_gap));
  translate: var(--_x, 0) 50%;
}

.Tooltip_Body {
  display: block;
}
.Tooltip_Body::before {
  content: "。ツールチップあり：";
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  width: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
}

.TooltipContainer {
  position: relative;
}

.TooltipContainer:is(:hover, :focus-visible, :focus-within, :active) > .Tooltip {
  visibility: visible;
  opacity: 1;
}

.secret-key-body {
	margin: 0;
	position: relative;
	min-height: 100%;
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	overflow: auto;
}

@media (min-width: 541px) {
	.secret-key-body {
			max-width: 540px;
	}
}

@media (max-width: 540px) {
	.secret-key-body {
			width: 100%;
			padding: 0 20px;
	}
}

.secret-key-box{
	width:100%;
	margin:50px auto;
	background:#fff;
	border-radius: 10px;
	border:1px solid #f4f4f4;
	box-shadow: 0 0 4px rgba(0,0,0,0.15);
}

.secret-key-in{
	padding:0 30px 50px 30px;
}

.secret-key-input-box {
	text-align: center;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	margin-bottom: 20px;
}

.secret-key-input-box span{
	font-size: 14px;
}

.secret-key-input {
	width: 100%;
	text-align: center;
}

.btn-secret-key{
	color:#fff;
	background:#00a0e9;
	width:100%;
	padding:10px;
	border-radius: 50px;
}

.side-menu .menu-list{
  display: none;
}

.side-menu > ul > li > ul a.selected{
	color:#00a0e9;
}
