@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;700&family=Noto+Serif+JP:wght@400;700&display=swap');

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;

}

:root {
    --pink-light: #f8c8d4;
    --pink-mid: #e86d8a;
    --pink-dark: #c94070;
    --pink-bg: #fce8ef;
    --teal-light: #a8ddd1;
    --teal-mid: #3abba0;
    --teal-dark: #1e8a74;
    --teal-bg: #e0f4f0;
    --navy-light: #9bafd0;
    --navy-mid: #3a5f9a;
    --navy-dark: #1e3f72;
    --navy-bg: #dce6f5;
    --white: #ffffff;
    --off-white: #fafaf8;
    --gray-light: #f2f0ea;
    --gray-mid: #c8c6be;
    --gray-dark: #6e6c66;
    --text-primary: #2c2a26;
    --text-secondary: #6e6c66;
    --star-fill: #f5c842;
    --radius: 12px;
    --shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
}

body {
    color: var(--text-primary);
    line-height: 1.6;
}

a {
    text-decoration: none;
}

/* ─── HERO ─── */
.hero {
    position: relative;
    overflow: hidden;
    padding: 60px 24px 48px;
    /* background: linear-gradient(135deg, #fce8ef 0%, #f8c8d4 50%, #fce8ef 100%); */
    text-align: center;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 70% 40%, rgba(232, 109, 138, 0.12) 0%, transparent 60%);
    pointer-events: none;
}

.hero-img {
    width: 100%;
    max-width: 1000px;
    margin: auto;
    display: block;
    aspect-ratio: 2000 / 825;
    overflow: hidden;
}

.hero-img img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-eyebrow {
    margin-bottom: 12px;
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    display: none;
}

.hero-title {
    margin-bottom: 8px;
    color: var(--text-primary);
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(32px, 6vw, 56px);
    font-weight: 700;
    line-height: 1.2;
    display: none;
}

.hero-title span {
    color: var(--pink-dark);
}

.hero-subtitle {
    margin-bottom: 10px;
    color: var(--text-secondary);
    font-size: 16px;
    letter-spacing: 0.12em;
    display: none;
}

.hero-text {
    margin-top: 7px;
    margin-bottom: 32px;
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.12em;
}

.hero-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
    margin-bottom: 36px;
}

.badge {
    padding: 6px 18px;
    border: 1px solid var(--pink-light);
    border-radius: 999px;
    background: var(--white);
    color: var(--pink-dark);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.06em;
}

.hero-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.hero-nav a {
    display: inline-block;
    padding: 12px 28px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: transform 0.15s, opacity 0.15s;
}

.hero-nav a:hover {
    transform: translateY(-2px);
    opacity: 0.88;
    color: #fff !important;
}

.nav-flat,
.nav-volume,
.nav-premade {
    color: #fff;
}

.nav-flat {
    background: var(--pink-dark);
}

.nav-volume {
    background: var(--teal-dark);
}

.nav-premade {
    background: var(--navy-dark);
}

/* ─── SECTION WRAPPER ─── */
.section {
    max-width: 1280px;
    margin: 0 auto;
    padding: 64px 20px 72px;
}

.section-bg-pink,
.section-bg-teal,
.section-bg-navy {
    max-width: none;
    padding: 64px 20px 72px;
}

.section-bg-pink {
    background: #e673a9;
}

.section-bg-teal {
    background: var(--teal-bg);
}

.section-bg-navy {
    background: var(--navy-bg);
}

.section-bg-pink .section,
.section-bg-teal .section,
.section-bg-navy .section {
    padding-top: 0;
    padding-bottom: 0;
}

/* ─── SECTION HEADER ─── */
.section-header {
    display: flex;
    align-items: flex-end;
    gap: 20px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 2px solid;
    color: #fff;
}

.section-header.teal {
    border-color: var(--teal-mid);
}

.section-header.navy {
    border-color: var(--navy-mid);
}

.navy {
    color: var(--navy-mid);
}

.teal {
    color: var(--teal-mid);
}

.section-title-jp {
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(28px, 5vw, 44px);
    font-weight: 700;
    line-height: 1.1;
}

.section-title-text {
    font-size: 14px;
    line-height: 175%;
    padding: 15px 5px 0;
}

.section-title-jp.pink {
    color: var(--pink-dark);
}

.section-title-jp.teal {
    color: var(--teal-dark);
}

.section-title-jp.navy {
    color: var(--navy-dark);
}

.section-title-en {
    margin-bottom: 6px;
    /* color: #ededed; */
    font-size: 12px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.section-title-en.pink {
    color: var(--pink-dark);
}

.section-title-en.teal {
    color: var(--teal-dark);
}

.section-title-en.navy {
    color: var(--navy-dark);
}

.section-title-text.pink {
    color: var(--pink-dark);
}

.section-title-text.teal {
    color: var(--teal-dark);
}

.section-title-text.navy {
    color: var(--navy-dark);
}

.section-desc {
    max-width: 320px;
    color: var(--text-secondary);
    font-size: 13px;
    line-height: 1.6;
}

/* ─── PRODUCT GRID ─── */
.scroll-hint {
    display: none;
    margin-bottom: 10px;
    padding-bottom: 10px;
    /* color: #fff; */
    font-size: 11px;
    letter-spacing: 0.06em;
}

.product-grid-wrapper {
    overflow-x: visible;
    margin-right: 0;
    margin-left: 0;
    padding-bottom: 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 16px;
    width: auto;
    margin-top: 10px;
}

.product-card {
    display: flex;
    flex-direction: column;
    width: auto;
    overflow: hidden;
    padding-top: 25px;
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    transition: transform 0.2s, box-shadow 0.2s;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.13);
}

