/* ============================================================
   Chieco Saku Stationery LP
   ============================================================ */
:root {
  --red: #e6002d;
  --red-dark: #c2001f;
  --pink: #f8b9c6;
  --pink-pale: #fdeef1;
  --pink-bg: #f6cdd6;
  /* 本家 brand-chiecosaku-press-on-nail-tips ページの実測値（site-clone計測） */
  --gingham-pink: #E95371;   /* ギンガム地 */
  --gingham-red: 166, 32, 51; /* 帯・交差（rgba用） */
  /*--gingham-pink: #f48d9b;*/   /* ギンガム地 */
  /*--gingham-red: 196, 35, 48;*/ /* 帯・交差（rgba用） */
  --offwhite: #f2efeb;        /* 左背景（bg-left.png実測） */
  --brown: #5c3a2e;
  --white: #fff;
  --font-round: "M PLUS Rounded 1c", "Hiragino Maru Gothic ProN", sans-serif;
  --font-latin: "Quicksand", "M PLUS Rounded 1c", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--red); }

body {
  font-family: var(--font-round);
  font-weight: 500;
  color: var(--brown);
  background: var(--offwhite);
  line-height: 1.9;
  /*-webkit-font-smoothing: antialiased;*/
}

.mt-50 {
    margin-top: -50px;
}

.mt_70 {
        margin-top: 70px;
}
/* backdrop — 本家ネイルチップページの構成を踏襲:
   左余白=オフホワイト無地 / 右余白=赤ギンガム帯（実測: 48px周期・24px帯・織り目ドット） */
.lp {
  display: flex;
  justify-content: center;
  gap: 0;
  min-height: 100vh;
  background:
    linear-gradient(90deg, var(--offwhite) 0 50%, rgba(242, 239, 235, 0) 50%),
    radial-gradient(rgba(255, 255, 255, .16) 22%, transparent 23%),
    repeating-linear-gradient(0deg, rgba(var(--gingham-red), .45) 0 24px, transparent 24px 48px),
    repeating-linear-gradient(90deg, rgba(var(--gingham-red), .45) 0 24px, transparent 24px 48px),
    var(--gingham-pink);
  background-size: auto, 4px 4px, auto, auto, auto;
}

/* 左余白の飾り（本家: 左サイドバーに赤ロゴ＋うさぎ） */
.lp__side-brand {
  position: fixed;
  left: 0;
  top: 0;
  bottom: 0;
  width: calc((100vw - 1100px) / 2);  /* コンテンツ2列(460+640)を除いた左余白 */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
  pointer-events: none;
  z-index: 1;
}
.lp__side-logo { width: min(170px, 62%); height: auto; }
.lp__side-rabbit { width: min(140px, 50%); height: auto;}
@media (max-width: 1380px) { .lp__side-brand { display: none; } }

/* ---------- sticky side visual ---------- */
.lp__sticky {
  position: sticky;
  top: 0;
  height: 100vh;
  flex: 0 1 460px;
  max-width: 460px;
  overflow: hidden;
}
/* 元サイトの左側固定エリアは動画。2カットをゆっくりズーム＋クロスフェードして動画風に */
.lp__sticky-video{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center top;
    display:block;
}


.lp__sticky-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  opacity: 0;
  transition: opacity 1.6s ease;
  will-change: opacity, transform;
}
.lp__sticky-img.is-active {
  opacity: 1;
  animation: kenburns 9s ease-in-out forwards;
}
@keyframes kenburns {
  from { transform: scale(1); }
  to   { transform: scale(1.09); }
}
@media (prefers-reduced-motion: reduce) {
  .lp__sticky-img.is-active { animation: none; }
}

/* ---------- main column ---------- */
.lp__main {
  flex: 0 1 640px;
  max-width: 640px;
  width: 100%;
  background: var(--pink-pale);
  box-shadow: 0 0 40px rgba(194, 0, 31, .15);
  overflow: hidden;
}
/* 本家実測の余白リズム: ブロック間57〜64px / セクション区切り117〜193px相当 */
.lp__main > section { padding: 76px 40px; }

