@charset "UTF-8";

.menu {
  position: fixed;
  z-index: 999;
  top: 30px;
  right: 30px;
  display: block;
  box-sizing: content-box;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  border: 0;
  outline: 0;
  background-color: transparent;
}

.menu.active {
  position: fixed;
  background-color: transparent;
}

.menu:hover {
  cursor: pointer;
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: "alpha(opacity=100)";
}


/* ナビボタン */
#btn_nav {
  border: solid 1px #6B6A6B;
  background-color: #FFF;
  border-radius: 50px;
  padding: 12px;
  height: 42px;
  width: 42px;
}

#btn_nav .menu__line {
  position: relative;
  display: block;
}

#btn_nav .menu__line,
#btn_nav .menu__line:before,
#btn_nav .menu__line:after {
  width: 100%;
  height: 1.5px;
  -webkit-transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  transition: all .6s cubic-bezier(0.190, 1.000, 0.220, 1.000);
  background-color: #6B6A6B;
}

#btn_nav .menu__line:before {
  position: absolute;
  top: 7.5px;
  left: 0;
  content: ' ';
}

#btn_nav .menu__line:after {
  position: absolute;
  top: 15px;
  left: 0;
  content: ' ';
}

#btn_nav .menu__line.active {
  background-color: transparent;
}

#btn_nav .menu__line.active:before,
#btn_nav .menu__line.active:after {
  top: 7.5px;
  background-color: #6B6A6B;
}

#btn_nav .menu__line.active:before {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

#btn_nav .menu__line.active:after {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/*gnav*/
.gnav {
  background-color: #F1f1f1;
  color: #6B6A6B;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  min-width: 1100px;
  z-index: 998;
}

/* link */
.gnav a:link, .gnav a:visited, .gnav a:active {
  color: #6B6A6B;
  text-decoration: none;
}

.gnav_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: left;
  position: absolute;
  width: 100%;
  padding: 40px 2% 35px;
  top: 0;
  left: 0;
}

.gnav_wrap h4 {
  font-size: 0.7em;
}

.gnav_wrap .gnav_menu {
  margin-top: 3em;
  text-align: left;
}

/* contents_list */
.contents_list {
  width: 25%;
}

.gnav_menu li {
  margin-bottom: 1.25em;
}


.contents_list .gnav_menu li a {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}

.contents_list .gnav_menu li a .en {
  font-size: 1em;
  width: 10em;
}

.contents_list .gnav_menu li a h3 {
  font-size: 1em;
  font-weight: normal;
}

/* sns_list */
.sns_list {
  width: 25%;
  margin-left: 5%;
}

/* link_list */
.link_list {
  width: 20%;
  margin-left: auto;
}

.link_list .gnav_menu li {
  font-size: 0.9em;
  border-bottom: 1px solid #D9D9D9;
  margin-bottom: 2em;
  padding-bottom: 0.3em;
}

/* logo_wrap */
.logo_wrap {
  position: absolute;
  display: flex;
  align-items: end;
  justify-content: space-between;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 45px 2%;
}

.logo_wrap .nav_logo {
  width: 45%;
}

.logo_wrap .caption {
  width: auto;
  text-align: right;
  display: flex;
  font-size: 0.7em;
}

.logo_wrap .caption p {
  margin-left: 1.5em;
}



/*ft_gnav*/
.ft_gnav {
  background-color: #6B6A6B;
  color: #FFF;
  height: 100vh;
  width: 100%;
  min-width: 1100px;
  min-height: 700px;
  position: relative;
}

.ft_gnav a:link, .ft_gnav a:visited, .ft_gnav a:active {
  color: #FFF;
  text-decoration: none;
}

.ft_gnav .gnav_wrap {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  text-align: left;
  position: absolute;
  width: 100%;
  padding: 40px 2% 35px;
  top: 0;
  left: 0;
}