@charset "utf-8";

* {
	font-size: 12px;
	font-family: Lucida Grande, Verdana, sans-serif;
}

/*-------------------------------
	Common Style
-------------------------------*/
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-family:Meiryo,"Hiragino Kaku Gothic ProN", sans-serif;
	font-style:normal;
	font-weight:normal;
	font-size:100%;
	vertical-align:baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display:block;
}

html{
    overflow-y:scroll;
}

blockquote, q {
	quotes:none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content:'';
	content:none;
}

input, textarea,{
	margin:0;
	padding:0;
}
input[type="text"]:focus{
  outline: 0;
}
ol, ul{
    list-style:none;
}

table{
    border-collapse:collapse;
    border-spacing:0;
	width:100%;
}

caption, th{
    text-align:left;
}
/*---LINK---*/
a{
	color:#000;
	text-decoration:none;
}
a:hover{
	/*color:#000;*/
	color:#970014;
	text-decoration:underline;
}
a:focus {
	outline:none;
}
/*---BTN---*/
/*RED*/
input.btn{
	background-image:-ms-linear-gradient(top, #970014 0%, #4C000B 100%);
	background-image:-moz-linear-gradient(top, #970014 0%, #4C000B 100%);
	background-image:-o-linear-gradient(top, #970014 0%, #4C000B 100%);
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #970014), color-stop(1, #4C000B));
	background-image:-webkit-linear-gradient(top, #970014 0%, #4C000B 100%);
	background-image:linear-gradient(to bottom, #970014 0%, #4C000B 100%);
	 -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#970014', endColorstr='#4C000B', GradientType=0)";
	border:none;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	cursor:pointer;
	color:#FFF;
	letter-spacing:0.1em;
	line-height:100%;
	vertical-align:middle;
}
input.btn:focus{
	outline:0;
	border:0;
}
/*BLUE*/
input.btn-blue{
	background-image:-ms-linear-gradient(top, #21409e 0%, #152966 100%);
	background-image:-moz-linear-gradient(top, #21409e 0%, #152966 100%);
	background-image:-o-linear-gradient(top, #21409e 0%, #152966 100%);
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #21409e), color-stop(1, #152966));
	background-image:-webkit-linear-gradient(top, #21409e 0%, #152966 100%);
	background-image:linear-gradient(to bottom, #21409e 0%, #152966 100%);
	 -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#21409e', endColorstr='#152966', GradientType=0)";
	border:none;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	cursor:pointer;
	color:#FFF;
	letter-spacing:0.1em;
	line-height:100%;
	vertical-align:middle;
}
input.btn-blue:focus{
	outline:0;
	border:0;
}
/*GLAY*/
input.btn-gray{
	background-image:-ms-linear-gradient(top, #909090 0%, #656565 100%);
	background-image:-moz-linear-gradient(top, #909090 0%, #656565 100%);
	background-image:-o-linear-gradient(top, #909090 0%, #656565 100%);
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #909090), color-stop(1, #656565));
	background-image:-webkit-linear-gradient(top, #909090 0%, #656565 100%);
	background-image:linear-gradient(to bottom, #909090 0%, #656565 100%);
	 -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#909090', endColorstr='#656565', GradientType=0)";
	border:none;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	cursor:pointer;
	color:#FFF;
	letter-spacing:0.1em;
	line-height:100%;
	vertical-align:middle;
}
input.btn-gray:focus{
	outline:0;
	border:0;
}
input.size-s{
	font-size:12px;
	padding:6px 16px;
}
input.size-m{
	font-size:14px;
	padding:8px 16px;
}
input.size-l{
	font-size:15px;
	padding:10px 50px;
}
input.size-q{
    font-size:15px;
    padding:8px 40px;
}
input.size-a{
	font-size:14px;
	padding:8px 16px;
	width: 200px;
}
input.btn:hover,
input.btn-blue:hover,
input.btn-gray:hover{
    opacity:0.7;
}
/*---FORM---*/
input.textbox-login{
	background:#FFF;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	border-right:none;
	border-left:none;
	border-bottom:none;
	border-top:1px solid #e5e5e5;
	box-shadow:inset 0 1px 3px #ececec;
	-moz-box-shadow:inset 0 1px 3px #ececec;
	-webkit-box-shadow:inset 0 1px 3px #ececec;
	font-size:12px;
	padding:10px 5px;
	width:96%;
}
input.textbox-login:hover{
	border-right:none;
	border-left:none;
	border-bottom:none;
	border-top:1px solid #dddddd;
}
input.textbox-accountinfo{
	background:#FFF;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	border-right:none;
	border-left:none;
	border-bottom:none;
	border-top:1px solid #e5e5e5;
	box-shadow:inset 0 1px 3px #ececec;
	-moz-box-shadow:inset 0 1px 3px #ececec;
	-webkit-box-shadow:inset 0 1px 3px #ececec;
	font-size:12px;
	padding:10px 5px;
	width:96%;
}
input.textbox-accountinfo:hover{
	border-right:none;
	border-left:none;
	border-bottom:none;
	border-top:1px solid #dddddd;
}
input.textbox{
	background:#FFF;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	border:1px solid #cdcdcd;
	box-shadow:inset 0 1px 3px #cdcdcd;
	-moz-box-shadow:inset 0 1px 3px #cdcdcd;
	-webkit-box-shadow:inset 0 1px 3px #cdcdcd;
	font-size:12px;
	padding:8px 5px;
}
input.textbox:hover{
	border:1px solid #cdcdcd;
}
input.textbox_disabled{
	background:#F5F5F5 !important;;
}

select.selectbox{
	background:#FFF;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	border:1px solid #cdcdcd;
	box-shadow:0 0 4px #eeeeee;
	-moz-box-shadow:0 0 4px #eeeeee;
	-webkit-box-shadow:0 0 4px #eeeeee;
	font-size:12px;
	padding:5px;
}
select.selectbox:hover{
	border:1px solid #cdcdcd;
}
select.selectbox:focus{
	outline:0;
}
dl.box-entry{}
dl.box-entry dt{
	display:inline-block;
	font-size:12px;
	font-weight:bold;
	margin-right:3px;
}
dl.box-entry dd{
	display:inline-block;
	margin-right:10px;
}
/*---MARGIN---*/
.mb5{margin-bottom:5px;}
.mb10{margin-bottom:10px;}
.mb15{margin-bottom:15px;}
.mb20{margin-bottom:20px;}
.mb25{margin-bottom:25px;}
.mb30{margin-bottom:30px;}
.mb35{margin-bottom:35px;}
.mb40{margin-bottom:40px;}
.mb45{margin-bottom:45px;}
.mb50{margin-bottom:50px;}
.ml5{margin-left:5px;}
.ml10{margin-left:10px;}
.ml15{margin-left:15px;}
.ml20{margin-left:20px;}
.ml25{margin-left:25px;}
.ml30{margin-left:30px;}
.ml35{margin-left:35px;}
.ml40{margin-left:40px;}
.ml45{margin-left:45px;}
.ml50{margin-left:50px;}
.mup5{margin:5px 0;}
.mup10{margin:10px 0;}
.mup15{margin:15px 0;}
.mup20{margin:20px 0;}
.mup25{margin:25px 0;}
.mup30{margin:30px 0;}
.mup35{margin:35px 0;}
.mup40{margin:40px 0;}
.mup45{margin:45px 0;}
.mup50{margin:50px 0;}
.mrn{margin-right:0 !important;}
/*---FONT---*/
.f10{font-size:10px;}
.f11{font-size:11px;}
.f12{font-size:12px;}
.f13{font-size:13px;}
.f14{font-size:14px;}
.f16{font-size:16px;}
.f18{font-size:18px;}
.fbold{font-weight:bold}

.plus{
	height:22px;
}
/*---WIDTH---*/
.w50{width:50px;}
.w105{width:105px;}
.w112{width:112px;}
.w130{width:130px;}
.w450{width:450px;}
/*---OTHER---*/
.right{text-align:right;}
.left{text-align:left;}
.center{text-align:center;}
.v-top{vertical-align:top;}
/*-------------------------------
	HEADER
-------------------------------*/
#header{
	overflow:hidden;
	position:relative;
	margin:13px auto;
	vertical-align:top;
	width:980px;
}
#header h1#logo{
	float:left;
	width:246px;
}
#header div.right-area{
	float:right;
}
#header p.contact{
	display:inline-block;
	font-size:11px;
	vertical-align:middle;
}
#header p.contact a:hover{
	color:#444;
}
#header div.btn{
	display:inline-block;
	margin:0 0 0 10px;
}
/*-------------------------------
	CONTAINER
-------------------------------*/
#container{
	background-image:-ms-linear-gradient(top, #D7E0DA 0%, #FFFFFF 20%);
	background-image:-moz-linear-gradient(top, #D7E0DA 0%, #FFFFFF 20%);
	background-image:-o-linear-gradient(top, #D7E0DA 0%, #FFFFFF 20%);
	background-image:-webkit-gradient(linear, left top, left bottom, color-stop(0, #D7E0DA), color-stop(1, #FFFFFF));
	background-image:-webkit-linear-gradient(top, #D7E0DA 0%, #FFFFFF 20%);
	background-image:linear-gradient(to bottom, #D7E0DA 0%, #FFFFFF 20%);
    -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#D7E0DA', endColorstr='#FFFFFF', GradientType=0)";
	overflow:hidden;
}
#container .inner{
	margin-left:auto;
	margin-right:auto;
	width:980px;
}
/*-------------------------------
	LOGIN-PAGE
-------------------------------*/
#container #login-contents{
	margin-top:50px;
	text-align:center;
}
#container #login-contents h2.name{
	color:#604d39;
	font-size:30px;
	font-weight:normal;
	line-height:100%;
	margin:0 0 23px 0;
}
#container #login-contents p.error{
	color:#cc0000;
	font-size:12px;
	margin:0 0 8px 0;
}
#container #login-contents p.note{
	color:#333;
	font-size:12px;
}
#container #login-contents p.error img{
	margin:0 6px -4px 0;
}
#container #login-contents div.box{
	background:#eaf0ed;
	margin:20px auto 35px auto;
	padding:30px 40px;
	width:405px;
}
#container #login-contents div.box dl{
	overflow:hidden;
	position:relative;
}
#container #login-contents div.box dl dt{
	float:left;
	font-size:12px;
	margin:10px 0 0 0;
	text-align:left;
	width:80px;
}
#container #login-contents div.box dl dd{
	margin-left:80px;
	text-align:left;
}
#container #login-contents #login-btn{
	margin:0 0 100px 0;
}
#AdobeDL table{
	margin:-50px 0 0 420px;
	font-size:12px;
	text-align:left;
	vertical-align:middle;
}
#AdobeDL table thead th{
    border-top-left-radius:10px;
    border-top-right-radius:10px;
	-webkit-border-top-left-radius:10px; 
    -webkit-border-top-right-radius:10px; 
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
	font-size:12px;
	font-weight:bold;
	padding:8px 0;
	text-align:center;
	vertical-align:middle;
}
#AdobeDL table thead th.w1{width:105px;}
#AdobeDL table thead th.w2{width:90px;}
#AdobeDL table tbody td{
	border-top:2px solid #FFF;
	font-size:12px;
	padding:10px 5px;
	vertical-align:top;
}
#AdobeDL table .brl{
	text-align:left;
	vertical-align:top;
}
/*-------------------------------
	CONTENTS(MEMBER-PAGE)
-------------------------------*/
/*---TAB-MENU---*/
#container #tab-menu{
	background:url(../image/tabmenu-bg.png) repeat-x 0 0;
	margin-top:10px;
}
#container #tab-menu ul.top{
	margin:0 auto;
	overflow:hidden;
	position:relative;
	width:980px;
}
#container #tab-menu ul.top li{
	color:#000;
	float:left;
	font-size:15px;
	font-weight:bold;
	line-height:100%;
	height:1px;
	text-align:center;
	padding:16px 5px 0 5px
}
#container #tab-menu ul.top li.on{
	background-image:-ms-radial-gradient(center, circle closest-side, #FFFFFF 0%, #DFDFDF 1000%);
	background-image:-moz-radial-gradient(center, circle closest-side, #FFFFFF 0%, #DFDFDF 1000%);
	background-image:-o-radial-gradient(center, circle closest-side, #FFFFFF 0%, #DFDFDF 1000%);
	background-image:-webkit-gradient(radial, center center, 0, center center, 140, color-stop(0, #FFFFFF), color-stop(10, #DFDFDF));
	background-image:-webkit-radial-gradient(center, circle closest-side, #FFFFFF 0%, #DFDFDF 1000%);
	background-image:radial-gradient(circle closest-side at center, #FFFFFF 0%, #DFDFDF 1000%);
	 -ms-filter: "progid:DXImageTransform.Microsoft.gradient(startColorstr='#DFDFDF', endColorstr='#ffffff', GradientType=0)";
    border-top-left-radius:3px;
    border-top-right-radius:3px;
	-webkit-border-top-left-radius:3px;
    -webkit-border-top-right-radius:3px;
    -moz-border-radius-topleft:3px;
    -moz-border-radius-topright:3px;
	padding:14px 5px 26px 5px !important;
}
#container #tab-menu ul.top li a{
	color:#FFF;
}
#container #tab-menu ul.top li a:hover{
	color:#FFFF44;
	text-decoration: none;
}
#container #tab-menu ul.bottom{
	background:#FFF;
	border-bottom:1px solid #d5dad7;
	border-left:1px solid #d5dad7;
	border-right:1px solid #d5dad7;
	box-shadow:0 3px 12px #d5dad7;
	-moz-box-shadow:0 3px 12px #d5dad7;
    -webkit-box-shadow:0 3px 12px #d5dad7;
	margin:0 auto;
	overflow:hidden;
	position:relative;
	padding:10px 25px;
	width:930px;
}
#container #tab-menu ul.bottom li{
	border-right:1px solid #aaa;
	float:left;
	font-size:14px;
	margin:0 22px 0 0;
	padding:0 22px 0 0;
}
#container #tab-menu ul.bottom li:last-child{
	border-right:none;
}
#container #tab-menu ul.bottom li a{
	color:#878787;
}
#container #tab-menu ul.bottom li a:hover{
	color:#970014;
	font-weight:bold;
	text-decoration: none;
	/*color:#000;*/
}
#container #contents{}
#container #contents p#welcome{
	font-size:12px;
	margin:10px 0;
}
#container #contents .box{
	background:#FFF;
	border:1px solid #d5dad7;
	box-shadow:0 3px 12px #d5dad7;
	-moz-box-shadow:0 3px 12px #d5dad7;
    -webkit-box-shadow:0 3px 12px #d5dad7;
	margin:0 0 30px 0;
}
#container #contents .box-top{
	margin-top:28px !important;
}
#container #contents .box .box-inner{
	border-top:3px solid #00226d;
	padding:8px 28px;
}
#container #contents .box .box-inner h2{
	border-bottom:1px dotted #dbe3de;
	color:#00216c;
	font-size:16px;
	font-weight:bold;
	padding-top:3px;
	padding-bottom:3px;
}
#container #contents .box .box-inner h2.news{
	background:url(../image/h2-icon-news.png) no-repeat 0 0;
	min-height:28px;
	padding-left:38px;
}
#container #contents .box .box-inner h2.occurrence{
	background:url(../image/h2_icon_calendar.jpg) no-repeat 0 0;
	background-size:28px 28px;
	min-height:28px;
	padding-left:38px;
}
#container #contents .box .box-inner h2.plan{
	background:url(../image/h2-icon-plan.png) no-repeat 0 0;
	line-height:30px;
	margin:0 0 10px 0;
	padding-left:30px;
}
#container #contents .box .box-inner h2.state{
	background:url(../image/h2-icon-state.png) no-repeat 0 0;
	line-height:25px;
	padding-left:30px;
}
#container #contents .box .box-inner h2.search{
	background:url(../image/h2-icon-info-search.png) no-repeat 0 0;
	line-height:28px;
	margin:0 0 15px 0;
	padding-left:41px;
}
#container #contents .box .box-inner h2.search-results{
	background:url(../image/h2-icon-info-search2.png) no-repeat 0 0;
	line-height:28px;
	margin:0 0 15px 0;
	padding-left:41px;
}
#container #contents .box .box-inner h2.edit{
	background:url(../image/h2-icon-info-edit.png) no-repeat 0 0;
	line-height:28px;
	margin:0 0 15px 0;
	padding-left:41px;
}
/*[法人名］様へのお知らせ*/
#container #contents #section-news{
	font-size:12px;
	overflow-y: auto;
	height: 175px;
}
#container #contents #section-news ul{
	margin-bottom:9px;
}
#container #contents #section-news ul li{
	background:url(../image/icon-news.png) no-repeat 0 14px;
	border-bottom:1px dotted #dbe3de;
	padding:9px 0 9px 18px;
}
#container #contents #section-news dl{
	overflow:hidden;
	position:relative;
	vertical-align:top;
}
#container #contents #section-news dl dt{
	color:#999;
	float:left;
	width:93px;
}
#container #contents #section-news dl dd{
	color:#000;
	margin-left:93px;
}
#container #contents #section-news dl dd a{
	color:#000;
}
#container #contents #section-news dl dd span.new{
	background:#990014;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	color:#FFF;
	display:inline-block;
	font-size:12px;
	line-height:100%;
	margin:0 0 0 9px;
	padding:4px 5px;
}
#container #contents #section-news dl dd span.clip{
	display:inline-block;
	margin:0 0 0 4px;
}
#container #contents #section-news dl dd span.clip img{
	margin:0 0 -4px 0;
}

