@charset "utf-8";
/* CSS Document */
@import url("print.css?v=0001") print;
@import url('https://fonts.googleapis.com/css?family=Noto+Sans+JP:100,300,400,500,700,900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;700&display=swap');


:root {
--point-color-red: #BD111A;
--point-color-blue: #8d8c8c;
--txt-color: #000;
--head-color: rgba(255,255,255,1);
--content-padding: 120px 0;
--base-color: #E0E0E0;
}


/*COMMON*/


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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-size: 100%;
	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: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
*, *:before, *:after {
    -webkit-box-sizing: border-box;
       -moz-box-sizing: border-box;
         -o-box-sizing: border-box;
        -ms-box-sizing: border-box;
            box-sizing: border-box;
}



body {
	color: var(--txt-color);
	background-color: var(--base-color);

	font-size: 16px;
	font-weight: 400;
	line-height: 160%;

	font-family: 'Noto Sans JP',YuGothic, 游ゴシック, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", メイリオ, Meiryo, "ＭＳ Ｐゴシック", sans-serif !important;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;

	font-feature-settings: "palt";

}



p{
	line-height:160%;
	letter-spacing:0px;
	margin-bottom: 10px
}
p.caption{
	font-size: 12px;
}

a,a:hover,a:visited,a:active{
	color: var(--txt-color);
}
img{
  vertical-align:bottom;
}

h1 {
	margin-bottom: 40px;
}

.center {
	text-align: center !important;
}
.left {
	text-align: left !important;
}
.right {
	text-align: right !important;
}


#opening{
	opacity: 1;
	position: fixed;
	background: rgba(255,255,255,1);
	width:100vw;
	height: 100vh;
	pointer-events: none;
	z-index: 9999;
	top: 0;
	left: 0;
	animation: openanime .5s ease-out 1s 1 normal forwards;
}


#opening .logo{
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);	
	z-index: 9999;

	opacity: 1;
	
	animation: openlogo .8s ease-out 0 1 normal forwards;
}


#opening .logo img{
	height: auto;
	width:300px;
}


@keyframes openanime {
	0% {
		opacity: 1;
	}

	100% {
		opacity: 0;
	}
}
@keyframes openlogo {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}







header{
	display: flex;
	padding: 50px 0 50px;
	
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 10;
	
	transition: .3s all ease-in-out;
	background: #fff;
}
.scrollOn header{
	padding: 20px 0 20px;
	background: rgba(255,255,255,1);
}

header article{
	width:100%;
	min-width: 1080px;
	padding: 0 50px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
	align-items:flex-end;
	justify-content: flex-start;
}

header #hlogo{
	transition: .3s all ease-in-out;
	opacity: 1;
}
header #hlogo a{
	font-size: 24px;
	color: var(--txt-color);
	text-decoration: none;
	font-weight: 500;
}







#panel{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-start;
}
#panel-btn,
#panelBg{
	display: none;
}
#panel ul#gnavi{
	position: relative;
	z-index: 1001;
	margin:0 auto;
	padding: 0 0 0 50px ;
	display: flex;
	justify-content:flex-start;
	flex-wrap: wrap;
	align-items:center;
}
#panel ul#gnavi li{
	margin: 0 36px 0 0;
	transition: all .2s ease-in-out .1s;
	text-align: right;
	opacity: 1;
	vertical-align: top;
}
#panel ul#gnavi li a{
	text-decoration: none;
	color: #444;
	display: block;
	font-size: 16px;
	
	vertical-align: top;
	transition: all  ease-in-out .2s;
	position: relative;
	cursor: pointer;

	background: url("../../images/head/menu_arrow.png") no-repeat 0 0;
	background-size: 20px 19px;
	padding: 0 0 8px 24px;
	line-height: 19px;
}
#panel ul#gnavi li.homemenu a{
	background: url("../../images/head/menu_home.png") no-repeat 0 0;
	background-size: 20px 19px;
	padding: 0 0 8px 24px;
	line-height: 19px;
}
#panel ul#gnavi li a.active{
	border-bottom: 5px var(--point-color-blue) solid;
}



ul#gnaviR{
	position: absolute;
	top: 50px;
	right: 50px;
	z-index: 1001;
	margin:0 auto;
	padding: 0 0 0 0 ;
	display: flex;
	justify-content:flex-end;
	flex-wrap: wrap;
	flex: 1;
	align-items:center;
}
ul#gnaviR li{
	margin: 0 40px 0 0;
	transition: all .2s ease-in-out .1s;
	text-align: right;
	opacity: 1;
	vertical-align: top;
	line-height: 100%;	
	font-size: 14px;
}
ul#gnaviR li:nth-last-of-type(1){
	margin: 0 0 0 0;
}
ul#gnaviR li a{
	text-decoration: none;
	color: #444;
	display: inline-block;
	padding: 0 0 8px 24px;
	font-size: 14px;
	line-height: 100%;	
	
	vertical-align: top;
	transition: all  ease-in-out .2s;
	position: relative;
	cursor: pointer;
}
ul#gnaviR li.mUser a{
	background: url("../../images/head/menu_user.png") no-repeat 0 0;
	background-size: 20px 19px;
}
ul#gnaviR li.mLogout a{
	background: url("../../images/head/menu_logout.png") no-repeat 0 0;
	background-size: 20px 19px;
}




ul#gnaviR li.hContact a{
	background: url("../../images/h_icon_contact.svg") no-repeat right 0 top ;
	background-size: 18px 18px;
	padding: 2px 25px 2px 0;
}


#panel ul li a:hover{
	opacity: .8;
}






/*footer*/
footer{

	padding: 30px 0 30px;
	text-align: center;
	position: relative;
	letter-spacing: .1em;
	font-size: 10px;
	display: none;
}




/*コンテンツ*/

#wrap{

	margin: 132px 0 0 0;
	width: 100%;
	padding-top: 30px;
	min-height: calc(100vh - 214px);
	position: relative;
	overflow: hidden;
	background-color: var(--base-color);
}






/*ログイン*/


.loginBox{
	display: block;

	width: 100%;
	height: calc(100vh - 214px);
	
	position: relative;
}
.loginBox section{
	
	padding: 40px;
	position: absolute;
	
	top: 50%;
	left: 50%;
	
	transform: translate(-50%,-50%);
	background: #fff;
	
	border-radius: 20px;
}



.fInputBlock{
	width: 320px;
	margin-bottom: 30px;
}
.fInputBlock p{
	font-size: 18px;
	font-weight: 500;
	margin-bottom: 10px;
}
.fInputBlock p.txterror{
	color: var(--point-color-red);
	font-size: 14px;
	font-weight: 500;
	margin-bottom: 10px;
}


.fInput input[type="text"],.fInput input[type="password"]{
	padding: 15px 10px;
	border: 1px solid #BCBCBC;
	width: 100%;
	font-size: 16px;
}

.fSubmitBlock{
	margin-top: 50px;
	margin-bottom: 10px;
}
.fSubmit input[type="submit"]{
	padding: 15px 10px;
	width: 100%;
	background: var(--point-color-blue);
	color: #fff;
	border: none;
	font-size: 16px;
}

.fTxtLink{
	font-size: 14px;
}
.fTxtLink a{
	color: var(--point-color-blue);
	text-decoration: none;
	display: inline-block;
	padding: 0 0 0 20px;
	position: relative;
}
.fTxtLink a::before{
	content: "";
	position: absolute;
	top: 50%;
	left: 0;
	width:8px;
	height: 8px;
	transform: rotate(45deg) translateY(-50%);
	border-top: 1px solid var(--point-color-blue);
	border-right: 1px solid var(--point-color-blue);
}


.fTxt{
	font-size: 16px;
	padding-bottom: 15px;
	margin-bottom: 10px;
	text-align: center;
	border-bottom: 1px solid #ddd;
}




/*ホーム*/


.homeBox{
	display: block;

	width: 100%;
	
	position: relative;
}
.homeBox section{
	
	width: 90%;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 20px;
}

.homeBox section h2{
	font-size: 24px;
	margin-bottom: 40px;
	padding: 0 0 0 30px;
	line-height: 100%;
}
.homeBox section h2.newsicon{
	background: url("../../images/head/news_icon.png") no-repeat 0 6px;
	background-size: 20px auto;
}
.homeBox section h2.scheicon{
	background: url("../../images/head/sche_icon.png") no-repeat 0 6px;
	background-size: 20px auto;
}


.newsBlock{
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between;
	width: 100%;
	border-top: 1px solid #ddd;
}
.newsBlock dt{
	width:16%;
	border-bottom: 1px solid #ddd;
	padding: 20px 20px 20px 0;
	font-weight: 500;
}
.newsBlock dd{
	width:84%;
	border-bottom: 1px solid #ddd;
	padding: 20px 0;
}
.newsMore{
	text-align: center;
	margin-top: 30px;
}
.newsMore a{
	display: inline-block;
	background: var(--point-color-blue);
	padding: 10px 20px 12px 20px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	line-height: 100%;
	border-radius: 5px;
}



.pager{
	padding: 30px 0 0 0
}
.pagination {
  display: flex;
	justify-content: center;
	
}



.pagination a {
  color: black;
  float: left;
  padding: 8px 16px;
  text-decoration: none;
  transition: background-color .3s;
  border: 1px solid #ddd;
}

.pagination a.active {
  background-color: var(--point-color-blue);
  color: white;
  border: 1px solid var(--point-color-blue);
}

.pagination a:hover:not(.active) {background-color: #ddd;}



.accordion-click{
	position: relative;
}

.accordion-click::after{
	content: "";
	position: absolute;
	border-bottom: 2px solid #ccc;
	border-right: 2px solid #ccc;
	transform: rotate(45deg);
	top: 4px;
	right: 20px;
	width: 14px;
	height: 14px;
	transition: all .3s ease-in-out;
}
.accordion-click.open::after{
	transform: rotate(225deg);
}

.accordion-content{
	padding-top: 20px;
	margin-top: 20px;
	border-top: dotted 1px #ccc;
}


/*コンテンツ*/

.bread{
	width: 90%;
	margin: 0 auto;
	padding: 25px 0;
	display: flex;
}

.bread li{
	font-size: 14px;
}

.bread li a{
	display: inline-block;
	color: var(--point-color-blue);
	
	padding: 0 40px 0 0;
	position: relative;
}
.bread li a::before{
	content: "";
	position: absolute;
	top: 50%;
	right: 20px;
	width:8px;
	height: 8px;
	transform: rotate(45deg) translateY(-50%);
	border-top: 2px solid #888;
	border-right: 2px solid #888;
}





.contBox{
	display: block;

	width: 100%;
	min-height: calc(100vh - 214px);
	
	position: relative;
	
	padding-bottom: 30px;
}
.contBox section{
	
	width: 90%;
	
	margin: 0 auto;
	
	padding: 40px;
	
	background: #fff;
	
	border-radius: 20px;
}



#wrap.corpapply .contBox section{
	width: 1070px;
}





