/* =========================================
   Tokens — クリーン＋洗練されたキッズパレット
   ========================================= */
:root {
    /* ベースカラー */
    --cream:     #FAF8F4;
    --warm-bg:   #F5F0E8;
    --sand:      #EDE5DA;

    /* アクセント — 落ち着いた鮮やかさ */
    --sky:       #3480D4;   /* リッチブルー（ビビッド→成熟） */
    --sun:       #F4A200;   /* ウォームアンバー（蛍光黄→琥珀） */
    --coral:     #E05040;   /* マットトマト（蛍光赤→落ち着き） */
    --mint:      #48A27A;   /* ディープセージ（キャンディ→上品） */

    /* テキスト・ダーク */
    --ink:       #1E1A17;
    --ink-mid:   #5E5248;
    --ink-light: #9A8D82;

    /* 受賞 */
    --gold:      #C9A84C;
    --gold-bg:   #2A2518;

    /* Font stacks — スッキリゴシック＋柔らかさ */
    --f-body:  'M PLUS 1p', 'Hiragino Sans', 'Yu Gothic', sans-serif;
    --f-en:    'Outfit', sans-serif;
    --f-hand:  'Klee One', 'M PLUS 1p', sans-serif;

    --container: 1060px;
    --r:  16px;
    --r-lg: 24px;
}

/* =========================================
   Reset
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { font-size: 62.5%; scroll-behavior: smooth; }
body {
    font-family: var(--f-body);
    font-size: 1.6rem;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.9;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { background: none; border: none; cursor: pointer; font-family: inherit; }

.container { width: min(90%, var(--container)); margin-inline: auto; }
.sp-only { display: none; }

/* =========================================
   Scroll-triggered animation primitives
   ========================================= */
.js-fade {
    opacity: 0;
    transform: translateY(32px) scale(0.97);
    transition: opacity 0.65s ease-out, transform 0.65s cubic-bezier(.22,1,.36,1);
}
.js-fade.is-visible { opacity: 1; transform: none; }


/* =========================================
   Section Label
   ========================================= */
.section-label {
    margin-bottom: 4.4rem;
    text-align: center;
}
.section-label__en {
    display: block;
    font-family: var(--f-en);
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: .6rem;
}
.section-label__ja {
    font-size: clamp(2.4rem, 5vw, 3.4rem);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: .02em;
}
.section-label--light .section-label__en { color: rgba(255,255,255,.45); }
.section-label--light .section-label__ja { color: #fff; }


/* =========================================
   HERO
   ========================================= */
.hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: var(--cream);
    overflow: hidden;
}

/* 手描きデコ */
.hero__deco { position: absolute; pointer-events: none; }
.hero__deco--sun {
    width: 120px; top: 5%; right: 8%;
    animation: spin-slow 22s linear infinite, float-up 5.5s ease-in-out infinite;
}
.hero__deco--wave {
    width: 260px; bottom: 6%; left: -20px;
    animation: drift 8s ease-in-out infinite alternate;
}
@keyframes spin-slow { to { transform: rotate(360deg); } }
@keyframes drift { from { transform: translateX(0); } to { transform: translateX(24px); } }

/* ========== 子ども感アニメーション ========== */

/* 浮遊 — deco要素 */
@keyframes float-up {
    0%,100% { transform: translateY(0) rotate(0deg) scale(1); }
    40%      { transform: translateY(-14px) rotate(4deg) scale(1.04); }
    70%      { transform: translateY(-8px) rotate(-2deg) scale(1.02); }
}

/* はみ出しバウンス — チップ/タグのホバー */
@keyframes chip-bounce {
    0%        { transform: translateY(-5px) scale(1.1); }
    30%       { transform: translateY(-9px) scale(1.12) rotate(-5deg); }
    60%       { transform: translateY(-7px) scale(1.1) rotate(4deg); }
    100%      { transform: translateY(-5px) scale(1.1); }
}

/* ぷるぷる — 価格タグ */
@keyframes price-jiggle {
    0%,100%  { transform: rotate(3deg) scale(1); }
    25%      { transform: rotate(6deg) scale(1.04); }
    75%      { transform: rotate(0deg) scale(1.04); }
}

