/* ===== 共通カスタマイズ ===== */
section {
    padding: 50px 0px;
}

strong {
    background: linear-gradient(transparent 70%, #E6C2C0 70%);
    font-size: 17px;
}

.heading-with-line {
    display: flex;
    align-items: center;
}

.line {
    margin-left: 10px;
    width: max(1.5vw, 20px);
    height: 1px;
    background-color: #333;
}

.heading-with-line h3 {
    font-size: max(calc(var(--vh, 1vh) * 2), 18px);
    font-weight: normal;
}

.whisk-about-prose p {
    margin: 25px 0px;
}

@media screen and (min-width: 1200px) {
    .whisk-about-products_1__inner {
        padding-right: max(20vw, 400px);
    }

    .whisk-about-products_2__inner {
        padding-left: max(20vw, 400px);
    }
}

/* ===== イントロダクション ===== */
.whisk-about-intro__title {
    font-size: max(calc(var(--vh, 1vh) * 2), 18px);
    text-align: center;
    margin: 50px 0px;
}

.whisk-about-intro_img-con {
    text-align: center;
    margin-top: 75px;
    margin-bottom: 25px;
}

.whisk-about-intro_img-con img {
    border-radius: 50px;
}

/* ===== whiskが大切にしていること ===== */

.whisk-about-cards {
    margin-top: 25px;
}

/* 1枚のカード */
.whisk-about-card {
    position: relative;
    overflow: hidden;
    display: flex;
    gap: 10px;
}

/* コンテンツブロック */
.whisk-about-card-con {
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
    padding-top: 18px;
}

.whisk-about-card__title {
    font-weight: normal;
}

.whisk-about-card-con .line {
    margin-left: 0px;
    margin-top: 10px;
    width: 30px;
    height: 0.1px;
    background-color: #B89F91;
}


/* 01/02/03 */
.whisk-about-card .num {
    font-size: 50px;
    margin-top: 5px;
    letter-spacing: 0em;
    align-content: top;
    color: #F5E7E6;
    opacity: 0.6;
    z-index: -1;
}

@media (max-width: 768px) {
    .whisk-about-card .num {
        font-size: 30px;
        margin-top: 25px;
    }

    .whisk-about-card {
        gap: 7px;
    }
}

/* Purity / Handmade / Afterglow */
.whisk-about-card .label {
    color: #B89F91;
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}



/* ===== ケーキも、焼き菓子も ===== */
.whisk-about-products_1__innerr_con {
    display: flex;
}

.whisk-about-products_1__innerr_con .whisk-about-prose {
    flex: 3;
    align-content: center;
}

.whisk-about-products_1__innerr_con .whisk-about-products_1__figure {
    flex: 2;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.whisk-about-products_1__img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .whisk-about-products_1__innerr_con {
        flex-direction: column;
        align-items: center;
    }

    .whisk-about-products_1__img {
        height: auto;
        width: min(320px, 100%);
        max-width: 100%;
    }
}

/* ===== コーヒーという“相棒” ===== */
.whisk-about-products_2__innerr_con {
    display: flex;
}

.whisk-about-products_2__innerr_con .whisk-about-prose {
    flex: 3;
    align-content: center;
}

.whisk-about-products_2__innerr_con .whisk-about-products_2__figure {
    flex: 2;
    margin: 0;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.whisk-about-products_2__img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

@media (max-width: 768px) {
    .whisk-about-products_2__innerr_con {
        flex-direction: column;
        align-items: center;
    }

    .whisk-about-products_2__img {
        height: auto;
        width: min(320px, 100%);
        max-width: 100%;
    }
}

/* ===== whiskの世界観を形にする色 ===== */
.whisk-palette {
    padding: 36px 0;
}

.whisk-palette__inner {
    max-width: 980px;
    margin: 0 auto;
    padding: 0 20px;
}

.whisk-palette__lead {
    margin: 10px 0 18px;
    font-size: 15px;
    line-height: 1.9;
    opacity: .9;
}

.whisk-palette__grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 14px;
}

.whisk-palette__card {
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 18px;
    overflow: hidden;
    background: rgba(255, 255, 255, .35);
}

.whisk-palette__swatch {
    height: 110px;
    background: var(--c);
}

.whisk-palette__meta {
    padding: 12px 12px 14px;
}

.whisk-palette__name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: .02em;
}

.whisk-palette__use {
    margin: 6px 0 0;
    font-size: 12px;
    opacity: .75;
}

.whisk-palette__hex {
    margin: 6px 0 0;
    font-size: 12px;
    opacity: .55;
    font-variant-numeric: tabular-nums;
}

