.header {
  background: #fff;
  font-size: 14px;
  a {
    color: #000;
    text-decoration: none;
    /* font-weight: bold; */
  }
}
.header-inner {
  display: flex;
  /* justify-content: space-between; */
  /* align-items: baseline; */
  align-items: center;
  height: 70px;
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  margin: auto;
  h1 {
  }
}
.burger {
  display: none;
}
.g-nav {
  display: flex;
  /* gap: 40px; */
  margin-left: 150px;
  font-size: 15px;
  a {
    display: inline-block;
    width: 114px;
    line-height: 70px;
    text-align: center;
    color: #555;
    font-weight: 600;
  }
  a:hover {
    /* background: #000; */
    /* color: #fff; */
    opacity: .7;
  }
}


@media (max-width: 1200px) {
  .header {
    z-index: 100;
    position: relative;
  }
  .header-inner {
    justify-content: space-between;
    height: 50px;
    padding: 0 20px;
    img {
      height: 30px;
    }
  }
  .burger {
    display: block;
    height: 35px;
    width: 35px;
    /* margin-top: 5px; */
    background: url(img/burger.svg) center center / cover no-repeat;
  }
  .burger.close {
    background: url(img/burger_x.svg) center center / cover no-repeat;
  }
  .g-nav {
    display: none;
    position: absolute;
    top: 48px;
    left: 0;
    right: 0;
    flex-flow: column;
    gap: 0;
    margin: 0;
    background: #4e8d9c;
    a {
      display: block;
      padding: 10px;
      color: #fff;
      text-align: center;
    }
  }
  .g-nav.show {
    display: block;
  }
}



.footer-wrapper {
  width: 100%;
  margin-top: 70px;
  background: #e5f6fd;
  color: #555;
}
.footer {
  width: 100%;
  max-width: calc(830px + 70px * 2);
  padding: 90px 70px;
  margin: auto;
  font-weight: bold;
}
.footer a {
  color: #555;
  text-decoration: underline;
}
.footer li+li {
  margin-top: .4em;
}
.footer-flex {
  display: flex;
}
.footer-flex .box1 {
  width: 360px;
}
.footer-flex .box1 p+p {
  margin: 1.8em 0;
}
.footer-flex .box2 {
  width: 35%;
}
.footer-flex .box3 {}

.footer-youtube {
  display: flex;
  justify-content: space-between;
  margin-top: 50px;
}
.footer-youtube a {
  display: inline-block;
  position: relative;
  background: #000;
  width: calc(50% - 15px);
}
.footer-youtube a::after {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  content: "";
  display: block;
  height: 55px;
  width: 55px;
  background: url(img/play.png) no-repeat center;
}
.footer-youtube img {
  opacity: .85;
}
.footer-youtube p {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: .5em 0;
  background: rgba(0,0,0,.3);
  text-align: center;
  color: #fff;
}
.footer-small {
  display: flex;
  justify-content:center;
  /* background: #F2F2F2; */
  padding: 27px 0;
  text-align: center;
  font-size: 1em;
  color: #555;
}

@media (max-width: 940px) {

  .footer-flex {
    justify-content:center;
  }
  .footer-flex .box1 {
    width: auto;
  }
  .footer-flex .box2,
  .footer-flex .box3 {
    display: none;
  }
  .footer-youtube {
    flex-wrap: wrap;
    justify-content:center;
    gap: 20px;
    text-align: center;
  }
  .footer-youtube a {
    width: 100%;
    max-width: 400px;
  }
  .footer-youtube img {
    width: 100%;
  }

  .factory-list {
    flex-wrap: wrap;
    justify-content: space-between;
    padding-bottom: 10px;
  }
  .factory-list .title,
  .factory-list .address,
  .factory-list .btns {
    /* width: 100%; */
  }
  .factory-list .title {
    width: 100%;
  }
  .factory-list .title,
  .factory-list .address {
    padding-bottom: 0;
  }
  .factory-list .address {
    width: calc(100% - 250px);
  }
  .factory-list .title br {
    display: none;
  }
  .factory-list .btns {
    width: 240px;
    padding-top: 20px;
  }

  .recruit-youtube {
    flex-wrap: wrap;
    justify-content:center;
    gap: 40px;
  }
  .recruit-youtube>div{
    flex-wrap: wrap;
    justify-content:center;
    gap: 20px;
  }
  .recruit-youtube>div:nth-child(2){
    flex-direction: row-reverse;
  }
  .recruit-youtube a {
    width: 100%;
    max-width: 400px;
  }
  .recruit-youtube img {
    width: 100%;
  }
  .recruit-youtube .p {
    width: 100%;
    max-width: 400px;
    font-size: 18px;

  }


}