/* ポップイン — バッジ・ラベル */
@keyframes badge-pop {
    0%   { transform: scale(0.8); opacity: 0; }
    60%  { transform: scale(1.08); opacity: 1; }
    80%  { transform: scale(0.97); }
    100% { transform: scale(1); opacity: 1; }
}

/* ゆらゆら — magic label */
@keyframes label-sparkle {
    0%,100% { opacity: .85; letter-spacing: .28em; }
    50%     { opacity: 1;   letter-spacing: .32em; }
}

.hero__inner {
    display: grid;
    grid-template-columns: 3fr 2fr;
    gap: 4rem;
    align-items: center;
    width: min(90%, var(--container));
    margin-inline: auto;
}

/* Text */
.hero__text { display: flex; flex-direction: column; gap: 2rem; }

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    align-self: flex-start;
    background: #D70C1E;
    color: #fff;
    font-family: var(--f-hand);
    font-size: 1.45rem;
    font-weight: 700;
    padding: .9rem 2rem .9rem 1.5rem;
    border-radius: 100px;
    letter-spacing: .06em;
    border: 1.5px solid rgba(201,168,76,.35);
}
.hero__badge::before {
    content: '★';
    font-size: 1em;
    line-height: 1;
    color: var(--gold);
}

.hero__title {
    display: flex;
    flex-direction: column;
    text-align: left;
}
/* 1行目・2行目を縦に並べるラッパー（モバイルで横並びに切り替え） */
.hero__title-row {
    display: flex;
    flex-direction: column;
}
.hero__title-line {
    font-family: var(--f-body);
    font-size: clamp(3.2rem, 6vw, 5.4rem);
    font-weight: 900;
    line-height: 1.25;
    color: var(--ink);
}
.hero__title-line em {
    font-style: normal;
    color: var(--sky);
    position: relative;
}
/* マジックパンツ ラベル */
.hero__magic-label {
    display: block;
    font-family: var(--f-hand);
    font-size: clamp(1.6rem, 2.6vw, 2.4rem);
    font-weight: 600;
    color: var(--sky);
    letter-spacing: .28em;
    line-height: 1;
    margin-top: -2rem; /* h1との間を詰める */
    margin-bottom: .5em;
    margin-left: -2em;
    opacity: .9;
    text-align: left;
    animation: label-sparkle 3s ease-in-out infinite;
}
.hero__magic-label::before,
.hero__magic-label::after {
    content: '✦';
    font-size: .7em;
    color: var(--sun);
    vertical-align: middle;
    margin: 0 .4em;
}

/* 手描き下線 */
.hero__title-line em::after {
    content: '';
    position: absolute;
    left: -4px; right: -4px; bottom: 2px;
    height: 10px;
    background: var(--sun);
    opacity: .4;
    border-radius: 4px;
    z-index: -1;
    transform: rotate(-1deg);
}

.hero__lead {
    font-family: var(--f-hand);
    font-size: 1.6rem;
    color: var(--ink-mid);
    line-height: 2;
}

.hero__scroll-link {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--f-hand);
    font-size: 1.4rem;
    color: var(--sky);
    font-weight: 600;
    padding-top: .8rem;
    transition: .3s;
}
.hero__scroll-link:hover { gap: .8rem; }
.hero__scroll-link svg {
    animation: bounce-sm 1.6s ease-in-out infinite;
}
@keyframes bounce-sm {
    0%,100% { transform: translateY(0); }
    50% { transform: translateY(5px); }
}

/* Visual */
.hero__visual {
    position: relative;
    display: flex;
    justify-content: center;
}

/* =========================================
   Stack Card Slider
   ========================================= */
.stack-slider {
    position: relative;
    width: 100%;
    max-width: 360px;
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 1.6rem;
    user-select: none;
}

/* 左サイドバー（縦ドット） */
.stack-slider__side {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 14px;
    padding-top: .8rem;
}

/* メインエリア */
.stack-slider__main {
    flex: 1;
    min-width: 0;
    overflow: hidden;
    padding: 10px 12px 24px;   /* 傾いたカードのはみ出し余白 */
    margin: -10px -12px -24px;
}

.stack-slider__deck {
    position: relative;
    width: 100%;
    /* 縦横比 3:4 + 後ろのカードが下にずれる分の余白 */
    padding-top: calc(100% * 4 / 3 + 20px);
    overflow: visible;  /* 傾き対応：はみ出しをmainで制御 */
}

