/*--------------------
 * btn
 *--------------------*/

 .btn-trigger{
 	-webkit-appearance:none;
	appearance:none;
 	position: fixed;
	top: 60px;
	right: 45px;
	width: 40px;
	height: 41px;
	padding: 0;
	border: none;
	cursor: pointer;
	 z-index: 2000;
 }
 .btn-trigger span{
 	position: absolute;
	display: block;
	width: 40px;
	height: 2px;
	background-color: #101010;
	-webkit-transition: -webkit-transform 0.45s;
	 transition: transform 0.45s;
	 transform-origin:left;
   z-index: 3000;
 }
 .btn-trigger span:first-of-type{
 	top: 12px;
 }
 .btn-trigger span:nth-of-type(2){
 	bottom: 12px;
 }
 .btn-trigger.active span:first-of-type{
 	transform: rotate(23deg);
	top: 12px;
 }
 .btn-trigger.active span:nth-of-type(2){
	transform: rotate(-21deg);
	bottom: 12px;
 }

.btn-trigger:before{
	content: "";
    position: absolute;
    top: 20px;
    left: 50%;
	width: 223px;
	height: 224px;
    background-color: #FFF134;
    -webkit-transform-origin: 100% 0;
    transform-origin: 100% 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}

 /*--------------------
 * hamburger
 *--------------------*/

.hamburger li {
  position: relative;
  opacity: 0;
}

.hamburger.active li {
  animation: fadeInRight .6s ease forwards;
  animation-delay: .25s;
}

.hamburger.active li:nth-of-type(2) {
  animation-delay: .3s;
}

.hamburger.active li:nth-of-type(3) {
  animation-delay: .35s;
}

.hamburger.active li:nth-of-type(4) {
  animation-delay: .40s;
}

.hamburger.active li:nth-of-type(5) {
  animation-delay: .45s;
}

.hamburger.active li:nth-of-type(6) {
  animation-delay: .50s;
}

.hamburger.active li:nth-of-type(7) {
  animation-delay: .55s;
}

.hamburger.active li:nth-of-type(8) {
  animation-delay: .60s;
}

.hamburger.active li:nth-of-type(9) {
  animation-delay: .65s;
}

.hamburger.active li:nth-of-type(10) {
  animation-delay: .70s;
}

.hamburger.active li:nth-of-type(11) {
  animation-delay: .75s;
}

.hamburger.active li:nth-of-type(12) {
  animation-delay: .80s;
}

.hamburger.active li:nth-of-type(13) {
  animation-delay: .85s;
}

.hamburger.active li:nth-of-type(14) {
  animation-delay: .90s;
}
 
@keyframes fadeInRight {
  0% {
    opacity: 0;
    left: 20%;
  }
  100% {
    opacity: 1;
    left: 0;
  }
}

.hamburger {
  display: none;
  position: fixed;
  top:0;
  left:0;
  z-index: 1200;  
  box-sizing: border-box; 
  width:100%;
  height: 100vh;
  background-color: #333;
  overflow-y: scroll;
}

.hamburger-wrapper {
  position: absolute;
  top: 35%;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
  width: 100%;
  height: 100%;
  padding: 0 0 0 10%;
  box-sizing: border-box;
}

.hamburger li {
  padding-bottom: 20px;
  width: 100%;
  position: relative;
}

.hamburger li::before {
  content: '';
  position: absolute;
  bottom: 15%;
  left: 0px;
  width: 65%;
  height: 2px;
  background: #FFF134;
  display: block;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
  -webkit-transform: scale(0, 1);
  -ms-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: transform 0.4s cubic-bezier(0.65, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.65, 0, 0, 1);
  opacity: 0.5;
}

.hamburger li:hover::before {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
  -webkit-transform: scale(1, 1);
  -ms-transform: scale(1, 1);
  transform: scale(1, 1); 
}

.hamburger-nav {
  width: 80%;
}

.hamburger-nav a {
  font-size: 25px;
  color: #fff !important;
  display: inline-block;
  letter-spacing: 0.05em;
  font-weight: bold;
  cursor: pointer;
  font-family: "MyFont";
}

.hamburger-nav a span:before {
  content: "-";
  margin-right: 5px;
}

.hamburger-nav a:hover {
  text-decoration: none;
}

.hamburger-nav span {
  font-size: 15px;
  display: block;
}

.hamburger.close-nav {
  display: none !important;
}

.hamburger li.nav_tit {
  margin-top: 10px;
}

.hamburger li.nav_tit p {
  color: #fff;
  font-family: "MyFont";
  font-size: 30px;
}

.hamburger li.nav_tit:before {
  content: none;
}


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media print,
screen and (max-width: 991px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */


/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 991px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media print,
screen and (max-width: 768px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
  
/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 768px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */


/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */

@media print,
screen and (max-width: 576px) {

/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
/* ★★★★★★★★★★★★★★★★★★★★★★★★★★★★★★ */
  
  .btn-trigger {
    right: 15px;
  }
  
  .btn-trigger:before {
    width: 120px;
    height: 120px;
  }

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */

} /* max-width: 576px ここまで */

/* ☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆☆ */