@charset "UTF-8";

/********************
.common
*********************/
html,body{
   height: 100%;
}
body{
	background-color:#2c5ba9;
}
.wrapper{
    min-width: auto;
	min-height: 100%;
}
.wrapper{
	overflow: hidden;
    position: relative;
    width: 100%;
    min-width: auto;
	min-height: 100%;
}

/********************
.header
*********************/

.header{
	position: fixed;
	top: 0;
	width:100%;
	box-sizing:border-box;
	padding: 0 2.5% 0px 2.5%;
	background-color:#3882cb;
	z-index: 100;
}
.header .headerInner{
	box-sizing:border-box;
	width:100%;
	margin:0 auto;
	position: relative;
	height: 50px;
}

.header .loginheadTtl {
    width: 400px;
    position: absolute;
    top: 10px;
    left: 50%;
    margin-left: -200px;
	color: #fff;
	text-align: center;
	line-height: 30px;
}

/********************
.container
*********************/

.container{
	width:100%;
	box-sizing:border-box;
	padding: 0;
}
.containerInner{
	width:100%;
	margin: 0 auto;
	box-sizing:border-box;
	padding: 2.5% 2.5%;
}
.container.onPagettl{
	padding: 20px 2.5% 80px;
}
/***containerTtlInner************/
.containerTtlInner{
	
}
.containerInner.headspace,
.containerTtlInner.headspace{
	margin-top: 50px;
}
.containerInner.footspace,
.containerTtlInner.footspace{
	margin-bottom: 60px;
}
.containerInner.foot-bsetspace,
.containerTtlInner.foot-bsetspace{
	margin-bottom: 120px;
}

/********************
.container
*********************/

/****containerを縦の中央合わせ****/

.container.centralContainer{
	padding: 20px 20px 20px;
	
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
}


/********************
.sidenavi
*********************/
.sidenavi{
	background-color: #ffffff;
}
.sidenaviInner{
	width: 100%;
}
.naviBox{
	width: 100%;
	margin-top: 50px;
	margin-bottom: 30px;
	padding-bottom: 0.25em;
}
.naviBox li{
	padding: 0.25em 0em 0.25em 1em ;
}
.naviBox li > a{
	border-radius: 4px 0 0 4px;
    display: block;
    padding: 0.25em 0.5em 0.25em 0.25em;
	position: relative;
	text-decoration: none;
}
.naviBox li > a::after{
	content: '';
	  width: 6px;
	  height: 6px;
	  border: 0;
	  border-top: solid 2px #2a71b7;
	  border-right: solid 2px #2a71b7;
	  position: absolute;
	  top: 50%;
	  right: 20px;
	  margin-top: -4px;
	  transform: rotate(45deg);
}
/**スライドメニューの枠 **/

.menu-drawer .btn {
	border: rgba(255, 255, 255, .2) solid 1px;
    border-radius: 4px;
	box-sizing: border-box;
  padding: 0;
  cursor: pointer;
  text-align: center;
  top: 4px;
  left: 4px;
}
.menu-drawer .btn::before,
.menu-drawer .btn::after {
	content: " ";
	background-image: url(/img/icon_menu_open.png);
	background-position: center center;
	background-size: 28px auto;
	background-repeat: no-repeat;
	width: 40px;
	height: 40px;
	margin: 0 auto;
}
.menu-drawer .btn::before {
	background-image: url(/img/icon_menu_open.png);
}
.menu-drawer .btn::after {
	background-image: url(/img/icon_menu_close.png);
}
.menu-drawer .other {
  background: rgba(0,0,0,0.5);
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
}
.menu-drawer .menu-content {
	border-right: solid 4px #2c5ba9;
  background-color: #2c5ba9;
  width: 90%;
  top: 0;
  left: 0;
	height: 100vh;
	overflow-y: auto;
}
.menu-drawer .btn,
.menu-drawer .menu-content,
.menu-drawer .other {
  position: fixed;
}
.menu-drawer .btn {
  z-index: 2001;
}
.menu-drawer .menu-content {
  z-index: 2000;
}
.menu-drawer .other {
  z-index: 1999;
}
.menu-drawer #chk {
  display: none;
}
.menu-drawer #chk ~ .btn::before {
  display: block;
}
.menu-drawer #chk ~ .btn::after {
  display: none;
}
.menu-drawer #chk ~ .other {
  display: none;
}
.menu-drawer #chk:checked ~ .btn::before {
  display: none;
}
.menu-drawer #chk:checked ~ .btn::after {
  display: block;
}
.menu-drawer #chk:checked ~ .other {
  display: block;
}
.menu-drawer #chk ~ .menu-content {
  transform: translate(-350%,0);
  transition: transform 0.3s ease-in-out;
}
.menu-drawer #chk:checked ~ .menu-content {
  transform: none;
}

/********************
.footer
*********************/

.footer {
	position: fixed;
	bottom: 0px;
	width: 100%;
	box-sizing:border-box;
	padding: 6px 2.5% 6px;
	background-color:#3882cb;
	z-index: 101;
	    height: 60px;
    box-sizing: border-box;
}

.footerInner {
    box-sizing:border-box;
	width:100%;
	margin:0 auto;
}

.footerInner .footercopyright{
	font-size: 0.7em;
	color: #e3f1ff;
	text-align: center;
	letter-spacing: 0rem;
}

.footer .footerInner .footermenu{
	overflow: hidden;
}
.footer .footerInner .footermenu > li{
	float: left;
	width: 19%;
	margin-right: 1.25%;
}
.footer .footerInner .footermenu > li:last-child{
	margin-right: 0%;
}

.footer .footerInner .footermenu > li a{
	display: block;
	background-color :#2a71b7;
	margin: 0 auto;
	border-radius: 16px;
	text-align: center;
	text-decoration: none;
	padding: 4px 0 0px;
	height: 48px;
	box-sizing: border-box;
}

.footer .footerInner .footermenu > li a .fmicon{
	display: block;
	margin: 0 auto;
	width: 26px;

}
.footer .footerInner .footermenu > li a .fmtext{
	font-size: 0.8em;
    color: #ffffff;
    display: block;
	margin-top: 2px;
    line-height: 1.2;
}

.fixbtnset{
	position: fixed;
    bottom: 0px;
    width: 100%;
    box-sizing: border-box;
    padding: 6px 2.5% 6px;
    z-index: 99;
    margin-bottom: 60px;
    box-sizing: border-box;
	background:rgba(50,42,35,0.7);
}
.fixbtnsetInner {
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}

/********************
.content
*********************/
.content{
	box-sizing:border-box;
	width:100%;
}

.content .contentInner{
	box-sizing:border-box;
	width:100%;
	margin:0 auto;
}
.descriArea{
	margin-top: 0.5rem;
	line-height: 1.3;
}


.contttlWrap{
	margin-top: 2rem;
}
.contttlWrap h2{
	line-height: 1.2em;
    font-size: 120%;
    border-left: #54b108 solid 8px;
    padding-left: 0.3em;
    margin-bottom: 0.5em;
    letter-spacing: 0.1em;
    font-weight: bold;
}