/* カード共通 */
.stack-card {
    position: absolute;
    inset: 0;
    border-radius: var(--r-lg);
    overflow: hidden;
    cursor: pointer;
    transition:
        transform 0.45s cubic-bezier(.22, 1, .36, 1),
        filter    0.45s ease;
    /* will-change は使わない（GPUコンポジットによるブレ防止） */
}

.stack-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    pointer-events: none;
}

/* --- スタック位置定義 (data-pos="0" が最前面) --- */

/* 前面カード — わずかに左傾き */
.stack-card[data-pos="0"] {
    z-index: 5;
    transform: rotate(-2deg) scale(1) translateY(0);
    opacity: 1;
}
.stack-card[data-pos="0"]:hover {
    transform: rotate(-2deg) scale(1.02) translateY(-4px);
}

/* 2枚目 — 右傾き（完全不透明、暗さで奥行き表現） */
.stack-card[data-pos="1"] {
    z-index: 4;
    transform: rotate(4deg) scale(0.96) translateY(10px) translateX(4px);
    filter: brightness(0.82);
}

/* 3枚目 — 左傾き、さらに後ろ */
.stack-card[data-pos="2"] {
    z-index: 3;
    transform: rotate(-5deg) scale(0.91) translateY(18px) translateX(-4px);
    filter: brightness(0.62);
}

/* 4枚目以降は非表示 */
.stack-card[data-pos="3"],
.stack-card[data-pos="4"] {
    z-index: 2;
    transform: rotate(6deg) scale(0.86) translateY(24px);
    opacity: 0;
    filter: brightness(0.5);
    pointer-events: none;
}

/* ポップな飛び出し: 右上に弧を描いて消える */
@keyframes card-toss-out {
    0%   { transform: rotate(-2deg) scale(1) translate(0, 0); opacity: 1; }
    25%  { transform: rotate(-12deg) scale(1.06) translate(30px, -40px); opacity: 1; }
    60%  { transform: rotate(-22deg) scale(0.98) translate(110px, -65px); opacity: .6; }
    100% { transform: rotate(-30deg) scale(0.90) translate(210px, -30px); opacity: 0; }
}
.stack-card.is-peeling {
    animation: card-toss-out 0.65s cubic-bezier(.36,.07,.19,.97) forwards !important;
    transition: none !important;
    pointer-events: none;
    z-index: 10 !important;
}



/* 縦ドット */
.stack-slider__dots {
    display: flex;
    flex-direction: column;
    gap: .7rem;
    align-items: center;
}
.stack-dot {
    width: 3px;
    height: 20px;
    border-radius: 99px;
    background: rgba(44,36,32,.18);
    border: none;
    transition:
        height   .45s cubic-bezier(.22,1,.36,1),
        background .35s ease;
    cursor: pointer;
}
.stack-dot.is-active {
    height: 44px;
    background: var(--sky);
}
.stack-dot:not(.is-active):hover {
    height: 28px;
    background: rgba(44,36,32,.35);
}

/* コントロール */
.stack-slider__controls {
    display: flex;
    justify-content: flex-start;
    margin-top: 3rem;
    padding: 0;
}

.stack-slider__btn {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    font-family: var(--f-hand);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--ink);
    border-bottom: 1.5px solid var(--ink);
    padding-bottom: .2rem;
    transition: .3s;
}
.stack-slider__btn:hover { color: var(--sky); border-color: var(--sky); }
.stack-slider__btn svg { transition: transform .3s; }
.stack-slider__btn:hover svg { transform: translateX(4px); }

/* 価格タグ */
.hero__price-tag {
    position: absolute;
    bottom: 2.4rem;
    right: 0;
    z-index: 10;
    background: var(--coral);
    color: #fff;
    padding: .8rem 1.4rem;
    border-radius: var(--r);
    text-align: center;
    animation: price-jiggle 3s ease-in-out infinite;
}
.hero__price-tag-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    opacity: .85;
}
.hero__price-tag-val {
    display: block;
    font-family: var(--f-en);
    font-size: 2.4rem;
    font-weight: 800;
    line-height: 1.1;
}

/* Hero Animations */
.anim-pop { opacity: 0; transform: scale(.85) translateY(12px); }
.anim-pop.is-ready { opacity: 1; transform: none; transition: .5s cubic-bezier(.22,1,.36,1); }