#container #contents #section-news-info{
	font-size:12px;
	overflow-y: auto;
	height: 380px;
}


/*今日は何の日？*/
#container #contents #section-occurrence{
	font-size:12px;
	overflow-y: auto;
	height: 90px;
}
#container #contents #section-occurrence ul{
	margin-bottom:9px;
}
#container #contents #section-occurrence ul li{
	background:url(../image/icon-news.png) no-repeat 0 14px;
	border-bottom:1px dotted #dbe3de;
	padding:9px 0 9px 18px;
	background-color: #FFFFDD;

}
#container #contents #section-occurrence dl{
	overflow:hidden;
	position:relative;
	vertical-align:top;
}
#container #contents #section-occurrence dl dt{
	color:#999;
	float:left;
	width:93px;

}
#container #contents #section-occurrence dl dd{
	color:#000;
	margin-left:93px;

}
#container #contents #section-occurrence dl dd a{
	color:#000;
}
#container #contents #section-occurrence dl dd span{
    white-space: nowrap;
}

#container #contents #section-occurrence dl dd span.new{
	background:#990014;
	border-radius:3px;
	-webkit-border-radius:3px;
	-moz-border-radius:3px;
	color:#FFF;
	display:inline-block;
	font-size:12px;
	line-height:100%;
	margin:0 0 0 9px;
	padding:4px 5px;
}
#container #contents #section-occurrence dl dd span.clip{
	display:inline-block;
	margin:0 0 0 4px;
}
#container #contents #section-occurrence dl dd span.clip img{
	margin:0 0 -4px 0;
}



