.quick {
    position: fixed;
    right: 2rem;
    top: calc(50% - 15rem);
    z-index: 99;
}

.quick_menu {
    width: 6rem;
    margin: 0 auto;
    background: #fff;
    border-radius: 6px;
    box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.2);
}
.quick_menu .depth01 {
    position: relative;
    width: 6rem;
    height: 5rem;
    z-index: 1;
}
.quick_menu .depth01 > a {
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
}
.quick_menu .depth01:nth-child(n + 2)::after {
    content: "";
    position: absolute;
    left: 1rem;
    right: 1rem;
    top: 0;
    height: 1px;
    background: #e5e5e5;
    z-index: -1;
}
.quick_menu .depth01 .ico {
    width: 100%;
    text-align: center;
}
.quick_menu .depth01 > a p {
    display: none;
    position: absolute;
    left: -8rem;
    width: 8rem;
    height: 5rem;
    line-height: 5rem;
    font-size: 1.6rem;
    text-align: center;
    border-radius: 6px 0 0 6px;
    background: var(--theme);
    color: #fff;
    white-space: nowrap;
}
.quick_menu .ico img {
    width: 2.2rem;
}
.quick_menu .depth01:hover > a {
    background: var(--theme);
}
.quick_menu .depth01:hover .ico {
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(2%)
        hue-rotate(290deg) brightness(103%) contrast(101%);
}
.quick_menu .depth01:hover > a p {
    display: block;
}
.quick_menu .depth01:hover .tooltip {
    display: block;
}
.tel-list {
    top: 50%;
    right: 100%;
    padding-right: 18px;
    transform: translateY(-50%);
}
.tel-list .tooltip-wrap {
    padding: 28px;
}
.tel-list .tooltip-wrap::after {
    content: "";
    right: -5px;
    left: auto;
    top: calc(50% - 3px);
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: none;
}
.tel-list .tooltip-wrap > div {
    display: flex;
    align-items: stretch;
}
.tel-list .tooltip-wrap > div:nth-child(n + 2) {
    margin-top: 20px;
}
.tel-list .img {
    width: 40px;
    height: 40px;
    background: pink;
}
.tel-list dl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-left: 20px;
    font-size: 16px;
}
.tel-list dt {
    color: #333;
}
.tel-list dd {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--theme);
}
.tel-list dd button {
    flex-shrink: 0;
    width: 12px;
    height: 12px;
    filter: brightness(0) saturate(100%) invert(47%) sepia(1%) saturate(38%)
        hue-rotate(330deg) brightness(81%) contrast(85%);
}

.cart-list {
    top: 50%;
    right: 100%;
    padding-right: 18px;
    transform: translateY(-50%);
}
.cart-list > * {
    width: 372px;
}
.cart-list .tooltip-wrap {
    width: 372px !important;
}
.cart-list .top {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    background: var(--theme);
    border-radius: 10px 10px 0 0;
    color: #fff;
    font-size: 16px;
    z-index: 10;
}
.cart-list .top .title {
    padding-left: 20px;
    background: url(../images/common/cart-solid.png) no-repeat 0 50% / 16px;
    filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%)
        hue-rotate(321deg) brightness(102%) contrast(101%);
}
.cart-list .top a {
    font-size: 12px;
}