.anim-title { opacity: 0; transform: translateY(24px); }
.anim-title.is-ready { opacity: 1; transform: none; transition: .6s cubic-bezier(.22,1,.36,1); }

.anim-fade { opacity: 0; transform: translateY(16px); }
.anim-fade.is-ready { opacity: 1; transform: none; transition: .6s ease-out; }

.anim-visual { opacity: 0; transform: translateX(40px) scale(.96); }
.anim-visual.is-ready { opacity: 1; transform: none; transition: .7s cubic-bezier(.22,1,.36,1); }


/* =========================================
   NARRATIVE
   ========================================= */
.narrative {
    padding: 6rem 0 5rem;
    background: var(--warm-bg);
    position: relative;
}
.narrative::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: var(--sky);
    opacity: .5;
}

.narrative__body {
    max-width: 640px;
    margin-inline: auto;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 2.4rem;
}
.narrative__text {
    font-family: var(--f-hand);
    font-size: 1.7rem;
    color: var(--ink-mid);
    line-height: 2;
}
.narrative__large {
    display: block;
    font-family: var(--f-body);
    font-size: clamp(2.2rem, 4vw, 3rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.4;
}

.narrative__arrow {
    display: flex;
    justify-content: center;
    padding-top: 1rem;
    color: var(--sky);
}
.narrative__arrow svg {
    animation: bounce-sm 1.6s ease-in-out infinite;
}


/* =========================================
   FEATURES — Bento Grid
   ========================================= */
.features {
    padding: 7rem 0;
    background: var(--cream);
}

.bento {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 2rem;
}

.bento__item {
    background: #fff;
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid rgba(30,26,23,.07);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
}
.bento__item:hover { transform: translateY(-6px) rotate(.4deg); }

/* メインカード = 左全段 */
.bento__item--main {
    grid-column: 1;
    grid-row: 1 / 3;
}
.bento__item--main .bento__img-wrap {
    aspect-ratio: 4/3;
}

/* サブカード */
.bento__item--sub .bento__img-wrap {
    aspect-ratio: 16/9;
}

/* アクセントカード */
.bento__item--accent {
    grid-column: 1 / -1;
    background: var(--warm-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3rem 2.8rem;
    border-top: 3px solid var(--sand);
}

.bento__img-wrap {
    overflow: hidden;
}
.bento__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}
.bento__item:hover .bento__img-wrap img { transform: scale(1.04); }

.bento__body {
    padding: 2rem 2.4rem 2.4rem;
    position: relative;
}
.bento__num {
    font-family: var(--f-body);
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1;
    color: var(--sky);
    -webkit-text-stroke: 1.5px #fff;
    position: absolute;
    top: -2.8rem;
    right: 1.6rem;
    user-select: none;
}
.bento__title {
    font-size: clamp(1.8rem, 2.5vw, 2.2rem);
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 1rem;
}
.bento__desc {
    font-size: 1.4rem;
    color: var(--ink-mid);
    line-height: 1.8;
}
.bento__desc strong { color: var(--ink); }

/* Tag list (accent card) — ステッカー散らし風 */
.bento__tag-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.2rem 1.4rem;
    justify-content: center;
    align-items: center;
    padding: .4rem;
}
.bento__tag-list li {
    font-family: var(--f-body);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink);
    padding: .65rem 1.6rem;
    border-radius: 6px;
    border: none;
    border: 1px solid rgba(0,0,0,.07);
    transition: transform .3s cubic-bezier(.34,1.56,.64,1);
    position: relative;
    cursor: default;
}
/* 交互に傾けてステッカー感 */
.bento__tag-list li:nth-child(odd)  { transform: rotate(-1.8deg); }
.bento__tag-list li:nth-child(even) { transform: rotate(1.6deg); }
.bento__tag-list li:nth-child(3n)   { transform: rotate(-.6deg); font-size: 1.5rem; }

