@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&family=Noto+Serif+JP:wght@500&family=Roboto:wght@400;500;700&display=swap");
@import url("https://fonts.googleapis.com/icon?family=Material+Icons");
html {
	margin:0;
	padding:0;
}
body {
	position:relative;
	margin:0;
	padding:0;
	width:100%;
	background:#f4f7f6;
	color:#575757;
	font-family:"Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	-webkit-text-size-adjust:100%;
}
a {
	outline:none;
	color:#575757;
	text-decoration:none;
}
img {
	border:none;
}
br.sp {
	display:none;
}
ul {
	list-style:none;
}
dl, dt, dd {
	margin:0;
	padding:0;
}
.tx_line {
	background:linear-gradient(transparent 60%, #fff286 0%);
}
/* basic classes
----------------------------------------------------------------------*/
.clearfix:after {
	display:block;
	visibility:hidden;
	clear:both;
	height:0;
	content:".";
}
.clearfix {
	display:block;
}
/* loading classes
----------------------------------------------------------------------*/
#form #loading {
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:999999;
	display:none;
	-webkit-box-align:center;
	align-items:center;
	-ms-flex-align:center;
	-webkit-box-orient:vertical;
	-webkit-box-direction:normal;
	-ms-flex-direction:column;
	flex-direction:column;
	-webkit-box-pack:center;
	-ms-flex-pack:center;
	justify-content:center;
	margin:0 auto;
	padding:0;
	width:100%;
	background:rgba(255,255,255,0.95);
	opacity:0;
}
#form #loading.active {
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	opacity:1;
	animation:loadingshow 0.3s ease 0s 1 normal;
}
#form #loading > p {
	margin:0;
	color:#07a794;
	font-weight:500;
	font-size:24px;
}
#form .loading_dot {
	position:relative;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:-o-flex;
	display:flex;
	-webkit-box-pack:justify;
	-ms-flex-pack:justify;
	justify-content:space-between;
	margin:20px auto 0;
	padding:0;
	width:100px;
	height:auto;
}
#form .loading_dot > div {
	position:relative;
	display:block;
	margin:0;
	padding:0;
	width:10px;
	height:10px;
	border-radius:5px;
	background:#07a794;
	opacity:0;
}
#form .loading_dot > div:nth-child(1) {
	animation:loadingdot 1.5s ease 0s infinite normal;
}
#form .loading_dot > div:nth-child(2) {
	animation:loadingdot 1.5s ease 0.2s infinite normal;
}
#form .loading_dot > div:nth-child(3) {
	animation:loadingdot 1.5s ease 0.4s infinite normal;
}
#form .loading_dot > div:nth-child(4) {
	animation:loadingdot 1.5s ease 0.6s infinite normal;
}
#form .loading_dot > div:nth-child(5) {
	animation:loadingdot 1.5s ease 0.8s infinite normal;
}



/* form classes
----------------------------------------------------------------------*/
input[type="text"], input[type="number"], input[type="tel"], input[type="email"], input[type="password"], textarea {
	box-sizing:border-box;
	padding:10px 10px;
	width:100%;
	height:60px;
	outline:none;
	border:#eceaea solid 1px;
	-webkit-border-radius:0;
	-moz-border-radius:0;
	border-radius:0;
	background-color:#ffffff;
	font-size:14px;
	font-family:"Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	-webkit-appearance:none;
}
select {
	box-sizing:border-box;
	padding:10px 40px 10px 10px;
	min-width:300px;
	height:60px;

/* width: 100%; */
	outline:none;
	border:#eceaea solid 1px;
	border-radius:0;
	background-color:#ffffff;
	background-image:url(../img/common/arrow_drop_down.svg);
	background-position:right 5px top 50%;
	background-repeat:no-repeat;
	font-family:"Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;

	-webkit-appearance:none;
}
select::-ms-expand {
	display:none;
}
::-ms-reveal {
	display:none;
}

textarea {
	height:150px;
	border-radius:0;
	font-family:"Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}
input::placeholder, textarea::placeholder {
	color:#b4b4b4;
	line-height:normal;
}
input[type="submit"] {
	display:block;
	margin:0 auto;
	width:290px;
	height:70px;
	outline:none;
	border:none;
	border-radius:0;
	background-color:#07a794;
	color:#ffffff;
	text-align:center;
	font-weight:500;
	font-size:15px;
	font-family:"Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor:pointer;

	-webkit-appearance:none;
}
input[type="button"] {
	display:block;
	margin:0 auto;
	width:290px;
	height:70px;
	outline:none;
	border:none;
	border-radius:0;
	background-color:#07a794;
	color:#ffffff;
	text-align:center;
	font-weight:500;
	font-size:15px;
	font-family:"Roboto", "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
	cursor:pointer;

	-webkit-appearance:none;
}
/*radio*/
.checkbox .check {
	display:none;
}
.checkbox label {
	position:relative;
	display:inline-block;
	margin:0;
	padding:5px 0 5px 35px;
	height:auto;
	font-weight:500;
	font-size:14px;
	line-height:1.86em;
	cursor:pointer;
}
.checkbox label .check + .checkbox-icon {
	position:absolute;
	top:5px;
	left:5px;
	padding:0;
	vertical-align:middle;
}
.checkbox .check:checked + .checkbox-icon:before {
	background:url(../img/common/check_box_on.svg) no-repeat left;
}
.checkbox .check + .checkbox-icon:before {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(../img/common/check_box_off.svg) no-repeat left;
	content:"";
}
.radio .check {
	display:none;
}
.radio label {
	position:relative;
	display:inline-block;
	margin:0;
	padding:5px 0 5px 35px;
	height:auto;
	font-weight:500;
	font-size:14px;
	line-height:1.86em;
	cursor:pointer;
}
.radio label .check + .checkbox-icon {
	position:absolute;
	top:5px;
	left:5px;
	padding:0;
	vertical-align:middle;
}
.radio .check:checked + .checkbox-icon:before {
	background:url(../img/common/radio_on.svg) no-repeat left;
}
.radio .check + .checkbox-icon:before {
	display:inline-block;
	width:22px;
	height:22px;
	background:url(../img/common/radio_off.svg) no-repeat left;
	content:"";
}
/*checkbox input.error, textarea.error, select.error {
	background-color:#f8c3c3;
}*/
label.error {
	display:block;
	color:#ff7c7c;
}

#other .otherWrapper dl dd label.error {
	font-size:13px;
}
#login p.err {
	margin:0 0 10px;
	padding:0;
	color:#ff7c7c;
	font-weight:500;
	font-size:13px;
	line-height:2.0em;
}
#form label.error {
	display:block;
	margin:0 0 15px;
	padding:8px 10px;
	background:#ff7c7c;
	color:#ffffff;
	text-align:center;
	font-size:14px;
	line-height:normal;
}

#form .formBox dl dd label.error {
	display:block;
	background:inherit;
	color:#ff7c7c;
	text-align:left;
}
#loginForm label.error {
	display:block;
	padding:3px 0 0;
	font-size:13px;
}
#agree-error {
	display:block;
	padding:3px 0 0;
	font-size:13px;
}

/* pager
----------------------------------------------------------------------*/
.navigation {
	padding:30px 0 0;
	text-align:center;
}
.navigation span.current {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:0 2px;
	width:40px;
	height:40px;
	border:none !important;
	border-radius:100%;
	background:#07a794;
	color:#ffffff;
	text-decoration:none;
	font-size:12px;
}
.navigation a.page-numbers {
	display:inline-flex;
	align-items:center;
	justify-content:center;
	margin:0 2px;
	width:40px;
	height:40px;
	border:none !important;
	border-radius:100%;
	background:#cccccc;
	color:#ffffff;
	text-decoration:none;
	font-size:12px;
}
/*スマホの時のページャー*/
.navigation a.prev, .navigation a.next {
	display:none;
}

/* 横禁止
----------------------------------------------------------------------*/
.mobileCaution {
	position:fixed;
	top:0;
	right:0;
	bottom:0;
	left:0;
	z-index:9999999;
	display:none;
	align-items:center;
	justify-content:center;
	background:#ffffff;
}
.mobileCaution.show {
	display:flex;
}
.mobileCaution .cautionBox {
	position:relative;
	margin:0;
	padding:0 0 0 86px;
}
.mobileCaution .cautionBox p {
	color:#000000;
	font-weight:700;
	font-size:18px;
	line-height:1.8em;
}
.mobileCaution .cautionBox .icon {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-60px;
	line-height:0;
}
.mobileCaution .cautionBox .icon img {
	width:auto;
	height:120px;
}
/* login
----------------------------------------------------------------------*/
#login {
	position:relative;
	overflow:hidden;
	margin:0;
	padding:0;
}
#login .photo {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	width:46%;
	background-size:cover;
	background-repeat:no-repeat;
}
#login .photo.background1 {
	background-image:url("../img/common/main.jpg");
	background-position:top 50% right 0;
}
#login .photo.background2 {
	background-image:url("../img/common/main02.jpg");
	background-position:top 50% right 50%;
}
#login .photo.background3 {
	background-image:url("../img/common/main03.jpg");
	background-position:top 50% right 50%;
}
#login .photo.background4 {
	background-image:url("../img/common/main04.jpg");
	background-position:top 50% right 50%;
}


#login .loginWrapper {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	width:54%;
}
#login .loginWrapper .logo {
	position:absolute;
	top:40px;
	left:40px;
	line-height:0;
}
#login .loginWrapper .loginBlock {
	margin:80px 0 0;
	padding:0;
	min-width:324px;
	width:40%;
}
#login .loginWrapper .loginBlock h1 {
	position:relative;
	margin:0 0 50px;
	padding:0;
	line-height:0;
}
#login .loginWrapper .loginBlock h1 span {
	position:absolute;
	right:0;
	bottom:-36px;
	left:0;
	z-index:3;
	display:block;
	padding:3px 0;
	border-radius:3px;
	background:#07a794;
	color:#ffffff;
	text-align:center;
	font-weight:500;
	font-size:12px;
	line-height:1.5;
}

#login .loginWrapper .loginBlock h1::after {
	position:absolute;
	right:0;
	bottom:5px;
	left:100px;
	height:1px;
	background:#939393;
	content:"";
}
#login .loginWrapper .loginBlock dl {
	margin:0 0 16px;
	padding:0;
}
#login .loginWrapper .loginBlock dl dt {
	margin:0 0 8px;
	padding:0;
	text-align:left;
	font-weight:700;
	font-size:11px;
}
#login .loginWrapper .loginBlock dl dd {
	position:relative;
	margin:0;
	padding:0;
}

#login .loginWrapper .loginBlock dl dd label.error {
	display:block;
	padding:3px 0 0;
	font-size:13px;
}
#login .loginWrapper .submit {
	margin:0;
	padding:0;
}
#login .loginWrapper .submit .agree {
	margin:0;
	padding:0;
	font-weight:100500;
	font-size:13px;
}

#login input[type="text"], #login input[type="password"] {
	height:50px;
	border:#dadada solid 1px;
	border-radius:5px;
	background:#ffffff;
}
#login input[type="password"] {
	padding:10px 50px 10px 10px;
}

#login input[type="submit"] {
	margin:30px 0 0;
	width:100%;
	height:50px;
	border-radius:5px;
}
#login p {
	margin:20px 0 0;
	padding:0;
	font-weight:500;
	font-size:12px;
	line-height:2.0em;
}
#login p a {
	color:#07a794;
	text-decoration:underline;
}

/* パスワード初期化・パスワード再発行
----------------------------------------------------------------------*/
#other {
	position:relative;
	display:flex;
	overflow:hidden;
	align-items:center;
	justify-content:center;
	margin:0;
	padding:0;
	min-height:626px;
}
#other.change {
	min-height:646px;
}

#other .otherWrapper {
	box-sizing:border-box;
	margin:0;
	padding:50px;
	max-width:500px;
	width:100%;
	background:#e6eaea;
}

#other .otherWrapper .logo {
	margin:0 0 20px;
	padding:0;
	line-height:0;
}
#other .otherWrapper .logo img {
	width:187px;
	height:60px;
}
#other .otherWrapper h1 {
	margin:0 0 10px;
	padding:0;
	color:#07a794;
	text-align:center;
	font-size:16px;
}
#other .otherWrapper h1 span {
	display:inline-block;
	padding:5px 0 0;
	font-size:12px;
}
#other .otherWrapper .icon {
	margin:0 0 10px;
	padding:0;
	color:#07a794;
	text-align:center;
	line-height:0;
}
#other .otherWrapper .icon i {
	font-size:36px;
}
#other .otherWrapper p {
	text-align:center;
	font-weight:700;
	font-size:13px;
	line-height:1.8em;
}
#other .otherWrapper p.alignC {
	text-align:center!important;
}