/* ---------- reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: none;
    /*margin-top: 70px;*/
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}

/* ---------- hero ---------- */
.hero { text-align: center; position: relative; padding-top: 80px; padding-bottom: 8px; }
.hero__label {
  font-family: var(--font-latin);
  font-weight: 700;
  letter-spacing: .45em;
  text-indent: .45em;
  color: var(--red);
  font-size: 15px;
  margin-bottom: 18px;
}
.hero__brand img { width: min(320px, 80%); margin: 0 auto; }
.hero__copy { margin: 28px 0 8px; font-size: 17px; font-weight: 700; color: #f9798a; /* カンプ実測色 */ }
.hero__rabbit { width: 150px; margin: 26px auto 28px; animation: float 3.5s ease-in-out infinite; }
/* 写真直後の感情コピー（続きを見たくなるフック） */
.hero__pull {
  margin: 36px auto 8px;
  font-size: 17px;
  font-weight: 800;
  line-height: 2.1;
  letter-spacing: .04em;
}
.hero__pull em { font-style: normal; color: var(--red); }

/* チエコ線描（マスク開示）: 描き終わってからふわふわを開始 */
.hero__draw svg{
    width:100%;
    height:auto;
    overflow:visible;
}

.hero__draw path{
    fill:none;
    stroke:rgb(249, 121, 138);
    stroke-linecap:round;
    stroke-linejoin:round;
    stroke-dasharray:0;
    stroke-dashoffset:0;
    opacity:1;
}
.hero__draw { width: 160px; margin: 28px auto 0; }
.hero__draw svg { width: 100%; height: auto; display: block; }
.hero__draw.is-drawn { animation: float 3.5s ease-in-out infinite; }
@media (prefers-reduced-motion: reduce) { .hero__draw.is-drawn { animation: none; } }
@keyframes float {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-10px) rotate(2deg); }
}
@media (prefers-reduced-motion: reduce) { .hero__rabbit { animation: none; } }
.hero__products img { border-radius: 16px; box-shadow: 0 12px 28px rgba(194,0,31,.18); }

/* ---------- lead（原案どおりテキストのみ） ---------- */
.lead { text-align: center; font-size: 15.5px; font-weight: 700; }
.lp__main > .lead { padding-top: 32px; }

/* ---------- nav ---------- */
.nav {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 44px;
  padding: 0 36px 28px !important;
}
/* カンプ準拠: 大きいアイコン(実測160px→カード幅換算)の下にラベル */
.nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--red);
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .08em;
  transition: transform .25s;
}
.nav__item img { width: 90px; height: auto; flex: none; }
.nav__item:hover { transform: translateY(-4px); }

