/* header */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  transition: all 0.4s;
}

header section {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

header .line {
  width: 100%;
  height: 4px;
  background: #0e7deb;
}

header .logo {
  padding: 15px 20px 20px;
}

@media screen and (max-width: 1000px) {
  header .logo {
    width: 225px;
  }
}

@media screen and (max-width: 768px) {
  header .logo {
    padding: 10px 20px;
  }
}

@media screen and (max-width: 414px) {
  header .logo {
    width: 160px;
  }
}

/* gNav */
@media screen and (max-width: 768px) {
  .gNav {
    position: absolute;
    top: 0;
    right: -70%;
    width: 70%;
    height: 130vh;
    background: #0e7deb;
    transition: all 0.5s;
  }
}

.gNav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  height: 100%;
}

@media screen and (max-width: 768px) {
  .gNav ul {
    display: block;
    margin-top: 100px;
  }
}

@media screen and (max-width: 768px) {
  .gNav ul:last-child {
    border-bottom: 1px solid #fff;
  }
}

.gNav li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 20px;
  color: #000;
}

@media screen and (max-width: 1000px) {
  .gNav li {
    padding-left: 10px;
  }
}

@media screen and (max-width: 768px) {
  .gNav li {
    padding: 10px 4%;
    border-top: 1px solid #fff;
  }
}

.gNav li:nth-child(even) {
  padding-bottom: 4px;
}

@media screen and (max-width: 768px) {
  .gNav li:nth-child(even) {
    display: none;
  }
}

.gNav a {
  position: relative;
  padding: 2px 2px 8px;
  color: #000;
  font-weight: 500;
  transition: all 0.4s;
}

@media screen and (max-width: 1000px) {
  .gNav a {
    font-size: 1.6rem;
  }
}

@media screen and (max-width: 768px) {
  .gNav a {
    color: #fff;
  }
}

.gNav a:hover::before {
  width: 100%;
}

.gNav a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: "";
  display: block;
  background: #0e7deb;
  width: 0;
  height: 3px;
  transition: all 0.4s;
}

@media screen and (max-width: 768px) {
  .gNav a::before {
    display: none;
  }
}

/* gNav active */
@media screen and (max-width: 768px) {
  .gNav.active {
    right: 0;
  }
}

/* header isScroll */
header.isScroll {
  background: rgba(255, 255, 255, 0.95);
}

@media screen and (max-width: 768px) {
  header.isScroll .gNav a {
    color: #fff;
  }
}

/* spMenuBtn */
.spMenuBtn {
  display: none;
}

@media screen and (max-width: 768px) {
  .spMenuBtn {
    display: block;
    width: 60px;
    padding-top: 20px;
    cursor: pointer;
  }
}

@media screen and (max-width: 414px) {
  .spMenuBtn {
    width: 45px;
    padding-top: 13px;
  }
}

@media screen and (max-width: 768px) {
  .spMenuBtn div {
    position: relative;
    width: 100%;
    height: 100%;
  }
}

.spMenuBtn span {
  position: absolute;
  left: 0;
  z-index: 999;
  display: block;
  width: 35px;
  height: 2px;
  background: #000;
  transition: all 0.5s;
}

@media screen and (max-width: 414px) {
  .spMenuBtn span {
    width: 30px;
  }
}

.spMenuBtn span:nth-child(1) {
  top: 0;
}

.spMenuBtn span:nth-child(2) {
  top: 10px;
}

@media screen and (max-width: 414px) {
  .spMenuBtn span:nth-child(2) {
    top: 8px;
  }
}

.spMenuBtn span:nth-child(1) {
  top: 20px;
}

@media screen and (max-width: 414px) {
  .spMenuBtn span:nth-child(1) {
    top: 16px;
  }
}

/* isScroll spMenuBtn */
header.isScroll .spMenuBtn.active span {
  background: #fff;
}

/* spMenuBtn active */
.spMenuBtn.active span {
  background: #fff;
}

.spMenuBtn.active span:nth-child(1) {
  top: 10px;
  transform: rotate(-45deg);
}

.spMenuBtn.active span:nth-child(2) {
  opacity: 0;
}

.spMenuBtn.active span:nth-child(3) {
  top: 10px;
  transform: rotate(45deg);
}

.navContact {
  margin-left: 30px;
  padding-left: 20px;
  padding-right: 20px;
  background: #0e7deb;
}

@media screen and (max-width: 1000px) {
  .navContact {
    margin-left: 20px;
  }
}

@media screen and (max-width: 768px) {
  .navContact {
    display: block !important;
    margin-left: 0;
    padding: 14px 4% !important;
    background: none;
    border-bottom: 1px solid #fff;
  }
}

.navContact a {
  color: #fff;
}

@media screen and (max-width: 1000px) {
  .navContact a {
    font-size: 1.6rem;
  }
}

.navContact a:hover::before {
  display: none;
}

.navContact img {
  vertical-align: middle;
  margin-right: 5px;
}

/* footer */
footer {
  background: url(../img/footerBg.jpg) no-repeat center;
  background-size: cover;
}

footer a, footer p {
  color: #fff;
}

footer .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  footer .box {
    display: block;
  }
}

footer .leftArea p {
  font-size: 1.6rem;
}

footer .rightArea {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}

@media screen and (max-width: 1000px) {
  footer .rightArea {
    display: block;
    margin-top: 4%;
  }
}

@media screen and (max-width: 414px) {
  footer .rightArea {
    width: 60%;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
}

footer .rightArea p,
footer .rightArea a {
  margin-right: 10px;
  margin-left: 10px;
}

@media screen and (max-width: 768px) {
  footer .rightArea p,
  footer .rightArea a {
    margin-left: 0;
    margin-right: 0;
  }
}

@media screen and (max-width: 1000px) {
  footer .rightArea p {
    margin-bottom: 2%;
  }
}

@media screen and (max-width: 768px) {
  footer .rightArea p {
    margin-bottom: 15px;
  }
}

footer small {
  display: block;
  font-size: 1.3rem;
  text-align: center;
}

@media screen and (max-width: 768px) {
  footer small {
    font-size: 1.2rem;
  }
}

@media screen and (max-width: 414px) {
  footer small {
    font-size: 1.1rem;
  }
}

@media screen and (max-width: 414px) {
  .footLogo {
    width: 180px;
  }
}

.footNav {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.footNav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.footNav li {
  padding-left: 8px;
  padding-right: 8px;
  color: #fff;
}

.footNav a {
  font-weight: bold;
}

/* btn */
.moreBtn {
  position: relative;
  z-index: 5;
  display: block;
  width: 200px;
  padding: 16px;
  color: #000;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  background: #faff00;
}

@media screen and (max-width: 414px) {
  .moreBtn {
    width: 150px;
    padding: 10px;
    font-size: 1.5rem;
  }
}
/*# sourceMappingURL=common.css.map */