@charset "UTF-8";
@keyframes fuwaMenu {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0px);
  }
}
@media screen and (min-width: 768px) {
  .js-fadeIn {
    opacity: 0;
    transform: translateY(50px);
    transition: ease-in, opacity 1s, transform 1s;
  }
  .js-fadeIn--active {
    opacity: 1;
    transform: translateY(0);
  }
  .js-reveal {
    opacity: 0;
    transform: translateY(20%);
    transition: opacity 2s ease, transform 2s ease;
  }
  .js-reveal.delay {
    transition-delay: 0.3s;
  }
  .js-reveal--active {
    opacity: 1;
    transform: translateY(0);
  }
  .header_add_menu {
    display: flex;
    justify-content: center;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .header_add_menu a,
  .header_add_menu a:link,
  .header_add_menu a:visited,
  .header_add_menu a:focus,
  .header_add_menu a:active {
    color: inherit; /* 親の色を引き継ぐ */
    text-decoration: none; /* アンダーラインなし */
    outline: none; /* フォーカス時の枠線も消す（必要に応じて） */
  }
  .header_add_menu__list {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    height: calc(60 * 100vw / 1440);
    cursor: pointer;
  }
  .header_add_menu__list:last-child > a,
  .header_add_menu__list:last-child > h3 {
    border-right: none;
  }
  .header_add_menu__list.css-dropdown h3::after {
    content: "";
    width: calc(10 * 100vw / 1440);
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    background-image: url(/html/template/sakecabinet/assets/img/common/pages/common_button_allow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    right: calc(20 * 100vw / 1440);
    top: 47%;
    transform: rotate(90deg);
    transition: all 0.5s;
  }
  .header_add_menu__list:hover .css-parent {
    display: block;
    animation: fuwaMenu 0.3s linear 0s;
  }
  .header_add_menu__list:hover h3::after {
    top: 40%;
    transform: rotate(270deg);
  }
  .header_add_menu__list > a,
  .header_add_menu__list > h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-right: 1px solid #000;
    height: calc(20 * 100vw / 1440);
    color: #000;
    text-decoration: none;
    padding: 0 calc(45 * 100vw / 1440);
    font-size: max(1.6rem, min(16 * 100vw / 1440, 1.6rem));
    margin: 0;
  }
  .header_add_menu__list .css-parent {
    display: none;
    position: absolute;
    top: 100%;
    right: 0;
    background-color: #fff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    min-width: 250px;
    z-index: 100;
    padding: 0 calc(17 * 100vw / 1440);
    list-style: none;
  }
  .header_add_menu__list .css-parent h3 {
    margin-top: 0;
    margin-bottom: 10px;
    font-size: 16px;
    color: #000;
  }
  .header_add_menu__list .css-parent .css-children {
    background-color: rgba(255, 255, 255, 0.9);
  }
  .header_add_menu__list .css-parent .css-children:not(:last-child) a {
    border-bottom: solid 1px #bbbbbb;
  }
  .header_add_menu__list .css-parent .css-children:last-child {
    margin-bottom: 0;
  }
  .header_add_menu__list .css-parent .css-children a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #000;
    text-decoration: none;
    height: calc(54 * 100vw / 1440);
    position: relative;
  }
  .header_add_menu__list .css-parent .css-children a::after {
    content: "";
    width: calc(10 * 100vw / 1440);
    aspect-ratio: 1/1;
    display: block;
    position: absolute;
    background-image: url(/html/template/sakecabinet/assets/img/common/pages/common_button_allow.svg);
    background-size: auto 100%;
    background-repeat: no-repeat;
    right: 0;
  }
}
@media screen and (max-width: 767px) {
  .header_add_menu {
    display: none;
  }
}
