@charset "UTF-8";
/* Text ver.1.0.0 last update  16/01/26
	eラーニング CSS 
-----------------------------------------------------------------------------------

	0.	CSS Reset & Clearfix
	1.	Document Setup
	2.	Header
	3.	Contents
	4.	Post Content
	5.  login
	6.	bespoke
	7.	order_archive
	8.	order_item
	9.	order_list
	10.	Footer
	11. js

----------------------------------------------------------------------------------- */
/* Font Awesome 4.7.0 import */
@import url("https://maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css");

/*===================================================
     0.CSS Reset / YUI 3.5.0 - reset.css
===================================================*/

/**
 * YUI 3.5.0 - reset.css (http://developer.yahoo.com/yui/3/cssreset/)
 * http://cssreset.com
 * Copyright 2012 Yahoo! Inc. All rights reserved.
 * http://yuilibrary.com/license/
 */
/*
	TODO will need to remove settings on HTML since we can't namespace it.
	TODO with the prefix, should I group by selector or property for weight savings?
*/
html{
	color:#000;
	background:#FFF;
	height:100%;
}
/*
	TODO remove settings on BODY since we can't namespace it.
*/
/*
	TODO test putting a class on HEAD.
		- Fails on FF.
*/
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td {
	margin:0;
	padding:0;
}
table {
	border-collapse:collapse;
	border-spacing:0;
}
fieldset,
img {
	border:0;
}
/*
	TODO think about hanlding inheritence differently, maybe letting IE6 fail a bit...
*/
address,
caption,
cite,
code,
dfn,
em,
strong,
th,
var {
	font-style:normal;
	font-weight:normal;
}
 
ol,
ul {
	list-style:none;
}
 
caption,
th {
	text-align:left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-size:100%;
	font-weight:normal;
}
q:before,
q:after {
	content:'';
}
abbr,
acronym {
	border:0;
	font-variant:normal;
}
/* to preserve line-height and selector appearance */
sup {
	vertical-align:text-top;
}
sub {
	vertical-align:text-bottom;
}
input,
textarea,
select {
	font-family:inherit;
	font-size:inherit;
	font-weight:inherit;
}
/*to enable resizing for IE*/
input,
textarea,
select {
	*font-size:100%;
}
/*because legend doesn't inherit in IE */
legend {
	color:#000;
}
/* YUI CSS Detection Stamp */
#yui3-css-stamp.cssreset { display: none; }

.clearfix {width:100%;}
.clearfix:after {
  content: "";
  display: block;
  clear: both;
}
*:focus {
  outline: none;
}

/* 2018-09-11 add */
/* IE環境のみFooterの下に1px程の隙間が生じるのを抑制 */
img { 
    border: 0;
    max-width: 100%;
    vertical-align: bottom;
    height: auto;
}

/*===================================================
    1.	Document Setup
===================================================*/

/*
body { font-size: 62.5%; color: #000; font-family: "ヒラギノ角ゴ Pro W3", "Hiragino kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;background: #FFF;height:100%;} /* fontsize を標準10pxに */
body { font-size: 62.5%; color: #000; font-family: "ヒラギノ角ゴ Pro W3", "Hiragino kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;background: #FFF;height:100%; width: 100vw; overflow-x: hidden; } /* fontsize を標準10pxに */

.t8px { font-size: 0.8em !important;}
.t9px { font-size: 0.9em !important;}
.t11px { font-size: 1.1em !important;}
.t12px { font-size: 1.2em !important;}
.t13px { font-size: 1.3em !important;}
.t14px { font-size: 1.4em !important;}
.t15px { font-size: 1.5em !important;}
.t16px { font-size: 1.6em !important;}
.t17px { font-size: 1.7em !important;}
.t18px { font-size: 1.8em !important;}
.t19px { font-size: 1.9em !important;}
.t20px { font-size: 2em !important;}

.ta_left { text-align: left !important; }
.ta_right { text-align: right; }

.wrapper{
	position: relative;
	width: 100%;
}
input{
	cursor: pointer;
}
select{
	cursor: pointer;
}
label{
	cursor: pointer;
}
/*for Webkit*/
input::-webkit-input-placeholder {
    color:    #000;
}
/*for Firefox*/
input:-moz-placeholder {
    color:    #000;
}
a:hover
{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
input:focus {
	outline: none;
}
select::-ms-expand {
  display: none;
}
.mt0{
	margin-top: 0px;
}
.mt5{
	margin-top: 5px;
}
.mt10{
	margin-top: 10px;
}
.mt15{
	margin-top: 15px;
}
.mt20{
	margin-top: 20px;
}
.mt25{
	margin-top: 25px;
}
.mt30{
	margin-top: 30px;
}
.mb0{
	margin-bottom: 0px;
}
.mb10{
	margin-bottom: 10px;
}
.mb20{
	margin-bottom: 20px;
}

.mb25{
	margin-bottom: 25px;
}

.mb30{
	margin-bottom: 30px;
}
.p10{
	padding:10px;
}
.p1em{
	padding:1em;
}
.pt0{
	padding-top: 0px;
}
.pt5{
	padding-top: 5px;
}
.pt10{
	padding-top: 10px;
}
.pt15{
	padding-top: 15px;
}
.pt20{
	padding-top: 20px;
}
.pt25{
	padding-top: 25px;
}
.pt30{
	padding-top: 30px;
}
.pb0{
	padding-bottom: 0px;
}
.pb5{
	padding-bottom: 5px;
}
.pb10{
	padding-bottom: 10px;
}
.pb20{
	padding-bottom: 20px;
}

.pb25{
	padding-bottom: 25px;
}

.pb30{
	padding-bottom: 30px;
}
.pr5{
	padding-right: 5px !important;
}
.pr10{
	padding-right: 10px !important;
}
.pr20{
	padding-right: 20px !important;
}
p{
	font-size: 1.4em;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック"
}
.taC{
	text-align:center;
}
.tdu{
	text-decoration:underline;
}
.error{
	clear:both;
	padding:3px 0 0 0;
	margin:0;
	text-size:12px;
	color:red;
}

.fwb{
	font-weight:bold;
}
/*===================================================
    2. Header
===================================================*/
.top header{
	background: url("/images/header_bg.png") no-repeat;
	background-size: cover;
	width: 100%;
	height: 111px;
}
#top header{
	background: none;
}
/*===================================================
     3.	login
===================================================*/
#top{
	background: url("/images/login.jpg") no-repeat;
	background-size: cover;
}
.login
{
	background: url("/images/login.jpg") no-repeat;
	background-size: cover;
	width: 100%;
	height: 100%;
}
#top .wrapper{
	width: 100%;
	height: 100%;
}
.login .container{
	width: 899px;
	margin: 0 auto;
}
.login header h1{
	padding-top: 165px;
	float: left;
	width: 424px;
}
.login header #login-box{
	float: right;
	background: rgba(255,255,255,0.7);
	margin-top: 89px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	padding: 28px 40px;
	box-sizing: border-box; 
}
.login header #login-box table{
	border-collapse: separate;
    border-spacing: 0px 8px;
}
.login header #login-box table tr{
	width: 100%;
	margin-bottom: 4px;
}
.login header #login-box input.email,
.login header #login-box input.password
 {
    width: 220px;
}
.login header #login-box table tr.mail th{
	background: url("/images/mail_icn.png") no-repeat;
	background-size: 39px;
	width: 39px;
	height: 39px;
	display: block;
}
.login header #login-box table tr.pw th{
	background: url("/images/pw_icn.png");
	background-repeat: no-repeat;
	background-size: 39px;
	width: 39px;
	height: 39px;
}
.login header #login-box table tr.mail td input,
.login header #login-box table tr.pw td input{
	height: 39px;
	border: 0;
	background-color:#f7f7f7;
	background-image: url("/images/yajirushi.png");
	background-repeat: no-repeat;
	background-size: 8px;
	background-position: left center;
	text-indent: 10px;
	font-size: 14px;
}
.login header #login-box table tr.mail td input::-webkit-input-placeholder,
.login header #login-box table tr.pw td input::-webkit-input-placeholder
 {
    color: #33609e;
    font-weight: normal;
}
.login header #login-box table tr.mail td input:-ms-input-placeholder,
.login header #login-box table tr.pw td input:-ms-input-placeholder {
    color: #33609e;
    font-weight: normal;
}
.login header #login-box table tr.mail td input::-moz-placeholder,
.login header #login-box table tr.pw td input::-moz-placeholder {
    color: #33609e;
    font-weight: normal;
}
.login header #login-box table tr td{
	font-size: 14px;
	color: #33609e;
}
.login header #login-box table tr.save td{
	position: relative;
	padding: 0;
	text-indent: 17px;
}
.login header #login-box table tr.save input{
	position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;  
    height: 100%;
}
.login header #login-box table tr.save input[type=checkbox] + label {
	display: block;
	background-image: url("/images/check_off.png");
	background-size: 11px;
	background-position: left center;
	background-repeat: no-repeat;
}
.login header #login-box table tr.save input[type=checkbox]:checked + label {
	background-image: url("/images/check_on.png");
}
.login header #login-box table tr.forgot a{
	display: inline-block;
    padding-left: 3px;
}
.login header #login-box table tr.forgot span{
	font-size: 10px;
	font-family: "ＭＳ ゴシック", "MS PGothic";
}
#submit_btn {
    background-image: url("/images/submit_btn.png");
    background-size: cover;
    width: 239px;
    height: 37px;
    border: 0;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    margin-top: 5px;
}
#submit_btn:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
.login .info{
	background: rgba(255,255,255,0.7);
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	margin-top: 40px;
}
.info h2 {
    text-align: center;
    padding: 10px 0;
}
.info .info_box{
	height: 249px;
	margin-bottom: 40px;

}
.info .info_box dl{
	width: 822px;
	border-bottom: 1px dotted #c9c9c9;
	margin: 0 auto;
	font-size: 14px;
	padding: 20px 0;
}
.info .info_box dl dt{
	width: 150px;
	float: left;
}
.info .info_box dl dd{
	float: right;
	width: 672px;
}
.info .info_box dl dd p{
	font-size:100%;
}
.info .info_box dl dd p.att{
	padding-left: 1em;
	text-indent: -1em;
}
.jspDrag {
    background: #c9c9c9 !important;
}
.jspTrack {
    background: #eeeeee !important;
}
/* 2022.10.14 h3タグはdiv.info_sub_boxへ置換 */
.info h3{
	text-align: right;
	font-size: 14px;
	font-family: "メイリオ";
	padding-bottom: 23px;
}
.info h3 span{
	color: #a40000;
	font-size: 10px;
}
.info h3 a{
	color: #313131;
	display: inline-block;
	padding-left: 5px;
	margin-right: 8px;
	text-decoration: none;
}
.info h3 a:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
/* .info_sub_box */
.info .info_sub_box{
	text-align: right;
	font-size: 14px;
	font-family: "メイリオ";
	padding: 0 20px 23px;
}
.info .info_sub_box a{
	color: #313131;
	text-decoration: none;
}
.info .info_sub_box a:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
.info .info_sub_box > span{
	color: #a40000;
	font-size: 10px;
}
.info .info_sub_box > a{
	display: inline-block;
	padding-left: 5px;
	margin-right: 8px;
}

