.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;
  }
  a:hover {
    background: #000;
    color: #fff;
    opacity: 1;
  }
}


@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 {
  /* background: #000; */
  margin-top: 80px;
  /* padding: 10px 0; */
  font-size: 14px;
  /* font-weight: 500; */
  /* color: #fff; */
  line-height: 1;
}
.footer {
  text-align: center;
  p {
    padding: 1em 1em;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    font-size: 1.2;
    line-height: 1.5;
    font-weight: bold;
  }
  h1 {
    margin: 30px 0 20px;
  }
  .sns {
    display: flex;
    justify-content:center;
    gap: 10px;
    margin-bottom: 30px;
  }
  .f-nav {
    border-top: 1px solid #ddd;
    display: flex;
    flex-wrap: wrap;
    justify-content:center;
    gap: 10px 30px;
    padding: 20px 0;
  }
  li {
    /* margin-bottom: 10px; */
  }
  a {
    color: #000;
    text-decoration: none;
  }
  small {
    display: block;
    background: #0071bc;
    padding: 20px 0;
    text-align: center;
    font-size: .8em;
    color: #fff;
  }
}

@media (max-width: 1200px) {
  .footer {
    p {
      font-size: 12px;
    }
    h1 img {
      height: 30px;
    }
    .f-nav {
      font-size: 12px;
      gap: 10px 20px;
    }
  }
}