/* --------------------------------------------------
login-header
-------------------------------------------------- */
header#login-header {
	background: #FFF;
	min-width: 520px;
	width: 100%;
	height: 60px;
	margin: 0 auto;
	position: relative;
}
.header-logo {
	position: absolute;
	top: 15px;
	left: 10px;
}

.header-btn {
	position: absolute;
	top: 0;
	right: 0;
}
.support-btn {
	display: inline-block;
	height: 60px;
	position: relative;
	background-color: #9189C7;
	z-index: 2;
}
.support-btn img {
	padding: 0 15px 0 25px;
}
.support-btn::before,
.support-btn::after {
	content: '';
	position: absolute;
	display: block;
	z-index: -1;
}
.support-btn,
.support-btn::before,
.support-btn::after {
	-webkit-transition: all .3s;
	transition: all .3s;
}
.support-btn::after {
	top: -100%;
	width: 100%;
	height: 100%;
}
.support-btn:hover::after {
	top: 0;
	background-color: #3d3b8d;
}

/* --------------------------------------------------
login-inner
-------------------------------------------------- */
#login-inner {
	background: url(../img/login/bg-2.jpg) no-repeat center center;
	background-size: cover;
}


/* デスクトップレイアウト : 1261px およびそれ以上. */
@media only screen and (min-width: 1261px) {
.login-cont01 {
	background: rgba(67,49,143,0.3); ;
	width: 55%;
	padding-top: 60px;
}
.login-cont01-wrap {
	width: 500px;
	margin: 0 15% 0 auto;
}
}

/* モバイルレイアウト : 981px以上 および 1260px未満 */
@media only screen and (min-width: 981px) and (max-width: 1260px) {
.login-cont01 {
	background: rgba(67,49,143,0.3); ;
	width: 70%;
	padding-top: 60px;
}
.login-cont01-wrap {
	width: 500px;
	margin: 0 15% 0 auto;
}
}

/* モバイルレイアウト : 980px およびそれ以下. */
@media only screen and (max-width: 980px) {
.login-cont01 {
	background: rgba(67,49,143,0.3); ;
	width: 100%;
	padding-top: 60px;
}
.login-cont01-wrap {
	width: 500px;
	margin: 0 auto;
}
}

.login-box {
	box-sizing: border-box;
	width: 500px;
	background: #FFF;
	box-shadow: 0 1px 1px #fff inset, 0 0 0 10px #9EBBE2;
	padding: 20px;
	border-radius: 10px;		/* CSS3草案 */
	-webkit-border-radius: 10px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 10px;	/* Firefox用 */
}
.login-box .login-box-ttl,
.login-box p {
	text-align: center;
}

/*  form  */
.login-box form input {
	height: 40px;
	margin: 5px auto 10px 0px;
}
input:not([type="submit"]), textarea {
	box-sizing: border-box;
	width: 350px;
	background: #E7E6FC;
	border: 1px solid #DDDDDD;
	border-radius: 2px;
	color: #9186C5;
	padding: 0 8px;
	transition: 0.6s;
}
input:active:not([type="submit"]),
textarea:active,
input:focus:not([type="submit"]),
textarea:focus {
	background: #fff;
}

button {
	box-sizing: border-box;
	background: #43358D;
	width: 350px;
	padding: 12px;
	margin-top: 15px;
	border: none;
	border-radius: 5px;		/* CSS3草案 */
	-webkit-border-radius: 5px;	/* Safari,Google Chrome用 */
	-moz-border-radius: 5px;	/* Firefox用 */
}


/* accordion */
.accordion {
	width: 350px;
	margin: 0 auto;
}
.accordion label {
	display: block;
	background: url(../img/common/arrow-blue.png) no-repeat center right;
	padding: 0 20px 0 0;
	margin: 10px auto 5px;
	text-align: right!important;
	cursor: pointer;
}
.accordion input[type="checkbox"]{
	display: none;
}
.accordion .accordionIn {
	overflow: hidden;
	height: 0;
	width: 350px;
	margin: 0 auto;
	background: #EEE;
	text-decoration: none;
	text-align: left;
	-webkit-transition: height .5s ease-out;
	transition: height .5s ease-out;
}
.accordion .accordionIn p{
	margin: 5px;
}
.accordion input[type="checkbox"]:checked + .accordionIn{
	height: 180px;
}

/* solutions-box */
.solutions-box {
	width: 630px;
	margin-left: -60px;
	padding-top: 20px;
}
.solutions-box dl dt {
	margin-bottom: 10px;
}
.solutions-box dl dd {
	color: #FFF;
	margin-bottom: 20px;
	line-height: 2.2rem;
}

/* --------------------------------------------------
footer
-------------------------------------------------- */
footer{
	background: none!important;
	margin: 40px auto 0;
	color: #FFF;
	font-size: 1.2rem;
	text-align: center;
}