/* =========================================
   DOLL PINK PAGE (menu/dollpink.html)
   ========================================= */
    body.dollpink-page {
        --dp-pink-50:   #fff5f7;
        --dp-pink-100:  #ffe4ea;
        --dp-pink-200:  #ffb8c8;
        --dp-pink-300:  #ff8faa;
        --dp-pink-400:  #f06080;
        --dp-pink-500:  #d94070;
        --dp-rose-dark: #7a2340;
        --dp-accent-pink: #f06080;
        --dp-accent-pink-soft: #ffd9e5;
        --dp-cream:     #fdf9f9;
        --dp-text-dark: #3a1f2a;
        --dp-text-mid:  #7a5c67;
        --dp-text-light:#b89aa5;
        background: var(--dp-cream);
    }

    /* ── HERO ── */
    .dp-hero {
        background: linear-gradient(135deg, #fff0f3 0%, #fde8ee 40%, #fad4e2 100%);
        position: relative;
        overflow: hidden;
        padding: 100px 0 70px;
    }
    .dp-hero::before {
        content: '';
        position: absolute;
        width: 600px; height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(255,180,200,0.25) 0%, transparent 70%);
        top: -200px; right: -150px;
        pointer-events: none;
    }
    .dp-eyebrow {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: 0.85rem;
        letter-spacing: 0.28em;
        color: var(--dp-pink-400);
        text-transform: uppercase;
        margin-bottom: 10px;
    }
    .dp-hero-title {
        font-family: 'Noto Serif JP', serif;
        font-size: clamp(1.8rem, 4vw, 2.8rem);
        font-weight: 600;
        color: var(--dp-text-dark);
        line-height: 1.4;
        margin-bottom: 20px;
    }
    .dp-hero-title span { color: var(--dp-accent-pink); }
    .dp-hero-desc {
        font-size: 0.92rem;
        line-height: 1.95;
        color: var(--dp-text-mid);
        max-width: 440px;
        margin-bottom: 26px;
    }
    .dp-badge {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        background: white;
        border: 1px solid var(--dp-pink-200);
        color: var(--dp-pink-500);
        border-radius: 50px;
        padding: 5px 16px;
        font-size: 0.78rem;
        margin: 3px 3px 3px 0;
        letter-spacing: 0.05em;
    }
    .dp-badge i { font-size: 0.7rem; }
    .dp-hero-desc-block {
        margin: 1.4rem 0 1.8rem;
        padding: 1.2rem 1.4rem;
        background: rgba(255, 255, 255, 0.65);
        border-left: 4px solid #e8a0b0;
        border-radius: 0 10px 10px 0;
        backdrop-filter: blur(4px);
    }
    .dp-hero-desc-main {
        font-size: 1.05rem;
        font-weight: 600;
        line-height: 1.9;
        color: #3d3330;
        margin-bottom: 0.6rem;
        font-family: "Noto Serif JP", serif;
        letter-spacing: 0.04em;
    }
    .dp-hero-desc-sub {
        font-size: 0.85rem;
        line-height: 1.85;
        color: #7a6f6d;
        letter-spacing: 0.03em;
    }
    .dp-merit-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
        margin-bottom: 1.8rem;
    }
    .dp-merit-card {
        background: linear-gradient(135deg, #d4728a 0%, #c45d78 100%);
        border: 1.5px solid #c45d78;
        border-radius: 50%;
        aspect-ratio: 1 / 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 12px;
        padding: 16px;
        box-shadow: 0 10px 24px rgba(212, 114, 138, 0.22);
    }
    .dp-merit-icon-wrap {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 58px;
        height: 58px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.28);
        border: 2px solid rgba(255, 255, 255, 0.7);
        box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
        font-size: 24px;
        color: #fff;
    }
    .dp-merit-title {
        font-size: 16px;
        font-weight: 700;
        color: #fff;
        margin: 0;
        letter-spacing: 0.03em;
        text-align: center;
        line-height: 1.45;
        text-shadow: 0 1px 2px rgba(0, 0, 0, 0.12);
    }
    .dp-merit-title em {
        font-style: normal;
        font-size: 21px;
        font-weight: 800;
    }
    .dp-accent,
    .dp-float-icon { color: var(--dp-accent-pink); }
    .dp-btn {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: var(--dp-pink-500);
        color: white;
        border-radius: 50px;
        padding: 13px 38px;
        font-size: 0.85rem;
        font-family: 'Noto Sans JP', sans-serif;
        letter-spacing: 0.1em;
        transition: all 0.3s ease;
        box-shadow: 0 4px 20px rgba(217,64,112,0.25);
        margin-top: 18px;
        text-decoration: none;
    }
    .dp-btn:hover {
        background: var(--dp-rose-dark);
        box-shadow: 0 6px 28px rgba(217,64,112,0.35);
        transform: translateY(-1px);
        color: white;
    }

    /* Hero photo */
    .dp-hero-img-wrap {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    .dp-hero-frame {
        width: 300px; height: 375px;
        border-radius: 200px 200px 160px 160px;
        overflow: hidden;
        box-shadow: 0 20px 60px rgba(217,64,112,0.15);
        background: linear-gradient(160deg, #ffd6e3, #ffecf2);
        flex-shrink: 0;
    }
    .dp-hero-frame img {
        width: 100%; height: 100%;
        object-fit: cover;
        display: block;
    }
    .dp-img-placeholder {
        width: 100%; height: 100%;
        display: flex; flex-direction: column;
        align-items: center; justify-content: center;
        gap: 10px;
        color: var(--dp-pink-300);
    }
    .dp-img-placeholder i { font-size: 2.2rem; opacity: 0.55; }
    .dp-img-placeholder span { font-size: 0.7rem; color: var(--dp-text-light); letter-spacing: 0.1em; }

    .dp-float-tag {
        position: absolute;
        background: white;
        border-radius: 16px;
        padding: 10px 18px;
        box-shadow: 0 8px 30px rgba(0,0,0,0.08);
        font-size: 0.8rem;
        color: var(--dp-text-dark);
        display: flex; align-items: center; gap: 7px;
        z-index: 3;
    }
    .dp-float-tag.tr { top: 16px; right: -10px; }
    .dp-float-tag.bl { bottom: 36px; left: -18px; }
    .dp-float-tag i { color: var(--dp-pink-400); font-size: 0.82rem; }

    /* ── SECTION COMMON ── */
    .dp-section { padding: 64px 0; }
    .dp-section.bg-white  { background: #fff; }
    .dp-section.bg-pink   { background: var(--dp-pink-50); }
    .dp-section.bg-cream  { background: var(--dp-cream); }
    .dp-section-label {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: 0.75rem;
        letter-spacing: 0.32em;
        color: var(--dp-accent-pink);
        text-transform: uppercase;
        margin-bottom: 6px;
    }
    .dp-section-title {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.45rem;
        font-weight: 400;
        color: var(--dp-text-dark);
        margin-bottom: 4px;
    }
    .dp-section-title::before {
        content: '';
        display: inline-block;
        width: 4px; height: 1.2em;
        background: var(--dp-accent-pink);
        vertical-align: middle;
        margin-right: 12px;
        border-radius: 2px;
    }
    .dp-divider {
        width: 40px; height: 1px;
        background: var(--dp-pink-200);
        margin: 14px 0 36px;
    }

    /* ── AREAS ── */
    .dp-chip {
        display: inline-flex; align-items: center; gap: 6px;
        border: 1.5px solid var(--dp-pink-200);
        border-radius: 50px;
        padding: 6px 22px;
        font-size: 0.88rem;
        color: var(--dp-pink-500);
        margin: 5px 4px;
        transition: all 0.2s;
    }
    .dp-chip i { font-size: 0.72rem; }
    .dp-chip:hover { background: var(--dp-accent-pink-soft); border-color: var(--dp-accent-pink); }
    .dp-note { font-size: 0.78rem; color: var(--dp-text-light); margin-top: 12px; }
    .dp-note i { color: var(--dp-pink-300); margin-right: 4px; font-size: 0.75rem; }

    /* ── CASE CARDS ── */
    .dp-case-card {
        background: white;
        border-radius: 20px;
        overflow: hidden;
        box-shadow: 0 4px 24px rgba(217,64,112,0.06);
        height: 100%;
        transition: transform 0.3s, box-shadow 0.3s;
    }
    .dp-case-swiper {
        overflow: visible;
        padding: 6px 4px 56px;
    }
    .dp-case-swiper .swiper-slide {
        height: auto;
    }
    .dp-case-pagination {
        position: static;
        margin-top: 26px;
        text-align: center;
    }
    .dp-case-pagination .swiper-pagination-bullet {
        width: 10px;
        height: 10px;
        background: #e5b4c1;
        opacity: 1;
        margin: 0 5px !important;
    }
    .dp-case-pagination .swiper-pagination-bullet-active {
        background: var(--dp-pink-500);
        transform: scale(1.15);
    }
    .dp-case-nav {
        position: absolute;
        top: 42%;
        transform: translateY(-50%);
        z-index: 5;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        background: rgba(255, 255, 255, 0.92);
        color: var(--dp-pink-500);
        box-shadow: 0 10px 28px rgba(217,64,112,0.16);
        cursor: pointer;
        transition: transform 0.25s ease, box-shadow 0.25s ease;
    }
    .dp-case-nav:hover {
        transform: translateY(-50%) scale(1.04);
        box-shadow: 0 14px 34px rgba(217,64,112,0.22);
    }
    .dp-case-prev { left: -18px; }
    .dp-case-next { right: -18px; }
    .dp-case-card:hover {
        transform: translateY(-4px);
        box-shadow: 0 12px 36px rgba(217,64,112,0.12);
    }
    .dp-case-img {
        height: 240px;
        overflow: hidden;
        background: linear-gradient(135deg, #ffd6e3, #ffe8ef);
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 0;
    }
    .dp-case-img.v2 { background: linear-gradient(135deg, #f5d0de, #fce4ec); }
    .dp-case-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }
    .dp-case-body { padding: 22px 24px; }
    .dp-case-body p { font-size: 0.85rem; line-height: 1.85; color: var(--dp-text-mid); margin: 0; }

    /* ── ABOUT DOLL PINK ── */
    .dp-about-summary {
        display: flex;
        align-items: center;
        min-height: 100%;
    }
    .dp-about-summary-text {
        padding-left: 0;
        font-size: 1.02rem;
        line-height: 1.8;
    }
    .dp-about-photo-card { height: 100%; }
    .dp-about-photo {
        height: 100%;
        min-height: 220px;
    }
    .dp-about-point {
        margin-bottom: 14px;
        padding: 22px 22px;
    }
    .dp-about-point:last-child { margin-bottom: 0; }
    .dp-about-point-title {
        margin-bottom: 8px;
        font-size: 1.02rem;
        color: var(--dp-pink-500);
    }
    .dp-about-point-text {
        padding-left: 0;
        line-height: 1.75;
    }

    /* ── STEPS ── */
    .dp-step-list { list-style: none; padding: 0; margin: 0; }
    .dp-step-list li {
        padding: 12px 0;
        font-size: 0.9rem;
        color: var(--dp-text-mid);
        border-bottom: 1px solid var(--dp-pink-100);
        display: flex; align-items: center; gap: 12px;
    }
    .dp-step-list li:last-child { border-bottom: none; }
    .dp-step-num {
        min-width: 28px; height: 28px;
        border-radius: 50%;
        background: var(--dp-pink-100);
        color: var(--dp-pink-500);
        font-size: 0.75rem; font-weight: 500;
        display: flex; align-items: center; justify-content: center;
        flex-shrink: 0;
    }
    .dp-step-list .dp-sico { color: var(--dp-accent-pink); font-size: 0.85rem; width: 16px; text-align: center; flex-shrink: 0; }

    .dp-step-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
    .dp-step-card { border-radius: 14px; overflow: hidden; }
    .dp-step-img {
        height: 110px;
        display: flex; align-items: center; justify-content: center;
        overflow: hidden;
    }
    .dp-step-img.c1 { background: linear-gradient(135deg, #fce4ec, #f8bbd0); }
    .dp-step-img.c2 { background: linear-gradient(135deg, #ffd6e3, #ffb8c8); }
    .dp-step-img.c3 { background: linear-gradient(135deg, #ffecf2, #fecdd6); }
    .dp-step-img.c4 { background: linear-gradient(135deg, #f9d0dd, #f5a9be); }
    .dp-step-img.c5 { background: linear-gradient(135deg, #fcd5e3, #f8b4ca); }
    .dp-step-img.c6 { background: linear-gradient(135deg, #fae0ea, #f6bdd0); }
    .dp-step-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
    .dp-step-label {
        font-size: 0.7rem; color: var(--dp-text-light);
        text-align: center; padding: 6px 4px; background: white;
    }
    .dp-step-label span {
        display: block; font-size: 0.64rem;
        color: var(--dp-accent-pink);
        font-family: 'Cormorant Garamond', serif; font-style: italic;
    }

    /* ── FAQ ── */
    .dp-faq-item {
        background: white;
        border-radius: 16px;
        padding: 24px 28px;
        margin-bottom: 14px;
        box-shadow: 0 2px 16px rgba(217,64,112,0.06);
    }
    .dp-faq-q {
        font-size: 0.9rem; font-weight: 500;
        color: var(--dp-text-dark);
        margin-bottom: 10px;
        display: flex; align-items: flex-start; gap: 10px;
    }
    .dp-faq-q i { color: var(--dp-accent-pink); font-size: 1rem; margin-top: 1px; flex-shrink: 0; }
    .dp-faq-a { font-size: 0.85rem; color: var(--dp-text-mid); line-height: 1.85; margin: 0; padding-left: 26px; }

    @media (max-width: 767.98px) {
        .dp-hero-desc-block { padding: 1rem; }
        .dp-hero-desc-main { font-size: 0.95rem; }
        .dp-about-summary-text { font-size: 0.95rem; }
        .dp-about-photo { min-height: 200px; }
        .dp-case-swiper {
            padding-bottom: 50px;
        }
        .dp-case-img {
            height: 190px;
            padding: 0;
        }
        .dp-case-img img { object-fit: cover; }
        .dp-case-nav {
            display: none;
        }
    }

    @media (max-width: 576px) {
        .dp-merit-grid {
            grid-template-columns: repeat(3, 1fr);
            gap: 6px;
        }
        .dp-merit-card {
            gap: 6px;
            padding: 8px 4px;
            min-width: 0;
        }
        .dp-merit-icon-wrap {
            width: 34px;
            height: 34px;
            font-size: 14px;
            border-width: 1.5px;
        }
        .dp-merit-title {
            font-size: 10.5px;
            letter-spacing: 0.01em;
            line-height: 1.25;
        }
        .dp-merit-title em { font-size: 13px; }
    }

    /* ── PRICE ── */
    .dp-price-card {
        background: linear-gradient(135deg, #fff0f3 0%, #dff4f2 100%);
        border: 1.5px solid var(--dp-pink-200);
        border-radius: 24px;
        padding: 48px 40px;
        text-align: center;
        position: relative;
        overflow: hidden;
    }
    .dp-price-card::after {
        content: '';
        position: absolute;
        width: 300px; height: 300px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(217,64,112,0.12), transparent 70%);
        bottom: -100px; right: -80px;
        pointer-events: none;
    }
    .dp-price-sublabel {
        font-family: 'Cormorant Garamond', serif;
        font-style: italic;
        font-size: 0.9rem; color: var(--dp-accent-pink);
        letter-spacing: 0.2em; margin-bottom: 4px;
    }
    .dp-price-title {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.5rem; font-weight: 600;
        color: var(--dp-text-dark); margin-bottom: 20px;
    }
    .dp-price-orig { font-size: 1rem; color: var(--dp-text-light); text-decoration: line-through; margin-bottom: 6px; }
    .dp-price-main {
        font-family: 'Noto Serif JP', serif;
        font-size: 3rem; font-weight: 600;
        color: var(--dp-pink-500); line-height: 1.1; margin-bottom: 4px;
    }
    .dp-price-main small { font-size: 1.2rem; font-weight: 400; color: var(--dp-text-mid); }
    .dp-price-desc { font-size: 0.82rem; color: var(--dp-text-mid); margin: 16px 0 0; line-height: 1.8; }

    .dp-cta {
        background: linear-gradient(90deg, var(--dp-rose-dark) 0%, var(--dp-pink-500) 100%);
        padding: 26px 36px;
        border-radius: 16px;
        color: white;
        font-size: 0.9rem; line-height: 1.7;
        text-align: center;
        margin-top: 28px;
        box-shadow: 0 8px 32px rgba(217,64,112,0.3);
        display: flex; align-items: center; justify-content: center; gap: 10px;
    }
    .dp-cta i { font-size: 1rem; flex-shrink: 0; }

    /* ── BOOKING ── */
    .dp-booking-section {
        background: var(--dp-rose-dark);
    }
    .dp-booking-banner {
        background: transparent;
        position: relative;
        overflow: hidden;
        padding: 56px 32px;
    }
    .dp-booking-banner-inner {
        position: relative;
        z-index: 1;
        max-width: 560px;
        margin: 0 auto;
    }
    .dp-booking-eyebrow {
        font-family: 'Cormorant Garamond', serif;
        font-size: 0.63rem;
        letter-spacing: 0.45em;
        color: var(--dp-pink-200);
        text-transform: uppercase;
        margin-bottom: 12px;
    }
    .dp-booking-title {
        font-family: 'Noto Serif JP', serif;
        font-size: 1.38rem;
        font-weight: 300;
        color: var(--dp-cream);
        letter-spacing: 0.06em;
        line-height: 1.65;
        margin-bottom: 10px;
        overflow-wrap: break-word;
        word-break: keep-all;
        line-break: strict;
    }
    .dp-booking-sub {
        font-size: 0.75rem;
        color: var(--dp-pink-200);
        letter-spacing: 0.1em;
        line-height: 1.9;
        margin-bottom: 32px;
        overflow-wrap: break-word;
        word-break: keep-all;
        line-break: strict;
    }
    .dp-booking-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 16px 36px;
        border-radius: 0;
        text-decoration: none;
        color: var(--dp-rose-dark);
        background: var(--dp-cream);
        font-size: 0.82rem;
        font-weight: 500;
        letter-spacing: 0.12em;
        transition: background 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease;
    }
    .dp-booking-btn:hover {
        color: var(--dp-rose-dark);
        background: var(--dp-pink-100);
        transform: translateY(-2px);
        box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
    }
    .dp-booking-btn svg {
        width: 16px;
        height: 16px;
        fill: none;
        stroke: var(--dp-rose-dark);
        stroke-width: 2;
        stroke-linecap: round;
        stroke-linejoin: round;
        transition: transform 0.3s ease;
    }
    .dp-booking-btn:hover svg {
        transform: translateX(4px);
    }
    .dp-booking-btn-note {
        margin: 12px 0 0;
        text-align: center;
        font-size: 0.63rem;
        color: var(--dp-pink-200);
        letter-spacing: 0.1em;
        opacity: 0.7;
    }

    @media (max-width: 576px) {
        .dp-booking-section {
            padding: 36px 0 64px;
        }
        .dp-booking-banner {
            padding: 40px 24px;
        }
        .dp-booking-title {
            font-size: 1.18rem;
        }
        .dp-booking-btn {
            padding: 16px 22px;
            font-size: 0.8rem;
            letter-spacing: 0.08em;
        }
    }

    /* ── ANIMATIONS ── */
    @keyframes dpFadeUp {
        from { opacity: 0; transform: translateY(22px); }
        to   { opacity: 1; transform: translateY(0); }
    }
    .dp-fu   { animation: dpFadeUp 0.7s ease both; }
    .dp-d1   { animation-delay: 0.1s; }
    .dp-d2   { animation-delay: 0.2s; }
    .dp-d3   { animation-delay: 0.3s; }
    .dp-d4   { animation-delay: 0.4s; }


    footer{
        margin-top: 0;
    }

    .dp-price-homecare{
        background-color: var(--dp-rose-dark);
        width: 60%;
        margin: 20px auto;
        padding: 5px 0;
        border-radius: 20px;
    }

    .dp-price-homecare .dp-price-desc{
        color: var(--dp-pink-50);
        margin: 0;
    }

    @media (max-width: 576px) {
        .dp-price-homecare{
            width: 90%
        }
    }
