@charset "UTF-8";

/* ==========================================================================
   紙らくパック × SPY×FAMILY コラボキャンペーンLP
   URL: https://www.j-oil.com/sp/kami_sf/
   Scope: .kami-sf-lp
   ========================================================================== */

.kami-sf-lp {
  /* ---- Design tokens ---- */
  --sp-unit: calc(100vw / 390);
  --pc-unit: 1px;
  --pc-unit-fluid: calc(100vw / 1440);

  /* Campaign colors */
  --c-x-green: #009c37;
  --c-x-green-deep: #007900;
  --c-receipt-pink: #ff8fb8;
  --c-receipt-pink-deep: #d40045;
  --c-sns-blue: #15bce4;
  --c-sns-blue-deep: #0064a6;
  --c-senryu-yellow: #f7cd00;
  --c-senryu-yellow-deep: #b04b00;
  --c-lineup-orange: #fd9f00;
  --c-lineup-orange-deep: #a93700;

  /* Base */
  --c-white: #ffffff;
  --c-cream: #fffdf3;
  --c-cream-soft: #faf8f2;
  --c-ink: #1a1a1a;
  --c-ink-sub: #666666;
  --c-red: #e6111c;

  /* Fonts */
  --ff-jp: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", sans-serif;
  --ff-jp-lp: "M PLUS 1p", sans-serif;

  font-family: var(--ff-jp-lp);
  color: var(--c-ink);
  font-feature-settings: "palt";
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  word-break: break-word;
  overflow-wrap: break-word;
}

/* ==========================================================================
   Reset / Base (scoped)
   ========================================================================== */
.kami-sf-lp,
.kami-sf-lp * {
  box-sizing: border-box;
}
.kami-sf-lp img,
.kami-sf-lp picture {
  display: block;
  max-width: 100%;
  height: auto;
}
.kami-sf-lp a {
  color: inherit;
  text-decoration: none;
}
.kami-sf-lp ul,
.kami-sf-lp ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.kami-sf-lp p {
  margin: 0;
}
.kami-sf-lp h1,
.kami-sf-lp h2,
.kami-sf-lp h3,
.kami-sf-lp h4 {
  margin: 0;
  font-family: var(--ff-jp-lp);
  font-weight: 900;
  line-height: 1.4;
}
.kami-sf-lp button {
  background: none;
  border: 0;
  padding: 0;
  font: inherit;
  color: inherit;
  cursor: pointer;
}
.kami-sf-lp .is-hidden {
  display: none !important;
}
.kami-sf-lp .br-sp { display: none; }
@media (max-width: 767px) {
  .kami-sf-lp .br-sp { display: inline; }
}
.kami-sf-lp .br-pc { display: inline; }
@media (max-width: 767px) {
  .kami-sf-lp .br-pc { display: none; }
}
.kami-sf-lp .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ==========================================================================
   Layout / Wrapper
   ========================================================================== */
.kami-sf-lp {
  overflow-x: clip;
  background: var(--c-cream);
}
/* ==========================================================================
   FV エリア（hero + fv-band 統合コンテナ・PC高さ810px）
   ========================================================================== */
.kami-sf-lp .fv{
  width: 100%;
}
@media (min-width: 768px) {
  .kami-sf-lp .fv{
    display: flex;
    flex-direction: column;
    height: calc(810 * var(--pc-unit));
  }
  .kami-sf-lp .fv .hero{
    flex: 0 0 auto;
    height: calc(525 * var(--pc-unit));
    aspect-ratio: unset;
    min-height: 0;
  }
  .kami-sf-lp .fv .fv-band{
    flex: 1 1 auto;
    min-height: 0;
  }
}

/* ==========================================================================
   FV / Hero
   ========================================================================== */
