@charset "UTF-8";
html {
  overflow-y: scroll; }

body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td {
  margin: 0;
  padding: 0; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

fieldset, img {
  border: 0; }

img {
  vertical-align: bottom; }

address, caption, cite, code, dfn, em, strong, th, var {
  font-style: normal;
  font-weight: normal; }

li {
  list-style: none; }

caption, th {
  text-align: left; }

h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal; }

q:before, q:after {
  content: ''; }

abbr, acronym {
  border: 0;
  font-variant: normal; }

input, textarea, select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit; }

/*to enable resizing for IE*/
input, textarea, select {
  *font-size: 100%; }

/*because legend doesn't inherit in IE */
legend {
  color: #000; }

del, ins {
  text-decoration: none; }

/*------------------------------
main
-------------------------------*/
.main {
  background: #000;
  position: relative;
  width: 100%;
  height: 100vh; }
  .main .m-txt {
    position: absolute;
    width: 90%;
    left: 50%;
    top: 55%;
    transform: translateX(-50%) translateY(-50%);
    text-align: center;
    z-index: 5; }
    .main .m-txt .name {
      color: #fff; }
    .main .m-txt .m-en-01 img {
      width: 90%;
      height: auto;
      max-width: 263px; }
    .main .m-txt .m-en-02 {
      margin-top: 20px; }
      .main .m-txt .m-en-02 img {
        width: 80%;
        height: auto;
        max-width: 203px; }
    .main .m-txt .m-name {
      margin-top: 20px;
      font-size: 15px;
      color: #fff; }
    @media screen and (max-width: 768px) {
      .main .m-txt {
        top: 50%; } }

.main {
  box-sizing: border-box; }
  .main::before {
    border: 10px solid #fff;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 5; }
  .main .slide01 .s-img {
    width: 100%;
    height: 100vh;
    position: relative; }
    .main .slide01 .s-img.main01 {
      background: url("../images/login/main-bg.jpg") center center;
      background-size: cover; }
  @media screen and (max-width: 768px) {
    .main {
      height: 680px; }
      .main .slide01 .s-img {
        height: 580px; } }
  @media screen and (max-width: 500px) {
    .main {
      height: 550px; } }
  .main .txt .name {
    font-size: 28px;
    line-height: 100%;
    margin-bottom: 20px; }
    .main .txt .name span {
      display: block; }
    .main .txt .name .kana {
      font-family: "游明朝", "YuMincho", "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
      -webkit-font-smoothing: antialiased;
      font-feature-settings: "palt";
      font-weight: 300;
      transform: rotate(0.001deg);
      font-size: 16px; }
  .main .txt .ttl {
    font-size: 36px; }
  @media screen and (max-width: 600px) {
    .main .txt .name {
      font-size: 18px; }
    .main .txt .ttl {
      font-size: 26px; } }
  .main .txt .name {
    animation-name: fadetxt1;
    animation-duration: 1s; }
@keyframes fadetxt1 {
  0% {
    opacity: 0;
    transform: translate3d(0, -50%, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0); } }
  .main .txt .ttl {
    animation-name: fadetxt2;
    animation-duration: 1s; }
@keyframes fadetxt2 {
  0% {
    opacity: 0;
    transform: translate3d(0, 50%, 0); }
  100% {
    opacity: 1;
    transform: translate3d(0, 0px, 0); } }
    .main .txt .ttl .aw {
      white-space: nowrap; }

/* loginForm
---------------------------------------------------- */
.loginForm {
  margin-top: 45px;
  text-align: center;
  font-size: 1.3rem; }
  .loginForm #text-box-for-pw {
    line-height: 1;
    width: 100%;
    max-width: 500px;
    text-align: center;
    letter-spacing: 0.2em;
    background: #fff;
    margin: 0 auto;
    padding: 0.5em 0.5em;
    box-sizing: border-box;
    border: 1px solid #d8d8d8;
    border-radius: 5px; }
  .loginForm #text-box-for-pw:-ms-input-placeholder {
    line-height: 1;
    color: #c6c6c6;
    letter-spacing: 0;
    padding: 0.3em 0; }
  .loginForm #text-box-for-pw::-moz-placeholder {
    line-height: 1;
    color: #c6c6c6;
    letter-spacing: 0;
    padding: 0.3em 0; }
  .loginForm #text-box-for-pw::-webkit-input-placeholder {
    line-height: 1;
    color: #c6c6c6;
    letter-spacing: 0;
    padding: 0.3em 0; }
  .loginForm #submit-btn {
    position: relative;
    display: block;
    color: #fff;
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    margin: 2em auto 1.5em;
    padding: 0.6em 2.6em;
    border: 0;
    border-radius: 50px;
    -webkit-transition: background 0.4s;
    transition: background 0.4s; }
  .loginForm #submit-btn {
    background: #c86319; }
  .loginForm #submit-btn:hover {
    background: #e59356; }

.caution {
  display: block;
  color: #9c1616;
  font-size: 0.82em; }

@media screen and (max-width: 768px) {
  .loginForm {
    margin-top: 20px;
    font-size: 1.2rem; } }
@media screen and (max-width: 480px) {
  .loginForm {
    font-size: 1.1rem; } }
.btnBox {
  max-width: 500px;
  margin: auto;
  width: 80%; }
  .btnBox table {
    width: 100%; }
    .btnBox table th {
      font-size: 15px;
      vertical-align: middle;
      font-weight: bold;
      color: #fff;
      padding-right: 10px; }
  .btnBox .submitBox ul {
    font-size: 0; }
    .btnBox .submitBox ul li {
      display: inline-block;
      width: 48%;
      vertical-align: top;
      margin-top: 40px; }
      .btnBox .submitBox ul li:nth-child(2) {
        margin-left: 4%; }
      .btnBox .submitBox ul li a {
        display: block;
        background: #004898;
        height: 50px;
        position: relative;
        box-sizing: border-box;
        border-radius: 5px;
        border: 1px solid #27363e;
        text-decoration: none; }
        .btnBox .submitBox ul li a .txt {
          position: absolute;
          top: 50%;
          left: 50%;
          white-space: nowrap;
          font-size: 15px;
          font-weight: bold;
          color: #fff;
          transform: translateX(-50%) translateY(-50%); }
        .btnBox .submitBox ul li a:hover {
          opacity: 0.8; }
