@charset "UTF-8";
/* CSS Document */

/*============
nav
=============*/
nav {
  display: block;
  position: fixed;
  top: 0;
  left: -300px;
  bottom: 0;
  width: 300px;
  background: #ffffff;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transition: all .5s;
  z-index: 100;
  opacity: 0;
}
.navArea__bottom{
	padding: 0 20px;
}
.snsNav{
	display: flex;
	flex-wrap: wrap;
	justify-content: flex-end;
	align-items: center;
}
.snsNav__ttl{
	width: 25%;
	position: relative;
	line-height: 30px;
    font-size: 16px;
}
.snsNav__link{
}
.snsNav__ttl::after {
	position: absolute;
	content: "";
	height: 1.9055555556vw;
	width: 0.0694444444vw;
	background-color: #999;
	left: 50px;
}
.snsNav__icon img{
	width: 30px;
}
.navArea__bottom__menu{
	text-align: right;
	margin-top: 10px;
}
figure {
    margin: 0rem!important;
}
@media screen and (max-width: 767px) {
	.snsNav__ttl{
		width: 30%;
		position: relative;
		line-height: 26px;
		font-size: 14px;
	}
	.snsNav__link{
	}
	.snsNav__ttl::after {
		position: absolute;
		content: "";
		height: 5.9055555556vw;
		width: 0.0694444444vw;
		background-color: #999;
		left: 40px;
	}
	.snsNav__icon img{
		width: 24px;
	}
}
.open nav {
  left: 0;
  opacity: 1;
	display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        
        height: 100%;
}
nav .inner {
  padding: 25px;
}
nav .inner ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
nav .inner ul li {
  position: relative;
  margin: 0;
  border-bottom: 1px solid #333;
}
nav .inner ul li a {
  display: block;
  color: #333;
  font-size: 14px;
  padding: 1em;
  text-decoration: none;
  transition-duration: 0.2s;
}
nav .inner ul li a:hover {
  background: #e4e4e4;
}
@media screen and (max-width: 767px) {
  nav {
    left: -220px;
    width: 220px;
  }
}
/*============
.toggle_btn
=============*/
.toggle_btn {
  display: block;
  position: fixed;
  top: 30px;
  right: 30px;
  width: 30px;
  height: 30px;
  transition: all .5s;
  cursor: pointer;
  z-index: 3;
}
@media screen and (max-width: 767px) {
	.toggle_btn {
	  top: 20px;
	  right: 20px;
	}
}
.toggle_btn span {
  display: block;
  position: absolute;
  left: 0;
  width: 30px;
  height: 2px;
  background-color: #fff;
  border-radius: 4px;
  transition: all .5s;
}
.change-color2 span {
  background-color: #061f3c;
}
.toggle_btn span:nth-child(1) {
  top: 4px;
}
.toggle_btn span:nth-child(2) {
  top: 14px;
}
.toggle_btn span:nth-child(3) {
  bottom: 4px;
}
.open .toggle_btn span {
  background-color: #fff;
}
.open .toggle_btn span:nth-child(1) {
  -webkit-transform: translateY(10px) rotate(-315deg);
  transform: translateY(10px) rotate(-315deg);
}
.open .toggle_btn span:nth-child(2) {
  opacity: 0;
}
.open .toggle_btn span:nth-child(3) {
  -webkit-transform: translateY(-10px) rotate(315deg);
  transform: translateY(-10px) rotate(315deg);
}
/*============
#mask
=============*/
#mask {
  display: none;
  transition: all .5s;
}
.open #mask {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: .8;
  z-index: 3;
  cursor: pointer;
}
