@import url(login.css);

/*
 * GLOBAL
 * ========================================================================= */
body {
  color: #3c3c3c;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, sans-serif;
  background: #fff;
}

a {
  color: #1d1c1c;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #882b2c;
}

.inner {
  margin-left: auto;
  margin-right: auto;
  padding: 0 1.875rem;
  max-width: 78.75rem;
}

.grid {
  display: grid;
}

.mc {
  margin: 0 auto;
}

.tc {
  text-align: center;
}

.grid-tc-1-1 {
  grid-template-columns: 1fr 1fr;
}

.opacity {
  opacity: 1 !important;
}

.show {
  display: block !important;
}

.flex {
  display: flex !important;
}


/*
 * HEADER
 * ========================================================================= */
#header {
  background: #fff;
}

#header .inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  justify-content: space-between;
  height: 3.125rem;
}

@media screen and (max-width: 768px) {
  #header .inner {
    width: 100%;
  }
}

#header .logo {
  font-size: 1.25rem;
}

#header .inner .lt {
  display: flex;
  align-items: center;
}

#header .logo a {
  display: block;
  height: 3.125rem;
  width: 7.75rem;
  color: #3c3c3c;
  background: url(../../../../statics/css/img/login/logo.png) 0 center no-repeat;
  background-size: auto 2.375rem;
  text-indent: -999px;
}

#header .logo a:hover {
  color: #882b2c;
  opacity: 0.7;
}

#header .logo-sub {
  position: relative;
  padding: 0 0 0 24px;
  font-size: 0.75rem;
  color: #888;
}

#header .logo-sub:before {
  content: '';
  position: absolute;
  left: 6px;
  height: 20px;
  width: 1px;
  background: #888;
}

@media screen and (max-width: 768px) {
  #header .logo-sub {
    display: none;
  }
}

#header .menu {
  display: flex;
  justify-content: right;
  gap: 1em;
  font-size: 0.875rem;
}

@media screen and (max-width: 768px) {
  #header .menu {
    display: none;
    position: absolute;
    left: 0;
    top: 3.125rem;
    width: 100%;
    background: #fff;
    text-align: center;
    box-shadow: 0 1px 1px rgb(0 0 0 / 10%);
  }

  #header .menu a {
    flex: 1;
    padding: 1em;
  }
}

.hamburger-menu {
  display: none;
  flex-flow: column wrap;
  justify-content: space-around;
  height: 24px;
  width: 23px;
  cursor: pointer;
  margin-left: auto;
}

.hamburger-menu .bar {
  height: 2px;
  background: #3c3c3c;
  border-radius: 2px;
  transform-origin: left;
  transition: all 0.5s;
}

.hamburger-menu .top {
  transform: rotate(45deg);
}

.hamburger-menu .middle {
  opacity: 0;
}

.hamburger-menu .bottom {
  transform: rotate(-45deg);
}


/* FOOTER */
#footer {
  padding: 20px 0 10px 0;
  background: #fff;
  font-size: 14px;
}

#footer a {
  color: #3c3c3c;
}

#footer a:hover {
  color: #882b2c;
}

#footer ul li {
  display: inline-block;
  margin: 0 0 0 10px;
}

#footer ul li.sp {
  width: 1px;
  height: 16px;
  margin: 0 0 -3px 10px;
  background: #1c1c1c;
}

#footer p span {
  margin: 0 5px;
}

/* media */
@media (max-width: 768px) {
  #header .menu li {
    margin: 0;
    display: block;
  }

  #header .menu li.sp {
    display: none;
  }

  #header .menu li a {
    display: block;
  }

  #header .menu li a:hover {
    background: #882b2c;
    color: #fff;
  }

  #header .inner {
    align-items: center;
  }

  .hamburger-menu {
    display: flex;
  }

  .login {
    height: 600px;
  }

  .login .inner {
    grid-template-columns: 1fr;
    grid-template-rows: 600px;
    width: 100%;
  }

  .login-lt {
    display: none;
  }
}
