@charset "UTF-8";
/* ============================================================
   HELLO KITTY × VIS  -  LP styles
   - スマホファースト：PC もモバイルデザインを中央寄せで自然拡大
   - PSD は 2x。px は 1/2 換算。単位は rem 基準（root=16px）。
   - line-height は倍率指定。
   - メインコンテンツ幅 = 375px（= 23.4375rem）中央寄せ、左右はベージュ余白。
   - アニメーション: scroll-in / ★B expand / ★C typing /
     ★E switch / ★F fade-up / ★G loop / TAP HERE 点滅
   ============================================================ */
:root {
  --hk-red: #e60012;
  --hk-yellow: #ffe200;
  --hk-text: #221714;
}

/* rem の基準を 16px に固定（共通CSSが root=14px のため）。
   :has で LP ページのみに限定（他ページのヘッダー等に影響させない）。
   ※実機で共通ヘッダー/フッターに影響する場合は要調整。 */
html:has(.hellokitty-vis) {
  font-size: 16px;
}

/* ---------- コンテナ ---------- */
.hellokitty-vis {
  /* 横方向のはみ出しのみクリップ（縦は visible）。
     overflow を縦横まとめて clip/hidden にすると子孫の position:sticky が
     効かなくなるため、横だけに限定する。 */
  overflow-x: clip;
  background: #f8e3b7; /* 左右余白色（ベージュ） */
  color: var(--hk-text);
  font-family: "aktiv-grotesk", "noto-sans-cjk-jp", "Noto Sans CJK JP", "Noto Sans JP", "Hiragino Kaku Gothic ProN", sans-serif;
  font-weight: 400;
  line-height: 1.7;
}

.hk-container {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
  display: flex;
  justify-content: space-between;
}

.hk-container__left {
  width: 56cqw;
  padding-top: 72px;
}
.hk-container__left .hk-pickup {
  margin-bottom: 0 !important;
}

/* 中央寄せの白カラム（モバイル基準・最大 412px） */
.hk-inner {
  width: 100%;
  max-width: 412px;
  margin-inline: auto;
  background: #fff;
}

.hellokitty-vis img {
  display: block;
  width: 100%;
  height: auto;
}

.hellokitty-vis a {
  text-decoration: none;
  color: inherit;
}

/* ---------- 表示切替ユーティリティ（SP: max-width 767px） ---------- */
.pc-only {
  display: block !important;
}

.sp-only {
  display: none !important;
}

@media (max-width: 767px) {
  .pc-only {
    display: none !important;
  }
  .sp-only {
    display: block !important;
  }
}
/* PC：左カラム（ピックアップ）を画面に固定し、右カラム（hk-inner）だけスクロール。
   ・flex の初期 align-items:stretch だと左がコンテナ全高に伸びて固定が効かないため
     align-self:flex-start を併用する。 */
@media (min-width: 768px) {
  /* 共通CSS(base.css)の body{overflow-x:hidden} は overflow-y を auto に格上げし
     body 自体をスクロールコンテナ化するため、子孫の sticky が効かない。
     clip に上書きすると overflow-y が visible に戻り、html スクロール基準で sticky が有効になる。 */
  body {
    overflow-x: clip;
  }
  .hk-container {
    align-items: flex-start;
  }
  .hk-container__left {
    position: sticky;
    top: 0;
    align-self: flex-start;
  }
}
/* ============================================================
   共通アニメーション
   ============================================================ */
/* scroll-in / ★F 下からフェードイン */
.scroll-in {
  opacity: 0;
  transform: translateY(2.5rem);
  transition: opacity 0.9s ease, transform 0.9s ease;
  will-change: opacity, transform;
}

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

/* ★B 要素が広がるように表示（スケールイン） */
.hk-expand {
  padding-top: 24px;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 1s ease, transform 1s cubic-bezier(0.22, 1, 0.36, 1);
}

.hk-expand.is-visible {
  opacity: 1;
  transform: scale(1);
}

/* ★B コイン：写真丸（前面）＋色柄丸（背面）が横にずれて覗く */
.hk-coins {
  /* .hk-expand の scale 演出は無効化し、コンテナは opacity フェードのみ */
  transform: none;
}

.hk-coins.is-visible {
  transform: none;
}

.hk-coins__set {
  position: relative;
  width: 180px;
  margin-inline: auto;
}

.hk-coins__set--tshirt {
  /* 後で相対配置で微調整する前提の初期値 */
  width: 160px;
  margin-left: auto;
  margin-right: 25px;
}

.hk-coins__set--pouch {
  margin-top: -50px;
  margin-left: 0px;
  margin-right: auto;
}

