@import url("https://fonts.googleapis.com/css?family=Noto+Serif+JP");
* {
  font-family: "Noto Serif JP", sans-serif;
}

html, body, body {
  width: 100%;
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5 {
  font-weight: 100;
}

header {
  width: 100%;
  height: 75px;
  background-color: #000;
  overflow: hidden;
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 999;
}
header .headerWrap {
  width: 1366px;
  height: 75px;
  margin: 0 auto;
}
header h1.site-title {
  margin: 0 0 0 50px;
  font-size: 28px;
  line-height: 75px;
  float: left;
}
header h1.site-title span {
  font-size: 16px;
  margin-left: 20px;
}
header h1.site-title a {
  text-decoration: none;
  color: #ddd;
  line-height: 75px;
  display: block;
}
header .gnav {
  height: 75px;
  line-height: initial;
}
header .gnav #menu-toggle {
  display: none;
}
header .gnav .gnav_menu {
  display: flex;
  width: auto;
  margin: 0 auto;
  float: right;
}
header .gnav .gnav_menu .gnav_item {
  margin-right: 50px;
  list-style-type: none;
}
header .gnav .gnav_menu .gnav_item a {
  color: #ddd;
  text-decoration: none;
  font-size: 16px;
  display: block;
  text-align: center;
  line-height: 75px;
  transition: all 0.3s ease;
}
header .gnav .gnav_menu .gnav_item a:hover {
  color: #99ddff;
}

main {
  width: 100%;
  padding-top: 75px;
}

footer {
  width: 100%;
  background-color: #333;
  overflow: hidden;
}
footer p {
  color: #fff;
  text-align: center;
}
footer .footerWrap {
  width: 980px;
  margin: 0 auto;
}
footer .footerWrap a {
  color: #ddd;
  font-size: 16px;
  text-align: center;
  line-height: 100px;
  margin: 0px 10px;
  text-align: right;
  transition: all 0.3s ease;
}
footer .footerWrap a:hover {
  color: #99ddff;
}

#contact {
  width: 1366px;
  margin: 30px auto;
}
#contact .titleWrap {
  width: 100%;
  padding: 0 0 30px;
  background-color: #fff;
}
#contact .titleWrap h2 {
  width: 1366px;
  color: #666;
  text-align: center;
  margin: 0 auto 0px;
  padding: 0 0 10px;
  border-bottom: 1px solid #ccc;
  display: block;
  letter-spacing: 5px;
  font-size: 46px;
}
#contact .titleWrap h2 span {
  display: block;
  font-size: 16px;
  margin: 0 0 10px;
}
#contact .contactWrap {
  width: 900px;
  margin: 0 auto;
}

#mfp_loading, #mfp_loading_screen, #mfp_overlay_background, #mfp_overlay {
  display: none;
}

@media (max-width: 700px) {
  header {
    width: 100%;
    height: auto;
    overflow: unset;
  }
  header .headerWrap {
    width: 100%;
    position: relative;
  }
  header .headerWrap .menu-button-container {
    height: 100%;
    width: 30px;
    cursor: pointer;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: absolute;
    top: 8px;
    right: 20px;
  }
  header .headerWrap .gnav_menu > li {
    margin: 0 1rem;
    overflow: hidden;
  }
  header .headerWrap .menu-button,
  header .headerWrap .menu-button::before,
  header .headerWrap .menu-button::after {
    display: block;
    background-color: #fff;
    height: 4px;
    width: 30px;
    transition: transform 400ms cubic-bezier(0.23, 1, 0.32, 1);
    border-radius: 2px;
  }
  header .headerWrap .menu-button::before {
    content: "";
    margin-top: -15px;
  }
  header .headerWrap .menu-button::after {
    content: "";
    margin-top: 24px;
  }
  header .headerWrap .menu-button-container {
    display: flex;
  }
  header .headerWrap #menu-toggle:checked + .menu-button-container .menu-button::before {
    margin-top: 0px;
    transform: rotate(405deg);
  }
  header .headerWrap #menu-toggle:checked + .menu-button-container .menu-button {
    background: rgba(255, 255, 255, 0);
  }
  header .headerWrap #menu-toggle:checked + .menu-button-container .menu-button::after {
    margin-top: 0px;
    transform: rotate(-405deg);
  }
  header .headerWrap .gnav_menu {
    position: absolute;
    top: 0;
    margin-top: 75px;
    left: 0;
    flex-direction: column;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 0;
  }
  header .headerWrap .gnav_menu .gnav_menu {
    display: flex;
    flex-direction: row;
    list-style-type: none;
    margin: 0;
    padding: 0;
  }
  header .headerWrap .gnav_menu .gnav_menu > li {
    margin: 0 1rem;
    overflow: hidden;
  }
  header .headerWrap #menu-toggle ~ .gnav_menu li {
    height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  header .headerWrap #menu-toggle:checked ~ .gnav_menu li {
    border: 1px solid #333;
    height: 4.5em;
    padding: 0.5em;
    transition: height 400ms cubic-bezier(0.23, 1, 0.32, 1);
  }
  header .headerWrap .gnav_menu > li {
    display: flex;
    justify-content: center;
    margin: 0;
    padding: 0.5em 0;
    width: 100%;
    color: white;
    background-color: #222;
  }
  header .headerWrap .gnav_menu > li:not(:last-child) {
    border-bottom: 1px solid #444;
  }
  footer {
    width: 100%;
    background-color: #333;
    overflow: hidden;
  }
  footer p {
    color: #fff;
    text-align: center;
  }
  footer .footerWrap {
    width: 80%;
    margin: 0 auto;
    padding-top: 20px;
  }
  footer .footerWrap a {
    display: block;
    text-align: left;
    line-height: 30px;
  }
  footer .footerWrap a:hover {
    color: #99ddff;
  }
}/*# sourceMappingURL=style.css.map */