@charset "UTF-8";


:root {
    --bg: #0b0c0f;
    --fg: #f3f4f6;
    --muted: rgba(243, 244, 246, .72);
    --line: rgba(243, 244, 246, .14);
    --card: rgba(255, 255, 255, .06);
    --card2: rgba(255, 255, 255, .08);
    --shadow: 0 16px 48px rgba(0, 0, 0, .45);
    --max: 1120px;
    --pad: clamp(16px, 3vw, 28px);
    --radius: 22px;
    --ease: cubic-bezier(.2, .8, .2, 1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    font-family: ui-sans-serif, system-ui, -apple-system, "Hiragino Kaku Gothic ProN", "Noto Sans JP", "Yu Gothic", sans-serif;
    background-color: rgb(255, 246, 226);
    line-height: 1.7;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

.container {
    width: min(var(--max), 100%);
    margin: 0 auto;
    padding: 0 var(--pad);
}


.cormorant-garamond {
    font-family: "Cormorant Garamond", serif;
    font-optical-sizing: auto;
    font-weight: bold;
    font-style: normal;
}



/* HERO */
.hero {
    position: relative;
    min-height: 92vh;
    display: grid;
    place-items: end start;
    padding: clamp(56px, 6vw, 96px) 0;
    border-bottom: 1px solid var(--line);
    overflow: hidden;
    color: var(--fg);
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top right,
            rgba(0, 0, 0, 0.39) 30%,
            rgba(0, 0, 0, 0) 40%),
        url("https://gigaplus.makeshop.jp/maam/LP-SIGNORIA/img/signoria-vivace.jpg");
    background-size: cover;
    background-position: center;
    transform: scale(1.03);
    filter: saturate(1.02) contrast(1.05);
}

.hero::after {
    content: "";
    position: absolute;
    inset: -30% -20%;
    background: radial-gradient(circle at 70% 30%, rgba(255, 255, 255, .10), transparent 50%),
        radial-gradient(circle at 25% 60%, rgba(120, 170, 255, .10), transparent 55%);
    pointer-events: none;
}

.hero>.container {
    position: relative;
    z-index: 1;
}

.font-small {
    font-size: .9rem;
}

.brandline {
    display: flex;
    gap: 10px;
    align-items: center;
    letter-spacing: .12em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
}

.branddot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .9);
    box-shadow: 0 0 0 6px rgba(255, 255, 255, .08);
}

.hero h1 {
    margin: 10px 0 15px;
    font-size: clamp(34px, 5.2vw, 64px);
    line-height: 1.08;
    letter-spacing: .02em;
    text-shadow: 0 12px 38px rgb(24, 24, 24);
}

.hero p {
    max-width: 52ch;
    margin: 0;
    font-size: clamp(14px, 1.4vw, 16px);
    text-shadow: 0 10px 28px rgba(0, 0, 0, 0.795);
}

.hero .ctaRow {
    margin-top: 22px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn2 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 44px;
    padding: 0 16px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgb(255 255 255 / 63%);
    backdrop-filter: blur(8px);
    transition: transform .18s var(--ease), background .18s var(--ease), border-color .18s var(--ease);
}

.btn2:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, .10);
    border-color: rgba(255, 255, 255, .22);
}

.btn2.primary {
    background: rgb(255 255 255 / 63%);
    border-color: rgba(255, 255, 255, .22);
}

/* INTRO POEM */
.intro {
    padding: clamp(42px, 5vw, 80px) 0;
    border-bottom: 1px solid var(--line);
}

.introGrid {

    align-items: start;
}

.kicker {
    /* color: var(--muted); */
    letter-spacing: .14em;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 12px;
    margin: 0 0 10px;
}

.poem {
    font-size: clamp(16px, 1.6vw, 18px);
    letter-spacing: .02em;
    margin: 0;
    white-space: pre-line;
}


/* STICKY NAV */
.chapNav {
    position: sticky;
    top: 0;
    z-index: 30;
    backdrop-filter: blur(12px);
    background: rgba(114, 105, 88, 0.65);
    border-bottom: 1px solid var(--line);
}

.chapNavInner {
    display: flex;
    gap: 10px;
    overflow: auto;
    padding: 10px var(--pad);
    scrollbar-width: none;
    justify-content: center;
}

.chapNavInner::-webkit-scrollbar {
    display: none;
}

.chip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(228, 216, 194, 0.623);
    transition: background .18s var(--ease), transform .18s var(--ease), border-color .18s var(--ease);
    font-weight: 700;
    letter-spacing: .02em;
    font-size: 13px;
    opacity: .92;
}

.chip:hover {
    transform: translateY(-1px);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.chip .mini {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    border: 1px solid rgba(255, 255, 255, .20);
}

/* STORY SECTIONS */
section.story {
    padding: 100px 0 180px;
}

.storyGrid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: clamp(18px, 4vw, 56px);
    align-items: start;
}






.photoStack {
    position: relative;
    height: 780px;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    box-shadow: var(--shadow);
}


.js-slideshow .slide {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;

    opacity: 0;
    z-index: 1;
    transform: scale(1.02);
    transition: opacity .7s var(--ease);
    will-change: opacity;

    pointer-events: none;
}

