@charset "UTF-8";

/*-------------------------------------------
header
-------------------------------------------*/
#header-top {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #fff;
  padding: 0 20px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}
#header-top .logo {
  max-width: 400px;
  display: flex;
  align-items: center;
  margin-right: 20px;
}
#header-top .logo a {
  display: block;
  line-height: 0;
}
#header-top .hamburger {
  display: none;
}
#header-top .navi .menu {
  display: flex;
  align-items: center;
}
#header-top .navi .menu li {
  font-size: clamp(12px, 1.4vw, 15px);
  margin-left: min(3vw, 40px);
}

/*-------------------------------------------
footer
-------------------------------------------*/
#footer {
  background-color: #fff;
}
#footer .sns-list li:nth-child(1) {
  width: 42px;
}
#footer .sns-list li:nth-child(2) {
  width: 38px;
}
#footer .sns-list li:nth-child(3) {
  width: 47px;
}
#footer .sns-list {
  border-bottom: solid 1px rgba(112, 112, 112, 0.4);
}
#footer .link-list {
  justify-content: center;
  margin-bottom: 45px;
}
#footer .link-list li {
  border-right: solid 1px #000;
}
#footer .link-list li a {
  color: #000;
}
#footer .copyright {
  color: #000;
}

@media screen and (max-width: 768px) {
  /*-------------------------------------------
  header
  -------------------------------------------*/
  #header-top {
    height: 70px;
    padding: 0 0 0 20px
  }
  #header-top .hamburger {
    width: 80px;
    height: 70px;
    background-color: #A2D6C0;
    cursor: pointer;
    display: block;
    position: relative;
  }
  #header-top .hamburger p {
    color: #003E92;
    font-size: 14px;
    font-weight: bold;
    position: absolute;
    left: 20px;
    top: 42px;
  }
  #header-top .hamburger span {
    width: 40px;
    height: 2px;
    background-color: #003E92;
    display: inline-block;
    position: absolute;
    left: 20px;
    transition: all 0.4s;
  }
  #header-top .hamburger span:nth-of-type(1) {
    top: 17px; 
  }
  #header-top .hamburger span:nth-of-type(2) {
    top: 26px;
  }
  #header-top .hamburger span:nth-of-type(3) {
    top: 35px;
  }
  #header-top .hamburger.active span:nth-of-type(1) {
    top: 28px;
    transform: rotate(-45deg);
  }
  #header-top .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  #header-top .hamburger.active span:nth-of-type(3) {
    top: 28px;
    transform: rotate(45deg);
  }
  #header-top .navi {
    width: 100%;
    height: 100vh;
    background-color: #D6EAE1;
    position: fixed;
    top: 70px;
    left: 0;
    display: none;
  }
  #header-top .navi .menu {
    width: 100%;
    height: 100vh;
    max-width: 1000px;
    margin: 0 auto;
    flex-direction: column;
    padding: 40px 20px 180px;
    overflow: auto;
  }
  #header-top .navi .menu li {
    width: 100%;
    border-top: solid 1px #A2BFB0;
    font-size: 15px;
    padding-left: 20px;
    margin: 0;
    position: relative;
  }
  #header-top .navi .menu li:last-child {
    border-bottom: solid 1px #A2BFB0;
  }
  #header-top .navi .menu li::before,
  #header-top .navi .menu li::after {
    content: "";
    width: 7px;
    height: 7px;
    border-left: solid 1px #000;
    border-bottom: solid 1px #000;
    transform: rotate(-135deg);
    position: absolute;
    top: calc(50% - 2px);
  }
  #header-top .navi .menu li::before {
    right: 20px;
  }
  #header-top .navi .menu li::after {
    right: 30px;
  }
  #header-top .navi .menu li a,
  #header-top .navi .menu li a {
    display: block;
    padding: 10px 0;
  }
}
@media screen and (min-width: 769px) {
  #header-top .navi {
    display: block !important;
  }
}