.card-des {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    height: 100px;
    color: var(--text-primary);
    font-size: 12px;
}

.card-des-img {
    width: 30%;
}

.card-des-img img {
    width: 100%;
}

.card-des-text {
    width: 65%;
    padding-right: 5px;
}

.card-img-area {
    width: 100%;
    padding: 0px 10px 5px;
    background-color: #fff;
}

.card-img-area img {
    width: 100%;
}

.card-title {
    padding-left: 25px;
}

.card-title .card-accent {
    padding-left: 25px;
    margin-top: 5px;
}

.card-body {
    display: flex;
    flex: 1;
    flex-direction: column;
    gap: 8px;
    padding: 0 14px 16px;
}

.card-name-jp {
    color: var(--text-primary);
    font-size: 16px;
    font-weight: 700;
    line-height: 1.3;
}

.card-name-en {
    color: var(--text-secondary);
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.card-accent {
    width: 24px;
    height: 2px;
    margin: 2px 0;
    border-radius: 999px;
}

.accent-pink {
    background: var(--pink-mid);
}

.accent-teal {
    background: var(--teal-mid);
}

.accent-navy {
    background: var(--navy-mid);
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.spec-table tr {
    border-top: 0.5px solid var(--gray-light);
}

.spec-table td {
    padding: 5px 0;
    font-size: 14px;
    vertical-align: top;
}

.spec-table td:first-child {
    width: 45%;
    color: var(--text-secondary);
}

.spec-table td:last-child {
    color: var(--text-primary);
    font-weight: 500;
}

.stars {
    display: flex;
    gap: 2px;
    margin-top: 2px;
}

.star {
    font-size: 16px;
}

.star.filled {
    color: var(--star-fill);
}

.star.empty {
    color: var(--gray-mid);
}

.card-tag {
    display: inline-block;
    align-self: flex-start;
    margin-top: auto;
    padding: 3px 9px;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.08em;
}

.tag-pink {
    background: var(--pink-bg);
    color: var(--pink-dark);
}

.tag-teal {
    background: var(--teal-bg);
    color: var(--teal-dark);
}

.tag-navy {
    background: var(--navy-bg);
    color: var(--navy-dark);
}




/* ─── SPEC ROW LABELS ─── */
.spec-legend {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
    margin-bottom: 24px;
    padding: 16px;
    border: 0.5px solid rgba(0, 0, 0, 0.06);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.6);
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text-secondary);
    font-size: 11px;
}

.legend-dot {
    flex-shrink: 0;
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.product-card-cta {
    display: flex;
    align-items: center;
    padding: 0 15px;
}

.product-card-cta a {
    width: 100%;
    max-width: 500px;
    display: block;
    margin: 50px auto 0;
    background-color: #1a1916;
    text-align: center;
    font-size: 24px;
}

.note {
    font-size: 10px;
    padding-left: 3px;
    padding-top: 5px;
}

/* ─── FOOTER CTA ─── */
.footer-cta {
    padding: 64px 24px;
    background: var(--text-primary);
    color: var(--white);
    text-align: center;
}

.footer-cta h2 {
    margin-bottom: 12px;
    font-family: 'Noto Serif JP', serif;
    font-size: clamp(22px, 4vw, 36px);
    font-weight: 700;
}

.footer-cta p {
    margin-bottom: 32px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    letter-spacing: 0.06em;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.cta-btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.06em;
    transition: transform 0.15s, opacity 0.15s;
}

.cta-btn:hover {
    transform: translateY(-2px);
    /* opacity: 0.9; */
}

.cta-primary {
    background: var(--pink-mid);
    color: #fff !important;
}

.cta-secondary {
    border: 1px solid rgba(255, 255, 255, 0.4);
    background: transparent;
    color: #fff;
}



/* ─── SP ─── */
@media (max-width: 600px) {
    .hero {
        padding: 25px 24px 48px;
    }

    .hero-nav {
        flex-direction: column;
        align-items: center;
    }

    .hero-nav a {
        color: #fff;
        width: 100%;
        text-align: center;
    }

    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        margin-bottom: 10px;
    }

    .scroll-hint {
        display: block;
        font-size: 12px;
    }

    .section-bg-pink,
    .section-bg-teal,
    .section-bg-navy {
        padding: 35px 20px 50px;
    }

    .section-bg-pink .section,
    .section-bg-teal .section,
    .section-bg-navy .section {
        padding: 0;
    }

    .product-grid-wrapper {
        overflow-x: auto;
        margin-right: -20px;
        margin-left: -20px;
        padding: 0 0 12px;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .product-grid-wrapper::-webkit-scrollbar {
        display: none;
    }

    .product-grid {
        display: flex;
        flex-wrap: nowrap;
        gap: 12px;
        width: max-content;
        padding: 0 15px;
    }

    .product-card {
        flex-shrink: 0;
        width: 250px;
    }

    .product-card-cta {
        flex-direction: column;
    }

    .product-card-cta a {
        margin: 20px auto 0;
        font-size: 16px;
        padding: 15px 0;
    }

    .product-card:hover {
        transform: none;
        box-shadow: none;
    }
}