.info_sub_box .flex_2clm{
    border: #eee double 3px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    padding: 1em;
    text-align: left;
}
.info_sub_box .flex_2clm dl{
    width: 49%;
}
.info_sub_box .flex_2clm dl dt{
    color: #3865A8;
    font-weight: bold;
}
.info_sub_box .flex_2clm dl dd ul li{
    border-bottom: #ddd dotted 1px;
    padding: .5em 0;
}
.info_sub_box .flex_2clm dl dd ul li a::before{
    content: "\f101";
    font-family: FontAwesome;
    padding: 0 .25em 0 0;
}
/*pdfファイル*/
.info_sub_box .flex_2clm dl dd ul li a.dl_pdf::after{
    color: #c1272d;
    content: "\f1c1";
    font-family: FontAwesome;
    padding: 0 0 0 .25em;
}
/*EXCELファイル*/
.info_sub_box .flex_2clm dl dd ul li a.dl_xls::after{
    color: #39b54A;
    content: "\f1c3";
    font-family: FontAwesome;
    padding: 0 0 0 .25em;
}
/*Wordファイル*/
.info_sub_box .flex_2clm dl dd ul li a.dl_doc::after{
    color: #0069A8;
    content: "\f1c2";
    font-family: FontAwesome;
    padding: 0 0 0 .25em;
}
/*PowerPointファイル*/
.info_sub_box .flex_2clm dl dd ul li a.dl_ppt::after{
    color: #f25a24;
    content: "\f1c4";
    font-family: FontAwesome;
    padding: 0 0 0 .25em;
}
/*その他のファイル*/
.info_sub_box .flex_2clm dl dd ul li a.dl_file::after{
    color: #9079b6;
    content: "\f019";
    font-family: FontAwesome;
    padding: 0 0 0 .25em;
}

.dl_pdf::before {
  font-family: FontAwesome;
  content: "\f101";
  margin-right: 5px;
}
.dl_pdf::after {
  font-family: FontAwesome;
  content: "\f1c1";
  margin-left: 5px;
  color: #d9534f !important;
}
.dl_xlsx::before {
  font-family: FontAwesome;
  content: "\f101";
  margin-right: 5px;
}
.dl_xlsx::after {
  font-family: FontAwesome;
  content: "\f1c3";
  margin-left: 5px;
  color: #28a745 !important;
}

@media screen and (max-width: 959px) {
    .info_sub_box .flex_2clm dl{
        margin: 0 0 10px;
        width: 100%;
    }
    .info_sub_box .flex_2clm dl:last-child{
        margin: 0;
    }
}
.contact{
	padding: 15px;
	box-sizing: border-box;
	background: #eeeeee;
	width: 100%;
	font-family: "メイリオ";
	font-size: 12px;
	margin-bottom: 35px;
}
.contact h3{
	font-weight: bold;
	color: #707070;
	background: url("/images/contact_icn.png") no-repeat;
	background-position: left center;
	text-indent: 15px;
}
.contact p{
	font-weight: normal;
	font-size: 14px;
}
.contact p a{
	color: #a40000;
}
.contact p span{
	padding-left: 30px;
}

.login footer{
	width: 100%;
	height: 80px;
	background: url("/images/footer_bg.png") repeat-x;
    position: relative;
}

.login footer p{
    line-height: 1.2;
    position: absolute;
        right: 25px;
        top: 50%;
	color: #fff;
	font-family: "メイリオ";
	font-size: 14px;
    margin-top: -.5em;
}

/*
.login footer{
	width: 100%;
	height: 87px;
	background: url("/images/footer_bg.png") repeat-x;
}
.login footer p{
	color: #fff;
	font-family: "メイリオ";
	font-size: 14px;
	text-align: right;
	padding: 30px 20px 0 0;
}
*/


/*===================================================
     4. Top
===================================================*/
.top .wrapper{
	overflow: hidden;
}

.top header h1{
	padding: 30px 0 0 20px;
	float: left;
}

/*
.top .logout{
	float: right;
	padding: 20px 10px 0 0;
}
*/
.top .logout{
	float: right;
	padding: 20px 27px 0 0;
}

.top .logout dl dt,
.top .logout dl dd{
	display: inline;
}
.top .logout dl dt{
	font-size: 14px;
	font-family: "メイリオ";
	color: #313131;
	padding-right: 5px;
}
.top .logout dl dt span{
	font-weight: bold;
	padding: 0 3px;
}
#logout_btn{
	background: url("/images/logout_btn.png") no-repeat;
	width: 109px;
	height: 32px;
	border: none;
    text-indent: 100%;
    white-space: nowrap;
    margin-top: 5px;
}
.top .logout dl dd input:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
nav{
	background: url("/images/navi_bg.png") repeat-x;
	height: 60px;
	width: 100%;
}

/*
nav ul{
	text-align: right;
	font-size: 0;
}
*/

nav ul{
    background-image: url(/images/gmenu_right_bg.png);
    background-position: top right;
    background-repeat: no-repeat;
    padding-right: 17px;
	text-align: right;
	font-size: 0;
    letter-spacing: -.4em;
}
nav ul li{
	display: inline-block;
    letter-spacing: normal;
    
}

nav ul li a{
	display: block;
	/* width: 172px; */
    width: 165px;
	height: 0;
	padding-top: 60px;
	overflow: hidden;
	background-image: url("/images/navi_menu.png");
}
.total nav ul li a{
	background-image: url("/images/navi_menu.png") !important;
}
.start nav ul li a,
.management2 nav ul li a,
.management3 nav ul li a{
	background-image: url("/images/navi_menu3.png") !important;
}
.nav1 { background-position: 0 top;}
.nav2 { background-position: 690px top;}
.nav3 { background-position: 516px top;}
.nav4 { background-position: 344px top;}
.nav5 { background-position: 172px top;}

.start .nav2,.management2 .nav2 { background-position: -172px top;}
.start .nav3,.management2 .nav3 { background-position: -344px top;}
.start .nav4,.management2 .nav4 { background-position: -516px top;}
.start .nav5,.management2 .nav5 { background-position: -690px top;}

.management3 .nav2 { background-position: -172px top;}
.management3 .nav3 { background-position: -344px top;}
.management3 .nav4 { background-position: -516px top;}
.management3 .nav5 { background-position: -690px top;}