/* 各タグにカラーを割り当て */
.bento__tag-list li:nth-child(1) { background: rgba(52,128,212,.14);  color: #1c54a0; }
.bento__tag-list li:nth-child(2) { background: rgba(244,162,  0,.16);  color: #7a4e00; }
.bento__tag-list li:nth-child(3) { background: rgba(72, 162,122,.16);  color: #255e40; }
.bento__tag-list li:nth-child(4) { background: rgba(224, 80, 64,.13);  color: #8a2a1d; }
.bento__tag-list li:nth-child(5) { background: rgba(52,128,212,.14);  color: #1c54a0; }
.bento__tag-list li:nth-child(6) { background: rgba(244,162,  0,.16);  color: #7a4e00; }

.bento__tag-list li:hover {
    transform: rotate(0deg) scale(1.08) !important;
}


/* =========================================
   MADE-IN
   ========================================= */
.made-in {
    padding: 6rem 0;
    background: var(--warm-bg);
}
.made-in__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.made-in__kicker {
    font-family: var(--f-en);
    font-size: 1.1rem;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--ink-light);
    margin-bottom: .4rem;
}
.made-in__title {
    font-size: clamp(2.2rem, 4vw, 3.2rem);
    font-weight: 900;
    line-height: 1.35;
    margin-bottom: 1.4rem;
}
.made-in__desc {
    font-family: var(--f-hand);
    font-size: 1.5rem;
    color: var(--ink-mid);
    line-height: 2;
}
.made-in__img-wrap {
    border-radius: var(--r-lg);
    overflow: hidden;
}
.made-in__img-wrap img {
    width: 100%; aspect-ratio: 4/3;
    object-fit: cover;
}


/* =========================================
   VARIATION
   ========================================= */
.variation {
    padding: 7rem 0;
    background: var(--cream);
}

.variation__grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.variation__subtitle {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 2rem;
    color: var(--ink-mid);
}

/* 種別ラベル */
.variation__type-label {
    font-family: var(--f-en);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: .08em;
    color: var(--ink);
    margin-bottom: .4rem;
    padding-left: .8rem;
    border-left: 3px solid var(--sky);
}

/* Color Chips — 有機的な丸 */
.color-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 1.6rem;
}
.chip {
    position: relative;
    display: block;
    width: 56px; height: 56px;
    border-radius: 50%;
    background-color: var(--chip);
    border: 3px solid #fff;
    cursor: pointer;
    transition: .35s cubic-bezier(.34,1.56,.64,1);
    text-decoration: none;
}
.chip:hover {
    animation: chip-bounce .5s cubic-bezier(.22,1,.36,1) forwards;
}
.chip span {
    position: absolute;
    bottom: -2rem;
    left: 50%;
    transform: translateX(-50%);
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-light);
    white-space: nowrap;
}

/* ギンガムチェック柄 */
.chip--gingham {
    background-image:
        repeating-linear-gradient(
            0deg,
            rgba(255,255,255,0.48) 0px,
            rgba(255,255,255,0.48) 5px,
            transparent 5px,
            transparent 10px
        ),
        repeating-linear-gradient(
            90deg,
            rgba(255,255,255,0.48) 0px,
            rgba(255,255,255,0.48) 5px,
            transparent 5px,
            transparent 10px
        );
}

/* Size Items — 手描きカード風 */
.size-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}
.size-item {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 60px; height: 60px;
    border-radius: var(--r);
    border: 2px solid var(--ink);
    font-family: var(--f-en);
    font-size: 2rem;
    font-weight: 700;
    color: var(--ink);
    transition: .35s cubic-bezier(.34,1.56,.64,1);
    position: relative;
}
.size-item::after {
    content: 'cm';
    position: absolute;
    bottom: -1.6rem;
    font-size: .9rem;
    font-weight: 500;
    color: var(--ink-light);
}
.size-item:hover {
    background: var(--ink);
    color: var(--cream);
    transform: translateY(-3px) rotate(-2deg);
}

.variation__note {
    margin-top: 3rem;
    font-size: 1.2rem;
    color: var(--ink-light);
}


/* =========================================
   GALLERY
   ========================================= */
.gallery {
    padding: 7rem 0;
    background: var(--ink);
    overflow: hidden;
}
.gallery .section-label { padding-inline: 5%; }

.gallerySwiper {
    padding-bottom: 4.8rem !important;
    /* PC: 左右に余白を入れてエッジを見せる */
    padding-left:  5% !important;
    padding-right: 5% !important;
}
.gallery__card {
    border-radius: var(--r-lg);
    overflow: hidden;
    aspect-ratio: 3/4;
}
.gallery__card img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform .5s ease;
}
.swiper-slide:hover .gallery__card img { transform: scale(1.04); }

.swiper-pagination-bullet {
    background: rgba(255,255,255,.35);
    opacity: 1;
    width: 8px; height: 8px;
}
.swiper-pagination-bullet-active {
    background: var(--sun);
    width: 24px;
    border-radius: 6px;
}


/* =========================================
   AWARD
   ========================================= */
.award {
    padding: 7rem 0;
    background: var(--gold-bg);
}

.award__card {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 860px;
    margin-inline: auto;
}

.award__left { display: flex; justify-content: center; }
.award__logo {
    width: 180px;
    height: auto;
    filter: drop-shadow(0 4px 12px rgba(0,0,0,.08));
}

.award__kicker {
    font-family: var(--f-en);
    font-size: 1.1rem;
    letter-spacing: .18em;
    color: var(--gold);
    margin-bottom: .4rem;
}
.award__title {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 1.2rem;
}
.award__desc {
    font-family: var(--f-hand);
    font-size: 1.5rem;
    color: rgba(255,255,255,.6);
    line-height: 1.9;
}
.award__link {
    display: inline-flex;
    align-items: center;
    gap: .6rem;
    margin-top: 1.8rem;
    color: var(--gold);
    font-weight: 700;
    font-size: 1.4rem;
    border-bottom: 1.5px solid transparent;
    transition: .3s;
}
.award__link:hover { border-bottom-color: var(--gold); }


/* =========================================
   CTA
   ========================================= */
.cta {
    position: relative;
    padding: 8rem 0 7rem;
    background: var(--cream);
    text-align: center;
    overflow: hidden;
}
.cta__deco-circle {
    position: absolute;
    width: 400px;
    top: -80px; right: -120px;
    pointer-events: none;
    animation: spin-slow 40s linear infinite;
}

.cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2.4rem;
}

