/* header */
header {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: #fff;
  -webkit-transition: all .4s;
  transition: all .4s;
}

header section {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
}

.logo {
  padding-top: 20px;
}

@media screen and (max-width: 1000px) {
  .logo {
    width: 230px;
    padding-top: 34px;
  }
}

@media screen and (max-width: 768px) {
  header {
    height: 60px;
    padding-top: 15px;
  }
  .logo {
    padding-top: 0;
  }
}

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

/* gNav */
.gNav {
  padding-top: 30px;
  padding-right: 40px;
}

.gNav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.gNav li {
  padding-left: 26px;
}

.gNav a {
  position: relative;
  padding: 2px 2px 6px;
  font-weight: 400;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.gNav a:hover {
  color: #00a896;
}

.gNav a::before {
  position: absolute;
  left: 0;
  bottom: 0;
  content: '';
  display: block;
  background: #7fccc1;
  width: 0;
  height: 4px;
  -webkit-transition: all .4s;
  transition: all .4s;
}

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

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

@media screen and (max-width: 768px) {
  .gNav {
    position: absolute;
    top: 0;
    right: -70%;
    width: 70%;
    height: 130vh;
    background: #1fbdc0;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .gNav ul {
    display: block;
    margin-top: 100px;
  }
  .gNav li {
    padding: 20px 4%;
    border-top: 1px solid #fff;
  }
  .gNav li:last-child {
    border-bottom: 1px solid #fff;
  }
  .gNav a {
    color: #fff;
    padding-top: 13px;
  }
}

@media screen and (max-width: 414px) {
  .gNav li {
    padding: 12px 4%;
  }
}

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

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

@media screen and (max-width: 768px) {
  .spMenuBtn {
    display: block;
    width: 45px;
    height: 35px;
    padding-top: 4px;
    cursor: pointer;
  }
  .spMenuBtn div {
    position: relative;
    width: 100%;
    height: 100%;
  }
  .spMenuBtn span {
    position: absolute;
    left: 5px;
    z-index: 999;
    display: block;
    width: 35px;
    height: 2px;
    background: #000;
    -webkit-transition: all .5s;
    transition: all .5s;
  }
  .spMenuBtn span:nth-child(1) {
    top: 0;
  }
  .spMenuBtn span:nth-child(2) {
    top: 10px;
  }
  .spMenuBtn span:nth-child(3) {
    top: 20px;
  }
}

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

/* isScroll spMenuBtn */
@media screen and (max-width: 768px) {
  header.isScroll .spMenuBtn {
    padding-top: 4px;
  }
  header.isScroll .spMenuBtn span {
    background: #333;
  }
  header.isScroll .spMenuBtn.active span {
    background: #fff;
  }
}

@media screen and (max-width: 414px) {
  header.isScroll .spMenuBtn {
    padding-top: 0;
  }
}

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

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

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

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

/* footer */
footer {
  padding-top: 70px;
  background: #1fbdc0;
}

@media screen and (max-width: 768px) {
  footer {
    padding-top: 50px;
  }
}

footer small {
  display: block;
  padding-top: 20px;
  padding-bottom: 10px;
  font-size: 1.2rem;
  text-align: center;
}

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

.footBox {
  position: relative;
  max-width: 1300px;
  margin-left: auto;
  margin-right: auto;
}

.footNav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.footNav li {
  text-align: center;
}

@media screen and (max-width: 414px) {
  .footNav li {
    width: 32%;
  }
}

.footNav a {
  display: inline-block;
  padding: 10px 15px;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 414px) {
  .footNav a {
    padding: 10px 5px;
  }
}

.footLogoBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding-top: 20px;
  padding-bottom: 20px;
  background: #1ca9ac;
}

.footLogoBox img {
  margin-right: 22px;
}

@media screen and (max-width: 768px) {
  .footLogoBox img {
    display: block;
    margin-right: 0;
  }
}

@media screen and (max-width: 414px) {
  .footLogoBox img {
    width: 190px;
    margin-left: auto;
    margin-right: auto;
  }
}

.footLogoBox p {
  margin-left: 22px;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 768px) {
  .footLogoBox p {
    margin-top: 3%;
    margin-left: 0;
  }
}

