body {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
  background: url(../img/common/bg.png) repeat;
  color: #2E2E2E;
}
.l-loading {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: #362d21;
  color: #e7e4c6;
}
.l-loading span {
  position: absolute;
  top: 50%;
  height: 30px;
  margin: -15px 0 0 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  animation: animeLoading1 1.5s ease infinite;
}
@keyframes animeLoading1 {
  0% {
    width: 20px;
  }
  100% {
    width: 130px;
  }
}
.l-loading div {
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background: #e7e4c6;
  position: absolute;
  top: 80%;
  left: 20%;
  opacity: 1;
  animation: animeLoading2 10s ease infinite;
}
@keyframes animeLoading2 {
  0% {
    width: 1px;
    height: 1px;
    top: 80%;
    left: 20%;
    opacity: 1;
  }
  100% {
    width: 500px;
    height: 500px;
    top: 10%;
    left: 30%;
    opacity: 0;
  }
}
.l-main-nav {
  position: fixed;
  top: 0;
  display: flex;
  justify-content: space-around;
  z-index: 100;
  width: 100%;
  height: 40px;
  line-height: 40px;
  background-image: url(../img/common/topMenuBg.png);
  background-repeat: repeat-x;
  background-color: #362d21;
  color: #e7e4c6;
  transition: 0.4s ease-out;
  user-select: none;
}
.l-main-nav .menu-item {
  flex: 1;
  text-align: center;
  cursor: pointer;
  font-weight: bold;
  font-size: 1.1em;
  transition: 0.1s ease-out;
}
.l-main-nav .menu-item:hover {
  color: #e9e5b8;
  line-height: 35px;
}
.l-main-contents {
  height: 100%;
  min-height: 400px;
  position: relative;
}