/* ---------- section titles ---------- */
.section-title {
  font-family: var(--font-latin);
  color: var(--red);
  text-align: center;
  font-size: clamp(22px, 4.4vw, 28px);
  letter-spacing: .14em;
  margin-bottom: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.section-title__deco { width: 46px; }
/* LINE UP見出し: アイコン｜（見出し＋日本語リード）のロックアップ（カンプ準拠の大アイコン） */
.lineup__head {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 34px;
}
.lineup__head-icon { width: 106px; height: auto; flex-shrink: 0; }
.section-title--lineup {
  display: block;
  text-align: left;
  margin-bottom: 6px;
}
.lineup__lead {
  text-align: left;
  font-size: 13.5px;
  font-weight: 700;
  line-height: 1.8;
}
.section-title__sub {
  font-family: var(--font-round);
  font-size: 13px;
  letter-spacing: .12em;
  font-weight: 700;
}

/* ---------- carousel（手動カルーセル：マウスはドラッグ／スマホはスワイプ） ---------- */
.lineup { background: var(--white); border-radius: 28px; margin: 0 16px; position: relative; }
.carousel-wrap { position: relative; }
.carousel {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding: 8px 4px 20px;
  scrollbar-width: none;        /* スクロールバー非表示（Firefox） */
  cursor: grab;
  -webkit-overflow-scrolling: touch;
}
.carousel::-webkit-scrollbar { display: none; }  /* 同（Chrome/Safari） */
.carousel.is-dragging {
  cursor: grabbing;
  scroll-snap-type: none;
  scroll-behavior: auto;
  user-select: none;
}
.carousel.is-dragging .carousel__item { pointer-events: none; }
.carousel__item {
  flex: 0 0 128px;
  scroll-snap-align: start;
  text-align: center;
  text-decoration: none;
  color: var(--red);
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 11.5px;
  letter-spacing: .04em;
}
.carousel__item img {
  width: 128px;
  height: 128px;
  object-fit: cover;
  border-radius: 50%;
  border: 3px solid var(--pink);
  background: var(--white);
  transition: transform .3s, border-color .3s;
}
.carousel__item:hover img { transform: scale(1.06); border-color: var(--red); }
.carousel__item span { display: block; margin-top: 8px; }
.carousel-btn {
  position: absolute;
  top: 56px;
  z-index: 2;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: var(--red);
  color: var(--white);
  font-size: 15px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(194,0,31,.3);
  transition: background .25s;
}
.carousel-btn:hover { background: var(--red-dark); }
.carousel-btn--prev { left: -14px; }
.carousel-btn--next { right: -14px; }

/* ---------- item sections ---------- */
.item {
  background: var(--white);
  border-radius: 28px;
  margin: 56px 16px 0;
  text-align: center;
  position: relative;
}
/* item01: スケッチ中のチエコ（カンプ実測216x238px・スケッチブック横の飾り） */
.item__deco-sketch {
    position: absolute;
    top: -14px;
    right: 18px;
    width: clamp(120px, 27%, 160px);
    height: auto;
    opacity: .9;
    pointer-events: none;
}
.item__img img {
  /*border-radius: 16px;*/
  margin: 0 auto;
  max-height: 460px;
  width: auto;
  max-width: 100%;
}

.item__deco-sketch2 {
    position: absolute;
    top: 26px;
    right: 18px;
    width: clamp(120px, 27%, 160px);
    height: auto;
    opacity: .9;
    pointer-events: none;
}

.item__gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 14px;
}
.item__gallery img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 12px;
}
.item__gallery--single { grid-template-columns: 1fr; max-width: 300px; margin-left: auto; margin-right: auto; }
.item__gallery--single img { aspect-ratio: auto; }

/* サムネクリックでメイン画像を切り替え（item02 CRAYONS） */
.item__gallery--thumbs { grid-template-columns: repeat(5, 1fr); }
.item__gallery--thumbs img {
  cursor: pointer;
  border: 3px solid transparent;
  transition: border-color .25s, transform .25s;
}
.item__gallery--thumbs img:hover { transform: translateY(-3px); }
.item__gallery--thumbs img.is-active { border-color: var(--red); }
.item__img--switchable img { transition: opacity .25s; }
.item__img--switchable.is-switching img { opacity: 0; }

.item__title {
  font-family: var(--font-latin);
  color: var(--red);
  font-size: 21px;
  letter-spacing: .08em;
  margin-top: 30px;
}
.item__title::after {
  content: "";
  display: block;
  width: 56px;
  height: 3px;
  border-radius: 2px;
  background: var(--pink);
  margin: 10px auto 0;
}
.item__desc { text-align: left; margin: 18px auto 0; font-size: 14.5px; max-width: 480px; }

.item__buy {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  background: var(--pink-pale);
  border-radius: 14px;
  padding: 12px 18px;
  margin: 18px auto 0;
  max-width: 540px;
}
.item__price { font-size: 13.5px; font-weight: 700; text-align: left; }
.btn-buy {
  flex: none;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 9px 26px;
  border-radius: 999px;
  transition: background .25s;
}
.btn-buy:hover { background: var(--red-dark); }
.btn-manual {
  display: inline-block;
  margin-top: 18px;
  border: 2px solid var(--red);
  color: var(--red);
  background: var(--white);
  text-decoration: none;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .12em;
  padding: 9px 34px;
  border-radius: 999px;
  transition: background .25s, color .25s;
}
.btn-manual:hover { background: var(--red); color: var(--white); }