/* 中心点から広がるフェードイン（背景 → 写真の順） */
.hk-coins__disc,
.hk-coins__photo {
  opacity: 0;
  transform-origin: center center;
  transition: opacity 0.9s ease, transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.hk-coins__photo {
  position: relative;
  z-index: 2;
  transform: scale(0.2);
  /* 背景の後に写真が出る */
  transition-delay: 0.3s;
}

.hk-coins__disc {
  position: absolute;
  inset: 0;
  z-index: 1;
  /* 最初からずらして重ねる（横方向のみ）＋縮小 */
  transform: translateX(28%) scale(0.2);
}

.hk-coins.is-visible .hk-coins__photo {
  opacity: 1;
  transform: scale(1);
}

.hk-coins.is-visible .hk-coins__disc {
  opacity: 1;
  transform: translateX(28%) scale(1);
}

/* 2つ目（フェイスポーチ）は少し遅らせて出す＋背景を18px左寄せ */
.hk-coins__set--pouch .hk-coins__disc {
  transform: translateX(28%) translateX(-18px) scale(0.2);
  transition-delay: 0.15s;
}

.hk-coins.is-visible .hk-coins__set--pouch .hk-coins__disc {
  transform: translateX(28%) translateX(-18px) scale(1);
}

.hk-coins__set--pouch .hk-coins__photo {
  transition-delay: 0.45s;
}

/* クレジット表記：背景（丸）と同じタイミングでフェードイン */
.hk-coins__credit {
  position: relative;
  z-index: 2;
  width: 136px !important;
  margin-top: 6px;
  opacity: 0;
  transition: opacity 0.9s ease;
}

.hk-coins.is-visible .hk-coins__credit {
  opacity: 1;
}

/* Tシャツは右寄せ、フェイスポーチは左寄せ */
.hk-coins__set--tshirt .hk-coins__credit {
  margin-left: auto;
  margin-right: -4px;
}

.hk-coins__set--pouch .hk-coins__credit {
  margin-left: 16px;
  margin-right: auto;
  transition-delay: 0.15s;
}

/* TAP HERE>> 点滅（テキスト色） */
.hk-blink--yr {
  animation: hk-blink-yr 0.9s steps(1, end) infinite;
}

@keyframes hk-blink-yr {
  0%, 49% {
    color: var(--hk-yellow);
  }
  50%, 100% {
    color: var(--hk-red);
  }
}
.hk-blink--yw {
  animation: hk-blink-yw 0.9s steps(1, end) infinite;
}

@keyframes hk-blink-yw {
  0%, 49% {
    color: var(--hk-yellow);
  }
  50%, 100% {
    color: #fff;
  }
}
/* ★E 自動切替 / ★G 自動ループ：重ねた img をフェードで入れ替え */
.hk-switch,
.hk-loop,
.hk-allitem__slider {
  position: relative;
}

.hk-switch__img,
.hk-loop__img,
.hk-allitem__img {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.6s ease;
}

.hk-switch__img.is-active,
.hk-loop__img.is-active,
.hk-allitem__img.is-active {
  opacity: 1;
}

.hk-switch__img:first-child,
.hk-loop__img:first-child,
.hk-allitem__img:first-child {
  position: relative;
}

/* ★G 額装スライド：グレーギンガム背景 + 中央スライド写真 */
.hk-framed {
  position: relative;
  margin-top: 70px;
}

.hk-framed__bg {
  width: 100%;
  display: block;
}

.hk-framed__slider {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  z-index: 2;
  overflow: hidden;
}

.hk-framed__track {
  display: flex;
  will-change: transform;
}

.hk-framed__slide {
  flex: 0 0 63%;
}

.hk-framed__slide img {
  width: 100%;
  height: auto;
  display: block;
}

/* LOOK 01（ギンガム）切替コンテナ：左右に余白。
   margin-inline でコンテナ自体を内側にずらすので、
   absolute で重ねている2枚目以降の画像にも自動的に余白が反映される。
   ※ padding-inline を使うと absolute の inset:0 が padding-box 基準のため
   2枚目が padding をはみ出してしまう。 */
.hk-switch--gingham {
  margin-inline: 0.5rem; /* 20px */
}

.hk-switch--heartbag {
  margin-top: 80px;
}

/* リボン装飾：写真の右上に重ねる */
.hk-switch__deco {
  position: absolute;
  z-index: 3;
  top: -6%;
  right: 9%;
  width: 20% !important;
  height: auto;
}

/* ★C タイピング表示（キャレット点滅） */
.hk-typing {
  text-align: center;
  font-family: "aktiv-grotesk", "noto-sans-cjk-jp", sans-serif;
  font-weight: 700;
  font-size: 1.5rem; /* 24px */
  color: var(--hk-red);
  letter-spacing: 0.06em;
  padding: 1.375rem 0 0.5rem;
  min-height: 1.4em;
}

.hk-typing__caret {
  display: inline-block;
  animation: hk-caret 0.7s steps(1, end) infinite;
}

@keyframes hk-caret {
  0%, 49% {
    opacity: 1;
  }
  50%, 100% {
    opacity: 0;
  }
}
/* ============================================================
   セクション
   ============================================================ */
/* MV */
.hk-mv {
  line-height: 0;
}

.hk-mv__movie {
  display: block;
  width: 100%;
  height: auto;
}

/* イントロ */
.hk-intro {
  text-align: center;
  padding: 3.75rem 1.25rem 1.625rem; /* 34 20 26 */
}

.hk-intro__drinks {
  max-width: 9rem;
  margin: 0 auto 1.125rem;
}

.hk-intro__text {
  font-size: 0.835rem; /* 13px */
  line-height: 2;
}

/* HELLO KITTY Special Collection Item + TAP HERE 点滅 */
.hk-special {
  position: relative;
  display: block;
  max-width: 14.375rem; /* 230px */
  margin: 2rem auto 0;
}

/* baked の TAP HERE を切り取り、その位置に点滅テキストを重ねる */
.hk-special img {
  clip-path: inset(0 0 13% 0);
  max-width: 204px;
  margin: 0 auto;
}

.hk-special--pc {
  width: 260px;
  max-width: 100% !important;
  margin: auto;
  margin-top: -3rem;
}
.hk-special--pc img {
  max-width: 100% !important;
  /* PC画像は「TAP HERE>>」まで焼き込み済みなので、SP用の下13%クリップを解除 */
  clip-path: none;
}
.hk-special--pc {
  /* 焼き込みの「TAP HERE>>」をベージュ地でマスクして隠す
     （画像 512×139 中、実測 x237〜408 / y109〜127 の範囲を少し広めに覆う） */
}
.hk-special--pc::after {
  content: "";
  position: absolute;
  left: 44%;
  right: 17%;
  top: 75%;
  bottom: 4%;
  background: #f8e3b7;
  z-index: 1;
  pointer-events: none;
}
.hk-special--pc {
  /* マスクの上に点滅する TAP HERE を重ねる（黄↔赤で点滅） */
}
.hk-special--pc .hk-special__taphere {
  display: block;
  left: 63%;
  bottom: 9%;
  top: auto;
  transform: translateX(-50%) scaleX(0.95);
  font-size: 12px;
  letter-spacing: 0.02em;
  z-index: 2;
}

.hk-special__taphere {
  position: absolute;
  left: 50%;
  bottom: -4%;
  /* 横幅95%は scaleX で表現（translateX と併用） */
  transform: translateX(-50%) scaleX(0.95);
  transform-origin: center center;
  font-family: "gamay-editorial", sans-serif;
  font-weight: 900; /* Editorial Black */
  font-size: 1rem; /* 16px */
  letter-spacing: 0.04em;
  white-space: nowrap;
}

/* 区切り */
.hk-divider {
  padding: 1.5rem 1.25rem;
}

/* CSS 点線バージョン（#e1b77d・粗さは divider 画像に近づける） */
.hk-divider--dashed {
  padding: 0.875rem 1.25rem;
}

.hk-divider--dashed::before {
  content: "";
  display: block;
  height: 2px;
  background-image: repeating-linear-gradient(to right, #e1b77d 0 8px, transparent 8px 11px);
}

/* PICK UP ITEM */
.hk-pickup {
  padding: 1.5rem 1.25rem 0.5rem;
}

.hk-pickup__title {
  max-width: 7.8125rem; /* 125px */
  margin: 0 2% 0 0.75rem;
}

/* コラージュ：各タイルを配置（位置はデザイン基準・微調整可） */
.hk-collage {
  position: relative;
  width: 100%;
  aspect-ratio: 1/1.7;
}

.hk-collage .pu {
  position: absolute;
  display: block;
}

.pu--assort {
  width: 42%;
  top: 6%;
  left: 0;
  z-index: 3;
}

.pu--tote {
  width: 49%;
  top: 0%;
  right: 4%;
  z-index: 2;
}

.pu--plush {
  width: 39%;
  top: 25%;
  left: 34%;
  z-index: 4;
}

.pu--face {
  width: 36%;
  top: 50%;
  right: 3%;
  z-index: 5;
}

.pu--tshirt {
  width: 48%;
  top: 47%;
  left: 6%;
  z-index: 3;
}

.pu--heart {
  width: 40%;
  top: 72%;
  right: 8%;
  z-index: 4;
}

/* 商品名ラベル（★C タイピングで表示）*/
.pu__label {
  position: absolute;
  z-index: 6;
}

.hk-typing--pu {
  position: absolute;
  text-align: left;
  font-family: "gamay-editorial", sans-serif;
  font-weight: 900; /* Editorial Black */
  font-size: 11px;
  line-height: 1.2;
  letter-spacing: 0.1em;
  padding: 0;
  min-height: 0;
  color: var(--hk-red);
  white-space: pre-line; /* data-text の改行を反映 */
}

.pu--assort .pu__label {
  top: 65%;
  left: -10%;
  width: 40%;
  text-align: right;
  color: #e1b77d;
  position: absolute;
}

.pu--tote .pu__label {
  top: -12%;
  left: 0;
  width: 78%;
  color: #e1b77d;
}

.pu--plush .pu__label {
  bottom: 12%;
  left: 106%;
}

.pu--face .pu__label {
  bottom: 10%;
  right: 0;
  width: 135%;
  text-align: right;
  color: #e1b77d;
}

.pu--tshirt .pu__label {
  top: 100%;
  left: 6%;
  width: 75%;
  color: #e1b77d;
  padding-top: 2px;
}

.pu--heart .pu__label {
  bottom: 5%;
  right: 102%;
  width: 100%;
  text-align: right;
}

/* ============================================================
   PICK UP ITEM：PC（デスクトップ）専用の配置
   ・SP レイアウトとは配置が異なるため hk-collage--pc で上書き
   ・位置/サイズはデザイン基準の目測。微調整可。
   ============================================================ */
.hk-collage--pc {
  aspect-ratio: 1/0.6;
}

.hk-collage--pc .pu--assort {
  width: 147px;
  top: 13%;
  left: 4%;
  right: auto;
}

.hk-collage--pc .pu--tote {
  width: 162px;
  top: 5%;
  left: 28%;
  right: auto;
}

.hk-collage--pc .pu--plush {
  width: 142px;
  top: 40%;
  left: 22%;
  right: auto;
}

.hk-collage--pc .pu--face {
  width: 117px;
  top: 5%;
  left: 54%;
  right: auto;
}

.hk-collage--pc .pu--tshirt {
  width: 175px;
  top: 36%;
  left: 53%;
  right: auto;
}

.hk-collage--pc .pu--heart {
  width: 141px;
  top: 9%;
  left: 75%;
  right: auto;
}

/* ラベル位置（PC） */
.hk-collage--pc .pu--assort .pu__label {
  top: 64%;
  bottom: auto;
  left: 0;
  right: auto;
  width: 130%;
  text-align: left;
}

.hk-collage--pc .pu--tote .pu__label {
  top: auto;
  bottom: 96%;
  left: 0;
  right: auto;
  width: 110%;
  text-align: left;
}

.hk-collage--pc .pu--plush .pu__label {
  top: 74%;
  bottom: auto;
  right: auto;
  width: 100%;
  text-align: left;
}

.hk-collage--pc .pu--face .pu__label {
  top: 100%;
  bottom: auto;
  left: 0;
  right: auto;
  width: 140%;
  text-align: left;
}

.hk-collage--pc .pu--tshirt .pu__label {
  top: 91%;
  bottom: auto;
  left: 102%;
  right: auto;
  width: 100%;
  text-align: left;
}

.hk-collage--pc .pu--heart .pu__label {
  top: auto;
  bottom: 100%;
  left: 0;
  right: auto;
  width: 120%;
  text-align: left;
}

/* LOOK 共通 */
.hk-look {
  padding-bottom: 0.25rem;
}

.hk-look--red {
  padding-top: 80px;
}

.hk-heading {
  max-width: 73%; /* 225px */
  margin: 1.875rem auto 0.875rem;
}

.hk-fadeup {
  margin: 0 auto;
}

/* ピクニック：あしらい（テキスト）を背面写真の下レイヤーに重ねる
   ・写真（__photo）はアニメーションなし
   ・あしらい（__bg）は下からフェードイン（scroll-in） */
.hk-picnic {
  position: relative;
  margin: 0 auto;
}

.hk-picnic .hk-picnic__photo {
  position: relative;
  z-index: 2;
  width: 100%;
}

.hk-picnic .hk-picnic__bg {
  position: absolute;
  z-index: 1;
  top: -9%;
  left: 1.5%;
  width: 97%;
}

/* ラフィアトート ディテール（左：ドリンクイラスト帯 / 右：写真） */
.hk-raffia-detail {
  padding-top: 4px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3%;
}

.hk-raffia-detail .hk-raffia-detail__illu {
  width: 10.5%;
  flex: 0 0 auto;
  margin-left: 9%;
}

.hk-raffia-detail .hk-raffia-detail__photo {
  width: 72%;
  flex: 0 1 auto;
  margin-top: 24px;
}

/* ハート行 */
.hk-hearts {
  margin: 27px auto 32px;
  width: 76%;
}

/* 価格リスト */
.hk-pricelist {
  list-style: none;
  width: -moz-fit-content;
  width: fit-content;
  max-width: calc(100% - 3rem);
  margin: 1.5rem auto 0;
  padding: 0;
  font-family: "aktiv-grotesk", "noto-sans-cjk-jp", sans-serif;
  font-size: 0.8125rem; /* 13px */
}

.hk-pricelist a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 2px 0;
}

.hk-pricelist a::before {
  content: "";
  flex: 0 0 auto;
  width: 16px;
  height: 12.5px; /* 32:25 の比率 */
  background: url(../images/ribbon.png) no-repeat center/contain;
}

/* リボンなしの価格リスト */
.hk-pricelist--norib {
  margin-top: 0;
}

.hk-pricelist--norib a::before {
  content: none;
}

.hk-pricelist__row2 {
  display: flex;
  gap: 1.125rem;
}

.hk-pricelist__row2 a {
  flex: 0 1 auto;
}

.hk-buy {
  width: 35px !important;
  height: auto;
  flex: 0 0 auto;
}

/* ペア（キティイラスト + ギンガム額装 + スライダー） */
.hk-pair {
  margin-top: 74px;
}

.hk-pair__illust {
  width: 28%;
  margin: 0 auto;
}

.hk-pair__framed {
  position: relative;
}

.hk-pair__framed .hk-pair__check {
  width: 88%;
  margin: 0 auto;
}

.hk-pair__framed .hk-pair__photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 74%;
}