.cart-list .tooltip-wrap {
    padding: 0;
}
.cart-list .tooltip-wrap::after {
    content: "";
    right: -5px;
    left: auto;
    top: calc(50% - 3px);
    border-left: 6px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-right: none;
}
.cart-list .list {
    max-height: 500px;
    padding: 70px 16px;
    overflow-y: auto;
}
.cart-list .list_wrap {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.cart-list .list_wrap:nth-child(n + 2) {
    margin-top: 12px;
}
.cart-list .items {
    position: relative;
    display: flex;
    align-items: stretch;
    gap: 6px;
    width: calc(100% - 30px);
    font-size: 16px;
    border: 1px solid transparent;
    border-radius: 5px;
}
.cart-list .img {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 5px;
    background: pink;
}
.cart-list dl {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: calc(100% - 96px);
    padding: 10px;
}
.cart-list dt {
    max-width: 100%;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}
.cart-list dd {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 100%;
    padding-right: 50px;
}
.cart-list .btn_delete {
    display: none;
    position: absolute;
    right: 10px;
    bottom: 12px;
    font-size: 12px;
    color: var(--theme);
}
.cart-list .items:hover {
    border-color: var(--theme);
}
.cart-list .items:hover dt {
    color: var(--theme);
}
.cart-list .items:hover .btn_delete {
    display: block;
}
.cart-list .controls {
    position: absolute;
    left: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    background: #fff;
}
.cart-list .controls label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.cart-list .btn_select_delete {
    height: 28px;
    padding: 2px 15px;
    border: 1px solid #dcdfe6;
    font-size: 12px;
    border-radius: 3px;
}
.cart-list .btn_close {
    position: absolute;
    top: 17px;
    right: 16px;
}

.btn_kakaotalk {
    position: fixed;
    top: calc(50% + 20rem);
    right: 1.5rem;
    z-index: 99;
}
.btn_kakaotalk a {
    display: block;
    width: 7.4rem;
    height: 7.4rem;
    background: #f9e000;
    border-radius: 2rem;
    padding: 1rem;
    text-align: center;
    box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2);
}
.btn_kakaotalk svg {
    width: 4.8rem;
    height: 4.8rem;
}

.open_quick_wrap {
    display: none;
    position: absolute;
    top: 12.5rem;
    left: -3rem;
}
.open_quick {
    width: 3rem;
    height: 5rem;
    border-radius: 8px 0 0 8px;
    background: #fff;
    box-shadow: -2px 3px 5px rgba(0, 0, 0, 0.1);
}
.open_quick img {
    width: 2rem;
    transform: rotate(90deg);
    transition: transform 0.3s;
    filter: brightness(0) saturate(100%) invert(33%) sepia(46%) saturate(6068%)
        hue-rotate(3deg) brightness(103%) contrast(106%);
}

@media (max-width: 1150px) {
}
@media (max-width: 850px) {
    .quick {
        transform: translateX(calc(100% + var(--x)));
        transition: transform 0.4s;
        pointer-events: none;
    }
    .quick .quick_menu {
        opacity: 0;
    }
    .quick.active {
        transform: translateX(0);
        pointer-events: auto;
    }
    .quick.active .quick_menu {
        opacity: 1;
    }
    .quick_menu:hover ~ .open_quick_wrap {
        display: none;
    }
    .open_quick_wrap {
        display: block;
        pointer-events: auto;
    }
    .open_quick:hover {
        background: var(--theme);
    }
    .open_quick:hover img {
        filter: brightness(0) saturate(100%) invert(94%) sepia(31%) saturate(0%)
            hue-rotate(161deg) brightness(104%) contrast(107%);
    }
    .quick.active .open_quick img {
        transform: rotate(0.75turn);
    }

    .quick {
        --x: 1rem;
        top: calc(50% - 10.8rem);
        right: 1rem;
    }
    .quick_menu {
        width: 4rem;
    }
    .quick_menu .depth01 {
        width: 4rem;
        height: 3rem;
    }
    .quick_menu .ico img {
        width: 1.5rem;
    }
    .quick_menu .depth01 > a p {
        left: -6rem;
        width: 6rem;
        height: 3rem;
        line-height: 3rem;
        font-size: 1.1rem;
    }
    .open_quick_wrap {
        top: 7rem;
        left: -2rem;
    }
    .open_quick {
        width: 2rem;
        height: 4rem;
    }
    .open_quick img {
        width: 1.8rem;
    }

    .btn_kakaotalk {
        right: 1rem;
        top: calc(50% + 10rem);
    }
    .btn_kakaotalk a {
        width: 4rem;
        height: 4rem;
        border-radius: 1rem;
        padding: 0.5rem;
    }
    .btn_kakaotalk svg {
        width: 2.8rem;
        height: 2.8rem;
    }
}
