@charset "utf-8";
/*
	Description: initial setting
	Version: 1.0
	Author: idealgrow
*/
/*
===== CONTENTS ===========================================

	1: BASE LAYOUT

==========================================================
*/
#login {
  width: 100%;
  height: 100vh;
  position: relative;
}
#loginBox {
  padding: 20px;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}
#loginBox img {
  height: 60px;
  margin: 0 auto 20px auto;
}
#loginBox li {
  margin-bottom: 20px;
}
#loginBox li:last-of-type {
  padding: 0 20px;
}
#loginBox p {
  text-align: center;
}
#loginBox h2 {
  font-weight: bold;
  font-size: 20px;
  text-align: center;
  margin-bottom: 10px;
}
#loginBox h2 span {
  border-top: solid 1px #ccc;
  border-bottom: solid 1px #ccc;
  padding: 5px 20px;
  display: inline-block;
}
#loginBox h2 + p {
  margin-bottom: 20px;
}
header {
  border-bottom: solid 1px #f0f0f0;
}
header h1 {
  padding: 10px 0;
}
header h1 img {
  height: 40px;
  margin: 0 auto;
}
header ul {
  border-top: solid 1px #f0f0f0;
  display: flex;
}
header ul li {
  width: 40%;
  text-align: center;
  font-size: 14px;
  border-right: solid 1px #f0f0f0;
}
header ul li:last-of-type {
  width: 20%;
  border-right: none;
}
header ul li a {
  display: block;
  text-decoration: none;
  color: #bcbcbb !important;
  padding: 10px 0 5px 0;
}
header ul li:last-of-type a {
  background: #efefef;
}
header ul li a.stay {
  color: #103365 !important;
}
header ul li .material-symbols-outlined {
  display: block;
  font-size: 26px;
}
main {
  padding: 20px 20px 40px 20px;
  position: relative;
}
aside {
  background: #f8f8f8;
  padding: 40px 20px;
}
@media screen and (min-width: 600px) {
  #loginBox {
    width: 500px;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #loginBox li:last-of-type {
    padding: 0 60px;
  }
  #loginBox li {
    margin-bottom: 30px;
  }
  header {
    position: relative;
  }
  header h1 {
    padding: 30px 0 15px 30px;
  }
  header h1 img {
    height: 62px;
    margin: 0;
  }
  header ul {
    position: absolute;
    right: 0;
    top: 0;
    border-top: none;
    height: 107px;
  }
  header ul li {
    width: 140px;
    font-size: 16px;
    border-right: none;
    border-left: solid 1px #f0f0f0;
  }
  header ul li:last-of-type {
    width: 104px;
    border-right: none;
  }
  header ul li a {
    display: block;
    text-decoration: none;
    color: #999999 !important;
    padding: 24px 0 16px 0;
  }
  header ul li a:hover {
    background: #f0f6ff;
    color: #103365 !important;
  }
  header ul li .material-symbols-outlined {
    margin-bottom: 5px;
    font-size: 34px;
  }
  main {
    padding: 50px 70px 70px 70px;
    max-width: 1300px;
    margin: 0 auto;
  }
  #asideIn {
    padding: 70px;
    max-width: 1300px;
    margin: 0 auto;
  }
  aside {
    padding: 0;
  }
}