#other .otherWrapper dl {
	margin:0 0 10px;
	padding:0;
}
#other .otherWrapper dl dt {
	margin:0 0 8px;
	padding:0;
	text-align:left;
	font-weight:700;
	font-size:11px;
}
#other .otherWrapper dl dd {
	position:relative;
	margin:0;
	padding:0;
}
#other .otherWrapper a {
	display:block;
	margin:20px auto 0;
	width:140px;
	height:40px;
	background:#505050;
	color:#ffffff;
	text-align:center;
	text-decoration:none;
	font-weight:500;
	font-size:14px;
	line-height:40px;
	cursor:pointer;
}
#other .otherWrapper input[type="text"], #other .otherWrapper input[type="password"] {
	height:50px;
}
#other .otherWrapper input[type="submit"] {
	margin:30px 0 0;
	width:100%;
	height:50px;
}

/* common classes
----------------------------------------------------------------------*/
#wrapper {
	position:relative;
	overflow:hidden;
	margin:0;
	padding:0 0 0 340px;
}
header {
	position:fixed;
	top:0;
	right:0;
	left:340px;
	z-index:999;
	margin:0;
	padding:0 140px 0 40px;
	height:70px;
	border-bottom:#e6eaea solid 1px;
	background:#f4f7f6;
}
header .logo {
	display:none;
}
header p.name {
	display:flex;
	float:right;
	overflow:hidden;
	align-items:center;
	justify-content:center;
	margin:0;
	padding:0;
	height:70px;
	text-overflow:ellipsis;
	white-space:nowrap;
	font-weight:500;
	font-size:13px;
}
header p.name span {
	padding:0 0 0 10px;
	font-size:16px;
}
header p.name.fl {
	float:left !important;
}
header ul.personalInfo {
	float:right;
	margin:0;
	padding:0;
}
header ul.personalInfo li {
	display:flex;
	float:left;
	align-items:center;
	justify-content:center;
	margin:0 0 0 16px;
	height:70px;
	font-weight:500;
	font-size:14px;
}
header ul.personalInfo li span {
	display:inline-block;
	margin:-6px 0 0;
	font-weight:500;
	font-size:14px;
}
header ul.personalInfo li span b {
	padding:0 2px;
	font-size:24px;
}
header .personalMenu {
	position:absolute;
	top:0;
	right:30px;
	height:70px;
	text-align:center;
	font-weight:500;
	font-size:13px;
	line-height:70px;
}
header .personalMenu a {
	display:flex;
	align-items:center;
	justify-content:center;
	height:70px;
}
header .personalMenu span {
	position:relative;
	display:inline-block;
	padding:0 0 0 28px;
}
header .personalMenu span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
	color:#07a794;
}

header .personalMenu .personalNavi {
	position:absolute;
	top:70px;
	right:0;
	display:none;
	width:280px;
}
header .personalMenu .personalNavi ul {
	margin:0;
	padding:0;
}
header .personalMenu .personalNavi ul li {
	margin:0;
	padding:0;
	border-bottom:#ececec solid 1px;
	background:#d8dcdc;
}
header .personalMenu .personalNavi ul li:last-child {
	border-bottom:none;
}
header .personalMenu .personalNavi ul li a {
	display:block;
	margin:0;
	padding:0;
	height:50px;
	text-align:center;
	text-decoration:none;
	font-weight:500;
	font-size:13px;
	line-height:50px;
}
header .personalMenu i {
	position:absolute;
	top:50%;
	margin-top:-12px;
}
header .personalMenu i.face {
	left:20px;
}
header .personalMenu i.arrow {
	right:20px;
}
footer {
	position:relative;
	margin:0;
	padding:50px 60px;
	background:#7c7c7c;
}
footer .footerMenu {
	position:relative;
	float:left;
	margin:0;
	padding:0 0 0 287px;
}
footer .footerMenu .logo {
	position:absolute;
	top:0;
	left:0;
}
footer .footerMenu p.copyright {
	position:absolute;
	bottom:0;
	left:0;
	margin:0;
	color:#f4f7f6;
	font-size:11px;
	line-height:1;
}
footer .footerMenu nav.footMenu {
	margin:0;
	padding:0;
}
footer .footerMenu nav.footMenu ul {
	margin:0;
	padding:0;
}
footer .footerMenu nav.footMenu ul li {
	margin:0 0 12px;
	padding:0;
}
footer .footerMenu nav.footMenu ul li:last-child {
	margin:0;
	padding:0;
}
footer .footerMenu nav.footMenu ul li a {
	color:#f4f7f6;
	font-weight:500;
	font-size:13px;
}
footer .phone {
	float:right;
	margin:0;
	padding:0;
	color:#f4f7f6;
}
footer .phone p {
	margin:0;
	padding:0;
	text-align:right;
	font-weight:500;
	font-size:12px;
}
footer .phone p.tel {
	padding:9px 0;
}
footer .phone p.tel span {
	position:relative;
	margin:0;
	padding:0 0 0 36px;
	font-weight:500;
	font-size:24px;
}
footer .phone p.tel span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-15px;
	font-size:30px;
}
#sideMenu {
	position:absolute;

/* background: #fff; */
	top:0;
	right:0;
	left:0;
	z-index:10;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	box-sizing:border-box;
	padding:110px 0 0 60px;
	width:340px;
	height:100vh;
	border-right:#e6eaea solid 1px;
}
#sideMenu .logo {
	position:absolute;
	top:90px;
	left:60px;
	line-height:0;
}
#sideMenu .mainNavi {
	margin:0;
	padding:0;
}
#sideMenu .mainNavi ul.personalInfo {
	display:none;
}
#sideMenu .mainNavi ul {
	margin:0;
	padding:0;
}
#sideMenu .mainNavi ul li {
	margin:0;
	padding:14px 0;
	line-height:1;
}
#sideMenu .mainNavi ul li.aees_banner{
	padding: 26px 60px 0 0;
}
#sideMenu .mainNavi ul li.aees_banner img{
	width: 100%;
	height: auto;
	box-sizing: border-box;
	border:#e3e3e3 solid 1px;
	
}



#sideMenu .mainNavi ul li a {
	font-weight:500;
	font-size:14px;
}
#sideMenu .mainNavi ul li.sp {
	display:none;
}
#sideMenu .mainNavi ul li.ct {
	padding:40px 0 0;
}
#sideMenu .mainNavi ul li.ct a {
	position:relative;
	padding:0 0 0 30px;
	font-weight:500;
	font-size:13px;
}

#sideMenu .mainNavi ul li.ct a i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
	color:#07a794;
}

#sideMenu a.contactBtn {
	position:absolute;
	bottom:60px;
	left:60px;
	padding:0 0 0 30px;
	font-weight:500;
	font-size:13px;
}
#sideMenu a.contactBtn i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
	color:#07a794;
}
#page {
	position:relative;
	box-sizing:border-box;
	padding:120px 80px 0;
	min-height:100vh;
}



#top {
	margin:0 auto;
}
h1.title {
	box-sizing:border-box;
	margin:0 auto 50px;
	padding:0;
	max-width:850px;
	height:50px;
	font-weight:700;
	font-size:18px;
	line-height:50px;
}
h1.title span {
	position:relative;
	display:inline-block;
	margin:0;
	padding:0 0 0 60px;
}
h1.title span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-21px;
	line-height:0;
}

h2.title {
	position:relative;
	margin:0 0 24px;
	padding:0 0 0 36px;
	font-weight:700;
	font-size:18px;
	line-height:26px;
}
h2.title i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-13px;
	color:#07a794;
	font-size:26px;
}
h2.title span {
	float:right;
	padding:4px 0 0;
	font-weight:500;
	font-size:14px;
}
.table01 {
	margin:0;
	padding:0;
	width:100%;
	border-collapse:collapse;
	border-top:#eceaea solid 1px;
	border-left:#eceaea solid 1px;
	background:#ffffff;
	;
}
.table01 td {
	margin:0;
	padding:15px;
	border-right:#eceaea solid 1px;
	border-bottom:#eceaea solid 1px;
	color:#07a794;
	text-align:center;
	font-weight:500;
	font-size:15px;
}
#notification .pageBox .table01 {
	border-top:#c6c6c6 solid 1px;
	border-left:#c6c6c6 solid 1px;
}
#notification .pageBox .table01 td {
	border-right:#c6c6c6 solid 1px;
	border-bottom:#c6c6c6 solid 1px;
}
#notification .pageBox .table01 td.gry {
	background-color:#eef1f0;
	color:#575757;
}
.table02 {
	margin:0 0 20px;
	padding:0;
	width:100%;
	border-collapse:collapse;
	border-top:#eceaea solid 1px;
	border-left:#eceaea solid 1px;
	background:#fbfcfb;
	;
}
.table02 th {
	margin:0;
	padding:10px;
	border-right:#eceaea solid 1px;
	border-bottom:#eceaea solid 1px;
	text-align:center;
	font-weight:500;
	font-size:14px;
}
.table02 td {
	margin:0;
	padding:10px;
	border-right:#eceaea solid 1px;
	border-bottom:#eceaea solid 1px;
	text-align:left;
	font-weight:500;
	font-size:14px;
}
.table02 input[type="text"] {
	background:#fbfcfb;
}

.table03 {
	margin:30px 0 0;
	padding:0;
	width:100%;
	border-collapse:collapse;
	border-top:#c6c6c6 solid 1px;
	border-left:#c6c6c6 solid 1px;
	background:#ffffff;
	;
}
.table03.sp {
	display:none;
}
.table03 th {
	margin:0;
	padding:15px 20px;
	border-right:#c6c6c6 solid 1px;
	border-bottom:#c6c6c6 solid 1px;
	color:#07a794;
	text-align:center;
	font-weight:500;
	font-size:14px;
}

.table03 td {
	margin:0;
	padding:15px 20px;
	border-right:#c6c6c6 solid 1px;
	border-bottom:#c6c6c6 solid 1px;
	color:#07a794;
	text-align:center;
	font-weight:500;
	font-size:14px;
}

#notification .pageBox .table03 {
	margin:30px 0;
	border-top:#c6c6c6 solid 1px;
	border-left:#c6c6c6 solid 1px;
}
#notification .pageBox .table03 td {
	border-right:#c6c6c6 solid 1px;
	border-bottom:#c6c6c6 solid 1px;
}
#notification .pageBox .table03 th {
	border-right:#c6c6c6 solid 1px;
	border-bottom:#c6c6c6 solid 1px;
	background-color:#eef1f0;
	color:#575757;
}

.alignL {
	text-align:left!important;
}
.alignR {
	text-align:right!important;
}