/*担当営業者のプロフィール*/
#container #contents #section-profile{
	margin:0 0 30px 0;
	overflow:hidden;
}
#container #contents #section-profile .msg{
	width:623px;
	float:left;
}
#container #contents #section-profile .msg p{
	background:#eaf5fc;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	font-size:12px;
	line-height:22px;
	padding:21px 17px;
}
#container #contents #section-profile .fukidashi{
	width:20px;
	float:left;
	margin-top:30px;
	margin-left:-2px;
}
#container #contents #section-profile .profile-pic{
	width:88px;
	float:left;
	margin-top:10px;
}
#container #contents #section-profile .profile-detail{
	width:248px;
	float:left;
}
#container #contents #section-profile .profile-detail h3{
	background:#334e8a;
	border-radius:10px;
	-webkit-border-radius:10px;
	-moz-border-radius:10px;
	color:#FFF;
	margin:0 0 15px 0;
	font-size:16px;
	text-align:center;
	padding:12px 0;
}
#container #contents #section-profile .profile-detail p{
	font-size:14px;
	margin:0 0 10px 14px;
}
/*法人契約料金プラン*/
div.table-plan{
	margin:5px 0 10px 0;
}
div.table-plan .w1{
	width:10%;
}
div.table-plan .w2{
	width:22%;
}
div.table-plan table.plan{
	background:url(../image/table-diagonal.png) no-repeat 0px 0px;
}
div.table-plan table th,
div.table-plan table td{
	padding:8px 0;
	text-align:center;
	vertical-align:middle;
	line-height:120%;
}
div.table-plan table th.br,
div.table-plan table td.br{
	border-right:2px solid #FFF;
}
div.table-plan th.c1{background:#e5e5e5;}
div.table-plan th.c2{background:#f2f2f2;}
div.table-plan th.p1{background:#92c949; color:#FFF;}
div.table-plan th.p2{background:#55ae38; color:#FFF;}
div.table-plan th.p3{background:#338c60; color:#FFF;}
div.table-plan th.p4{background:#43a0db; color:#FFF;}
div.table-plan td.p1-1{background:#d3e9b6;}
div.table-plan td.p1-2{background:#e9f4db;}
div.table-plan td.p2-1{background:#bbdfaf;}
div.table-plan td.p2-2{background:#ddefd7;}
div.table-plan td.p3-1{background:#add1bf;}
div.table-plan td.p3-2{background:#d6e8df;}
div.table-plan td.p4-1{background:#b4d9f1;}
div.table-plan td.p4-2{background:#d9ecf8;}
div.table-plan td.p0{background:#f5f5f5;}
div.table-plan table th.head-1{
	line-height:100%;
	height:30px;
	padding:0 18px 0 0;
}
div.table-plan table th.head-2{
	background:#dbf4cf;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
	-webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:10px;
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
	line-height:100%;
	padding:0;
}
div.table-plan table th.head-3{
	background:#e0f5f9;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
	-webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:10px;
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
	line-height:100%;
	padding:0;
	border:none !important;
}
div.table-plan table th.head-4{
	line-height:100%;
	height:33px;
	vertical-align:bottom !important;
}
/*在籍状況*/
#section-state{position:relative;}
#section-state .total{
	right:22px;
	top:8px;
	position:absolute;
	font-size:18px;
}
#section-state .total em{
	color:#00216c;
	font-weight:bold;
}
span.compare{
	display:inline-block;
	padding-top:10px;
}

.wid-xs{width:72px;}
.wid-s{width:175px;}
.wid-m{width:200px;}
.wid-l{width:240px;}
.wid-xl{width:665px;}

/*情報検索*/
#section-search{position:relative;}
#section-search csv{
	right:22px;
	top:8px;
	position:absolute;
}
#section-search #download-msg{
	right:22px;
	top:32px;
	position:absolute;
	font-size:10px;
}
#section-search .w1{width:70px;}
#section-search .w2{width:100px;}
#section-search .w3{width:227px;}
#section-search .w4{width:340px;}
#section-search .w5{width:250px;}
#section-search .w6{width:150px;}
#section-search .w7{width:360px;}
#section-search .w8{width:324px;}
#section-search .w9{width:418px;}

/*検索結果*/
#section-search-results table{
	margin:0 0 20px 0;
}
#section-search-results table thead th{
	background:#e0f5f9;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
	-webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:10px;
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
	font-size:11px;
	font-weight:bold;
	padding:8px 0;
	text-align:center;
	vertical-align:middle;
}
#section-search-results table thead th.w1{width:95px;}
#section-search-results table thead th.w2{width:89px;}
#section-search-results table thead th.w3{width:126px;}
#section-search-results table thead th.w4{width:44px;}
#section-search-results table thead th.w5{width:80px;}
#section-search-results table thead th.w6{width:88px;}
#section-search-results table thead th.w7{width:80px;}
#section-search-results table thead th.w8{width:78px;}
#section-search-results table thead th.w9{width:105px;}
#section-search-results table thead th.w10{width:80px;}
#section-search-results table thead th.w11{width:40px;}
#section-search-results table tbody td{
	border-top:2px solid #FFF;
	font-size:11px;
	padding:10px 5px;
	text-align:center;
	vertical-align:middle;
}
#section-search-results table tbody tr.c1{
	background:#e5e5e5;
}
#section-search-results table tbody tr.c2{
	background:#f5f5f5;
}
#section-search-results table .br{
	border-right:2px solid #FFF;
	text-align:center;
}
#section-search-results table .brl{
	border-right:2px solid #FFF;
	text-align:left;
}
.bottom-area{
	margin:0 0 5px 0;
	overflow:hidden;
	position:relative;
}
#section-search-results .page-indicate{
	float:left;
	font-size:13px;
}
#section-search-results .page-indicate input{
	text-align:center;
}
#section-search-results .paging{
	float:right;
	margin:10px 0 0 0;
}
#section-search-results .paging ul{
	overflow:hidden;
	position:relative;
}
#section-search-results .paging ul li{
	float:left;
	font-size:13px;
	padding:0 6px;
}
#section-search-results .paging ul li img{
	margin-top:3px;
}
#section-search-results .paging ul li.back{
	margin-right:30px;
}
#section-search-results .paging ul li.next{
	margin-left:30px;
}
#section-search-results .paging ul li span{
	color:#00216c;
	font-weight:bold;
}