.note { font-size: 12px; color: #a0766a; margin-top: 14px; }

/* variations (item03 / 04 / 05) */
.item__variations {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.item__variations figure { position: relative; }
.item__variations figcaption { font-size: 12.5px; margin-top: 8px; }
.item__variations img { border-radius: 14px; margin: 0 auto; }
.tag {
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .08em;
  padding: 3px 14px;
  border-radius: 999px;
  white-space: nowrap;
}

/* クリックボタン（めくりギミックの目印） */
.click-badge {
  position: absolute;
  right: -6px;
  bottom: -6px;
  z-index: 5;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 11px;
  letter-spacing: .04em;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 10px rgba(194,0,31,.35);
  pointer-events: none;
  animation: badge-pulse 1.6s ease-in-out infinite;
}
.deck:hover .click-badge { background: var(--red-dark); }
@keyframes badge-pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}
@media (prefers-reduced-motion: reduce) { .click-badge { animation: none; } }

/* deck gimmick (item04) — 表紙が上端から「ぺらっ」とめくれ上がって次の絵柄が見える */
.deck {
  display: block;
  width: 100%;
  border: none;
  background: none;
  cursor: pointer;
  position: relative;
  perspective: 1200px;
}
.deck__stack {
  /* 下に重なった紙の束 */
  position: absolute;
  inset: 6px -4px -4px 6px;
  background: var(--white);
  border: 1px solid #f0d3da;
  border-radius: 14px;
  z-index: 0;
}
.deck__under {
  /* めくれている間、下から現れる次のページ */
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 14px;
  z-index: 1;
}
.deck__leaf {
  display: block;
  position: relative;
  z-index: 2;
  transform-origin: center top;   /* 上端を軸に、本のページのようにめくれ上がる */
  background: var(--white);        /* めくれた紙の裏面 */
  border-radius: 14px;
  box-shadow: 0 2px 8px rgba(194, 0, 31, .12);
  transition: transform .6s cubic-bezier(.4, .1, .3, 1), opacity .2s ease, box-shadow .6s;
}
.deck__page {
  display: block;
  border-radius: 14px;
  backface-visibility: hidden;
}
.deck:hover .deck__leaf { transform: rotateX(12deg); }  /* 端が少し浮いて「めくれそう」 */
.deck.is-turning .deck__leaf {
  transform: rotateX(178deg);
  opacity: 0;
  box-shadow: 0 18px 30px rgba(92, 58, 46, .2);
  transition: transform .6s cubic-bezier(.4, .1, .3, 1), opacity .2s ease .45s;
}
@media (prefers-reduced-motion: reduce) {
  .deck__leaf, .deck.is-turning .deck__leaf { transition: opacity .2s; transform: none; }
  .deck.is-turning .deck__leaf { opacity: 0; }
  .deck:hover .deck__leaf { transform: none; }
}

/* ---------- FAQ ---------- */
.faq__list details {
  background: var(--white);
  border-radius: 16px;
  margin-bottom: 14px;
  overflow: hidden;
}
.faq__list summary {
  list-style: none;
  cursor: pointer;
  padding: 16px 48px 16px 52px;
  font-weight: 700;
  font-size: 14.5px;
  position: relative;
}
.faq__list summary::-webkit-details-marker { display: none; }
.faq__list summary::before {
  content: "Q";
  position: absolute;
  left: 16px;
  top: 14px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--red);
  color: var(--white);
  font-family: var(--font-latin);
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}
.faq__list summary::after {
  content: "＋";
  position: absolute;
  right: 18px;
  top: 16px;
  color: var(--red);
  font-weight: 700;
  transition: transform .3s;
}
.faq__list details[open] summary::after { transform: rotate(45deg); }
.faq__list details p {
  padding: 0 20px 18px 52px;
  font-size: 14px;
  position: relative;
}
.faq__list details p::before {
  content: "A";
  position: absolute;
  left: 16px;
  top: -2px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--pink);
  color: var(--white);
  font-family: var(--font-latin);
  font-size: 14px;
  line-height: 26px;
  text-align: center;
}

