@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

----------------------------------------------------------------------------------- */


/*===================================================
     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;}
.t9px { font-size: 0.9em;}
.t11px { font-size: 1.1em;}
.t12px { font-size: 1.2em;}
.t13px { font-size: 1.3em;}
.t14px { font-size: 1.4em;}
.t15px { font-size: 1.5em;}
.t16px { font-size: 1.6em;}
.t17px { font-size: 1.7em;}
.t18px { font-size: 1.8em;}
.t19px { font-size: 1.9em;}
.t20px { font-size: 2em;}

.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;
}
.pb10{
	padding-bottom: 10px;
}
.pb20{
	padding-bottom: 20px;
}

.pb25{
	padding-bottom: 25px;
}

.pb30{
	padding-bottom: 30px;
}
.pr20{
	padding-right: 20px !important;
}
p{
	font-size: 1.4em;
	font-family: "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック"
}
.taC{
	text-align:center;
}
.tdu{
	text-decoration:underline;
}
.error{
	padding:3px 0 3px 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;
}
.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;
}
.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.local-menu-wrap {
	background: none;
	background-color: #f2f5fc;
	margin: 0 auto 30px 0;
	padding: 1em 0 .5em 0;
	width: 100%;
	height: auto;
}

nav.local-menu-wrap ul {
	list-style: none;
  margin: 0 auto;
  background-image: none;
  font-size: 20px;
}

nav.local-menu-wrap ul li {
	display: inline-block;
	padding: 0 1em;
	margin: 0 0 0.5em;
	border-right: #2654B6 solid 1px;
}

nav.local-menu-wrap ul li:last-child {
    border-right: none;
}
nav.local-menu-wrap ul li a:link,
nav.local-menu-wrap ul li a:visited,
nav.local-menu-wrap ul li a:active {
	height:auto;
  color: #2654B6;
  text-decoration: none;
  line-height: 1;
  background-image: none;
	display: inline;
}
nav.local-menu-wrap ul li a:hover {
    text-decoration: none;
}

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;
		overflow: auto;
		white-space: nowrap;
}

nav ul::-webkit-scrollbar{
		height: 10px;
		border-radius:5px;
	}
nav ul::-webkit-scrollbar-track{
		background: #F1F1F1;
		border-radius:5px;
		margin-left:10px;
		margin-right:10px;
	}
nav ul::-webkit-scrollbar-thumb {
		background: #BCBCBC;
		border-radius:5px;
	}


nav ul li{
	display: inline-block;
  letter-spacing: normal;
	margin-bottom: 5px;

}

.overlay_in {
        display: -webkit-flex;
        display: flex;
        flex-wrap: wrap;
        background-color: rgba(0, 0, 0, 0.6);
        font-size: 18px;
        color: #fff;
        justify-content: center;
        position: absolute;
        /* top: 50%; */
        top: 2%;
        right: 0%;
        transform: translate(-50%, 40%);
        width: 10%;
        /*height: 74.2%;*/
    }
.overlay_in img {
        margin: 0 auto 20px auto;
        display: block;
    }
.overlay_in p {
        line-height: 1.5;
        display: block;
        width: 100%;
        text-align: center;
        margin-bottom: 20px;
    }