#section-search-results .paging ul li a{
	color:#666666;
}
#section-search-results .paging ul li a:hover img{
	opacity:0.7;
}
/*利用者情報修正*/
#section-edit{}
#section-edit .w1{width:394px;}
#section-edit .w2{width:273px;}
#section-edit .w3{}
#section-edit .w4{width:368px;}
#section-edit .w5{width:25px;}
#section-edit .w6{width:25px;}
#section-edit .w7{width:425px;}

#section-edit dl.box-entry{
	margin-bottom:8px;
}
#section-edit dl.box-entry dt.first{
	width:120px;
}
#section-edit dl.box-entry dd span{
	font-size:12px;
	font-weight:bold;
}
#section-edit div.btn-area{
	margin:0 auto 10px auto;
	text-align:center;
}
#section-edit ul.error-message{
	margin-bottom:15px;
}
#section-edit ul.error-message li{
	background:url(../image/icon-error.png) no-repeat 0 0;
	color:#cc0000;
	font-size:12px;
	padding-left:25px;
	margin-bottom:5px;
}
#section-edit ul.message{
	margin-bottom:15px;
}
#section-edit ul.message li{
	color:#cc0000;
	font-size:14px;
	font-weight:bold;
	padding-left:0px;
	margin-bottom:5px;
}
#section-edit p.error{
	color:#cc0000;
	font-size:10px;
}
.errorMessage{
    color: #cc0000;
    font-size: 12px;
    font-weight: normal;
}

/*利用者情報修正確認＆完了*/
#section-edit-conf{}
#section-edit-conf .w1{width:394px;}
#section-edit-conf .w2{width:273px;}
#section-edit-conf .w3{}

#section-edit-conf dl.box-entry{
	border-bottom:1px dotted #dbe3de;
	margin-bottom:10px;
}
#section-edit-conf dl.box-entry dt{
	/*vertical-align:middle;*/
}
#section-edit-conf dl.box-entry dt.first{
	width:120px;
}
#section-edit-conf div.btn-area{
	margin:0 auto 10px auto;
	text-align:center;
}
#section-edit-conf ul.error-message{
	margin-bottom:15px;
}
#section-edit-conf ul.error-message li{
	background:url(../image/icon-error.png) no-repeat 0 0;
	color:#cc0000;
	font-size:12px;
	padding-left:25px;
	margin-bottom:5px;
}
#section-edit-conf ul.message{
	margin-bottom:15px;
}
#section-edit-conf ul.message li{
	color:#cc0000;
	font-size:14px;
	font-weight:bold;
	padding-left:0px;
	margin-bottom:5px;
}
#section-edit-conf ul.blue-message{
	margin-bottom:15px;
}
#section-edit-conf ul.blue-message li{
	color:#00216c;
	font-size:14px;
	font-weight:bold;
	padding-left:0px;
	margin-bottom:5px;
}

/*他所属ありの場合のアラートメッセージ*/
#section-edit-conf ul.add-message{
	margin-bottom:15px;
}
#section-edit-conf ul.add-message li{
	color:#00216c;
	font-size:12px;
	padding-left:25px;
	margin-bottom:5px;
}
#section-edit-conf ul.alert-message{
	margin-bottom:15px;
}
#section-edit-conf ul.alert-message li{
	background:url(../image/icon-question.png) no-repeat 0 0;
	color:#cc0000;
	font-size:12px;
	padding-left:25px;
	margin-bottom:5px;
}

/*利用者情報修正確認完了*/
#section-edit-conp{}
#section-edit-conp .w1{width:394px;}
#section-edit-conp .w2{width:273px;}
#section-edit-conp .w3{}

#section-edit-conp dl.box-entry{
	/*border-bottom:1px dotted #dbe3de;*/
	background:#e5e5e5;
	/*background:#f5f5f5;*/
	margin-bottom:0px;
	height:40px;
}
#section-edit-conp dl.box-entry dt{
	vertical-align:middle;
}
#section-edit-conp dl.box-entry dt.first{
	width:110px;
}
#section-edit-conp div.btn-area{
	margin:0 auto 10px auto;
	text-align:center;
}
#section-edit-conp ul.message{
	margin-bottom:15px;
}
#section-edit-conp ul.message li{
	color:#00216c;
	font-size:14px;
	font-weight:bold;
	padding-left:0px;
	margin-bottom:5px;
}

/*レポート情報検索*/
#reports-search{}
#reports-search .w1{width:300px;}
#reports-search .w2{width:350px;}
#reports-search .w3{}

#reports-search dl.box-entry{
	margin-bottom:8px;
}
#reports-search dl.box-entry dt.first{
	width:110px;
}
#reports-search dl.box-entry dd span{
	font-size:12px;
	font-weight:bold;
}
#reports-search div.btn-area{
	margin:0 auto 10px auto;
	text-align:center;
}
#reports-search ul.error-message{
	margin-bottom:15px;
}
#reports-search ul.error-message li{
	background:url(../image/icon-error.png) no-repeat 0 0;
	color:#cc0000;
	font-size:12px;
	padding-left:25px;
	margin-bottom:5px;
}
#reports-search p.error{
	color:#cc0000;
	font-size:10px;
}
/*レポート検索結果*/
#reports-search-results table{
	margin:0 0 20px 0;
}
#section-search #csv{
	right:22px;
	top:8px;
	position:absolute;
}
#reports-search-results table thead th{
	background:#e0f5f9;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
	-webkit-border-top-left-radius:10px;
    -webkit-border-top-right-radius:10px;
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
	font-size:11px;
	font-weight:bold;
	padding:8px 0;
	text-align:center;
	vertical-align:middle;
}
#reports-search-results table thead th.w1{width:50px;}
#reports-search-results table thead th.w2{width:80px;}
#reports-search-results table thead th.w3{width:250px;}
#reports-search-results table thead th.w4{width:70px;}
#reports-search-results table thead th.w5{}
#reports-search-results table tbody td{
	border-top:2px solid #FFF;
	font-size:11px;
	padding:10px 5px;
	vertical-align:middle;
}
#reports-search-results table tbody tr.c1{
	background:#e5e5e5;
}
#reports-search-results table tbody tr.c2{
	background:#f5f5f5;
}
#reports-search-results table .brl{
	border-right:2px solid #FFF;
	text-align:left;
	word-break:break-all;
}
#reports-search-results table .brc{
	border-right:2px solid #FFF;
	text-align:center;
}
#reports-search-results div.btn-area{
	margin:0 auto 10px auto;
	text-align:right;
}