.contBox section h2{
	font-size: 24px;
	margin-bottom: 40px;
	padding: 0 0 0 0;
	line-height: 100%;
}


.titleArea{
	display: flex;
	justify-content: space-between;
}
.titleArea .titleAreaOpt{
	display: flex;
	justify-content: space-between;
	width: 100%;
	flex-wrap: wrap;
}


.titleArea .titleSelect{
	width: 50%;
}
.titleArea .titleSelect .selectCont,
.titleArea .titleSelect select{
	width: 70px;
}
.titleArea .titleAreaOth{
	width: 38%;
	text-align: left;
}
.titleArea .titleAreaOth .check1,
.titleArea .titleAreaOth .btn1{
	display: inline-block;
	margin-left: 15px;
}
.titleArea .titleAreaOth .btn1 input[type=submit]{
	display: inline-block;
	background: var(--point-color-blue);
	background-size: 16px auto;
	padding: 10px 14px 10px 14px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	line-height: 100%;
	border-radius: 5px;
	border: none;
}
.titleArea .titleAreaBtn{
	width: 12%;
	text-align: right;
}




.contBox .listChart{
	
}
.contBox .listChart table{
	width: 100%;
	border-top: 1px solid #C3C3C3;
}

.contBox .listChart table th{
	padding: 15px 6px;
	background: #EAEAEA;
	text-align: center;
	font-size: 14px;
}

.contBox .listChart table td{
	padding: 20px 6px;
	text-align: center;
	border-bottom: 1px solid #C3C3C3;
	font-size: 14px;
}
.contBox .listChart table td a{
	color: var(--point-color-blue);
}
.contBox .listChart table td.totalTxt{
	font-weight: bold;
}




.monthlyListTitle{
	display: none;
}
.monthlyTotal{
	text-align: right;
	padding: 40px 0 0 0;
}
.monthlyTotal p{
	display: inline-block;
	border-bottom: 5px solid var(--point-color-blue);
	padding-bottom: 10px;
}
.monthlyTotal p span{
	color: var(--point-color-blue);
	font-size: 24px;
	font-weight: bold;
	display: inline-block;
	padding-left: 5px;
}

.analysisOutputDate {
	display: none;
}

.titleSelect{
	vertical-align: middle;
}

.selectCont {
	margin: 0 5px 0 10px;
	position: relative;
	width: 100px;
	height: 36px;

	display: inline-block;
}
select {
	-webkit-appearance: none;
	appearance: none; /* デフォルトの矢印を非表示 */
	border-radius: 5px;
	height: 36px;
	padding-left: 10px;
	width: 100px;
	font-size: 14px;
	border: 1px solid #ADADAD;
}
select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}
/* セレクトボックスの矢印デザイン変更 */
.selectCont::before {
	border-bottom: 4.5px solid #ADADAD;
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	content: "";
	position: absolute;
	right: 9px;
	top: 50%;
	transform: translateY(-4px);
	width: 0;
}
.selectCont::after {
	border-left: 4px solid transparent;
	border-right: 4px solid transparent;
	border-top: 4.5px solid #ADADAD;
	content: "";
	position: absolute;
	right: 9px;
	top: 50%;
	transform: translateY(4px);
	width: 0;
}


.pdfBtn{
	display: inline-block;
	margin-left: 20px;
}

.btnArea{
	display: block;
	margin: 50px 0 20px;
	text-align: center;
}

.pdfBtn a,.btnArea a{
	display: inline-block;
	background: var(--point-color-red) url("../../images/head/icon_pdf.png") no-repeat 10px 10px;
	background-size: 16px auto;
	padding: 10px 10px 10px 34px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	line-height: 100%;
	border-radius: 5px;
}
.btnArea a{
	background: var(--point-color-red) url("../../images/head/icon_pdf.png") no-repeat 35px 20px;
	background-size: 16px auto;
	padding: 20px 40px 20px 60px;
	font-weight: bold;
}



.btnArea2{
	display: block;
	margin: 50px 0 20px;
	text-align: center;
}

.btnArea2 a{
	display: inline-block;
	background: var(--point-color-blue);
	padding: 20px 40px 20px 40px;
	color: #fff;
	font-size: 16px;
	text-decoration: none;
	line-height: 100%;
	border-radius: 5px;
	font-weight: bold;
}





.contBox .paymentDetail .paymentNameTxt{
	margin-bottom: 20px;
	font-size: 16px;
}


.contBox .paymentDetail table{
	width: 100%;
	border-left: 1px solid #C3C3C3;
	border-top: 1px solid #C3C3C3;
}

.contBox .paymentDetail table th{
	padding: 20px 20px;
	background: #EAEAEA;
	text-align: left;
	border-right: 1px solid #C3C3C3;
	border-bottom: 1px solid #C3C3C3;
}

.contBox .paymentDetail table td{
	padding: 20px 20px;
	text-align: right;
	border-right: 1px solid #C3C3C3;
	border-bottom: 1px solid #C3C3C3;
}
.contBox .paymentDetail table td.chartTxt{
	text-align: left;
}
.contBox .paymentDetail table td a{
	color: var(--point-color-blue);
}

.toralPrice span{
	font-size: 24px;
}



/*スケジュール*/



