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

body {
  margin: 0;
  /* width: 100vw; */
  /* height: 100vh; */
  animation: bugfix infinite 1s;
  -webkit-animation: bugfix infinite 1s;
}

@keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
@-webkit-keyframes bugfix {
  from {
    padding: 0;
  }
  to {
    padding: 0;
  }
}
#overlay-button {
  position: fixed;
  right: 0;
  top: 0;
  z-index: 5;
  cursor: pointer;
  user-select: none;
  width: 77px;
  height: 77px;
  background-color: hsl(149deg 98% 21%);
  border-radius: 0px 0px 0px 17px;
}
#overlay-button span {
  height: 4px;
  width: 35px;
  left: 0;
  right: 0;
  margin: auto;
  top: 35px;
  border-radius: 2px;
  background-color: white;
  position: relative;
  display: block;
  transition: all .2s ease-in-out;
}
#overlay-button span:before {
  top: -10px;
  visibility: visible;
}
#overlay-button span:after {
  top: 10px;
}
#overlay-button span:before, #overlay-button span:after {
  height: 4px;
  width: 35px;
  border-radius: 2px;
  background-color: white;
  position: absolute;
  content: "";
  transition: all .2s ease-in-out;
}
#overlay-button:hover span, #overlay-button:hover span:before, #overlay-button:hover span:after {
  background: #fff;
}

input[type=checkbox] {
  display: none; 
  
}

input[type=checkbox]:checked ~ #overlay {
  visibility: visible; 
}

input[type=checkbox]:checked ~ #overlay-button:hover span, input[type=checkbox]:checked ~ #overlay-button span {
  background: transparent;
  
  
}
input[type=checkbox]:checked ~ #overlay-button span:before {
  transform: rotate(45deg) translate(7px, 7px);

}
input[type=checkbox]:checked ~ #overlay-button span:after {
  transform: rotate(-45deg) translate(7px, -7px);


}

#overlay {
  height: 100vh;
  width: 100vw;
  background: hsl(176deg 73% 38% / 92%);
  z-index: 2;
  visibility: hidden;
  position: fixed;
}
#overlay.active {

}

.sp_menu ul.menu_list {
    padding-top: 87px;
}
#overlay ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  /* height: 100vh; */
  padding-left: 0;
  list-style-type: none;
}
#overlay ul li {
  /* display: block; */
  width: 90%;
  margin: 0 auto;
}
#overlay ul li a {
  border-bottom: 1px solid hsl(0deg 0% 100%);
  color: hsl(0deg 0% 100%);
  text-decoration: none;
  padding: 10px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  font-size: 20px;
  /* transition: 0.5s; */
  position: relative;
}
#overlay ul li a:before {
  content:"";
  position:
  absolute;
  width: 30px;
  height: 30px;
  /* background-color: #ccc; */
  right: 10px;
  background-position: center;
  background-image: url(../img/common/navi_link_wh.png);
  background-size: 5px;
  background-repeat: no-repeat;
}
#overlay ul li a.cart:before {
  content:"";
  position:
  absolute;
  width: 30px;
  height: 30px;
  /* background-color: #ccc; */
  right: 10px;
  background-position: center;
  background-image: url(../img/common/icon_cart_wh.png);
  background-size: 29px;
  background-repeat: no-repeat;
}
#overlay ul li a:hover {
}