.searchOpen {
	display:none;
}
.pageTitle {
	box-sizing:border-box;
	margin:0 auto 50px;
	padding:0;
	max-width:850px;
	height:50px;
	font-weight:700;
	font-size:18px;
	line-height:50px;
}
.pageTitle span {
	position:relative;
	display:inline-block;
	margin:0;
	padding:0 0 0 60px;
}
.pageTitle span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-21px;
	line-height:0;
}
.pageTitle.title span i img {
	width:40px;
	height:32px;
}
a.btn01 {
	display:block;
	margin:0 auto;
	margin:0 auto 0;
	padding:0;
	width:288px;
	height:68px;

/* border: #eceaea solid 1px; */
	background:#07a794;
	color:#ffffff;
	text-align:center;
	font-weight:500;
	font-size:14px;
	line-height:68px;
}
a.btn01 span {
	position:relative;
	display:inline-block;
	padding:0 40px 0 0;
}
a.btn01 span i {
	position:absolute;
	top:50%;
	right:0;
	margin-top:-16px;
	font-size:32px;
}
a.download {
	position:absolute;
	top:-5px;
	right:0;
	display:block;
	margin:0 auto;
	padding:0;
	width:226px;
	height:36px;
	border:#eceaea solid 1px;
	background:#ffffff;
	color:#07a794;
	text-align:center;
	font-weight:500;
	font-size:14px;
	line-height:36px;
}
a.download span {
	position:relative;
	display:inline-block;
	padding:0 0 0 32px;
}
a.download span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
	font-size:24px;
}
a.btn02 {
	/* border: #eceaea solid 1px; */
	display:block;
	margin:-28px 0 0 auto;
	padding:0;
	width:288px;
	height:60px;
	background:#07a794;
	color:#ffffff;
	text-align:center;
	font-weight:500;
	font-size:14px;
	line-height:60px;
}
a.btn02 span {
	position:relative;
	display:block;
	margin:0 30px;
	padding:0;
	text-align:left;
}
a.btn02 span i {
	position:absolute;
	top:50%;
	right:0;
	margin-top:-16px;
	font-size:32px;
}
p.read {
	margin:0;
	padding:0;
	font-weight:500;
	font-size:14px;
	line-height:2.0em;
}
.authentication {
	position:relative;
	box-sizing:border-box;
	margin:0 auto 70px;
	padding:20px 200px 20px 40px;
	max-width:840px;
	border:#b86b79 solid 1px;
	background:#ffffff;
	color:#a70725;
}
.authentication.send {
	padding:20px 40px 20px 40px;
}
.authentication a.resend {
	position:absolute;
	top:50%;
	right:20px;
	display:block;
	margin-top:-20px;
	width:150px;
	height:40px;
	background:#a70725;
	color:#ffffff;
	text-align:center;
	text-decoration:none;
	font-weight:500;
	font-size:14px;
	line-height:40px;
}
.authentication p {
	margin:0;
	padding:0;
	text-align:justify;
	font-weight:500;
	font-size:14px;
	line-height:2.0em;
}
.importantInfo {
	position:relative;
	margin:0 auto 70px;
	padding:0;
	max-width:840px;
}
.importantInfo .tl {
	position:absolute;
	top:-25px;
	left:-40px;
	z-index:5;
	padding:0 40px;
	width:330px;
	height:50px;
	color:#ffffff;
	text-align:left;
	font-weight:500;
	font-size:15px;
	line-height:50px;
}
.importantInfo .info {
	position:relative;
	margin:0;
	padding:50px 40px 40px 40px;
}
.importantInfo .info .close {
	position:absolute;
	top:15px;
	right:15px;
	cursor:pointer;
}
.importantInfo .info p {
	text-align:justify;
	font-weight:500;
	font-size:14px;
	line-height:2.0em;
}
.importantInfo .info p.date {
	margin:0;
	padding:0;
	font-size:12px;
}
.importantInfo .info h3 {
	margin:0 0 15px;
	padding:0 0 15px;
	font-weight:500;
	font-size:16px;
}
.importantInfo .info a.more {
	position:relative;
	display:block;
	float:right;
	padding:0 36px 0 0;
	text-decoration:none;
	font-weight:500;
	font-size:14px;
}
.importantInfo .info a.more i {
	position:absolute;
	top:50%;
	right:0;
	margin-top:-16px;
	font-size:32px;
}
.importantInfo.type01 .tl {
	background:#07a794;
}
.importantInfo.type01 h3 {
	border-bottom:#07a794 solid 1px;
	color:#07a794;
}
.importantInfo.type01 p.date {
	color:#07a794;
}
.importantInfo.type01 .info {
	background:#ffffff;
}
.importantInfo.type01 .info a.more {
	color:#07a794;
}
.importantInfo.type01 .info .close {
	color:#07a794;
}
.importantInfo.type02 .info .close {
	color:#a70725;
}
.importantInfo.type02 .tl {
	background:#a70725;
}
.importantInfo.type02 h3 {
	border-bottom:#a70725 solid 1px;
	color:#a70725;
}
.importantInfo.type02 p.date {
	color:#a70725;
}
.importantInfo.type02 .info {
	background:#ebcdcd;
}
.importantInfo.type02 .info a.more {
	color:#a70725;
}
.pageBox {
	position:relative;
	margin:0 auto 70px;
	padding:0;
	max-width:840px;
}
.pageBox .listTl {
	position:relative;
	margin:0;

/*padding:10px 212px 15px 30px;*/
	padding:10px 0 15px 30px;
}
.pageBox .listTl span {
	font-weight:700;
	font-size:12px;
}
.pageBox .listTl span.tl02 {
	float:right;
	font-weight:500;
	font-size:14px;
}
.pageBox p.note {
	margin:-18px 0 10px;
	padding:0;
	text-align:right;
	font-weight:500;
	font-size:13px;
	line-height:1.8em;
}

.pageBox ul.list {
	margin:0 0 40px;
	padding:0;
}
.pageBox ul.list li {
	position:relative;
	margin:0 0 10px;
	padding:18px 302px 18px 30px;
	border:#eceaea solid 1px;
	background:#ffffff;
}
.pageBox ul.list li p {
	margin:0;
	padding:0;
	font-weight:500;
	font-size:15px;
	line-height:2.0em;
}
.pageBox ul.list li p.small {
	font-size:12px;
}
.pageBox ul.list li .time {
	position:relative;
	position:absolute;
	top:50%;
	right:202px;
	margin:0;
	margin-top:-15px;
	padding:0 0 0 30px;
	font-weight:500;
	font-size:15px;
	line-height:2.0em;
}
.pageBox ul.list li .time.hide {
	display:none;
}

.pageBox ul.list li .time i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
	color:#07a794;
}
.pageBox ul.list li .status {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	display:flex;
	align-items:center;
	justify-content:center;
	width:150px;
	background:#07a794;
	color:#ffffff;
	font-weight:500;
	font-size:14px;
}
.pageBox ul.list.type02 li .status {
	background:#eceaea;
	color:#979797;
}
.pageBox ul.list.type02 li .status.done {
	background:inherit;
	color:#07a794;
}


.pageBox ul.list li .status.done {
	background:#eceaea;
	color:#979797;
}
.pageBox ul.list li .status span {
	position:relative;
	padding:0 0 0 30px;
}
.pageBox ul.list li .status span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-11px;
	font-size:22px;
}
.pageBox ul.list li a.status span {
	position:relative;
	padding:0 34px 0 0;
}
.pageBox ul.list li a.status span i {
	position:absolute;
	top:50%;
	right:0;
	left:inherit;
	margin-top:-15px;
	font-size:30px;
}
.pageBox ul.list li p.quiz {
	position:relative;
	margin:0;
	padding:0;
	color:#07a794;
	font-weight:700;
	font-size:14px;
}
/*
.pageBox ul.list li dl dt {
	position:absolute;
	top:3px;
	left:0;
	font-size:13px;
}*/
.pageBox ul.list li .data {
	position:absolute;
	top:0;
	right:30px;
	bottom:0;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:700;
	font-size:26px;
}
.pageBox ul.list li .data span {
	margin:0;
	padding:5px 0 0 5px;
	font-size:14px;
}
.pageBox ul.list li .limit {
	position:absolute;
	top:0;
	bottom:0;
	left:230px;
	display:flex;
	align-items:center;
	justify-content:center;
	font-weight:500;
	font-size:13px;
}
.pageBox a.notification {
	position:relative;
	display:block;
	margin:0;
	padding:18px 30px 18px 30px;
	border:#ff8610 solid 1px;
	background:#fe8d1e;
	color:#ffffff;
	text-align:left;
	text-decoration:none;
	font-weight:500;
	font-size:18px;
}
.pageBox a.notification span {
	position:relative;
	display:block;
	float:right;
	padding:2px 40px 2px 0;
	font-size:14px;
}
.pageBox a.notification i {
	position:absolute;
	top:50%;
	right:20px;
	margin-top:-16px;
	font-size:32px;
}
.pageBox a.notification span i {
	right:0;
}
.pageBox a.wait {
	position:relative;
	display:block;
	margin:0;
	padding:20px 30px 20px 30px;
	border:#eceaea solid 1px;
	background:#ffffff;
	text-align:left;
	text-decoration:none;
	font-weight:500;
	font-size:14px;
	pointer-events:none;
}
.pageBox.latestBox {
	margin:0;
	padding:20px 0 0;
	max-width:inherit;
}
.pageBox.latestBox h2.title {
	margin:0 0 30px;
}

.pageBox .noInfo {
	background:#e6eaea;
}
.pageBox.latestBox .noInfo {
	background:#d8dcdc;
}


.reSchooling {
	position:relative;
	margin:0 0 20px;
	padding:0 0 0 30px;
	padding:10px 20px 10px 50px;
	border:#eceaea solid 1px;
	background:#ffffff;
	color:#07a794;
	font-weight:500;
	font-size:14px;
}
.reSchooling span {
	position:absolute;
	top:50%;
	left:20px;
	margin-top:-12px;
}

.latestBox .tab {
	margin:0 auto;
	padding:0;
	max-width:840px;
	height:50px;
}
.latestBox .tab ul {
	margin:0 0 0 -5px;
	padding:0;
	height:50px;
}
.latestBox .tab ul li {
	float:left;
	box-sizing:border-box;
	margin:0;
	padding:0 0 0 5px;
	width:33.33333%;
	height:50px;
}
.latestBox .tab ul li span {
	display:block;
	height:50px;
	background:#cbcbcb;
	text-align:center;
	font-weight:500;
	font-size:14px;
	line-height:50px;
	cursor:pointer;
}
.latestBox .tab ul li.open span {
	background:#e6eaea;
}
.latestBox .latestList {
	margin:0 -80px;
	padding:60px 80px;
	background:#e6eaea;
}
.latestBox .latestList .box.hide {
	display:none;
}
.latestBox .latestList .box {
	margin:0 auto;
	padding:0;
	max-width:840px;
}
.latestBox .latestList .box dl {
	position:relative;
	margin:0 0 20px;
	padding:0 0 20px 110px;
	border-bottom:#c6c6c6 solid 1px;
	font-weight:500;
	font-size:14px;
	line-height:1.8em;
}
.latestBox .latestList .box dl.end {
	margin:0;
	padding:0 0 0 110px;
	border-bottom:none;
}
.latestBox .latestList .box dl dt {
	position:absolute;
	top:0;
	left:0;
}
.latestBox .latestList .box dl dd a {
	position:relative;
	display:block;
	padding:0 50px 0 0;
}
.latestBox .latestList .box dl dd a i {
	position:absolute;
	top:50%;
	right:0;
	margin-top:-17px;
	color:#07a794;
	font-size:34px;
}


.noInfo {
	margin:0;
	padding:50px 30px;
	background:#d8dcdc;
	text-align:center;
}

#orgList .resultBox .resultList .noInfo {
	margin:20px 0 0;
	background:#e6eaea;
}
.pageBox.latestBox .noInfo {
	margin:-20px 0 0;
}
.noInfo.submitted {
	background:#e6eaea;
}

.noInfo .icon {
	margin:0 0 10px;
	padding:0;
	text-align:center;
	line-height:0;
}
.noInfo .icon i {
	font-size:40px;
}
.noInfo p.read {
	margin:0;
	padding:0;
	font-size:15px;
}
.errorPage .noInfo {
	padding:50px 30px 30px;
	background:#e6eaea;
}

.errorPage .noInfo p.read {
	font-weight:700;
	font-size:20px;
}
.errorPage .noInfo p {
	margin:10px 0 0;
	font-weight:500;
	font-size:14px;
	line-height:2.0em;
}
.errorPage .flex {
	display:flex;
	align-items:stretch;
	justify-content:space-between;
	margin:0;
	padding:0;
}

.errorPage .logoutBox {
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	margin:34px 0 0;
	padding:50px 20px 30px;
	width:calc(50% - 5px);
	background: #fff;
	text-align:center;
	    border-bottom: #bbc5c5 solid 2px;
    border-right: #bbc5c5 solid 2px;
    border-left: #bbc5c5 solid 2px;
}
.errorPage .logoutBox:first-of-type{
	    border-bottom: #08a794 solid 2px;
    border-right: #08a794 solid 2px;
    border-left: #08a794 solid 2px;
    box-sizing: border-box;
    
}
.errorPage .logoutBox:first-of-type p.sub_title {
	background-color: #08a794;
    color: #fff;
}

.errorPage .logoutBox .box {
	padding:30px 0 0;
	width:100%;
}
.errorPage .logoutBox p.sub_title {
	position:absolute;
	top:0;
	right:0;
	left:0;
	margin:0;
	height:50px;
	background-color:#bac5c5;
	text-align:center;
	font-weight:700;
	font-size:16px;
	line-height:50px;
}
/*
.errorPage .tx_line {
	display:inline-block;
	margin:0 0 15px;
	font-size:18px;
}
*/