/* ---------- shop（一覧は下層ページ shop.html へ） ---------- */
.shop { text-align: center; }
.shop__photo img { border-radius: 16px; margin: 0 auto 24px; max-width: 320px; width: 100%; }
.shop__note { font-size: 13.5px; margin-bottom: 24px; }
.btn-shoplist {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: .08em;
  padding: 14px 46px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(194,0,31,.25);
  transition: background .25s, transform .25s;
}
.btn-shoplist:hover { background: var(--red-dark); transform: translateY(-2px); }

/* ---------- promo (nail chip) ---------- */
.promo {
  text-align: center;
  background: var(--white);
  border-radius: 28px;
  margin: 0 16px;
}
.promo__img img { border-radius: 16px; margin: 0 auto; }
.promo__title { color: var(--red); font-size: 20px; margin-top: 26px; }
.promo__copy { font-size: 14.5px; margin-top: 10px; }
.btn-detail {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 22px;
  background: var(--pink-pale);
  border: 2px solid var(--pink);
  border-radius: 18px;
  padding: 12px 20px;
  text-decoration: none;
  color: var(--red);
  font-weight: 700;
  font-size: 14px;
  transition: border-color .25s, background .25s;
}
.btn-detail:hover { border-color: var(--red); background: var(--white); }
.btn-detail img { width: 76px; height: 76px; object-fit: contain; border-radius: 10px; background: var(--white); }

/* ---------- collection / gift（それぞれ独立した大事なセクション） ---------- */
.collection, .gift { text-align: center; position: relative; }
.collection__title {
  font-family: var(--font-latin);
  color: var(--red);
  font-size: clamp(19px, 3.8vw, 24px);
  letter-spacing: .1em;
  margin-bottom: 22px;
}
.collection__img img {
  border-radius: 16px;
  width: min(460px, 100%);
  margin: 0 auto;
  box-shadow: 0 12px 28px rgba(194,0,31,.18);
}
.collection__copy { margin-top: 22px; font-weight: 700; font-size: 15px; }
.btn-collection {
  display: inline-block;
  margin-top: 20px;
  background: var(--red);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-latin);
  font-weight: 700;
  font-size: 13.5px;
  letter-spacing: .1em;
  padding: 12px 38px;
  border-radius: 999px;
  box-shadow: 0 6px 14px rgba(194,0,31,.25);
  transition: background .25s, transform .25s;
}
.btn-collection:hover { background: var(--red-dark); transform: translateY(-2px); }
.gift { background: var(--white); border-radius: 28px; margin: 56px 16px 0; }

/* ---------- footer ---------- */
.footer {
  text-align: center;
  background: var(--red);
  padding: 44px 36px 32px;
}
.footer__deco { width: 90px; margin: 0 auto 18px; /*filter: brightness(0) invert(1); opacity: .85;*/ }
.footer__links {
  display: flex;
  justify-content: center;
  gap: 26px;
  margin-bottom: 22px;
}
.footer__links a {
  color: var(--white);
  font-weight: 700;
  font-size: 13px;
  letter-spacing: .06em;
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, .6);
  padding-bottom: 2px;
}
.footer__links a:hover { border-bottom-color: var(--white); }
.page-top {
  display: inline-block;
  color: var(--white);
  border: 2px solid var(--white);
  border-radius: 999px;
  padding: 9px 34px;
  text-decoration: none;
  font-family: var(--font-latin);
  font-weight: 700;
  letter-spacing: .14em;
  font-size: 13px;
  transition: background .25s, color .25s;
}
.page-top:hover { background: var(--white); color: var(--red); }
.footer__copyright { color: var(--white); font-size: 11.5px; margin-top: 20px; letter-spacing: .06em; }