.cta__catch {
    display: flex;
    flex-direction: column;
}
.cta__catch-line {
    font-size: clamp(2.8rem, 6vw, 4.4rem);
    font-weight: 900;
    line-height: 1.3;
    color: var(--ink);
}

.cta__product-info {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4rem;
}
.cta__product-name {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--ink-mid);
}
.cta__price-row { display: flex; align-items: baseline; gap: .3rem; }
.cta__price {
    font-family: var(--f-en);
    font-size: 4.4rem;
    font-weight: 800;
    color: var(--coral);
    line-height: 1.1;
}
.cta__tax {
    font-size: 1.4rem;
    color: var(--ink-mid);
}
.cta__spec-mini {
    font-size: 1.3rem;
    color: var(--ink-light);
}

.cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: .6rem;
    background: var(--ink);
    color: #fff;
    font-size: 1.8rem;
    font-weight: 700;
    padding: 1.8rem 5rem;
    border-radius: 100px;
    transition: background .3s ease, transform .4s cubic-bezier(.22,1,.36,1);
}
.cta__btn:hover {
    background: var(--sky);
    transform: translateY(-4px) scale(1.02);
}
.cta__btn span { pointer-events: none; }

.cta__note {
    font-size: 1.2rem;
    color: var(--ink-light);
}


/* =========================================
   FOOTER
   ========================================= */
.footer {
    padding: 3.6rem 0 3rem;
    background: var(--ink);
    text-align: center;
}
.footer__brand {
    font-family: var(--f-hand);
    font-size: 1.4rem;
    color: rgba(255,255,255,.5);
    margin-bottom: .4rem;
}
.footer__copy {
    font-family: var(--f-en);
    font-size: 1.1rem;
    letter-spacing: .06em;
    color: rgba(255,255,255,.3);
}


/* =========================================
   PAGETOP
   ========================================= */
.pagetop {
    position: fixed;
    bottom: 2.4rem; right: 2.4rem;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--ink);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 90;
    opacity: 0;
    transform: translateY(16px);
    transition: .4s cubic-bezier(.22,1,.36,1);
    pointer-events: none;
}
.pagetop.is-show { opacity: 1; transform: none; pointer-events: all; }
.pagetop:hover { background: var(--sky); }


/* =========================================
   STICKY CTA (Mobile)
   ========================================= */