.errorPage .logoutBox p.close_text {
	font-weight:700;
	font-size:16px;
}
.errorPage .logoutBox p.note {
	font-size:12px;
}

.errorPage .logoutBox p {
	margin:0;
}
.errorPage .logoutBox a {
	display:flex;
	align-items:center;
	justify-content:center;
	margin:14px auto 14px;
	padding:0;
	max-width:400px;
	width:100%;
	height:80px;
	background:#07a794;
	color:#ffffff;
	text-align:center;
	font-weight:500;
	font-size:14px;
	line-height:1.6em;
}


.tabMenu {
	margin:0 auto;
	padding:0;
	max-width:800px;
	height:50px;
}
.tabMenu ul {
	margin:0 0 0 -5px;
	padding:0;
	height:50px;
}
.tabMenu ul li {
	float:left;
	box-sizing:border-box;
	margin:0;
	padding:0 0 0 5px;
	width:33.33333%;
	height:50px;
}
.tabMenu ul li a {
	display:block;
	height:50px;
	background:#cbcbcb;
	text-align:center;
	text-decoration:none;
	font-weight:500;
	font-size:14px;
	line-height:50px;
	cursor:pointer;
}
.tabMenu ul li.open a {
	background:#e6eaea;
}

.aees_movie{
	max-width: 850px;
	margin: 0 auto;
	padding: 0 0 100px;
}

/* #information classes
----------------------------------------------------------------------*/
#information {
	margin:0;
	padding:0;
}
#information .informationBox {
	margin:0;
	padding:0;
}
#information .informationBox h2.title {
	margin:0 0 40px;
}
#information .informationBox .list {
	box-sizing:border-box;
	margin:0 -80px;
	padding:80px;
	background:#e6eaea;
}
#information .informationBox .list .box {
	margin:0 auto;
	padding:0;
	max-width:840px;
}
#information .informationBox .list .box dl {
	position:relative;
	margin:0 0 30px;
	padding:0 0 30px 110px;
	border-bottom:#c6c6c6 solid 1px;
	font-weight:500;
	font-size:14px;
}
#information .informationBox .list .box dl dt {
	position:absolute;
	top:2px;
	left:0;
}
#information .informationBox .list .box dl dd a {
	position:relative;
	display:block;
	padding:0 50px 0 0;
}
#information .informationBox .list .box dl dd a i {
	position:absolute;
	top:50%;
	right:0;
	margin-top:-12px;
	color:#07a794;
}
#information .informationBox .detail {
	box-sizing:border-box;
	margin:0 -80px;
	padding:80px;
	background:#e6eaea;
}
#information .informationBox .detail .box {
	margin:0 auto;
	padding:0;
	max-width:840px;
}
#information .informationBox .detail .box .post {
	margin:0;
	padding:0;
}
#information .informationBox .detail .box .post p.date {
	margin:0 0 20px;
	padding:0;
	font-size:12px;
}
#information .informationBox .detail .box .post h1 {
	position:relative;
	margin:0 0 24px;
	padding:0 0 24px;
	border-bottom:#c6c6c6 solid 1px;
	font-weight:500;
	font-size:18px;
	line-height:1.8em;
}
#information .informationBox .detail .box .post p {
	margin:0 0 20px;
	padding:0;
	text-align:justify;
	font-weight:500;
	font-size:14px;
	line-height:2.0em;
}

#information .informationBox .detail .box .post p a.linkDocument {
	position:relative;
	display:inline-block;
	margin:0;
	padding:0 0 0 30px;
	color:#07a794;
}
#information .informationBox .detail .box .post p a.linkDocument i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
}

#information .informationBox .detail .box .post a.back {
	display:flex;
	align-items:center;
	justify-content:center;
	margin:40px 0 0 auto;
	padding:0;
	width:154px;
	height:54px;
	border:#c6c6c6 solid 1px;
}
#information .informationBox .detail .box .post a.back span {
	position:relative;
	display:inline-block;
	padding:0 0 0 30px;
	font-weight:500;
	font-size:14px;
}
#information .informationBox .detail .box .post a.back span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
	color:#07a794;
}
/* #schoolingList classes
----------------------------------------------------------------------*/
#schoolingList {
	padding:0 0 1px;
}
#schoolingList .schoolingListBox {
	margin:0 auto;
	max-width:840px;
}

#schoolingList .schoolingListBox .pageBox ul.list {
	margin:0 0 80px;
	padding:0;
}

#schoolingList .schoolingListBox h2.title {
	margin:0 0 30px;
}
#schoolingList .schoolingListBox .read {
	margin:0 0 70px;
	padding:0;
}
#schoolingList .schoolingListBox .read p {
	margin:0 0 10px;
	padding:0;
	text-align:justify;
	font-weight:500;
	font-size:15px;
	line-height:2.0em;
}
#schoolingList .schoolingListBox .read p.small {
	font-size:13px;
}

#schoolingList .schoolingListBox .pageBox .noInfo p.read {
	margin:0;
	padding:0;
}
#schoolingList .schoolingListBox .noInfo {
	margin:0 0 50px;
}
/* #form classes
----------------------------------------------------------------------*/
#form {
	margin:0;
	padding:0 0 100px;
}
#form .formBox {
	margin:0 auto;
	max-width:840px;
}
#form .formBox p.read {
	margin:0 0 40px;
}
#form .formBox p.read a {
	color:#07a794;
	text-decoration:underline;
}
#form .formBox dl {
	margin:0 0 40px;
}
#form .formBox .confirm dl dd {
	padding:0 0 15px;
	min-height:21px;
	border-bottom:#dddddd solid 1px;
	font-weight:500;
	font-size:14px;
	line-height:1.8em;
}
#form .formBox .confirm dl dd p {
	margin:0;
	padding:0 0 0 17px;
	font-weight:500;
}
#form .formBox dl dt {
	position:relative;
	margin:0 0 16px;
	padding:0 0 0 13px;
	border-left:#07a794 solid 4px;
	font-weight:700;
	font-size:14px;
	line-height:1.4em;
}
#form .formBox dl dt b {
	padding:10px 0 0;
	font-size:12px;
}

#form .formBox dl dt span {
	position:absolute;
	top:0;
	right:0;
	display:block;
	padding:0;
	width:48px;
	height:22px;
	background-color:#07a794;
	color:#ffffff;
	text-align:center;
	font-size:11px;
	line-height:22px;
}
#form .formBox p.note {
	margin:-20px 0 40px;
	padding:0;
	text-align:justify;
	font-weight:500;
	font-size:13px;
	line-height:2.2em;
}
#form .formBox input[type="submit"] {
	box-sizing:border-box;
	padding:0 50px;
	background-image:url(../img/common/arrow_right.svg);
	background-position:top 50% right 50px;
	background-repeat:no-repeat;
	text-align:left;
}
#form .formBox input[type="button"] {
	box-sizing:border-box;
	padding:0 50px;
	background-image:url(../img/common/arrow_right.svg);
	background-position:top 50% right 50px;
	background-repeat:no-repeat;
	text-align:left;
}
#form .formBox a.back {
	display:block;
	margin:0 auto;
	width:160px;
	height:70px;
	background:#505050;
	color:#ffffff;
	text-align:center;
	text-decoration:none;
	font-weight:500;
	font-size:14px;
	line-height:70px;
	cursor:pointer;
}
#form .formBox .submit {
	text-align:center;
}
#form .formBox .submit ul {
	display:inline-block;
	margin:0;
	padding:0;
	list-style:none;
}

#form .formBox .submit ul li {
	float:left;
	margin:0;
	padding:0 1px;
}

#form .formBox dl dd ul {
	margin:0 0 0 -8px;
	padding:0;
	list-style:none;
}
#form .formBox dl dd ul li {
	float:left;
	box-sizing:border-box;
	margin:0;
	padding:0 0 0 8px;
	width:50%;
}




#form .formBox dl dd ol {
	margin:0;
	padding:0;
	list-style:none;
}
#form .formBox dl dd ol li {
	position:relative;
	margin:0 0 8px;
	padding:0;
}
#form .formBox dl dd ol li:first-child {
	text-align:right;
}
#form .formBox dl dd ol li:last-child {
	margin:0;
}
#form .formBox .city {
	max-width:300px;
}
#form .formBox .postCode {
	display:block;
	float:left;
	margin:0 0 0 2px;
	max-width:200px;
}
#form .formBox dl dd ol li select {
	min-width:200px;
}
#form .formBox .complete {
	margin:0;
	padding:50px;
	background:#e6eaea;
	text-align:center;
}
#form .formBox .complete .icon {
	margin:0 0 10px;
	padding:0;
	text-align:center;
	line-height:0;
}
#form .formBox .complete  .icon i {
	font-size:40px;
}
#form .formBox .complete  p.read {
	margin:0;
	padding:0;
	text-align:center;
	font-weight:700;
	font-size:18px;
}
#form .formBox .complete  p {
	margin:30px 0;
	padding:0;
	text-align:justify;
	font-weight:500;
	font-size:14px;
	line-height:2.0em;
}
#form .formBox .complete a.goTop {
	display:block;
	margin:0 auto;
	width:240px;
	height:60px;
	background:#505050;
	color:#ffffff;
	text-align:center;
	text-decoration:none;
	font-weight:500;
	font-size:14px;
	line-height:60px;
	cursor:pointer;
}


#form .formBox .telBox {
	margin:0 0 50px;
	padding:25px 30px;
	border:#e3e3e3 solid 1px;
	background:#e6eaea;
	text-align:center;
}
#form .formBox .complete .telBox {
	margin:-20px 0 30px;
	padding:25px 0;
	border:inherit;
	background:inherit;
	text-align:center;
}

#form .formBox .telBox .box {
	position:relative;
	display:inline-block;
	padding:0 0 0 380px;
}
#form .formBox .telBox .box p.tel {
	position:absolute;
	top:0;
	bottom:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	margin:0;
	padding:0 40px 0 50px;
	border-right:#cccccc solid 1px;
	font-weight:500;
	font-size:22px;
}
#form .formBox .telBox .box p.tel i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-16px;
	font-size:36px;
}
#form .formBox .telBox .box p.name {
	margin:0 0 6px;
	padding:0;
	text-align:left;
	font-weight:500;
	font-size:14px;
	line-height:1;
}
#form .formBox .telBox .box p.name br {
	display:none;
}
#form .formBox  .telBox .box p.num {
	margin:0 0 6px;
	padding:0;
	text-align:left;
	font-weight:700;
	font-size:34px;
	line-height:1;
}
#form .formBox .telBox .box p.num a {
	color:#555555;
	text-decoration:none;
	pointer-events:none;
}
#form .formBox  .telBox .box p.open {
	margin:0;
	padding:0;
	text-align:left;
	font-weight:500;
	font-size:13px;
	line-height:1;
}


