﻿html,body {
    margin: 0;
    padding: 0;
}

input, a, button {
    outline:none;
    cursor: pointer;
    font-family: inherit;
}

body{
    font-family: 'メイリオ',Meiryo,'ＭＳ Ｐゴシック',sans-serif !important;
    font-size: 80%;
    line-height: 1.7;
    color: #222;
    background: url(Images/bg.png);
    text-align: center;
}

input, textarea, p, div, ol, ul, li, span {
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    /*cursor: pointer;*/
}

.title_div{
    margin: 0 auto;
    width :100%;
}

.title_div h4{
    margin: 0 0 10px;
    padding: 10px 0;
    background: #3a86b2;
    color: White;
    font-size: 16px;
    line-height: 2;
}

.title_div p{
    margin: 25px 27px 20px;
    font-size: 14px;
    text-align: left;
}

p.note{
    margin: 8px 27px 13px;
    font-size: 12px;
    line-height: 1.5;
    text-align: left;
}

.content {
    width: 490px;
    margin: 0 auto;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 0 6px rgba(0,0,0,.2);
    overflow: hidden;
}

.login_div{
    margin: 0 30px;
    padding: 18px 20px;
    background: #f4f6f8;
    border-radius: 4px;
    border: 1px solid #eee;
}

table{
    width: 100%;
    text-align: left;
}

table th,
table td{
    padding: 3px 0;
    font-weight: normal;
}

table th{
    padding-top: 12px;
    font-size: 12px;
    vertical-align: top;
}
input[type="text"],
input[type="password"] {
    width: 100%;
    height: 38px;
     margin: 1px 0 5px 0;
     padding: 4px 10px;
    background: #fff;
    line-height: 30px;
    border: 1px solid #c8c8c8;
    border-radius: 3px;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    box-shadow: inset 1px 1px 1px rgba(0,0,0,.08), 1px 1px 0 #fff;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    -webkit-transition: border-color ease-in-out 0.15s, background ease-in-out 0.15s;
    transition: border-color ease-in-out 0.15s, background ease-in-out 0.15s;
    font-size: 15px;
    letter-spacing: .1em;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

input[type="text"]:hover,
input[type="password"]:hover {
    border-color: #009ee2;
    box-shadow: 0 0 0 3px #d9f3fc;
}

.pw th{
    width: 100px;
    padding-top: 13px;
    padding-right: 10px;
    vertical-align: top;
}

.copyright{
    color: #9b9b9b;
    font-size: 12px;
    font-weight: normal;
}

.back_login {
    color: #076dd3;
}

.submit_div{
    margin: 20px 30px 30px;
}

.submit-1{
    position: relative;
    width: 50%;
    margin: 0 auto 15px;
    padding: 0 10px;
    font-size: 14px;
    line-height: 31px;
    height: 38px;
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    white-space: nowrap;
    background: #3dbbe5;
    background: -moz-linear-gradient(top, #3dbbe5 0%, #25a6d1 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#3dbbe5), color-stop(100%,#25a6d1));
    background: -webkit-linear-gradient(top, #3dbbe5 0%,#25a6d1 100%);
    background: -o-linear-gradient(top, #3dbbe5 0%,#25a6d1 100%);
    background: -ms-linear-gradient(top, #3dbbe5 0%,#25a6d1 100%);
    background: linear-gradient(to bottom, #3dbbe5 0%,#25a6d1 100%);
    box-shadow: none;
    border-color: #27a4cf #27a4cf #1e99c3;
    color: #fff!important;
    border: 1px solid #25a6d1;
    font-weight: bold;
}

.submit-1:hover {
    opacity: .8;
}


/* Styles for validation helpers
-----------------------------------------------------------*/
.field-validation-error{
    color: #ff0000;
    display: inline-block;
    line-height: 1.3;
    background: url(images/error.png) no-repeat 0 3px;
    padding: 3px 20px;
}

.field-validation-valid{
    display: none;
}

.input-validation-error{
    border: 1px solid #ff0000;
    background-color: #ffeeee;
}

.validation-summary-errors{
    font-weight: bold;
    color: #ff0000;
}

.validation-summary-valid{
    display: none;
}

.validation-summary-errors ul li {
    display: inline-block;
    list-style: none;
    background: url(Images/error.png) no-repeat left 1px;
    margin-top: 2px;
    padding-left: 17px;
    font-size: 12px;
    color: Red;
}

.password_expire_box {
    position: absolute;
    top: 10%;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 600px;
    margin: 0px auto 0;
    padding: 30px;
    text-align: center;
    font-weight: bold;
    font-size: 14px;
}

@media screen and (max-width:600px) { 
    .password_expire_box {
        width: 90%;
        max-width: 600px;
    }
}

.password_expire_mes {
    position: relative;
    width: 100%;
    height: 100%;
    padding: 30px;
    background: #fff;
    border-radius: 5px;
    box-shadow: 0 2px 16px rgba(0,0,0,.1);
}

.password_expire_mes .logo {
    display: block;
    margin: 10px auto;
    text-align: center;
}

.password_expire_mes > form > p {
    margin: 0;
    padding: 8px;
    font-size: 16px;
}

.password_expire_mes button,
.password_expire_mes a
{
    display: inline-block;
    min-width: 20em;
    margin: 10px auto;
    background: #fff;
    background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#f2f2f2));
    background: -webkit-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
    background: -o-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
    background: -ms-linear-gradient(top, #ffffff 0%,#f2f2f2 100%);
    background: linear-gradient(to bottom, #ffffff 0%,#f2f2f2 100%);
    border: 1px solid #c3c3c3;
    color: #555;
    position: relative;
    padding: 3px 10px;
    line-height: 31px;
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    font-weight: bold;
    font-size: 13px;
    text-decoration: none;
}

.password_expire_mes button:hover,
.password_expire_mes a:hover {
    box-shadow: 0 0 4px rgba(0,0,0,.15);
    border: 1px solid #aaa;
}

.password_expire_mes strong {
    color: #ee1701;
    font-size: 18px;
}

.layout2 .logintitle {
    margin: 26px auto 20px;
    width: 43%;
}

.logintitle img {
    width: 100%;
    height: auto;
}
@media screen and (max-width:480px) { 
    .customer_logo {
      top: 15px;
      right: 20px;
      width:80px;
  }
    .layout2 .logintitle {
      margin: 5px auto 10px;
  }
}

.customer_logo {
    width: 98px;
    position: absolute;
    top: 15px;
    right: 20px;
}