.kami-sf-lp .hero{
  position: relative;
  width: 100%;
  overflow: hidden;
}
@media (min-width: 768px) {
  .kami-sf-lp .hero{
    aspect-ratio: 1440 / 650;
  }
}
.kami-sf-lp .hero__bg{
  position: relative;
  z-index: 0;
}
.kami-sf-lp .hero__bg img{
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .hero__bg{
    position: absolute;
    inset: 0;
  }
  .kami-sf-lp .hero__bg img{
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
.kami-sf-lp .hero__content{
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4%;
  padding: 0;
}
.kami-sf-lp .hero__left{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3%;
  flex: 0 1 auto;
}
.kami-sf-lp .hero__left img,
.kami-sf-lp .hero__right img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .hero__title1{ width: calc(454 * var(--pc-unit)); }
.kami-sf-lp .hero__title2{ width: calc(439 * var(--pc-unit)); }
.kami-sf-lp .hero__main{ width: calc(622 * var(--pc-unit)); }
@media (min-width: 768px) {
  .kami-sf-lp .hero__right{
    transform: translateY(calc(69 * var(--pc-unit)));
  }
}
@media (max-width: 767px) {
  .kami-sf-lp .hero__content{
    flex-direction: column;
    justify-content: flex-start;
  }
  .kami-sf-lp .hero__title1{
    width: calc(376 * var(--sp-unit));
    margin-top: calc(16 * var(--sp-unit));
  }
  .kami-sf-lp .hero__title2{
    width: calc(342 * var(--sp-unit));
    margin-top: calc(-14 * var(--sp-unit));
  }
  .kami-sf-lp .hero__main{ width: calc(336 * var(--sp-unit)); }
  .kami-sf-lp .hero__right{ margin-top: calc(-18 * var(--sp-unit)); }
}

/* ==========================================================================
   FV下 グリーンバンド
   ========================================================================== */
.kami-sf-lp .fv-band{
  position: relative;
  background: #009844;
  padding: calc(8 * var(--sp-unit)) 0 calc(24 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .fv-band{
    padding: calc(50 * var(--pc-unit)) 0;
  }
}
.kami-sf-lp .fv-band__inner{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: calc(16 * var(--sp-unit));
  padding: 0 calc(20 * var(--sp-unit));
  position: relative;
}
@media (min-width: 768px) {
  .kami-sf-lp .fv-band__inner{
    flex-direction: row;
    justify-content: flex-end;
    width: calc(1140 * var(--pc-unit));
    margin: 0 auto;
    padding: 0;
    gap: calc(30 * var(--pc-unit));
  }
}
.kami-sf-lp .fv-band__left img,
.kami-sf-lp .fv-band__right img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .fv-band__left{ width: calc(353 * var(--sp-unit)); }
.kami-sf-lp .fv-band__right{ width: calc(250 * var(--sp-unit)); }
@media (min-width: 768px) {
  .kami-sf-lp .fv-band__left{
    position: absolute;
    top: calc(-80 * var(--pc-unit));
    left: 0;
    width: calc(660 * var(--pc-unit));
    z-index: 2;
  }
  .kami-sf-lp .fv-band__right{ width: calc(447 * var(--pc-unit)); }
}

/* ==========================================================================
   キャンペーン導線 3ボタン
   ========================================================================== */
.kami-sf-lp .fv-btns{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: calc(12 * var(--sp-unit)) 0;
  padding: calc(20 * var(--sp-unit)) calc(16 * var(--sp-unit)) 0;
}
@media (min-width: 768px) {
  .kami-sf-lp .fv-btns{
    justify-content: flex-start;
    gap: 0;
    padding: calc(65 * var(--pc-unit)) 0 0;
    width: calc(1140 * var(--pc-unit));
    margin: 0 auto;
  }
}
.kami-sf-lp .fv-btns__item{
  position: relative;
  display: block;
  width: calc(274 * var(--pc-unit));
  aspect-ratio: 274 / 92;
}
@media (max-width: 767px) {
  .kami-sf-lp .fv-btns__item{
    width: calc(170 * var(--sp-unit));
    aspect-ratio: 274 / 92;
  }
}
.kami-sf-lp .fv-btns__item::before{
  content: "";
  position: absolute;
  inset: 0;
  clip-path: polygon(8.54% 0, 100% 0, 91.46% 100%, 0 100%);
  background: var(--btn-shadow, #005800);
  z-index: 0;
  transition: opacity 0.15s ease;
}
.kami-sf-lp .fv-btns__item:nth-child(1){ --btn-shadow: #005800; }
.kami-sf-lp .fv-btns__item:nth-child(2){ --btn-shadow: #960032; }
.kami-sf-lp .fv-btns__item:nth-child(3){ --btn-shadow: #0d4692; }
.kami-sf-lp .fv-btns__item picture{
  position: absolute;
  top: 0;
  left: 0;
  width: calc(270 / 274 * 100%);
  height: calc(87 / 92 * 100%);
  z-index: 1;
  transition: transform 0.15s ease;
}
.kami-sf-lp .fv-btns__item picture img{
  display: block;
  width: 100%;
  height: 100%;
}
@media (min-width: 768px) {
  .kami-sf-lp .fv-btns__item:hover::before{
    opacity: 0;
  }
  .kami-sf-lp .fv-btns__item:hover picture{
    transform: translate(calc(4 * var(--pc-unit)), calc(5 * var(--pc-unit)));
  }
}

/* ==========================================================================
   Intro: オリジナルグッズ導入
   ========================================================================== */
.kami-sf-lp .cp-intro{
  position: relative;
  background: #fff;
}
.kami-sf-lp .cp-intro::before{
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: calc(6 * var(--sp-unit));
  z-index: 3;
  background-image: url("../img/goods/fv-bottom.svg");
  background-repeat: repeat-x;
  background-size: auto calc(6 * var(--sp-unit));
  background-position: top left;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-intro::before{
    height: calc(13 * var(--pc-unit));
    background-size: calc(33 * var(--pc-unit)) calc(13 * var(--pc-unit));
  }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-intro::before{
    top: -0.1vw;
  }
}
.kami-sf-lp .cp-intro__boundary{
  position: absolute;
  bottom: calc(-20 * var(--pc-unit));
  left: 0;
  width: 100%;
  height: calc(125 * var(--pc-unit));
  z-index: 4;
  pointer-events: none;
  overflow: visible;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-intro__boundary{
    bottom: calc(-8 * var(--sp-unit));
    height: calc(45 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-intro::after{
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: repeating-linear-gradient(
    -59deg,
    transparent 0,
    transparent 7.7px,
    rgba(255, 245, 217, 0.6) 7.7px,
    rgba(255, 245, 217, 0.6) 17.3px
  );
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 125 * var(--pc-unit)), 0 100%);
  pointer-events: none;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-intro::after{
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 45 * var(--sp-unit)), 0 100%);
  }
}
.kami-sf-lp .cp-intro__inner{
  position: relative;
  z-index: 2;
  width: 100%;
  height: calc(320 * var(--pc-unit));
  background-image: image-set(
    url("../img/goods/goods-bg.webp") type("image/webp"),
    url("../img/goods/goods-bg.png") type("image/png")
  );
  background-image: -webkit-image-set(
    url("../img/goods/goods-bg.webp") type("image/webp"),
    url("../img/goods/goods-bg.png") type("image/png")
  );
  background-size: calc(1266 * var(--pc-unit)) auto;
  background-repeat: no-repeat;
  background-position: center top;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: calc(75 * var(--pc-unit));
  clip-path: polygon(0 0, 100% 0, 100% calc(100% - 125 * var(--pc-unit)), 0 100%);
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-intro__inner{
    height: calc(175 * var(--sp-unit));
    padding-top: calc(38 * var(--sp-unit));
    background-image: image-set(
      url("../img/goods/goods-bg_sp.webp") type("image/webp"),
      url("../img/goods/goods-bg_sp.png") type("image/png")
    );
    background-image: -webkit-image-set(
      url("../img/goods/goods-bg_sp.webp") type("image/webp"),
      url("../img/goods/goods-bg_sp.png") type("image/png")
    );
    background-size: calc(278 * var(--sp-unit)) auto;
    background-position: left top;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 45 * var(--sp-unit)), 0 100%);
  }
}
.kami-sf-lp .cp-character-wrap{
  position: relative;
  inset: 0;
  width: calc(1140 * var(--pc-unit));
  margin-inline: auto;
  pointer-events: none;
  z-index: 5;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-character-wrap{
    width: 100%;
  }
}
.kami-sf-lp .cp-character{
  position: absolute;
  right: 0;
  top: -61px;
  width: calc(288 * var(--pc-unit));
  z-index: 5;
  transform: scale(0);
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-character{
    width: calc(111 * var(--sp-unit));
    top: calc(-15 * var(--sp-unit));
    right: calc(10 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-character.is-in{
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .kami-sf-lp .cp-character{
    transform: none;
    transition: none;
  }
}
.kami-sf-lp .cp-character picture,
.kami-sf-lp .cp-character img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .cp-intro__box{
  position: relative;
  width: calc(1110 * var(--pc-unit));
  margin: 0 auto;
  padding: 0 0 0 63px;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-intro__box{
    padding-left: calc(34 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-intro__title{
  display: block;
  width: calc(230 * var(--sp-unit));
}
.kami-sf-lp .cp-intro__title img{
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-intro__title{
    width: calc(714 * var(--pc-unit));
  }
}
.kami-sf-lp .star{
  position: absolute;
  z-index: 4;
  pointer-events: none;
  animation: star-spin linear infinite;
  will-change: transform;
  filter: drop-shadow(2px 1px 2px rgba(121, 110, 0, 0.1));
}
@keyframes star-spin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}
@media (prefers-reduced-motion: reduce) {
  .kami-sf-lp .star{ animation: none; }
}
.kami-sf-lp .star--1{
  top: calc(-45 * var(--pc-unit));
  left: calc(25 * var(--pc-unit));
  width: calc(63 * var(--pc-unit));
  animation-duration: 8s;
}
.kami-sf-lp .star--2{
  top: calc(120 * var(--pc-unit));
  left: calc(150 * var(--pc-unit));
  width: calc(46 * var(--pc-unit));
  animation-duration: 12s;
  animation-direction: reverse;
}
.kami-sf-lp .star--3{
  top: calc(-8 * var(--pc-unit));
  left: calc(728 * var(--pc-unit));
  width: calc(44 * var(--pc-unit));
  animation-duration: 6s;
}
@media (max-width: 767px) {
  .kami-sf-lp .star--1{
    top: calc(-20 * var(--sp-unit));
    left: calc(15 * var(--sp-unit));
    width: calc(24 * var(--sp-unit));
  }
  .kami-sf-lp .star--2{
    top: calc(90 * var(--sp-unit));
    left: calc(25 * var(--sp-unit));
    width: calc(34 * var(--sp-unit));
  }
  .kami-sf-lp .star--3{
    top: calc(63 * var(--sp-unit));
    left: calc(234 * var(--sp-unit));
    width: calc(33 * var(--sp-unit));
  }
}

/* ==========================================================================
   Campaign section base
   ========================================================================== */
.kami-sf-lp .cp-block{
  padding: calc(75 * var(--sp-unit)) 0 calc(80 * var(--sp-unit));
  margin-top: calc(-45 * var(--sp-unit));
  clip-path: polygon(0 calc(45 * var(--sp-unit)), 100% 0, 100% 100%, 0 100%);
  position: relative;
  background-image: image-set(
    url("../img/bg-cont.webp") type("image/webp"),
    url("../img/bg-cont.png") type("image/png")
  );
  background-image: -webkit-image-set(
    url("../img/bg-cont.webp") type("image/webp"),
    url("../img/bg-cont.png") type("image/png")
  );
  background-repeat: repeat;
  background-position: center top;
  background-size: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-block{
    padding: calc(180 * var(--pc-unit)) 0 calc(160 * var(--pc-unit));
    margin-top: calc(-125 * var(--pc-unit));
    clip-path: polygon(0 calc(125 * var(--pc-unit)), 100% 0, 100% 100%, 0 100%);
  }
}
.kami-sf-lp .cp-block__inner{
  width: calc(100% - calc(48 * var(--sp-unit)));
  margin: 0 auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-block__inner{
    width: calc(960 * var(--pc-unit));
    max-width: 960px;
  }
}
.kami-sf-lp .cp-block__title{
  text-align: center;
  color: var(--c-white);
  font-size: calc(32 * var(--sp-unit));
  line-height: 1.2;
  margin-bottom: calc(24 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-block__title{
    font-size: calc(52 * var(--pc-unit));
  }
}
.kami-sf-lp .cp-block__panel{
  background: var(--c-white);
  border-radius: calc(20 * var(--sp-unit));
  padding: calc(32 * var(--sp-unit)) calc(20 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-block__panel{
    border-radius: calc(28 * var(--pc-unit));
    padding: calc(56 * var(--pc-unit)) calc(48 * var(--pc-unit));
  }
}
/* Decorative hatched wedge at each cp-block bottom (block_last) */
/* Design SVG extends below the section boundary; next section covers the lower half via natural stacking */
.kami-sf-lp .cp-block{ position: relative; }
.kami-sf-lp .cp-block__decor{
  position: absolute;
  right: 0;
  bottom: 0;
  width: 50%;
  aspect-ratio: 705 / 201;
  height: auto;
  pointer-events: none;
  z-index: 0;
}
/* Per-section wedge color (--decor-color) */
.kami-sf-lp .cp-x{ --decor-color: #91ce2c; }
.kami-sf-lp .cp-receipt{ --decor-color: #ff8fb8; }
.kami-sf-lp .cp-sns{ --decor-color: #15bce4; }
.kami-sf-lp .cp-senryu{ --decor-color: #f7cd00; }
/* Mirror wedge for sections whose bottom boundary is UP-RIGHT (cp-receipt, cp-senryu) */
.kami-sf-lp .cp-receipt .cp-block__decor,
.kami-sf-lp .cp-senryu .cp-block__decor{
  right: auto;
  left: 0;
  transform: scaleX(-1);
}
/* cp-sns: polygon already flipped in HTML, only move container to left */
.kami-sf-lp .cp-sns .cp-block__decor{
  right: auto;
  left: 0;
}
@media (min-width: 1440px) {
  .kami-sf-lp .cp-block__decor{
    /* vw>=1440 で境界の clip オフセットは 62.5px 固定、tip オフセットは vw に比例 (0.04435*vw) */
    /* 先端が境界へ接するよう bottom を差分で押し下げる: 62.5px - 4.435vw */
    bottom: calc(62.5px - 4.435vw);
  }
}

/* Section-to-section diagonal boundary dotted line */
.kami-sf-lp .cp-boundary{
  position: relative;
  height: 0;
  z-index: 4;
  overflow: visible;
  pointer-events: none;
}
.kami-sf-lp .cp-boundary svg{
  position: absolute;
  bottom: calc(-8 * var(--sp-unit));
  left: 0;
  width: 100%;
  height: calc(45 * var(--sp-unit));
  display: block;
  overflow: visible;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-boundary svg{
    bottom: calc(-20 * var(--pc-unit));
    height: calc(125 * var(--pc-unit));
  }
}

/* Campaign backgrounds */
.kami-sf-lp .cp-x{
  background-color: #91ce2c;
}

/* cp-x title stack */
.kami-sf-lp .cp-x__head{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kami-sf-lp .cp-x__catch{
  position: relative;
  top: calc(37 * var(--pc-unit));
}
.kami-sf-lp .cp-x__catch img{
  width: calc(138 * var(--pc-unit));
  height: auto;
  display: block;
}
.kami-sf-lp .cp-x__title-row{
  position: relative;
  top: calc(26 * var(--pc-unit));
}
.kami-sf-lp .cp-x__att{
  position: absolute;
  top: calc(60 * var(--pc-unit));
  left: calc(-95 * var(--pc-unit));
}
.kami-sf-lp .cp-x__att img{
  width: calc(73 * var(--pc-unit));
  height: auto;
  display: block;
}
.kami-sf-lp .cp-x__title img{
  width: calc(377 * var(--pc-unit));
  height: auto;
  display: block;
}
.kami-sf-lp .cp-x__sub img{
  width: calc(467 * var(--pc-unit));
  height: auto;
  display: block;
}

/* Shared head stack for cp-receipt / cp-sns / cp-senryu (image trio) */
.kami-sf-lp .cp-block__head{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kami-sf-lp .cp-block__head .cp-block__title{
  margin: 0 0 -30px 0;
  font-size: 0;
  line-height: 0;
}
.kami-sf-lp .cp-block__catch img,
.kami-sf-lp .cp-block__title img,
.kami-sf-lp .cp-block__sub img{
  height: auto;
  display: block;
}
.kami-sf-lp .cp-receipt .cp-block__catch img{ width: calc(137 * var(--pc-unit)); }
.kami-sf-lp .cp-receipt .cp-block__title img{ width: calc(508 * var(--pc-unit)); }
.kami-sf-lp .cp-receipt .cp-block__sub img{ width: calc(247 * var(--pc-unit)); }
.kami-sf-lp .cp-sns     .cp-block__catch img{ width: calc(137 * var(--pc-unit)); }
.kami-sf-lp .cp-sns     .cp-block__title img{ width: calc(678 * var(--pc-unit)); }
.kami-sf-lp .cp-sns     .cp-block__sub img{ width: calc(275 * var(--pc-unit)); }
.kami-sf-lp .cp-senryu  .cp-block__catch img{ width: calc(136 * var(--pc-unit)); }
.kami-sf-lp .cp-senryu  .cp-block__title img{ width: calc(749 * var(--pc-unit)); }
.kami-sf-lp .cp-senryu  .cp-block__sub img{ width: calc(546 * var(--pc-unit)); }

/* Lineup head stack */
.kami-sf-lp .lineup__head{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kami-sf-lp .lineup__head .lineup__title{
  margin: 0;
  font-size: 0;
  line-height: 0;
}
.kami-sf-lp .lineup__catch img,
.kami-sf-lp .lineup__title img,
.kami-sf-lp .lineup__sub img{
  height: auto;
  display: block;
}
.kami-sf-lp .lineup__catch img{ width: calc(223 * var(--pc-unit)); }
.kami-sf-lp .lineup__title img{ width: calc(959 * var(--pc-unit)); }
.kami-sf-lp .lineup__sub img{ width: calc(898 * var(--pc-unit)); }

@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__catch img{ width: calc(68 * var(--sp-unit)); }
  .kami-sf-lp .cp-receipt .cp-block__title img{ width: calc(220 * var(--sp-unit)); }
  .kami-sf-lp .cp-receipt .cp-block__sub img{ width: calc(109 * var(--sp-unit)); }
  .kami-sf-lp .cp-sns     .cp-block__catch img{ width: calc(68 * var(--sp-unit)); }
  .kami-sf-lp .cp-sns     .cp-block__title img{ width: calc(178 * var(--sp-unit)); }
  .kami-sf-lp .cp-sns     .cp-block__sub img{ width: calc(122 * var(--sp-unit)); }
  .kami-sf-lp .cp-senryu  .cp-block__catch img{ width: calc(70 * var(--sp-unit)); }
  .kami-sf-lp .cp-senryu  .cp-block__title img{ width: calc(320 * var(--sp-unit)); }
  .kami-sf-lp .cp-senryu  .cp-block__sub img{ width: calc(234 * var(--sp-unit)); }
  .kami-sf-lp .lineup__catch img{ width: calc(91 * var(--sp-unit)); margin-bottom: calc(10 * var(--sp-unit)); }
  .kami-sf-lp .lineup__title img{ width: calc(214 * var(--sp-unit)); }
  .kami-sf-lp .lineup__sub img{ width: calc(264 * var(--sp-unit)); }
}

.kami-sf-lp .cp-block__body{
  position: relative;
  --body-pad-pc: calc(110 * var(--pc-unit));
  width: calc(1100 * var(--pc-unit));
  max-width: 1100px;
  margin: 30px auto;
  background-color: var(--body-bg, #f4faea);
  border: 10px solid var(--body-border, var(--c-x-green-deep));
  border-radius: 20px;
  padding: 0 var(--body-pad-pc);
}
.kami-sf-lp .cp-block__character{
  position: absolute;
  top: calc(-210 * var(--pc-unit));
  left: calc(-110 * var(--pc-unit));
  width: calc(392 * var(--pc-unit));
  pointer-events: none;
  z-index: 5;
  transform: scale(0);
  transform-origin: center bottom;
  transition: transform 0.45s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.kami-sf-lp .cp-block__character.is-in{
  transform: scale(1);
}
@media (prefers-reduced-motion: reduce) {
  .kami-sf-lp .cp-block__character{
    transform: none;
    transition: none;
  }
}
.kami-sf-lp .cp-block__character img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__character{
    top: calc(-15 * var(--sp-unit));
    left: calc(-10 * var(--sp-unit));
    width: calc(144 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-block__body h2{
  position: relative;
  display: table;
  margin-inline: auto;
  padding: calc(5 * var(--pc-unit)) calc(45 * var(--pc-unit)) calc(8 * var(--pc-unit));
  text-align: center;
  font-weight: 700;
  font-size: calc(34 * var(--pc-unit));
  color: #ffffff;
  z-index: 0;
}
.kami-sf-lp .cp-block__body h2::before{
  content: "";
  position: absolute;
  inset: 0;
  background: var(--h2-bg, var(--body-border));
  transform: skewX(-25deg);
  z-index: -1;
}
.kami-sf-lp .cp-block__body .cp-block__h2--period{ --h2-bg: #000000; }
.kami-sf-lp .cp-block__body .cp-block__h2--notes{
  padding: calc(15 * var(--pc-unit)) calc(45 * var(--pc-unit)) calc(18 * var(--pc-unit));
  font-size: calc(20 * var(--pc-unit));
}

.kami-sf-lp .cp-block__prize{
  padding-top: calc(50 * var(--pc-unit));
}
.kami-sf-lp .cp-block__period{
  position: relative;
  margin-top: calc(100 * var(--pc-unit));
  padding: calc(45 * var(--pc-unit));
  background: #ffffff;
  border: 2px solid #000000;
  text-align: center;
}
.kami-sf-lp .cp-receipt .cp-block__period{
  padding-bottom: calc(25 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__period{
    padding-bottom: calc(10 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-block__period-sub{
  position: absolute;
  pointer-events: none;
}
.kami-sf-lp .cp-block__period-sub img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .cp-block__period-sub--1{
  width: calc(126 * var(--pc-unit));
  top: calc(-60 * var(--pc-unit));
  right: calc(-210 * var(--pc-unit));
}
.kami-sf-lp .cp-block__period-sub--2{
  width: calc(122 * var(--pc-unit));
  bottom: calc(113 * var(--pc-unit));
  right: calc(-97 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__period-sub { display: none; }
}
.kami-sf-lp .cp-block__method{
  position: relative;
}
.kami-sf-lp .cp-block__method-sub{
  position: absolute;
  pointer-events: none;
}
.kami-sf-lp .cp-block__method-sub img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .cp-block__method-sub--1{
  width: calc(74 * var(--pc-unit));
  bottom: calc(80 * var(--pc-unit));
  left: calc(-160 * var(--pc-unit));
}
.kami-sf-lp .cp-block__method-sub--2{
  width: calc(60 * var(--pc-unit));
  bottom: calc(20 * var(--pc-unit));
  left: calc(-80 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__method-sub { display: none; }
}
.kami-sf-lp .cp-block__period > h2{
  margin-top: calc(-45 * var(--pc-unit) - 1px);
  transform: translateY(-50%);
}
.kami-sf-lp .cp-block__period-date{
  font-weight: 800;
  font-size: calc(32 * var(--pc-unit));
  color: #000000;
}
.kami-sf-lp .cp-block__period .cp-block__period-phase-title{
  display: table;
  margin: 0 auto calc(10 * var(--pc-unit));
  padding: 0 calc(30 * var(--pc-unit));
  text-align: center;
  font-weight: 800;
  font-size: calc(24 * var(--pc-unit));
  color: #ffffff;
  background: #f01d00;
  border-radius: 20px;
}
.kami-sf-lp .cp-block__period-divider{
  height: 0;
  margin: calc(40 * var(--pc-unit)) 0;
  border: 0;
  border-top: 1px dashed #979797;
}
.kami-sf-lp .cp-block__section{
  margin: calc(100 * var(--pc-unit)) 0;
}
.kami-sf-lp .cp-block__section--bordered{
  border: 2px solid #d40045;
}
.kami-sf-lp .cp-block__section--bordered > h2{
  margin-top: -1px;
  transform: translateY(-50%);
}
.kami-sf-lp .cp-block__notes{
  height: calc(500 * var(--pc-unit));
  padding: calc(30 * var(--pc-unit));
  background: #ffffff;
  margin-top: calc(35 * var(--pc-unit));
}
.kami-sf-lp .cp-block__notes {
  font-weight: 500;
  font-size: calc(14 * var(--pc-unit));
  line-height: calc(24 * var(--pc-unit));
  color: #000000;
}
.kami-sf-lp .cp-block__notes > * {
  height: 100%;
  overflow-y: auto;
}
.kami-sf-lp .cp-block__notes ol {
  list-style: decimal;
  padding-left: 1.5em;
}
.kami-sf-lp .cp-block__notes-disc {
  list-style: "・";
  padding-left: 1em;
}
.kami-sf-lp .cp-block__notes h3 {
  margin-top: calc(35 * var(--pc-unit));
  font-weight: 700;
  font-size: calc(18 * var(--pc-unit));
  line-height: calc(28 * var(--pc-unit));
  color: #000000;
}
.kami-sf-lp .cp-block__notes h3:first-of-type {
  margin-top: 0;
}
.kami-sf-lp .cp-block__method-lead {
  margin: calc(35 * var(--pc-unit)) 0 calc(55 * var(--pc-unit));
  text-align: center;
  font-weight: 700;
  font-size: calc(24 * var(--pc-unit));
  line-height: 1.5;
  color: #000000;
}
.kami-sf-lp .cp-block__steps{
  display: flex;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-block__steps{
    justify-content: space-between;
  }
  .kami-sf-lp .cp-receipt .cp-block__steps{
    display: grid;
    grid-template-columns: repeat(3, calc(270 * var(--pc-unit)));
    grid-template-rows: auto auto 1fr auto;
    width: calc(840 * var(--pc-unit));
    margin-inline: auto;
  }
  .kami-sf-lp .cp-receipt .cp-block__step{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    width: calc(270 * var(--pc-unit));
    padding: 0 calc(20 * var(--pc-unit)) calc(20 * var(--pc-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__step > h3{
    margin-bottom: calc(25 * var(--pc-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__step-body{
    display: contents;
  }
  .kami-sf-lp .cp-receipt .cp-block__step-body > div{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: calc(20 * var(--pc-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__steps{
    display: grid;
    grid-template-columns: repeat(3, calc(270 * var(--pc-unit)));
    width: calc(840 * var(--pc-unit));
    max-width: 840px;
    margin: calc(40 * var(--pc-unit)) auto 0;
    justify-content: space-between;
  }
  .kami-sf-lp .cp-sns .cp-block__step{
    width: calc(270 * var(--pc-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-body{
    padding: calc(30 * var(--pc-unit)) calc(20 * var(--pc-unit));
  }
}
.kami-sf-lp .cp-block__step{
  display: flex;
  flex-direction: column;
  width: calc(410 * var(--pc-unit));
  background: #ffffff;
  border: 2px solid #000000;
}
.kami-sf-lp .cp-block__step h3{
  display: table;
  margin: 0 auto;
  padding: 0 calc(40 * var(--pc-unit));
  text-align: center;
  font-weight: 700;
  font-size: calc(24 * var(--pc-unit));
  line-height: 1.75;
  color: #ffffff;
  background: #666666;
  border-radius: 0 0 15px 15px;
}
.kami-sf-lp .cp-block__step-body{
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: calc(25 * var(--pc-unit)) calc(30 * var(--pc-unit));
}
.kami-sf-lp .cp-block__step-body p{
  font-weight: 500;
  font-size: calc(18 * var(--pc-unit));
  line-height: calc(30 * var(--pc-unit));
  color: #000000;
}
.kami-sf-lp .cp-block__step-actions{
  display: flex;
  flex-direction: column;
  gap: calc(20 * var(--pc-unit));
  margin: auto 0;
  padding-top: calc(30 * var(--pc-unit));
}
.kami-sf-lp .cp-block__step-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: calc(20 * var(--pc-unit));
  padding: calc(6 * var(--pc-unit)) 0;
  background: #000000;
  color: #ffffff;
  border-radius: 999px;
  font-weight: 700;
  font-size: calc(14 * var(--pc-unit));
  line-height: calc(21 * var(--pc-unit));
  text-align: center;
}
.kami-sf-lp .cp-block__step-btn--fixed {
  position: relative;
  width: calc(285 * var(--pc-unit));
  padding: calc(10 * var(--pc-unit)) 0;
  align-self: center;
}
.kami-sf-lp .cp-block__step-btn--fixed .cp-block__step-btn__icon {
  position: absolute;
  left: calc(30 * var(--pc-unit));
  top: 50%;
  transform: translateY(-50%);
}
.kami-sf-lp .cp-block__step-btn__icon {
  flex-shrink: 0;
  width: auto;
  height: calc(22 * var(--pc-unit));
}
.kami-sf-lp .cp-block__step-btn--re {
  background: #d60000;
}
.kami-sf-lp .cp-block__step-btn--x.cp-block__step-btn--soon {
  background: rgba(0, 0, 0, 0.5);
}
.kami-sf-lp .cp-block__step-btn--re.cp-block__step-btn--soon {
  background: rgba(214, 0, 0, 0.5);
}
.kami-sf-lp .cp-block__step-btn--soon{
  pointer-events: none;
  cursor: default;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__steps{
    flex-direction: column;
    gap: calc(20 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step{
    width: 100%;
  }
  .kami-sf-lp .cp-receipt .cp-block__step{
    width: calc(270 * var(--sp-unit));
    margin-inline: auto;
  }
  .kami-sf-lp .cp-block__step h3{
    padding: 0 calc(30 * var(--sp-unit));
    font-size: calc(17.561 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step-body{
    padding: calc(20 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step-body p{
    font-size: calc(14 * var(--sp-unit));
    line-height: calc(22 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step-btn {
    gap: calc(16 * var(--sp-unit));
    padding: calc(12 * var(--sp-unit)) calc(20 * var(--sp-unit));
    font-size: calc(11 * var(--sp-unit));
    line-height: calc(15.4412 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step-btn--fixed {
    width: calc(230 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step-btn--fixed .cp-block__step-btn__icon {
    left: calc(25 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step-btn__icon {
    height: calc(15 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__step-actions{
    margin-top: calc(20 * var(--sp-unit));
  }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__period{
    margin-top: calc(75 * var(--sp-unit));
    padding: calc(15 * var(--sp-unit)) calc(18 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__period > h2{
    margin-top: calc(-15 * var(--sp-unit) - 1px);
  }
  .kami-sf-lp .cp-block__period-date{
    font-size: calc(20 * var(--sp-unit));
    line-height: 1.3;
  }
  .kami-sf-lp .cp-block__period .cp-block__period-phase-title{
    font-size: calc(14 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__method-lead {
    margin: calc(17 * var(--sp-unit)) 0 calc(25 * var(--sp-unit));
    font-size: calc(16 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__notes{
    height: calc(330 * var(--sp-unit));
    padding: calc(18 * var(--sp-unit));
    margin-top: calc(17 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__notes {
    font-size: calc(12 * var(--sp-unit));
    line-height: calc(18 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__notes h3 {
    margin-top: calc(25 * var(--sp-unit));
    font-size: calc(15 * var(--sp-unit));
    line-height: calc(22 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__section{
    margin: calc(60 * var(--sp-unit)) 0;
  }
}
.kami-sf-lp .cp-block__lead {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(30 * var(--pc-unit));
  color: #d40045;
  text-align: center;
  border: 2px solid #d40045;
  background: rgba(255, 143, 184, 0.1);
  width: fit-content;
  margin: calc(35 * var(--pc-unit)) auto 0;
  padding: 0 calc(50 * var(--pc-unit));
  border-radius: calc(30 * var(--pc-unit));
  line-height: 1.35em;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__lead {
    font-size: calc(16.9014 * var(--sp-unit));
    margin-top: calc(15 * var(--sp-unit));
    padding: 0;
    width: 100%;
  }
}

.kami-sf-lp .cp-block__desc {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(24 * var(--pc-unit));
  line-height: 1.5;
  color: #000000;
  text-align: center;
  margin: calc(30 * var(--pc-unit)) 0 calc(40 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__desc {
    font-size: calc(16 * var(--sp-unit));
    margin: calc(12 * var(--sp-unit)) 0 calc(20 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__sub-catch {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(28 * var(--pc-unit));
  line-height: 1.75;
  color: #000000;
  text-align: center;
  margin: calc(60 * var(--pc-unit)) 0 calc(25 * var(--pc-unit));
}

.kami-sf-lp .cp-block__period-catch {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(24 * var(--pc-unit));
  line-height: 1.5;
  color: #000000;
  background: none;
  text-align: center;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__period-catch {
    font-size: calc(16 * var(--sp-unit));
    line-height: 1.56;
    margin-bottom: calc(15 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__period-note {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(16 * var(--pc-unit));
  line-height: 1.875;
  color: #000000;
  margin-top: calc(25 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__period-note {
    font-size: calc(12 * var(--sp-unit));
    line-height: 1.33;
    margin-top: calc(20 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__tier{
  border: 2px solid #d40045;
  display: grid;
  grid-template-rows:
    auto  /* 1: h3 (第X弾) */
    auto  /* 2: 期間 */
    auto  /* 3: カード名 */
    auto  /* 4: 「金額」 */
    auto  /* 5: 50名様 */
    auto  /* 6: QUOカード画像 */
    auto  /* 7: パッケージ名 */
    auto  /* 8: 100名様 */
    auto; /* 9: パッケージ画像 */
  text-align: center;
}
.kami-sf-lp .cp-block__tier > *:not(h3){
  justify-self: center;
}
.kami-sf-lp .cp-block__tier > h3{
  justify-self: stretch;
}
.kami-sf-lp .cp-block__tiers{
  grid-template-rows:
    auto auto auto auto auto auto auto auto auto;
}
.kami-sf-lp .cp-block__tier > *{
  min-width: 0;
}
.kami-sf-lp .cp-block__tier h3 {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(20 * var(--pc-unit));
  line-height: 1.5;
  color: #ffffff;
  background: #d40045;
  text-align: center;
  padding: calc(10 * var(--pc-unit)) 0;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tier h3 {
    font-size: calc(20 * var(--sp-unit));
    padding: calc(8 * var(--sp-unit)) 0;
  }
}

.kami-sf-lp .cp-block__tier-period {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(20 * var(--pc-unit));
  line-height: 1.5;
  color: #000000;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tier-period {
    font-size: calc(20 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__tier-name {
  font-family: var(--ff-jp-lp);
  font-weight: 800;
  font-size: calc(24 * var(--pc-unit));
  line-height: 1.25;
  color: #d40045;
  border-bottom: 2px dashed #d40045;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tier-name {
    font-size: calc(24 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__tier-price {
  font-family: var(--ff-jp-lp);
  font-weight: 800;
  font-size: calc(20 * var(--pc-unit));
  line-height: 1.5;
  color: #d40045;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tier-price {
    font-size: calc(20 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__tier-count {
  font-family: var(--ff-jp-lp);
  font-weight: 800;
  font-size: calc(26.6152 * var(--pc-unit));
  line-height: 1;
  color: #ffffff;
  width: calc(100 * var(--pc-unit));
  aspect-ratio: 2.5 / 1;
  background: #d40045;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tier-count {
    font-size: calc(26.6152 * var(--sp-unit));
    width: calc(100 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-block__tier-count-unit {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(13.849 * var(--pc-unit));
}

@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tier-image img{
    display: block;
    width: 100%;
    height: auto;
  }
}

.kami-sf-lp .cp-block__products{
  display: flex;
  flex-direction: column;
  row-gap: calc(50 * var(--pc-unit));
  margin-top: calc(60 * var(--pc-unit));
  margin-bottom: calc(70 * var(--pc-unit));
}
.kami-sf-lp .cp-block__products-row{
  display: grid;
  grid-template-rows: auto auto;
  justify-content: center;
  row-gap: calc(15 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__products-row{
    row-gap: calc(7 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-block__products-row--3{
  grid-template-columns: repeat(3, calc(120 * var(--pc-unit)));
  column-gap: calc(70 * var(--pc-unit));
}
.kami-sf-lp .cp-block__products-row--4{
  grid-template-columns: repeat(4, calc(120 * var(--pc-unit)));
  column-gap: calc(60 * var(--pc-unit));
}
.kami-sf-lp .cp-block__products-row:nth-child(2){
  grid-template-columns: calc(120 * var(--pc-unit)) calc(130 * var(--pc-unit)) calc(120 * var(--pc-unit));
}
.kami-sf-lp .cp-block__product{
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  justify-items: center;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__products{
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    row-gap: calc(60 * var(--sp-unit));
    margin-top: calc(25 * var(--sp-unit));
    margin-bottom: calc(55 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__product{
    row-gap: calc(7 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__products-row{
    display: contents;
  }
  .kami-sf-lp .cp-block__product{
    width: calc(85 * var(--sp-unit));
    justify-self: center;
  }
  .kami-sf-lp .cp-block__products-row:nth-child(2) > .cp-block__product:nth-child(2){
    width: calc(90 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__products-row:last-child > .cp-block__product:last-child{
    grid-column: span 2;
  }
}
.kami-sf-lp .cp-block__product-image{
  align-self: end;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-block__product-image{
    width: calc(112 * var(--pc-unit));
  }
  .kami-sf-lp .cp-block__products-row:nth-child(2) > .cp-block__product:nth-child(2) .cp-block__product-image{
    width: calc(130 * var(--pc-unit));
  }
}
.kami-sf-lp .cp-block__product-name {
  font-family: var(--ff-jp-lp);
  font-weight: 500;
  font-size: calc(14 * var(--pc-unit));
  line-height: 1.64;
  color: #000000;
  text-align: left;
}
.kami-sf-lp .cp-block__step-note {
  font-family: var(--ff-jp-lp);
  font-weight: 400;
  font-size: calc(14 * var(--pc-unit));
  line-height: 1.36;
  color: #000000;
  padding-left: 1em;
  text-indent: -1em;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__step-note {
    font-size: calc(14 * var(--sp-unit));
    line-height: calc(19 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__step-desc {
  line-height: calc(23 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__step-desc {
    font-family: var(--ff-jp-lp);
    font-weight: 700;
    font-size: calc(16 * var(--sp-unit));
    line-height: calc(23 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-receipt .cp-block__step-body > p:first-child{
  text-align: center;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__step-body > p:first-child{
    font-family: var(--ff-jp-lp);
    font-weight: 700;
    font-size: calc(18 * var(--sp-unit));
    line-height: calc(25 * var(--sp-unit));
    color: #000000;
  }
}
.kami-sf-lp .cp-receipt .cp-block__step-body > div > picture{
  justify-self: center;
  align-self: end;
}
.kami-sf-lp .cp-receipt .cp-block__step-body > div:has(> picture:only-child) > picture{
  align-self: center;
  grid-row: span 2;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__step-body > div:has(> picture:only-child) > picture{
    width: 100%;
  }
  .kami-sf-lp .cp-receipt .cp-block__step-body > div:has(> picture:only-child) > picture img{
    width: 100%;
    height: auto;
  }
  .kami-sf-lp .cp-receipt .cp-block__step:nth-child(2) .cp-block__step-body picture{
    width: calc(150 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__step:nth-child(3) .cp-block__step-body picture{
    width: calc(140 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__step-body picture{
    margin-top: calc(35 * var(--sp-unit));
    margin-inline: auto;
  }
  .kami-sf-lp .cp-receipt .cp-block__step-body picture img{
    width: 100%;
    height: auto;
  }
  .kami-sf-lp .cp-receipt .cp-block__step-body > div > picture + p{
    margin-top: calc(25 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-receipt .cp-block__character{
  top: calc(-373 * var(--pc-unit));
}
.kami-sf-lp .cp-receipt .cp-block__section--bordered{
  position: relative;
}
.kami-sf-lp .cp-receipt .cp-block__yor{
  position: absolute;
  right: calc(-246 * var(--pc-unit));
  bottom: calc(200 * var(--pc-unit));
  width: calc(338 * var(--pc-unit));
  pointer-events: none;
}
.kami-sf-lp .cp-receipt .cp-block__yor img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__yor{
    right: calc(-46 * var(--sp-unit));
    bottom: calc(-53 * var(--sp-unit));
    width: calc(152 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-receipt .cp-block__section:has(> .cp-block__method-deco-1){
  position: relative;
}
.kami-sf-lp .cp-receipt .cp-block__method-deco-1,
.kami-sf-lp .cp-receipt .cp-block__method-deco-2{
  position: absolute;
  pointer-events: none;
}
.kami-sf-lp .cp-receipt .cp-block__method-deco-1 img,
.kami-sf-lp .cp-receipt .cp-block__method-deco-2 img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .cp-receipt .cp-block__method-deco-1{
  width: calc(205 * var(--pc-unit));
  top: calc(640 * var(--pc-unit));
  left: calc(-200 * var(--pc-unit));
}
.kami-sf-lp .cp-receipt .cp-block__method-deco-2{
  width: calc(182 * var(--pc-unit));
  top: calc(760 * var(--pc-unit));
  right: calc(-160 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__method-deco-1{
    width: calc(83 * var(--sp-unit));
    top: calc(1292 * var(--sp-unit));
    left: calc(-55 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__method-deco-2{
    width: calc(83 * var(--sp-unit));
    top: calc(1476 * var(--sp-unit));
    right: calc(-40 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-receipt .cp-block__prize{
  position: relative;
}
.kami-sf-lp .cp-receipt .cp-block__prize-star--1{ width: calc(75 * var(--pc-unit)); }
.kami-sf-lp .cp-receipt .cp-block__prize-star--2{ width: calc(50 * var(--pc-unit)); }
.kami-sf-lp .cp-receipt .cp-block__prize-star--3{ width: calc(60 * var(--pc-unit)); }
.kami-sf-lp .cp-receipt .cp-block__prize-title{ width: calc(580 * var(--pc-unit)); }
.kami-sf-lp .cp-receipt .cp-block__period-sub--1{
  width: calc(226 * var(--pc-unit));
  top: calc(195 * var(--pc-unit));
  left: calc(-188 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__prize-star--1{ width: calc(35 * var(--sp-unit)); }
  .kami-sf-lp .cp-receipt .cp-block__prize-star--2{ width: calc(25 * var(--sp-unit)); }
  .kami-sf-lp .cp-receipt .cp-block__prize-star--3{ width: calc(33 * var(--sp-unit)); }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__character{
    top: calc(-180 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__head{
    display: block;
    position: relative;
    height: calc(110 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__head .cp-block__catch,
  .kami-sf-lp .cp-receipt .cp-block__head .cp-block__title,
  .kami-sf-lp .cp-receipt .cp-block__head .cp-block__sub{
    position: absolute;
  }
  .kami-sf-lp .cp-receipt .cp-block__head .cp-block__catch{
    top: calc(14 * var(--sp-unit));
    left: calc(222 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__head .cp-block__title{
    top: calc(28 * var(--sp-unit));
    left: calc(140 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__head .cp-block__sub{
    top: calc(81 * var(--sp-unit));
    left: calc(197 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__head{
    display: block;
    position: relative;
    height: calc(140 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__head .cp-block__catch,
  .kami-sf-lp .cp-sns .cp-block__head .cp-block__title,
  .kami-sf-lp .cp-sns .cp-block__head .cp-block__sub{
    position: absolute;
  }
  .kami-sf-lp .cp-sns .cp-block__head .cp-block__catch{
    top: calc(-3 * var(--sp-unit));
    left: calc(124 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__head .cp-block__title{
    top: calc(25 * var(--sp-unit));
    left: calc(64 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__head .cp-block__sub{
    top: calc(110 * var(--sp-unit));
    left: calc(90 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-receipt .cp-block__section--panel{
  background: #f0f0f0;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-receipt .cp-block__section--panel{
    width: calc(950 * var(--pc-unit));
    margin-inline: calc(-35 * var(--pc-unit));
    padding: calc(50 * var(--pc-unit));
  }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__section--panel{
    padding: calc(30 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip:nth-child(1) .cp-block__photo-tip-image img{
    width: calc(113 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip:nth-child(2) .cp-block__photo-tip-image img{
    width: calc(111 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip:nth-child(3) .cp-block__photo-tip-image img{
    width: calc(222 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tips{
    display: flex;
    flex-direction: column;
    gap: calc(40 * var(--sp-unit));
    margin-top: calc(30 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip-image{
    margin-bottom: calc(11 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip > h3{
    margin-bottom: calc(15 * var(--sp-unit));
    font-family: var(--ff-jp-lp);
    font-weight: 800;
    font-size: calc(18 * var(--sp-unit));
    line-height: calc(24 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip > p{
    font-family: var(--ff-jp-lp);
    font-weight: 500;
    font-size: calc(14 * var(--sp-unit));
    line-height: calc(22 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-receipt .cp-block__section--panel > h2{
  --h2-bg: #000000;
}
.kami-sf-lp .cp-receipt .cp-block__photo-tip{
  text-align: center;
}
.kami-sf-lp .cp-receipt .cp-block__photo-tip-image img{
  margin-inline: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-receipt .cp-block__photo-tips{
    display: grid;
    grid-template-columns: repeat(3, calc(270 * var(--pc-unit)));
    grid-template-rows: auto auto auto;
    column-gap: calc(20 * var(--pc-unit));
    row-gap: calc(20 * var(--pc-unit));
    justify-content: center;
    margin-top: calc(30 * var(--pc-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 3;
    width: calc(270 * var(--pc-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip-image{
    align-self: center;
  }
  .kami-sf-lp .cp-receipt .cp-block__photo-tip > h3{
    margin-bottom: calc(-12 * var(--pc-unit));
  }
}

.kami-sf-lp .cp-receipt .cp-block__cta{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.kami-sf-lp .cp-receipt .cp-block__cta-arrow{
  width: calc(31 * var(--pc-unit));
  margin-top: calc(50 * var(--pc-unit));
  margin-bottom: calc(30 * var(--pc-unit));
}
.kami-sf-lp .cp-receipt .cp-block__cta-arrow img{
  width: 100%;
  height: auto;
}
.kami-sf-lp .cp-receipt .cp-block__cta-btn{
  width: calc(538 * var(--pc-unit));
}
.kami-sf-lp .cp-receipt .cp-block__cta-btn img{
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-receipt .cp-block__cta-arrow{
    width: calc(31 * var(--sp-unit));
    margin-top: calc(15 * var(--sp-unit));
    margin-bottom: calc(25 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__cta-btn{
    width: calc(300 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__product-logo {
  display: inline-block;
  width: calc(100 * var(--pc-unit));
  height: auto;
  vertical-align: middle;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__product-logo {
    width: calc(70 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__product-name {
    font-size: calc(11 * var(--sp-unit));
    line-height: 1.45;
  }
}
.kami-sf-lp .cp-block__product-image img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__product-image{
    width: calc(80 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__products-row:nth-child(2) > .cp-block__product:nth-child(2) .cp-block__product-image{
    width: calc(92 * var(--sp-unit));
  }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tier-count-unit {
    font-size: calc(13.849 * var(--sp-unit));
  }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__tiers{
    display: flex;
    flex-direction: column;
    gap: calc(35 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__tier{
    padding-bottom: calc(25 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__tier > :nth-child(2){ margin-top: calc(20 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(3){ margin-top: calc(35 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(4){ margin-top: calc(8 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(5){ margin-top: calc(8 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(6){ margin-top: calc(10 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(7){ margin-top: calc(30 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(8){ margin-top: calc(8 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(9){ margin-top: calc(8 * var(--sp-unit)); }
  /* Per-tier image widths (SP) */
  .kami-sf-lp .cp-block__tiers > :nth-child(1) > :nth-child(6){ width: calc(270 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tiers > :nth-child(1) > :nth-child(9){ width: calc(217 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tiers > :nth-child(2) > :nth-child(6){ width: calc(176 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tiers > :nth-child(2) > :nth-child(9){ width: calc(265 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tiers > :nth-child(3) > :nth-child(6){ width: calc(176 * var(--sp-unit)); }
  .kami-sf-lp .cp-block__tiers > :nth-child(3) > :nth-child(9){ width: calc(207 * var(--sp-unit)); }
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-block__tiers{
    display: grid;
    grid-template-columns: repeat(3, calc(320 * var(--pc-unit)));
    justify-content: space-between;
    width: calc(990 * var(--pc-unit));
    margin-left: calc(-65 * var(--pc-unit));
    margin-right: calc(-65 * var(--pc-unit));
  }
  .kami-sf-lp .cp-block__tier{
    grid-template-rows: subgrid;
    grid-row: span 9;
    padding-bottom: calc(25 * var(--pc-unit));
  }
  .kami-sf-lp .cp-block__tier > :nth-child(2){ margin-top: calc(20 * var(--pc-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(3){ margin-top: calc(40 * var(--pc-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(4){ margin-top: calc(5 * var(--pc-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(5){ margin-top: calc(8 * var(--pc-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(6){ margin-top: calc(10 * var(--pc-unit)); align-self: center; }
  .kami-sf-lp .cp-block__tier > :nth-child(7){ margin-top: calc(25 * var(--pc-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(8){ margin-top: calc(8 * var(--pc-unit)); }
  .kami-sf-lp .cp-block__tier > :nth-child(9){ margin-top: calc(15 * var(--pc-unit)); align-self: end; }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__sub-catch {
    font-size: calc(16 * var(--sp-unit));
    margin: calc(40 * var(--sp-unit)) 0 calc(20 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__prize-title{
  display: block;
  width: calc(829 * var(--pc-unit));
  max-width: 100%;
  margin: calc(20 * var(--pc-unit)) auto 0;
}
.kami-sf-lp .cp-block__prize-title img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__prize-title{
    width: calc(284 * var(--sp-unit));
    margin-top: calc(20 * var(--sp-unit));
  }
  .kami-sf-lp .cp-receipt .cp-block__prize-title{
    width: calc(297 * var(--sp-unit));
  }
}

.kami-sf-lp .cp-block__prize-visual{
  position: relative;
  width: calc(428 * var(--pc-unit));
  margin: calc(40 * var(--pc-unit)) auto 0;
}
.kami-sf-lp .cp-block__prize-bg{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: calc(840 * var(--pc-unit));
  height: calc(360 * var(--pc-unit));
  background: var(--prize-bg);
  border-radius: calc(180 * var(--pc-unit));
}
.kami-sf-lp .cp-block__prize-img{
  position: relative;
  display: block;
}
.kami-sf-lp .cp-block__prize-img img{
  width: 100%;
  height: auto;
}
.kami-sf-lp .cp-block__prize-badge{
  position: absolute;
  top: 0;
  right: -170px;
  width: calc(154 * var(--pc-unit));
}
.kami-sf-lp .cp-block__prize-badge img{
  width: 100%;
  height: auto;
}
.kami-sf-lp .cp-block__prize-star{
  position: absolute;
  display: block;
  pointer-events: none;
  animation: star-spin linear infinite;
  will-change: transform;
  filter: drop-shadow(2px 1px 2px rgba(121, 110, 0, 0.1));
}
/* 3 stars: sizes and positions (placeholder — adjust later) */
.kami-sf-lp .cp-block__prize-star--1{
  width: calc(90 * var(--pc-unit));
  top: calc(340 * var(--pc-unit));
  left: calc(-20 * var(--pc-unit));
  animation-duration: 8s;
}
.kami-sf-lp .cp-block__prize-star--2{
  width: calc(80 * var(--pc-unit));
  top: calc(426 * var(--pc-unit));
  left: calc(49 * var(--pc-unit));
  animation-duration: 12s;
  animation-direction: reverse;
}
.kami-sf-lp .cp-block__prize-star--3{
  width: calc(70 * var(--pc-unit));
  top: calc(360 * var(--pc-unit));
  right: calc(50 * var(--pc-unit));
  animation-duration: 6s;
}

@media (max-width: 767px) {
  .kami-sf-lp .cp-block__prize-visual{
    width: calc(235 * var(--sp-unit));
    margin-top: calc(20 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__prize-badge{
    top: 0;
    right: calc(-50 * var(--sp-unit));
    width: calc(70 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__prize-star--1{
    width: calc(28 * var(--sp-unit));
    top: calc(317 * var(--sp-unit));
    left: calc(-4 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__prize-star--2{
    width: calc(36 * var(--sp-unit));
    top: calc(330 * var(--sp-unit));
    left: calc(238 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__prize-star--3{
    width: calc(35 * var(--sp-unit));
    top: calc(309 * var(--sp-unit));
    right: calc(-5 * var(--sp-unit));
  }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__body{
    --body-pad-sp: calc(25 * var(--sp-unit));
    width: calc(350 * var(--sp-unit));
    max-width: none;
    margin: calc(20 * var(--sp-unit)) auto;
    padding: 0 var(--body-pad-sp);
    border-width: 3px;
    border-radius: 13px;
  }
  .kami-sf-lp .cp-block__body h2{
    padding: calc(7 * var(--sp-unit)) calc(40 * var(--sp-unit));
    font-size: calc(16.32 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__body .cp-block__h2--notes{
    padding: calc(9 * var(--sp-unit)) calc(40 * var(--sp-unit));
    font-size: calc(14 * var(--sp-unit));
  }
  /* SP 突き抜けユーティリティ
     .cp-block__body の SP padding（25px）を無視し左右 10px の位置まで飛び出させる
     用途: フルブロック（画像・カード等）。fit-content 中央 pill には別対応 */
  .kami-sf-lp .is-sp-outward {
    margin-left: calc(-15 * var(--sp-unit));
    margin-right: calc(-15 * var(--sp-unit));
  }
  /* fit-content 中央 pill を SP のみフル幅化して is-sp-outward の効果を発現させる */
  .kami-sf-lp .cp-block__lead.is-sp-outward {
    width: auto;
  }
}
/* Per-campaign body theming (border uses each section's deep color) */
.kami-sf-lp .cp-x{ --body-border: var(--c-x-green-deep); --body-bg: #f4faea; --h2-bg: #007900; --prize-bg: rgba(145, 206, 44, 0.1); --scroll-w-pc: 892; --scroll-w-sp: 446; }
.kami-sf-lp .cp-receipt{ --body-border: var(--c-receipt-pink-deep); --body-bg: #fff4f8; --prize-bg: rgba(255, 143, 184, 0.1); --scroll-w-pc: 828; --scroll-w-sp: 414; }
.kami-sf-lp .cp-sns{ --body-border: var(--c-sns-blue-deep); --body-bg: #e8f8fc; --prize-bg: rgba(21, 188, 228, 0.1); --scroll-w-pc: 841; --scroll-w-sp: 421; }
.kami-sf-lp .cp-senryu{ --body-border: var(--c-senryu-yellow-deep); --body-bg: #fefae5; --prize-bg: rgba(247, 205, 0, 0.1); --scroll-w-pc: 891; --scroll-w-sp: 446; }
.kami-sf-lp .lineup{ --body-border: var(--c-lineup-orange-deep); }

/* Horizontal auto-scroll band inside cp-block__body */
.kami-sf-lp .cp-block__scroll{
  overflow: hidden;
  width: calc(100% + var(--body-pad-pc) * 2);
  margin: calc(20 * var(--pc-unit)) calc(-1 * var(--body-pad-pc)) 0;
}
.kami-sf-lp .cp-block__scroll--bottom{
  margin: calc(40 * var(--pc-unit)) calc(-1 * var(--body-pad-pc)) calc(20 * var(--pc-unit));
}
.kami-sf-lp .cp-block__scroll-track{
  display: flex;
  width: max-content;
  animation: cp-scroll-left 30s linear infinite;
  will-change: transform;
}
.kami-sf-lp .cp-block__scroll-track picture,
.kami-sf-lp .cp-block__scroll-track img{
  display: block;
  flex-shrink: 0;
  height: auto;
}
.kami-sf-lp .cp-block__scroll-track img{
  width: calc(var(--scroll-w-pc, 892) * var(--pc-unit));
}
@keyframes cp-scroll-left {
  from { transform: translate3d(0, 0, 0); }
  to   { transform: translate3d(-25%, 0, 0); }
}
@media (prefers-reduced-motion: reduce) {
  .kami-sf-lp .cp-block__scroll-track{ animation: none; }
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-block__scroll{
    width: calc(100% + var(--body-pad-sp) * 2);
    margin: calc(10 * var(--sp-unit)) calc(-1 * var(--body-pad-sp)) 0;
  }
  .kami-sf-lp .cp-block__scroll--bottom{
    margin: calc(20 * var(--sp-unit)) calc(-1 * var(--body-pad-sp)) calc(10 * var(--sp-unit));
  }
  .kami-sf-lp .cp-block__scroll-track img{
    width: calc(var(--scroll-w-sp, 446) * var(--sp-unit));
  }
}

@media (max-width: 767px) {
  .kami-sf-lp .cp-x__head{
  }
  .kami-sf-lp .cp-x__catch{
    top: calc(8 * var(--sp-unit));
  }
  .kami-sf-lp .cp-x__catch img{ width: calc(70 * var(--sp-unit)); }
  .kami-sf-lp .cp-x__title-row{
    top: calc(8 * var(--sp-unit));
  }
  .kami-sf-lp .cp-x__att{
    top: calc(25 * var(--sp-unit));
    left: calc(-52 * var(--sp-unit));
  }
  .kami-sf-lp .cp-x__att img{ width: calc(36 * var(--sp-unit)); }
  .kami-sf-lp .cp-x__title img{ width: calc(160 * var(--sp-unit)); }
  .kami-sf-lp .cp-x__sub img{ width: calc(220 * var(--sp-unit)); }
}
.kami-sf-lp .cp-receipt{ background-color: var(--c-receipt-pink); }
.kami-sf-lp .cp-sns{ background-color: var(--c-sns-blue); }
.kami-sf-lp .cp-senryu{ background-color: var(--c-senryu-yellow); }

/* Right-lowered diagonal top (alternating direction) */
.kami-sf-lp .cp-receipt,
.kami-sf-lp .cp-senryu{
  clip-path: polygon(0 0, 100% calc(45 * var(--sp-unit)), 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-receipt,
  .kami-sf-lp .cp-senryu{
    clip-path: polygon(0 0, 100% calc(125 * var(--pc-unit)), 100% 100%, 0 100%);
  }
}

.kami-sf-lp .cp-senryu .cp-block__title{
  color: var(--c-ink);
}

/* CTA button */
.kami-sf-lp .cta-btn{
  display: inline-block;
  padding: calc(16 * var(--sp-unit)) calc(32 * var(--sp-unit));
  background: var(--c-ink);
  color: var(--c-white);
  border-radius: 999px;
  font-size: calc(14 * var(--sp-unit));
  font-weight: 700;
  text-align: center;
  transition: transform 0.15s ease, opacity 0.15s ease;
}
.kami-sf-lp .cta-btn:hover{
  transform: translateY(-2px);
}
.kami-sf-lp .cta-btn.is-disabled{
  background: var(--c-ink-sub);
  cursor: default;
  opacity: 0.85;
  pointer-events: none;
}
.kami-sf-lp .cta-btn__note{
  display: block;
  font-size: calc(11 * var(--sp-unit));
  font-weight: 400;
  margin-top: calc(4 * var(--sp-unit));
}

/* Step list */
.kami-sf-lp .step-list{
  display: grid;
  gap: calc(24 * var(--sp-unit));
  margin: calc(32 * var(--sp-unit)) 0;
}
@media (min-width: 768px) {
  .kami-sf-lp .step-list{
    grid-template-columns: repeat(3, 1fr);
    gap: calc(24 * var(--pc-unit));
  }
}
.kami-sf-lp .step-item{
  background: var(--c-cream-soft);
  border-radius: calc(12 * var(--sp-unit));
  padding: calc(20 * var(--sp-unit));
  text-align: center;
}
.kami-sf-lp .step-item__num{
  display: inline-block;
  font-family: var(--ff-jp-lp);
  font-weight: 900;
  font-size: calc(14 * var(--sp-unit));
  color: var(--c-white);
  background: var(--c-ink);
  padding: calc(4 * var(--sp-unit)) calc(16 * var(--sp-unit));
  border-radius: 999px;
  margin-bottom: calc(12 * var(--sp-unit));
}
.kami-sf-lp .step-item__title{
  font-size: calc(16 * var(--sp-unit));
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: calc(8 * var(--sp-unit));
}
.kami-sf-lp .step-item__desc{
  font-size: calc(13 * var(--sp-unit));
  line-height: 1.7;
  text-align: left;
}

/* Terms (details/summary) */
.kami-sf-lp .cp-terms{
  margin-top: calc(24 * var(--sp-unit));
  background: var(--c-cream-soft);
  border-radius: calc(12 * var(--sp-unit));
  overflow: hidden;
}
.kami-sf-lp .cp-terms__summary{
  padding: calc(16 * var(--sp-unit)) calc(20 * var(--sp-unit));
  cursor: pointer;
  font-weight: 700;
  font-size: calc(14 * var(--sp-unit));
  list-style: none;
  position: relative;
}
.kami-sf-lp .cp-terms__summary::after{
  content: "＋";
  position: absolute;
  right: calc(20 * var(--sp-unit));
  top: 50%;
  transform: translateY(-50%);
  font-size: calc(20 * var(--sp-unit));
}
.kami-sf-lp .cp-terms[open] .cp-terms__summary::after{
  content: "−";
}
.kami-sf-lp .cp-terms__body{
  padding: calc(4 * var(--sp-unit)) calc(20 * var(--sp-unit)) calc(24 * var(--sp-unit));
  font-size: calc(12 * var(--sp-unit));
  line-height: 1.7;
}
.kami-sf-lp .cp-terms__body h4{
  font-size: calc(13 * var(--sp-unit));
  margin: calc(16 * var(--sp-unit)) 0 calc(4 * var(--sp-unit));
}
.kami-sf-lp .cp-terms__body p,
.kami-sf-lp .cp-terms__body ul{
  margin-bottom: calc(8 * var(--sp-unit));
}
.kami-sf-lp .cp-terms__body ul li{
  padding-left: 1em;
  text-indent: -1em;
}
.kami-sf-lp .cp-terms__body ul li::before{
  content: "・";
}

/* ==========================================================================
   Campaign 2: Receipt (products)
   ========================================================================== */
/* ==========================================================================
   Campaign 3: SNS (当選賞品 2-course tier override)
   ========================================================================== */
.kami-sf-lp .cp-sns .cp-block__tiers{
  display: grid;
  grid-template-columns: calc(410 * var(--pc-unit)) calc(410 * var(--pc-unit));
  grid-template-rows: auto auto 1fr;
  column-gap: calc(20 * var(--pc-unit));
  width: calc(840 * var(--pc-unit));
  max-width: 840px;
  margin-inline: auto;
  justify-content: center;
}
.kami-sf-lp .cp-sns .cp-block__tier{
  border: 2px solid var(--c-sns-blue-deep);
  background: #ffffff;
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 3;
}
.kami-sf-lp .cp-sns .cp-block__tier-body{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: calc(20 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__tier h3 {
  background: var(--c-sns-blue-deep);
}
.kami-sf-lp .cp-sns .cp-block__tier-desc {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(20 * var(--pc-unit));
  line-height: calc(30 * var(--pc-unit));
  color: #000000;
  background: #f0f0f0;
  padding: calc(15 * var(--pc-unit)) calc(20 * var(--pc-unit));
  align-self: stretch !important;
  text-align: left;
  margin: 0;
}
.kami-sf-lp .cp-sns .cp-block__tier-highlight {
  color: var(--c-sns-blue-deep);
  font-weight: 700;
}
.kami-sf-lp .cp-sns .cp-block__tier-name {
  color: var(--c-sns-blue-deep);
  border-bottom-color: var(--c-sns-blue-deep);
  margin-top: 0;
}
.kami-sf-lp .cp-sns .cp-block__tier-sub {
  font-family: var(--ff-jp-lp);
  font-weight: 800;
  font-size: calc(16 * var(--pc-unit));
  line-height: calc(17 * var(--pc-unit));
  color: var(--c-sns-blue-deep);
  text-align: center;
  margin-top: calc(15 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__tier-count {
  background: var(--c-sns-blue-deep);
  margin-top: calc(20 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__tier-image{
  margin-top: auto;
  padding-top: calc(20 * var(--pc-unit));
  width: calc(360 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__tier-image img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__tiers{
    grid-template-columns: calc(320 * var(--sp-unit));
    grid-template-rows: none;
    row-gap: calc(20 * var(--sp-unit));
    width: 100%;
    max-width: none;
    justify-content: center;
  }
  .kami-sf-lp .cp-sns .cp-block__tier{
    display: flex;
    flex-direction: column;
    grid-template-rows: none;
    grid-row: auto;
  }
  .kami-sf-lp .cp-sns .cp-block__tier-desc {
    font-size: calc(16 * var(--sp-unit));
    line-height: calc(24 * var(--sp-unit));
    padding: calc(20 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__tier-name {
    margin-top: calc(30 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__tier-sub {
    font-size: calc(16 * var(--sp-unit));
    line-height: calc(17 * var(--sp-unit));
    margin-top: calc(15 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__tier-count {
    margin-top: calc(20 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__tier-image{
    margin-top: calc(20 * var(--sp-unit));
    margin-bottom: calc(30 * var(--sp-unit));
    width: calc(280 * var(--sp-unit));
  }
}

/* cp-sns intro images (2枚: PC横並び 840px / SP 重ね配置) */
.kami-sf-lp .cp-sns .cp-block__intro-images{
  display: flex;
  justify-content: space-between;
  width: calc(840 * var(--pc-unit));
  margin: calc(30 * var(--pc-unit)) auto;
}
.kami-sf-lp .cp-sns .cp-block__intro-image{
  width: calc(410 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__intro-image img{
  display: block;
  width: 100%;
  height: auto;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__intro-images{
    display: block;
    position: relative;
    width: 100%;
    margin: calc(30 * var(--sp-unit)) 0;
    padding-bottom: calc(60 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__intro-image{
    width: calc(190 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__intro-image--1{
    margin-left: auto;
    margin-right: calc(0 * var(--sp-unit));
    margin-top: calc(100 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__intro-image--2{
    margin-left: calc(0 * var(--sp-unit));
    margin-top: calc(-219 * var(--sp-unit));
  }
}

/* cp-sns hashtag title (＃お料理わくわく大作戦 with yellow marker) */
.kami-sf-lp .cp-sns .cp-block__hashtag-title {
  font-family: var(--ff-jp-lp);
  font-weight: 800;
  font-size: calc(50 * var(--pc-unit));
  line-height: calc(87.5 * var(--pc-unit));
  color: #000000;
  text-align: center;
  display: table;
  margin: 0 auto;
  padding: 0;
  z-index: auto;
  background-image: linear-gradient(#ffea00, #ffea00);
  background-size: 100% calc(15 * var(--pc-unit));
  background-position: 0 calc(100% - 15 * var(--pc-unit));
  background-repeat: no-repeat;
}
.kami-sf-lp .cp-sns .cp-block__hashtag-title::before{
  content: none;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__hashtag-title {
    font-size: calc(26.1321 * var(--sp-unit));
    line-height: calc(45.7312 * var(--sp-unit));
    background-size: 100% calc(7 * var(--sp-unit));
    background-position: 0 calc(100% - 7 * var(--sp-unit));
  }
}

/* cp-sns head decorations (insta + x SVG) — absolute inside .cp-block__head
   Head constrained to 1100px centered so deco anchors don't shift with viewport */
.kami-sf-lp .cp-sns .cp-block__head{
  position: relative;
  width: calc(1100 * var(--pc-unit));
  max-width: 1100px;
  margin-inline: auto;
}
.kami-sf-lp .cp-sns .cp-block__head-deco{
  position: absolute;
  pointer-events: none;
}
.kami-sf-lp .cp-sns .cp-block__head-deco--insta{
  width: calc(59 * var(--pc-unit));
  top: calc(132 * var(--pc-unit));
  left: calc(52 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__head-deco--x{
  width: calc(56 * var(--pc-unit));
  top: calc(42 * var(--pc-unit));
  left: calc(142 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__head-deco--insta{
    width: calc(25 * var(--sp-unit));
    top: calc(105 * var(--sp-unit));
    left: calc(35 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__head-deco--x{
    width: calc(23 * var(--sp-unit));
    top: calc(65 * var(--sp-unit));
    left: calc(15 * var(--sp-unit));
  }
}

/* cp-sns character (anya3 top-right) — placed outside .cp-block to escape clip-path
   Anchor wrapper is 1100px centered so position stays fixed relative to centered box */
.kami-sf-lp .cp-sns-outer{
  position: relative;
}
.kami-sf-lp .cp-sns-outer__anchor{
  position: relative;
  width: calc(1100 * var(--pc-unit));
  max-width: 1100px;
  margin-inline: auto;
  height: 0;
}
.kami-sf-lp .cp-sns-outer__anchor .cp-block__character{
  left: auto;
  right: calc(-140 * var(--pc-unit));
  top: calc(-3 * var(--pc-unit));
  width: calc(340 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns-outer__anchor{
    width: 100%;
    max-width: none;
  }
  .kami-sf-lp .cp-sns-outer__anchor .cp-block__character{
    right: calc(9 * var(--sp-unit));
    top: calc(-7 * var(--sp-unit));
    width: calc(129 * var(--sp-unit));
  }
}

/* cp-sns intro stars (3 yellow stars around hashtag intro) */
.kami-sf-lp .cp-sns .cp-block__intro{
  position: relative;
}
.kami-sf-lp .cp-sns .cp-block__intro-star{
  position: absolute;
  pointer-events: none;
  animation: star-spin linear infinite;
  filter: drop-shadow(2px 1px 2px rgba(0, 100, 166, 0.15));
  will-change: transform;
}
.kami-sf-lp .cp-sns .cp-block__intro-star--1{
  width: calc(53 * var(--pc-unit));
  top: calc(50 * var(--pc-unit));
  left: calc(-14 * var(--pc-unit));
  animation-duration: 8s;
}
.kami-sf-lp .cp-sns .cp-block__intro-star--2{
  width: calc(52 * var(--pc-unit));
  bottom: calc(-19 * var(--pc-unit));
  right: calc(22 * var(--pc-unit));
  animation-duration: 12s;
  animation-direction: reverse;
}
.kami-sf-lp .cp-sns .cp-block__intro-star--3{
  width: calc(52 * var(--pc-unit));
  bottom: calc(-62 * var(--pc-unit));
  left: calc(52 * var(--pc-unit));
  animation-duration: 6s;
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__intro-star--1{
    width: calc(35 * var(--sp-unit));
    top: calc(315 * var(--sp-unit));
    left: calc(30 * var(--sp-unit));
    bottom: auto;
    right: auto;
  }
  .kami-sf-lp .cp-sns .cp-block__intro-star--2{
    width: calc(25 * var(--sp-unit));
    top: calc(170 * var(--sp-unit));
    right: calc(30 * var(--sp-unit));
    bottom: auto;
    left: auto;
  }
  .kami-sf-lp .cp-sns .cp-block__intro-star--3{
    width: calc(33 * var(--sp-unit));
    bottom: calc(5 * var(--sp-unit));
    left: calc(0 * var(--sp-unit));
    top: auto;
    right: auto;
  }
}

/* cp-sns intro decorative absolute images (PC only) */
.kami-sf-lp .cp-sns .cp-block__intro-deco{
  position: absolute;
  pointer-events: none;
}
.kami-sf-lp .cp-sns .cp-block__intro-deco--1{
  width: calc(138 * var(--pc-unit));
  top: calc(480 * var(--pc-unit));
  left: calc(-160 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__intro-deco--2{
  width: calc(126 * var(--pc-unit));
  top: calc(480 * var(--pc-unit));
  right: calc(-160 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__intro-deco{ display: none; }
}

/* cp-sns intro desc (PC 18px only / SP hidden) */
.kami-sf-lp .cp-sns .cp-block__desc {
  font-size: calc(18 * var(--pc-unit));
  line-height: calc(31.5 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__desc {
    display: none;
  }
}

/* cp-sns intro hashtag lead */
.kami-sf-lp .cp-sns .cp-block__sub-catch {
  font-size: calc(24 * var(--pc-unit));
  line-height: calc(42 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__sub-catch {
    font-size: calc(16 * var(--sp-unit));
    line-height: calc(24 * var(--sp-unit));
  }
}

/* cp-sns 応募方法: IG button gradient + or divider + step image + hashtag */
.kami-sf-lp .cp-block__step-btn--ig {
  background: linear-gradient(90deg, #ee5a76 0%, #a13db5 100%);
}
.kami-sf-lp .cp-sns .cp-block__step-body .cp-block__step-or {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(18 * var(--pc-unit));
  line-height: calc(25 * var(--pc-unit));
  text-align: center;
  color: #000000;
  margin: calc(25 * var(--pc-unit)) 0 calc(23 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__step-image{
  align-self: center;
  margin: calc(10 * var(--pc-unit)) 0 calc(30 * var(--pc-unit)) ;
}
.kami-sf-lp .cp-sns .cp-block__section:has(.cp-block__loid),
.kami-sf-lp .cp-sns .cp-block__section:has(.cp-block__notes-deco){ position: relative; }
.kami-sf-lp .cp-sns .cp-block__notes-deco{
  position: absolute;
  pointer-events: none;
  z-index: 5;
  width: calc(410 * var(--pc-unit));
  bottom: calc(-350 * var(--pc-unit));
  right: calc(-180 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__notes-deco img{ display: block; width: 100%; height: auto; }
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__notes-deco{ display: none; }
}
.kami-sf-lp .cp-sns .cp-block__loid{
  position: absolute;
  pointer-events: none;
  z-index: 10;
  width: calc(380 * var(--pc-unit));
  top: calc(-596 * var(--pc-unit));
  left: calc(-300 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__loid img{ display: block; width: 100%; height: auto; }
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__loid{
    width: calc(140 * var(--sp-unit));
    top: calc(1749 * var(--sp-unit));
    left: calc(66 * var(--sp-unit));
  }
}
.kami-sf-lp .cp-sns .cp-block__step-image img{
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .cp-sns .cp-block__step:nth-child(2) .cp-block__step-image,
  .kami-sf-lp .cp-sns .cp-block__step:nth-child(3) .cp-block__step-image{
    height: calc(242 * var(--pc-unit));
    display: flex;
    align-items: flex-end;
    justify-content: center;
  }
}
.kami-sf-lp .cp-sns .cp-block__step:nth-child(2) .cp-block__step-image{ width: calc(230 * var(--pc-unit)); }
.kami-sf-lp .cp-sns .cp-block__step:nth-child(3) .cp-block__step-image{ width: calc(191 * var(--pc-unit)); }
.kami-sf-lp .cp-sns .cp-block__step-body .cp-block__step-hashtag {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(17 * var(--pc-unit));
  line-height: calc(23 * var(--pc-unit));
  color: #000000;
  text-align: center;
  margin-bottom: calc(30 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__step-body p {
  font-family: var(--ff-jp-lp);
  font-weight: 400;
  font-size: calc(16 * var(--pc-unit));
  line-height: calc(25 * var(--pc-unit));
  color: #000000;
}
.kami-sf-lp .cp-sns .cp-block__step-btn--x {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(11 * var(--pc-unit));
  line-height: calc(14.0943 * var(--pc-unit));
}
.kami-sf-lp .cp-sns .cp-block__step-btn--ig {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(11 * var(--pc-unit));
  line-height: calc(14.0943 * var(--pc-unit));
  color: #ffffff;
  background: linear-gradient(90deg, #f0755d 0%, #f50063 33%, #6f3bb1 100%);
}
.kami-sf-lp .cp-sns .cp-block__step-body .cp-block__step-note {
  font-weight: 400;
  font-size: calc(12 * var(--pc-unit));
  line-height: calc(18 * var(--pc-unit));
  margin-top: auto;
}
.kami-sf-lp .cp-sns .cp-block__step:first-child .cp-block__step-body > .cp-block__step-actions{
  margin: 0;
}
.kami-sf-lp .cp-sns .cp-block__step:first-child .cp-block__step-body > .cp-block__step-actions:last-child{
  margin-top: auto;
}
.kami-sf-lp .cp-sns .cp-block__step-or + p {
  font-size: calc(16 * var(--pc-unit));
  line-height: calc(23 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .cp-sns .cp-block__steps{
    margin-top: calc(20 * var(--sp-unit));
    align-items: center;
  }
  .kami-sf-lp .cp-sns .cp-block__step{
    width: calc(270 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step:nth-child(3) .cp-block__step-body{
    padding-bottom: calc(100 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__section:has(.cp-block__notes){
    margin-top: calc(260 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-body .cp-block__step-or {
    font-size: calc(18 * var(--sp-unit));
    line-height: calc(25 * var(--sp-unit));
    margin: calc(25 * var(--sp-unit)) 0 calc(23 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-image{
    margin: calc(20 * var(--sp-unit)) 0;
  }
  .kami-sf-lp .cp-sns .cp-block__step:nth-child(2) .cp-block__step-image{ width: calc(230 * var(--sp-unit)); }
  .kami-sf-lp .cp-sns .cp-block__step:nth-child(3) .cp-block__step-image{ width: calc(191 * var(--sp-unit)); }
  .kami-sf-lp .cp-sns .cp-block__step-body .cp-block__step-hashtag {
    font-size: calc(17 * var(--sp-unit));
    line-height: calc(23 * var(--sp-unit));
    margin-bottom: calc(30 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-body p {
    font-size: calc(16 * var(--sp-unit));
    line-height: calc(25 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-btn--x {
    font-size: calc(11 * var(--sp-unit));
    line-height: calc(14.0943 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-btn--ig {
    font-size: calc(11 * var(--sp-unit));
    line-height: calc(14.0943 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-body .cp-block__step-note {
    font-size: calc(12 * var(--sp-unit));
    line-height: calc(18 * var(--sp-unit));
  }
  .kami-sf-lp .cp-sns .cp-block__step-or + p {
    font-size: calc(16 * var(--sp-unit));
    line-height: calc(23 * var(--sp-unit));
  }
}

/* ==========================================================================
   Campaign 4: Senryu
   ========================================================================== */
.kami-sf-lp .senryu-prize{
  text-align: center;
  margin: calc(24 * var(--sp-unit)) 0;
}
.kami-sf-lp .senryu-prize__label{
  font-size: calc(16 * var(--sp-unit));
  font-weight: 700;
  margin-bottom: calc(4 * var(--sp-unit));
}
.kami-sf-lp .senryu-prize__title{
  font-size: calc(20 * var(--sp-unit));
  font-weight: 900;
  color: var(--c-ink);
  margin-bottom: calc(16 * var(--sp-unit));
}
.kami-sf-lp .senryu-prize__pkg{
  margin: calc(16 * var(--sp-unit)) auto;
  max-width: calc(280 * var(--sp-unit));
}
.kami-sf-lp .senryu-anya{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(12 * var(--sp-unit));
  margin: calc(24 * var(--sp-unit)) 0;
}
@media (min-width: 768px) {
  .kami-sf-lp .senryu-anya{
    grid-template-columns: repeat(4, 1fr);
    gap: calc(16 * var(--pc-unit));
  }
}
.kami-sf-lp .senryu-anya__item img{
  margin: 0 auto;
}

/* ==========================================================================
   Lineup (期間限定コラボパッケージ)
   ========================================================================== */
.kami-sf-lp .lineup{
  background-color: var(--c-lineup-orange);
  background-image: image-set(
    url("../img/bg-cont.webp") type("image/webp"),
    url("../img/bg-cont.png") type("image/png")
  );
  background-image: -webkit-image-set(
    url("../img/bg-cont.webp") type("image/webp"),
    url("../img/bg-cont.png") type("image/png")
  );
  background-repeat: repeat;
  background-position: center top;
  background-size: auto;
  padding: calc(75 * var(--sp-unit)) 0 calc(80 * var(--sp-unit));
  margin-top: calc(-45 * var(--sp-unit));
  clip-path: polygon(0 calc(45 * var(--sp-unit)), 100% 0, 100% 100%, 0 100%);
  position: relative;
}
@media (min-width: 768px) {
  .kami-sf-lp .lineup{
    padding: calc(205 * var(--pc-unit)) 0 calc(120 * var(--pc-unit));
    margin-top: calc(-125 * var(--pc-unit));
    clip-path: polygon(0 calc(125 * var(--pc-unit)), 100% 0, 100% 100%, 0 100%);
  }
}
.kami-sf-lp .lineup-outer{ position: relative; }
.kami-sf-lp .lineup-character{
  position: absolute;
  pointer-events: none;
  top: calc(-150 * var(--pc-unit));
  z-index: 0;
}
.kami-sf-lp .lineup-character img{ display: block; width: 100%; height: auto; }
.kami-sf-lp .lineup-character--bond{
  width: calc(240 * var(--pc-unit));
  left: calc(130 * var(--pc-unit));
  top: calc(-90 * var(--pc-unit));
}
.kami-sf-lp .lineup-character--anya{
  width: calc(200 * var(--pc-unit));
  left: calc(300 * var(--pc-unit));
  top: calc(-130 * var(--pc-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .lineup-character{
    top: calc(-60 * var(--sp-unit));
  }
  .kami-sf-lp .lineup-character--bond{
    width: calc(120 * var(--sp-unit));
    left: 0;
  }
  .kami-sf-lp .lineup-character--anya{
    width: calc(100 * var(--sp-unit));
    left: calc(90 * var(--sp-unit));
    top: calc(-85 * var(--sp-unit));
  }
}
.kami-sf-lp .lineup .cp-block__body{
  border: none;
  background-color: #ffffff;
  padding: calc(30 * var(--sp-unit)) 0;
}
.kami-sf-lp .lineup__group-title {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(16 * var(--sp-unit));
  line-height: calc(28 * var(--sp-unit));
  color: #000000;
  text-align: center;
}
.kami-sf-lp .lineup__item-name {
  font-family: var(--ff-jp-lp);
  font-weight: 500;
  font-size: calc(11 * var(--sp-unit));
  line-height: calc(16 * var(--sp-unit));
  color: #000000;
}
.kami-sf-lp .lineup__row{
  position: relative;
  margin: calc(30 * var(--sp-unit)) 0 calc(45 * var(--sp-unit));
}
.kami-sf-lp .lineup__row-group{
  margin-top: calc(35 * var(--sp-unit));
}
@media (max-width: 767px) {
  .kami-sf-lp .lineup__row-group .lineup__row{
    display: grid;
    grid-template-rows: auto auto;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    justify-content: center;
    column-gap: calc(20 * var(--sp-unit));
    row-gap: calc(8 * var(--sp-unit));
    margin: 0;
  }
  .kami-sf-lp .lineup__row-group .lineup__row + .lineup__row{
    margin-top: calc(35 * var(--sp-unit));
  }
  .kami-sf-lp .lineup__row-group .lineup__item{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    width: calc(90 * var(--sp-unit));
  }
  .kami-sf-lp .lineup__row-group .lineup__item-image{
    display: block;
    align-self: end;
    justify-self: center;
    width: 100%;
  }
  .kami-sf-lp .lineup__row-group .lineup__item-image img{
    display: block;
    width: 100%;
    height: auto;
  }
  .kami-sf-lp .lineup__group > .lineup__row{
    display: grid;
    grid-template-columns: repeat(2, max-content);
    grid-template-rows: auto auto auto auto;
    justify-content: center;
    column-gap: calc(40 * var(--sp-unit));
    row-gap: calc(30 * var(--sp-unit));
  }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    row-gap: calc(8 * var(--sp-unit));
    width: calc(90 * var(--sp-unit));
  }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item--lg{
    width: calc(92 * var(--sp-unit));
  }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item-image{
    display: block;
    align-self: end;
    justify-self: center;
    width: 100%;
  }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item-image img{
    display: block;
    width: 100%;
    height: auto;
  }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item:nth-child(1){ order: 1; }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item:nth-child(4){ order: 2; }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item:nth-child(2){ order: 3; }
  .kami-sf-lp .lineup__group > .lineup__row .lineup__item:nth-child(3){ order: 4; }
}
.kami-sf-lp .lineup__row-deco{
  position: absolute;
  pointer-events: none;
  top: calc(10 * var(--sp-unit));
  left: calc(30 * var(--sp-unit));
  width: calc(64 * var(--sp-unit));
  z-index: 2;
}
.kami-sf-lp .lineup__row-deco img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .lineup__row--deco-3 .lineup__row-deco{
  top: calc(-10 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .lineup .cp-block__body{
    padding: calc(55 * var(--pc-unit)) 0;
  }
  .kami-sf-lp .lineup__group-title {
    font-size: calc(24 * var(--pc-unit));
    line-height: calc(42 * var(--pc-unit));
  }
  .kami-sf-lp .lineup__item-name {
    font-size: calc(14 * var(--pc-unit));
    line-height: calc(23 * var(--pc-unit));
  }
  .kami-sf-lp .lineup__row{
    display: grid;
    grid-template-rows: auto auto;
    grid-auto-columns: max-content;
    grid-auto-flow: column;
    justify-content: center;
    column-gap: calc(30 * var(--pc-unit));
    row-gap: calc(15 * var(--pc-unit));
    margin: calc(30 * var(--pc-unit)) 0 calc(90 * var(--pc-unit));
  }
  .kami-sf-lp .lineup__row-group .lineup__row{
    margin: 0;
  }
  .kami-sf-lp .lineup__item{
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
    width: calc(150 * var(--pc-unit));
    order: 0;
  }
  .kami-sf-lp .lineup__item--md{ width: calc(168 * var(--pc-unit)); }
  .kami-sf-lp .lineup__item--lg{ width: calc(180 * var(--pc-unit)); }
  .kami-sf-lp .lineup__item-image{
    display: block;
    align-self: end;
    justify-self: center;
    width: 100%;
  }
  .kami-sf-lp .lineup__item-image img{
    display: block;
    width: 100%;
    height: auto;
  }
  .kami-sf-lp .lineup__row-group{
    display: flex;
    justify-content: center;
    gap: calc(120 * var(--pc-unit));
    margin-top: calc(80 * var(--pc-unit));
  }
  .kami-sf-lp .lineup__row-deco{
    width: calc(106 * var(--pc-unit));
  }
  .kami-sf-lp .lineup__row--deco-1 .lineup__row-deco{ top: calc(-40 * var(--pc-unit)); left: calc(20 * var(--pc-unit)); }
  .kami-sf-lp .lineup__row--deco-2 .lineup__row-deco{ top: calc(-40 * var(--pc-unit)); left: calc(10 * var(--pc-unit)); }
  .kami-sf-lp .lineup__row--deco-3 .lineup__row-deco{ top: calc(-40 * var(--pc-unit)); left: calc(20 * var(--pc-unit)); }
  .kami-sf-lp .lineup__row--deco-4 .lineup__row-deco{ top: calc(-40 * var(--pc-unit)); left: calc(10 * var(--pc-unit)); }
}
.kami-sf-lp .lineup__title{
  text-align: center;
  color: var(--c-white);
  font-size: calc(28 * var(--sp-unit));
  line-height: 1.4;
  margin-bottom: calc(24 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .lineup__title{
    font-size: calc(44 * var(--pc-unit));
  }
}
.kami-sf-lp .lineup__subtitle{
  text-align: center;
  color: var(--c-white);
  font-size: calc(20 * var(--sp-unit));
  font-weight: 900;
  margin: calc(32 * var(--sp-unit)) 0 calc(16 * var(--sp-unit));
}
.kami-sf-lp .lineup-original{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(12 * var(--sp-unit));
  margin-bottom: calc(40 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .lineup-original{
    grid-template-columns: repeat(4, 1fr);
    gap: calc(20 * var(--pc-unit));
  }
}
.kami-sf-lp .lineup-original__item{
  background: var(--c-white);
  border-radius: calc(12 * var(--sp-unit));
  padding: calc(16 * var(--sp-unit)) calc(12 * var(--sp-unit));
  text-align: center;
  font-size: calc(11 * var(--sp-unit));
  line-height: 1.5;
}
.kami-sf-lp .lineup-original__item img{
  margin: 0 auto calc(8 * var(--sp-unit));
  max-height: calc(180 * var(--sp-unit));
  width: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .lineup-original__item img{
    max-height: calc(220 * var(--pc-unit));
  }
}
.kami-sf-lp .lineup-category{
  margin-bottom: calc(32 * var(--sp-unit));
}
.kami-sf-lp .lineup-category__list{
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: calc(12 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .lineup-category__list{
    grid-template-columns: repeat(4, 1fr);
    gap: calc(16 * var(--pc-unit));
  }
}
.kami-sf-lp .lineup-category__item{
  background: var(--c-white);
  border-radius: calc(12 * var(--sp-unit));
  padding: calc(12 * var(--sp-unit));
  text-align: center;
  font-size: calc(11 * var(--sp-unit));
  line-height: 1.5;
}
.kami-sf-lp .lineup-category__item img{
  margin: 0 auto calc(8 * var(--sp-unit));
  max-height: calc(140 * var(--sp-unit));
  width: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .lineup-category__item img{
    max-height: calc(180 * var(--pc-unit));
  }
}

/* ==========================================================================
   About 紙らくパック (6つのらく)
   ========================================================================== */
.kami-sf-lp .about-raku{
  position: relative;
  background-color: #ffffff;
  background-image: repeating-linear-gradient(
    121deg,
    #fff9e9 0,
    #fff9e9 calc(4 * var(--sp-unit)),
    #ffffff calc(4 * var(--sp-unit)),
    #ffffff calc(10 * var(--sp-unit))
  );
  padding-top: calc(60 * var(--sp-unit));
  padding-bottom: calc(50 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku{
    background-image: repeating-linear-gradient(
      121deg,
      #fff9e9 0,
      #fff9e9 calc(7 * var(--pc-unit)),
      #ffffff calc(7 * var(--pc-unit)),
      #ffffff calc(17 * var(--pc-unit))
    );
    padding-top: calc(130 * var(--pc-unit));
    padding-bottom: calc(90 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku::before,
.kami-sf-lp .about-raku::after{
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: calc(6 * var(--sp-unit));
  z-index: 3;
  background-image: url("../img/goods/fv-bottom-orange.svg");
  background-repeat: repeat-x;
  background-size: auto calc(6 * var(--sp-unit));
  background-position: top left;
}
.kami-sf-lp .about-raku::before{
  top: -1px;
}
.kami-sf-lp .about-raku::after{
  bottom: -1px;
  transform: scaleY(-1);
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku::before,
  .kami-sf-lp .about-raku::after{
    height: calc(13 * var(--pc-unit));
    background-size: calc(33 * var(--pc-unit)) calc(13 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__title {
  font-family: var(--ff-jp);
  font-weight: 900;
  font-size: calc(29.1066 * var(--sp-unit));
  line-height: calc(50.9365 * var(--sp-unit));
  color: #a93700;
  text-align: center;
  margin-bottom: calc(10 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__title {
    font-size: calc(52 * var(--pc-unit));
    line-height: calc(91 * var(--pc-unit));
    margin-bottom: calc(25 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__lead-box{
  width: 100%;
  background-color: #ffffff;
  padding: calc(15 * var(--sp-unit)) 0;
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__lead-box{
    width: calc(1100 * var(--pc-unit));
    max-width: 1100px;
    margin: 0 auto;
    padding: calc(25 * var(--pc-unit)) 0;
  }
}
.kami-sf-lp .about-raku__lead {
  font-family: var(--ff-jp);
  font-weight: 800;
  font-size: calc(16 * var(--sp-unit));
  line-height: calc(24 * var(--sp-unit));
  color: #000000;
  text-align: center;
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__lead {
    font-size: calc(25 * var(--pc-unit));
    line-height: calc(40 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__list {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: space-between;
  row-gap: calc(15 * var(--sp-unit));
  width: calc(350 * var(--sp-unit));
  margin: calc(30 * var(--sp-unit)) auto calc(24 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__list {
    grid-template-columns: repeat(3, max-content);
    row-gap: calc(30 * var(--pc-unit));
    width: calc(1070 * var(--pc-unit));
    max-width: 1070px;
    margin: calc(70 * var(--pc-unit)) auto calc(24 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__item{
  width: calc(166 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__item{
    width: calc(333 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__item picture,
.kami-sf-lp .about-raku__item img{
  display: block;
  width: 100%;
  height: auto;
}
.kami-sf-lp .about-raku__item img{
  filter: drop-shadow(calc(1.4173 * var(--sp-unit)) calc(1.4173 * var(--sp-unit)) calc(26 * var(--sp-unit)) rgba(105, 84, 0, 0.3));
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__item img{
    filter: drop-shadow(calc(1.4173 * var(--pc-unit)) calc(1.4173 * var(--pc-unit)) calc(26 * var(--pc-unit)) rgba(105, 84, 0, 0.3));
  }
}
.kami-sf-lp .about-raku__note {
  font-family: var(--ff-jp-lp);
  font-weight: 700;
  font-size: calc(10 * var(--sp-unit));
  line-height: calc(14 * var(--sp-unit));
  color: #666666;
  padding-left: 1em;
  text-indent: -1em;
  text-align: right;
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__note {
    font-size: calc(12 * var(--pc-unit));
    line-height: calc(16 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__catch {
  font-family: var(--ff-jp);
  font-weight: 700;
  font-size: calc(23.4927 * var(--sp-unit));
  line-height: calc(41.2754 * var(--sp-unit));
  color: #a93700;
  text-align: center;
  margin-top: calc(70 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__catch {
    font-size: calc(54.0419 * var(--pc-unit));
    line-height: calc(94.9485 * var(--pc-unit));
    margin-top: calc(75 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__catch-small {
  font-size: calc(17.8221 * var(--sp-unit));
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__catch-small {
    font-size: calc(40.9973 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__catch-large {
  font-size: calc(34.834 * var(--sp-unit));
  color: #ee7c00;
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__catch-large {
    font-size: calc(80.1311 * var(--pc-unit));
  }
}
.kami-sf-lp .about-raku__logo{
  display: block;
  width: calc(200 * var(--sp-unit));
  margin: 0 auto;
}
.kami-sf-lp .about-raku__logo img{
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .about-raku__logo{
    width: calc(482 * var(--pc-unit));
  }
}
/* ==========================================================================
   Copyright / footer (LP専用)
   ========================================================================== */
.kami-sf-lp .lp-copyright{
  padding: calc(35 * var(--sp-unit)) 0;
  text-align: center;
  background: #fd9f00;
}
@media (min-width: 768px) {
  .kami-sf-lp .lp-copyright{
    padding: calc(70 * var(--pc-unit)) 0 calc(55 * var(--pc-unit));
  }
}
.kami-sf-lp .lp-copyright__notice{
  display: block;
  width: calc(311 * var(--sp-unit));
  margin: calc(80 * var(--sp-unit)) auto 0;
}
.kami-sf-lp .lp-copyright__notice img{
  display: block;
  width: 100%;
  height: auto;
}
@media (min-width: 768px) {
  .kami-sf-lp .lp-copyright__notice{
    width: calc(311 * var(--pc-unit));
    margin: calc(110 * var(--pc-unit)) auto 0;
  }
}
.kami-sf-lp .lp-copyright__link {
  position: relative;
  display: inline-block;
  padding: calc(5 * var(--sp-unit)) calc(45 * var(--sp-unit)) calc(5 * var(--sp-unit)) calc(30 * var(--sp-unit));
  background: #ffffff;
  border: calc(2 * var(--sp-unit)) solid #a93700;
  border-radius: 999px;
  text-align: center;
  font-family: var(--ff-jp-lp);
  font-weight: 800;
  font-size: calc(15.5089 * var(--sp-unit));
  line-height: calc(27.1406 * var(--sp-unit));
  color: #a93700;
  white-space: nowrap;
}
.kami-sf-lp .lp-copyright__link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: calc(16 * var(--sp-unit));
  width: calc(24 * var(--sp-unit));
  height: calc(24 * var(--sp-unit));
  transform: translateY(-50%);
  background: url("../img/goods/arrow-circle.svg") center / contain no-repeat;
}
@media (min-width: 768px) {
  .kami-sf-lp .lp-copyright__link {
    padding: calc(5 * var(--pc-unit)) calc(83 * var(--pc-unit)) calc(5 * var(--pc-unit)) calc(45 * var(--pc-unit));
    border-width: 2px;
    font-size: calc(27.9935 * var(--pc-unit));
    line-height: calc(48.9886 * var(--pc-unit));
  }
  .kami-sf-lp .lp-copyright__link::after {
    right: calc(24 * var(--pc-unit));
    width: calc(38 * var(--pc-unit));
    height: calc(38 * var(--pc-unit));
  }
}

/* ==========================================================================
   Motion / Reveal utilities
   ========================================================================== */
.kami-sf-lp .reveal-fade {
  opacity: 0;
  transition: opacity 0.6s ease-out;
  will-change: opacity;
}
.kami-sf-lp .reveal-fade.is-in { opacity: 1; }

.kami-sf-lp .reveal-fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease-out, transform 0.55s ease-out;
  will-change: opacity, transform;
}
.kami-sf-lp .reveal-fade-up.is-in {
  opacity: 1;
  transform: translateY(0);
}

.kami-sf-lp .reveal-scale {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  will-change: opacity, transform;
}
.kami-sf-lp .reveal-scale.is-in {
  opacity: 1;
  transform: scale(1);
}

.kami-sf-lp .reveal-pop {
  transform: scale(0);
  transition: transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  will-change: transform;
}
.kami-sf-lp .reveal-pop.is-in { transform: scale(1); }

.kami-sf-lp .reveal-slide-up {
  transform: translateY(120%);
  transition: transform 0.8s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}
.kami-sf-lp .reveal-slide-up.is-in { transform: translateY(0); }

.kami-sf-lp .reveal-delay-1 { transition-delay: 0.1s; }
.kami-sf-lp .reveal-delay-2 { transition-delay: 0.2s; }
.kami-sf-lp .reveal-delay-3 { transition-delay: 0.3s; }
.kami-sf-lp .reveal-delay-4 { transition-delay: 0.4s; }

/* cp-receipt: stronger bounce for decoration reveal */
.kami-sf-lp .cp-receipt .reveal-pop{
  transition-duration: 0.75s;
  transition-timing-function: cubic-bezier(0.34, 1.9, 0.5, 1);
}
/* cp-receipt: per-column stagger for product images (auto delay by nth-child) */
.kami-sf-lp .cp-receipt .cp-block__product:nth-child(1) .cp-block__product-image.reveal-pop{ transition-delay: 0.05s; }
.kami-sf-lp .cp-receipt .cp-block__product:nth-child(2) .cp-block__product-image.reveal-pop{ transition-delay: 0.15s; }
.kami-sf-lp .cp-receipt .cp-block__product:nth-child(3) .cp-block__product-image.reveal-pop{ transition-delay: 0.25s; }
.kami-sf-lp .cp-receipt .cp-block__product:nth-child(4) .cp-block__product-image.reveal-pop{ transition-delay: 0.35s; }

/* lineup: per-column stagger for product items within each row */
.kami-sf-lp .lineup__row .lineup__item.reveal-pop:nth-child(1){ transition-delay: 0.05s; }
.kami-sf-lp .lineup__row .lineup__item.reveal-pop:nth-child(2){ transition-delay: 0.15s; }
.kami-sf-lp .lineup__row .lineup__item.reveal-pop:nth-child(3){ transition-delay: 0.25s; }
.kami-sf-lp .lineup__row .lineup__item.reveal-pop:nth-child(4){ transition-delay: 0.35s; }
.kami-sf-lp .lineup__row .lineup__item.reveal-pop:nth-child(5){ transition-delay: 0.45s; }
/* about-raku: per-column stagger for feature items (2 columns on SP, 3 on PC) */
.kami-sf-lp .about-raku__list .about-raku__item.reveal-pop:nth-child(1){ transition-delay: 0s; }
.kami-sf-lp .about-raku__list .about-raku__item.reveal-pop:nth-child(2){ transition-delay: 0.1s; }
.kami-sf-lp .about-raku__list .about-raku__item.reveal-pop:nth-child(3){ transition-delay: 0.2s; }
.kami-sf-lp .about-raku__list .about-raku__item.reveal-pop:nth-child(4){ transition-delay: 0.3s; }
.kami-sf-lp .about-raku__list .about-raku__item.reveal-pop:nth-child(5){ transition-delay: 0.4s; }
.kami-sf-lp .about-raku__list .about-raku__item.reveal-pop:nth-child(6){ transition-delay: 0.5s; }

/* Idle floating for decoration images (PC only used) */
@keyframes float-y {
  0%, 100% { transform: translateY(0); }
  50%      { transform: translateY(-6px); }
}
.kami-sf-lp .cp-block__period-sub--1,
.kami-sf-lp .cp-block__period-sub--2,
.kami-sf-lp .cp-block__method-sub--1,
.kami-sf-lp .cp-block__method-sub--2 {
  animation: float-y 3.6s ease-in-out infinite;
}
.kami-sf-lp .cp-block__period-sub--2 { animation-duration: 4.2s; animation-delay: -1.3s; }
.kami-sf-lp .cp-block__method-sub--1 { animation-duration: 3.2s; animation-delay: -0.6s; }
.kami-sf-lp .cp-block__method-sub--2 { animation-duration: 4.6s; animation-delay: -2.1s; }

/* Hover interactions — active follow buttons (STEP 1) */
.kami-sf-lp .cp-block__step-btn:not(.cp-block__step-btn--soon) {
  transition: transform 0.2s ease-out, box-shadow 0.2s ease-out;
}
.kami-sf-lp .cp-block__step-btn:not(.cp-block__step-btn--soon):hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.18);
}

/* Reduced motion — disable all animations/transitions on request */
@media (prefers-reduced-motion: reduce) {
  .kami-sf-lp [class*="reveal-"] {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .kami-sf-lp .cp-block__period-sub--1,
  .kami-sf-lp .cp-block__period-sub--2,
  .kami-sf-lp .cp-block__method-sub--1,
  .kami-sf-lp .cp-block__method-sub--2 {
    animation: none !important;
  }
  .kami-sf-lp .cp-block__step-btn:not(.cp-block__step-btn--soon) {
    transition: none !important;
  }
  .kami-sf-lp .cp-block__step-btn:not(.cp-block__step-btn--soon):hover {
    transform: none !important;
    box-shadow: none !important;
  }
}
