@charset "utf-8";

@media only screen and (max-width: 768px) {
    .header_nav { display: none !important; }
    .sp_menu { display: block !important; }

#drawer-checkbox {
  display: none;
}
#drawer-icon {
  cursor: pointer;
  display: inline-block;
  height: 60px;
  position: relative;
  width: 60px;
    background-color: rgba(255,255,255,0.7);
}
#drawer-icon span {
  background:  #f4f4f4;
  border-radius: 1px;
  display: block;
  height: 16%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  transition: all 0.3s ease-in-out;
  width: 84%;
}
#drawer-icon span::before,
#drawer-icon span::after {
  -webkit-transform: rotate(0);
  background: #f4f4f4;
  border-radius: 1px;
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -50%;
  position: absolute;
  top: 50%;
  transform: rotate(0);
  transition: all 0.3s ease-in-out;
  width: 100%;
}
#drawer-icon span::before {
  margin-top: -38%;
}
#drawer-icon span::after {
  margin-top: 19%;
}
#drawer-checkbox:checked ~ #drawer-icon span {
  background: rgba(51, 51, 51, 0);
}
#drawer-checkbox:checked ~ #drawer-icon span::before,
#drawer-checkbox:checked ~ #drawer-icon span::after {
  content: "";
  display: block;
  height: 100%;
  left: 50%;
  margin: -8% 0 0 -42%;
  position: absolute;
  top: 50%;
  width: 100%;
}
#drawer-checkbox:checked ~ #drawer-icon span::before {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#drawer-checkbox:checked ~ #drawer-icon span::after {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#drawer-content {
  overflow: auto;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 40;
  width: 250px;
  max-width: 90%;
  height: 100%;
  background: rgba(255,255,255,0.9);
  transition: all 0.3s ease-in-out 0s;
  transform: translateX(-100%);
    padding: 3em 0 0 0;
}
#drawer-checkbox:checked ~ #drawer-content {
  transform: translateX(0);
  box-shadow: 6px 0 25px rgba(0, 0, 0, 0.16);
}

#drawer-close {
  display: none;
  position: fixed;
  z-index: 39;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  transition: all 0.3s ease-in-out 0s;
}
#drawer-checkbox:checked ~ #drawer-close {
  display: block;
  opacity: 0.3;
}

    .header_menu{
        display: block;
    }
    
    .header_menu li:nth-of-type(n+2){
        padding: 2em 0 0 2em;
    }
    
    .sp_menu{
        position: absolute;
        top:5%;
        left: 5%;
        position: fixed;
    }

    .main_visual p:first-of-type{
        font-size: 160%;
        line-height: 1.5em;
    }
    .main_visual{
        margin-bottom: 5em;
    }
    .top_about span{
        width: 85%;
        padding: 3em 2em;
        top:30%;
    }
    .top_about picture img{
        max-width: 100%;
    }
    .top_about{
        margin-bottom: 17em;
    }
    .top_products{
        width: 90%;
        margin: 0 auto 3em auto;
    }
    .top_products_details{
        display: block;
        width: 100%;
        margin-bottom: 1em;
    }
    .top_products_details span{
        width: 100%;
        margin-bottom: 1em;
    }
    .top_products_details span img{
        width: 100%;
        max-height: 200px;
        object-fit: cover;
    }
    .top_products a{
        display: inline-block;
        box-sizing: border-box;
        width: 100%;
        padding: 1.5em 2em;
        background-color: rgba(255,255,255,0.8);
    }
    .top_online_shop{
        padding: 3em 2em;
        margin-bottom: 5em;
    }
    .top_online_shop a{
        display: inline-block;
        box-sizing: border-box;
        width: 100%;
        padding: 1.5em 2em;
        background-color: rgba(255,255,255,0.8);
    }
}