@media screen and (max-width: 414px) {
  .footLogoBox p {
    font-size: 1.2rem;
  }
}

/* toTop */
.toTop {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  top: -112px;
  right: 0;
  width: 84px;
  height: 84px;
  background: #f9b232;
  border-radius: 50%;
}

@media screen and (max-width: 768px) {
  .toTop {
    width: 70px;
    height: 70px;
    top: -82px;
    right: 2%;
  }
}

@media screen and (max-width: 414px) {
  .toTop {
    width: 50px;
    height: 50px;
    top: -72px;
  }
}

/* btn */
.btnMore {
  position: relative;
  display: block;
  width: 136px;
  padding: 8px;
  color: #fff;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  background: #f7e567;
  border-radius: 20px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  -webkit-transition: all .4s;
  transition: all .4s;
}

.btnMore:hover {
  opacity: .8;
  -webkit-transform: translate(-1px, -2px);
          transform: translate(-1px, -2px);
}

.btnMore img {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.toProductBtn {
  position: relative;
  display: block;
  width: 260px;
  margin-left: auto;
  margin-right: auto;
  padding: 10px;
  color: #fff;
  font-size: 2rem;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  border-radius: 25px;
  background: #1fbdc0;
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .toProductBtn {
    font-size: 1.5rem;
  }
}

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

.toProductBtn:hover {
  opacity: .8;
  -webkit-transform: translate(-1px, -2px);
          transform: translate(-1px, -2px);
}

.toProductBtn img {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.contactBannerBtn {
  position: relative;
  display: block;
  width: 338px;
  margin-left: auto;
  margin-right: auto;
  padding: 17px 8px;
  color: #333;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  background: #ffda26;
  border-radius: 25px;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
  -webkit-transition: all .4s;
  transition: all .4s;
}

@media screen and (max-width: 768px) {
  .contactBannerBtn {
    padding: 12px 8px;
    font-size: 1.6rem;
    width: 260px;
  }
}

@media screen and (max-width: 414px) {
  .contactBannerBtn {
    padding: 10px;
    font-size: 1.4rem;
    width: 200px;
  }
}

.contactBannerBtn:hover {
  opacity: .8;
  -webkit-transform: translate(-1px, -2px);
          transform: translate(-1px, -2px);
}

.contactBannerBtn img {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.pcContact {
  margin-top: -30px;
  margin-left: 30px;
  padding: 0 !important;
  -webkit-transition: all .4s;
  transition: all .4s;
}

.pcContact:hover {
  opacity: .8;
}

.pcContact a {
  display: inline-block;
  padding: 28px 18px;
  color: #fff;
  font-size: 1.4rem;
  background: #1eb9bc;
}

.pcContact a::before {
  display: none;
}

.pcContact img {
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 14px;
}

@media screen and (max-width: 1000px) {
  .pcContact {
    margin-left: 10px;
  }
  .pcContact a {
    padding: 20px 10px;
  }
  .pcContact img {
    margin-bottom: 10px;
  }
}

.breadcrumbs {
  max-width: 750px;
  margin-top: -60px;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (max-width: 768px) {
  .breadcrumbs {
    margin-top: -50px;
    padding-left: 18%;
    padding-right: 4%;
  }
}

@media screen and (max-width: 414px) {
  .breadcrumbs {
    margin-top: -40px;
    padding-left: 10%;
  }
}

.breadcrumbs li, .breadcrumbs a {
  font-size: 1.4rem;
  font-weight: 500;
}

@media screen and (max-width: 414px) {
  .breadcrumbs li, .breadcrumbs a {
    font-size: 1.3rem;
  }
}

.breadcrumbs li {
  display: inline-block;
  margin-right: 10px;
}

header.subHeadder .gNav a.visited {
  color: #00a896;
}

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

header.subHeadder .gNav a.visited::before {
  width: 100%;
}

@media screen and (max-width: 768px) {
  header.subHeadder .gNav a.visited::before {
    width: 0;
  }
}

header.subHeadder .gNav .pcContact a {
  border: 5px solid #fff;
  border-top: none;
}

header.subHeadder .gNav .pcContact a:hover {
  color: #fff;
}