/*-------------------------------
	PAGETOP
-------------------------------*/
#pagetop{
	margin:0 auto;
	padding:0 0 0 0;
	width:980px;
}
#pagetop p{
	color:#666;
	font-size:12px;
	text-align:right;
}
#pagetop p span{
	color:#ccc;
	font-size:8px;
}
#pagetop p a{
	color:#666;
}
/*-------------------------------
	FOOTER
-------------------------------*/
#footer{
	background:#FFF;
	color:#666;
	font-size:10px;
	margin:25px auto 30px auto;
	overflow:hidden;
	position:relative;
	width:980px;
}
#footer ul.navi{
	float:left;
	overflow:hidden;
	position:relative;
}
#footer ul.navi li{
	border-right:1px solid #666;
	float:left;
	margin:0 8px 0 0;
	padding:0 8px 0 0;
}
#footer ul.navi li:last-child{
	border-right:none;
}
#footer ul.navi li a{
	color:#666;
}
div#copyright{
	float:right;
}

/*select2*/
.select2-drop .select2-search{
 display:none;
}
.select2-container {
    margin: 0;
    position: relative;
    display: inline-block;
    /* inline-block for ie7 */
    zoom: 1;
    *display: inline;
    vertical-align: middle;
}

.select2-container,
.select2-drop,
.select2-search,
.select2-search input {
  /*
    Force border-box so that % widths fit the parent
    container without overlap because of margin/padding.
    More Info : http://www.quirksmode.org/css/box.html
  */
  -webkit-box-sizing: border-box; /* webkit */
     -moz-box-sizing: border-box; /* firefox */
          box-sizing: border-box; /* css3 */
}

