﻿/* ------------------------------------------------------ */
/* DSR-H                                                  */
/* 業務システム                                           */
/*  CSS : ログイン(dsrhlogin)                             */
/* ------------------------------------------------------ */
@charset "UTF-8";
/* ----------------------------------------------------------------------------------------------------------
  Header
------------------------------------------------------------------------------------------------------------*/
header #pnlHeader {
  width: 100%;
  height: 39px;
  background-color: #F8F8FF;
  border-bottom: 1px solid #DCDCDC;
  padding-left:30px;
  margin-bottom:3px;
}
  header #pnlHeader .title {
    display: block;
    font-size: 1.5rem;
    color: #778899;
    font-weight: bold;
    line-height: 40px;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
  }
/* スマホ タブレット */
@media screen and (max-width: 780px) {
  header #pnlHeader {
    height: 40px;
    background-color: #244062;
    border-bottom: 1px solid #244062;
  }
    header #pnlHeader .title {
      margin-top: 4px;
      font-size: 1.2rem;
      color: #FFFFFF;
    }
}
/* -----------------------------------------------------------------------------
  ログイン発火用ボタンは非表示
------------------------------------------------------------------------------- */
input[type=submit]#btnGoLogin {
  display: block;
  margin: 0;
  visibility: hidden;
}
/* ----------------------------------------------------------------------------------------------------------
  Clock
------------------------------------------------------------------------------------------------------------*/
section#contents .clock {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: 230px;
  height:auto;
  min-height: 30px;
  margin: 0 auto;
}
  /* Time And Date */
  section#contents .clock span {
    display: flex;
    justify-content: center;
  }
  /* Time */
  section#contents .clock .time {
    font-size: 32px;
    color: #808080;
    margin: 0 10px;
  }
  /* Date */
  section#contents .clock .date {
    font-size: 14px;
    color: #808080;
    margin: 0 10px;
  }
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
  /* Time */
  section#contents .clock .time {
    font-size: 2rem;
  }
  /* Date */
  section#contents .clock .date {
    font-size: 1rem;
  }
}
/* ----------------------------------------------------------------------------------------------------------
  Entrance
------------------------------------------------------------------------------------------------------------*/
#contents #pnlEntrance {
  width: auto;
  height: auto;
  font-size:1rem;
  position:relative;
}
  /* Login Entrance */
  #contents #pnlEntrance .entrance {
    width: 380px;
    height: auto;
    margin: 20px auto 5px auto;
    padding-top: 50px;
    padding-bottom: 20px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px; /* for Firefox */
    background-image: url(../image/img_key.png);
    background-repeat: no-repeat;
    background-size: 30px auto;
    background-position: 50% 15px;
    border: 1px solid #CCCCCC;
    box-shadow: 0px 0px 6px #ACACAC;
    -moz-box-shadow: 0px 0px 6px #ACACAC;
    -webkit-box-shadow: 0px 0px 6px #ACACAC;
    font-size: 1em;
    position: relative;
  }
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
  #contents #pnlEntrance .entrance {
    margin: 20px auto;
    border: 0;
    box-shadow: 0px 0px 0px;
    -moz-box-shadow: 0px 0px 0px;
    -webkit-box-shadow: 0px 0px 0px;
  }
}
/* ----------------------------------------------------------------------------------------------------------
  Login Warning
------------------------------------------------------------------------------------------------------------*/
#contents #pnlWarning {
  position: fixed;
  width: 360px;
  top: 120px;
  right: 10px;
  padding: 16px 20px 16px 30px;
  background-color: #FFFFFF;
  border: 1px solid #CC3300;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px; /* for Firefox */
  box-shadow: 0px 0px 3px #FF0000;
  -moz-box-shadow: 0px 0px 3px #FF0000;
  -webkit-box-shadow: 0px 0px 3px #FF0000;
  animation: login-Alert 0.5s;
  -webkit-animation: login-Alert 0.5s;
  -moz-animation: login-Alert 0.5s;
  background-image: url(../image/img-apored.png);
  background-repeat: no-repeat;
  background-position: 8px 18px;
  z-index: 2000;
}
  /* 閉じる */
  #contents #pnlWarning .off {
    position: absolute;
    top: 3px;
    right: 5px;
    width: 20px;
    height: 20px;
    border: 1px solid #AAAAAA; /* 枠の調整 */
    border-radius: 50%; /* 丸みの度合い */
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%; /* for Firefox */
    background: #FFFFFF; /* ボタンの背景色 */
    cursor: pointer;
    transition: .3s;
    -webkit-transition: .3s;
    -moz-transition: .3s;
  }

    #contents #pnlWarning .off::before,
    #contents #pnlWarning .off::after {
      content: "";
      position: absolute;
      top: 50%;
      left: 50%;
      width: 2px; /* 棒の幅（太さ） */
      height: 16px; /* 棒の高さ */
      background: #AAAAAA; /* バツ印の色 */
    }

    #contents #pnlWarning .off::before {
      transform: translate(-50%,-50%) rotate(45deg);
      -webkit-transform: translate(-50%,-50%) rotate(45deg);
      -moz-transform: translate(-50%,-50%) rotate(45deg);
    }

    #contents #pnlWarning .off::after {
      transform: translate(-50%,-50%) rotate(-45deg);
      -webkit-transform: translate(-50%,-50%) rotate(-45deg);
      -moz-transform: translate(-50%,-50%) rotate(-45deg);
    }
    /* マウスオーバー */
    #contents #pnlWarning .off:hover {
      border: 1px solid #888888; /* 枠の調整 */
      background: #AAAAAA; /* バツ印の色 */
    }
      #contents #pnlWarning .off:hover::before,
      #contents #pnlWarning .off:hover::after {
        content: "";
        position: absolute;
        top: 50%;
        left: 50%;
        width: 2px; /* 棒の幅（太さ） */
        height: 16px; /* 棒の高さ */
        background: #FFFFFF; /* バツ印の色 */
      }
  /* warning */
  #contents #pnlWarning #lblWarning {
    display: block;
    width: auto;
    font-size: 14px;
    color: #CC3300;
  }