/* #faq classes
----------------------------------------------------------------------*/
#faq .faqBox .faqList {
	box-sizing:border-box;
	margin:0 -80px;
	padding:80px 80px 30px;
	background:#e6eaea;
}
#faq .faqBox .faqList .box {
	margin:0 auto;
	max-width:840px;
}
#faq .faqBox .faqList ul {
	margin:0;
	padding:0;
}
#faq .faqBox .faqList ul li {
	margin:0 0 30px;
	padding:40px 70px;
	background:#ffffff;
}
#faq .faqBox .faqList ul li p.qus {
	position:relative;
	margin:0 0 5px;
	color:#07a794;
	font-weight:500;
	font-size:17px;
}
#faq .faqBox .faqList ul li p a {
	color:#07a794;
	text-decoration:underline;
}
#faq .faqBox .faqList ul li p.qus::before {
	position:absolute;
	top:0;
	left:-40px;
	color:#07a794;
	content:"Q";
	font-weight:500;
	font-size:40px;
}
#faq .faqBox .faqList ul li p {
	margin:0;
	padding:0;
	text-align:justify;
	font-weight:500;
	font-size:15px;
	line-height:2.0em;
}
/* #notification class
----------------------------------------------------------------------*/
#notification {
	margin:0;
	padding:0 0 100px;
}
#notification .notificationWrap {
	box-sizing:border-box;
	margin:0 auto 50px;
	padding:124px 50px;
	max-width:840px;
	border:#eceaea solid 1px;
	background-color:#ffffff;
}
#notification .notificationWrap p.read {
	text-align:justify;
}
#notification .questionaryBox {
	margin:0 auto;
	max-width:840px;
}
#notification .questionaryBox .questionary {
	margin:0 0 40px;
	padding:0;
}
#notification .questionaryBox .questionary ol {
	margin:0;
	padding:0;
	list-style:none;
}
#notification .questionaryBox .questionary ol li {
	position:relative;
	margin:0;
	margin:0 0 10px;
	padding:30px 30px 30px 30px;
	border:#eceaea solid 1px;
	background:#ffffff;
	font-weight:500;
	font-size:14px;
}
#notification .questionaryBox .questionary ol li p {
	margin:0;
	padding:0;
	text-align:justify;
	line-height:2.0em;
}
#notification .questionaryBox .questionary ol li .radioBox {
	position:relative;
	padding:0 170px 0 0;
}
#notification .questionaryBox .questionary ol li .radioBox .radio {
	position:absolute;
	top:50%;
	right:0;
	margin-top:-18px;
}
#notification .questionaryBox .questionary ol li textarea {
	margin:10px 0 0;
	background-color:#f7f9f8;
}
#notification .pageBox .table01 {
	margin:30px 0 ;
}
#notification .notificationBox {
	position:relative;
	box-sizing:border-box;
	margin:0 auto 30px;
	padding:0 0 30px;
	max-width:840px;
	border-bottom:#eceaea solid 1px;
}
#notification .notificationBox p.name {
	margin:0 0 5px;
	padding:0;
	font-weight:500;
	font-size:14px;
}
#notification .notificationBox p.class {
	margin:0 0 21px;
	padding:0;
	text-align:center;
	font-weight:700;
	font-size:24px;
}
#notification .notificationBox p.class span {
	margin:0;
	padding:0 5px;
	font-size:34px;
}
#notification .notificationBox p.pass {
	margin:0;
	padding:0;
	color:#07a794;
	text-align:center;
	font-weight:700;
	font-size:42px;
}
#notification .notificationBox p.pass.fail {
	color:#575757;
	font-size:32px;
}
#notification .pageBox a.btn01 {
	margin:20px auto 0 0;
	width:252px;
	height:60px;
	line-height:60px;
}
#notification .pageBox a.btn01 {
	margin:20px auto 0 0;
	width:252px;
	height:60px;
	line-height:60px;
}
#notification .pageBox a.back {
	display:flex;
	align-items:center;
	justify-content:center;
	margin:40px auto 0 0;
	padding:0;
	width:154px;
	height:54px;
	border:#c6c6c6 solid 1px;
}
#notification .pageBox a.back span {
	position:relative;
	display:inline-block;
	padding:0 0 0 30px;
	font-weight:500;
	font-size:14px;
}
#notification .pageBox a.back span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-12px;
	color:#07a794;
}


/* #orgList class
----------------------------------------------------------------------*/
#orgList {
	margin:0 auto;
	padding:0 0 100px;
	max-width:840px;
}
#orgList input[type="submit"].search {
	padding:0 30px;
	width:284px;
	height:60px;
	background-image:url(../img/common/search.svg);
	background-position:top 50% right 30px;
	background-repeat:no-repeat;
	text-align:left;
}
#orgList .resultBox {
	position:relative;
	margin:0;
	padding:0;
}
#orgList .resultBox .number {
	position:absolute;
	top:5px;
	left:160px;
	margin:0;
	padding:0;
	font-weight:500;
	font-size:14px;
}
#orgList .resultBox .color {
	position:relative;
	float:right;
	margin:0 0 0 20px;
	padding:0 0 0 50px;
	font-weight:500;
	font-size:14px;
}
#orgList .resultBox .color::before {
	position:absolute;
	top:2px;
	bottom:2px;
	left:0;
	width:40px;
	background:#beead7;
	content:"";
}
#orgList .resultBox .resultList {
	margin:0;
	padding:0;
}
#orgList .resultBox .resultList ul {
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin:0 0 10px;
	padding:0;
	border:#eceaea solid 1px;
	background:#ffffff;

	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-moz-flex-wrap:wrap;
}
#orgList .resultBox .resultList ul.title {
	margin:0;
	border:none;
	background:none;
}
#orgList .resultBox .resultList ul.complete {
	background:#beead7;
}
#orgList .resultBox .resultList ul.title li {
	padding:10px 14px;
	font-weight:700;
}
#orgList .resultBox .resultList ul li {
	position:relative;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	float:left;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	margin:0;
	padding:20px 10px;
	min-height:auto;
	border-bottom:none;
	list-style:none;
	font-weight:500;
	font-size:14px;
}
#orgList .resultBox .resultList ul li:nth-child(1) {
	width:116px;
}
#orgList .resultBox .resultList ul li:nth-child(2) {
	justify-content:left;
	width:calc(100% - 534px);
}
#orgList .resultBox .resultList ul li:nth-child(3) {
	width:104px;
	text-align:center;
}

#orgList .resultBox .resultList ul li:nth-child(4) {
	width:114px;
}
#orgList .resultBox .resultList ul li:nth-child(5) {
	width:114px;
}
#orgList .resultBox .resultList ul li:nth-child(6) {
	width:86px;
}
#orgList .resultBox .resultList ul li:nth-child(6) a {
	position:absolute;
	top:0;
	right:0;
	bottom:0;
	left:0;
	display:flex;
	align-items:center;
	justify-content:center;
	background-color:#07a794;
	color:#ffffff;
	text-decoration:none;
}
#orgList .resultBox .resultList ul li span {
	position:relative;
	display:flex;
	align-items:center;
	justify-content:center;
	padding:0 0 0 24px;
	color:#07a794;
}
#orgList .resultBox .resultList ul li span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-10px;
	font-size:22px;
}
#orgList .resultBox .resultList ul li b {
	display:none;
}
/* #orgDetail class
----------------------------------------------------------------------*/
#orgDetail {
	position:relative;
	margin:0;
	padding:0 0 100px;
}
#orgDetail .studentBox {
	margin:0 auto 70px;
	padding:0;
	max-width:840px;
}
#orgDetail .studentBox ul {
	display:-moz-box;
	display:-ms-box;
	display:-webkit-flexbox;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-webkit-flex-wrap:wrap;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	margin:0 0 10px;
	padding:0;
	border:#eceaea solid 1px;
	background:#ffffff;

	-webkit-box-lines:multiple;
	-moz-box-lines:multiple;
	-moz-flex-wrap:wrap;
}
#orgDetail .studentBox ul.title {
	margin:0;
	border:none;
	background:none;
}
#orgDetail .studentBox ul.title li {
	padding:10px 14px;
	height:auto;
	font-weight:700;
}
#orgDetail .studentBox ul li {
	position:relative;
	display:-webkit-flex;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	float:left;
	align-items:center;
	justify-content:center;
	box-sizing:border-box;
	margin:0;
	padding:0 14px;
	min-height:auto;
	height:120px;
	border-bottom:none;
	list-style:none;
	font-weight:500;
	font-size:14px;
}
#orgDetail .studentBox ul li:nth-child(1) {
	width:136px;
}
#orgDetail .studentBox ul li:nth-child(2) {
	justify-content:left;
	width:calc(100% - 524px);
	font-size:17px;
}
#orgDetail .studentBox ul li:nth-child(3) {
	width:144px;
}
#orgDetail .studentBox ul li:nth-child(4) {
	width:114px;
}
#orgDetail .studentBox ul li:nth-child(5) {
	width:114px;
}
#orgDetail .studentBox ul li span {
	position:relative;
	display:inline-block;
	padding:0 0 0 26px;
	color:#07a794;
}
#orgDetail .studentBox ul li span i {
	position:absolute;
	top:50%;
	left:0;
	margin-top:-11px;
	font-size:22px;
}
#orgDetail a.back {
	display:block;
	margin:0 auto;
	padding:0;
	width:200px;
	height:50px;
	background:#6f6f6f;
	color:#ffffff;
	text-align:center;
	font-weight:500;
	font-size:14px;
	line-height:50px;
}
#orgDetail a.back span {
	position:relative;
	display:inline-block;
	padding:0 0 0 24px;
}
#orgDetail a.back span i {
	position:absolute;
	top:50%;
	left:-6px;
	margin-top:-12px;
	font-size:24px;
}
#orgDetail .studentBox ul li b {
	display:none;
}
/* #orgResult class
----------------------------------------------------------------------*/
#orgResult {
	position:relative;
	margin:0;
	padding:0 0 100px;
}
#orgResult .downloadBox {
	margin:0 auto 70px;
	padding:0;
	max-width:840px;
}
#orgResult .downloadBox ul {
	margin:0;
	padding:0;
}
#orgResult .downloadBox ul li {
	margin:0 0 10px;
	padding:0;
}
#orgResult .downloadBox ul li a {
	position:relative;
	display:flex;
	align-items:center;
	justify-content:flex-start;
	margin:0;
	padding:0 40px;
	height:64px;
	border:#eceaea solid 1px;
	background:#ffffff;
	color:#07a794;
	text-decoration:none;
	font-weight:500;
	font-size:17px;
}
#orgResult .downloadBox ul li a i {
	position:absolute;
	top:50%;
	right:40px;
	margin-top:-12px;
}
/* #term class
----------------------------------------------------------------------*/
#term {
	position:relative;
	margin:0;
	padding:0 0 100px;
}
#term .termBox {
	box-sizing:border-box;
	margin:-20px auto 0;
	padding:80px;
	min-height:500px;
	max-width:840px;
	border:#eceaea solid 1px;
	background:#ffffff;
}
#term .termBox .box {
	margin:0 0 50px;
}

#term .termBox h2 {
	margin:0 auto 20px;
	padding:0;
	font-weight:700;
	font-size:18px;
}

#term .termBox p {
	position:relative;
	margin:0;
	text-align:justify;
	word-break:break-all;
	font-weight:500;
	font-size:14px;
	line-height:2.0em;
}

#term .termBox p.num {
	padding:0 0 0 30px;
}

#term .termBox p.num span {
	position:absolute;
	top:0;
	left:0;
	display:block;
	line-height:2.0em;
}
#term .termBox p a {
	color:#07a794;
	text-decoration:underline;
}

#term .termBox.site p {
	margin:0 0 10px;
}




/***VIMEO popup*****************/

#js-vimeo-open{
	cursor: pointer
}
.p-vimeo {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
	    opacity: 0;
	visibility: hidden;
}

.p-vimeo__inner {
  display: table;
  width: 100%;
  height: 100%;
  max-width: 780px;
  padding-inline: 30px;
  margin-inline: auto;
	box-sizing: border-box;
}

.p-vimeo__wrap {
  display: table-cell;
  width: 100%;
  height: 100%;
  vertical-align: middle;
}

.p-vimeo__close {
  position: absolute;
top: -50px;
    right: 35px;
}

.p-vimeo__close-button {
  display: inline-block;
  width: 35px;
  height: 35px;
  margin-right: -35px;
  position: relative;
  z-index: 2;
  cursor: pointer;
	background-color: transparent;
    border: none;

}
.p-vimeo__close-button > span {
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  background-color: white;
}
.p-vimeo__close-button > span:first-child {
  transform: rotate(-45deg);
}
.p-vimeo__close-button > span:last-child {
  transform: rotate(45deg);
}

.p-vimeo__body {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
}
.p-vimeo__body > iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}

.p-vimeo__mask {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

















@media print, screen and (min-width: 768px) and (max-width: 1315px) {
	#form .formBox .telBox .box p.name {
		font-size:12px;
	}
}
@media print, screen and (min-width: 768px) and (max-width: 1280px) {
	#form .formBox .telBox .box {
		padding:0 0 0 284px;
	}
	#form .formBox .telBox .box p.tel {
		padding:0 24px 0 40px;
		font-size:18px;
	}
	#form .formBox .telBox .box p.name {
		font-size:12px;
	}
	.pageBox a.notification {
		font-size:14px;
	}
	.pageBox a.notification span {
		padding:0 40px 0 0;
		font-size:13px;
	}
}