/*.menu li:hover > ul {
   display: block;
}*/
ul.submenu {
   display: none;
   position: absolute;
   /*width: 165px;*/
   z-index:10;
   min-width: 0px;
}
nav ul.submenu li a.submenutab {
	height: 40px;
    padding-top: 0px;
    font-size: 24px;
    color: #fff;
    text-decoration: none;
    /* border: white; */
    border-bottom: 1px solid #fff;
    text-align: center;
    background: linear-gradient(rgb(46, 106, 174) 0%, rgb(65, 121, 184) 31%, rgb(69, 125, 187) 44%, rgb(47, 105, 173) 46%, rgb(49, 107, 175) 59%, rgb(65, 121, 185) 88%, rgb(64, 123, 187) 98%, rgb(45, 105, 174) 100%);
    background: #2e6aae;
    background: -moz-linear-gradient(top, #2e6aae 0%, #4179b8 31%, #457dbb 44%, #2f69ad 46%, #316baf 59%, #4179b9 88%, #407bbb 98%, #2d69ae 100%);
    background: -webkit-linear-gradient(top, #2e6aae 0%,#4179b8 31%,#457dbb 44%,#2f69ad 46%,#316baf 59%,#4179b9 88%,#407bbb 98%,#2d69ae 100%);
    background: linear-gradient(to bottom, #2e6aae 0%,#4179b8 31%,#457dbb 44%,#2f69ad 46%,#316baf 59%,#4179b9 88%,#407bbb 98%,#2d69ae 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#2e6aae', endColorstr='#2d69ae',GradientType=0 );
    line-height: 42px;
}

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: 2px top;}
.nav2 { background-position: 1373px top;}
.nav3 { background-position: 1200px top;}
.nav4 { background-position: 1030px top;}
.nav5 { background-position: 859px top;}
.nav6 { background-position: 688px top;}
.nav7 { background-position: 516px top;}
.nav8 { background-position: 344px top;}
.nav9 { background-position: 172px top;}
.nav10 { background-position: 1545px top;}
.nav11 { background-position: 1717px top;}
.nav12 { background-position: 1889px top;}
.nav13 { background-position: 2061px top;}
.nav14 { background-position: 2232px top;}
.nav15 { background-position: 2404px top;}
.nav16 { background-position: 2576px  top;}
.nav17 { background-position: 2747px top;}
.nav18 { background-position: 2919px  top;}
.nav19 { background-position: 3091px  top;}
.nav20 { background-position: 3426px  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: -688px top;}
.start .nav6,.management2 .nav6 { background-position: -859px top;}
.start .nav7,.management2 .nav7 { background-position: -1030px top;}
.start .nav8,.management2 .nav8 { background-position: -1200px top;}
.start .nav9,.management2 .nav9 { background-position: -1373px top;}
.start .nav10,.management2 .nav10 { background-position: -1545px top;}
.start .nav11,.management2 .nav11 { background-position: -1717px top;}
.start .nav12,.management2 .nav12 { background-position: -1889px top;}
.start .nav13,.management2 .nav13 { background-position: -2061px top;}
.start .nav14,.management2 .nav14 { background-position: -2232px top;}
.start .nav15,.management2 .nav15 { background-position: -2404px top;}
.start .nav16,.management2 .nav16 { background-position: -2576px top;}
.start .nav17,.management2 .nav17 { background-position: -2747px top;}
.start .nav18,.management2 .nav18 { background-position: -2919px top;}
.start .nav19,.management2 .nav19 { background-position: -3091px top;}
.start .nav20,.management2 .nav20 { background-position: -3426px top;}

.management3 .nav2 { background-position: -172px top;}
.management3 .nav3 { background-position: -344px top;}
.management3 .nav4 { background-position: -516px top;}
.management3 .nav5 { background-position: -688px top;}
.management3 .nav6 { background-position: -859px top;}
.management3 .nav7 { background-position: -1030px top;}
.management3 .nav8 { background-position: -1200px top;}
.management3 .nav9 { background-position: -1373px top;}
.management3 .nav10 { background-position: -1545px top;}
.management2 .nav11 { background-position: -1717px top;}
.management2 .nav12 { background-position: -1889px top;}
.management2 .nav13 { background-position: -2061px top;}
.management2 .nav14 { background-position: -2232px top;}
.management2 .nav15 { background-position: -2404px top;}
.management2 .nav16 { background-position: -2576px top;}
.management2 .nav17 { background-position: -2747px top;}
.management2 .nav18 { background-position: -2919px top;}
.management2 .nav19 { background-position: -3091px top;}
.management2 .nav20 { background-position: -3426px top;}

.nav1:hover { background-position: 2px 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: 1373px 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: 1200px 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: 1030px 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: 859px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.nav6:hover { background-position: 688px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.nav7: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;
}
.nav8: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;
}
.nav9: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;
}
.nav10:hover { background-position: 1545px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.nav11:hover { background-position: 1717px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

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

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

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

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

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

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

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

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

.nav20:hover { background-position: 3426px 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: -688px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav6:hover,.management2 .nav6:hover { background-position: -859px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav7:hover,.management2 .nav7:hover { background-position: -1030px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav8:hover,.management2 .nav8:hover { background-position: -1200px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav9:hover,.management2 .nav9:hover { background-position: -1373px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav10:hover,.management2 .nav10:hover { background-position: -1545px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.start .nav11:hover,.management2 .nav11:hover { background-position: -1717px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav12:hover,.management2 .nav12:hover { background-position: -1889px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav13:hover,.management2 .nav13:hover { background-position: -2061px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav14:hover,.management2 .nav14:hover { background-position: -2232px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav15:hover,.management2 .nav15:hover { background-position: -2404px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav16:hover,.management2 .nav16:hover { background-position: -2576px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav17:hover,.management2 .nav17:hover { background-position: -2747px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.start .nav18:hover,.management2 .nav18:hover { background-position: -2919px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

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

.start .nav20:hover,.management2 .nav20:hover { background-position: -3426px 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 .nav5:hover { background-position: -688px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

.management3 .nav6:hover { background-position: -859px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav7:hover { background-position: -1030px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav8:hover { background-position: -1200px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav9:hover { background-position: -1373px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

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

.management3 .nav11:hover { background-position: -1717px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav12:hover { background-position: -1889px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav13:hover { background-position: -2061px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav14:hover { background-position: -2232px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}

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

.management3 .nav17:hover { background-position: -2747px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav18:hover { background-position: -2919px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav19:hover { background-position: -3091px bottom;
	-webkit-transition: 0s ease-in-out;
	-moz-transition: 0s ease-in-out;
	filter: alpha(opacity=100);
	-moz-opacity:1;
	opacity:1;
}
.management3 .nav20:hover { background-position: -3426px 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: 2px bottom;}
.nav2.current{background-position: 1373px bottom;}
.nav3.current{background-position: 1200px bottom;}
.nav4.current{background-position: 1030px bottom;}
.nav5.current{background-position: 859px bottom;}
.nav6.current{background-position: 688px bottom;}
.nav7.current{background-position: 516px bottom;}
.nav8.current{background-position: 344px bottom;}
.nav9.current{background-position: 172px bottom;}
.nav10.current{background-position: 1545px bottom;}
.nav11.current{background-position: 1717px bottom;}
.nav12.current{background-position: 1889px bottom;}
.nav13.current{background-position: 2061px bottom;}
.nav14.current{background-position: 2232px bottom;}
.nav15.current{background-position: 2404px bottom;}
.nav16.current{background-position: 2576px bottom;}
.nav17.current{background-position: 2747px bottom;}
.nav18.current{background-position: 2919px bottom;}
.nav19.current{background-position: 3091px bottom;}
.nav20.current{background-position: 3426px 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: -688px bottom;}
.start .nav6.current,.management2 .nav4.current{background-position: -859px bottom;}
.start .nav7.current,.management2 .nav7.current{background-position: -1030px bottom;}
.start .nav8.current,.management2 .nav8.current{background-position: -1200px bottom;}
.start .nav9.current,.management2 .nav9.current{background-position: -1373px bottom;}
.start .nav10.current,.management2 .nav10.current{background-position: -1545px bottom;}
.start .nav11.current,.management2 .nav11.current{background-position: -1717px bottom;}
.start .nav12.current,.management2 .nav12.current{background-position: -1889px bottom;}
.start .nav13.current,.management2 .nav13.current{background-position: -2061px bottom;}
.start .nav14.current,.management2 .nav14.current{background-position: -2232px bottom;}
.start .nav15.current,.management2 .nav15.current{background-position: -2404px bottom;}
.start .nav16.current,.management2 .nav16.current{background-position: -2576px bottom;}
.start .nav17.current,.management2 .nav17.current{background-position: -2747px bottom;}
.start .nav18.current,.management2 .nav18.current{background-position: -2919px bottom;}
.start .nav19.current,.management2 .nav19.current{background-position: -3091px bottom;}
.start .nav20.current,.management2 .nav20.current{background-position: -3426px 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: -688px bottom;}
.management3 .nav6.current{background-position: -859px bottom;}
.management3 .nav7.current{background-position: -1030px bottom;}
.management3 .nav8.current{background-position: -1200px bottom;}
.management3 .nav9.current{background-position: -1373px bottom;}
.management3 .nav10.current{background-position: -1545px bottom;}
.management3 .nav11.current{background-position: -1717px bottom;}
.management3 .nav12.current{background-position: -1889px bottom;}
.management3 .nav13.current{background-position: -2061px bottom;}
.management3 .nav14.current{background-position: -2232px bottom;}
.management3 .nav15.current{background-position: -2404px bottom;}
.management3 .nav16.current{background-position: -2576px bottom;}
.management3 .nav17.current{background-position: -2747px bottom;}
.management3 .nav18.current{background-position: -2919px bottom;}
.management3 .nav19.current{background-position: -3091px bottom;}
.management3 .nav20.current{background-position: -3426px bottom;}


li .colorpicker{
	width: 180px;
}

ul.textmenu{
	display: flex;;
}

ul.colormenusub {
   display: flex;
   position: absolute;
   z-index:10;
   background-color: #f2f2f2;
   border: 2px solid #ff9800!important;
}

ul.colormenusub:hover{
    display: flex;
}

ul.colormenusub li{
    padding: 5px 3px;
    text-decoration: none;
    /* border: white; */
    border-bottom: 1px solid #ff9800!important;
    /*line-height: 42px;*/
}

/*黒色*/
ul.colormenusub li .colorpicker_black{
	/* 背景色を黒色に指定 */
	background-color: #000;
}

/*赤色*/
ul.colormenusub li .colorpicker_red{
	/* 背景色を黒色に指定 */
	background-color: #e53935;
}

/*青色*/
ul.colormenusub li .colorpicker_blue{
	/* 背景色を青色に指定 */
	background-color: #0000dd;
}

/*橙色*/
ul.colormenusub li .colorpicker_orange{
	/* 背景色を黒色に指定 */
	background-color: #ff9800;
}

/*緑色*/
ul.colormenusub li .colorpicker_green{
	/* 背景色を緑色に指定 */
	background-color: #5cb531;
}


.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;
}


/*------------------------------------------------------------
	TOPページに戻る 20200124 add
-------------------------------------------------------------*/
/* for PC */
#gotop-wrap3 {
    align-items: center;
    background-color: rgba(0,0,0,0);
    border-radius: 25px;
    color: #106AB5;
    cursor: pointer;
    display: flex;
    font-size: 2em;
    justify-content: center;
    height: 80px;
    position: fixed;
        right: 20px;
        bottom: 50px;
    transition: .3s;
    width: 80px;
    z-index: 8888;
}
#gotop-wrap3:hover {
    background-color: rgba(0,0,0,.4);
    color: #FFF;

}

@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.grey th{
	background: #5581bf;
}
.lecture main table tbody tr.grey td{
	background: #eeeeee;
}
.lecture main table tbody tr.white th{
	background: #6d93ca;
}
.lecture main table tbody tr.white td{
	background: #FFF;
}

.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 select {
	width: 100%;
}
.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: 10px !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.l2_1{
	text-align: center;
	padding: 20px 10px 0 0;
}
.search_area ul.l2_2{
	float: left;
	background: #eeeeee;
	width: 100%;
}
.search_area ul li{
	display: inline-block;
	font-size: 14px;
	padding-right: 25px;
}
.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_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_r5
{
	-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(7){
	background: url("/images/score_btn.png")  no-repeat;
	background-position: left 6px;
	background-size: 20px 20px;
	text-indent: 25px;
}


.management .desc_r ul.desc_r5 li:first-child{
    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;
}
.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;
}

/*===================================================
     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: 16px !important;
}
#accordionconf h3{
	text-align: center;
	font-size: 16px !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: 0 !important;
}
.for_ie {
    padding: 0 2%;
}
.lecture .for_ie,
.lecture .for_ie2{
    padding: 0 20px;
}

.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 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: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 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;
	}
	/* 削除ボタン（×） */
	.del{
		float: right;
	    margin-right: 15px;
	    cursor: pointer;
	    width: 30px;
	    height: 30px;
	    background-color: #6d93ca;
	    color: #fff;
	    border: 1px solid #fff;
	    border-radius: 30px;
		text-align: center;
	}

/*--------------------------------------------------------
	ブロック・テキスト配置用共通設定
--------------------------------------------------------*/

/*文字の横位置*/
.al-l{ text-align: left; }
.al-r{ text-align: right; }
.al-c{ text-align: center; }

/*文字の縦位置*/
.vl-t{ vertical-align: top!important; }/*上寄せ*/
.vl-m{ vertical-align: middle!important; }/*中央寄せ*/
.vl-b{ vertical-align: bottom!important; }/*下寄せ*/

/*周りのブロックからの距離（margin）*/
.m0{ margin: 0!important; }/*周りからのmarginを0に*/
.m0-t{ margin-top: 0!important; }/*上からのmarginを0に*/
.m0-r{ margin-right: 0!important; }/*右からのmarginを0に*/
.m0-b{ margin-bottom: 0!important; }/*下からのmarginを0に*/
.m0-l{ margin-left: 0!important; }/*左からのmarginを0に*/

.m5{ margin: 5px!important; }
.m5-t{ margin-top: 5px!important; }
.m5-r{ margin-right: 5px!important; }
.m5-b{ margin-bottom: 5px!important; }
.m5-l{ margin-left: 5px!important; }

.m10{ margin: 10px!important; }
.m10-t{ margin-top: 10px!important; }
.m10-r{ margin-right: 10px!important; }
.m10-b{ margin-bottom: 10px!important; }
.m10-l{ margin-left: 10px!important; }

.m15{ margin: 15px!important; }
.m15-t{ margin-top: 15px!important; }
.m15-r{ margin-right: 15px!important; }
.m15-b{ margin-bottom: 15px!important; }
.m15-l{ margin-left: 15px!important; }

.m20{ margin: 20px!important; }
.m20-t{ margin-top: 20px!important; }
.m20-r{ margin-right: 20px!important; }
.m20-b{ margin-bottom: 20px!important; }
.m20-l{ margin-left: 20px!important; }

.m25{ margin: 25px!important; }
.m25-t{ margin-top: 25px!important; }
.m25-r{ margin-right: 25px!important; }
.m25-b{ margin-bottom: 25px!important; }
.m25-l{ margin-left: 25px!important; }

.m30{ margin: 30px!important; }
.m30-t{ margin-top: 30px!important; }
.m30-r{ margin-right: 30px!important; }
.m30-b{ margin-bottom: 30px!important; }
.m30-l{ margin-left: 30px!important; }

.m40{ margin: 40px!important; }
.m40-t{ margin-top: 40px!important; }
.m40-r{ margin-right: 40px!important; }
.m40-b{ margin-bottom: 40px!important; }
.m40-l{ margin-left: 40px!important; }

.m50{ margin: 50px!important; }
.m50-t{ margin-top: 50px!important; }
.m50-r{ margin-right: 50px!important; }
.m50-b{ margin-bottom: 50px!important; }
.m50-l{ margin-left: 50px!important; }

.m60{ margin: 60px!important; }
.m60-t{ margin-top: 60px!important; }
.m60-r{ margin-right: 60px!important; }
.m60-b{ margin-bottom: 60px!important; }
.m60-l{ margin-left: 60px!important; }

.m70{ margin: 70px!important; }
.m70-t{ margin-top: 70px!important; }
.m70-r{ margin-right: 70px!important; }
.m70-b{ margin-bottom: 70px!important; }
.m70-l{ margin-left: 70px!important; }

.m80{ margin: 80px!important; }
.m80-t{ margin-top: 80px!important; }
.m80-r{ margin-right: 80px!important; }
.m80-b{ margin-bottom: 80px!important; }
.m80-l{ margin-left: 80px!important; }

.m90{ margin: 90px!important; }
.m90-t{ margin-top: 90px!important; }
.m90-r{ margin-right: 90px!important; }
.m90-b{ margin-bottom: 90px!important; }
.m90-l{ margin-left: 90px!important; }

.m100{ margin: 100px!important; }
.m100-t{ margin-top: 100px!important; }
.m100-r{ margin-right: 100px!important; }
.m100-b{ margin-bottom: 100px!important; }
.m100-l{ margin-left: 100px!important; }

.m120{ margin: 120px!important; }
.m120-t{ margin-top: 120px!important; }
.m120-r{ margin-right: 120px!important; }
.m120-b{ margin-bottom: 120px!important; }
.m120-l{ margin-left: 120px!important; }

.m150{ margin: 150px!important; }
.m150-t{ margin-top: 150px!important; }
.m150-r{ margin-right: 150px!important; }
.m150-b{ margin-bottom: 150px!important; }
.m150-l{ margin-left: 150px!important; }

.m200{ margin: 200px!important; }
.m200-t{ margin-top: 200px!important; }
.m200-r{ margin-right: 200px!important; }
.m200-b{ margin-bottom: 200px!important; }
.m200-l{ margin-left: 200px!important; }

.m300{ margin: 300px!important; }
.m300-t{ margin-top: 300px!important; }
.m300-r{ margin-right: 300px!important; }
.m300-b{ margin-bottom: 300px!important; }
.m300-l{ margin-left: 300px!important; }


/*周りのブロックからの距離（padding）*/
.p0{ padding: 0!important; }
.p0-t{ padding-top: 0!important; }
.p0-r{ padding-right: 0!important; }
.p0-b{ padding-bottom: 0!important; }
.p0-l{ padding-left: 0!important; }

.p5{ padding: 5px!important; }
.p5-t{ padding-top: 5px!important; }
.p5-r{ padding-right: 5px!important; }
.p5-b{ padding-bottom: 5px!important; }
.p5-l{ padding-left: 5px!important; }

.p10{ padding: 10px!important; }
.p10-t{ padding-top: 10px!important; }
.p10-r{ padding-right: 10px!important; }
.p10-b{ padding-bottom: 10px!important; }
.p10-l{ padding-left: 10px!important; }

.p15{ padding: 15px!important; }
.p15-t{ padding-top: 15px!important; }
.p15-r{ padding-right: 15px!important; }
.p15-b{ padding-bottom: 15px!important; }
.p15-l{ padding-left: 15px!important; }

.p20{ padding: 20px!important; }
.p20-t{ padding-top: 20px!important; }
.p20-r{ padding-right: 20px!important; }
.p20-b{ padding-bottom: 20px!important; }
.p20-l{ padding-left: 20px!important; }

.p25{ padding: 25px!important; }
.p25-t{ padding-top: 25px!important; }
.p25-r{ padding-right: 25px!important; }
.p25-b{ padding-bottom: 25px!important; }
.p25-l{ padding-left: 25px!important; }

.p30{ padding: 30px!important; }
.p30-t{ padding-top: 30px!important; }
.p30-r{ padding-right: 30px!important; }
.p30-b{ padding-bottom: 30px!important; }
.p30-l{ padding-left: 30px!important; }

.p40{ padding: 40px!important; }
.p40-t{ padding-top: 40px!important; }
.p40-r{ padding-right: 40px!important; }
.p40-b{ padding-bottom: 40px!important; }
.p40-l{ padding-left: 40px!important; }

.p50{ padding: 50px!important; }
.p50-t{ padding-top: 50px!important; }
.p50-r{ padding-right: 50px!important; }
.p50-b{ padding-bottom: 50px!important; }
.p50-l{ padding-left: 50px!important; }

.p60{ padding: 60px!important; }
.p60-t{ padding-top: 60px!important; }
.p60-r{ padding-right: 60px!important; }
.p60-b{ padding-bottom: 60px!important; }
.p60-l{ padding-left: 60px!important; }

.p70{ padding: 70px!important; }
.p70-t{ padding-top: 70px!important; }
.p70-r{ padding-right: 70px!important; }
.p70-b{ padding-bottom: 70px!important; }
.p70-l{ padding-left: 70px!important; }

.p80{ padding: 80px!important; }
.p80-t{ padding-top: 80px!important; }
.p80-r{ padding-right: 80px!important; }
.p80-b{ padding-bottom: 80px!important; }
.p80-l{ padding-left: 80px!important; }

.p90{ padding: 90px!important; }
.p90-t{ padding-top: 90px!important; }
.p90-r{ padding-right: 90px!important; }
.p90-b{ padding-bottom: 90px!important; }
.p90-l{ padding-left: 90px!important; }

.p100{ padding: 100px!important; }
.p100-t{ padding-top: 100px!important; }
.p100-r{ padding-right: 100px!important; }
.p100-b{ padding-bottom: 100px!important; }
.p100-l{ padding-left: 100px!important; }

/*フォントの装飾*/
.b{ font-weight: bold!important; }/*太字*/
.normal{ font-weight: normal!important; }/*太字を解除*/

/*フォントサイズの設定*/
.big{ font-size: 1.2em!important; }
.big2{ font-size: 1.5em!important; }
.big3{ font-size: 1.8em!important; }
.small{ font-size: 0.8em!important; }

.f08em{ font-size: 0.8em; }
.f09em{ font-size: 0.9em; }
.f10em{ font-size: 1.0em; }
.f11em{ font-size: 1.1em; }
.f12em{ font-size: 1.2em; }
.f13em{ font-size: 1.3em; }
.f14em{ font-size: 1.4em; }
.f15em{ font-size: 1.5em; }
.f16em{ font-size: 1.6em; }
.f17em{ font-size: 1.7em; }
.f18em{ font-size: 1.8em; }
.f19em{ font-size: 1.9em; }
.f20em{ font-size: 2.0em; }
.f21em{ font-size: 2.1em; }
.f22em{ font-size: 2.2em; }
.f23em{ font-size: 2.3em; }
.f24em{ font-size: 2.4em; }
.f25em{ font-size: 2.5em; }
.f26em{ font-size: 2.6em; }
.f27em{ font-size: 2.7em; }
.f28em{ font-size: 2.8em; }
.f29em{ font-size: 2.9em; }
.f30em{ font-size: 3.0em; }

.f8pt{ font-size: 8.5pt; }
.f9pt{ font-size: 9.0pt; }
.f10pt{ font-size: 10pt; }
.f11pt{ font-size: 11pt; }
.f12pt{ font-size: 12pt; }
.f13pt{ font-size: 13pt; }
.f14pt{ font-size: 14pt; }
.f15pt{ font-size: 15pt; }
.f16pt{ font-size: 16pt; }
.f17pt{ font-size: 17pt; }
.f18pt{ font-size: 18pt; }
.f19pt{ font-size: 19pt; }
.f20pt{ font-size: 20pt; }
.f21pt{ font-size: 21pt; }
.f22pt{ font-size: 22pt; }
.f23pt{ font-size: 23pt; }
.f24pt{ font-size: 24pt; }

/*フォントの色設定*/
.red{ color: #e53935!important; }/*赤*/
.blue{ color: #0000dd!important; }/*青*/
.green{ color: #4caf50!important; }/*緑*/
.yellow{ color: #ffff00!important; }/*黄*/
.navy{ color: #3f51b5!important; }/*紺*/
.orange{ color: #ff9800!important; }/*橙*/
.pink{ color: #ec407a!important; }/*ピンク*/
.purple{ color: #9c27b0!important; }/*紫*/
.olive{ color: #808000!important; }/*オリーブ*/
.lime{ color: #00ff00!important; }/*黄緑*/
.aqua{ color: #00bcd4!important; }/*水色*/
.black{ color: #000!important; }/*黒*/
.gray{ color: #ccc!important; }/*灰*/
.white{ color: #fff!important; }/*白*/
.brown{ color: #6d4c33!important; }/*茶*/

/*マーカー表示（背景に着色）*/
.box-yellow,
.box-orange,
.box-pink,
.box-lime,
.box-gray{ padding: 2px; }

.box-yellow{ background-color: #ff6; }/*黄*/
.box-orange{ background-color: #f90; }/*橙*/
.box-pink{ background-color: #ffccff; }/*ピンク*/
.box-lime{ background-color: #9f9; }/*黄緑*/
.box-gray{ background-color: #ccc; }/*灰*/


/*行間の設定*/
.lh10{ line-height: 1.0!important; }
.lh11{ line-height: 1.1!important; }
.lh12{ line-height: 1.2!important; }
.lh13{ line-height: 1.3!important; }
.lh14{ line-height: 1.4!important; }
.lh15{ line-height: 1.5!important; }
.lh16{ line-height: 1.6!important; }
.lh17{ line-height: 1.7!important; }
.lh18{ line-height: 1.8!important; }
.lh19{ line-height: 1.9!important; }
.lh20{ line-height: 2.0!important; }

/*横幅を指定*/
.w05{ width: 5%; }
.w10{ width: 10%; }
.w12{ width: 12%; }
.w15{ width: 15%; }
.w20{ width: 20%; }
.w25{ width: 25%; }
.w30{ width: 30%; }
.w33{ width: 33.33%; }
.w35{ width: 35%; }
.w40{ width: 40%; }
.w45{ width: 45%; }
.w48{ width: 48%; }
.w50{ width: 50%; }
.w55{ width: 55%; }
.w60{ width: 60%; }
.w65{ width: 65%; }
.w70{ width: 70%; }
.w75{ width: 75%; }
.w80{ width: 80%; }
.w85{ width: 85%; }
.w90{ width: 90%; }
.w95{ width: 95%; }
.w100{ width: 100%; }


.mondai {
	background:#fff;
	padding:2%;
	}

.mondai2 {
	background:#fff;
	padding:2%;
	}

.kaitou {
	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;
	}
.kaitou {
	display:table-cell;
	width:10%;
	border-right: 1px solid #d2d2d2;
	}

.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;
	}

.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_btn.new_btn {
    padding: 20px 0 0 0;
}

/* チェックボタン */
.check_img {
	cursor: pointer;
    width:19px;
    height:19px;
}


@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;
}

/*-------------------------------------------------------
モーダルウィンドウ用スタイル 20200522
--------------------------------------------------------*/
/* Pure CSS modal box Author: Jorge Chavez Github: http://github.com/jorgechavz */
.modal .top-srch-box-in h2 {
	margin: 0 0 .5em 0;
}
.modal .top-srch-box-in .h2-sub {
	font-size: 14px;
	padding-left: 5px;
}

.modal .checkbox{
  display: none;
}

/* Gray background */
.modal .modal-overlay{
  opacity: 0;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -100;
  transform: scale(1);
  display: none;
  background-color: rgba(0,0,0,0.7);
}

/* Box */
.modal .modal-wrap{
  background-color: #FFF;
  border:#3261AB solid 3px;
  box-shadow: 3px 3px 3px rgba(0,0,0,0.2);
  padding: 1em;
  width: 85%;
  margin: 20px auto;
  border-radius: 7px;
  transition: all 0.5s ease;
  align-self: center;
  max-height: 70%;
  overflow-y: scroll;
}
.modal .modal-wrap::-webkit-scrollbar{
    width: 15px;
}
.modal .modal-wrap::-webkit-scrollbar-thumb{
    background: #D8D8D8;
    border-radius: 10px;
}
.modal .modal-wrap::-webkit-scrollbar-track-piece:start{
    background: #fff;
}
.modal .modal-wrap::-webkit-scrollbar-track-piece:end{
    background: #fff;
}
/* Close button */
.modal .modal-overlay .close{
  position: absolute;
  right: 10px;
  top: 10px;
  font-size: 20px;
  width: 1em;
  height: 1em;
  color: #333;
}
.modal .modal-overlay .close:hover{
  cursor: pointer;
  color: #4b5361;
}
.modal .o-close {
   width: 100%;
   height: 100%;
   position: fixed;
   left: 0;
   top: 0;
   z-index: -100;
}
.modal input:checked ~ .o-close {
  z-index: 9998;
}
.modal input:checked ~ .modal-overlay{
  transform: scale(1);
  opacity:1;
  z-index: 9997;
  overflow: auto;
  display: flex;
  animation-duration: 0.5s;
  animation-name: fade-in;
  -moz-animation-duration: 0.5s;
  -moz-animation-name: fade-in;
  -webkit-animation-duration: 0.5s;
  -webkit-animation-name: fade-in;
}
.modal input:checked ~ .modal-overlay .modal-wrap {
  transform: translateY(0);
  z-index: 9999;
}
/* Fadein from display:none アニメーションキーフレーム */
@keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-moz-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
@-webkit-keyframes fade-in {
  0% {
    display: none;
    opacity: 0;
  }
  1% {
    display: flex;
    opacity: 0;
  }
  100% {
    display: flex;
    opacity: 1;
  }
}
.top-srch-box-in {
	width: 100%;
}
.top-srch-box-in h2{
    color: #005388;
}

/*------  コンテンツ生成ボタン ------*/

.wrapper .content-button {
	height: 34px;
  font-size: 0.85em;
  padding: 0 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%);
}

/*------  index画像リスト ------*/

.selected_img{
	padding: 10px 0 10px 0;
}

label.mini_img {
    padding: 5px;
}

label.mini_img .img_radio{
	display: none;
}

label.mini_img .img_radio:checked + img.select_miniimg{
	border: 2px solid blue;
}

img.select_miniimg:hover {
    border: 2px solid blue;
}

img.select_miniimg {
	width: 10%;
    height: auto;
	border: 2px solid #ddd;
}
img.select_miniimg:hover {
    border: 2px solid blue;
}
opacity: 0;
label.mini_img {
	margin: 0 5px;
	-webkit-transition-duration: 0.3s;
	-webkit-transition-duration: 0.3s;
 	-moz-transition-duration: 0.3s;
  	-o-transition-duration: 0.3s;
  	-ms-transition-duration: 0.3s;
}