/* Warning - Smart Size */
@media screen and (max-width: 380px) {
  #contents #pnlWarning {
    width: 270px !important ; /* Padding含めて320px */
  }
}
/* ----------------------------------------------------------------------------------------------------------
  Login Title
------------------------------------------------------------------------------------------------------------*/
#contents #pnlEntrance .entrance .title {
  width: auto;
  margin: 0 0 10px 0;
  padding: 5px;
  text-align: center;
  font-size: 1em;
}

  #contents #pnlEntrance .entrance .title span {
    display: block;
    font-size: 1.5em;
    color: #2C3136;
    font-weight: bold;
    padding: 10px 5px;
  }
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
  #contents #pnlEntrance .entrance .title span {
    font-size: 1.2em;
  }
}
/* ----------------------------------------------------------------------------------------------------------
  Login Box
------------------------------------------------------------------------------------------------------------*/
#contents #pnlEntrance .entrance .loginBox {
  width: 350px;
  margin: 0 auto;
  padding: 10px 5px;
  font-size: 1em;
  position: relative;
}
  /* ラベル */
  #contents #pnlEntrance .entrance .loginBox span {
    display: block;
    height: 28px;
    font-size: 16px;
    color: #888888;
  }

  #contents #pnlEntrance .entrance .loginBox #pnlUserName,
  #contents #pnlEntrance .entrance .loginBox #pnlPassword {
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    margin-bottom: 10px;
    padding-left: 1px;
  }
    /* 認証 */
    #contents #pnlEntrance .entrance .loginBox #pnlUserName input#txtUserName,
    #contents #pnlEntrance .entrance .loginBox #pnlPassword input#txtPassword {
      width: 340px;
      height: 30px;
      font-size: 14px;
    }
      /* ログイン名 */
      #contents #pnlEntrance .entrance .loginBox #pnlUserName input#txtUserName .err {
        background-color: #FFD5EC;
      }
      /* パスワード */
      #contents #pnlEntrance .entrance .loginBox #pnlPassword input#txtPassword .err {
        background-color: #FFD5EC;
      }
