@charset "utf-8";
.wrap {
    max-width: 700px;
    margin: auto;
}
.wrap header {
    aspect-ratio: 75/64;
    background: var(--point-color);
}
.wrap header .logo {flex-direction: column;align-items: center;justify-content: center;display: flex;height: 100%;}
.wrap header .logo img {
    max-width: 150px;
}
.wrap section.login {
    padding: 40px;
    text-align: center;
    line-height: 1.4;
}
.wrap section.login > .tit {
    font-size: 16px;
    color: var(--point-color);
}
.wrap section.login > .tit strong {
    font-size: 20px;
    display: block;
    margin-bottom: 5px;
}
.wrap section.login form {}
.wrap section.login ul {
    margin-top: 30px;
}
.wrap section.login ul li {
    margin-top: 16px;
}
.wrap section.login ul li input {
    width: 100%;
    background: #f2f2f2;
    border: 0;
    border-radius: 5px;
    line-height: 48px;
    padding: 0 20px;
    font-size: 14px;
}
.wrap section.login ul li input.fill {
	background-color:#000;
	color:#fff;
}
.wrap section.login ul li input::placeholder {
	color: #aaaaaa;
}
.wrap section.login ul li button {
    display: block;
    color: #fff;
    background: var(--point-color);
    width: 100%;
    line-height: 48px;
    border-radius: 5px;
}
.wrap section.login .agree-link {
    font-size: 14px;
    margin: 40px 0;
    border-bottom: 1px solid #e8e8e8;
    display: inline-block;
}
.wrap section.login .agree-win {
    text-align: left;
    max-width: 288px;
    max-height: 227px;
    width: 100%;
    border-radius: 5px;
    padding: 24px 16px;
    font-family: 'Spoqa Han Sans Neo';
    position: fixed;
    transform: translate(-50%,-50%);
    top: 50%;
    left: 50%;
    z-index: 3;
    visibility: hidden;
    background: #fff;
	-moz-transition: all .5s ease-out;-webkit-transition: all .5s ease-out;-o-transition: all .5s ease-out;transition: all .5s ease-out;
	opacity: 0;
}
.wrap section.login .agree-win .tit {
    font-size: 14px;
}
.wrap section.login .agree-win .text-box {
    font-size: 12px;
    color: #797979;
    height: 60px;
    overflow-y: scroll;
    padding: 10px;
    border: 1px solid #e5e5e5;
    margin: 8px 0;
}
.wrap section.login .agree-win .checkbox {
    font-size: 14px;
    color: #333333;
}
.wrap section.login .agree-win .checkbox label {
    display: block;
}
.wrap section.login .agree-win .checkbox input {
    display: none;
}
.wrap section.login .agree-win .checkbox input + i {
    font-size: 20px;
    vertical-align: bottom;
    margin-right: -5px;
}
.wrap section.login .agree-win .checkbox input:checked + i:before {content: "\ea43";}
.wrap section.login .agree-win button {
    line-height: 38px;
    font-size: 15px;
    text-align: center;
    background: var(--point-color);
    width: 100%;
    color: #fff;
    border-radius: 5px;
    margin-top: 11px;
}
.wrap footer {
    text-align: center;
    position: relative;
}
.wrap footer .tit {}
.wrap footer .tit span {
    color: #aaaaaa;
    font-size: 14px;
    display: inline-block;
    background: #fff;
    z-index: 1;
    position: relative;
    padding: 0 10px;
}
.wrap footer .tit:before {
	content:'';
	display: block;
	background: #e8e8e8;
	height: 1px;
	width: 100%;
	top: 8px;
	position: absolute;
}
.wrap footer address {
    margin-top: 15px;
    padding-bottom: 20px;
}
.wrap footer address dl {
    font-size: 14px;
    font-style: normal;
    display: flex;
    justify-content: center;
}
.wrap footer address dt {
    color: var(--point-color);
    margin: 0 5px;
}
.wrap footer address dd {}
.wrap footer address dd a {color: #eee; text-decoration: none;}
.popup-back {
    background: #000;
    opacity: 0;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    z-index: 2;
    visibility: hidden;
	-moz-transition: all .5s ease-out;-webkit-transition: all .5s ease-out;-o-transition: all .5s ease-out;transition: all .5s ease-out;
}