.sticky-cta {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    background: #fff;
    border-top: 1px solid rgba(0,0,0,.1);
    transform: translateY(100%);
    transition: transform .4s cubic-bezier(.22,1,.36,1);
    display: none;
}
.sticky-cta.is-show { transform: none; }
.sticky-cta a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 2rem;
}
.sticky-cta__price {
    font-family: var(--f-en);
    font-size: 2rem;
    font-weight: 800;
    color: var(--coral);
}
.sticky-cta__price small {
    font-size: 1.1rem;
    color: var(--ink-mid);
    font-weight: 500;
}
.sticky-cta__btn {
    background: var(--ink);
    color: #fff;
    font-size: 1.4rem;
    font-weight: 700;
    padding: .8rem 2rem;
    border-radius: 100px;
}


/* =========================================
   Responsive — Tablet
   ========================================= */
@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; gap: 3rem; }
    .hero__text { align-items: center; order: 2; }
    .hero__visual { order: 1; }

    .stack-slider { max-width: 310px; margin-inline: auto; gap: 1.2rem; }
    .hero__badge { align-self: center; }
    .hero__deco--sun { width: 80px; top: 3%; right: 5%; }

    .bento {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
    }
    .bento__item--main { grid-column: 1; grid-row: auto; }

    .made-in__inner { grid-template-columns: 1fr; text-align: center; }
    .made-in__img-wrap { order: -1; }

    .variation__grid { grid-template-columns: 1fr; gap: 3.6rem; text-align: center; }
    .variation__type-label { border-left: none; border-bottom: 3px solid var(--sky); display: inline-block; padding: 0 0 .4rem; }
    .color-chips { justify-content: center; }
    .size-list { justify-content: center; }

    .award__card { grid-template-columns: 1fr; text-align: center; gap: 2.4rem; }
    .award__logo { width: 130px; }
}

/* =========================================
   Responsive — Mobile
   ========================================= */
@media (max-width: 600px) {
    html { font-size: 56.25%; }
    .sp-only { display: inline; }

    .hero { padding: 7rem 0 5rem; }

    /* タイトル：スマホで収まりよく */
    .hero__title { gap: .6rem; text-align: center; }
    .hero__title-line { font-size: 2.9rem; line-height: 1.3; }
    /* 1行目・2行目を横並びにして1行に */
    .hero__title-row {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
    }
    .hero__magic-label {
        font-size: 1.5rem;
        letter-spacing: .24em;
        margin-top: -2rem;
        text-align: center;
        margin-left: 0;
    }

    .stack-slider { max-width: 260px; gap: 1rem; }
    .stack-slider__side { width: 12px; }
    .stack-dot { width: 2.5px; height: 16px; }
    .stack-dot.is-active { height: 36px; }
    .hero__img-frame { max-width: 260px; }

    .bento__body { padding: 1.6rem; }
    .bento__num { font-size: 3.6rem; top: -2rem; }

    /* sticky-cta：フローティングボタン型（底部バーをやめて浮遊ボタンに） */
    .sticky-cta {
        display: block;
        /* 全幅バーを解除してフローティングに */
        left: 1.6rem;
        right: auto;
        bottom: 5rem;
        width: auto;
        background: transparent;
        border-top: none;
        box-shadow: none;
        /* アニメーションをスケール+透明度に変更 */
        transform: scale(.85) translateY(8px);
        transition: transform .4s cubic-bezier(.22,1,.36,1), opacity .4s ease;
        opacity: 0;
    }
    .sticky-cta.is-show {
        transform: none;
        opacity: 1;
    }
    .sticky-cta a {
        flex-direction: column;
        align-items: center;
        gap: .1rem;
        padding: 1rem 1.8rem;
        background: var(--ink);
        border-radius: 100px;
        box-shadow: 0 6px 20px rgba(0,0,0,.22);
    }
    .sticky-cta__price {
        font-size: 1.7rem;
        color: #fff;
    }
    .sticky-cta__price small {
        color: rgba(255,255,255,.65);
    }
    .sticky-cta__btn {
        background: transparent;
        color: rgba(255,255,255,.85);
        font-size: 1.1rem;
        font-weight: 600;
        padding: 0;
        border-radius: 0;
    }
    /* pagetopはそのまま右下 */
    .pagetop { bottom: 5rem; }
}