.contBox .listChart table th.scheduleTitle{
	padding: 15px 6px;
	background: #F4F4F4;
	text-align: center;
	font-size: 14px;
	border-bottom: 1px solid #C3C3C3;
}
.contBox .listChart table th.scheduleDate{
	width: 15%;
	padding: 15px 6px;
	background: #F8F8F8;
	text-align: center;
	font-size: 14px;
	border-bottom: 1px solid #C3C3C3;
}
.contBox .listChart table td.scheKibo{
	width: 15%;
}
.contBox .listChart table td.scheStaff{
	width: 35%;
	text-align: left;
}
.contBox .listChart table td.scheTxt{
	width: 35%;
}
.contBox .listChart table td.scheTxt input[type=text]{
	width: 100%;
	border: 1px solid #999;
	padding: 6px;
	color: #333;
	border-radius: 3px;
}

.contBox .listChart table tr.dateSat th{
	background: #D2E2FE;
}
.contBox .listChart table tr.dateSat td{
	background: #E6EFFF;
}
.contBox .listChart table tr.dateSun th{
	background: #FFD8D8;
}
.contBox .listChart table tr.dateSun td{
	background: #FFE6E6;
}


section h2.montTitle{
	font-size: 18px;
	margin-bottom: 20px;
	padding:10px 0 0 0;
	line-height: 100%;
}

.scheKibo select{
	-webkit-appearance: auto;
	appearance: auto; /* デフォルトの矢印を非表示 */
	border-radius: 5px;
	height: 36px;
	padding-left: 10px;
	width: 80px;
	font-size: 14px;
	border: 1px solid #ADADAD;
}

.scheStaff .modal-content p{
	padding: 20px;
	white-space: normal;
}
.scheStaff .modal-open{
    background: transparent;
    color: #666;
    font-weight: bold;
    border: none;
    border-radius: 0;
    padding: 0;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	border-bottom: 1px solid var(--point-color-blue);
	display: inline-block;
}
.scheStaff .modal-content{
	border-radius: 10px;
	padding: 0;
}

/*スケジュール*/


.formChart{
	width: 100%;
	margin-bottom: 50px;
}
.formChart table{
	width: 100%;
	border-top: 1px solid #C3C3C3;
}

.formChart .frmTitle1{
	padding: 15px 15px;
	font-size: 14px;
	border-bottom: 1px solid #C3C3C3;
	background: #F5F5F5;
	width: 22%;
}
.formChart .frmTitle2{
	background: #FAFAFA;
}
.formChart .frmTitle1.hissu{
	
}

.formChart .frmBody1{
	padding: 15px 15px;
	font-size: 14px;
	border-bottom: 1px solid #C3C3C3;
	width: 78%;
}
.formChart .frmBody1{
	border-bottom: 1px solid #C3C3C3;
}


.formChart .frmBody1.hissu{
	
}


.formChart .frmBody1 input[type=radio]{
	margin-right: 5px;
}



.applyBtn {
	text-align: center;
}
.applyBtn button[type=submit]{
	background: #0086FF;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	padding: 6px 12px;
	display: inline-block;
	cursor: pointer;	
    line-height: 1.4em;
}


.row{
	align-items: center;
}


.corpComplete{
	font-size: 24px;
	color: #D67C00;
	padding: 100px 0;
	text-align: center;
}




.sp{
	display: none;
}
.pc{
	display: block;
}

.bgSubmit {
	text-align: center;
}
.bgSubmit input[type=submit]{
	background: #0086FF;
	color: #fff;
	font-weight: bold;
	border: none;
	border-radius: 5px;
	padding: 4px 8px;
	display: inline-block;
	cursor: pointer;	
	line-height: 1.4em;
	font-size: 11px;
}

.guaranteeTotalCenter {
	text-align: center !important;
}

#salesAnalysisTable1 {
	table-layout: fixed;
	width: 25%;
	margin-top: 20px;
}
#salesAnalysisTable2 {
	table-layout: fixed;
	width: 40%;
	margin-top: 20px;
}
.salesAnalysisTable2Th1 {
	width: 60%;
}
.salesAnalysisTable2Th2 {
	width: 40%;
}

#salesAnalysisTable3 {
	table-layout: fixed;
	width: 35%;
	margin-top: 20px;
}
#salesAnalysisTable4 {
	table-layout: fixed;
	width: 50%;
	margin-top: 20px;
}
.salesAnalysisTable4Th1 {
	width: 65%;
}
.salesAnalysisTable4Th2 {
	width: 5%;
}
.salesAnalysisTable4Th3 {
	width: 30%;
}
#salesAnalysisTable5 {
	table-layout: fixed;
	width: 80%;
	margin-top: 20px;
}

.guaranteeTotalCenter {
	text-align: center;
}

