#bottomInfo {
  margin-top: 0;
  width: 100%;
  box-sizing: border-box;
}

#bottomInfo .bottom-list {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4vw 16vw 2vw;
  background: #000000;
  color: #FFFFFF;
}

.bottomTitle {
  display: flex;
  align-items: center;
  margin-bottom: 1vw;
  font-size: 1.4vw;
  font-weight: 700;
  text-align: center;
  img{
    width: 3vw;
    margin-right: 1vw;
  }
}



#bottomInfo .listBox {
  display: flex;
  align-items: flex-start;
  width: 40vw;
  .list {
    margin-right: 3vw;
    width: 50%;
    div {
      margin-bottom: 1vw;
      font-size: 0.8vw;
      color: #FFFFFF;
    }

    div:nth-child(1) {
      font-size: 1vw;
      color: #FFFFFF;
    }
  }
}


#bottomInfo .foot-bottom {
  padding: 0.8vw 0;
  background: #000000;
  font-family: Helvetica;
  font-size: 0.8vw;
  border-top: 1px solid #999;
  color: #FFFFFF;
  text-align: center;

}

* {
  padding: 0;
  margin: 0;
}

section {
  margin-top: 8vw;
  width: 100%;
}


nav .logo {
  display: flex;
  align-items: center;
  justify-content: center;
  span{
    font-size: 1.2vw;
  }
}

nav img {
  margin-right: 1vw;
  width: 2vw;
  height: 2vw;
  vertical-align: middle;
}

nav ul {
  list-style-type: none;
}


nav li {
  float: left;
  margin-right: 2vw;
  opacity: 1;
  display: block;
  text-align: center;
  height: 2vw;
  margin-top: 1vw;
  line-height: 2vw;
  cursor: pointer;
  box-sizing: border-box;
}

nav li:last-child {
  margin-right: 0;
}

nav li a {
  text-decoration: none;
  display: block;
  color: #fff;
  width: 100%;
  height: 100%;
}

nav li a:hover {}

nav .active {
  font-weight: 700;
  color: #101010 !important;
  background: #CDF348;
  padding: .1vw .2vw;
  border-radius: 1vw;
}


html {
  width: 100%;
}

body {
  width: 100%;
  background-color: #fff;
  font-size: 1vw;
  box-sizing: border-box;
}

header {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8vw;
  width: 100%;
  padding: 1vw 16vw;
  box-sizing: border-box;
  position: fixed;
  top: 0;
  z-index: 99;
  background: #101010;
  color: #FFFFFF;
  overflow: hidden;
}