.select2-container .select2-choice {
    display: block;
   	font-size:12px;
	padding:0 8px;
	line-height:26px;
    overflow: hidden;
    position: relative;
    border: 1px solid #cdcdcd;
    white-space: nowrap;
    text-decoration: none;
	-moz-border-radius:3px;
    -webkit-border-radius:3px;
    border-radius:3px;
	background-clip: padding-box;
    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
    background-color: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.5, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 50%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#ffffff', endColorstr = '#eeeeee', GradientType = 0);
    background-image: linear-gradient(to top, #eee 0%, #fff 50%);
}
.select-w1{
	width:350px !important;
}
.select-w2{
	width:280px !important;
}
.select-w3{
	width:150px !important;
}
.select-w4{
	width:252px !important;
}
.select-w5{
	width:190px !important;
}
.select-w6{
	width:100px !important;
}
html[dir="rtl"] .select2-container .select2-choice {
    padding: 0 8px 0 0;
   	font-size:12px;
}

.select2-container.select2-drop-above .select2-choice {
    border-bottom-color: #ccc;
   	font-size:12px;
    border-radius: 0 0 4px 4px;

    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #eee), color-stop(0.9, #fff));
    background-image: -webkit-linear-gradient(center bottom, #eee 0%, #fff 90%);
    background-image: -moz-linear-gradient(center bottom, #eee 0%, #fff 90%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#eeeeee', GradientType=0);
    background-image: linear-gradient(to bottom, #eee 0%, #fff 90%);
}

.select2-container.select2-allowclear .select2-choice .select2-chosen {
    margin-right: 42px;
}

.select2-container .select2-choice > .select2-chosen {
    margin-right: 26px;
    display: block;
    overflow: hidden;

    white-space: nowrap;

    text-overflow: ellipsis;
    float: none;
    width: auto;
}

html[dir="rtl"] .select2-container .select2-choice > .select2-chosen {
    margin-left: 26px;
    margin-right: 0;
}

.select2-container .select2-choice abbr {
    display: none;
    width: 12px;
    height: 12px;
    position: absolute;
    right: 24px;
    top: 8px;

    font-size: 1px;
    text-decoration: none;

    border: 0;
    background:  url('../image/select2.png') right top no-repeat;
    cursor: pointer;
    outline: 0;
}

.select2-container.select2-allowclear .select2-choice abbr {
    display: inline-block;
}

.select2-container .select2-choice abbr:hover {
    background-position: right -11px;
    cursor: pointer;
}

.select2-drop-mask {
    border: 0;
    margin: 0;
    padding: 0;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 9998;
    /* styles required for IE to work */
    background-color: #fff;
    filter: alpha(opacity=0);
}

.select2-drop {
    width: 100%;
    margin-top: -1px;
    position: absolute;
    z-index: 9999;
    top: 100%;

    background: #fff;
    color: #000;
    border: 1px solid #aaa;
    border-top: 0;

    border-radius: 0 0 4px 4px;

    -webkit-box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 4px 5px rgba(0, 0, 0, .15);
}

.select2-drop.select2-drop-above {
    margin-top: 1px;
    border-top: 1px solid #aaa;
    border-bottom: 0;

    border-radius: 4px 4px 0 0;

    -webkit-box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
            box-shadow: 0 -4px 5px rgba(0, 0, 0, .15);
}

.select2-drop-active {
    border: 1px solid #ccc;
    border-top: none;
}

.select2-drop.select2-drop-above.select2-drop-active {
    border-top: 1px solid #ccc;
}

.select2-drop-auto-width {
    border-top: 1px solid #aaa;
    width: auto;
}

.select2-drop-auto-width .select2-search {
    padding-top: 4px;
}

.select2-container .select2-choice .select2-arrow {
    display: inline-block;
    width: 18px;
    height: 100%;
    position: absolute;
    right: 0;
    top: 0;
	padding:0 5px;

    border-left: 1px solid #cdcdcd;
    border-radius: 0 4px 4px 0;

    background-clip: padding-box;

    background: #fff;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #f3f3f3), color-stop(1, #fff));
    background-image: -webkit-linear-gradient(center bottom, #f3f3f3 0%, #fff 100%);
    background-image: -moz-linear-gradient(center bottom, #f3f3f3 0%, #fff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr = '#f3f3f3', endColorstr = '#fff', GradientType = 0);
    background-image: linear-gradient(to top, #f3f3f3 0%, #fff 100%);
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow {
    left: 0;
    right: auto;

    border-left: none;
    border-right: 1px solid #ccc;
    border-radius: 4px 0 0 4px;
}

.select2-container .select2-choice .select2-arrow b {
    display: block;
    width: 100%;
    height: 100%;
    background: url('../image/select2.png') no-repeat 0 1px;
}

html[dir="rtl"] .select2-container .select2-choice .select2-arrow b {
    background-position: 2px 1px;
}

.select2-search {
    display: inline-block;
    width: 100%;
    min-height: 26px;
    margin: 0;
    padding-left: 4px;
    padding-right: 4px;

    position: relative;
    z-index: 10000;

    white-space: nowrap;
}

.select2-search input {
    width: 100%;
    height: auto !important;
    min-height: 26px;
    padding: 4px 20px 4px 5px;
    margin: 0;

    outline: 0;
    font-family: sans-serif;
    font-size: 1em;

    border: 1px solid #aaa;
    border-radius: 0;

    -webkit-box-shadow: none;
            box-shadow: none;

    background: #fff url('../image/select2.png') no-repeat 100% -22px;
    background: url('../image/select2.png') no-repeat 100% -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('../image/select2.png') no-repeat 100% -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../image/select2.png') no-repeat 100% -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../image/select2.png') no-repeat 100% -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

html[dir="rtl"] .select2-search input {
    padding: 4px 5px 4px 20px;

    background: #fff url('../image/select2.png') no-repeat -37px -22px;
    background: url('../image/select2.png') no-repeat -37px -22px, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('../image/select2.png') no-repeat -37px -22px, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../image/select2.png') no-repeat -37px -22px, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../image/select2.png') no-repeat -37px -22px, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-drop.select2-drop-above .select2-search input {
    margin-top: 4px;
}

.select2-search input.select2-active {
    background: #fff url('../image/select2-spinner.gif') no-repeat 100%;
    background: url('../image/select2-spinner.gif') no-repeat 100%, -webkit-gradient(linear, left bottom, left top, color-stop(0.85, #fff), color-stop(0.99, #eee));
    background: url('../image/select2-spinner.gif') no-repeat 100%, -webkit-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../image/select2-spinner.gif') no-repeat 100%, -moz-linear-gradient(center bottom, #fff 85%, #eee 99%);
    background: url('../image/select2-spinner.gif') no-repeat 100%, linear-gradient(to bottom, #fff 85%, #eee 99%) 0 0;
}

.select2-container-active .select2-choice,
.select2-container-active .select2-choices {
    border: 1px solid #ccc;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}

.select2-dropdown-open .select2-choice {
    border-bottom-color: transparent;
    -webkit-box-shadow: 0 1px 0 #fff inset;
            box-shadow: 0 1px 0 #fff inset;

    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;

    background-color: #eee;
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center bottom, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center bottom, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to top, #fff 0%, #eee 50%);
}

.select2-dropdown-open.select2-drop-above .select2-choice,
.select2-dropdown-open.select2-drop-above .select2-choices {
    border: 1px solid #ccc;
    border-top-color: transparent;

    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fff), color-stop(0.5, #eee));
    background-image: -webkit-linear-gradient(center top, #fff 0%, #eee 50%);
    background-image: -moz-linear-gradient(center top, #fff 0%, #eee 50%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#ffffff', GradientType=0);
    background-image: linear-gradient(to bottom, #fff 0%, #eee 50%);
}

.select2-dropdown-open .select2-choice .select2-arrow {
    background: transparent;
    border-left: none;
    filter: none;
}
html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow {
    border-right: none;
}

.select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -18px 1px;
}

html[dir="rtl"] .select2-dropdown-open .select2-choice .select2-arrow b {
    background-position: -16px 1px;
}

.select2-hidden-accessible {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

/* results */
.select2-results {
    max-height: 200px;
    padding: 0 0 0 4px;
    margin: 4px 4px 4px 0;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

html[dir="rtl"] .select2-results {
    padding: 0 4px 0 0;
    margin: 4px 0 4px 4px;
}

.select2-results ul.select2-result-sub {
    margin: 0;
    padding-left: 0;
}

.select2-results li {
    list-style: none;
    display: list-item;
    background-image: none;
}

.select2-results li.select2-result-with-children > .select2-result-label {
/*    font-weight: bold;
*/}

.select2-results .select2-result-label {
    padding: 3px 7px 4px;
    margin: 0;
    cursor: pointer;

    min-height: 1em;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;
}

.select2-results-dept-1 .select2-result-label { padding-left: 20px }
.select2-results-dept-2 .select2-result-label { padding-left: 40px }
.select2-results-dept-3 .select2-result-label { padding-left: 60px }
.select2-results-dept-4 .select2-result-label { padding-left: 80px }
.select2-results-dept-5 .select2-result-label { padding-left: 100px }
.select2-results-dept-6 .select2-result-label { padding-left: 110px }
.select2-results-dept-7 .select2-result-label { padding-left: 120px }

.select2-results .select2-highlighted {
    background: #3875d7;
    color: #fff;
}

.select2-results li em {
    background: #feffde;
    font-style: normal;
}

.select2-results .select2-highlighted em {
    background: transparent;
}

.select2-results .select2-highlighted ul {
    background: #fff;
    color: #000;
}

.select2-results .select2-no-results,
.select2-results .select2-searching,
.select2-results .select2-ajax-error,
.select2-results .select2-selection-limit {
    background: #f4f4f4;
    display: list-item;
    padding-left: 5px;
}

/*
disabled look for disabled choices in the results dropdown
*/
.select2-results .select2-disabled.select2-highlighted {
    color: #666;
    background: #f4f4f4;
    display: list-item;
    cursor: default;
}
.select2-results .select2-disabled {
  background: #f4f4f4;
  display: list-item;
  cursor: default;
}

.select2-results .select2-selected {
    display: none;
}

.select2-more-results.select2-active {
    background: #f4f4f4 url('../image/select2-spinner.gif') no-repeat 100%;
}

.select2-results .select2-ajax-error {
    background: rgba(255, 50, 50, .2);
}

.select2-more-results {
    background: #f4f4f4;
    display: list-item;
}

/* disabled styles */

.select2-container.select2-container-disabled .select2-choice {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container.select2-container-disabled .select2-choice .select2-arrow {
    background-color: #f4f4f4;
    background-image: none;
    border-left: 0;
}

.select2-container.select2-container-disabled .select2-choice abbr {
    display: none;
}


/* multiselect */

.select2-container-multi .select2-choices {
    height: auto !important;
    height: 1%;
    margin: 0;
    padding: 0 5px 0 0;
    position: relative;

    border: 1px solid #aaa;
    cursor: text;
    overflow: hidden;

    background-color: #fff;
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(1%, #eee), color-stop(15%, #fff));
    background-image: -webkit-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: -moz-linear-gradient(top, #eee 1%, #fff 15%);
    background-image: linear-gradient(to bottom, #eee 1%, #fff 15%);
}

html[dir="rtl"] .select2-container-multi .select2-choices {
    padding: 0 0 0 5px;
}

.select2-locked {
  padding: 3px 5px 3px 5px !important;
}

.select2-container-multi .select2-choices {
    min-height: 26px;
}

.select2-container-multi.select2-container-active .select2-choices {
    border: 1px solid #ccc;
    outline: none;

    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, .3);
            box-shadow: 0 0 5px rgba(0, 0, 0, .3);
}
.select2-container-multi .select2-choices li {
    float: left;
    list-style: none;
}
html[dir="rtl"] .select2-container-multi .select2-choices li
{
    float: right;
}
.select2-container-multi .select2-choices .select2-search-field {
    margin: 0;
    padding: 0;
    white-space: nowrap;
}

.select2-container-multi .select2-choices .select2-search-field input {
    padding: 5px;
    margin: 1px 0;

    font-family: sans-serif;
    font-size: 100%;
    color: #666;
    outline: 0;
    border: 0;
    -webkit-box-shadow: none;
            box-shadow: none;
    background: transparent !important;
}

.select2-container-multi .select2-choices .select2-search-field input.select2-active {
    background: #fff url('../image/select2-spinner.gif') no-repeat 100% !important;
}

.select2-default {
    color: #999 !important;
}

.select2-container-multi .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 18px;
    margin: 3px 0 3px 5px;
    position: relative;

    line-height: 13px;
    color: #333;
    cursor: default;
    border: 1px solid #aaaaaa;

    border-radius: 3px;

    -webkit-box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);
            box-shadow: 0 0 2px #fff inset, 0 1px 0 rgba(0, 0, 0, 0.05);

    background-clip: padding-box;

    -webkit-touch-callout: none;
      -webkit-user-select: none;
         -moz-user-select: none;
          -ms-user-select: none;
              user-select: none;

    background-color: #e4e4e4;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#f4f4f4', GradientType=0);
    background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, color-stop(20%, #f4f4f4), color-stop(50%, #f0f0f0), color-stop(52%, #e8e8e8), color-stop(100%, #eee));
    background-image: -webkit-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: -moz-linear-gradient(top, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
    background-image: linear-gradient(to bottom, #f4f4f4 20%, #f0f0f0 50%, #e8e8e8 52%, #eee 100%);
}
html[dir="rtl"] .select2-container-multi .select2-choices .select2-search-choice
{
    margin: 3px 5px 3px 0;
    padding: 3px 18px 3px 5px;
}
.select2-container-multi .select2-choices .select2-search-choice .select2-chosen {
    cursor: default;
}
.select2-container-multi .select2-choices .select2-search-choice-focus {
    background: #d4d4d4;
}

.select2-search-choice-close {
    display: block;
    width: 12px;
    height: 13px;
    position: absolute;
    right: 3px;
    top: 4px;

    font-size: 1px;
    outline: none;
    background: url('../image/select2.png') right top no-repeat;
}
html[dir="rtl"] .select2-search-choice-close {
    right: auto;
    left: 3px;
}

.select2-container-multi .select2-search-choice-close {
    left: 3px;
}

html[dir="rtl"] .select2-container-multi .select2-search-choice-close {
    left: auto;
    right: 2px;
}

.select2-container-multi .select2-choices .select2-search-choice .select2-search-choice-close:hover {
  background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice-focus .select2-search-choice-close {
    background-position: right -11px;
}

/* disabled styles */
.select2-container-multi.select2-container-disabled .select2-choices {
    background-color: #f4f4f4;
    background-image: none;
    border: 1px solid #ddd;
    cursor: default;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice {
    padding: 3px 5px 3px 5px;
    border: 1px solid #ddd;
    background-image: none;
    background-color: #f4f4f4;
}

.select2-container-multi.select2-container-disabled .select2-choices .select2-search-choice .select2-search-choice-close {    display: none;
    background: none;
}
/* end multiselect */


.select2-result-selectable .select2-match,
.select2-result-unselectable .select2-match {
    text-decoration: underline;
}

.select2-offscreen, .select2-offscreen:focus {
    clip: rect(0 0 0 0) !important;
    width: 1px !important;
    height: 1px !important;
    border: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    outline: 0 !important;
    left: 0px !important;
    top: 0px !important;
}

.select2-display-none {
    display: none;
}

.select2-measure-scrollbar {
    position: absolute;
    top: -10000px;
    left: -10000px;
    width: 100px;
    height: 100px;
    overflow: scroll;
}

/* Retina-ize icons */

@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min-resolution: 2dppx)  {
    .select2-search input,
    .select2-search-choice-close,
    .select2-container .select2-choice abbr,
    .select2-container .select2-choice .select2-arrow b {
        background-image: url('../image/select2x2.png') !important;
        background-repeat: no-repeat !important;
        background-size: 60px 40px !important;
    }

    .select2-search input {
        background-position: 100% -21px !important;
    }
}


/* チェックボックステスト*/
.cbox {
	padding: 6px;
}
.cbox input[type=checkbox] {
    display: inline-block;
	margin-right: 6px;
}

.cbox input[type=checkbox] + label {
    position: relative;

    display: inline-block;
    margin-right: 12px;

    font-size: 14px;
    line-height: 30px;

    cursor: pointer;
}

.cbox.shinsei,
.right.w6.shinsei {
	width:120px;
	position: relative;
	top:25px;
}

@media (min-width: 1px) {
    .cbox input[type=checkbox] {
        display: none;
        margin: 0;
    }
    .cbox input[type=checkbox] + label {
        padding: 10 10 10 10px;
    }
    .cbox input[type=checkbox] + label::before {
        content: "";
        position: absolute;
        top: 50%;
        left: 0;

        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        width: 18px;
        height: 18px;
	    margin-left: -3px;
	    margin-top: -9px;

        background: #FFF;
        border: 2px solid #ccc;
    }
    .cbox input[type=checkbox]:checked + label::after {
        content: "";
        position: absolute;
        top: 50%;

        -moz-box-sizing: border-box;
        box-sizing: border-box;
        display: block;
        left: 3px;

        width: 17px;
        height: 9px;
        margin-left: -5px;
        margin-top: -10px;
        border-left: 3px solid  #00216c;
        border-bottom: 3px solid  #00216c;

        -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }
    .test-choice {
	    background-image: linear-gradient(to top, #eee 0%, #f00 50%) !important;
	}
    .test-arrow{
	    background-image: linear-gradient(to top, #f3f3f3 0%, #f00 100%) !important;
    }

    .tdtable {
		background:url(../image/h2-icon-news.png) no-repeat 0 0;
		font-size:16px;
		font-weight:bold;
		min-height:28px;
		width: 100%;
		padding-left:38px;
		padding-top:3px;
		padding-bottom:3px;
    }
    .tdtable2 {
    	color:#777;
		font-size:11px;
		font-style:normal;
		font-weight:normal;
		width: 100%;
		padding-left:10px;
		padding-top:3px;
		padding-bottom:3px;
		white-space: nowrap;
    }



    .trtable{
		background-color: #FFFFFF;
		color:#00216c;
		padding-bottom:3px;
		margin: 0px 10px 20px 0px;


    }
    .datetime {
		font-size: 13px;
		align :"right";
		text-align: right;
	    width: 100px;
	}
    .rightsort {
		float:right;
	}
	.inner-small {
	    margin-top: 5px;
		margin-bottom: 0px;
	    margin-left: auto;
	    margin-right: auto;
	    padding: 14px 0px 0px 0px;
	    width: 750px;
	}
	.boxcenter{
	    margin-left: auto;
	    margin-right: auto;
	    margin-bottom: 10px;
	}
	.box-inner2 {
    	padding: 8px 28px;
	}
	.cf:before,
	.cf:after {
	    content: " ";
	    display: table;
	}

	.cf:after {
	    clear: both;
	}

	.cf {
	    *zoom: 1;
	}


	.innershadow{
	    background-image: linear-gradient(to bottom, #d7e0da 7%, #ffffff 28%);
	    overflow: hidden;
	    padding: 167px;
	    margin: 0 auto;
	    text-align: center;
	}

#container #pin-contents {
    margin-top: 50px;
    text-align: center;
}
#container #pin-contents .box2 {
    background: none repeat scroll 0 0 #fff;
    border: 1px solid #d5dad7;
    margin: 0 0 30px;
}
#container #pin-contents div.box2 {
    background: none repeat scroll 0 0 #eaf0ed;
    margin: 35px auto;
    padding: 30px 40px;
    width: 360px;
}
#container #pin-contents div.box2 dl {
    overflow: hidden;
    position: relative;
}
#container #pin-contents div.box2 dl dt {
    float: left;
    font-size: 12px;
    margin: 9px 0;
    text-align: left;
    width: 124px;
}
#container #pin-contents div.box2 dl dd {
    margin-left: 125px;
    text-align: left;
}
#container #pin-contents #login-btn {
    margin: 0 0 100px;
}
.pin-user {
    margin-top: 6px;
    width: 100%;
}

.pin-box {
    margin: 0 auto;
    overflow: hidden;
    padding: 167px;
    text-align: center;
}

}


/*法人契約料金プラン 2015/05フリー種別追加対応*/
div.table-corp_plan{
	margin:5px 0 10px 0;
}
div.table-corp_plan .w1{
	width:10%;
}
div.table-corp_plan .w2{
	width:17%;
}
div.table-corp_plan table.plan{
	background:url(../image/table-diagonal.png) no-repeat 0px 15px;
}
div.table-corp_plan table th,
div.table-corp_plan table td{
	padding:8px 0;
	text-align:center;
	vertical-align:middle;
	line-height:120%;
}
div.table-corp_plan table th.br,
div.table-corp_plan table td.br{
	border-right:2px solid #FFF;
}
div.table-corp_plan th.c1{background:#e5e5e5;}
div.table-corp_plan th.c2{background:#f2f2f2;}
div.table-corp_plan th.p1{background:#92c949; color:#FFF;}
div.table-corp_plan th.p2{background:#55ae38; color:#FFF;}
div.table-corp_plan th.p3{background:#338c60; color:#FFF;}
div.table-corp_plan th.p4{background:#005959; color:#FFF;}
div.table-corp_plan th.p5{background:#43a0db; color:#FFF;}
div.table-corp_plan td.p1-1{background:#d3e9b6;}
div.table-corp_plan td.p1-2{background:#e9f4db;}
div.table-corp_plan td.p2-1{background:#bbdfaf;}
div.table-corp_plan td.p2-2{background:#ddefd7;}
div.table-corp_plan td.p3-1{background:#add1bf;}
div.table-corp_plan td.p3-2{background:#d6e8df;}
div.table-corp_plan td.p4-1{background:#9AD3D1;}
div.table-corp_plan td.p4-2{background:#CBE2E1;}
div.table-corp_plan td.p5-1{background:#b4d9f1;}
div.table-corp_plan td.p5-2{background:#d9ecf8;}
div.table-corp_plan td.p0{background:#f5f5f5;}
div.table-corp_plan table th.head-1{
	line-height:100%;
	height:30px;
	padding:0 18px 0 0;
}
div.table-corp_plan table th.head-2{
	background:#dbf4cf;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
	-webkit-border-top-left-radius:10px; 
    -webkit-border-top-right-radius:10px; 
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
	line-height:100%;
	padding:0;
}
div.table-corp_plan table th.head-3{
	background:#e0f5f9;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
	-webkit-border-top-left-radius:10px; 
    -webkit-border-top-right-radius:10px; 
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
	line-height:100%;
	padding:0;
	border:none !important;
}
div.table-corp_plan table th.head-4{
	line-height:100%;
	height:50px;
	vertical-align:bottom !important;
}


/*法人契約料金プラン 2018/02法人制度改定対応*/
div.table-corp_plan2{
    margin:5px 0 10px 0;
}
div.table-corp_plan2 .w1{
    width:27%;
	background:white;
}
div.table-corp_plan2 .w2{
    width:17%;
}

div.table-corp_plan2 table th,
div.table-corp_plan2 table td{
    padding:8px 0;
    text-align:center;
    vertical-align:middle;
    line-height:120%;
}

div.table-corp_plan2 table th.br,
div.table-corp_plan2 table td.br{
    border-right:2px solid #FFF;
}
div.table-corp_plan2 th.c1{background:#e5e5e5;}
div.table-corp_plan2 th.c2{background:#f2f2f2;}
div.table-corp_plan2 th.p1{background:#005959; color:#FFF;}
div.table-corp_plan2 th.p2{background:#43a0db; color:#FFF;}
div.table-corp_plan2 th.p3{background:#338c60; color:#FFF;}
div.table-corp_plan2 th.p4{background:#00BFFF; color:#FFF;}

div.table-corp_plan2 td.p1-1{background:#9AD3D1;}
div.table-corp_plan2 td.p1-2{background:#CBE2E1;}
div.table-corp_plan2 td.p2-1{background:#b4d9f1;}
div.table-corp_plan2 td.p2-2{background:#d9ecf8;}


/*div.table-corp_plan2 th.p1{background:#92c949; color:#FFF;}
div.table-corp_plan2 th.p2{background:#55ae38; color:#FFF;}
div.table-corp_plan2 td.p1-1{background:#d3e9b6;}
div.table-corp_plan2 td.p1-2{background:#e9f4db;}
div.table-corp_plan2 td.p2-1{background:#bbdfaf;}
div.table-corp_plan2 td.p2-2{background:#ddefd7;}
div.table-corp_plan2 td.p3-1{background:#add1bf;}
div.table-corp_plan2 td.p3-2{background:#d6e8df;}*/

div.table-corp_plan2 td.p0{background:#f5f5f5;}
div.table-corp_plan2 table th.head-1{
    line-height:100%;
    height:30px;
    padding:0 18px 0 0;
}
div.table-corp_plan2 table th.head-2{
    background:#dbf4cf;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    -webkit-border-top-left-radius:10px; 
    -webkit-border-top-right-radius:10px; 
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
    line-height:100%;
    padding:0;
}
div.table-corp_plan2 table th.head-3{
    background:#e0f5f9;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    -webkit-border-top-left-radius:10px; 
    -webkit-border-top-right-radius:10px; 
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
    line-height:100%;
    padding:0;
    border:none !important;
}


/* アンケート */
#questionnaire table{
    margin:0 0 20px 0;
}
#questionnaire table thead th{
    background:#e0f5f9;
    border-right:2px solid #FFF;
    border-top-left-radius:10px;
    border-top-right-radius:10px;
    -webkit-border-top-left-radius:10px; 
    -webkit-border-top-right-radius:10px; 
    -moz-border-radius-topleft:10px;
    -moz-border-radius-topright:10px;
    font-size:11px;
    font-weight:bold;
    padding:8px 0;
    text-align:center;
    vertical-align:middle;
}
#questionnaire table thead th.w1{width:365px;}
#questionnaire table thead th.w2{width:365px;}
#questionnaire table thead th.w3{}
#questionnaire table tbody td{
    border-top:2px solid #FFF;
    font-size:11px;
    padding:10px 5px;
    vertical-align:middle;
}
#questionnaire table tbody tr.c1{
    background:#e5e5e5;
}
#questionnaire table tbody tr.c2{
    background:#f5f5f5;
}
#questionnaire table .brl{
    border-right:2px solid #FFF;
    text-align:left;
}
#questionnaire table .brc{
    border-right:2px solid #FFF;
    text-align:center;
}
#questionnaire div.btn-area{
    margin:0 auto 10px auto;
    text-align:right;
}
div.servey-title {
	width:820px; 
	margin-left:auto; 
	margin-right:auto; 
	text-align:center;
	padding:2px 0pt 1px 0px;
	font-size:16px;
	color:white;
	background:none repeat scroll 0% 0% #00226d;
}
div.q-title {
	width:805px; 
	margin-top:20px; 
	margin-left:auto; 
	margin-right:auto; 
	border-left:6px solid #00226d;
	text-align:left;
	padding:0px 0pt 2px 7px;
	font-weight:bold;
    font-size:12px;
}

div.quest-area {
	width:800px; 
	margin-top:5px; 
	margin-left:auto; 
	margin-right:auto; 
	padding:0.5em; 
    font-size:12px;
	text-align:left; 
	border-width:3px; 
	border-style:solid; 
	border-width: thin;
	border-color:#00226d;
}

div.q-explain {
	width:793px; 
	margin-top:10px; 
	margin-left:auto; 
	margin-right:auto; 
	text-align:left;
    font-size:12px;
}

div.question_str {
	font-weight:bolder;
}

div.comment_str {
	padding:0.5em; 
	font-size:11px; 
}

div.question_counts {
	font-size:10px;
	text-align:center;
}
div#buttonspace{
	margin-left:auto;
	margin-right:auto;
	text-align:center;
	margin-top:25px;
	margin-bottom:20px;
}

#stepFlow {
	text-align:center;
	letter-spacing:-0.4em;
}
#stepFlow .active {
	position:relative;
	background:#990014;
	z-index:100;
}
#stepFlow .active::after {
	display:block;
	content:"";
	position:absolute;
	top:50%;
	right:-16px;
	width:0px;
	height:0px;
	margin-top:-8px;
	border-style:solid;
	border-width:16px 0 0 20px;
	border-color:transparent transparent transparent #990014;
	transform:skewX(10deg);
}
#stepFlow span {
	display:block;
	position:relative;
	transform:skewX(10deg);
}
#stepFlow li {
	display:inline-block;
	min-width:160px;
	margin:5px 1px;
	padding:5px 0;
	transform:skewX(-10deg);
	background:#999;
	letter-spacing:normal;
	color:#fff;
}
#stepFlow li:last-child::after {
	display:none !important;
}

.agree_header_title {
	height:40px;
	background-color:#00226d;
	color:#fff;
	font-weight:bold;
	font-size:20px;
	line-height:40px;
	text-align:center;
	margin:8px 0;
}

ul.agree_conf li {
	padding-left:1em;
	text-indent:-1.0em;
	font-size:12px;
}

ul.store_price_list {
	width: 950px;
	padding:0;
}
ul.store_price_list li.dan1 {
	width:70px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}
ul.store_price_list li.dan2 {
	width:170px;
	display:inline-block;
	text-align:right;
	font-size:12px;
}
ul.store_price_list li.dan3 {
	width:300px;
	display:inline-block;
	text-align:left;
	margin-left:43px;
	font-size:12px;
}

ul.auxiliary_list {
	width: 950px;
	padding:0;
}
ul.auxiliary_list li.dan1 {
	width:288px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}
ul.auxiliary_list li.dan2 {
	width:300px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}

ul.identification {
	width: 950px;
	padding:0;
}
ul.identification li.dan1 {
	width:288px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}
ul.identification li.dan2 {
	width:600px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}

div.free_btn_area{
	margin:0 auto 10px auto;
	text-align:center;
}

ul.contract_period {
	width: 800px;
	padding:0;
}
ul.contract_period li.dan1 {
	width:100px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}
ul.contract_period li.dan2 {
	width:300px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}

ul.corresponding_date {
	width: 800px;
	padding:0;
}
ul.corresponding_date li.dan1 {
	width:100px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}
ul.corresponding_date li.dan2 {
	width:200px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}
ul.corresponding_date li.dan3 {
	width:300px;
	display:inline-block;
	text-align:left;
	font-size:12px;
}

ul.agree_notes li {
	padding-left:1em;
	padding-bottom:10px;
	text-indent:-1.0em;
	font-size:12px;
}

a.underscore {
	color:#000 !important;
	text-decoration:underline !important;
}
a.underscore:hover {
	color:#970014 !important;
	text-decoration:underline !important;
}