.contsubttlWrap{
	margin-top: 1rem;
}
.contsubttlWrap h3{
	line-height: 1.2em;
    border-bottom: #c4c4c4 dotted 1px;
    padding:0 0.25em 0.25em 0.25em;
    margin-bottom: 0.25em;
    letter-spacing: 0.2em;
    font-weight: bold;
}
.tA-le{
    text-align: left;
}
.tA-ri{
    text-align: right;
}
.tA-cn{
    text-align: center;
}
.vA-top{
	vertical-align: top !important;
}

select,
input,
textarea{
	font-family: 'Arial','Helvetica Neue','Helvetica','Yu Gothic Medium','YuGothic','Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
    color: #333333;
    letter-spacing: 0em;
	border: #aaaaaa solid 1px;
	border-radius: 3px;
	line-height: 1.3;
    padding: 0.2em 0.4em;
	font-size: 16px;
}
input:disabled {
    border: #eaeaea solid 1px;color: #cccccc;
}
input[type="file"]{
	font-family: 'Arial','Helvetica Neue','Helvetica','Yu Gothic Medium','YuGothic','Hiragino Kaku Gothic ProN',Meiryo,sans-serif;
    color: #333333;
    letter-spacing: 0em;
	border: none;
	border-radius: 0px;
	line-height: 1.3;
    padding: 0;
	cursor: pointer;
}

a.buttonBasic,
input.buttonBasic{
    display: inline-block;
    box-sizing: border-box;
    color: #ffffff;
	text-align: center;
    text-decoration: none;
    background-color: #007dfc;
    padding: 1em 0.65em 1em 0.75em;
    letter-spacing: 0.1em;
    border-radius: 4px;
	line-height: 1.3;
}/*
a.buttonBasic:hover,
input.buttonBasic:hover{
	background-color: #399bff;
}*/
a.buttonBasic.buttonSs,
input.buttonBasic.buttonSs{
	padding: 0.2em 0.65em 0.2em 0.75em;
    letter-spacing: 0em;
	white-space: nowrap;
}
a.buttonBasic.buttonLs,
input.buttonBasic.buttonLs{
	
}
input.buttonBasic{
	border: none;
	cursor: pointer;
}
.buttonlistWrap{
	margin: 2em auto 0;
	display: table;
	width: 100%;
}
.buttonlistWrap.btnWrap-right{
	margin: 2em 0 0 auto;
}
.buttonlistWrap.btnWrap-left{
	margin: 2em auto 0 0;
}
.buttonlistWrap li{
	display: table-cell;
	padding-right: 10px;
	width: 100%;
}
.buttonlistWrap li > a.buttonBasic,
.buttonlistWrap li > input.buttonBasic{
	width: 100%;
}
.buttonlistWrap li:last-child{
	padding-right: 0;
}
/** ボーダー無しテーブルのボタン**/
.tableWrap.borderLesstable .buttonlistWrap{
	/*margin: 0em auto 0;*/
}
.tableWrap.borderLesstable .buttonlistWrap a.buttonBasic,
.tableWrap.borderLesstable .buttonlistWrap input.buttonBasic{
    padding: 0.4em 0.65em 0.4em 0.75em;
}

/*****/

/*ボタンカラー*/
a.buttonBasic.bColor-ok,
input.buttonBasic.bColor-ok{
	background-color: #ffaa00;
}/*
a.buttonBasic.bColor-ok:hover,
input.buttonBasic.bColor-ok:hover{
	background-color: #00dd09;
}*/
a.buttonBasic.bColor-no,
input.buttonBasic.bColor-no{
	background-color: #e12525;
}/*
a.buttonBasic.bColor-no:hover,
input.buttonBasic.bColor-no:hover{
	background-color: #ff0000;
}*/
a.buttonBasic.bColor-cancel,
input.buttonBasic.bColor-cancel{
	background-color: #8f9fbb;
}/*
a.buttonBasic.bColor-cancel:hover,
input.buttonBasic.bColor-cancel:hover{
	background-color: #a6b2c8;
}*/
a.buttonBasic.bColor-base,
input.buttonBasic.bColor-base{
	background-color: #007dfc;
}/*
a.buttonBasic.bColor-base:hover,
input.buttonBasic.bColor-base:hover{
	background-color: #399bff;
}*/
a.buttonBasic.bColor-etc,
input.buttonBasic.bColor-etc{
	background-color: #f7a212;
}/*
a.buttonBasic.bColor-etc:hover,
input.buttonBasic.bColor-etc:hover{
	background-color: #ffc054;
}*/
a.buttonBasic.bColor-day1,
input.buttonBasic.bColor-day1{
	background-color: #36a1ad;
}/*
a.buttonBasic.bColor-day1:hover,
input.buttonBasic.bColor-day1:hover{
	background-color: #36a1ad;
}*/
a.buttonBasic.bColor-day2,
input.buttonBasic.bColor-day2{
	background-color: #366bad;
}/*
a.buttonBasic.bColor-day2:hover,
input.buttonBasic.bColor-day2:hover{
	background-color: #366bad;
}*/

a.buttonBasic.disabled,
input.buttonBasic.disabled{
	color: #bababa;
	background-color: #999999;
	pointer-events: none;
}
a.buttonBasic.disabled:hover,
input.buttonBasic.disabled:hover{
	background-color: #999999;
}

.noteList{
	margin-top: 0.5em;
	font-size: 88%;
}
.noteList li{
	margin-bottom: 0.25em;
	line-height: 1.3em;
	text-indent: -1em;
	margin-left: 1em;
}

.textcolorRed{
	color: #dd0000!important;
}
.textcolorBlue{
	color: #007dfc!important;
}
.textcolorGreen{
	color: #00a907!important;
}
.textweightBold{
	font-weight: bold!important;
}


/****ラジオとチェック********************************************
labelにcustomCheckを入れるとカスタム
**************************************************************/

