@charset "utf-8";

/* ====================
menu
==================== */
.menu {
    padding: 48px 0;
}

.menu__topic {
    margin-left: var(--contentPadding);
}

.menu__img__01 {
    margin-top: 24px;
    width: 76%;
    border-right: 0 solid;
    margin-left: auto;
}

.recommendedMenu__box {
    display: flex;
    padding: 48px var(--contentPadding) 0;
    flex-direction: column;
    gap: 24px;
}

.recommendedMenu__topic {
    position: relative;
}

.recommendedMenu__topic::after {
    content: "";
    display: block;
    width: 168px;
    height: 13px;
    margin-top: 3px;
    background-image: url(../images/cross.svg);
    background-repeat: no-repeat;
    background-size: contain;
}

.recommendedMenu__topic__txt {
    font-size: 1.4rem;
    line-height: 1.2;
}

.recommendedMenu__txt {
    font-size: 1.4rem;
}

.menu__list {
    display: inline-grid;
    width: 100%;
    row-gap: 24px;
    column-gap: 24px;
    grid-template-rows: repeat(4, fit-content(100%));
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.menu__item {
    display: flex;
    padding: 20px 24px;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
}

.menu__item::after {
    content: "";
    position: absolute;
    inset: 0;
    border: 1px solid var(--primary_black);
    pointer-events: none;
    clip-path: polygon(0 0,
            0 0,
            0 0,
            0 0);

    transition: clip-path 0.8s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu__item.is-show::after {
    clip-path: polygon(0 0,
            100% 0,
            100% 100%,
            0 100%);
}

.menu__name {
    text-align: center;
    font-size: 1.4rem;
    line-height: 1;
}

.recommendedMenu__cap {
    font-size: 1.2rem;
    display: block;
    margin-top: 6px;
}

.menu__price-time {
    display: flex;
    align-items: center;
    gap: 24px;
}

.menu__price {
    text-align: center;
    font-family: Inter;
    font-size: 1.6rem;
    line-height: 1;
}

.menu__time {
    text-align: center;
    font-family: Inter;
    font-size: 1.4rem;
    line-height: 1;
    letter-spacing: -0.7px;
    position: relative;
}

.menu__time::before {
    content: "";
    display: inline-block;
    width: 14px;
    height: 14px;
    background-image: url(../images/menu_time_icon.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-right: 4px;
    vertical-align: text-bottom;
}

.menuListBox__wrap {
    padding: 48px var(--contentPadding) 0;
}

.menuListBox {
    display: flex;
    width: 100%;
    padding: 48px 0;
    flex-direction: column;
    gap: 24px;
}

.topic__gray {
    color: var(--illustration_gray, #777777);
}

.menuList {
    margin: 0 4.6%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.tb {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.tb::after {
    width: 100%;
    content: "";
    height: 1px;
    background-image: url(../images/menu_line.svg);
    background-repeat: repeat-x;
    display: block;
    position: absolute;
}

.menuttl {
    font-size: 1.4rem;
    font-weight: 400;
    line-height: 1.5;
    background-color: var(--cloudDancer, #F0EEE9);
    z-index: 1;
    padding-right: 8px;
}

.menuttl span {
    display: flex;
    flex-direction: column;
}

.cap {
    font-size: 1rem;
    line-height: 1.5;
}

.price {
    text-align: center;
    font-family: Inter;
    font-size: 1.4rem;
    line-height: 1;
    background-color: var(--cloudDancer, #F0EEE9);
    z-index: 1;
    padding-left: 8px;
}

.annotation {
    font-size: 1.2rem;
    line-height: 1.5;
}

.aboutPay {
    display: flex;
    padding: 24px 4.6% 48px;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 16px;
}

.aboutPay__ttl {
    color: var(--illustrationblack, #3E3A39);
    font-size: 1.4rem;
    font-weight: 500;
    line-height: 1;
}

.careProducts {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 12px;
    position: relative;
}

.menu__img__02 {
    width: 83.1%;
}

.careProducts__txt {
    margin: 0 4.6%;
    font-size: 1.4rem;
}

.careProducts::after {
    content: "";
    display: block;
    width: 168px;
    height: 13px;
    background-image: url(../images/cross.svg);
    background-repeat: no-repeat;
    background-size: contain;
    margin-top: 8px;
}