#quick-menu-button {
  position: fixed;
  inset-inline-end: 0;
  inset-block-end: 2.4rem;
  /*inline-size: 7.2rem;*/
  aspect-ratio: 1 / 1;
  padding: 0.7rem;
  border-radius: 0.7rem 0 0 0.7rem;
  background: #258fff;
  box-shadow: 0 0.25em 0.5em #0003;
  color: #fff;
  anchor-name: --quick-menu-button;
  @media (width >= 1440px) {
    display: none;
  }
}
#quick-menu {
    /*  anchor-name: --quick-menu-button;
  position-area: top;
  position-anchor: center;*/
    inset: auto 0 7.1rem auto;

    @supports not (anchor-name: --quick-menu-button) {
        inset: auto 0 7.1rem auto;
    }

    text-wrap: nowrap;
    border-radius: 0.7rem 0 0 0.7rem;
    background: #fff;
    box-shadow: 0 0 1.6rem #0003;
    inline-size: 7.4rem;
    > a {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0.4rem;
    padding: 1.0rem 0.8rem;
    text-align: center;
    font-size: 1.2rem;
    font-weight: 600;
    > svg:not(.dont-change-color) * {
      fill: #258fff;
    }
  }
  @media (width >= 1440px) {
/*    margin-block: auto;
    margin-inline-start: auto;
    block-size: auto;
    display: grid;
    place-items: center;
    inset-inline-end: max(0px, calc((100vw - var(--container-max-width)) / 2 - 18rem));
    inline-size: revert;
    border-radius: 1.2rem;
    box-shadow: unset;
    background-color: unset;
    grid-template-columns: repeat(2, 1fr);*/
    position: fixed;
    /*top: 31%; */
    top:296px;
    /*right: 2rem;*/
    right: max(1.5rem, calc((100vw - var(--container-max-width)) / 2 - 20rem));
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2¿­·Î À¯Áö */
    gap: 1rem; /* ¾ÆÀÌÄÜ °£°Ý */
    padding: 1rem;
    width: auto;
    background: white;
    border-radius: 1.2rem;
    z-index: 9999; > a {
        > svg {
        inline-size: 6.8rem;
        block-size: 6.8rem;
        padding: 1.2rem;
        aspect-ratio: 1 / 1;
        border-radius: 10rem;
        background: #f6faff;
      }
      &:hover > svg {
        scale: 1.2;
        transform-origin: center center;
        background: #258fff;
        &:not(.dont-change-color) * {
          fill: #fff;
        }
      }
    }
  }
}
