@keyframes fuwaMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
.side_add_menu {
  --font-family: "Noto Serif JP", serif;
}

@media screen and (max-width: 767px) {
  .ec-drawerRole {
    width: calc(520 * 100vw / 750);
  }
  .ec-headerLink__item {
    padding: 15px calc(25 * 100vw / 750);
  }
  .side_add_menu__list a,
  .side_add_menu__list h3 {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    border-bottom: 1px solid #ccc;
    padding: 15px calc(25 * 100vw / 750);
    font-size: calc(32 * 100vw / 750);
    font-weight: bold;
    color: white;
    margin: 0;
  }
  .side_add_menu__list a::before,
  .side_add_menu__list h3::before {
    content: "";
    width: calc(34 * 100vw / 750);
    display: block;
    position: relative;
    height: 1px;
    background-color: #fff;
    margin-right: calc(20 * 100vw / 750);
  }
  .side_add_menu__list .css-menu_headline::before {
    height: auto;
    aspect-ratio: 1/1;
    background-image: url(/html/template/sakecabinet/assets/icon/menu-allow.svg);
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
    background-color: transparent;
    transform: rotate(180deg);
    transition: all 0.5s;
  }
  .side_add_menu__list .css-menu_headline.js-active::before {
    transform: rotate(0deg);
  }
  .side_add_menu__list .css-parent {
    display: none;
    background-color: #2c2c2c;
  }
  .side_add_menu__list .css-parent.js-active {
    display: block;
  }
  .side_add_menu__list .css-parent .css-children a::before,
  .side_add_menu__list .css-parent .css-children h3::before {
    height: 0;
  }
}
