@charset "UTF-8";

/*****************************************
			Login Page
*****************************************/
html {
	background: url(../img/login/login_bg.jpg) 40% 0 no-repeat;
}
body {
	overflow-x: hidden;
}
#login {
	margin: 0 auto;
	padding: 100px 0 0 0;
	width: 830px;
	/zoom: 1;
}
#login:after {
	content: "";
	display: block;
	height: 0px;
	clear: both;
	line-height: 0; 
	visibility: hidden;
}
#my_box {
	width: 50%;
	float: left;
	_display: inline;
}
#my_box h1 {
	width: 300px;
	text-align: center;
}
#my_box ul {
	margin: 30px 0 0 0;
	padding: 0 0 5px 45px;
	list-style: none;
	background: url(../img/common/icon_notice.png) 0 0 no-repeat;
	line-height: 1.41;
	font-weight: bold;
	font-size: 12px;
}
#login_box {
	width: 353px;
	float: right;
	_display: inline;
}
.tab {
	margin: 0;
	padding: 4px 0 0 4px;
	list-style: none;
	background: url(../img/login/tab_bg.jpg) 0 0 no-repeat;
	/zoom: 1;	
}
.tab:after {
	content: "";
	display: block;
	height: 0px;
	clear: both;
	line-height: 0; 
	visibility: hidden;
}
.tab li {
	float: left;
	_display: inline;
	width: 83px;
	height: 30px;
	margin: 0 4px 0 0;
}
.tab li a {
	display: block;
	width: 100%;
	height: 100%;
	text-indent: 110%;
	overflow: hidden;
	white-space: nowrap;
	background: url(../img/login/tab.jpg) 0 0 no-repeat;
}
.tab li#tab_cms a { background-position: 0 0; }
.tab li#tab_mailmagazine a { background-position: -83px 0; }
.tab li#tab_blog a { background-position: -166px 0; }
.tab li#tab_election a { background-position: -249px 0; }
.tab li#tab_cms a.active { background-position: 0 -30px; }
.tab li#tab_mailmagazine a.active { background-position: -83px -30px; }
.tab li#tab_blog a.active { background-position: -166px -30px; }
.tab li#tab_election a.active { background-position: -249px -30px; }

