@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* 右にスクロールさせてくないけどできない */
@media screen and (max-width: 768px) {
  body {
    overflow-x: hidden;
  }
}

p, h2, a, li {
  font-family: serif;
}

header {
  top: 0;
  left: 0;
  width: 100%;
  position: fixed;
  z-index: 10;
}

header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 8vh;
  background-color: #d6c5c5;
  /* ヘッダーロゴ */
  /* ナビゲーション */
  /* ハンバーガー */
}

header nav .logo-container {
  width: 30%;
}

header nav .logo-container .logo {
  margin-left: 10px;
}

header nav .logo-container .logo a img {
  height: auto;
  width: 180px;
}

header nav .nav-links-container {
  margin-right: 20px;
  width: 35%;
}

header nav .nav-links-container .nav-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header nav .nav-links-container .nav-links li {
  list-style: none;
}

header nav .nav-links-container .nav-links li .mene {
  display: none;
}

header nav .nav-links-container .nav-links li a {
  text-decoration: none;
  color: #000;
  font-weight: bold;
}

header nav .burger {
  margin-left: auto;
  display: none;
  cursor: pointer;
}

header nav .burger div {
  width: 25px;
  height: 3px;
  background-color: #efeaea;
  margin: 5px;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

header nav .burger.toggle .line1 {
  -webkit-transform: rotate(-405deg) translate(-5px, 6px);
          transform: rotate(-405deg) translate(-5px, 6px);
}

header nav .burger.toggle .line2 {
  opacity: 0;
}

header nav .burger.toggle .line3 {
  -webkit-transform: rotate(405deg) translate(-5px, -6px);
          transform: rotate(405deg) translate(-5px, -6px);
}

header nav .nav-active {
  -webkit-transform: translateX(0%) !important;
          transform: translateX(0%) !important;
}

@media screen and (max-width: 1024px) {
  header nav .nav-links-container {
    width: 50%;
  }
}

@media screen and (max-width: 768px) {
  header nav .logo-container .logo a img {
    width: 100%;
  }
  header nav .nav-links-container .nav-links {
    position: fixed;
    right: 0;
    height: 100vh;
    top: 0vh;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 35%;
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
    background-color: rgba(19, 15, 15, 0.1);
  }
  header nav .nav-links-container .nav-links li {
    opacity: 0;
    margin-bottom: 10px;
  }
  header nav .nav-links-container .nav-links li .mene {
    display: block;
    margin-top: 8vh;
    text-align: center;
    font-size: 30px;
  }
  header nav .burger {
    display: block;
    right: 0;
    z-index: 999;
  }
}

@-webkit-keyframes navLinksFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes navLinksFade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*# sourceMappingURL=style.css.map */