/* Login Button */
#contents #pnlEntrance .entrance #pnlButton {
  width: 350px;
  margin: 10px auto;
}
  /* Login Button */
  #contents #pnlEntrance .entrance #pnlButton a.btnLogin {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 50px;
    position: relative;
    background: #336699;
    border: 1px solid #228BC8;
    box-sizing: border-box;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    color: #FFFFFF;
    font-size: 16px;
    letter-spacing: 0.1em;
    line-height: 1.3;
    text-align: left;
    transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    cursor: pointer;
  }

    #contents #pnlEntrance .entrance #pnlButton a.btnLogin::before {
      position: absolute;
      content: '';
      top: 18px;
      left: 30px;
      width: 8px;
      height: 8px;
      border: 0;
      border-top: 3px solid #FFFFFF;
      border-right: 3px solid #FFFFFF;
      transform: rotate(45deg);
      -webkit-transform: rotate(45deg);
      -moz-transform: rotate(45deg);
    }

    #contents #pnlEntrance .entrance #pnlButton a.btnLogin:hover {
      background: #FFFFFF;
      color: #228BC8;
    }

      #contents #pnlEntrance .entrance #pnlButton a.btnLogin:hover::before {
        left: 40px;
        border-top: 3px solid #228BC8;
        border-right: 3px solid #228BC8;
        transition: .3s;
        -webkit-transition: .3s;
        -moz-transition: .3s;
      }
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
}
/* ----------------------------------------------------------------------------------------------------------
  Maker Only Login Message
------------------------------------------------------------------------------------------------------------*/
#contents #pnlEntrance #pnlMakerAssist {
  width: auto;
  text-align: center;
  font-size: 1rem;
  margin-top: 4px;
  margin-bottom: 4px;
  color: #515B6B;
  position: relative;
}
  /* Maker Entrance Assist*/
  #contents #pnlEntrance #pnlMakerAssist .maker-entrance {
    width: 360px;
    height: auto;
    background-color: #FFFFFF;
    margin: 0 auto;
    padding: 10px;
    border-radius: 4px;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px; /* for Firefox */
    border: 2px solid #1E90FF;
    box-shadow: 0px 0px 6px #ACACAC;
    -moz-box-shadow: 0px 0px 6px #ACACAC;
    -webkit-box-shadow: 0px 0px 6px #ACACAC;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
  }
    /* Maker Entrance Assist Message */
    #contents #pnlEntrance #pnlMakerAssist .maker-entrance span {
      font-size: 0.85em;
      color: #9C9C9C;
    }
    /* Go Maker Entrance */
    #contents #pnlEntrance #pnlMakerAssist .maker-entrance a.maker-login {
      display: flex;
      justify-content: center;
      align-items: center;
      width: 100%;
      height: 40px;
      position: relative;
      background: #228BC8;
      border-radius: 8px;
      -webkit-border-radius: 8px;
      -moz-border-radius: 8px; /* for Firefox */
      border: 2px solid #007CD0;
      box-sizing: border-box;
      -webkit-box-sizing: border-box;
      -moz-box-sizing: border-box;
      color: #FFFFFF;
      font-size: 16px;
      letter-spacing: 0.1em;
      line-height: 1.3;
      text-align: left;
      transition-duration: 0.3s;
      -webkit-transition-duration: 0.3s;
      cursor: pointer;
    }
      /* Go Maker Entrance */
      #contents #pnlEntrance #pnlMakerAssist .maker-entrance a.maker-login:hover {
        background: #FFFFFF;
        color: #228BC8;
      }
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
  /* Maker Entrance Assist Message */
  #contents #pnlEntrance #pnlMakerAssist .maker-entrance span {
    font-size: 0.8em;
  }
}
/* ----------------------------------------------------------------------------------------------------------
  Inquiry
------------------------------------------------------------------------------------------------------------*/
#contents #pnlEntrance #pnlRemarks {
  width: auto;
  text-align: center;
  font-size: 0.85em;
  color: #515B6B;
}
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
  #contents #pnlEntrance #pnlRemarks {
    font-size: 0.8rem;
  }
}
/* ----------------------------------------------------------------------------------------------------------
  Notice
------------------------------------------------------------------------------------------------------------*/
#contents #pnlEntrance #pnlTopNotice {
  width: 800px;
  margin: 10px auto;
  padding: 5px;
  background-color: #FFFFFF;
  border: 1px dotted #DCDCDC;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px; /* for Firefox */
  text-align: left;
  font-size: 1em;
  color: #666666;
}
  #contents #pnlEntrance #pnlTopNotice span p {
    line-height: 1em;
  }
    #contents #pnlEntrance #pnlTopNotice span p.nsubject {
      font-size: 0.9em;
      font-weight: bold;
    }
    #contents #pnlEntrance #pnlTopNotice span p.notice {
      padding-left: 10px;
      font-size: 0.9em;
      line-height: 1.12em;
    }
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
  #contents #pnlEntrance #pnlTopNotice {
    width: auto;
    margin: 10px 5px;
  }
}
/* ----------------------------------------------------------------------------------------------------------
  JavaScript Disabled Message
------------------------------------------------------------------------------------------------------------*/
#noscript {
  width: auto;
  text-align: center;
  font-size: 1rem;
}
  /* JavaScript Disabled Message */
  #noscript .noscript-msg {
    font-size: 0.9em;
  }
/* Tablet SmartPhone */
@media screen and (max-width: 800px) {
  #noscript {
    font-size: 0.8rem;
  }
}
/* ----------------------------------------------------------------------------------------------------------
  Animation
------------------------------------------------------------------------------------------------------------*/
  /* 境界線点滅 */
  @-webkit-keyframes login-Alert {
    0% {
      right: -300px;
    }

    90% {
      right: 30px;
    }

    100% {
      right: 10px;
    }
  }

  @keyframes login-Alert {
    0% {
      right: -300px;
    }

    90% {
      right: 30px;
    }

    100% {
      right: 10px;
    }
  }

  @-moz-keyframes login-Alert {
    0% {
      right: -300px;
    }

    90% {
      right: 30px;
    }

    100% {
      right: 10px;
    }
  }