label.customCheck {
  word-break: break-all;
	padding-left: 1.5em;
	padding-right: 0.5em;
	cursor: pointer;
	position: relative;
}
label.customCheck input[type="checkbox"],
label.customCheck input[type="radio"] {
  margin: 0;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
label.customCheck input span {
  display: inline-block;
}

label.customCheck input[type="checkbox"] + span {
  vertical-align: middle;
}
label.customCheck input[type="radio"] + span {
  vertical-align: baseline;
}

/* RADIO BUTTON */
label.customCheck input[type="radio"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
}
label.customCheck input[type="radio"] + span::before {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 20px;
	z-index: 0;
	top: 0.0em;
	left: 0.0em;
	background-color: #eceaf8;
	width: 1.3em;
	height: 1.3em;
	border: #aaaaaa solid 1px;
}
label.customCheck input[type="radio"]:checked + span::before {
	border: #007dfc solid 2px;
	background-color: #ffffff;
}
label.customCheck input[type="radio"]:checked + span::after {
	position: absolute;
	display: inline-block;
	content: '';
	box-sizing: border-box;
	border-radius: 20px;
	z-index: 1;
	top: 6px;
    left: 6px;
    background-color: #dd0000;
    width: 9px;
    height: 9px;
}

/* CHECKBOX */
label.customCheck input[type="checkbox"] {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
label.customCheck input[type="checkbox"] + span::before,
label.customCheck input[type="checkbox"] + span::after {
  position: absolute;
  top: 0.1em;
  left: 0;
  display: inline-block;
  content: '';
  box-sizing: border-box;
}
label.customCheck input[type="checkbox"] + span::before {
	z-index: 0;
	background-color: #eceaf8;
	width: 1.3em;
	height: 1.3em;
	border: 1px #aaaaaa solid;
	border-radius: 3px;
}
label.customCheck input[type="checkbox"] + span::after {
  z-index: 1;
  margin: -0.2em 0.5em;
  width: 0.6em;
  height: 1.2em;
}
label.customCheck input[type="checkbox"]:checked + span::before {
	border: #007dfc solid 2px;
	background-color: #ffffff;
}
label.customCheck input[type="checkbox"]:checked + span::after {
  border: 4px solid #dd0000;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}

label.customCheck.listInnerCheck{
    padding-left: 0.75em;
}

label.customCheck input[type="radio"]:disabled + span, 
label.customCheck input[type="checkbox"]:disabled + span {
	color: #dddddd;
}
label.customCheck input[type="radio"]:disabled + span::before, 
label.customCheck input[type="checkbox"]:disabled + span::before {
	border-color: #f0f0f0;
}
/*Tabによるフォーカス*/
label.customCheck input[type="radio"]:focus + span::before,
label.customCheck input[type="checkbox"]:focus + span::before {
    border: #000000 solid 2px;
}

/****ボタンの見た目でラジオとチェック*******************************
labelにinputBtnstyle
**************************************************************/
.inputBtnstyle{
	word-break: break-all;
	padding-left: 0.5em;
	padding-right: 0.5em;
	position: relative;
}
label.inputBtnstyle input[type="radio"],
label.inputBtnstyle input[type="checkbox"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
label.inputBtnstyle span.inputButton{
	display: inline-block;
	box-sizing: border-box;
	color: #606060;
	text-align: center;
	text-decoration: none;
	background-color: #d1dfed;
	letter-spacing: 0.05em;
	border-radius: 4px;
	line-height: 1.3;
	padding: 0.2em 0.65em 0.2em 1.5em;
	cursor: pointer;
}
/*
label.inputBtnstyle span.inputButton:hover{
	background-color: #a4cffb;
}
*/
label.inputBtnstyle input[type="radio"] + span.inputButton::before,
label.inputBtnstyle input[type="checkbox"] + span.inputButton::before {
	border: 4px solid #cdd2d7;
	border-width: 0 3px 4px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: -0em 0em 0em 1.1em;
	width: 0.5em;
	height: 0.9em;
	position: absolute;
	top: 0em;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
label.inputBtnstyle input[type="radio"]:checked + span.inputButton,
label.inputBtnstyle input[type="checkbox"]:checked + span.inputButton{
	color: #ffffff;
	background-color: #00a907;
}
/*
label.inputBtnstyle input[type="radio"]:checked + span.inputButton:hover,
label.inputBtnstyle input[type="checkbox"]:checked + span.inputButton:hover{
	background-color: #51e957;
} 
*/
label.inputBtnstyle input[type="radio"]:checked + span.inputButton::before,
label.inputBtnstyle input[type="checkbox"]:checked + span.inputButton::before {
	border: 4px solid #ffc649;
	border-width: 0 3px 4px 0;
}
/*Tabによるフォーカス*/
label.inputBtnstyle input[type="radio"]:focus  + span,
label.inputBtnstyle input[type="checkbox"]:focus + span {
	border: #000000 solid 2px;
}
/****エラー文字*******************************/

.error_msg{
	color: #dd0000;
	font-weight: bold;
}

/****アイコン*******************************/

.iconText{
	position:relative;
	line-height:2em;
	padding-left:2.4em;
	display: inline-block;
}
.iconText:before{
	position:absolute;
	left:0;
	content:"";
	display:inline-block;
	width:2em;
	height:2em;
	background-size: 2em auto;
	background-position: center center;
	background-repeat: no-repeat;
}
/*
.iconText.icon-common:before{background-image:url("/img/iconsvg_common.svg");}
.iconText.icon-estimates:before{background-image:url("/img/iconsvg_estimates.svg");}
.iconText.icon-send-order:before{background-image:url("/img/iconsvg_send-order.svg");}
.iconText.icon-place-order:before{background-image:url("/img/iconsvg_place-order.svg");}
.iconText.icon-purchase:before{background-image:url("/img/iconsvg_purchase.svg");}
.iconText.icon-inventory:before{background-image:url("/img/iconsvg_inventory.svg");}
.iconText.icon-production-plan:before{background-image:url("/img/iconsvg_production-plan.svg");}
.iconText.icon-setting:before{background-image:url("/img/iconsvg_setting.svg");}
.iconText.icon-account:before{background-image:url("/img/iconsvg_account.svg");}
.iconText.icon-information:before{background-image:url("/img/iconsvg_information.svg");}
.iconText.icon-other:before{background-image:url("/img/iconsvg_other.svg");}
.iconText.icon-monthlyconf:before{background-image:url("/img/iconsvg_monthlyconf.svg");}
.iconText.icon-newconf:before{background-image:url("/img/iconsvg_newconf.svg");}
.iconText.icon-attendance:before{background-image:url("/img/iconsvg_attendance.svg");}
.iconText.icon-personnel:before{background-image:url("/img/iconsvg_personnel.svg");}
.iconText.icon-company:before{background-image:url("/img/iconsvg_company.svg");}
.iconText.icon-idcontrol:before{background-image:url("/img/iconsvg_idcontrol.svg");}
.iconText.icon-point:before{background-image:url("/img/iconsvg_point.svg");}
.iconText.icon-authority:before{background-image:url("/img/iconsvg_authority.svg");}
.iconText.icon-output:before{background-image:url("/img/iconsvg_output.svg");}
.iconText.icon-dashboard:before{background-image:url("/img/iconsvg_dashboard.svg");}
.iconText.icon-paid:before{background-image:url("/img/iconsvg_paid.svg");}
.iconText.icon-shift:before{background-image:url("/img/iconsvg_shift.svg");}
.iconText.icon-supportplan:before{background-image:url("/img/iconsvg_supportplan.svg");}
.iconText.icon-sales:before{background-image:url("/img/iconsvg_sales.svg");}
*/

/**.pager******/
.pagerArea{
    margin-top: 1em;
    text-align: center;
}
.pagerArea .pagerBox{
    text-align: center;
}
.pagerArea .pagerBox li{
    display: inline-block;
}
.pagerArea .pagerBox li .pagerBtn{
    border: #cccccc solid 1px;
    border-radius: 4px;
    display: block;
    padding: 0em 0.75em;
    line-height: 2;
    color: #004081;
    background-color: #ffffff;
    text-decoration: none;
}
/*
.pagerArea .pagerBox li .pagerBtn:hover{
    border: #007dfc solid 1px;
}
*/
.pagerArea .pagerBox li .pagerBtn.currentMark{
    background-color: #007dfc;
    color: #ffffff;
    pointer-events: none;
}

/********モーダル************/
body.fixed {
	position: fixed;
	width: 100%;
	height: 100%;
	left: 0;
}

.modal{
    display: none;
    height: 100vh;
    position: fixed;
    top: 0;
    width: 100%;
	z-index: 3001;
}
.modal__bg{
    background: rgba(30,30,30,0.9);
    height: 100vh;
    position: absolute;
    width: 100%;
}
.modal__bg.loading{
	background: url("/img/icon_modal_loading.gif") fixed center no-repeat rgba(30,30,30,0.9);
}
.modal__content{
    background: #f0f0f0;
    left: 50%;
    padding: 40px 0;
    position: absolute;
    top: 50%;
    transform: translate(-50%,-50%);
    width: 70%;
	overflow: auto;
	max-height: 90vh;
	display: none;
}

.modalInner{
    width: 700px;
    margin: 0 auto;
	padding: 0 20px;
}
a.modalCloseBtn,
input.modalCloseBtn{
	display: block;
	text-align: center;
	box-sizing: border-box;
	color: #ffffff;
	text-decoration: none;
	background-color: #3a4549;
	padding: 0.5em 0;
	border-radius: 4px;
    margin: 1em auto 0;
    width: 200px;

}
/*
a.modalCloseBtn:hover,
input.modalCloseBtn:hover{
	background-color: #6a7f86;
}
*/
.modal.modalLs .modal__content{
	width: 90%;
}
.modal.modalLs .modal__content .modalInner{
	width: 1000px;
}
.modal.modalSs .modal__content{
	width: 50%;
}
.modal.modalSs .modal__content .modalInner{
	width: 500px;
}

.modal.modalFl .modal__content{
	width: 100%;
}
.modal.modalFl .modal__content .modalInner{
	width: 100%;
}
.modal.modalFl .modal__content{
	width: 100%;
	padding: 0;
	position: relative;
	top: 0;
	left: 0;
	transform: none;
	max-height: inherit;
	background: #f5f8fb;
	overflow: hidden;
	overflow-y: auto;
}
.modal.modalFl .modal__content .modalInner{
	width: 100%;
	padding: 0;
}

/********タブ切替************/
.tab_wrap{width:100%; margin:2em auto; border-bottom: #8b9cac solid 4px;}
.tab_wrap input.hiddenInput[type="radio"]{display:none;}
.tab_wrap .tab_area{
	background-color: #8b9cac;
	border-radius: 5px 5px 0 0;
	padding-top: 0.5em;
}
.tab_wrap .tab_area label{
	font-weight: bold;
	width:auto;
	margin:0 0em 0 0.5em;
	min-width: 4em;
	display:inline-block;
	padding:0.5em 0.5em;
	color:#f0f0f0;
	background:#a1b0be;
	text-align:center;
	cursor:pointer;
	/*transition:ease 0.2s opacity;*/
	/*border: #cccccc solid 1px;*/
	border-bottom: #8b9cac solid 2px;
	border-radius: 5px 5px 0 0;
}
/*
.tab_wrap .tab_area label:hover{background:#49739b;}
*/
.tab_wrap .panel_area{}
.tab_wrap .tab_panel{width:100%; padding:0em 0 1em; display:none;}

.tab_wrap #tab1:checked ~ .tab_area .tab1_label,
.tab_wrap #tab2:checked ~ .tab_area .tab2_label,
.tab_wrap #tab3:checked ~ .tab_area .tab3_label,
.tab_wrap #tab4:checked ~ .tab_area .tab4_label,
.tab_wrap #tab5:checked ~ .tab_area .tab5_label,
.tab_wrap #tab6:checked ~ .tab_area .tab6_label{
	background-color:#eaedef; color:#333333; border-bottom: #eaedef solid 6px; pointer-events: none; font-weight: bold;
}
.tab_wrap #tab1:checked ~ .panel_area #panel1,
.tab_wrap #tab2:checked ~ .panel_area #panel2,
.tab_wrap #tab3:checked ~ .panel_area #panel3,
.tab_wrap #tab4:checked ~ .panel_area #panel4,
.tab_wrap #tab5:checked ~ .panel_area #panel5,
.tab_wrap #tab6:checked ~ .panel_area #panel6{
	display:block;
}







.acTtl{
	text-align: right;
    margin-top: -2em;
}
.acTtl > a{
	cursor: pointer;
}

.acTtl2_opclose{
	display: none;
}
.acTtl2_opclose.active{
	display: block;
}
/**/
.aAct_opclose{
	
}
.aAct_opclose.active{

}
.accordionActiv{
	position: relative;
}
.accordionActiv:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position:absolute;
  right: 2%;
  top: 0;
  bottom: 15%;
  margin: auto;
}
/*開いた状態の矢印描画*/
.accordionActiv.active:after{
  content:"";
  display:block;
  width:8px;
  height:8px;
  border-top: #fff 2px solid;
  border-right: #fff 2px solid;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
  position:absolute;
  right: 2%;
  top: 7%;
  bottom: 0;
  margin: auto;
}




/****チェックボタン（承認）の見た目でラジオとチェック*******************************
labelにinputBtnstyle
**************************************************************/
.inputBtnstyle{
	word-break: break-all;
	padding-left: 0;
	padding-right: 0;
	position: relative;
}
label.inputBtnstyle input[type="radio"],
label.inputBtnstyle input[type="checkbox"] {
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	cursor: pointer;
}
label.inputBtnstyle span.inputButton{
	display: inline-block;
	box-sizing: border-box;
	color: #909090;
	text-align: center;
	text-decoration: none;
	background-color: #d1dfed;
	letter-spacing: 0.05em;
	border-radius: 4px;
	line-height: 1.3;
	padding: 0.2em 0.65em 0.2em 2em;
}
/*
label.inputBtnstyle span.inputButton:hover{
	background-color: #a4cffb;
}
*/
label.inputBtnstyle input[type="radio"] + span.inputButton::before,
label.inputBtnstyle input[type="checkbox"] + span.inputButton::before {
	border: 4px solid #e5eaef;
	border-width: 0 3px 4px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
	margin: -0em 0em 0em 1em;
	width: 0.5em;
	height: 0.9em;
	position: absolute;
	top: 0em;
	left: 0;
	display: inline-block;
	content: '';
	box-sizing: border-box;
}
label.inputBtnstyle input[type="radio"]:checked + span.inputButton,
label.inputBtnstyle input[type="checkbox"]:checked + span.inputButton{
	color: #ffffff;
	background-color: #00a907;
}
/*
label.inputBtnstyle input[type="radio"]:checked + span.inputButton:hover,
label.inputBtnstyle input[type="checkbox"]:checked + span.inputButton:hover{
	background-color: #51e957;
} 
*/
label.inputBtnstyle input[type="radio"]:checked + span.inputButton::before,
label.inputBtnstyle input[type="checkbox"]:checked + span.inputButton::before {
	border: 4px solid #ffc807;
	border-width: 0 3px 4px 0;
}


label.inputBtnstyle input[type="radio"]:disabled + span.inputButton,
label.inputBtnstyle input[type="checkbox"]:disabled + span.inputButton {
	pointer-events: none;
	cursor:none; 
}

.statusTag{
	display: inline-block;
    border: #dfdfdf solid 1px;
    border-radius: 3px;
    white-space: nowrap;
    line-height: 1;
    padding: 0.2em 0.6em;
    margin: 0.1em;
    background-color: #e9f2fb;
}
.statusTag.lostorderTag{
    border: #dfdfdf solid 1px;
    background-color: #fbe9e9;
	color: #dd0000;
}
.list-table tr > td .listinner-linktext.workerRemBtn{
	font-size: 1.2em;
	line-height: 1.4em;
	text-align: center;
	background-color: #a2b5d1;
	color: #ffffff;
	font-weight: bold;
	border-radius: 4px;
	cursor: pointer;
}
/*
.list-table tr > td .listinner-linktext.workerRemBtn:hover{
	background-color: #dd5b5b;
}
*/
/*承認ボタンごとにエラーを出す場合*/
.formsetBox > dd.innererrorBox > .formPack{
	vertical-align: top;
}




/*************************************************************/

input[type="button"],
input[type="image"],
input[type="file"],
input[type="reset"],
input[type="submit"]{
    -webkit-appearance: none;
}
/********************
.common
*********************/



/****************/

.contttlWrap h2{
	letter-spacing: normal;
}
.descriArea{
	margin-top: 0.5rem;
}
.descriArea > p{
	line-height: 1.3;
	font-size: 90%;
}
select, input, textarea{
	width: 100%;
	box-sizing: border-box;
}
.formpostBox{
	width: 100%;
	box-sizing: border-box;
}
.contentmenuWrap > li{
	float: none;
	width: 100%;
	margin-right: 0;
}
.fixed-btn-area {
    bottom: 30px;
}


/*Safariのスタイル消して矢印を表示*/
select{
	position: relative;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	background-color: #FFFFFF;
}

.select-wrap {
    position: relative;
}

.select-wrap:after {
    content: "";
    position: absolute;
    right: 8px;
    top: 1em;
    width: 6px;
    height: 6px;
    border-top: 2px solid #666666;
    border-left: 2px solid #666666;
    transform: translateY(-50%) rotate(-135deg);
    pointer-events: none;
}
/*******************/
a.buttonBasic.buttonSs,
input.buttonBasic.buttonSs{
	padding: 0.2em 0.5em 0.2em 0.5em;
    letter-spacing: 0em;
	white-space: nowrap;
}

.formPack{
	margin: 0.5em 0;
}
.formPack:first-child{
	margin: 0 0 0.5em;
}
.formPack:last-child{
	margin: 0.5em 0 0;
}

/*******************/


.header .homeIcon{
width: 40px;
position: absolute;
top: 5px;
left: 50%;
margin-left: -20px;
	border-radius: 4px;
	    background-color: #2c5ba9;
    padding: 3px;
	box-sizing: border-box;
}
.header .homeIcon > a{
display: block;
	
}
.headmyicon {
float: right;

}
.headmyicon .imgBorder{
	width: 36px;
	margin-top: 7px;
	/*border: #cccccc solid 1px;*/
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 50%;
}
.headmyicon .imgBorder > img{
	width: 100%;
	height: auto;
}
.headinfoicon {
	float: left;
	margin-left: 50px;
}
.headinfoicon .imgBorder{
	width: 36px;
	margin-top: 7px;
	/*border: #cccccc solid 1px;*/
	box-sizing: border-box;
	border-radius: 50%;
}
.headinfoicon .imgBorder img{
	width: 80%;
    height: auto;
    margin-top: 15%;
    margin-left: 10%;
}

.headinfoicon .imgBorder.infoalert {
	position: relative;
}
.headinfoicon .imgBorder.infoalert::after {
	content: "！";
	position: absolute;
	top: 0px;
	right: 0px;
	color: #FFF;
	line-height: 1.4em;
	font-weight: bold;
	font-size: 0.8em;
	text-align: center;
	width: 1.4em;
	background: #F00;
	border-radius: 50%;
}


.mypoint{
margin-top: 11px;
float: left;
color: #ffffff;
}
.mypoint .pointicon{
position: relative;
    text-indent: 1.5em;
    display: inline-block;
    font-weight: bold;
    line-height: 1.4;
    font-size: 1.4em;
}
.mypoint .pointicon:before{
position: absolute;
    left: 0;
    content: "";
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    background-size: 1.4em auto;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url(/img/icon2_point_w.svg);
}
.mypoint .pointunit{
display: inline-block;
    margin-left: 0.1em;
    margin-right: 0.5em;
    font-size: 0.9em;
}

.mypoint.hPointwrap {
	margin-top: 4px;
}
.mypoint.hPointwrap .pointicon{
	font-size: 1.1em;
}
.mypoint.hPointwrap .setchips .pointicon:before{
	background-image: url(/img/icon2_chips_w.svg);
}
@keyframes colorchange-increase {
	0% { color: #ffffff; }
	5% { color: #ffda00; }
	85% { color: #ffda00; }
	100% { color: #ffffff; }
}
@keyframes colorchange-decrease {
	0% { color: #ffffff; }
	5% { color: #ffa7e6; }
	85% { color: #ffa7e6; }
	100% { color: #ffffff; }
}
.point-increase {
	animation: colorchange-increase 4.5s;
}
.point-decrease {
	animation: colorchange-decrease 4.5s;
}
/****************************************************/
.loglistWrap{
}
.loglistWrap > li{
	width: 100%;
	line-height: 1.4;
	margin-top: 5px;
    padding: 5px 5px 2px 5px;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 25px 5px 5px 5px;
}
.loglistWrap > li:first-child{
	margin-top: 0%;
}
.loglistWrap > li .loglistInner{
	overflow: hidden;
}
.loglistWrap > li .loglistInner .listboxImg{
	float: left;
	width: 44px;
	margin-right: 6px;
}
.loglistWrap > li .loglistInner .listboxFromto{
	float: left;
	width: calc(100% - 50px);
	line-height: 1.2;
    overflow: hidden;
}
.loglistWrap > li .loglistInner .listboxFromto .mainname{
	margin-top: 0.25em;
    float: left;
    width: calc(100% - 6em);
}
.loglistWrap > li .loglistInner .listboxFromto .comDate{
	float: right;
    text-align: right;
    color: #888888;
    width: 6em;
}

.loglistWrap > li .loglistInner .listboxComment{
	clear: both;
    width: 100%;
    background-color: #ffebc3;
    padding: 2% 2.5%;
    box-sizing: border-box;
    border-radius: 10px;
}
.balloonBox {
    position: relative;
    margin-top: 2px;
}
.balloonBox:before {
    content: "";
    position: absolute;
    top: -14px;
    left: 33px;
    margin-left: -16px;
    border: 5px solid transparent;
    border-bottom: 10px solid #ffebc3;
}
.loglistWrap > li .loglistInner .listboxThumbs{
	overflow: hidden;
	width: 100%;
}
.thumbsSet {
    float: left;
    overflow: hidden;
    margin-top: 3px;
    width: calc(100% - 25px - 30px);
}

.replySet .thumbsSet {
    width: calc(100% - 30px - 25px - 30px);
}

.suppleTxt{
	float: right;
    padding-top: 0px;
    width: 25px;
    height: auto;
    margin-left: 25px;
	margin-right: 5px;
}

.replyiconSet {
    float: left;
    padding-top: 0px;
    width: 25px;
    height: auto;
    margin-left: 5px;
}


.loglistWrap > li .loglistInner .listboxImg .imgBorder{
	border: #eaeaea solid 1px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 50%;
}
.loglistWrap > li .loglistInner .listboxImg .imgBorder > img{
	width: 100%;
	height: auto;
}

.listboxImg.birthdayFrame{
	position: relative;
}
.listboxImg.birthdayFrame::before{
	content: " ";
	position: absolute;
	top: -5px;
    left: -5px;
    width: 54px;
    height: 54px;
	background-image: url("../img/icon2_birthday_frame.svg");
	background-size: 100% auto;
	background-position: center center;
	background-repeat: no-repeat;
	
}

.toClasswrap{
	line-height: 1.6;
}
.toClasswrap.toClassicon{
	position: relative;
	text-indent: 1.8em;
}
.toClasswrap.toClassicon:before{
	position: absolute;
	left: 0;
	content: "";
	display: inline-block;
	width: 1.6em;
	height: 1.6em;
	background-size: 1.6em auto;
	background-position: center center;
	background-repeat: no-repeat;
}
.toClasswrap.toClassicon.icon_present_give:before {
	background-image: url(/img/icon2_present_give.svg);
}
.toClasswrap.toClassicon.icon_thumbs_on:before {
	background-image: url(/img/icon2_thumbs_on.svg);
}
.toClasswrap.toClassarrow {
    clear: both;
    position: relative;
    text-indent: 1.2em;
}
.toClasswrap.toClassarrow::before {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    left: 6px;
    box-sizing: border-box;
    width: 8px;
    height: 8px;
    border: 8px solid transparent;
    border-left: 8px solid #f17272;
}
.toClasswrap.toClassarrow::after {
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    vertical-align: middle;
    left: 0;
    width: 8px;
    height: 8px;
    border-left: 6px solid #f17272;
}
.namefrom{
	font-weight: bold;
}
.nameTo{
	font-weight: bold;
}
.nameThings{
	font-weight: bold;
}
.thumbsBtn{
	float: right;
	width: 20px;
	height: 20px;
}				
.thumbsBtn label.thumbsupButton {
	word-break: break-all;
	cursor: pointer;
	position: relative;
}
.thumbsBtn label.thumbsupButton input[type="checkbox"] {
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	margin: 0;
	padding: 0;
	background: none;
	border: none;
	border-radius: 0;
	outline: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}

.thumbsBtn label.thumbsupButton input[type="checkbox"] + span {

}
				
.thumbsBtn label.thumbsupButton input[type="checkbox"] + span::before {
	position: absolute;
	top: 0;
	left: 0px;
	width: 20px;
	height: 20px;
	display: block;
	content: '';
	box-sizing: border-box;

	background-image: url("/img/icon2_thumbs.svg");
	background-size: 20px 20px;
	background-position: center center;
	background-repeat: no-repeat;
}
.thumbsBtn label.thumbsupButton input[type="checkbox"]:checked + span::before {
	background-image: url("/img/icon2_thumbs_on.svg");
}
.thumbsNum{
	float: left;
    padding-top: 3px;
    width: calc(100% - 20px - 5px);
    text-align: right;
    font-size: 0.9em;
    color: #888888;
}


/***************************/

.toClasswrap.receivedbox {
    clear: both;
    position: relative;
    text-indent: 1.2em;
}
.toClasswrap.receivedbox::before {
    position: absolute;
    /* top: 0; */
    bottom: 4px;
    left: 1px;
    margin: auto;
    content: "";
    vertical-align: middle;
    border-style: solid;
    border-width: 7px 7px 0 7px;
    border-color: #44c511 transparent transparent transparent;
    display: inline-block;
    width: 0;
    height: 0;
}
.toClasswrap.receivedbox::after {
    position: absolute;
    top: 6px;
    /* bottom: 0; */
    margin: auto;
    content: "";
    vertical-align: middle;
    left: 5px;
    width: 8px;
    height: 8px;
    border-left: 6px solid #44c511;
}


/***login*************************************/
.container.centralContainer{
	padding: 20px 20px 20px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.tableWrap {
	width: 100%;
	margin-top: 0.5rem;
	background-color: #ffffff;
}
.tableWrap.borderLesstable {
	border: #e0e0e0 solid 1px;
	padding: 0.5em 1em 0.5em 1em;
	box-sizing: border-box;
}
.tableWrap.borderLesstable .tableBasic {
	 width: 100%;
	border-top: none;
	border-left: none;
}
.tableWrap.borderLesstable .tableBasic tr > th,
.tableWrap.borderLesstable .tableBasic tr > td {
	border-right: none;
	border-bottom: none;
	padding: 0;
	vertical-align: top;
	box-sizing: border-box;
}
.formsetBox {
	width: 100%;
	overflow: hidden;
	line-height: 1.5;
}
.formsetBox > dt {
	margin-top: 0.5em;
}
.formsetBox > dd {
	margin-bottom: 0.5em;
}

/**************************/
.centermyicon{
	margin: 0 auto 0em;
	width: 80px;
	border: #f0f0f0 solid 1px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 50%;
}
.centermyicon.noborder{
	border: none;
	border-radius: 0;
}

.centermyicon > img{
	width: 100%;
	height: auto;
}
.centerpageTtl{
	font-size: 1.5em;
	text-align: center;
	font-weight: bold;
    color: #ffffff;
}
.centerqrcode{
	margin: 1em auto 0.5em;
	width: 180px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 10px;
}
.centerqrcode > img{
	width: 100%;
	height: auto;
}
.centertext{
	color: #dddddd;
	text-align: center;
}

.settingWrap{
	position: relative;
}
.settingIcon .settingIconbtn{
	display: block;
}
.settingIcon .settingIconbtn > img{
	width: 100%;
	height: auto;
}
.settingIconcam{
	position: absolute;
	left: 50%;
	bottom: 0;
	margin-left: 20px;
	width: 30px;
	height: 30px;
	background-color: #ffffff;
	border-radius: 50%;
	padding: 3px;
	box-sizing: border-box;
	border: #333333 solid 1px;
}
.settingIconcam .settingIconbtn{
	display: block;
}

/**********************/
.namelistWrap{
	box-sizing: border-box;
}
.namelistWrap > li{
	width: 100%;
    line-height: 1.4;
    margin-top: 5px;
    padding: 5px 5px 5px 5px;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 25px 5px 5px 5px;
}
.namelistWrap > li:first-child{
	border-top: none;
	margin-top: 0%;
}

.namelistWrap > li .namelistInner{
	overflow: hidden;
}
.namelistWrap > li .namelistInner .listboxImg{
	float: left;
	width: 44px;
	margin-right: 6px;
}
.namelistWrap > li .namelistInner .listboxtoname{
	float: left;
	width: calc(100% - 50px - 30px);
}
.namelistWrap > li .namelistInner .listboxgiveicon{
	padding-top: 0.5em;
	float: left;
	width: 26px;
	margin-left: 4px;
}
.namelistWrap > li .namelistInner .listboxImg .imgBorder{
	border: #f0f0f0 solid 1px;
	box-sizing: border-box;
	overflow: hidden;
	border-radius: 50%;
}
.namelistWrap > li .namelistInner .listboxImg .imgBorder > img{
	width: 100%;
	height: auto;
}
.namelistWrap > li .namelistInner .listboxtoname .maintotitle{
	font-size: 0.9em;
	color: #888888;
	line-height: 1.2;
	margin-top: 0.25em;
}
.namelistWrap > li .namelistInner .listboxtoname .maintoname{
	color: #333333;
}
.namelistWrap > li .namelistInner .listboxComment{
	clear: both;
	width: 100%;
}
.namelistWrap > li .namelistInner .listboxComment .toClassicon{
	margin-left: 0.75em;
	padding: 0em 0 0.4em 0;
}

.namelistWrap.checkboxBtnlist > li {
    padding: 0;
	overflow: hidden;
}
.mult_selec + .namelistInner{
	background-color: #ffffff;
	padding: 5px 5px 5px 5px;
}
.mult_selec:checked + .namelistInner{
	background-color: #fff07e;
}
/*****************/

.namelistWrap.giveformname{
	border-radius: 8px;
}
.notettltext{
	font-weight: bold;
    color: #dddddd;
	    background-color: #113776;
	border-radius: 8px;
	padding: 0.1em 0.25em 0.25em 0.5em;
	margin-bottom: 5px;
}
.notettltext .pointtext{
    color: #ffcc00;
}
.pointGiveArea{
	margin: 5px 0 5px;
	overflow: hidden;
	color: #dddddd;
}

.pointGiveArea > li  {
	float: left;
	width: 45%;
}

.pointGiveArea .pointowned  {
	position: relative;
	margin-right: 10%;
	text-align: center;
}
.pointGiveArea .pointowned::after {
	content: '';
	width: 12px;
	height: 12px;
	border: 0;
	border-top: solid 4px #ffcc00;
	border-right: solid 4px #ffcc00;
	position: absolute;
	top: 50%;
	right: -20px;
	margin-top: -6px;
	transform: rotate(45deg);
}
.pointGiveArea .pointowned .mypoint {
	margin: 0 auto;
	color: #ffffff;
	float: none;
}
.pointGiveArea .pointowned .mypoint .pointicon {
	text-indent: 1.1em;
	line-height: 1;
	font-size: 2em
}
.pointGiveArea .pointowned .mypoint .pointicon:before {
	width: 1em;
	height: 1em;
	background-size: 1em auto;
	background-image: url(/img/icon2_point_w.svg);
}
.pointGiveArea .pointowned .mypoint .pointunit {
	margin-left: 0.1em;
	margin-right: 0em;
	font-size: 1em;
}
.pointGiveArea .pointgiveinput {
	text-align: center;
}
.pointGiveArea .pointgiveinput .pointunit{
	margin-left: 0.2em;
	font-size: 1em;
}
.pointGiveArea .pointgiveinput .notetextkome{
	font-size: 0.8em;
}

.pointGiveArea .remainingpoint {
	text-align: center;
}
.pointGiveArea .remainingpoint .mypoint {
	margin: 0.2em auto;
	color: #ffffff;
	float: none;
}
.pointGiveArea .remainingpoint .mypoint .pointicon {
	text-indent: 1.1em;
	line-height: 1;
	font-size: 1.5em
}
.pointGiveArea .remainingpoint .mypoint .pointicon:before {
	width: 1em;
	height: 1em;
	background-size: 1em auto;
}
.pointGiveArea .remainingpoint .mypoint .pointunit {
	margin-left: 0.1em;
	margin-right: 0em;
	font-size: 1em;
}

.centerremainingimg {
    margin: 1em auto 1em;
    width: 200px;
    box-sizing: border-box;
    overflow: hidden;
    border-radius: 10px;
}
.centerremainingimg > img {
	width: 100%;
	height: auto;
}

.centerremainingTtl{
	margin: 0.5em auto 0;
	padding: 0 0.2em 0.2em 0.2em;
	color: #ffffff;
	font-weight: bold;
	border-bottom: #5078bb solid 3px;
	font-size: 1.3em;
}

/**********************/
.historylistWrap{
	padding: 0;
	box-sizing: border-box;
}
.historylistWrap > li{
	width: 100%;
    line-height: 1.4;
    margin-top: 5px;
    padding: 5px 5px 5px 5px;
    background-color: #ffffff;
    box-sizing: border-box;
    border-radius: 5px 5px 5px 5px;
}
.historylistWrap > li:first-child{
	margin-top: 0%;
}
.historylistWrap > li .historylistInner{
	overflow: hidden;
}
.historylistWrap > li .historylistInner .listboxIcon{
	width: 30px;
	margin:0 0 0px auto;
}
.historylistWrap > li .historylistInner .listboxThing{
	padding-top: 0em;
	float: left;
	width: calc(100% - 6.6em);
}
.historylistWrap > li .historylistInner .listboxpoint{
	float: left;
	width: 6.6em;
	margin-left: 0em;
	text-align: right;
}
.historylistWrap > li .historylistInner .listboxThing .comDate{
	color: #888888;
}
.historylistWrap > li .historylistInner .listboxThing .thingwrap{
	height: 2.8em;
	/*min-height: 2.8em;*/
}
.historylistWrap > li .historylistInner .listboxpoint .pointNum{
	color: #007CD7;
	font-size: 1.6em;
	font-weight: bold;
}
.historylistWrap > li .historylistInner .listboxpoint .pointNum.ct2{
	color: #e57f00;
}
.historylistWrap > li .historylistInner .listboxpoint .pointNum .pointUnit{
	font-size: 0.5em;
	font-weight: normal;
}
/*****************
検索ボックス
*****************/

.listSearchArea {
	padding: 2% 2.5%;
	background-color: #322a23;
	display: table;
	width: 100%;
	box-sizing: border-box;
}

.listSearchList{
	display: table-cell;
	width: calc(100% - 50px);
}
.listSearchList > li{
	overflow: hidden;
	margin-bottom: 2%;
}
.listSearchList > li:last-child{
	margin-bottom: 0;
}

.listSearchArea .listSearchList .formsetBox > dt{
	float: left;
	width: 5em;
		margin-top: 0.4em;
	color: #ffffff;
}
.listSearchArea .listSearchList .formsetBox > dd{
	float: left;
	width: calc(100% - 5em);
	overflow: hidden;
	margin-bottom: 0;
}
.listSearchArea .listSearchList .formsetBox > dd p{
	margin: 0;
}
.listSearchArea .searchEndbtn{
	display: table-cell;
	width: 50px;
	padding-left: 10px;
	vertical-align: middle;
}
.listSearchArea .searchEndbtn .buttonBasic{
	height: 45px;
}

/*****************/

.containerTtlInner{
	background-color: #30becd;
	overflow: hidden;
	font-size: 1.4em;
	height: 60px;
}
.containerTtlInner .pagettlBox{
	float: left;
	width: 44px;
	margin-top: 6px;
	margin-left: 16px;
	border: #ffffff solid 2px;
	border-radius: 50%;
	overflow: hidden;
	background-color: #1493a1;
}
.containerTtlInner .pageTtl {
	line-height: 60px;
	color: #ffffff;
	margin: 0 0 0 74px;
}

.buttonBasic.disabled{
	pointer-events: none;
    background-color: #cccccc;
    color: #dcdcdc;
}

/*****************************/

.loglistWrap > li.infoonlyLine {
    padding: 5px 5px 5px 5px;
    border-radius: 15px 5px 5px 5px;
	background-color: #fff07e;
}
.loglistWrap > li.infoonlyLine .loglistInner .listboxFromto{
	width: 100%;
}
.loglistWrap > li.infoonlyLine .loglistInner .listboxFromto .mainname {
    margin-top: 0;
	color: #f17272;
}
.loglistWrap > li.infoonlyLine .toClasswrap.toClassarrow{
	clear: both;
	text-indent: 0;
}
.loglistWrap > li.infoonlyLine .toClasswrap.toClassarrow::before,
.loglistWrap > li.infoonlyLine .toClasswrap.toClassarrow::after{
	display: none;
}

/***受信ボックス*********************************/

.footerInner{
	position: relative;
}
.footerFixbtn{
	position: absolute;
	bottom: 120%;
	right: 0;
	border: #ffffff solid 2px;
	box-sizing: border-box;
	border-radius: 50%;
	overflow: hidden;

}
.footerFixbtn > a{
	display: block;
	background-color: #2a71b7;
	color: #ffffff;
	width: 5em;
	height: 5em;
	text-decoration: none;
}
.footerFixbtn > a .ffbicon{
	display: block;
	margin: 0 auto 0;
	padding-top: 0.5em;
	width: 2.5em;
}
.footerFixbtn > a .ffbtext{
	font-size: 0.9em;
	color: #ffffff;
	display: block;
	margin-top: 4px;
	line-height: 1.2;
	text-align: center;
}

.loglistWrap.inboxlistWrap{

}
.loglistWrap.inboxlistWrap > li {
	border-radius: 5px 5px 5px 5px;
	padding: 5px 5px 5px 5px;
}
.toMessage {
	clear: both;
	position: relative;
}
				.loglistWrap.inboxlistWrap > li .loglistInner .listboxFromto .comDate {
	float: none;
	text-align: left;
	width: auto;
}
				.loglistWrap.inboxlistWrap > li .loglistInner .listboxFromto .mainname {
	margin-top: 0;
	float: none;
	width: auto;
}
				.loglistWrap.inboxlistWrap > li .loglistInner .listboxFromto {
	float: left;
	width: calc(100% - 50px - 50px);
	line-height: 1.2;
	overflow: hidden;
}
				.loglistWrap.inboxlistWrap > li .loglistInner .listboxButton {
	float: right;
	width: 44px;
	margin-left: 6px;
}
.loglistWrap.inboxlistWrap > li .loglistInner .listboxButton .unopened {
	display: block;
	width: 100%;
	background-color: #FF8800;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	padding: 0.30em 0 0.20em;
	line-height: 1.2;
}
.loglistWrap.inboxlistWrap > li .loglistInner .listboxButton .opened {
	display: block;
	width: 100%;
	background-color: #2a71b7;
	color: #ffffff;
	text-decoration: none;
	text-align: center;
	border-radius: 5px;
	padding: 0.30em 0 0.20em;
	line-height: 1.2;
}

/***ポイント交換一覧*********************************/

.usepointlistWrap{
padding: 0;
box-sizing: border-box;
}
.usepointlistWrap > li{
width: 100%;
line-height: 1.4;
margin-top: 5px;
padding: 5px 5px 5px 5px;
background-color: #ffffff;
box-sizing: border-box;
border-radius: 5px 5px 5px 5px;
}
.usepointlistWrap > li:first-child{
margin-top: 0%;
}
.usepointlistWrap > li .usepointlistInner{
overflow: hidden;
}
.usepointlistWrap > li .usepointlistInner .listboxItem{
float: left;
width: 44px;
margin-right: 6px;
}
.usepointlistWrap > li .usepointlistInner .listboxItem .itemimg{
display: block;
width: 100%;
}
.usepointlistWrap > li .usepointlistInner .listboxItem .itemimg img{
width: 100%;
height: auto;
}
.usepointlistWrap > li .usepointlistInner .listboxThing{
padding-top: 0.05em;
float: left;
width: calc(100% - 60px - 50px);
}
.usepointlistWrap > li .usepointlistInner .listboxButton{
float: left;
width: 54px;
margin-left: 6px;
}
.usepointlistWrap > li .usepointlistInner .listboxButton .opened {
display: block;
width: 100%;
background-color: #FF8800;
color: #ffffff;
text-decoration: none;
text-align: center;
border-radius: 5px;
padding: 0.3em 0 0.2em;
line-height: 1.2;
}

.usepointlistWrap > li .usepointlistInner .listboxThing .itemname{
}
.usepointlistWrap > li .usepointlistInner .listboxThing .pointNum{
color: #007CD7;
font-size: 1.4em;
font-weight: bold;
line-height: 1.2;
}
.usepointlistWrap > li .usepointlistInner .listboxThing .pointNum .pointUnit{
font-size: 0.75em;
font-weight: normal;
}

.ticketnum{
margin-top: 11px;
float: left;
color: #ffffff;
}
.ticketnum .ticketicon{
position: relative;
	text-indent: 1.5em;
	display: inline-block;
	font-weight: bold;
	line-height: 1.4;
	font-size: 1.4em;
}
.ticketnum .ticketicon:before{
position: absolute;
	left: 0;
	content: "";
	display: inline-block;
	width: 1.4em;
	height: 1.4em;
	background-size: 1.4em auto;
	background-position: center center;
	background-repeat: no-repeat;
	background-image: url("/img/icon2_ticket_w.svg");
}
.ticketnum .ticketunit{
display: inline-block;
	margin-left: 0.1em;
	margin-right: 0.5em;
	font-size: 0.9em;
}