.nav1:hover { background-position: 0 bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.nav2:hover { background-position: 690px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.nav3:hover { background-position: 516px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.nav4:hover { background-position: 344px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.nav5:hover { background-position: 172px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.start .nav2:hover,.management2 .nav2:hover { background-position: -172px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav3:hover,.management2 .nav3:hover { background-position: -344px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav4:hover,.management2 .nav4:hover { background-position: -516px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.start .nav5:hover,.management2 .nav5:hover { background-position: -690px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.management3 .nav2:hover { background-position: -172px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav3:hover { background-position: -344px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav4:hover { background-position: -516px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.management3 .nav4:hover { background-position: -690px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.nav1.current{background-position: 0 bottom;}
.nav2.current{background-position: 690px bottom;}
.nav3.current{background-position: 516px bottom;}
.nav4.current{background-position: 344px bottom;}
.nav5.current{background-position: 172px bottom;}

.start .nav2.current,.management2 .nav2.current{background-position: -172px bottom;}
.start .nav3.current,.management2 .nav3.current{background-position: -344px bottom;}
.start .nav4.current,.management2 .nav4.current{background-position: -516px bottom;}
.start .nav5.current,.management2 .nav4.current{background-position: -690px bottom;}

.management3 .nav2.current{background-position: -172px bottom;}
.management3 .nav3.current{background-position: -344px bottom;}
.management3 .nav4.current{background-position: -516px bottom;}
.management3 .nav5.current{background-position: -690px bottom;}

.top main {
	min-width: 1139px;
    max-width: 1320px;
    margin: 20px auto 40px;
    display: block;
}
#top main {
    width: 1139px;
    /*margin: 50px auto 10px !important;*/
    display: block;
    height: 469px;
    /*padding-bottom: 40px;*/
	position: absolute;  
    top: 50%;  
    left: 50%;  
    margin: -235px 0 0 -570px;      
}

#top .top_banner_l{
	background: url("/images/top_banner_bg1.png") no-repeat ;
	width: 720px;
	height: 469px;
	display: block;
	float: left;
	position: relative;
}
#top .top_banner_l ul{
	position: absolute;
	top:115px;
	left: 45px;
}
#top .top_banner_r{
	background: url("/images/top_banner_bg2.png") no-repeat ;
	width: 390px;
	height: 469px;
	display: block;
	float: left;
	margin-left: 29px;
	position: relative;
}
#top .top_banner_r ul{
	position: absolute;
	top:115px;
	left: 45px;
}
.top main ul li{
	float: left;
	padding-right: 34px;
}
.top main ul li:last-child{
	padding-right: 0;
}
.setting li{
	display: inline-block;
	font-size: 14px;
	font-family: "メイリオ";
	text-indent: 30px;
	padding-right: 20px;
}
.setting li a{
	color: #fff;
	text-decoration: none;
}

.top footer{
	width: 100%;
	height: 80px;
	background: url("/images/footer_bg1.png") repeat-x;
    position: relative;
}

#top footer{

}

.top footer .setting{
    display: none; /* 2018-09-11 add */
	float: left;
	padding: 25px 0 0 30px;
}
.top footer .setting li:first-child{
	background: url("/images/set1_icn.png") no-repeat;
	background-size: 24px;
	background-position: left center;
}
.top footer .setting li:last-child{
	background: url("/images/set2_icn.png") no-repeat;
	background-size: 24px;
	background-position: left center;
}

.top footer p{
    line-height: 1.2;
    position: absolute;
        right: 25px;
        top: 50%;
	color: #fff;
	font-family: "メイリオ";
	font-size: 14px;
    margin-top: -.5em;
}

@media screen and (max-width: 959px) {
    .top footer p{
        font-size: 12px;
        text-align: left;
        padding-left: 10px;
    }
}
@media screen and (max-width: 408px) {
    .top footer p{
        margin-top: -1em;
    }
}

/*
.top footer{
	width: 100%;
	height: 128px;
	background: url("/images/footer_bg1.png") repeat-x;
}
*/
/*
.top footer p{
	color: #fff;
	font-family: "メイリオ";
	font-size: 14px;
	float: right;
	padding: 32px 20px 0 0;
}
*/

/*===================================================
     5.	Lecture
===================================================*/
.lecture main{
	min-width: 960px;
	max-width: 1300px;
	margin: 20px auto 40px;
	/* padding:0 8px; */
	padding: 0 27px 0 10px;
}
.lecture main .ttl{
	width: 100%
}
.lecture main .ttl h2,
.management main .ttl h2{
	float: left;
}
.lecture main .ttl ul,
.management main .ttl ul
{
	float: right;
}
.lecture main h3{
	border-bottom: 3px solid #8facd7;
	position: relative;
	padding-top: 36px;
	margin-bottom: 18px;
}
.lecture main h3 img {
    display: block;
    margin-bottom: -3px;
}
.lecture main p{
	font-size: 14px;
}
.lecture main .input_form{
	width: 100%;
}
.lecture main .input_form input:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
/* t.shinno 2018.2.1 add */
.lecture main .input_form .checkbox:hover{
	filter: alpha(opacity=100);
	-moz-opacity:0.0;
	opacity:0.0;
}
.lecture main table{
	width: 100%;
	border: 1px solid #d2d2d2;
	border-color: #d2d2d2;
}
.lecture main table thead{
	background: #3865a8;
	color: #fff;
}
.lecture main table thead th{
	text-align: center;
	height: 60px;
	font-size: 1.8em;
	font-weight: bold;
}
.lecture main table tbody tr th{
	height: 60px;
	width: 20%;
	font-size: 1.4em;
	font-weight: bold;
	color: #fff;
	font-family: "メイリオ";
	background: #6d93ca;
	text-indent: 2%;
	letter-spacing: 0.08em;
}
.lecture main table tbody tr:nth-child(even) th{
	background: #5581bf;
}
.lecture main table tbody tr:nth-child(even) td{
	background: #eeeeee;
}
.lecture main table tbody tr td{
	font-size: 1.4em;
	color: #313131;
	font-family: "メイリオ";
	width: 40%;
	height: 60px;
	/*padding: 0 2%;*/
	box-sizing: border-box;
	border: 1px solid #D2D2D2;
}
.lecture main #lectureres tbody tr th{
	height: 60px;
	width: 10%;
	font-size: 1.4em;
	font-weight: bold;
	color: #fff;
	font-family: "メイリオ";
	background: #6d93ca;
	text-indent: 2%;
	letter-spacing: 0.08em;
}
.lecture main table tbody tr td select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background: url("/images/arrow.png") right 50% no-repeat;
	background-color: #fff;
	background-size: 40px 25px;
	width: 80%;
	text-indent: 5px;
	color: #5D5D5D;
	height: 34px;
}

.lecture main table tbody tr td .select3{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background: url("/images/arrow.png") right 50% no-repeat;
	background-color: #fff;
	background-size: 40px 25px;
	width: 250px;
	text-indent: 5px;
	color: #5D5D5D;
	padding-left:5px;
	height: 36px;
	cursor: pointer;
}

.lecture main table tbody tr td .button{
	height: 34px;
	padding: 0 2%;
	margin-left: 2%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0);
	border: solid 1px #999;
	background-image: -webkit-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -moz-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -o-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -ms-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: linear-gradient(to top, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
}
.lecture main table tbody tr td input[type="text"],input[type="password"]{
    width: 100%;
    margin: 0 auto;
    display: block;
    height: 34px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	text-indent: 2%;
	background: #fff;
}
.lecture main table tbody tr td textarea {
	float:left;
    width: 100% !important;
    margin: 1% auto !important;
    display: block;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
}
.lecture main table tbody tr td .input50_active input[type="text"] {
	max-width: 100px;
	display:inline-block;
	text-align:left;
	ime-mode:active;
}
.lecture main table tbody tr td.input100_active input[type="text"] {
	max-width: 200px;
	display:inline-block;
	text-align:left;
	ime-mode:active;
}
.lecture main table tbody tr td.input150_active input[type="text"] {
	max-width: 300px;
	display:inline-block;
	text-align:left;
	ime-mode:active;
}
.lecture main table tbody tr td.input175_active input[type="text"] {
	max-width: 350px;
	display:inline-block;
	text-align:left;
	ime-mode:active;
}
.lecture main table tbody tr td.input200_active input[type="text"] {
	max-width: 400px;
	display:inline-block;
	text-align:left;
	ime-mode:active;
}
.lecture main table tbody tr td.input50_inactive input[type="text"] {
	width: 100px;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input100_inactive input[type="text"] {
	max-width: 200px;
	display:inline-block;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input150_inactive input[type="text"] {
	max-width: 300px;
	display:inline-block;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input200_inactive input[type="text"] {
	max-width: 400px;
	display:inline-block;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input100_pass input[type="password"] {
	max-width: 200px;
	display:inline-block;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input150_pass input[type="password"] {
	max-width: 300px;
	display:inline-block;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input200_pass input[type="password"] {
	max-width: 400px;
	display:inline-block;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input100_select select{
	width: 200px;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input150_select select{
	width: 300px;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.input200_select select{
	width: 400px;
	text-align:left;
	ime-mode:inactive;
}
.lecture main table tbody tr td.date input[type="text"] {
	width: 122px;
}
.lecture main table tbody tr td.date ul li:nth-child(2){
	padding-top: 7px;
}
.lecture main table tbody tr td.date ul li{
	padding-right: 10px;
}

/*参考画像 reference */
.lecture main table tbody tr td ul.reference{
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing:border-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    justify-content:flex-start;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    margin: 20px auto 10px auto;
    min-width: 960px;
    max-width: 1270px;
}
.lecture main table tbody tr td ul.reference li{
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing:border-box;
    width: 20%;
    text-align: center;
    padding: 0;
    margin:0;
}
@media screen and (max-width: 767px) {
    .lecture main table tbody tr td ul.reference{
        width: 90% !important;
        min-width: inherit;
        display: block;
    }
    .lecture main table tbody tr td ul.reference li{
        width: 100%;
    }
}

.lecture main table tbody tr td ul.reference li span.cap{
    display: block;
    font-size: 0.8em;
    text-align: center;
    width: 100%;
}
.lecture main table tbody tr td ul.reference li a{
    background:none;
}
.lecture main table tbody tr td ul.reference li img{
    width: 80%;
    height: auto;
}
.lecture main table tbody tr td p.reference_text{
	padding:2% !important;
	text-indent:0 !important;
}
.dn {display:none}
.input_fileupload {
	border:1px solid #7F9DB9;
	width:35% !important;
	height:34px;
	float:left;
}
.btn_fileupload {
	border:none;
	width:62px;
	height:34px;
	cursor:pointer;
	float:left;
	padding: 0 !important;
}
.lecture main .input_form .sub li .button{
	height: 34px;
	padding: 0 2%;
	margin-left: 2%;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0);
	border: solid 1px #999;
	background-image: -webkit-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -moz-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -o-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -ms-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: linear-gradient(to top, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);

}
.lecture main .input_form .sub {
    margin: 26px auto 26px;
    width: 100%;
    text-align: center;
}
.lecture main .input_form .sub li{
	float: none;
	display: inline-block;
	padding-right: 32px;
}
.lecture main .input_form .sub li:first-child input{
	width: 92px;
	font-size: 1.3em
}
.lecture main .input_form .sub li:last-child{
	padding: 0;
}
.lecture main .input_form .sub li:last-child input{
	width: 132px;
	font-size: 1.3em
}
.ui-widget-header {
    background: #89c997 !important;
    color: #000 !important;
    font-weight: normal !important;
}
a.ui-datepicker-prev.ui-corner-all:after {
    content: "<<";
    color: #313131;
    vertical-align: middle;
    font-size: 9px;
}
a.ui-datepicker-prev.ui-corner-all:hover,
a.ui-datepicker-next.ui-corner-all:hover{
	background: none !important;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
a.ui-datepicker-next.ui-corner-all:after {
    content: ">>";
    color: #313131;
    vertical-align: middle;
    font-size: 9px;
}

a.ui-datepicker-prev.ui-corner-all span,
a.ui-datepicker-next.ui-corner-all span{
	background: none !important;
}
/* Corner radius */
.ui-corner-all,
.ui-corner-top,
.ui-corner-left,
.ui-corner-tl {
	border-top-left-radius: 0px !important;
}
.ui-corner-all,
.ui-corner-top,
.ui-corner-right,
.ui-corner-tr {
	border-top-right-radius: 0px !important;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-left,
.ui-corner-bl {
	border-bottom-left-radius: 0px !important;
}
.ui-corner-all,
.ui-corner-bottom,
.ui-corner-right,
.ui-corner-br {
	border-bottom-right-radius: 0px !important;
}
table.ui-datepicker-calendar thead {
    background: #ccedd4;
}
.ui-datepicker th {
    border: 1px solid #ccc !important;
}
.ui-datepicker-calendar .ui-state-default, 
.ui-datepicker-calendar .ui-widget-content .ui-state-default, 
.ui-datepicker-calendar .ui-widget-header .ui-state-default {
    border: 1px solid #ccc !important;
    background: none !important; 
    font-weight: bold;
    color: #2e6e9e;
}
table.ui-datepicker-calendar tbody {
    background: #fff !important;
}
table.ui-datepicker-calendar tbody tr th,
table.ui-datepicker-calendar tbody tr td{
	border: 1px solid #bdbdbd;
	padding: 2% 0 !important;
}

.ui-datepicker td span, .ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: center !important;
    text-decoration: none;
}
.ui-datepicker td {
    padding: 0 !important; 
}

/* tabs */
#tabs.ui-widget-content {
    border: none !important; 
    background: none !important; 
    color: #313131 !important;
}
#tabs .ui-widget-header {
    background: none !important; 
    color: #313131 !important; 
    border: none !important;
}
#tabs .ui-state-default, .ui-widget-content .ui-state-default, .ui-widget-header .ui-state-default {
    border: none!important;
    background: none !important;
}
.ui-tabs .ui-tabs-panel {
    clear: both;
}
#tabs .ui-tabs-active a{
	background: #eeeeee !important;
	display: inline-block;
}
.ui-tabs .ui-tabs-panel {
    display: block;
    border-width: 0;
    padding: 0 !important;
    background: #eeeeee !important;
}
li.ui-state-default.ui-corner-top a:hover{
	background: #eeeeee;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
#tabs-1 {
    padding: 25px 0 !important;
}
#tabs-1 ul li,
#tabs-2 ul li
{
	padding-right: 20px !important;
}
#tabs-3 ul li
{
	padding-right: 24px;
}
#tabs-1 ul li input:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}

.ui-tabs .ui-tabs-nav {
    /* margin: 0 !important; */
    margin: 15px 0 0 0 !important;
    padding: 0 !important;
}

.ui-tabs .ui-tabs-nav li {
    margin: 1px 0px -1px 0 !important; 
}
/*===================================================
     6.	management
===================================================*/
.management main {
    min-width: 960px;
    max-width: 1320px;
    margin: 20px auto 40px;
	padding: 0 27px 0 10px;
}

/*
.management main {
    min-width: 960px;
    max-width: 1320px;
    margin: 20px auto 40px;
	padding: 0 8px;
}
*/

.search_area{
	background: #eeeeee;
	width: 100%;
	min-height: 74px;
}

.ui-tabs {
    padding: 0 !important;
}


/* 旧スタイル設定 ここから */
.search_area ul{
	text-align: center;
	padding: 20px 0;
}
.search_area ul li{
	display: inline-block;
	font-size: 14px;
	padding-right: 15px;
}
.search_area ul li a{
	vertical-align:-1.2em;
}
.search_area ul li select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background: url("/images/arrow.png") right 50% no-repeat;
	background-color: #fff;
	background-size: 40px 25px;
	width: 203px;
	text-indent: 5px;
	color: #5D5D5D;
	padding-left:5px;
	height: 36px;
	cursor: pointer;
}

.search_area ul li .select1{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background: url("/images/arrow.png") right 50% no-repeat;
	background-color: #fff;
	background-size: 40px 25px;
	width: 100px;
	text-indent: 5px;
	color: #5D5D5D;
	padding-left:5px;
	height: 36px;
	cursor: pointer;
}

.search_area ul li .select2{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background: url("/images/arrow.png") right 50% no-repeat;
	background-color: #fff;
	background-size: 40px 25px;
	width: 150px;
	text-indent: 5px;
	color: #5D5D5D;
	padding-left:5px;
	height: 36px;
	cursor: pointer;
}

.search_area ul li .select3{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background: url("/images/arrow.png") right 50% no-repeat;
	background-color: #fff;
	background-size: 40px 25px;
	width: 155px;
	text-indent: 5px;
	color: #5D5D5D;
	padding-left:5px;
	height: 36px;
	cursor: pointer;
}
.search_area ul li .select4{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background: url("/images/arrow.png") right 50% no-repeat;
	background-color: #fff;
	background-size: 40px 25px;
	width: 300px;
	text-indent: 5px;
	color: #5D5D5D;
	padding-left:5px;
	height: 36px;
	cursor: pointer;
}

.search_area ul li input[type=text]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background-color: #fff;
	background-size: 40px 25px;
	width: 203px;
	text-indent: 5px;
	color: #5D5D5D;
	height: 34px;
	cursor: pointer;
}

.search_area ul li .input1[type=text]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background-color: #fff;
	background-size: 40px 25px;
	width: 100px;
	text-indent: 5px;
	color: #5D5D5D;
	height: 34px;
	cursor: pointer;
}

.search_area ul li .input2[type=text]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background-color: #fff;
	background-size: 40px 25px;
	width: 150px;
	text-indent: 5px;
	color: #5D5D5D;
	height: 34px;
	cursor: pointer;
}

.search_area ul li .input3[type=text]{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	border: 1px solid #bdbdbd;
	background: #fff;
	background-color: #fff;
	background-size: 40px 25px;
	width: 200px;
	text-indent: 5px;
	color: #5D5D5D;
	height: 34px;
	cursor: pointer;
}

#search_btn{
	background: url("/images/search.png")  no-repeat;
	padding: 20px 0;
	width: 96px;
	height: 35px;
	border: 0;
}
.search_btn{
	background: url("/images/search.png")  no-repeat;
	padding: 20px 0;
	width: 96px;
	height: 35px;
	border: 0;
}

#search_btn2{
	background: url("/images/search.png")  no-repeat;
/*	padding: 20px 0;*/
	width: 96px;
	height: 35px;
	border: 0;
}
.search_btn2{
	background: url("/images/search.png")  no-repeat;
/*	padding: 20px 0;*/
	width: 96px;
	height: 35px;
	border: 0;
}

.search_area ul li input:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
/* 旧スタイル設定 ここまで */




.management .desc_l{
	margin-top:30px;
	float: left;
}
.management .desc_l ul li input:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
.management .desc_r{
	float: right;
	margin-top: 11px;
	font-size: 14px;
	margin-bottom: 15px;
}
.management .desc_r ul{
	float: left;
}
.management .desc_r ul.desc_r1{
	margin-right: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #eeeeee;
	padding: 6px;
	height: 32px;
}
.management .desc_r ul.desc_r2
{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #eeeeee;
	padding: 6px 15px;
	height: 32px;

}
.management .desc_r ul.desc_r3
{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #eeeeee;
	padding: 6px 15px;
	height: 32px;

}
.management .desc_r ul.desc_r4
{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #eeeeee;
	padding: 6px 15px 8px;
	height: 32px;

}
.management .desc_r ul.desc_r1 li:first-child{
	background: url("/images/before_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r1 li:nth-child(2){
	background: url("/images/now_btn1.png")  no-repeat;
	background-position: left 6px;
	background-size: 21px 21px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r1 li:last-child{
	background: url("/images/finish_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r2 li:first-child{
	background: url("/images/edit_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r2 li:nth-child(2){
	background: url("/images/delete_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r2 li:last-child{
	background: url("/images/score_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r3 li:first-child{
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 20px;
}
.management .desc_r ul.desc_r3 li:nth-child(2){
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 0px;
	margin-left: 0px;
}
.management .desc_r ul.desc_r3 li:last-child{
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 5px;
	margin-left: 0px;
}
.management .desc_r ul.desc_r4 li:first-child{
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 10px;
}
.management .desc_r ul.desc_r4 li:nth-child(2){
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 0px;
	margin-left: 0px;
}
.management .desc_r ul.desc_r4 li:last-child{
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 5px;
	margin-left: 0px;
}
.management .desc_r ul.desc_r4 li:nth-child(4){
	background: url("/images/excel_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r4 li:nth-child(5){
	background: url("/images/excel_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r4 li:nth-child(6){
	background: url("/images/excel_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
/*
.management .desc_r ul.desc_r4 li:nth-child(8){
	background: url("/images/excel_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
*/
.management .desc_r ul.desc_r4 li:nth-child(8){
	background: url("/images/score_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management .desc_r ul.desc_r4 li.excel{
	background: url("/images/excel_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.desc_r ul li {
    padding-top: 6px;
}
.desc_r ul li.notdl{
	opacity: 0.5;
}

.management .desc ul li{
	padding-right: 18px;
}
.desc_l_1{
	background: url("/images/desc_l1.png")  no-repeat;
	width: 139px;
	height: 24px;
	border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
.desc_l_2{
	background: url("/images/desc_l2.png")  no-repeat;
	width: 114px;
	height: 24px;
	border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
/* table */
.management  .input_form table{
	width: 100%;
	border: 1px solid #d2d2d2;
}
.management  .input_form table thead tr{
	height: 30px;
	background: #3865a8;
	color: #fff;
	text-align: center;
	font-size: 14px;
	border: 1px solid #d2d2d2;
}
.management  .input_form table thead tr th{
	width: 4% !important;
	text-align: center;
}
.management  .input_form table thead tr td:first-child{
	width: 12%;
}
.management  .input_form table thead tr td:nth-child(3){
	width: 33%;
}
.management  .input_form table thead tr td:nth-child(4){
	width: 12%;
}
.management  .input_form table thead tr td:nth-child(5){
	width: 9%;
}
.management  .input_form table thead tr td:nth-child(6){
	width: 9%;
}
.management  .input_form table thead tr td:nth-child(7){
	width: 9%;
}
.management  .input_form table thead tr td:nth-child(8){
	width: 12%;
}
.management  .input_form table thead tr.att td{
	width: 6%;
}
.management  .input_form table tbody tr{
	height: 60px;
}
.management  .input_form table tbody tr th,
.management  .input_form table tbody tr td{
	border: 1px solid #d2d2d2;
	font-size: 14px;
	text-align: center;
}
.management .input_form table tbody tr:nth-child(even){
	background: #efefef;
}
.management  .input_form table tbody tr td.ta_left{
	padding-left:0.5em;
	padding-right:0.5em;
	/*text-indent: 1%*/
}
.management  .input_form table tbody tr td img{
	vertical-align: middle;
}
.management  .input_form table tbody tr td span{
	margin-left: 2%;
}
.management  .input_form table tbody tr td ul li{
	float: none;
	padding: 2%;
	display: inline-block;
}

/*20190404 add 固有の講義のみスタイルを変える*/
.management  .input_form table tbody tr.general th{
    position: relative;
}
.management  .input_form table tbody tr.general th::before{
    background-color: #F00;
    border: none;
    content: "";
    display: block;
    width: 2px;
    height: 59px;
    position: absolute;
    top: 0;
    left: 0;
}

.management .input_form a{
	text-decoration: none;
}
.management .input_form a:hover {
	text-decoration: underline;
}
/* pager */
.management ul.pager{
	margin-top: 33px;
	text-align: center;
}
.management ul.pager li{
	float: none !important;
	display: inline-block !important;
	padding: 0px !important;
	border: 1px solid #3865a8;
	font-size: 18px;
	font-weight: normal;
	margin: 0 3px;
}
.management ul.pager li a{
	text-decoration: none;
	display: block;
	padding: 0 4px;
	color: #3865a8;
}
.management ul.pager li span{
	text-decoration: none;
	display: block;
	padding: 0 4px;
}
.management ul.pager li span.p_current{
	background: #3865a8;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	color: #fff;
}
.management ul.pager li a:hover,
.management ul.pager li a.p_current
{
	background: #3865a8;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	color: #fff;

}
.management ul.pager li:first-child,
.management ul.pager li:last-child
{
	border: none;
}
.management ul.pager li:first-child a:hover,
.management ul.pager li:last-child a:hover
{
	background: none;
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
	color: #313131;
}

/* table */
.management  .input_form2 table{
	width: 100%;
	border: 1px solid #d2d2d2;
}
.management  .input_form2 table thead tr{
	height: 60px;
	background: #3865a8;
	color: #fff;
	text-align: center;
	font-size: 14px;
	border: 1px solid #d2d2d2;
}
.management  .input_form2 table thead tr th{
	width: 4% !important;
	text-align: center;
}
.management  .input_form2 table thead tr td:first-child{
	width: 13%;
}
.management  .input_form2 table thead tr td:nth-child(3){
	width: 30%;
}
.management  .input_form2 table thead tr td:nth-child(4){
	width: 10%;
}
.management  .input_form2 table thead tr td:nth-child(5){
	width: 10%;
}
.management  .input_form2 table thead tr td:nth-child(6){
	width: 10%;
}
.management  .input_form2 table thead tr td:nth-child(7){
	width: 10%;
}
.management  .input_form2 table thead tr td:nth-child(8){
	width: 10%;
}
.management  .input_form2 table tbody tr{
	height: 60px;
}
.management  .input_form2 table tbody tr th,
.management  .input_form2 table tbody tr td{
	border: 1px solid #d2d2d2;
	font-size: 14px;
	text-align: center;
}
.management .input_form2 table tbody tr:nth-child(even){
	background: #efefef;
}
.management  .input_form2 table tbody tr td.ta_left{
	text-indent: 1%
}
.management  .input_form2 table tbody tr td img{
	vertical-align: middle;
}
.management  .input_form2 table tbody tr td span{
	margin-left: 2%;
}
.management  .input_form2 table tbody tr td ul li{
	float: none;
	padding: 2%;
	display: inline-block;
}
.management .input_form2 a{
	text-decoration: none;
}
.management .input_form2 a:hover {
	text-decoration: underline;
}

/*20190404 add 固有の講義のみスタイルを変える*/
.management  .input_form2 table tbody tr.general th{
    position: relative;
}
.management  .input_form2 table tbody tr.general th::before{
    background-color: #F00;
    border: none;
    content: "";
    display: block;
    width: 2px;
    height: 59px;
    position: absolute;
    top: 0;
    left: 0;
}

/*===================================================
     7.	Test
===================================================*/
/* acordion */
.ui-accordion .ui-accordion-header {
    display: block;
    cursor: pointer;
    position: relative;
    margin-top: 2px;
    padding:36px 0 0 2% !important; 
    min-height: 0;
    /* support: IE7; */
    height: 60px !important;
    font-size: 14px !important;
    background: #3865A8 !important;
    color: #fff !important;
    border: none !important;
    margin-bottom: 0 !important;
}
.ui-widget-content {
    border: none !important; 
    background:none !important; 
    color: #222222;
    width: 100%;
}
.ui-accordion .ui-accordion-content {
    padding: 0 !important; 
}

.test .basic{
	margin-bottom: 40px;
}
.test .basic td{
	width: 80%;
}
.test .basic td select{
	width: 40%;
}
#q1_search{
	width: 312px !important;
}
/*
#q1 table tr:first-child,
#q2 table tr:first-child,
#q3 table tr:first-child
{
	height: 98px;
}
*/
.ui-accordion-content table tr:first-child {
	height: 98px;
}
/*
#q1 table tr th,
#q2 table tr th,
#q3 table tr th
{
	width: 20% !important;
}
#q1 table tr td,
#q2 table tr td,
#q3 table tr td{
	width: 80% !important;
}
*/
.ui-accordion-content table th {
    width: 20% !important;
}
.ui-accordion-content table td {
    width: 80% !important;
}
#k_search{
	background: url("/images/k_search.png")  no-repeat;
	width: 144px;
	height: 36px;
	border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
#k_quote{
	width: 144px;
	height: 36px;
	border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
.q_textarea{
	float:left;
	width: 412px !important;
	height:3em;
	padding:3px;
}
#q1_select{
	width: 412px !important;
	margin: 0 !important;
	display: inline-block !important;
}
ul.q1_select_wrap{
	margin-bottom: 10px;
}
ul.q1_select_wrap li{
	float: none !important;
	display: inline-block !important;
	padding-right: 0px !important;
	vertical-align: middle;
	margin-right: 10px;
}
#accordion table tr td h4{
	color: #a40000;
	padding-top: 10px;
}
ul.q1_select_wrap li .button{
	width: 52px;
}
ul.q1_select_wrap li.add{
	padding-left: 30px;
}
ul.q1_select_wrap li.add .button{
	width: 120px !important;
}
#q1,#q2,#q3 {
   /* height: auto !important;*/
}
.q_delete{
	border: 1px solid #d2d2d2;
	height: 60px;
	width: 100%;
	box-sizing: border-box;
	margin-bottom: 20px;
}
.q_delete p{
	text-align: center;
}
.q_delete p .button{
	height: 34px;
	width: 152px;
	margin-left: 2%;
	margin-top: 12px;
	color: #a40000;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background-color: rgba(255,255,255,0);
	border: solid 1px #999;
	background-image: -webkit-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -moz-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -o-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: -ms-linear-gradient(bottom, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
	background-image: linear-gradient(to top, #c1c1c1, #d3d3d3 20%, #efefef 51%, #fff 99%);
}
.ui-accordion .ui-accordion-header .ui-accordion-header-icon {
    position: static !important; 
    /* left: 46%; */
    /* top: 50%; */
    margin-top: 0 !important; 
    display: inline-block !important;
    vertical-align: middle !important;
}
#accordion h3{
	text-align: center;
	font-size: 18px !important;
}
#accordionconf h3{
	text-align: center;
	font-size: 18px !important;
	height: 30px;
	background: #3865a8;
	color: #fff;
	border: 1px solid #d2d2d2;
	margin:0;
	padding:15px 0 10px 0;
}
#accordionconf table th{
	width:20%;
}
#accordionconf table td{
	width:80%;
}
.ui-state-default .ui-icon {
    background: url("/images/ad_open.png") no-repeat left center !important;
}
h3.ui-state-default:after{
	content: "を開く" !important;
}
.ui-state-active .ui-icon{
	background-image: url("/images/ad_close.png") !important;
}
h3.ui-state-active:after{
	content: "を閉じる" !important;
}
input.q1_select {
    width: 412px !important;
}

ul.q1_select_wrap li{
	position: relative;
}
ul.q1_select_wrap input[type=checkbox]{
	position: absolute;
    top: 0;
    opacity: 0;
    width: 100%;  
    height: 100%;
}
ul.q1_select_wrap input[type=checkbox]:hover{
	filter: alpha(opacity=0);
	-moz-opacity:0;
	opacity:0;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
}
ul.q1_select_wrap input[type=checkbox] + label {
	display: block;
	background-image: url("/images/check1_off.png");
	background-size: 19px;
	background-position: left center;
	background-repeat: no-repeat;
	overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;

}
ul.q1_select_wrap input[type=checkbox]:checked + label {
	background-image: url("/images/check1_on.png");
}
ul.q1_select_wrap li:nth-child(3) {
    width: 20px;
}
td.sentakushi {
    padding: 10px 0 !important;
}
.for_ie {
    padding: 0 2%;
}
.lecture .for_ie, 
.lecture .for_ie2{
    padding: 0 20px 0 15px;
}

.for_ie2 {
    padding: 0 5%;
}

/*===================================================
     8.	Total
===================================================*/
.total h3{
	font-size: 20px;
	background: #eeeeee;
	padding: 7px 26px !important;
    border: none !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-top: 36px;
    margin-bottom: 13px !important;

}

.total h3 span{
	font-weight: bold;
	padding-left: 10px;
}
.total main ul{
	text-align: right;
}
.total main ul li {
    float: none;
    padding-right: 10px;
    display: inline-block;
}
.total h4{
	color: #313131;
	font-size: 14px;
	background: #eeeeee;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 568px;
    padding: 6px 0;
	float: right;
	margin: 10px 0 17px;
}
.total h4 span{
	font-family: "ＭＳ ゴシック";
	color: #a40000;
	padding:0 10px 0 20px;
}
.total table thead th{
	font-weight: normal !important;
}
.total table thead td{
	background: #fff;
	padding: 16px 0;
}
.total table thead td ul{
	text-align: center;
	font-size: 0;
}
.total table thead td ul li{
	display: inline-block;
	border-right:1px solid #b5b5b5;
	font-size: 18px;
	margin: 0 5px;
}
.total table thead td ul li:last-child{
	border: none;
}
.total table thead td ul li a{
	text-decoration: none;
    margin: 0px;
    padding: 5px 8px;
}
.total table thead td ul li a.t_current{
	background: #6d93ca;
	color: #fff;
}
.total table tbody th{
	background: #6d93ca !important;
	font-size: 18px !important;
	font-weight: normal !important;
}
.total main table tbody tr:nth-child(odd) td {
    background: #eeeeee;
}
.total main table tbody tr:nth-child(even) td {
    background: #fff;
}
.total table tbody td{
	text-indent: 2%;
}
.total table tbody td a{
	color: #313131;
	background: url(../images/link_icn.png) no-repeat left center;
	padding-left: 1%;
}

/*===================================================
     8.	Start
===================================================*/

.start h3{
	font-size: 20px;
	background: #eeeeee;
	padding: 7px 26px !important;
    border: none !important;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    margin-top: 36px;
    margin-bottom: 13px !important;

}

.start h3 span{
	font-weight: bold;
	padding-left: 10px;
}
.start main ul{
	text-align: right;
}
.start main ul li {
    float: none;
    padding-right: 10px;
    display: inline-block;
}
.start main ul li.active{
	color: #ff0000;
}
.start h4{
	color: #313131;
	font-size: 14px;
	background: #eeeeee;
	-webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    width: 650px;
    padding: 6px 0;
	float: right;
	margin: 10px 0 17px;
}
.start h4 span{
	font-family: "ＭＳ ゴシック";
	color: #a40000;
	padding:0 10px 0 20px;
}
.start table thead th{
	font-weight: normal !important;
}
.start table thead td{
	background: #fff;
	padding: 16px 0;
}
.start table thead td ul{
	text-align: center;
	font-size: 0;
}
.start table thead td ul li{
	display: inline-block;
	border-right:1px solid #b5b5b5;
	font-size: 16px;
	margin: 0 5px;
}
.start table thead td ul li:last-child{
	display: inline-block;
	border-right:none;
	font-size: 16px;
	margin: 0 5px;
	padding-right:11px;
/*	display: inline-block;
	border-right:1px solid #b5b5b5;
	font-size: 16px;
	margin: 0 5px;*/
}
.start table thead td ul li a{
	text-decoration: none;
    margin: 0px;
    padding: 3px 5px;
}
.start table thead td ul li a.t_current{
	background: #6d93ca;
	color: #fff;
}
.start table tbody th{
	background: #6d93ca !important;
	font-size: 14px !important;
	font-weight: normal !important;
}
.start table tbody td.question_sel{
	padding: 20px !important;
}
.start main table tbody tr:nth-child(odd) td {
    background: #eeeeee;
}
.start main table tbody tr:nth-child(even) td {
    background: #fff;
}
.start table tbody td a{
	color: #313131;
	background: url(../images/link_icn.png) no-repeat left center;
	padding-left: 1%;
}
.start table tbody td.choices_sel{
	 background: #fff !important;
}
.start table tbody td a{
	padding: 20px !important;
	display: block;
	background-image: none !important;
	text-decoration: none;
}
.start table tbody td a.moments_noqu{
	color: -webkit-link;;
	background: initial;
	display: initial;
	padding: 0 2% 0 0 !important;
	text-decoration: underline;
}
.start table tbody td a:hover{
	background: #d8e6fb;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.test_sel{
	 background: #fff !important;
}
.test_sel a{
	padding: 20px 0;
	display: block;
	background-image: none !important;
	text-decoration: none;
}
.test_sel a:hover{
	background: #d8e6fb;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.test_sel2{
	 background: #fff !important;
}
.test_sel2 a{
	padding: 20px 0;
	display: block;
	background-image: none !important;
	text-decoration: none;
}
.t_pager{
	text-align: center !important;
	margin-top: 20px;
	padding-bottom: 20px;
}
.t_pager li{
	float: none;
	font-size: 14px;
}
.t_pager li a{
	text-decoration: none;
	color:#313131;
	padding: 20px;
}
.t_pager .prev{
	background: url(../images/prev_icn.png) no-repeat left center;
	padding-right: 100px;
}
.t_pager .next{
	background: url(../images/next_icn.png) no-repeat right center;
}

/*===================================================
    Management2
===================================================*/
.management2 main{
	min-width: 920px;
	max-width: 1320px;
	margin: 20px auto;
	/* padding:0 8px; */
	padding: 0 27px 0 10px;
}
/*
.management2 h2{
	min-width: 960px;
	max-width: 1320px;
	margin: 20px auto;
}
*/
.management2 .search_area_inner{
	min-width: 960px;
	max-width: 1320px;
	margin: 0 auto;
}
.management2 .search_area{
	height: auto;
}
.management2 .search_area ul{
	text-align: right;
	padding: 11px 0;
}
.management2 .search_area ul li{
	float: none;
}
.management2 .search_area ul li:last-child{
	padding-right: 0;
}
.management2 .search_area ul li#first{
	border-right:1px dotted #313131;
	padding: 15px 30px 15px 0;
	margin-right: 30px;
}

.management2 .search_area2{
	height: auto;
}
.management2 .search_area2 ul{
	text-align: right;
	padding: 11px 0;
}
.management2 .search_area2 ul li{
	float: none;
}
.management2 .search_area2 ul li:last-child{
	padding-right: 10px;
}

.management2 .desc_l{
	margin-top:30px;
	float: left;
}
.management2 .desc_l ul li input:hover{
	filter: alpha(opacity=60);
	-moz-opacity:0.6;
	opacity:0.6;
	-webkit-transition: 0.2s ease-in-out;
	-moz-transition: 0.2s ease-in-out;
}
.management2 .desc_r{
	float: right;
	margin-top: 11px;
	font-size: 14px;
	margin-bottom: 15px;
}
.management2 .desc_r ul{
	float: left;
}
.management2 .desc_r ul.desc_r1{
	margin-right: 10px;
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #eeeeee;
	padding: 6px;
	height: 32px;
}
.management2 .desc_r ul.desc_r2
{
	-webkit-border-radius: 3px;
	-moz-border-radius: 3px;
	border-radius: 3px;
	background: #eeeeee;
	padding: 6px 15px;
	height: 32px;

}
.management2 .desc_r ul.desc_r1 li:first-child{
	background: url("/images/before_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management2 .desc_r ul.desc_r1 li:nth-child(2){
	background: url("/images/now_btn1.png")  no-repeat;
	background-position: left 6px;
	background-size: 21px 21px;
	text-indent: 25px;
}
.management2 .desc_r ul.desc_r1 li:last-child{
	background: url("/images/finish_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}
.management2 .desc_r ul.desc_r2 li:first-child{
	background: url("/images/to_le_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 21px 20px;
	text-indent: 25px;
}
.management2 .desc_r ul.desc_r2 li:last-child{
	background: url("/images/to_result_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 21px 20px;
	text-indent: 25px;
}

.management2 .desc_r ul li {
    padding-top: 6px;
}
.management2 .desc ul li{
	padding-right: 18px;
}
.management2 .desc_l_1{
	background: url("/images/desc_l1.png")  no-repeat;
	width: 139px;
	height: 24px;
	border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
.management2 .desc_l_2{
	background: url("/images/desc_l2.png")  no-repeat;
	width: 114px;
	height: 24px;
	border: none;
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
}
.management2 .input_form table thead tr {
    height: 60px !important;
}
.management2 .input_form table tbody tr:hover{
	background: #fdb4b4 !important;
}

.management2 .input_form2 table thead tr {
    height: 60px !important;
}
.management2 .input_form2 table tbody tr:hover{
	background: #fdb4b4;
}
.before:nth-child(odd):hover{
	background:#fff !important;
}
.before:nth-child(even):hover{
	background:#efefef !important;
}
.management2 .basic{
	margin-bottom: 40px;
}

/*===================================================
     10.	Check
===================================================*/
.check main h2.check_ttl{
	border-bottom: 3px solid #8facd7;
	position: relative;
	padding-top: 10px;
	margin-bottom: 18px;
}
.check main h2.check_ttl img {
    display: block;
    margin-bottom: -3px;
}
.check table tr:nth-child(even) th{
	background: #5581bf !important;
}
.check table tr td{
	background: #fff !important;
	text-indent: 0;
	padding: 0 2%;
}
.check table tr td.file{
	padding: 0 !important;
	text-indent: 0;
}
.check table tr td.file a{
	padding: 2.2% 3% !important;
}
.check table tr td.file p{
	padding: 0 3% !important;
}
.check main p {
    padding: 15px 0 0 2px;
}
/*===================================================
     11.	js
===================================================*/





/*===================================================
     12.	2016.05.13add
===================================================*/

#acMenu .ocBtn{
	display:block;
	width:117px;
	height:44px;
	cursor:pointer;
	background:url(../images/btnOpen2.png) top left no-repeat;
	margin-right:auto;
	margin-left:auto;
	text-indent: 100%;
	white-space: nowrap;
	overflow: hidden;
	}
#acMenu .answer{
	display:none;
	}
#acMenu .btn.active .ocBtn{
	background:url(../images/btnClose2.png) top left no-repeat;
	}


.answer {
	border-top: 1px solid #d2d2d2;
	}


.answer dl {
	border-bottom: 1px solid #d2d2d2;
	display:table;
	}

.answer dl:last-child {
	border-bottom: 0;
	}

.answer dl dt {
	width:88%;
	display:table-cell;
	}

.answer dl dt .questionnaire{
	width:100%;
	display:table-cell;
	}

.answer dl dd {
	text-align:center;
	width:12%;
	display:table-cell;
	}

.bcffffd7 {
	background:#ffffd7;
	}

.bcff8080 {
	background:#ff8080;
	}

.kekkaTable {
	border: 1px solid #d2d2d2;
}


.kekkaTable div {
	font-size:14px;
}


.kekkaTable .kekka {
	color:#333;
	padding:2%;
	background: #eeeeee;
	text-align:center;
}

.kekkaTable .gouhi {
	color:#333;
	padding:2%;
	margin:0 -1px;
}

.kekkaTable .kekka_num {
	color:#333;
	padding:2%;
	background: #eeeeee;
	text-align:center;
}

.kekkaTable .gouhi_num {
	color:#333;
	padding:2%;
	margin:0 -1px;
}

.tableBar {
	background:#3865a8;
	border-top: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
	color:#fff;
	padding:16px;
	font-size:18px;
	text-align:center;
	}

.kekkaTable .tbody {
	border-bottom: 1px solid #d2d2d2;
}

.kekkaTable .tbody:last-child {
	border-bottom: 0;
}


.kekkaTable .tbody dl dt {
	border-right: 1px solid #d2d2d2;
	padding:16px;
}

.kekkaTable .tbody dl dd {
	color:#333;
	padding:16px;
}

/*解答結果の解説*/
.kekkaTable .tbody dl.result_comment {
    background-color: #EFEFEF;
    width:100%;
}
.kekkaTable .tbody dl.result_comment dt{
    width: 100%;
    display: block;
    border-right:none;
    padding: 1em;
    text-align: center;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing:border-box;
    
}
.kekkaTable .tbody dl.result_comment dd{
    color: #333;
    padding: 1em;
    text-align: left;
    width: 100%;
    display: block;
    background-color: #FFF;
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing:border-box;
}
/* 画像 */
.kekkaTable .tbody dl.result_comment dd ul.reference{
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing:border-box;
    display:-webkit-flex;
    display:-ms-flexbox;
    display:flex;
    justify-content:flex-start;
    -webkit-flex-wrap:wrap;
    -ms-flex-wrap:wrap;
    flex-wrap:wrap;
    margin: 20px auto;
    min-width: 960px;
    max-width: 1270px;
}
.kekkaTable .tbody dl.result_comment dd ul.reference li{
    -webkit-box-sizing: border-box;
    -ms-box-sizing: border-box;
    box-sizing:border-box;
    width: 20%;
    text-align: center;
    padding: 0;
}
@media screen and (max-width: 767px) {
    .kekkaTable .tbody dl.result_comment dd ul.reference{
        width: 90% !important;
        min-width: inherit;
        display: block;
    }
    .kekkaTable .tbody dl.result_comment dd ul.reference li{
        width: 100%;
    }
}
.kekkaTable .tbody dl.result_comment dd ul.reference li span.cap{
    display: block;
    font-size: 0.8em;
    text-align: center;
    width: 100%;
}
.kekkaTable .tbody dl.result_comment dd ul.reference li a{
    background:none;
}

.kekkaTable .tbody dl.result_comment dd ul.reference li img{
    width: 80%;
    height: auto;
}
.kekkaTable .tbody dl.result_comment dd p.comment_text{
    margin: 1%;
}

.btn {
	display:table;
	}

.number {
	background: #6d93ca;
	text-align:center;
	vertical-align: middle;
	padding:2%;
	color:#fff;
	}

.tu {
	text-decoration:underline;
	}

.black {
	color:#000;
	}
	
.red {
	color:#f00;
	}
	
.blue {
	color:#0000ff;
	}

	
.green {
	color:#007D00;
	}
	
.mondai {
	background:#fff;
	padding:2%;
	}

.mondai2 {
	background:#fff;
	padding:2%;
	}
	
.mondai3 {
	padding:2%;
	}
	
	
.kaitou {
	background: #eeeeee;
	text-align:center;
	vertical-align: middle;
	padding:2%;
	}
	
.momentskaitou {
	background: #eeeeee;
	text-align:center;
	vertical-align: middle;
	padding:2%;
	}

.btnArea {
	background: #eeeeee;
	vertical-align:middle;
	}
.btnArea2 {
	background: #FFF;
	vertical-align:middle;
	padding:0 5px;
	}

@media screen and (min-width: 600px) {

.kekkaTable .thead {
	display:table;
}


.kekkaTable .kekka {
	border-right: 1px solid #d2d2d2;
	border-bottom: 1px solid #d2d2d2;
	width:12%;
	text-align:center;
	display:table-cell;
}

.kekkaTable .gouhi {
	border-bottom: 1px solid #d2d2d2;
	display:table-cell;
	margin:0 -1px;
}

.kekkaTable .kekka_num {
	border-right: 1px solid #d2d2d2;
	width:12%;
	text-align:center;
	vertical-align:middle;
	display:table-cell;
}

.kekkaTable .gouhi_num {
	display:table-cell;
	margin:0 -1px;
}

.kekkaTable .gouhi_num ul {
	text-align:left;
}

.kekkaTable .gouhi_num ul a{
	text-decoration:none;
	color:#333;
	font-size:16px;
}

.tu {
	padding-right:25px;
	}

.btn {
	display:table;
	}

.number {
	display:table-cell;
	width:12%;
	border-right: 1px solid #d2d2d2;
	}

.mondai {
	display:table-cell;
	width:66%;
	border-right: 1px solid #d2d2d2;
	}
.mondai2 {
	display:table-cell;
	width:76%;
	border-right: 1px solid #d2d2d2;
	}
.mondai3 {
	display:table-cell;
	width:76%;
	border-right: 1px solid #d2d2d2;
	}

.kaitou {
	display:table-cell;
	width:10%;
	border-right: 1px solid #d2d2d2;
	}

.momentskaitou {
	display:table-cell;
	}


.btnArea {
	display:table-cell;
	}
.btnArea2 {
	display:table-cell;
	}
.w15per {
	width:15%;
	text-align:center;
	}

}
@media screen and (max-width: 400px) {
.kekkaTable .kekka {
	display:block;
	text-align:center;
}

.kekkaTable .gouhi {
	display:block;
	text-align:center;
}

.btnArea {
	padding:2%;
	}
.kekkaTable .kekka {
	border-bottom: 1px solid #d2d2d2;
}

.gouhi strong {
	display:block;
	}

.gouhi span {
	display:block;
	}

.number {
	border-bottom: 1px solid #d2d2d2;
	}

.mondai {
	border-bottom: 1px solid #d2d2d2;
	}
.mondai3 {
	border-bottom: 1px solid #d2d2d2;
	}
.kaitou {
	border-bottom: 1px solid #d2d2d2;
	}

.btnArea {
	}

}

/*===================================================
    13.	2018.08.01 add
    試験結果の解説部分の追加
===================================================*/
 .results_desc {
     box-sizing: border-box;
     border: 1px solid #d2d2d2;
     font-size: 140%;
     margin: 0 auto 50px auto;
     width: 100%;
 }
 .results_desc .tableBar {
     font-size: 14px;
 }
 .results_desc .desc-text {
     padding: 15px;
 }
 .results_desc .desc-text p {
     padding-left: 1em;
     position: relative;
 }
 .results_desc .desc-text p:before {
     content: "・";
     position: absolute;
     left: 0;
 }

/*===================================================
     6-2.	management
    検索部分の修正追加
===================================================*/
/* 検索ボックス（クリックした後に表示される検索ボックス類 */
.search_area_new {
    box-sizing: border-box;
	background: #eeeeee;
	width: 100%;
    padding: 1% 1% 0.5% 1%;
}

/* 検索コンテンツと検索ボタンの分割 */
.search_area_new dl {
    text-align: left;
}
.search_area_new dl dt {
    font-size: 14px;
    float: left;
    width: 89%;
}
.search_area_new dl dd {
    width: 96px;
    float: right;
}

/* 検索コンテンツ部分をさらに3分割 */
.search_area_new dl dt .tableArea {
    width: 100%;
}
.search_area_new dl dt .tableArea .tableAreaBox_3 {
    display: table;
    float: left;
    margin-right: 1.333%;
    margin-bottom: 0.5%;
    width: 32%;
}
/* 検索コンテンツ部分をさらに4分割 */
.search_area_new dl dt .tableArea .tableAreaBox_4 {
    display: table;
    float: left;
    margin-right: 1.5%;
    margin-bottom: 0.5%;
    width: 23.5%;
}
/* 検索ボックス用レイアウト */
/* アイコンを使う場合 */
.iconCell {
    width: 8%;
    display: table-cell;
    text-align: center;
    margin-bottom: 0.5%;
    vertical-align: middle;
}
/* テキストのタイトルを使う場合 */
.iconCell.txt {
    width: 20%;
    display: table-cell;
    min-width: 80px;
    text-align: center;
    margin-bottom: 0.5%;
}

.iconCell > img {
    padding: 0 15px 0 0;
}
.iconCell > span {
    color: #000;
    display: block;
    padding: 0 5px 0 0;
    text-align: right;
}

/* 検索：入力部 */
/* アイコンを使う場合 */
.inputCell {
    display: table-cell;
    overflow: hidden;
    width: 90%;
}
/* テキストのタイトルを使う場合 */
.inputCell.txt {
    display: table-cell;
    overflow: hidden;
    width: 100%;
}

/* 検索：セレクトボックス */
.search_area_new dl dt select {
    box-sizing: border-box;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #bdbdbd;
    background: url("/images/arrow.png") right 50% no-repeat;
    background-color: #fff;
    background-size: 40px 25px;
    padding-left: 5px;
    color: #7d7d7d;
    height: 34px;
    cursor: pointer;
    width: 100%;
}

/* 検索：テキストボックス */
.search_area_new dl dt input {
    box-sizing: border-box;
    text-indent: 5px;
    padding-left: 5px;
    color: #7d7d7d;
    height: 34px;
    cursor: pointer;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    border: 1px solid #bdbdbd;
    width: 100%;
}
.search_area_new dl dt input::placeholder {
  color: #7d7d7d;
}
/* 検索するボタン */
#search_btn.new_btn {
    padding: 20px 0 0 0;
}
/*部署限定時の権限一覧表示*/
ul#authority_list{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    width: 100%;
}
ul#authority_list li{
    box-sizing: border-box;
    display: inline-block;
    flex-basis: 20%;
    float: none;
    line-height: 1.1;
    padding:.25em .75em .25em 0;
    max-width: 20%;
}

@media screen and (max-width: 1200px) {
/* 4分割を3分割に */
    .search_area_new dl dt .tableArea .tableAreaBox_4 {
        margin-right: 1.333%;
        width: 32%;
    }
}

/*===================================================
    検索部分の余白調整　2018-09-12
===================================================*/
.ui-tabs .ui-tabs-nav .ui-tabs-anchor img {
    padding-bottom: 2px;
}