:root {
    --p1: #E6C2C0;
    --p2: #F5E7E6;
    --p3: #B85A66;
    --p4: #3E2C2E;
    --p5: #B89F91;
}

/* ===== Hero ===== */



/* ===== TOC chips ===== */

.whisk-faq-toc__inner {
    padding: 10px 0px;
}

.whisk-faq-chips {
    display: grid;
    grid-template-columns: 1fr;
    flex-wrap: wrap;
    gap: 10px;
    padding: 10px 20px;
}

@media (min-width: 520px) {
    .whisk-faq-chips {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 820px) {
    .whisk-faq-chips {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 1500px) {
    .whisk-faq-chips {
        grid-template-columns: repeat(5, 1fr);
    }
}

@media (min-width: 1500px) {
    .whisk-faq-chips {
        justify-content: center;
        text-align: center;
    }
}

.whisk-faq-chip {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    padding: 10px 20px;
    border-radius: 10px;
    text-decoration: none;
    border: 1px solid rgba(184, 90, 102, .12);
    transition: background .2s ease, border-color .2s ease;
}

.whisk-faq-chip:hover {
    background: rgba(230, 194, 192, .30);
    border-color: rgba(184, 90, 102, .26);
}

.chip-icon {
    transition: transform .2s ease;
}

.whisk-faq-chip:hover .chip-icon {
    transform: translatey(3px);
}

.whisk-faq-chip .jp {
    font-size: 13px;
    color: #333;
}

.whisk-faq-chip .en {
    font-size: 11px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: rgba(62, 44, 46, .65);
}

.whisk-faq-chip .sep {
    color: var(--p1);
}

/* ===== Main ===== */

/* Group header */
.whisk-faq-group {
    margin-top: 36px;
    border-bottom: 0.5px solid rgba(0, 0, 0, 0.1);
}

.whisk-faq-group__head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 10px;
    padding: 18px 0 12px;
}

.whisk-faq-group__kicker {
    margin: 0;
    font-size: 11px;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: rgba(184, 90, 102, 1);
    white-space: nowrap;
}

.whisk-faq-group__title {
    margin: 0;
    font-size: 20px;
    letter-spacing: .04em;
    flex: 1;
    font-weight: normal;
}

/* List */
.whisk-faq-list {
    display: grid;
    gap: 12px;
    margin-top: 14px;
}

/* Item */
.whisk-faq-item {
    padding: 16px 16px 16px;
    border-top: 0.5px solid rgba(0, 0, 0, 0.1);
}

/* Question */
.whisk-faq-q {
    margin: 0;
    display: flex;
    align-items: center;
    gap: 10px;
    letter-spacing: .02em;
}

.whisk-faq-q .mark_q {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(184, 90, 102, 1);
    font-size: 30px;
}

/* Answer */
.whisk-faq-a {
    display: flex;
    margin-top: 10px;
    align-items: flex-start;
    gap: 10px;
    text-underline-offset: 0.2em;
}

.whisk-faq-a .mark_a {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--p5);
    font-size: 30px;
}

.whisk-faq-a p {
    padding-top: 15px;
    font-size: 15.5px;
}

/* Note + closing */
.whisk-faq__note {
    margin-top: 12px;
    padding-left: 45px;
    padding-bottom: 16px;
    color: rgba(62, 44, 46, .72);
    font-size: 12.5px;
    line-height: 1.9;
}

.whisk-faq-closing {
    margin-top: 50px;
    margin-bottom: 100px;
}

.whisk-faq-closing__box {
    border-radius: 22px;
    padding: 18px 16px;
    border: 1px solid rgba(0, 0, 0, .1);
}

.whisk-faq-closing__title {
    margin: 0 0 8px;
    font-size: 15px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(184, 90, 102, .95);
}

.whisk-faq-closing__text {
    margin: 0;
    font-size: 14.5px;
    line-height: 2.0;
    color: rgba(62, 44, 46, .80);
}

.whisk-faq-closing__cta {
    margin-top: 14px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.whisk-faq a:focus-visible {
    outline: 2px solid rgba(184, 90, 102, .35);
    outline-offset: 3px;
}

/* Buttons */
.whisk-faq-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 16px;
    min-width: 170px;
    border-radius: 999px;
    text-decoration: none;
    border: 1px solid rgba(0, 0, 0, .1);
    color: rgba(62, 44, 46, .90);
    letter-spacing: .06em;
    transition: background .2s ease, color .2s ease;
    font-size: 15px;
}

.whisk-faq-btn:hover {
    background: var(--p3);
    color: #fff;
}