/* スライダー：幅74%、check_RD（88%）と右端を揃える */
.hk-pair__slider {
  width: 74%;
  margin: 14px 6% 0 auto;
}

/* ALL ITEM TAP HERE>>（黒ギンガム背景・左スライダー・右ハート） */
.hk-allitem {
  position: relative;
  margin-top: 40px;
}

.hk-allitem__bg {
  width: 92% !important;
  display: block;
  margin: 0 auto;
}

.hk-allitem__slider {
  position: absolute;
  top: 50%;
  left: 7.5%;
  transform: translateY(-50%);
  width: 42%;
  z-index: 2;
}

.hk-allitem__btn {
  position: absolute;
  top: 50%;
  right: 7.5%;
  transform: translateY(-50%);
  width: 33%;
  z-index: 3;
}

/* ハート画像（ALL ITEM 焼き込み済み） */
.hk-allitem__heart {
  display: block;
  width: 100%;
}
/* TAP HERE>>：白/黄の画像を重ねて点滅で切替（ALL ITEM の下） */
.hk-allitem__taphere {
  position: absolute;
  top: 55%;
  left: 48.4%; /* ハート内 ALL ITEM の中心 x に合わせる */
  transform: translate(-50%, -50%);
  width: 66%; /* taphere画像(182px) / ハート画像(275px) */
}
.hk-allitem__taphere-img {
  display: block;
  width: 100%;
}
.hk-allitem__taphere-img--w {
  position: absolute;
  inset: 0;
}
/* 黄→白を 0.9s 周期で切替（従来の点滅と同じテンポ） */
.hk-allitem__taphere-img--y {
  animation: hk-taphere-blink-y 0.9s steps(1, end) infinite;
}
.hk-allitem__taphere-img--w {
  animation: hk-taphere-blink-w 0.9s steps(1, end) infinite;
}
@keyframes hk-taphere-blink-y {
  0%,
  49% {
    opacity: 1;
  }
  50%,
  100% {
    opacity: 0;
  }
}
@keyframes hk-taphere-blink-w {
  0%,
  49% {
    opacity: 0;
  }
  50%,
  100% {
    opacity: 1;
  }
}

/* クレジット */
.hk-credit {
  text-align: center;
  padding: 80px 1.25rem 3.125rem;
  background: #fff;
}

.hk-credit__main {
  width: 68% !important;
  margin: 0 auto;
}

.hk-credit__logo {
  max-width: 13.75rem; /* 220px */
  margin: 35px auto 0;
}/*# sourceMappingURL=style.css.map */