@media print, screen and (min-width: 1000px) and (max-width: 1220px) {
	a.download {
		width:186px;
		font-size:12px;
	}
	.pageBox ul.list li p {
		font-size:14px;
	}
	.pageBox ul.list li .status {
		font-size:13px;
	}
	#wrapper {
		margin:0;
		padding:0 0 0 260px;
	}
	header {
		left:260px;
	}
	#sideMenu {
		padding:80px 0 0 50px;
		width:260px;
	}
	#sideMenu .logo {
		top:90px;
		left:36px;
	}
	#sideMenu .logo img {
		width:190px;
		height:61px;
	}
	#sideMenu .mainNavi ul li a {
		font-size:13px;
	}
	
	#sideMenu .mainNavi ul li {
		padding:12px 0;
	}
	#sideMenu .mainNavi ul li.aees_banner{
	padding: 20px 50px 0 0;
}
	#schoolingList .schoolingListBox .read p.small {
		font-size:12px;
	}
	#faq .faqBox .faqList ul li p {
		font-size:14px;
	}


	#orgList .resultBox .resultList ul.title li {
		font-size:11px;
	}
	#orgList .resultBox .resultList ul li {
		font-size:13px;
	}

	#orgList .resultBox .resultList ul li:nth-child(1) {
		width:106px;
	}
	#orgList .resultBox .resultList ul li:nth-child(2) {
		justify-content:left;
		width:calc(100% - 494px);
	}
	#orgList .resultBox .resultList ul li:nth-child(3) {
		width:94px;
	}

	#orgList .resultBox .resultList ul li:nth-child(4) {
		width:104px;
	}
	#orgList .resultBox .resultList ul li:nth-child(5) {
		width:104px;
	}
}
@media print, screen and (min-width: 1000px) and (max-width: 1140px) {
	.importantInfo .tl {
		left:-20px;
	}
	.latestBox .latestList {
		margin:0 -50px;
		padding:60px 50px;
	}
	.table02 th, .table02 td, .table02 tr {
		font-size:13px;
	}
	#page.is_top {
		padding:150px 50px 0;
	}
	#page {
		padding:120px 50px 0;
	}
	#wrapper.is_org #page {
		padding:150px 50px 0;
	}


	header p.name {
		position:absolute;
		top:70px;
		right:0;
		left:0;
		display:block;
		float:none;
		margin:0;
		padding:0 20px;
		height:36px;
		background:#e6eaea;
		text-align:left;
		font-weight:500;
		font-size:11px;
		line-height:36px;
	}
	header p.name span {
		padding:0 0 0 5px;
		font-size:14px;
	}
	#top {
		margin:0 auto;
		padding:36px 0 0;
	}
	#faq .faqBox .faqList {
		margin:0 -50px;
		padding:80px 50px 30px;
	}
	#information .informationBox .list {
		margin:0 -50px;
	}
	#information .informationBox .detail {
		margin:0 -50px;
	}
}
@media print, screen and (min-width: 1000px) and (max-width: 1100px) {
	#form .formBox .city {
		max-width:200px;
	}
}

@media print, screen and (min-width: 1000px) and (max-width: 1040px) {
	#form .formBox .telBox .box p.tel {
		padding:0 18px 0 40px;
		font-size:16px;
	}
	#form .formBox .telBox .box {
		padding:0 0 0 250px;
	}
}