@media screen and (max-width: 768px) {
	.pc{
		display: none;
	}
	.sp{
		display: block;
	}

	
	body {
		font-size: 14px;
	}


	header{
		display: block;
		padding: 10px 20px 10px;

		position: fixed;
		top: 0;
		left: 0;
		width: 100%;
		z-index: 10;

		transition: .3s all ease-in-out;
	}
	.scrollOn header{
		padding: 24px 20px 24px;
		background: rgba(255,255,255,1);
	}
	header article{
		width:100%;
		min-width: inherit;
		padding: 0 0 0;
		margin: 0 auto;
		display: block;
	}

	
	header #hlogo{
		width:250px;
		z-index: 1;
		transition: .3s all ease-in-out;
	}
	header #hlogo a{
		font-size: 16px;
	}


	/*ハンバーガーメニュー*/
	#panel-btn {
		display: inline-block;
		position: absolute;
		width:40px;
		height: 32px;
		margin: 0 0 0;
		top:10px;
		right:20px;
		cursor:pointer;
		z-index:9999;

	}
	#panel-btn::after{
		content: "メニュー";
		font-size: 6px;
		display: block;
		width: 40px;
		text-align: center;
		position: absolute;
		bottom: -17px;
		left: 0;
	}


	#panel-btn-icon {
		display: block;
		position: absolute;
		top: 50%;
		left: 50%;
		width: 32px;
		height: 4px;
		margin: 0 0 0 -16px;
		background: var(--point-color-blue);
		overflow: visible;
	}
	#panel-btn-icon:before, #panel-btn-icon:after {
		display: block;
		content: "";
		position: absolute;
		top: 50%;
		left: 50%;
		width: 32px;
		height: 4px;
		margin-left: -16px;
		background: var(--point-color-blue);
		transition: .3s;
	}
	#panel-btn-icon:before {
		margin-top: -11px;
	}
	#panel-btn-icon:after {
		margin-top: 7px;
	}

	#panel-btn .close {
		transform: rotate(-360deg);
		-webkit-transform: rotate(-360deg);
		background: transparent;
	}
	#panel-btn .close:before, #panel-btn .close:after {
		margin-top: -1px;
		background: var(--point-color-blue);
	}
	#panel-btn .close:before {
		transform: rotate(-45deg);
		-webkit-transform: rotate(-45deg);
	}
	#panel-btn .close:after {
		transform: rotate(-135deg);
		-webkit-transform: rotate(-135deg);
	}

	#panel{
		position: fixed;
		top:0;
		left: 30%;
		z-index: 1020;
		width: 70%;
		height: 100vh;
		transition: all .5s ease-in-out;
		opacity: 0;
		pointer-events: none;
		background: #ffffff;
		display: block;
	}
	#panel.openmenu{
		left: 30%;
		opacity: 1;
		pointer-events:visible;
	}
	#panelBg{
		position: absolute;
		top:0;
		left: 0;
		width:100%;
		height: 100vh;
		background: rgba(0,0,0,.4);	
		box-shadow: 0 0 40px rgba(0,0,0,.5);
		z-index: 100;
		display: none;
	}



	#panel ul#gnavi{
		position: relative;
		z-index: 1001;
		margin:0 auto;
		padding: 80px 30px 0 30px ;
		display: block;
		justify-content:flex-start;
		flex-wrap: wrap;
		align-items:center;
	}
	#panel ul#gnavi li{
		margin: 0 0 30px 0;
		transition: all .2s ease-in-out .1s;
		text-align: left;
		opacity: 1;
		vertical-align: top;
	}
	#panel ul#gnavi li a{
		text-decoration: none;
		color: #444;
		display: block;
		font-size: 16px;

		vertical-align: top;
		transition: all  ease-in-out .2s;
		position: relative;
		cursor: pointer;

		background: url("../../images/head/menu_arrow.png") no-repeat 0 0;
		background-size: 20px 19px;
		padding: 0 0 8px 24px;
		line-height: 19px;
	}
	#panel ul#gnavi li.homemenu a{
		background: url("../../images/head/menu_home.png") no-repeat 0 0;
		background-size: 20px 19px;
		padding: 0 0 8px 24px;
		line-height: 19px;
	}



	ul#gnaviR{
		position: relative;
		z-index: 1001;
		margin:0 auto;
		padding: 4px 0 0 0 ;
		justify-content:flex-start;
		flex-wrap: wrap;
		align-items:center;
		
		top: inherit;
		right: inherit;
	}
	ul#gnaviR li{
		margin: 0 20px 0 0;
		transition: all .2s ease-in-out .1s;
		text-align: right;
		opacity: 1;
		vertical-align: top;
		line-height: 100%;	
		font-size: 12px;
	}
	ul#gnaviR li:nth-last-of-type(1){
		margin: 0 0 0 0;
	}
	ul#gnaviR li a{
		text-decoration: none;
		color: #444;
		display: inline-block;
		padding: 0 0 4px 18px;
		font-size: 12px;
		line-height: 100%;	

		vertical-align: top;
		transition: all  ease-in-out .2s;
		position: relative;
		cursor: pointer;
	}
	ul#gnaviR li.mUser a{
		background: url("../../images/head/menu_user.png") no-repeat 0 0;
		background-size: 15px 15px;
	}
	ul#gnaviR li.mLogout a{
		background: url("../../images/head/menu_logout.png") no-repeat 0 0;
		background-size: 15px 15px;
	}




	ul#gnaviR li.hContact a{
		background: url("../../images/h_icon_contact.svg") no-repeat right 0 top ;
		background-size: 18px 18px;
		padding: 2px 25px 2px 0;
	}


	#panel ul li a:hover{
		opacity: .8;
	}








	/*footer*/
	footer{

		padding: 30px 0 30px;
		text-align: center;
		position: relative;
		letter-spacing: .1em;
		display: none;
	}




	/*コンテンツ*/

	#wrap{

		margin: 74px 0 0 0;
		padding-top: 0;
		width: 100%;
		min-height: calc(100vh - 150px);
		position: relative;
		overflow: hidden;
		background-color: var(--base-color);
	}






	/*ログイン*/


	.loginBox{
		display: block;

		width: 100%;
		height: calc(100vh - 150px);

		position: relative;
	}
	.loginBox section{

		padding: 20px;
		position: absolute;
		
		width:80%;

		top: 50%;
		left: 10%;

		transform: translate(0,-50%);
		background: #fff;

		border-radius: 20px;
	}



	.fInputBlock{
		width: 100%;
		margin-bottom: 30px;
	}
	.fInputBlock p{
		font-size: 14px;
		font-weight: 500;
		margin-bottom: 10px;
	}
	.fInputBlock p.txterror{
		color: var(--point-color-red);
		font-size: 12px;
		font-weight: 500;
		margin-bottom: 10px;
	}

	.fInput input[type="text"],.fInput input[type="password"]{
		padding: 8px 7px;
		border: 1px solid #BCBCBC;
		width: 100%;
		font-size: 14px;
	}

	.fSubmitBlock{
		margin-top: 30px;
		margin-bottom: 5px;
	}
	.fSubmit input[type="submit"]{
		padding: 8px 7px;
		width: 100%;
		background: var(--point-color-blue);
		color: #fff;
		border: none;
		font-size: 14px;
	}

	.fTxtLink{
		font-size: 12px;
	}
	.fTxtLink a{
		color: var(--point-color-blue);
		text-decoration: none;
		display: inline-block;
		padding: 0 0 0 20px;
		position: relative;
	}
	.fTxtLink a::before{
		content: "";
		position: absolute;
		top: 50%;
		left: 0;
		width:8px;
		height: 8px;
		transform: rotate(45deg) translateY(-50%);
		border-top: 1px solid var(--point-color-blue);
		border-right: 1px solid var(--point-color-blue);
	}



	.fTxt{
		font-size: 14px;
		padding-bottom: 15px;
		border-bottom: 1px solid #ddd;
	}


	/*ホーム*/


	.homeBox{
		display: block;

		width: 100%;
		margin: 0 auto 30px;

		padding: 0 0;
		position: relative;
	}
	.homeBox section{

		width: 90%;

		margin: 0 auto 30px;

		padding: 20px 15px;

		background: #fff;

		border-radius: 20px;
	}


	
	.homeBox section h2{
		font-size: 18px;
		margin-bottom: 20px;
		padding: 0 0 0 25px;
		line-height: 100%;
	}
	.homeBox section h2.newsicon{
		background: url("../../images/head/news_icon.png") no-repeat 0 4px;
		background-size: 17px auto;
	}
	.homeBox section h2.scheicon{
		background: url("../../images/head/sche_icon.png") no-repeat 0 4px;
		background-size: 17px auto;
	}


	.newsBlock{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		width: 100%;
		border-top: 1px solid #ddd;
	}
	.newsBlock dt{
		width:100%;
		border-bottom: none;
		padding: 15px 0 0;
		font-weight: 500;
		font-size: 12px;
	}
	.newsBlock dd{
		width:100%;
		border-bottom: 1px solid #ddd;
		padding: 5px 0 15px;
		font-size: 12px;
	}



	.accordion-click{
		position: relative;
	}

	.accordion-click::after{
		content: "";
		position: absolute;
		border-bottom: 2px solid #ccc;
		border-right: 2px solid #ccc;
		transform: rotate(45deg);
		top: 2px;
		right: 10px;
		width: 10px;
		height: 10px;
		transition: all .3s ease-in-out;
	}
	.accordion-click.open::after{
		transform: rotate(225deg);
	}

	.accordion-content{
		padding-top: 10px;
		margin-top: 10px;
		border-top: dotted 1px #ccc;
	}


	/*コンテンツ*/

	.bread{
		width: 90%;
		margin: 0 auto;
		padding: 15px 0;
		display: flex;
	}

	.bread li{
		font-size: 12px;
	}

	.bread li a{
		display: inline-block;
		color: var(--point-color-blue);

		padding: 0 40px 0 0;
		position: relative;
	}
	.bread li a::before{
		content: "";
		position: absolute;
		top: 50%;
		right: 20px;
		width:8px;
		height: 8px;
		transform: rotate(45deg) translateY(-50%);
		border-top: 2px solid #888;
		border-right: 2px solid #888;
	}





	.contBox{
		display: block;

		width: 100%;
		min-height: calc(100vh - 214px);

		position: relative;
	}
	.contBox section{

		width: 90%;

		margin: 0 auto 30px;

		padding: 20px 15px;

		background: #fff;

		border-radius: 20px;
	}

	#wrap.corpapply .contBox section{
		width: 90%;

	}



	.contBox section h2{
		font-size: 18px;
		margin-bottom: 20px;
		padding: 0 0 0 0;
		line-height: 100%;
	}


	.titleArea{
		display: block;
		justify-content: space-between;
	}

	.titleArea .titleAreaOpt{
		display: block;
		justify-content: space-between;
		width: 100%;
		flex-wrap: wrap;
	}


	.titleArea .titleSelect{
		width: 100%;
		font-size: 11px;
		margin-bottom: 10px;
	}
	.titleArea .titleSelect .selectCont,
	.titleArea .titleSelect select{
		width: 48px;
	}
	.titleArea .titleAreaOth{
		width: 100%;
		text-align: right;
		margin-bottom: 10px;
		font-size: 11px;
		display: flex;
		justify-content: space-between;
		align-items: center;
	}
	.titleArea .titleAreaOth .check1{
		display: block;
		margin-left: 0;
		text-align: left;
		height: 100%;
		align-items: center;
	}
	.titleArea .titleAreaOth .check1 input[type=checkbox]{
		margin: 0 4px 0 7px;
	}
	.titleArea .titleAreaOth .btn1{
		display: block;
		margin-left: 15px;
		text-align: right;
	}
	.titleArea .titleAreaOth .btn1 input[type=submit]{
		display: inline-block;
		background: var(--point-color-blue);
		background-size: 14px auto;
		padding: 10px 13px 10px 13px;
		color: #fff;
		font-size: 12px;
		text-decoration: none;
		line-height: 100%;
		border-radius: 5px;
	}
	.titleArea .titleAreaBtn{
		width: 100%;
		text-align: right;
		padding-top: 10px;
		border-top: 1px solid #ddd;
	}



	
	.contBox .listChart{
		overflow-x: scroll;
	}
	.contBox .listChart table{
		width: 100%;
		white-space: nowrap;
		margin-bottom: 20px
	}



	
	.contBox .listChart table th{
		padding: 8px 8px;
		background: #EAEAEA;
		text-align: left;
		vertical-align: middle;
		font-size: 11px;
		line-height: 140%;
	}

	.contBox .listChart table td{
		padding: 8px 8px;
		text-align: left;
		border-bottom: 1px solid #C3C3C3;
		vertical-align: middle;
		font-size: 11px;
		line-height: 140%;
	}
	.contBox .listChart table td a{
		color: var(--point-color-blue);
	}



	.monthlyTotal{
		text-align: right;
		padding: 20px 0 0 0;
	}
	.monthlyTotal p{
		display: inline-block;
		border-bottom: 5px solid var(--point-color-blue);
		padding-bottom: 5px;
		font-size: 12px;
	}
	.monthlyTotal p span{
		color: var(--point-color-blue);
		font-size: 18px;
		font-weight: bold;
		display: inline-block;
		padding-left: 5px;
	}



	.titleSelect{
		vertical-align: middle;
		margin-bottom: 20px;
		text-align: center;
	}

	.selectCont {
		margin: 0 5px 0 5px;
		position: relative;
		width: 55px;
		height: 28px;

		display: inline-block;
	}
	select {
		-webkit-appearance: none;
		appearance: none; /* デフォルトの矢印を非表示 */
		border-radius: 5px;
		height: 28px;
		padding-left: 5px;
		width: 55px;
		font-size: 11px;
		border: 1px solid #ADADAD;
	}
	select::-ms-expand {
	  display: none; /* デフォルトの矢印を非表示(IE用) */
	}
	/* セレクトボックスの矢印デザイン変更 */
	.selectCont::before {
		border-bottom: 3.5px solid #ADADAD;
		border-left: 3px solid transparent;
		border-right: 3px solid transparent;
		content: "";
		position: absolute;
		right: 5px;
		top: 50%;
		transform: translateY(-3px);
		width: 0;
	}
	.selectCont::after {
		border-left: 3px solid transparent;
		border-right: 3px solid transparent;
		border-top: 3.5px solid #ADADAD;
		content: "";
		position: absolute;
		right:5px;
		top: 50%;
		transform: translateY(3px);
		width: 0;
	}


	.pdfBtn{
		display: inline-block;
		margin-left: 20px;
	}

	.btnArea{
		display: block;
		margin: 20px 0 10px;
		text-align: center;
	}

	.pdfBtn a,.btnArea a{
		display: inline-block;
		background: var(--point-color-red) url("../../images/head/icon_pdf.png") no-repeat 10px 8px;
		background-size: 14px auto;
		padding: 10px 10px 10px 34px;
		color: #fff;
		font-size: 12px;
		text-decoration: none;
		line-height: 100%;
		border-radius: 5px;
	}
	.btnArea a{
		background: var(--point-color-red) url("../../images/head/icon_pdf.png") no-repeat 10px 8px;
		background-size: 14px auto;
		padding: 10px 10px 10px 34px;
		font-weight: bold;
	}


	.btnArea2{
		display: block;
		margin: 20px 0 10px;
		text-align: center;
	}

	.btnArea2 a{
		display: inline-block;
		background: var(--point-color-blue);
		background-size: 14px auto;
		padding: 10px 20px 10px 20px;
		color: #fff;
		font-size: 12px;
		text-decoration: none;
		line-height: 100%;
		border-radius: 5px;
	}





	.contBox .paymentDetail table{
		width: 100%;
		border-left: 1px solid #C3C3C3;
		border-top: 1px solid #C3C3C3;
	}

	.contBox .paymentDetail table th{
		padding: 8px 8px;
		background: #EAEAEA;
		text-align: left;
		border-right: 1px solid #C3C3C3;
		border-bottom: 1px solid #C3C3C3;
		font-size: 11px;
		vertical-align: middle;
	}

	.contBox .paymentDetail table td{
		padding: 8px 8px;
		text-align: right;
		border-right: 1px solid #C3C3C3;
		border-bottom: 1px solid #C3C3C3;
		font-size: 11px;
		vertical-align: middle;
	}
	.contBox .paymentDetail table td a{
		color: var(--point-color-blue);
	}

	.toralPrice span{
		font-size: 24px;
	}






	/*スケジュール*/



	.contBox .listChart table th.scheduleTitle{
		padding: 10px 4px;
		background: #F4F4F4;
		text-align: center;
		font-size: 11px;
		border-bottom: 1px solid #C3C3C3;
	}
	.contBox .listChart table th.scheduleDate{
		width: 15%;
		padding: 10px 4px;
		background: #F8F8F8;
		text-align: center;
		font-size: 11px;
		border-bottom: 1px solid #C3C3C3;
	}
	.contBox .listChart table td.scheKibo{
		padding: 10px 4px;
		width: 15%;
		text-align: center;
	}
	.contBox .listChart table td.scheStaff{
		padding: 10px 4px;
		width: 30%;
		text-align: left;
	}
	.contBox .listChart table td.scheTxt{
		padding: 10px 4px;
		width: 40%;
	}
	.contBox .listChart table td.scheTxt input[type=text]{
		width: 100%;
		border: 1px solid #999;
		padding: 3px 4px;
		color: #333;
		border-radius: 3px;
		font-size: 11px;
	}

	.contBox .listChart table tr.dateSat th{
		background: #D2E2FE;
	}
	.contBox .listChart table tr.dateSat td{
		background: #E6EFFF;
	}
	.contBox .listChart table tr.dateSun th{
		background: #FFD8D8;
	}
	.contBox .listChart table tr.dateSun td{
		background: #FFE6E6;
	}




	.applyBtn {
		text-align: center;
	}
	.applyBtn button[type=submit]{
		background: #0086FF;
		color: #fff;
		font-weight: bold;
		border: none;
		border-radius: 5px;
		padding: 4px 8px;
		display: inline-block;
		cursor: pointer;	
		line-height: 1.4em;
		font-size: 11px;
	}


	section h2.montTitle{
		font-size: 14px;
		margin-bottom: 10px;
		padding:5px 0 0 0;
		line-height: 100%;
	}


	/*スケジュール*/


	.formChart{
		width: 100%;
		margin-bottom: 50px;
	}
	.formChart table{
		width: 100%;
		border-top: 1px solid #C3C3C3;
	}

	.formChart .frmTitle1{
		padding: 10px 5px;
		font-size: 11px;
		border-bottom: 1px solid #C3C3C3;
		background: #F5F5F5;
		width: 20%;
	}
	.formChart .frmTitle2{
		background: #FAFAFA;
	}
	.formChart .frmTitle1.hissu{

	}

	.formChart .frmBody1{
		padding: 10px 5px;
		font-size: 11px;
		border-bottom: 1px solid #C3C3C3;
		width: 80%;
		vertical-align: middle;
	}
	.formChart .frmBody1{
		border-bottom: 1px solid #C3C3C3;
	}


	.formChart .frmBody1.hissu{

	}


	.formChart .frmBody1 input[type=radio]{
		margin-right: 5px;
	}



	.applyBtn {
		text-align: center;
	}
	.applyBtn button[type=submit]{
		background: #0086FF;
		color: #fff;
		font-weight: bold;
		border: none;
		border-radius: 5px;
		padding: 6px 12px;
		display: inline-block;
		cursor: pointer;	
		line-height: 1.4em;
	}


	.row{
		margin-left: 0 !important;
		margin-right: 0 !important;
		align-items: center;
	}
	.form-control{
		font-size: 11px !important;
		padding: 6px 3px !important;
	}

	.btn{
		font-size: 11px !important;
		padding: 6px 3px !important;
	}

	.col-md-2{
		width: 22% !important;
		padding-right: 3px !important;
		padding-left: 3px !important;
	}
	.col-md-4{
		width: 50% !important;
		padding-right: 3px !important;
		padding-left: 3px !important;
	}
	.col-md-6{
		width: 40% !important;
		padding-right: 3px !important;
		padding-left: 3px !important;

	}
	

	.corpComplete{
		font-size: 18px;
		color: #D67C00;
		padding: 60px 0;
		text-align: center;
	}
	.scheKibo select{
		-webkit-appearance: auto;
		appearance: auto; /* デフォルトの矢印を非表示 */
		border-radius: 5px;
		height: 28px;
		padding: 5px 0 5px 5px;
		width: 44px;
		font-size: 11px;
		border: 1px solid #ADADAD;
	}

	.scheStaff .modal-content p{
		padding: 15px;
	}


	.bgSubmit {
		text-align: center;
	}
	.bgSubmit input[type=submit]{
		background: #0086FF;
		color: #fff;
		font-weight: bold;
		border: none;
		border-radius: 5px;
		padding: 4px 8px;
		display: inline-block;
		cursor: pointer;	
		line-height: 1.4em;
		font-size: 11px;
	}

	#salesAnalysisTable1 {
		table-layout: fixed;
		width: 40% !important;
		margin-top: 20px;
	}
	#salesAnalysisTable2 {
		table-layout: fixed;
		margin-top: 20px;
		width: 100% !important;
	}
	.salesAnalysisTable2Th1 {
		width: 60%;
	}
	.salesAnalysisTable2Th2 {
		width: 40%;
	}
	#salesAnalysisTable3 {
		table-layout: fixed;
		width: 100% !important;
		margin-top: 20px;
	}
	.salesAnalysisTable3Th1 {
		width: 30%;
	}
	.salesAnalysisTable3Th2 {
		width: 20%;
	}
	.salesAnalysisTable3Th3 {
		width: 50%;
	}
	#salesAnalysisTable4 {
		table-layout: fixed;
		width: 100% !important;
		margin-top: 20px;
	}
	.salesAnalysisTable4Td1 {
		overflow: hidden !important;
	}
	#salesAnalysisTable5 {
		table-layout: fixed;
		width: 100% !important;
		margin-top: 20px;
	}
	.salesAnalysisTable5Th1 {
		width: 55%;
	}
	.salesAnalysisTable5Th2 {
		width: 10%;
	}
	.salesAnalysisTable5Th3 {
		width: 5%;
	}
	.salesAnalysisTable5Th4 {
		width: 30%;
	}
	.salesAnalysisTable5Td1 {
		overflow: hidden !important;
	}

}
