@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Aguafina+Script&family=Damion&?family=Caveat:wght@400..700?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
==============================================================================*/
.head-container {
  position: relative;
}
.head-container .header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0);
}
.head-container .header .head-inner {
  position: relative;
  flex-direction: column;
  width: 100%;
  max-width: 1280px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .head-container .header .head-inner {
    height: 80px;
  }
}
.head-container .header .head-inner h1.h1-logo {
  width: 180px;
  margin: 20px auto;
  padding: 0;
  font-size: 0;
}
@media screen and (max-width: 768px) {
  .head-container .header .head-inner h1.h1-logo {
    width: 100px;
  }
}
.head-container .header .head-inner h1.h1-logo img {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}
.head-container .header .head-inner .nav-pc {
  display: flex;
}
.head-container .header .head-inner .nav-pc li a {
  padding: 0 20px;
  border-right: 1px solid #fff;
}
.head-container .header .head-inner .nav-pc li:first-child a {
  border-left: 1px solid #fff;
}
.head-container .header .head-inner .sns-online ul {
  display: flex;
}
.head-container .header .head-inner .sns-online ul li {
  margin-right: 10px;
}
.head-container .header .head-inner .sns-online ul li.online a {
  text-decoration: underline;
}
.head-container .header .head-inner .sns-online ul li a {
  color: #fff;
}

.nav {
  width: 40%;
  height: 120px;
  display: flex;
  justify-content: end;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .nav {
    width: 80px;
    height: 80px;
    position: absolute;
    top: 0;
    right: 0;
  }
}
.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) {
  .nav .nav-inner .menu-nav {
    width: 80px;
    height: 80px;
  }
}
.nav .nav-inner .menu-nav .nav_inner {
  width: 25px;
  height: 25px;
  z-index: 9999999;
  transition: all 0.4s;
  position: absolute;
  right: 40px;
  top: 50px;
}
@media screen and (max-width: 768px) {
  .nav .nav-inner .menu-nav .nav_inner {
    right: 20px;
    top: 20px;
  }
}
.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;
}
.nav .nav-inner .menu-nav .nav_inner span:nth-child(1) {
  top: 6px;
  width: 100%;
}
.nav .nav-inner .menu-nav .nav_inner span:nth-child(2) {
  top: 13px;
  width: 85%;
}
.nav .nav-inner .menu-nav .nav-txt {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  color: #fff;
  position: absolute;
  top: 70px;
  left: 55px;
  letter-spacing: 0.1em;
  font-size: 9px;
}
@media screen and (max-width: 768px) {
  .nav .nav-inner .menu-nav .nav-txt {
    left: 35px;
    top: 40px;
  }
}
.nav .nav-inner .menu-nav.active span:nth-of-type(1) {
  top: 3px;
  transform: translateY(6px) rotate(-45deg);
  width: 100%;
}
.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(0, 0, 0, 0.8);
  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 ul li {
  margin-bottom: 20px;
}
.navigation ul li a {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 2vw;
  letter-spacing: 0.1em;
  color: #fff;
  font-weight: 400;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .navigation ul li a {
    font-size: 5vw;
  }
}
.navigation .sns-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
}/*# sourceMappingURL=nav.css.map */