@media print, screen and (min-width: 768px) and (max-width: 810px) {
	#login .loginWrapper {
		width:100%;
	}
	#login .photo {
		width:100%;
	}
	#login .loginWrapper .loginBlock {
		margin:80px 0 0;
		padding:50px;
		min-width:324px;
		width:40%;
		border-radius:10px;
		background:rgba(244, 247, 246, 0.9);
	}
}
@media print, screen and (min-width: 768px) and (max-width: 999px) {
	.pageBox a.notification {
		font-size:15px;
	}
	.pageTitle {
		margin:0 auto 30px;
	}
	a.download {
		width:186px;
		font-size:12px;
	}
	.pageBox ul.list li p {
		font-size:14px;
	}
	.pageBox ul.list li .status {
		font-size:13px;
	}
	.importantInfo .tl {
		left:-20px;
	}
	.latestBox .latestList {
		margin:0 -50px;
		padding:60px 50px;
	}
	.table02 th, .table02 td, .table02 tr {
		font-size:13px;
	}
	#wrapper {
		margin:0;
		padding:0;
	}
	header {
		left:0;
		padding:0 210px 0 70px;
	}
	header .logo img {
		width:auto;
		height:40px;
		;
	}
	header .logo {
		position:absolute;
		top:15px;
		left:30px;
		display:block;
		line-height:0;
	}
	header .personalMenu i {
		margin-top:-11px;
		font-size:22px;
	}
	header .personalMenu i.arrow {
		right:10px;
	}
	header .personalMenu i.face {
		left:10px;
	}
	header .personalMenu {
		right:70px;
		width:146px;
		font-size:13px;
	}
	header ul.personalInfo li {
		box-sizing:border-box;
		margin:0 0 0 20px;
		padding:0;
		font-weight:500;
		font-size:13px;
	}
	header .personalMenu a {
		box-sizing:border-box;
		padding:0;
	}

	header .menuBtn {
		position:absolute;
		top:0;
		right:0;
		display:block;
		width:69px;
		height:70px;
		border-left:#55c1b4 solid 1px;
		background:#07a794;
		cursor:pointer;
	}
	header .menuBtn .line:nth-child(1) {
		position:absolute;
		top:42%;
		left:50%;
		width:30px;
		height:2px;
		background:#ffffff;
		-webkit-transition:ease 0.5s;
		transition:ease 0.5s;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn .line:nth-child(2) {
		position:absolute;
		top:50%;
		left:50%;
		width:30px;
		height:2px;
		background:#ffffff;
		-webkit-transition:ease 0.5s;
		transition:ease 0.5s;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn .line:nth-child(3) {
		position:absolute;
		top:58%;
		left:50%;
		width:30px;
		height:2px;
		background:#ffffff;
		-webkit-transition:ease 0.5s;
		transition:ease 0.5s;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn.action .line:nth-child(1) {
		top:48%;
		width:30px;
		-webkit-transform:translate(-50%, -50%) rotate(45deg);
		transform:translate(-50%, -50%) rotate(45deg);
	}
	header .menuBtn.action .line:nth-child(2) {
		top:48%;
		opacity:0;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn.action .line:nth-child(3) {
		top:48%;
		width:30px;
		-webkit-transform:translate(-50%, -50%) rotate(-45deg);
		transform:translate(-50%, -50%) rotate(-45deg);
	}
	header p.name {
		position:absolute;
		top:70px;
		right:0;
		left:0;
		display:block;
		float:none;
		margin:0;
		padding:0 30px;
		height:30px;
		background:#e6eaea;
		text-align:rleft;
		font-weight:500;
		font-size:11px;
		line-height:30px;
	}
	header p.name span {
		padding:0 0 0 5px;
		font-size:13px;
	}
	#sideMenu {
		position:fixed !important;
		top:0 !important;
		right:-217px;
		bottom:0 !important;
		left:inherit;
		z-index:30;
		padding:80px 0 0 40px;
		width:216px;
		height:auto !important;
		border-right:none;
		background:#d8dcdc;
		-webkit-transition:0.7s cubic-bezier(0.26, 0.63, 0, 0.99) 0.2s;
		-o-transition:0.7s cubic-bezier(0.26, 0.63, 0, 0.99) 0.2s;
		transition:0.7s cubic-bezier(0.26, 0.63, 0, 0.99) 0.2s;
	}
	#sideMenu .mainNavi ul li.aees_banner{
	padding: 12px 40px 12px 0;
}
	#sideMenu.on {
		right:0;
	}
	#sideMenu .logo {
		display:none;
	}
	#sideMenu .logo img {
		width:190px;
		height:61px;
	}

	#sideMenu .mainNavi ul li a {
		font-size:13px;
	}

	#sideMenu .mainNavi ul li {
		padding:12px 0;
	}

	#sideMenu a.contactBtn {
		left:50px;
	}
	#top {
		margin:0 auto;
		padding:30px 0 0;
	}
	#schoolingList .schoolingListBox .read p.small {
		font-size:12px;
	}
	#faq .faqBox .faqList ul li p {
		font-size:14px;
	}
	#orgList .resultBox .resultList ul.title li {
		font-size:11px;
	}
	#orgList .resultBox .resultList ul li {
		font-size:13px;
	}
	#page.is_top {
		padding:150px 50px 0;
	}
	#page {
		padding:120px 50px 0;
	}
	#wrapper.is_org #page {
		padding:150px 50px 0;
	}
	#faq .faqBox .faqList {
		margin:0 -50px;
		padding:80px 50px 30px;
	}
	#form .formBox .city {
		max-width:200px;
	}
	#orgList .resultBox .resultList ul.title li {
		font-size:11px;
	}
	#orgList .resultBox .resultList ul li {
		font-size:13px;
	}

	#orgList .resultBox .resultList ul li:nth-child(1) {
		width:106px;
	}
	#orgList .resultBox .resultList ul li:nth-child(2) {
		justify-content:left;
		width:calc(100% - 514px);
	}
	#orgList .resultBox .resultList ul li:nth-child(3) {
		width:94px;
	}

	#orgList .resultBox .resultList ul li:nth-child(4) {
		width:114px;
	}
	#orgList .resultBox .resultList ul li:nth-child(5) {
		width:114px;
	}
}
@media print, screen and (max-width: 767px) {
	br.sp {
		display:block;
	}
	h1.title {
		margin:0 auto 30px;
		height:auto;
		font-size:17px;
		line-height:1.5em;
	}


	h1.title span {
		padding:0 0 0 44px;
	}
	h1.title span i {
		margin-top:-14px;
	}
	h1.title span i img {
		width:36px;
		height:auto;
	}
	.pageTitle span {
		padding:0 0 0 44px;
	}
	.pageTitle span i {
		margin-top:-14px;
	}
	.pageTitle span i img {
		width:36px;
		height:auto;
	}
	h2.title {
		margin:0 0 10px;
		padding:0;
		font-size:15px;
		line-height:1.5em;
	}
	h2.title i {
		top:-2px;
		display:none;
		margin-top:0;
	}
	h2.title span {
		display:block;
		float:none;
		margin:15px 0 0;
		padding:10px 5px;
		background:#a3a3a3;
		color:#ffffff;
		text-align:center;
		font-weight:500;
		font-size:12px;
	}
	.pageBox {
		margin:0 auto 50px;
	}
	.pageBox a.notification {
		font-size:15px;
	}
	.pageTitle {
		margin:0 auto 30px;
		height:auto;
		line-height:1.6em;
	}
	a.download {
		position:relative;
		margin:15px 0 0;
		width:100%;
		font-size:12px;
	}
	a.btn02 {
		display:block;
		margin:0;
		padding:0;
		width:100%;
		height:60px;
	}
	.pageBox.latestBox {
		margin:0;
		padding:0;
		max-width:inherit;
	}
	.pageBox p.note {
		margin:-5px 0 5px;
		text-align:center;
	}
	.pageBox ul.list {
		margin:0 0 10px;
	}
	.pageBox ul.list li {
		display:flex;
		align-items:center;
		justify-content:flex-start;
		box-sizing:border-box;
		margin:0 0 5px;
		padding:20px 90px 20px 16px;
		min-height:92px;
		line-height:1.8em;
	}

	#schoolingList .schoolingListBox .pageBox ul.list li {
		min-height:127px;
	}

	.pageBox ul.list li .status span {
		position:relative;
		padding:22px 0 0;
		line-height:1.5em;
	}
	.pageBox ul.list li .status span i {
		top:0;
		right:0;
		left:0;
		margin-top:0;
		text-align:center;
		font-size:20px;
	}
	.pageBox ul.list li p {
		font-size:14px;
		line-height:1.8em;
	}
	.pageBox ul.list li .status {
		top:0;
		right:0;
		bottom:0;
		width:90px;
		font-size:13px;
	}
	a.btn01 {
		width:100%;
	}
	.pageBox ul.list li dl {
		margin:0 0 5px;
		padding:0;
		line-height:1.6em;
	}
	.pageBox ul.list li dl dt {
		position:static;
		top:0;
	}
	.reSchooling {
		margin:0 0 5px;
	}
	.pageBox a.notification {
		padding:18px 20px 18px 20px;
	}
	.pageBox a.dl.notification {
		padding:18px 40px 18px 20px;
	}
	.pageBox a.notification span {
		position:relative;
		float:none;
		margin:5px 0 0;
		font-size:14px;
	}
	.pageBox a.notification i {
		right:10px;
	}
	.pageBox a.notification span i {
		right:0;
	}
	.latestBox .tab {
		margin:0 -30px;
	}
	.latestBox .tab ul {
		margin:0 0 0 -1px;
	}
	.latestBox .tab ul li {
		padding:0 0 0 1px;
	}
	.latestBox .tab ul li span {
		display:flex;
		align-items:center;
		justify-content:center;
		box-sizing:border-box;
		padding:0 10px;
		width:100%;
		font-size:11px;
		line-height:1.6em;
	}
	.importantInfo .tl {
		top:-15px;
		left:-10px;
		padding:0 30px;
		width:auto;
		height:36px;
		font-size:14px;
		line-height:36px;
	}
	.importantInfo {
		margin:0 auto 40px;
	}
	.importantInfo .info {
		position:relative;
		padding:40px 20px 30px 20px;
	}
	.importantInfo .info .close {
		top:10px;
		right:10px;
	}
	.importantInfo .info h3 {
		margin:0 0 10px;
		padding:0 0 10px;
		font-weight:500;
		font-size:14px;
	}
	.importantInfo .info p.date {
		font-size:11px;
		line-height:1.5em;
	}
	.importantInfo .info p {
		text-align:justify;
		font-size:13px;
		line-height:1.8em;
	}
	.authentication {
		margin:0 auto 40px;
		padding:20px 20px;
	}
	.authentication a.resend {
		position:static;
		margin-top:10px;
		width:100%;
	}
	.authentication p {
		text-align:justify;
		font-size:13px;
		line-height:1.8em;
	}
	.latestBox .latestList {
		margin:0 -30px;
		padding:40px 30px;
	}
	.latestBox .latestList .box dl {
		margin:0 0 20px;
		padding:0 0 20px;
	}
	.latestBox .latestList .box dl dt {
		position:static;
		top:0;
		left:0;
		margin:0 0 5px;
		font-weight:700;
	}
	.latestBox .latestList .box dl.end {
		margin:0;
		padding:0;
	}
	.latestBox .latestList .box dl dd a i {
		display:none;
	}
	.latestBox .latestList .box dl dd a {
		padding:0;
	}
	.tabMenu {
		margin:0 -30px;
		height:50px;
	}
	.tabMenu ul {
		margin:0 0 0 -1px;
		height:50px;
	}
	.tabMenu ul li {
		padding:0 0 0 1px;
		height:50px;
	}

	.tabMenu ul li.open a {
		background:#07a794;
		color:#ffffff;
	}
	.tabMenu ul li a {
		display:flex;
		align-items:center;
		justify-content:center;
		box-sizing:border-box;
		padding:0 10px;
		width:100%;
		height:50px;
		font-size:11px;
		line-height:1.6em;
	}
	.table02 th, .table02 td, .table02 tr {
		font-size:13px;
	}
	.navigation a.page-numbers, .navigation span.current, .navigation span.dots {
		display:none;
	}
	.navigation a.prev, .navigation a.next {
		display:inline-flex;
		margin:0 10px;
	}
	.pageBox ul.list li p {
		padding:0 20px 0 0;
		text-align:justify;
		font-size:14px;
		line-height:1.8em;
	}
	.pageBox .listTl {
		padding:10px 0 15px 10px;
	}
	.pageBox .listTl span.tl02 {
		font-size:12px;
	}
	.pageBox ul.list li .time {
		position:relative;
		top:inherit;
		right:inherit;
		margin-top:5px;
		padding:0 0 0 30px;
		font-size:15px;
	}
	.pageBox ul.list li a.status span i {
		top:inherit;
		right:0;
		bottom:0;
		left:0;
		margin-top:0;
		font-size:30px;
	}
	.pageBox ul.list li a.status span {
		position:relative;
		padding:12px 0 30px;
	}
	.radio label {
		padding:5px 0 5px 35px;
	}
	.pageBox ul.list li .data {
		right:20px;
	}
	.table02 th, .table02 td, .table02 tr {
		display:block;
		text-align:left;
		font-size:13px;
	}
	.table02 th {
		font-weight:700;
	}
	.table02 td input[type="text"] {
		height:50px;
	}

	.table03.pc {
		display:none;
	}
	.table03.sp {
		display:table;
	}
	.table03 th {
		padding:15px 15px;
		width:78px;
		font-size:13px;
	}

	.table03 td {
		padding:15px 20px;
		padding:15px 15px;
		font-size:13px;
	}
	#notification .pageBox .table01 td {
		font-size:13px;
	}

	#notification .pageBox .table01 th {
		font-size:13px;
	}

	p.read {
		text-align:justify;
		font-weight:500;
		font-size:14px;
		line-height:1.8em;
	}
	.noInfo p.read {
		text-align:center;
	}
	.searchOpen {
		position:relative;
		display:block;
		margin:0 auto 10px;
		padding:0;
		width:100%;
		height:36px;
		border:#eceaea solid 1px;
		background:#ffffff;
		color:#07a794;
		text-align:center;
		font-weight:500;
		font-size:12px;
		line-height:36px;
	}
	.searchOpen span {
		position:relative;
		display:inline-block;
		padding:0 0 0 32px;
	}
	.searchOpen span i {
		position:absolute;
		top:50%;
		left:0;
		margin-top:-12px;
		font-size:24px;
	}
	.searchBox {
		display:none;
	}
	#login {
		overflow:auto;
	}
	#login .loginWrapper .loginBlock h1 {
		margin:0 0 50px;
	}
	#login .loginWrapper {
		position:relative;
		top:0;
		bottom:0;
		left:0;
		display:block;
		padding:50px 0;
		width:100%;
	}
	#login .photo {
		position:fixed;
		width:100%;
	}
	#login .loginWrapper .loginBlock {
		box-sizing:border-box;
		margin:0 20px 0;
		padding:50px 20px;
		min-width:inherit;
		width:calc(100% - 40px);
		border-radius:10px;
		background:rgba(244, 247, 246, 0.9);
	}
	#login .loginWrapper .logo img {
		width:auto;
		height:36px;
	}
	#login .loginWrapper .logo {
		top:40px;
		right:40px;
		left:40px;
		display:none;
		text-align:center;
	}
	#login .loginWrapper .loginBlock h1 img {
		width:auto;
		height:60px;
	}
	#login .loginWrapper .loginBlock h1::after {
		left:110px;
	}
	#login .loginWrapper .loginBlock h1 span {
		right:0;
		bottom:-36px;
		left:0;
		padding:3px 0;
		background:#07a794;
		color:#ffffff;
		text-align:center;
		font-size:11px;
		line-height:1.5;
	}
	#wrapper {
		margin:0;
		padding:0;
	}
	header {
		left:0;
		padding:0 55px 0 0;
		height:50px;
	}
	header .logo img {
		width:auto;
		height:30px;
	}
	header .logo {
		position:absolute;
		top:10px;
		left:20px;
		display:block;
		line-height:0;
	}
	header .personalMenu {
		display:none;
	}
	header ul.personalInfo {
		display:none;
	}
	header .menuBtn {
		position:absolute;
		top:0;
		right:0;
		display:block;
		width:50px;
		height:50px;
		cursor:pointer;
		/* background: #07a794; */
		/* border-left: none; */
	}
	header .menuBtn .line:nth-child(1) {
		position:absolute;
		top:42%;
		left:50%;
		width:30px;
		height:1px;
		background:#5a5a5a;
		-webkit-transition:ease 0.5s;
		transition:ease 0.5s;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn .line:nth-child(2) {
		position:absolute;
		top:50%;
		left:50%;
		width:30px;
		height:1px;
		background:#5a5a5a;
		-webkit-transition:ease 0.5s;
		transition:ease 0.5s;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn .line:nth-child(3) {
		position:absolute;
		top:58%;
		left:50%;
		width:30px;
		height:1px;
		background:#5a5a5a;
		-webkit-transition:ease 0.5s;
		transition:ease 0.5s;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn.action .line:nth-child(1) {
		top:48%;
		width:30px;
		-webkit-transform:translate(-50%, -50%) rotate(45deg);
		transform:translate(-50%, -50%) rotate(45deg);
	}
	header .menuBtn.action .line:nth-child(2) {
		top:48%;
		opacity:0;
		-webkit-transform:translate(-50%, -50%);
		transform:translate(-50%, -50%);
	}
	header .menuBtn.action .line:nth-child(3) {
		top:48%;
		width:30px;
		-webkit-transform:translate(-50%, -50%) rotate(-45deg);
		transform:translate(-50%, -50%) rotate(-45deg);
	}
	header p.name {
		position:absolute;
		top:50px;
		right:0;
		left:0;
		display:block;
		float:none !important;
		margin:0;
		padding:0 20px;
		height:30px;
		background:#e6eaea;
		text-align:left;
		font-weight:500;
		font-size:11px;
		line-height:30px;
	}
	header p.name span {
		padding:0 0 0 5px;
		font-size:12px;
	}
	footer {
		padding:50px 30px 30px;
	}
	footer .footerMenu {
		float:none;
		margin:20px 0 0;
		padding:0;
	}
	footer .footerMenu nav.footMenu {
		margin:0 0 30px;
	}
	footer .footerMenu .logo {
		position:static;
		margin:0 0 20px;
		text-align:center;
		line-height:0;
	}
	footer .footerMenu .logo img {
		width:auto;
		height:40px;
	}
	footer .footerMenu nav.footMenu ul li {
		margin:0;
		padding:0;
		border-bottom:#9e9e9e solid 1px;
	}
	footer .footerMenu nav.footMenu ul li a {
		display:block;
		height:40px;
		line-height:40px;
	}
	footer .phone {
		float:none;
	}
	footer .phone p {
		text-align:center;
	}
	footer .footerMenu p.copyright {
		position:static;
		text-align:center;
		font-size:10px;
	}
	#sideMenu {
		position:fixed !important;
		top:0 !important;
		right:-100%;
		bottom:0 !important;
		left:100%;
		z-index:30;
		display:block;
		overflow-y:auto;
		padding:100px 30px 50px 30px;
		width:auto;
		height:auto !important;
		border-right:none;
		background:#d8dcdc;
		-webkit-transition:0.7s cubic-bezier(0.26, 0.63, 0, 0.99) 0.2s;
		-o-transition:0.7s cubic-bezier(0.26, 0.63, 0, 0.99) 0.2s;
		transition:0.7s cubic-bezier(0.26, 0.63, 0, 0.99) 0.2s;
	}

	#sideMenu .mainNavi ul li a {
		display:block;
		height:50px;
		font-size:13px;
		line-height:50px;
	}
	#sideMenu.on {
		right:0;
		left:0;
	}
	#sideMenu .logo {
		display:none;
	}
	#sideMenu .logo img {
		width:190px;
		height:61px;
	}
	#sideMenu .mainNavi ul li {
		padding:0;
		border-bottom:#c7c7c7 solid 1px;
	}
	#sideMenu .mainNavi ul li:last-child {
		border-bottom:none;
	}
	#sideMenu .mainNavi ul li.sp {
		display:block;
	}

	#sideMenu .mainNavi ul li.ct {
		padding:0;
	}
	#sideMenu .mainNavi ul li.ct a {
		padding:0;
	}
	#sideMenu .mainNavi ul li.ct a i {
		display:none;
	}
	#sideMenu .mainNavi ul li.aees_banner{
		    padding: 25px 0;
    text-align: center;
	}
	#sideMenu .mainNavi ul li.aees_banner #js-vimeo-open{
		height: auto;
		line-height: 0;
		width: 200px;
		margin: 0 auto;
		
	}
	#sideMenu .mainNavi ul li.aees_banner #js-vimeo-open img{
		width: 200px;
		height: auto;
	}
	#sideMenu .mainNavi ul.personalInfo {
		display:block;
		margin:0;
		padding:10px 0 0;
		text-align:right;
		font-weight:500;
		font-size:13px;
	}
	#sideMenu .mainNavi ul.personalInfo li {
		margin:0 0 10px;
		padding:0;
		border-bottom:none;
	}
	#sideMenu .mainNavi ul.personalInfo li b {
		padding:0 3px;
		font-size:22px;
	}
	#sideMenu a.contactBtn {
		display:none;
	}
	#top {
		margin:0 auto;
		padding:0 0 0;
	}
	#schoolingList .schoolingListBox .read p.small {
		font-size:12px;
	}
	#faq .faqBox .faqList ul li p {
		font-size:14px;
	}
	#orgList .resultBox .resultList ul.title li {
		font-size:11px;
	}
	#orgList .resultBox .resultList ul li {
		font-size:13px;
	}
	#page {
		padding:100px 30px 0;
		min-height:inherit !important;
		height:auto;
	}

	#page.is_top {
		padding:120px 30px 0;
	}
	#wrapper.is_org #page {
		padding:120px 30px 0;
	}

	#faq .faqBox .faqList {
		margin:0 -30px;
		padding:50px 30px 30px;
		min-height:inherit;
	}
	#faq .faqBox .faqList ul li {
		margin:0 0 30px;
		padding:30px 20px 30px 20px;
		background:#ffffff;
	}
	#faq .faqBox .faqList ul li p {
		margin:0;
		padding:0;
		text-align:justify;
		line-height:1.8em;
	}
	#faq .faqBox .faqList ul li p.qus {
		position:relative;
		margin:0 0 20px;
		padding:0 0 0 32px;
		font-weight:700;
		font-size:14px;
	}
	#faq .faqBox .faqList ul li p.qus::before {
		top:6px;
		left:0;
		font-size:30px;
	}
	#form .formBox p.read {
		margin:0 0 30px;
		line-height:1.8em;
	}
	#form .formBox p.read br {
		display:none;
	}
	#form .formBox .city {
		margin:8px 0 0;
		max-width:inherit;
		width:100%;
	}
	#form .formBox p.note {
		margin:-20px 0 30px;
		text-align:justify;
		font-weight:700;
		font-size:12px;
		line-height:1.8em;
	}

	#form .formBox .telBox {
		margin:30px 0 30px;
		padding:30px 20px;
		text-align:center;
	}
	#form .formBox .telBox .box {
		display:block;
		padding:0;
	}
	#form .formBox .telBox .box p.tel {
		position:relative;
		display:block;
		margin:0 0 20px;
		padding:0 0 20px 30px;
		border-right:none;
		border-bottom:#cccccc dotted 1px;
		text-align:center;
		font-weight:700;
		font-size:17px;
	}
	#form .formBox .telBox .box p.tel i {
		left:50%;
		margin-top:-22px;
		margin-left:-110px;
		font-size:30px;
	}
	#form .formBox .telBox .box p.name {
		margin:0 0 10px;
		text-align:center;
		font-size:14px;
		line-height:1.6em;
	}
	#form .formBox .telBox .box p.name br {
		display:block;
	}
	#form .formBox .telBox .box p.num {
		margin:0 0 10px;
		text-align:center;
		font-size:30px;
	}
	#form .formBox .telBox .box p.num a {
		pointer-events:auto;
	}
	#form .formBox .telBox .box p.open {
		text-align:center;
		font-size:12px;
	}


	select {
		min-width:auto;
		width:100%;
	}
	#form .formBox .submit ul {
		display:block;
	}
	#form .formBox .submit ul li {
		float:none;
		margin:0;
		padding:4px 0;
	}
	#form .formBox a.back {
		width:100%;
		height:40px;
		font-size:13px;
		line-height:40px;
	}

	#form .formBox input[type="submit"] {
		padding:0 30px;
		width:100%;
		background-position:top 50% right 30px;
	}
	#form .formBox input[type="button"] {
		padding:0 30px;
		width:100%;
		background-position:top 50% right 30px;
	}
	#form {
		margin:0;
		padding:0 0 50px;
	}
	#form .formBox dl dd ol li:first-child {
		text-align:left;
	}
	#form .formBox .postCode {
		float:none;
		margin:0 0 8px;
		max-width:100%;
	}
	#form .formBox .complete {
		padding:50px 20px;
	}
	#form .formBox .complete a.goTop {
		width:100%;
		height:50px;
		line-height:50px;
	}
	#information .informationBox .list {
		margin:0 -30px;
		padding:50px 30px;
		min-height:inherit!important;
	}
	#information .informationBox .list .box dl {
		margin:0 0 20px;
		padding:0 0 20px;
		font-size:14px;
	}
	#information .informationBox .list .box dl dt {
		position:static;
		top:0;
		left:0;
		margin:0 0 5px;
		font-weight:700;
	}
	#information .informationBox .list .box dl dd a {
		position:relative;
		display:block;
		padding:0 30px 0 0;
		line-height:1.8em;
	}
	#information .informationBox .detail {
		margin:0 -30px;
		padding:50px 30px;
		min-height:inherit!important;
	}
	#information .informationBox .detail .box .post p.date {
		margin:0;
		padding:0;
		font-size:12px;
	}
	#information .informationBox .detail .box .post h1 {
		margin:0 0 15px;
		padding:0 0 15px;
		font-size:16px;
	}
	#information .informationBox .detail .box .post p {
		font-size:14px;
		line-height:1.8em;
	}
	#information .informationBox .detail .box .post a.back {
		margin:30px auto 0;
		padding:0;
		width:100%;
		height:50px;
	}
	#schoolingList .schoolingListBox .read p {
		font-size:14px;
		line-height:1.8em;
	}
	#schoolingList .schoolingListBox h2.title {
		margin:0 0 20px;
	}
	#schoolingList .schoolingListBox .pageBox ul.list {
		margin:0 0 50px;
		padding:0;
	}
	#notification {
		margin:0;
		padding:0 0 50px;
	}
	#notification .notificationWrap {
		margin:0 0 40px;
		padding:65px 20px;
	}
	#notification .notificationWrap p.read {
		text-align:justify;
	}
	#notification .notificationBox {
		margin:0 auto 30px;
		padding:0;
		border-bottom:none;
	}
	#notification .notificationBox p.class {
		text-align:center;
		font-size:17px;
	}
	#notification .notificationBox p.class span {
		font-size:30px;
	}
	#notification .notificationBox p.pass {
		position:static;
		margin:10px 0 0;
		padding:0;
		text-align:center;
	}
	#notification .questionaryBox .questionary ol li {
		padding:30px 20px;
	}
	#notification .questionaryBox .questionary ol li .radioBox {
		position:relative;
		padding:0;
	}
	#notification .questionaryBox .questionary ol li p {
		line-height:1.8em;
	}
	#notification .questionaryBox .questionary ol li .radioBox .radio {
		position:static;
		margin-top:5px;
	}
	input[type="submit"] {
		width:100%;
		height:60px;
		font-size:15px;
	}
	#notification .questionaryBox .questionary {
		margin:0 0 30px;
		padding:0;
	}
	#notification .pageBox a.btn01 {
		width:100%;
		height:60px;
		line-height:60px;
	}
	#notification .pageBox a.back {
		margin:30px auto 0;
		padding:0;
		width:100%;
		height:50px;
	}

	#term {
		position:relative;
		margin:0;
		padding:0 0 50px;
	}
	#orgResult .downloadBox ul li a i {
		right:16px;
	}
	#orgResult .downloadBox ul li a {
		padding:0 50px 0 16px;
		font-size:15px;
	}
	#orgResult .downloadBox {
		margin:0 auto 50px;
	}
	#orgResult {
		padding:0;
	}
	#orgList input[type="submit"].search {
		width:100%;
		height:50px;
	}
	#orgList {
		padding:0 0 50px;
	}
	#orgList .resultBox .number {
		top:0;
		right:0;
		left:inherit;
	}
	#orgList .resultBox .resultList ul.title {
		display:none;
	}
	#orgList .resultBox .resultList ul {
		display:block;
		padding:10px 0 0;
	}
	#orgList .resultBox .resultList ul li {
		position:relative;
		display:block;
		float:none;
		padding:12px 20px;
		width:100% !important;
		text-align:right;
	}
	#orgList .resultBox .resultList ul li b {
		display:block;
		float:left;
		font-weight:700;
		font-size:11px;
	}
	#orgList .resultBox .resultList ul li span {
		display:inline-flex;
	}
	#orgList .resultBox .resultList ul li::after {
		position:absolute;
		right:20px;
		bottom:0;
		left:20px;
		display:block;
		height:1px;
		background:#eceaea;
		content:"";
	}
	#orgList .resultBox .resultList ul li:nth-child(3) {
		text-align:right;
	}
	#orgList .resultBox .resultList ul.complete li::after {
		background:#dcfff0;
	}
	#orgList .resultBox .resultList ul li:last-child::after {
		display:none;
	}
	#orgList .resultBox .color {
		position:absolute;
		top:-30px;
		right:0;
		left:inherit;
		margin:0 auto 20px;
		width:70px;
	}
	#orgList .resultBox .resultList ul li:nth-child(6) a {
		position:static;
		height:40px;
	}

	#orgList .resultBox .resultList ul li:nth-child(2) {
		font-weight:700;
		font-size:14px;
	}
	#orgDetail {
		padding:0 0 50px;
	}
	#orgDetail a.back {
		width:100%;
	}
	#orgDetail .studentBox ul.title {
		display:none;
	}
	#orgDetail .studentBox ul {
		display:block;
		padding:10px 0 0;
	}
	#orgDetail .studentBox ul li {
		position:relative;
		display:block;
		float:none;
		padding:12px 20px;
		width:100% !important;
		height:auto;
		text-align:right;
	}
	#orgDetail .studentBox ul li::after {
		position:absolute;
		right:20px;
		bottom:0;
		left:20px;
		display:block;
		height:1px;
		background:#eceaea;
		content:"";
	}
	#orgDetail .studentBox ul li:last-child::after {
		display:none;
	}
	#orgDetail .studentBox ul li:nth-child(2) {
		font-size:14px;
	}
	#orgDetail .studentBox ul li b {
		display:block;
		float:left;
		font-weight:700;
		font-size:11px;
	}

	#other {
		position:relative;
		display:block;
		margin:0;
		padding:50px 20px;
		min-height:inherit;
		height:auto!important;
	}
	#other.change {
		min-height:inherit;
		height:auto!important;
	}
	#other .otherWrapper h1 {
		margin:0 0 10px;
		font-size:14px;
	}
	#other .otherWrapper h1 span {
		font-size:11px;
	}

	#other .otherWrapper {
		margin:0;
		padding:50px 20px;
		max-width:inherit;
	}
	#other .otherWrapper .logo {
		margin:0 0 30px;
		text-align:center;
	}
	#other .otherWrapper p {
		text-align:justify;
	}
	#other .otherWrapper p br {
		display:none;
	}
	.errorPage .noInfo {
		margin:-49px -30px 0;
		padding:50px 20px 30px;
	}
	.errorPage .noInfo p.read {
		text-align:center;
		font-size:16px;
	}
	.errorPage .noInfo p br {
		display:none;
	}
	.errorPage .noInfo p {
		text-align:justify;
		font-size:13px;
		line-height:1.8em;
	}
	.errorPage .logoutBox a {
		width:100%;
	}
	.errorPage .tx_line {
		display:inline;
		font-size:13px;
	}
	.errorPage .flex {
		display:block;
	}
	.errorPage .logoutBox {
		padding:50px 16px 30px;
		width:auto;
	}
	.errorPage .logoutBox p {
		text-align:center;
	}
	.errorPage .logoutBox p.sub_title {
		font-size:14px;
	}
	.errorPage .logoutBox p.close_text {
		font-size:13px;
	}
	.errorPage .logoutBox p.note {
		font-size:10px;
	}
	#term .termBox {
		margin:-10px auto 0;
		padding:30px 20px;
	}
	#term .termBox h2 {
		font-size:16px;
	}
	#term .termBox p.num {
		padding:0 0 0 20px;
	}
	#term .termBox p {
		margin:0 0 5px;
		font-size:13px;
		line-height:1.8em;
	}
	#term .termBox .box {
		margin:0 0 30px;
	}
}
@media print, screen and (min-width: 768px) {
	.searchBox {
		display:block !important;
	}
}

@keyframes loadingdot {
	0% {
		opacity:0;
	}
	50% {
		opacity:1;
	}
	100% {
		opacity:0;
	}
}
@keyframes loadingshow {
	0% {
		opacity:0;
	}
	100% {
		opacity:1;
	}
}

.toggle-password {
	position:absolute;
	top:15px;
	right:15px;

/* margin-top: -11px; */
	z-index:2;
	color:#8d8d8d;
	font-size:21px;
	cursor:pointer;
}

#form .formBox dl dd ol li .toggle-password {
	top:20px;
	;
}

.nowrap-pc {
    white-space: nowrap;
}

@media screen and (max-width: 767px) {
    .nowrap-pc {
        white-space: normal;
    }
}
