/* 画面上部の疑似フレーム用 */
body{
	margin: 0;
	overflow-y: clip;
}
* html body{
	overflow: scroll;
} 
.headerArea {
	width: 100vw;
	height: 30px;
	background-color: #ffffff;
	border-bottom: solid 2px #5f5f5f;
}

/* 画面左上部のヘルプボタン等 左:30%*/
.headerArea .lmenu {
	position: fixed;
	width: 30vw;
	top: 8px;
	left: 0px;
	border: none;
	padding-left: 10px;
	text-align: left;
}
/* 画面中央上部のヘルプボタン等 中:40%*/
.headerArea .cmenu {
	position: fixed;
	width: 40vw;
	border: none;
	top: 8px;
	left: 30vw;
	text-align: center;
}
/* 画面右上部のヘルプボタン等 右:30%*/
.headerArea .rmenu {
	position: fixed;
	width: 30vw;
	border: none;
	top: 8px;
	left: 70vw;
	padding-right: 10px;
	text-align: right;
}

.headerArea p {
	margin: 0 ;
}

.headerArea input {
	margin: 0 10px;
	height: fit-content;
}


* html div#contentsArea{
	height: 100%;
	overflow: auto;
}



/* 区切り線 */
hr-1 {
	border-top: 1px solid #ccc;
	border-bottom: 1px solid #fff;
}

/* 見出し */


h1 {
	width: 80%;
	margin: 30px auto;
	text-align: center;
	border-top: solid 2px #7f7f7f;
	border-bottom: solid 2px #7f7f7f;
	padding: 5px;
}
/* 見出し2段構成 */
.h1-u {
		border-bottom: none;
		padding-bottom: 0;
		margin-bottom: 0;
	}

.h1-d {
		border-top: none;
		padding-top: 0;
		margin-top: 0;
		font-size: 1.6em;
	}
}

h1-sub {
	width: 80%;
	margin: auto;
	font-size:20px;
	font-weight: bold;
	text-align: center;
	line-height: 23px;
	padding: 5px;
    top: 100px;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
}
.h1-parent{
    border: none;
    position: relative;
    height: 150px;
    width: 100%;
	margin-top: 50px;
}
.h1-inner{
    border: none;
    width: 100%;
    height: 100%;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    position: absolute;
    margin: auto;
}
.h1-border1 {
	width: 80%;
	margin: 5px auto;
	text-align: center;
	background-color: #00a951; /* 線色 */
    border-radius: 4px; /* 線幅の半分 */
    content: "";
    display: block;
    height: 8px; /* 線幅 */
}
.h1-mid {
	width: 80%;
	margin: 5px auto;
	text-align: center;
	font-size: 40px;
	height: 55px;
	/*background-color: #00a951; /* 線色 */
    /*border-radius: 4px; /* 線幅の半分 */
}
.h1-flex {
	width: 450px;
	/*margin-left: auto;
	margin-right: auto;*/
	margin-left: auto;
	margin-right: auto;
	font-size: 35px;
	font-weight: bold;
	height: 55px;
	display: -webkit-flex;
	display: flex;
	-webkit-align-items: center;
	align-items: center;
	vertical-align: bottom;
}



h2 {
	width: 70%;
	margin: 30px auto;
	text-align: center;
	padding: 5px;
}

h3 {
	position: absolute;
	top: 5px;
	width: 100%;
	margin-top: 5px;
	text-align: center;
}

h4 {
	width: 70%;
	margin: 10px auto;
	text-align: center;
	border-top: solid 2px #7f7f7f;
	border-bottom: solid 2px #7f7f7f;
	padding: 2px;
}

.logintable {
	margin: 0 auto;
	border: solid 1px #7f7f7f;
	padding: 5px;
}

.table_sub {
	border: solid 1px #7f7f7f;
	border-collapse: collapse;
}

.cnt {
	text-align: center;
}
h4-cnt{
	width: 70%;
	margin: 10px auto;
	text-align: center;
	border-top: solid 2px #7f7f7f;
	border-bottom: solid 2px #7f7f7f;
	padding: 2px;
}

.td_l , .th_l {
	text-align: left;
}

.td_r , .th_r {
	text-align: right;
}


.td_c , .th_c {
	text-align: center;
}