/* ---------- inline button ---------- */
.btn-inline { font-weight: 700; }

/* ============================================================
   shop.html（下層：SHOP LIST）
   ============================================================ */
.shoppage {
  background: #f398a6;
  min-height: 100vh;
  color: var(--white);
}
.shoppage__main {
  max-width: 640px;
  margin: 0 auto;
  padding: 48px 24px 64px;
  text-align: center;
}
.shoppage__back {
  display: inline-block;
  color: var(--white);
  text-decoration: none;
  font-size: 13px;
  font-weight: 700;
  opacity: .9;
  margin-bottom: 40px;
}
.shoppage__back:hover { text-decoration: underline; }
.shoppage__title {
  font-family: var(--font-latin);
  font-size: 34px;
  letter-spacing: .06em;
  margin-bottom: 14px;
}
.shoppage__lead { font-weight: 700; font-size: 15px; margin-bottom: 8px; }
.shoppage__lead--sub { margin-top: 48px; margin-bottom: 16px; }
.shoppage__note { font-size: 12.5px; opacity: .95; margin-bottom: 32px; }
.shoppage__list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  align-items: center;
}
.shoppage__item {
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 1px;
}
.shoppage__item--official { font-size: 15px; }
a.shoppage__item:hover { opacity: .8; }
.shoppage__footer { margin-top: 56px; }
.page-top--onpink { border-color: var(--white); color: var(--white); }
.page-top--onpink:hover { background: var(--white); color: #f398a6; }
.shoppage__copyright { font-size: 11.5px; margin-top: 20px; letter-spacing: .06em; opacity: .9; }

/* ---------- 下層ページ共通: 本文・表（ABOUT / SPEC） ---------- */
.shoppage__body {
  max-width: 560px;
  margin: 0 auto;
  font-size: 14.5px;
  line-height: 2.2;
  text-align: left;
}
.shoppage__body p + p { margin-top: 16px; }
.aboutpage__rabbit {
  display: block;
  width: 130px;
  height: auto;
  margin: 0 auto 28px;
}
.spec-table__wrap { overflow-x: auto; }
.spec-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 13px;
  line-height: 1.7;
  text-align: left;
  background: rgba(255, 255, 255, .1);
  border-radius: 14px;
  overflow: hidden;
}
.spec-table th, .spec-table td {
  padding: 12px 14px;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  vertical-align: top;
}
.spec-table thead th {
  font-family: var(--font-latin);
  letter-spacing: .06em;
  background: rgba(255, 255, 255, .14);
  white-space: nowrap;
}
.spec-table tbody tr:last-child th,
.spec-table tbody tr:last-child td { border-bottom: none; }
.spec-table td:first-child { font-family: var(--font-latin); font-weight: 700; white-space: nowrap; }
.spec-table td:last-child { white-space: nowrap; }

/* ============================================================
   responsive
   ============================================================ */
@media (max-width: 900px) {
  .lp { display: block; }
  .lp__sticky {
    position: static;
    height: 60vh;
    max-width: none;
  }
  .lp__main { max-width: none; box-shadow: none; }
}
@media (max-width: 560px) {
  .lp__main > section { padding: 48px 14px; }
  .lineup, .item, .promo, .gift { margin: 20px 8px 0; }
  .nav { gap: 22px; }
  .nav__item img { width: 72px; }
  .item__gallery { grid-template-columns: repeat(2, 1fr); }
  .item__gallery--thumbs { grid-template-columns: repeat(5, 1fr); gap: 6px; }
  .item__buy { flex-direction: column; align-items: stretch; text-align: center; padding: 12px 14px;}
  .item__price { text-align: center; letter-spacing: -0.5px;}
  .carousel-btn--prev { left: -6px; }
  .carousel-btn--next { right: -6px; }
  .click-badge { width: 46px; height: 46px; font-size: 10px; }
    

}