.js-slideshow .slide.is-active {
    opacity: 1;
    z-index: 2;
}


.js-slideshow .slideBtn {
    position: absolute;
    right: 5px;
    top: 50%;
    z-index: 5;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(0, 0, 0, .32);
    color: rgba(255, 255, 255, .9);
    padding: 10px 12px;
    border-radius: 999px;
    backdrop-filter: blur(10px);
    cursor: pointer;
}


.js-slideshow .caption {
    position: absolute;
    left: 14px;
    bottom: 12px;
    z-index: 5;
    font-size: 12px;
    padding: 6px 10px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .16);
    backdrop-filter: blur(10px);
}

.js-slideshow {
    cursor: pointer;
}

.js-slideshow .slideBtn {
    cursor: pointer;
}

@media (max-width: 920px) {
    .photoStack {
        min-height: unset;
        height: 740px;
    }
}







.name {
    font-size: 1.9rem;
    font-weight: 800;
    letter-spacing: .02em;
    margin: 0;
}

.name-fontsmall {
    font-size: .7rem;
}

.name-color {
    font-size: 1.2rem;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    color: var(--muted);
    font-size: 13px;
}

.tag {
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, .04);
    padding: 6px 10px;
    border-radius: 999px;
}

.h2 {
    margin: 10px 0 15px;
    line-height: 1.7;
    letter-spacing: .1em;
    border-top: 1px solid;
    border-bottom: 1px solid;
    padding: 10px 0;
}

.body {
    margin: 0;
    /* color: rgba(243, 244, 246, .86); */
    font-size: 14px;
    line-height: 1.8rem;
}

/* PRODUCT */
.productRow {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, rgba(255, 255, 255, .06), rgba(255, 255, 255, .035));
    padding: 14px 0;
}

.prodImg {
    width: 150px;
    padding-top: 50px;
}


.prodMeta {
    display: grid;
    gap: 6px;
    min-width: 0;
}

.prodMeta .label {
    font-size: 12px;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 700;
}

.prodMeta .title {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.35;
    margin: 0;
    border-bottom: 1px dotted;
}

.prodMeta .desc {
    margin: 0;
    font-size: 13px;
}

.prodMeta .buy {
    margin-top: 6px;
    display: flex;
    flex-wrap: wrap;
    align-content: center;
}

.price {
    font-weight: 800;
}

.link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding-bottom: 0px;
    font-size: .8rem;
    color: #0b0c0f;
}

.container a:hover {
    color: rgb(255, 81, 0);
}

.buy a:hover {
    color: rgb(255, 81, 0);
}

/* MESSAGE */
.message {
    padding: clamp(56px, 6vw, 96px) 0;
}

.messageGrid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(18px, 4vw, 44px);
    align-items: stretch;
}

.brand-logo {
    width: 50%;
    padding: 30px 0 60px;
}



.movie {
    aspect-ratio: 16/9;
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
}

.movie iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.credits {
    margin-top: 26px;
    border-top: 1px solid var(--line);
    padding-top: 16px;
    color: var(--muted);
    font-size: 12px;
    display: grid;
    gap: 6px;
    color: #0b0c0f;
}

.credits a:hover {
    color: rgb(255, 81, 0);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .7s var(--ease), transform .7s var(--ease);
    will-change: opacity, transform;
}

.reveal.is-in {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE */
@media (max-width: 920px) {

    .introGrid,
    .storyGrid,
    .messageGrid {
        grid-template-columns: 1fr;
    }

    .photoStack {
        min-height: 360px;
    }

    .productRow {
        grid-template-columns: 120px 1fr;
    }

    .prodImg {
        width: 120px;
    }
}

@media (max-width: 420px) {
    .hero {
        min-height: 88vh;
        padding: clamp(30px, 6vw, 96px) 0;
    }

    .hero h1 {
        font-size: 3rem;
    }

    .hero::before {
        background: linear-gradient(to bottom, rgb(0 0 0 / 0%) 0%, rgb(0 0 0 / 0%) 60%, rgb(0 0 0 / 43%) 80%), url(https://gigaplus.makeshop.jp/maam/LP-SIGNORIA/img/vivace-purple3.jpg);
        background-size: cover;
        background-position: center;
    }

    .productRow {
        grid-template-columns: 1fr;
    }

    .prodImg {
        width: 100%;
    }

    .poem {
        font-size: .9rem;
    }

    .chapNavInner {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .chip {
        padding: 5px 14px;
        font-size: 9px;
    }

    .photoStack {
        height: 600px;
    }

    .storyGrid {
        gap: 40px;
    }

    .prodImg img {
        width: 150px;
    }

    .prodMeta {
        padding-bottom: 60px;
    }

    .productRow {
        gap: 0;
    }

    .vivace-breadcrumb {
        top: 50px !important;
        font-size: .8rem !important;
        background: none !important;
    }

    .price {
        font-weight: 400;
    }

    .brand-logo {
        width: 70%;
        display: block;
        margin: 0 auto;
    }

    .btn2.primary {
        font-size: .9rem !important;
    }

    .btn2 {
        font-size: .9rem !important;;
    }
}