@charset "UTF-8";
/* ヘッダー（SP） */

@media screen and (max-width: 900px) {

html {
    overflow-x: hidden;
  }
body {
    overflow-x: hidden;
  }
  
/* Navbar & Navmenu color */
:root {
    --background-navbar: rgba(255, 255, 255, 0.5);
  }
  
  .header {
    background: var(--background-navbar);
    width: 100vw;
    height: 80px;
    position: fixed;
    z-index: 999;
  }
  
  /* Nav items */
  .menu {
    list-style: none;
    position: absolute;
    width: 100%;
    height: auto;
    top: 0;
    margin-top: 80px;
    padding: 30px 0 50px 0;
    clear: both;
    background: #003143;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
    transform: scale(1, 0);
    transform-origin: top;
  }
  
  /* Hamburger menu button */
  .menu-btn:checked ~ .menu {
    transform: scale(1, 1);
    transform-origin: top;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  
  /* Hamburger menbu text */
  .menu a {
    text-decoration: none;
    font-weight: 700;
    letter-spacing: 2px;
    font-size: 16px;
    text-transform: capitalize;
    color: #fff;
    opacity: 0;
    transition: 0.5s;
  }
  .menu_active a {
    color: #00533F;
  }
  
  .menu li {
    border-bottom: 1px solid #D3D6DD;
    text-align: center;
    padding: 20px 0;
    margin: 0 30px;
    opacity: 0;
    transition: 0.5s;
  }
  .menu li.shop {
      border-bottom: none;
      padding-top: 50px;
  }
  
  .menu-btn:checked ~ .menu a,
  .menu-btn:checked ~ .menu li {
    opacity: 1;
    transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
  }
  
  .menu-btn {
    display: none;
  }
  
  .menu-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  
  .navicon {
    background: url(../img/header_icon_menu_sp.svg) center no-repeat;
    display: block;
    height: 40px;
    width: 40px;
    position: relative;
  }

  .navicon:after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    position: absolute;
  }
  
  /* Hamburger Menu Animation Start */
  
  .menu-btn:checked ~ .menu-icon .navicon:after {
    background: url(../img/header_icon_menu_close_sp.svg);
  }
  
  .menu-btn:checked ~ .menu-icon .navicon {
    background: rgba(0, 0, 0, 0);
    transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  }
  /* Hamburger Menu Animation End */
  
  /* Navbar Container */
  .navtext-container {
    width: 100%;
    height: 80px;
    position: absolute;
    box-sizing: border-box;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  
  /* Navbar Text */
  .navtext {
    position: absolute;
    text-align: center;
  }
  .navtext img {
      width: 55px;
  }

  #header p {
    position: absolute;
    width: 40px;
    height: 40px;
    top: 20px;
    right: 20px;
  }

/*アニメーション*/
.cv_btn img {
  animation: anime1 1.5s ease 1.5s infinite alternate;
  transform-origin:center;
}
@keyframes anime1 {
  from {
    transform: scale(0.9,0.9);
  }
  to {
    transform: scale(1,1);
  }
}

  
}