.whisk-palette__note {
    margin: 12px 0 0;
    font-size: 12px;
    line-height: 1.7;
    opacity: .6;
}

@media (max-width: 900px) {
    .whisk-palette__grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 560px) {
    .whisk-palette__grid {
        grid-template-columns: 1fr;
    }
}

/* ===== ロゴに込めた物語 ===== */
.whisk-about-logo__inner_con {
    display: flex;
    gap: 24px;
    align-items: stretch;
    padding-top: 50px;
}

.whisk-about-logo__figure {
    margin: 0;
    flex: 2;
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.whisk-about-logo__img {
    height: 100%;
    width: auto;
    object-fit: contain;
    display: block;
}

.whisk-about-logo .whisk-about-prose {
    flex: 3;
    align-content: center;
}


/* ===== Credit ===== */
.whisk-credit {
    padding: 10px 0px;


}


.whisk-credit__title {
    margin: 0 0 16px;
    font-size: 18px;
}

.whisk-credit__list {
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    gap: 14px;
}

.whisk-credit__item {
    padding: 14px 16px;
    border: 1px solid rgba(0, 0, 0, .10);
    border-radius: 16px;
    flex: 1;
}

.whisk-credit__role {
    display: block;
    font-size: 13px;
    text-transform: uppercase;
    opacity: 0.85;
}

.whisk-credit__role-ja {
    display: block;
    margin-top: 4px;
    font-size: 13px;
    letter-spacing: 0.04em;
    opacity: 0.7;
}

.whisk-credit__name {
    display: inline-block;
    margin-top: 10px;
    font-size: 15px;
    text-decoration: underline;
    text-underline-offset: 0.2em;
    transition: opacity 0.2s;
}

.whisk-credit__name:hover {
    opacity: 0.7;
}

@media (max-width: 768px) {
    .whisk-credit {
        padding: 0px 0;
    }
}

/* スマホは縦並び */
@media (max-width: 768px) {
    .whisk-about-logo__inner_con {
        flex-direction: column;
        align-items: center;
    }

    .whisk-credit__list {
        flex-direction: column;
    }

    .whisk-about-logo__img {
        height: auto;
        width: min(320px, 100%);
        max-width: 100%;
    }
}

/* =========================
  「特別」ではなく「上質な日常」を
========================= */

.whisk-about-closing {
    background-color: rgba(249, 243, 232, 0.3);
    padding: 100px 0px;
    margin-top: 100px;
}

.whisk-about-closing .whisk-about-section__title {
    font-size: max(calc(var(--vh, 1vh) * 2), 18px);
    font-weight: normal;
}

/* CTA：グリッドで整列＋ピルボタン */
.whisk-about-cta {
    margin-top: 40px;
    padding: 0px 50px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

/* ボタン */
.whisk-about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .02em;
    transition: border 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

/* 右に小さな矢印（擬似要素） */
.whisk-about-cta__btn::after {
    content: "〉";
    font-size: 14px;
    transition: transform 0.3s ease;
}

/* ボタン */
.whisk-about-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px 16px;
    border-radius: 999px;
    border: 1px solid rgba(0, 0, 0, 0.2);
    text-decoration: none;
    font-size: 14px;
    letter-spacing: .02em;

    position: relative;
    overflow: hidden;
    isolation: isolate;
    /* ← ::before の z-index を安全に閉じ込める */
    background: transparent;

    transition: border-color 0.3s ease, color 0.3s ease;
}

/* 左→右に広がる背景レイヤー */
.whisk-about-cta__btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(184, 90, 102, 1);
    transform: scaleX(0);
    transform-origin: left;
    /* ← 左から伸びる */
    transition: transform 0.6s ease;
    z-index: -1;
    /* 文字の後ろへ */
}

/* 右に小さな矢印（擬似要素） */
.whisk-about-cta__btn::after {
    content: "〉";
    font-size: 14px;
    transition: transform 0.6s ease;
}

/* hover */
.whisk-about-cta__btn:hover {
    border-color: rgba(184, 90, 102, 1);
    color: #fff;
}

.whisk-about-cta__btn:hover::before {
    transform: scaleX(1);
}

.whisk-about-cta__btn:hover::after {
    transform: translateX(6px);
}


/* キーボード操作 */
.whisk-about-cta__btn:focus-visible {
    outline: 2px solid rgba(160, 35, 20, .35);
    outline-offset: 2px;
}


@media (max-width: 768px) {
    .whisk-about-cta {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .whisk-about-cta__btn {
        padding: 13px 14px;
    }
}