@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Roboto+Condensed:ital,wght@0,100..900;1,100..900&family=Roboto:ital,wght@0,400;0,500;0,700;1,400&display=swap");
/*============================================================================
	Header
==============================================================================*/
.s-nav {
  background-color: #0C5980;
}
@media screen and (max-width: 768px) {
  .s-nav {
    width: 60px;
    height: 60px;
  }
}
.s-nav .nav-inner .menu-nav {
  display: block;
  z-index: 9999;
  background-color: transparent;
  cursor: pointer;
  position: relative;
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .s-nav .nav-inner .menu-nav {
    width: 60px;
    height: 60px;
  }
}
.s-nav .nav-inner .menu-nav .nav_inner {
  width: 25px;
  height: 25px;
  z-index: 9999999;
  transition: all 0.4s;
  position: absolute;
}
@media screen and (max-width: 768px) {
  .s-nav .nav-inner .menu-nav .nav_inner {
    right: 18px;
    top: 19px;
  }
}
.s-nav .nav-inner .menu-nav .nav_inner span {
  z-index: 9999;
  display: inline-block;
  transition: all 0.4s; /*アニメーションの設定*/
  position: absolute;
  left: 0;
  height: 1px;
  background-color: #fff;
}
.s-nav .nav-inner .menu-nav .nav_inner span:nth-child(1) {
  top: 6px;
  width: 100%;
}
.s-nav .nav-inner .menu-nav .nav_inner span:nth-child(2) {
  top: 13px;
  width: 85%;
}
.s-nav .nav-inner .menu-nav .nav-txt {
  font-family: "Roboto Condensed", serif;
  color: #222;
  position: absolute;
  top: 70px;
  left: 55px;
  letter-spacing: 0.1em;
  font-size: 9px;
}
@media screen and (max-width: 768px) {
  .s-nav .nav-inner .menu-nav .nav-txt {
    left: 35px;
    top: 40px;
  }
}
.s-nav .nav-inner .menu-nav.active span:nth-of-type(1) {
  top: 3px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.s-nav .nav-inner .menu-nav.active span:nth-of-type(2) {
  top: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 100%;
}

.navigation {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 9998;
  transition: 0.5s ease;
  opacity: 0;
  display: none;
}
.navigation.active {
  transition: 0.5s ease;
  overflow-y: scroll;
  opacity: 1;
  display: block;
}
.navigation .navigation-inner {
  display: flex;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: rgba(12, 89, 128, 0.95);
  margin-left: auto;
  position: absolute;
  top: 0;
  right: 0;
  transition: 0.5s ease;
  overflow-y: scroll;
  overflow-x: hidden;
  text-align: center;
  align-items: center;
  justify-content: center;
}
.navigation .sitemap-wrapper {
  width: 100%;
  padding: 0 20px;
}
.navigation .sitemap-wrapper ul li {
  margin-bottom: 20px;
}
.navigation .sitemap-wrapper ul li a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 600;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .navigation .sitemap-wrapper ul li a {
    font-size: 4vw;
  }
}
.navigation .sitemap-wrapper ul.contact li {
  width: 80%;
  margin: 0 auto;
}
.navigation .sitemap-wrapper ul.contact li a {
  display: block;
  border: 1px solid #fff;
  padding: 10px 0;
}
.navigation .sitemap-wrapper ul.contact li a::before {
  content: "\f1d8";
  font-family: "FontAwesome";
  margin-right: 10px;
}

#menu-main-nav {
  margin-bottom: 30px;
}/*# sourceMappingURL=nav.css.map */