#login_box dl {
	padding: 95px 0 0 20px;
}
#login_box dl dt {
	color: #FFF;
	font-weight: bold;
	margin: 10px 0 0 0;
}
#login_box .off {
	color: #CCC;
}
#cms {
	background: url(../img/login/login_cms.png) 0 0 no-repeat;
	min-height: 309px;
}
#mailmagazine {
	background: url(../img/login/login_mailmagazine.png) 0 0 no-repeat;
	min-height: 309px;
}
#blog {
	background: url(../img/login/login_blog.png) 0 0 no-repeat;
	min-height: 309px;
}
#election {
	background: url(../img/login/login_election.png) 0 0 no-repeat;
	min-height: 309px;
}
#election,
#mailmagazine, 
#blog {
	display: none;
}
.user_name,
.user_pass {
	border: solid 1px #666;
	width: 300px;
	padding: 0 5px;
	height: 28px;
	line-height: 28px;
	font-size: 16px;
}
.showPassword {
	margin: 0 5px 0 80px;
	cursor: pointer;
}
.btn_login {
	margin: 0 auto;
	width: 70px;
	height: 70px;
	position: relative;
	background: url(../img/login/btn_login.png) 0 0 no-repeat;
}
.btn_login input {
	display: block;
	width: 70px;
	height: 70px;
	background: none;
	border: none;
	text-indent: 110%;
	overflow: hidden;
	white-space: nowrap;
	cursor: pointer;
	position: absolute;
	z-index: 100;
}
.roll,
.fail {
	display: block;
	width: 70px;
	height: 70px;
	position: absolute;
	top: 0;
	display: none;
	cursor: pointer;
}
.roll { background: url(../img/login/btn_login.png) -70px 0 no-repeat; }
.fail { background: url(../img/login/btn_login.png) -140px 0 no-repeat; }
.err_msg {
	color: #F00;
	font-weight: bold;
	font-size: 14px;
	margin: 15px 0 0 0;
}
.btnLoginRelease {
	display: inline-block;
	margin: 10px 0 0 0;
	padding: 8px 15px;
	background: #FFFFD7;
	box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
	border: solid 2px #333;
	font-weight: bold;
}
.btnLoginRelease:hover {
	background: #FFFFC1;
}
/*****************************************
			Icon Slider
*****************************************/
#icon_slider {
	width: 100%;
	height: 100px;
	position: relative;
	overflow: hidden;
	top: 50px;
}
#icon_slider ul {
	margin: 0;
	padding: 0;
	list-style: none;
	position: absolute;
	width: 300%;
	height: 100px;
	/zoom: 1;
}
#icon_slider ul:after {
	content: "";
	display: block;
	height: 0px;
	clear: both;
	line-height: 0; 
	visibility: hidden;
}
#icon_slider ul li {
	float: left;
	width: 100px;
	height: 100px;
	text-aligh: center;
}
/*****************************************
			JG Notice
*****************************************/
#jgNotice {
	margin: 30px 0 0 0;
	padding: 0 0 20px 0;
	width: 90%;
	position: absolute;
	right: 0;
}
#importantNotice {
	animation: ImportantNoticeRightToLeft 1.5s;
	position: relative;
}
@keyframes ImportantNoticeRightToLeft {
	0% {
		opacity: 0;
		transform: translateX(50%);
	}
	100% {
		opacity: 1;
		transform: translateX(0);
	}
}
#importantExclamation {
	animation: ExclamationScale 0.3s ease infinite alternate;
	position: absolute;
	top: 30px;
	left: 100px;
}
@keyframes ExclamationScale {
	0% { transform: scale(0.8) translateY(0px); }
	100% { transform: scale(1) translateY(-20px); }
}
#importantNoticeBox {
	margin: 0 0 3px 186px;
	position: relative;
}
#importantNoticeBoxInner {
	margin: 0 0 0 150px;
	padding: 0 15px 0 0;
	background: #C30A00;
	height: 150px;
	overflow: hidden;
}
#importantNoticeBoxInner:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 150px 150px;
	border-color: transparent transparent #C30A00 transparent;
	position: absolute;
	top: 0;
	left: 0;
}
#importantNoticeBoxInner h2 {
	margin: 5px 0 3px 0;
	font-size: 137%;
	font-weight: bold;
	color: #FFF;
	letter-spacing: 0.05em;	
}
#importantNoticeBoxContents {
	height: 100px;
	overflow: auto;
	-webkit-overflow-scrolling: touch;
	color: #FFF;
}
#importantNoticeBoxContents dl {
	margin: 0 0 5px 0;
	overflow: hidden;
}
#importantNoticeBoxContents dl:last-child {
	margin-bottom: 0;
}
#importantNoticeBoxContents dl dt {
	padding: 2px 0;
	width: 9.5em;
	background: #23375A;
	text-align: center;
	float: left;
}
#importantNoticeBoxContents dl dd {
	margin: 0 0 0 10em;
	padding: 2px 0;
}
#importantNoticeBoxContents dl dd a {
	color: #FFF;
}
#importantNoticeBoxContents dl dd a:hover {
	color: #FF0;
}
#importantNoticeBoxContents .i_new {
	margin: 0 0 0 5px;
	color: #FF0;
	font-weight: bold;
}
#emergencyContactBox {
	padding: 0 0 0 150px;
	background: url(../img/jg/jg_logo.png) 0 0 no-repeat;
}
#emergencyContactBox h2 {
	margin: 0 0 3px 0;
	position: relative;
}
#emergencyContactBox h2 span {
	display: block;
	margin: 0 0 0 35px;
	padding: 0 5px 0 0;
	height: 35px;
	line-height: 35px;
	background: #1F365F;
	color: #FFF;
	font-weight: bold;
	letter-spacing: 0.05em;	
}
#emergencyContactBox h2 span:before {
	content: "";
	width: 0;
	height: 0;
	border-style: solid;
	border-width: 0 0 35px 35px;
	border-color: transparent transparent #1F365F transparent;
	position: absolute;
	top: 0;
	left: 0;
}
#jgContactBox {
	padding: 0 0 0 35px;
	overflow: hidden;
}
#jgContactBox dl {
	margin: 0 25px 0 0;
	overflow: hidden;
	float: left;
	line-height: 1.43;
}
#jgContactBox dl:last-of-type {
	margin-right: 0;
}
#jgContactBox dl dt {
	margin: 0 5px 0 0;
	padding: 8px 0 0 0;
	color: #0068B2;
	font-weight: bold;
	font-size: 87%;
	float: left;
}
#jgContactBox dl dd {
	float: left;
}
#jgContactBox dl dd .jgNumber {
	padding: 0 0 5px 0;
	background: url(../img/jg/dotted_line.png) 0 100% repeat-x;
	font-size: 143%;
	font-weight: bold;
	color: #1E3560;
}
#jgContactBox dl dd .jgOpenTime {
	font-size: 93%;
}
#jgContactBox dl dd a {
	color: #1E3560;
	text-decoration: none;
}
#jgContactBox dl dd a:hover {
	color: #C03;	
}