@charset "utf-8";

*,
::before,
::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

a {
  color: inherit;
  text-decoration: none;
}

body {
  font-family: "Roboto Flex", "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  color: #000000;
  line-height: 1;
}

img {
  width: 100%;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #ffffff;
  z-index: 10;
}

.headerInner {
  max-width: 1200px;
  height: 110px;
  margin-right: auto;
  margin-left: auto;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.humMenu {
  display: none;
}

.headerLogo_pc {
  display: block;
  max-width: 210px;
}

.headerLogo_sp {
  display: none;
}

.Menu ul {
  display: flex;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 1.8px;
}

.Menu ul li {
  margin-right: 30px;
  margin-left: 30px;
}

.Menu ul li a {
  position: relative;
}

.Menu ul li a:hover {
  opacity: 0.4;
  transition: 0.5s;
}

.Menu ul li a:hover::after {
  transform: scale(1, 1);
}

.Menu ul li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #000000;
  transition: all .3s;
  transform: scale(0, 1);
  transform-origin: center top;
}

.snsIcon_header {
  display: none;
}

.footer {
  text-align: center;
  padding-top: 300px;
  padding-bottom: 80px;
}

.copyright {
  font-size: 12px;
  font-weight: 300;
  letter-spacing: 1.08px;
}

.main {
  padding-top: 150px;
}

.followBtn {
  position: fixed;
  bottom: 30px;
  right: 68px;
  width: 60px;
  transition: 0.5s;
}

.followBtn:hover {
  opacity: 0.4;
}


@media (max-width: 1000px) {
  .Menu ul {
    font-size: 16px;
  }
  
  .Menu ul li {
    margin-right: 20px;
    margin-left: 20px;
  }
}

@media (max-width: 850px) {
  .header {
    height: 80px;
  }

  .headerLogo_pc {
    display: none;
  }
  
  .headerLogo_sp {
    display: block;
    max-width: 80px;
  }

  .Menu ul {
    display: block;
    font-size: 18px;
    margin-bottom: 70px;
  }

  .Menu ul li {
    margin: 0;
    padding: 15px 0;
  }

  .headerInner {
    padding: 10px 15px;
    height: 100%;
    position: relative;
  }

  .headerMenu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background-color: rgba(255, 255, 255, 0.97);
    height: calc(100vh - 70px);
    padding: 60px 30px;
    display: none;
  }

  .headerMenu.is-show {
    display: block;
  }

  .snsIcon_header {
    display: flex;
  }
  .snsIcon_header a {
    max-width: 30px;
    margin-right: 15px;
  }

  .humMenu {
    display: block;
    width: 45px;
    height: 30px;
    border: none;
    background-color: transparent;
    outline: none;
    border-radius: 0;
    position: relative;
  }

  .humMenu span {
    display: inline-block;
    transition: all .5s;
    position: absolute;
    left: 0;
    height: 2px;
    background-color: #000000;
  }

  .humButton span:nth-of-type(1) {
    top: 10px;
    width: 100%;
  }

  .humButton span:nth-of-type(2) {
    top: 20px;
    width: 100%;
  }

  .humButton.active span:nth-of-type(1) {
    top: 15px;
    left: 0;
    transform: translateY(0px) rotate(-25deg);
    width: 100%;
  }

  .humButton.active span:nth-of-type(2) {
    top: 15px;
    left: 0;
    transform: translateY(0px) rotate(25deg);
    width: 100%;
  }

  .footer {
    padding-top: 140px;
    padding-bottom: 50px;
  }

  .copyright {
    font-size: 10px;
    letter-spacing: 0.72px;
  }

  .main {
    padding-top: 120px;
  }

  .followBtn {
    bottom: 48px;
    right: 20px;
  }
}