.td_r , .th_r {
	text-align: right;
}



/* 検索エリア用 */
.search-area {
	border-collapse: collapse;
	margin: 0 auto;
	border: none;

	& label {
		font-weight: bold;
	}

	& input {
		border-radius: 5px;
	}

	& .num {
		text-align: right;
	}


	& select {
		border-radius: 5px;
	}

	& buttom {
		border-radius: 5px;
	}


	& input:focus::placeholder {
		color: transparent;
		transition: .2s;
	}
	& span.tooltipMsg {
		position: relative;
		display: inline-block;
		margin: 1.2em 0;
		padding: 0px 10px;
		min-width: 120px;
		max-width: 100%;
		color: white;
		font-size: 12px;
		background: rgb(120, 120, 120);
		border-radius: 5px;
		box-shadow: 0px 1px 2px 0 rgb(120, 120, 120);
		z-index: 10000;
		display: none;
	}
	& span.tooltipMsg:before {
		content: "";
		position: absolute;
		top: 100%;
		left: 50%;
		margin-left: -15px;
		border: 8px solid transparent;
		border-top: 8px solid rgb(120, 120, 120);
	}
	& .alert__name, .alert__mail, .alert__msg {
		font-size: 12px;
		color: rgb(219, 46, 48);
		margin-left: 75px;
	}

	& [class*="form-"] {
		position: relative;
	}
	& [class*="form-"] span.tooltipMsg {
		position: absolute;
		left: 10%;
		bottom: 75%;
	}


/*
	& .form-customerid span.tooltipMsg {
		position: absolute;
		left: 10%;
		bottom: 75%;
	}
	& .form-tokuiid span.tooltipMsg {
		position: absolute;
		left: 10%;
		bottom: 75%;
	}
	& .form-userid span.tooltipMsg {
		position: absolute;
		left: 10%;
		bottom: 75%;
	}
	& .form-msg span.tooltipMsg {
		position: absolute;
		left: 10%;
		bottom: 75%;
	}
*/


}

	.ui-datepicker-trigger {
		vertical-align: middle;
		height: 22px;
		margin: 0 5px;
	}

	#s_hiduke, #e_hiduke {
		cursor: pointer;
		width: 80px;
	}

/* メイン画面レイアウト用 */

.header {
	height: 60px;
	box-sizing: border-box;
	border-bottom: 2px solid #7f7f7f;

}
.footer{
	display: flex;
	justify-content: center;
	align-items: center;
	border-top: 1px solid #7f7f7f;
	height: 150px;
	box-sizing: border-box;
	
	& img {
		height: 96px;
		vertical-align: middle;
	}
	& ul.footer-list {
		list-style: none;
		padding: 10px;

		& li {
			align-items: center;
			padding: 2px 16px;
			display: list-item;
		}
	}
}
.pane-container{
	display: flex;
}
.pane {
	height: calc(100vh - 60px - 150px);
}
.pane-main {
	flex: 1;
	display: flex;
	min-width: 0;
	color: #fff;
	
	& .main-iframe {
		width: 100%;
		height: 100%;
		box-sizing: border-box;
		border: none;
		}
}
.pane-left {
	width: 155px;
	flex-shrink: 0;
	color: #fff;
	border-right: 1px solid #7f7f7f;
}

.inner_body {
	width: 100%;
	height: 100%;
	margin-top: 0px;
	position: absolute;
	top: -3px;
	overflow-y: hidden;
}

.search_result {
	display: flex;
	width: 960px;
	margin: 5px auto;
}

.search_result.add-margin {
	margin-top: 2em;
}

.btn_area {
	display: contents;
	position: absolute;
	top: 0px;
	& input {
		position: sticky;
		width: 110px;
		border-top:none;
		border-radius: 0 0 5px 5px;
		cursor: pointer;
	}
}

.slide_menu {
	margin-top: 1em;
	
	& .search_frame {
		border: 1px solid black;
		border-radius: 1em;
		margin: 0 auto;
		width: 45vw;
		min-width: 610px;
		visibility: visible;
		opacity: 1;
	}
}
.slide_menu.is-display {
	display: none;
}

.pointer {
	cursor: pointer;
}
.btn {
	font-size: 1.2em;
	padding: 5px 10px;
	border-radius: 5px;
	cursor: pointer;
}