* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --primary-pink: #e3365d;
  --dark-pink: #e3375e;
  --light-pink: #ffd8e1e8;
  --light-bg: rgba(251, 243, 245, 1);
  --light-gray: #5c5c5c;
  --white: #ffffff;
  --shadow: 0px 4px 50px rgba(248, 180, 195, 0.5);
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  color: var(--light-gray);
  background-image: url(../img/bg.png);
  background-position: 50% 50%;
  background-size: cover;
}

.container {
  max-width: 510px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background-image: url(../img/bg.png);
  background-position: 50% 50%;
  background-size: cover;
}
.campaign-date {
  position: absolute;
  top: 145px;
  left: 190px;
  width: auto;             
  height: auto;
  display: inline-flex;
  align-items: center;
  gap: 12px;

  font-family: "Noto Sans JP", Helvetica;
  font-weight: 500;
  font-size: 20px;
  color: #fff;
  white-space: nowrap;
  text-shadow: 0 0 6.9px rgba(227,54,93,0.95);
}
/* 3カラムの土台 */
.layout{
  width: min(1250px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 510px 1fr; /* 左 / 中央510 / 右 */
  align-items: start;
  min-height: 100vh;
}

/* 左エリア（ロゴ＋ボタン） */
.header{
  position: sticky;      
  width: auto;
  background: transparent;
  z-index: auto;
  padding-top: 140px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 22px;
  top: 40px;          
  align-self: start;
}

/* 中央カラム（いまの .container を中央固定にする） */
.container{
  max-width: 510px;
  width: 510px;
  margin: 0 auto;
  min-height: 100vh;
  position: relative;
  background-image: url(../img/bg.png);
  background-position: 50% 50%;
  background-size: cover;
}

/* 右ナビ */
.nav{
  position: sticky;
  top: 40px;
  display: flex;
  flex-direction: column;
  align-items: left;
  gap: 43px;
  padding-top: 120px;
  padding-left: 80px;
}
/* 右ナビのリンク */
.nav a {
  font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
  font-weight: 400;
  font-size: 18px;
  letter-spacing: 0.15em;
  line-height: 1.6;
  position: relative;
  display: inline-block;
  color: rgba(227, 53, 95, 0.94); /* 既存の色に合わせる */
  text-decoration: none;
}

/* 下線 */
.nav a::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;   
  width: 50%;
  height: 1px;
  background: rgba(227, 53, 95, 0.94);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s ease;
}

/* hover時 */
.nav a:hover::before {
  transform: scaleX(1);
}
/* 既存の見た目はそのまま活かせる */
.logo{
  position: static;        
  width: 194px;
  height: auto;
  object-fit: contain;
}

.official-site-btn{
  position: static; 
  display: inline-block;
  align-items: center;
  justify-content: center;


  padding: 8px 0px 8px 22px; /* 上 右 下 左 */
  border: 1px solid #3a3a3a;
  background: transparent;

  font-family: "Noto Serif JP", "游明朝", YuMincho, serif;
  font-size: 16px;
  letter-spacing: 0.2em;
  color: #3a3a3a;
  text-decoration: none;
  text-align: center;

  transition: background-color 0.3s ease;

}
.official-site-btn{
  display: inline-flex;
  align-items: center;
}

.official-site-btn span{
  letter-spacing: 0.25em;
  margin-right: 12px; /* gapを使わず明示 */
}

.official-site-btn span,
.official-site-btn img{
  display: inline-block;
  vertical-align: middle; /* ←これが重要 */
}
.official-site-btn img{
  width: 10px;
  margin-left: 5px;
  transition: transform 0.3s ease;
  margin-right: 10px;
}

/* hover時 */
.official-site-btn:hover {
  background-color: rgba(0, 0, 0, 0.03); /* ほんのり */
}

/* 矢印を右にスライド */
.official-site-btn:hover img {
  transform: translateX(6px);
}

/* Hero Section */

.hero {
  position: relative;
  width: 510px;
  height: 589px;
  margin: 0 auto;
  background: linear-gradient(
    309deg,
    rgba(249, 126, 154, 1) 0%,
    rgba(247, 209, 173, 1) 49%,
    rgba(254, 215, 233, 1) 100%
  );
  box-shadow: var(--shadow);
  overflow: hidden; /* ← はみ出し防止 */
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  left: -70px; /* 右にはみ出させる */
  width: 380px; /* 画像サイズに合わせて調整 */
  height: 100%;
  background: url("../img/cover.png") no-repeat right center;
  background-size: contain;
  z-index: 1;
  pointer-events: none; /* クリック邪魔しない */
}

.hero-content {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 501;
}

.hero-title {
  position: absolute;
  top: 34px;
  left: 38px;
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 38px;
  font-weight: 400;
  color: #fff;
  text-shadow: 0px 0px 6.9px rgba(227,54,93,0.95);
  line-height: 47px;
  letter-spacing: 3px;
  width: 329px;
   z-index: 500;
}

.campaign-badge {
  position: absolute;
  top: 147px;
  left: 46px;
  width: 136px;
  height: 30px;
  background: rgba(227,54,93,0.94);
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Noto Sans JP", Helvetica;
  font-weight: 500;
  font-size: 15px;
  color: #fff;
}

/* 画像エリア（枠） */
.hero-product {
  position: absolute;
  top: 145px;
  left: 35px;
  width: 400px;
  height: 400px;
  /*overflow: hidden;*/
}

/* フェード本体（ここ重要：.fade に対して書く） */
.hero-product .fade{
  position: absolute;
  inset: 0;
}

/* スライドを重ねる */
.hero-product .fade .hero-slide{
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.6s ease;
}

.hero-product .fade .hero-slide.is-active{
  opacity: 1;
  pointer-events: auto;
}

/* 画像（contain/coverは好みで） */
.hero-product .fade .slide-img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* スライドの文字（右下） */
.hero-product .fade .slide-info{
  position: absolute;
  right: 18px;
  bottom: 6px;
  width: 275px;
  text-align: right;
  text-shadow: 0px 0px 6.9px rgba(227,54,93,0.95);
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-weight: 400;
  font-size: 28px;
  color: #fff;
  line-height: 35px;
}

/* バー */
.progress-bars{
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 14px;
  z-index: 10;
}

.bar{
  width: 34px;
  height: 4px;
  border-radius: 999px;
  background: rgba(254,215,233,0.9);
  border: none;
  cursor: pointer;
  opacity: 0.6;
  transition: opacity 0.25s ease;
}

.bar.active{
  background: rgba(227,54,93,0.95);
  opacity: 1;
}



.bar{
  width: 34px;               /* 横長 */
  height: 4px;
  border-radius: 999px;
  background: rgba(254,215,233,0.9);
  border: none;
  cursor: pointer;
  transition: opacity 0.25s ease;
  opacity: 0.6;
}

.bar.active{
  background: rgba(227,54,93,0.95);
  opacity: 1;
}
.hero-track{
  display: flex;
  height: 100%;
  width: 200%;               /* ★2枚なので200% */
  transform: translateX(0%);
  transition: transform 0.45s ease;
}
/* Intro Section */
.intro {
  width: 510px;
  margin: 0 auto;
  padding: 56px 38px 60px;   /* ← 22pxだと窮屈になりがちなので左右を少し増やす */
  background: #fff;
  box-shadow: var(--shadow);
}

/* 見出し*/
.intro h2{
  font-family: "Noto Serif JP","游明朝",YuMincho,serif; 
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 0.12em;  /* 3px固定より自然 */
  line-height: 1.25;
  margin-bottom: 18px;
}

/* 英字サブ：小さめ＆追い込み */
.intro .subtitle{
  
  font-size: 16px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 0.08em;
  line-height: 1.6;
  margin-bottom: 18px;
}


/* 本文 */
.intro .intro-text{
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 0.08em;
  line-height: 2.0;
  margin-bottom: 130px;
  width: 250px;
  position: absolute;

}

/* 画像：比率固定＋中央寄せ＋角丸（Figmaの雰囲気が出る） */
.intro-images{
  position: relative;
}

.intro-images img{
  width: 100%;
  display: block;
  border-radius: 12px;
}
/* テキストを画像の上に重ねる */
.intro-text{
  position: absolute;
  left: 0;
  bottom: 0;

  width: 100%;
  padding: 20px 24px;

  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  color: #fff;



  border-radius: 0 0 12px 12px;
}


/* Checklist Section */
.checklist{
  position: relative;
  width: 510px;
  /* height固定をやめる：文章量で崩れない */
  min-height: 560px;
  padding: 50px 0 60px;   /* タイトル分の余白 */
  background: var(--light-bg);
  margin: 0 auto;
  box-shadow: var(--shadow);
}

/* タイトル */
.checklist-title{
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 0 0 26px;

  font-family: "Noto Serif JP","游明朝",YuMincho,serif;
  font-size: 34px;
  font-weight: 400;
  letter-spacing: 0.08em;         /* ←強すぎを抑える */
  line-height: 1.2;
}

.dark-text{ color: var(--light-gray); }
.pink-text{ color: #e3375e; }

/* カード領域 */
.checklist-content{
  position: relative;
  width: 100%;
  min-height: 400px;    
}

/* 背景カード（画像） */
.checklist-bg{
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 470px;      
  height: auto;
  max-width: 92%;
}


/* ✅ 縦ライン（カードに合わせて少し中へ） */
.checklist-line{
  position: absolute;
  top: 120px;
  left: 86px;
  width: 22px;
  height: 170px;
}

/* ✅ リスト：幅を広げて折り返しを自然に */
.checklist-items{
  position: absolute;
  top: 60px;
  left: 50px;

  width: 340px;                   /* ←330→340（重要） */
  list-style: none;

  display: flex;
  flex-direction: column;
  gap: 30px;                      /* 行間をFigmaっぽく */
}

/* 文章：読みやすく */
.checklist-items li{
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 16px;                /* ←15だと詰まりやすいので1上げ */
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 0.02em;
  line-height: 1.8;

  /* 折り返しの崩れ対策 */
  overflow-wrap: anywhere;
  word-break: normal;
}

/* 人物：カードから少し離して“右下に置く” */
.checklist-accent{
  position: absolute;
  right: 22px;
  bottom: 68px;                 
  width: 150px;                 
  height: auto;
  z-index: 3;
}

/* 人物がカードに被る場合、カードを上にするならこれ */
.checklist-bg{ z-index: 1; }
.checklist-line,
.checklist-items{ z-index: 2; }


/* リスト全体：チェック分だけ左に余白 */
.checklist-items{
  list-style: none;
  padding-left: 46px;  /* ←チェックの幅＋余白 */
}

/* li：位置基準 */
.checklist-items li{
  position: relative;
}

/* チェック画像をliの左に表示 */
.checklist-items li::before{
  content: "";
  position: absolute;
  left: -46px;
  top: 2px;

  width: 28px;           /* チェックのサイズ */
  height: 28px;
  background: url("../img/checklist.png") no-repeat center / contain;
}


/* Product Section */
.product-section {
  position: relative;
  width: 510px;
  height: 620px;
  margin: 0 auto;
box-shadow: var(--shadow);
}

.product-hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-overlay {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  padding: 32px 28px 350px;
}

.product-overlay h2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: white;
  text-shadow: 0px 0px 6.9px #e3365df0;
  line-height: 35px;
  letter-spacing: 3px;
  white-space: nowrap;
}

.product-subtitle {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 25px;
  font-weight: 600;
  color: white;
  text-shadow: 0px 0px 6.9px #e3365df0;
  letter-spacing: 2.5px;
  line-height: 60px;
  white-space: nowrap;
  margin-top: 0;
}

.product-description {
  font-family: "Noto Sans JP", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: white;
  text-shadow: 0px 0px 7px #e3365df2;
  letter-spacing: 1.5px;
  line-height: 35px;
  margin-top: 30px;
}

/* Points Section */
.bg-light {
  background: var(--light-bg);
}

.points-section {
  position: relative;
  width: 510px;
  min-height: 2374px;
  margin: 0 auto;
  padding: 72px 22px 40px;
  box-shadow: var(--shadow);
}

.points-title {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 3px;
  line-height: 35px;
  text-align: center;
  margin-bottom: 50px;
}

.points-intro {
  display: flex;
  gap: 15px;
  margin-bottom: 60px;
}

.points-intro p {
  flex: 1;
  font-family: "Noto Sans JP", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 1.5px;
  line-height: 35px;
}

.points-intro img {
  width: 216px;
  height: 311px;
  object-fit: cover;
}

.points-subtitle {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 3px;
  line-height: 35px;
  text-align: center;
  margin: 60px 0 46px 0;
}

.point-card {
  width: 477px;
  margin: 0 auto 107px;
  padding: 0 22px;
}

/* 画像＋文章を2カラムで */
.point-body{
  display: grid;
  grid-template-columns: 216px 1fr;
  gap: 20px;
  align-items: start;
}


/* 画像 */
.point-body img{
  width: 216px;
  height: 311px;
  object-fit: cover;
  display: block;
}

/* 文章（普通に折り返す） */
.point-body p{
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 15px;
  color: var(--light-gray);
  letter-spacing: 0.08em;
  line-height: 2.0;
  margin: 0;
  overflow-wrap: anywhere;
}
.point-number {
  font-family: "Allura", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  text-align: center;
  display: block;
  margin-bottom: 20px;
}

.point-card h4 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 2px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 30px;
  white-space: pre-line;
}

/*.point-card img {
  width: 216px;
  height: 311px;
  object-fit: cover;
  float: left;
  margin-right: 20px;
  margin-bottom: 20px;
}*/

/*.point-card p {
  font-family: "Noto Sans JP", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 1.5px;
  line-height: 35px;
  display: flex;
  align-items: center;
  min-height: 297px;
}*/

/* Set Section */
.set-section{
  position: relative;
  width: 510px;
  margin: 0 auto;
  padding: 60px 40px 70px;
  background: #fff;
  box-shadow: var(--shadow);
  text-align: center;
}

/* 見出し周り（余白を整理） */
.set-label{
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 20px;
  color: var(--dark-pink);
  letter-spacing: 0.2em;
  line-height: 1.8;
  margin-bottom: 10px;
  font-weight: 600;
}

.set-section h2{
  font-family: "Hiragino Mincho Pro", Helvetica, serif;
  font-size: 32px;
  font-weight: 600;
  color: var(--dark-pink);
  letter-spacing: 0.18em;
  line-height: 1.2;
  margin-bottom: 18px; /* 108→詰める */
}
.is-set{

  width: 136px;
  height: 30px;
  background: rgba(227,54,93,0.94);
  border-radius: 5px;
  font-weight: 500;
  color: #fff;
  display: flex;
  flex-direction: column;
  padding: 5px 0px;
  font-size: 14px;
  border-radius: 4px;
}
/* 商品画像（1枚対応に最適化） */
.product-showcase{
  position: relative;
  width: 390px;
  height: 260px;            /* 232→少しゆとり */
  margin: 0 auto 34px;
  display: grid;
  place-items: center;
}

.product-showcase::after{
  content: "";
  position: absolute;
  right: 10px;
  top: 28px;
  width: 192px;
  height: 192px;
  background: rgba(255, 216, 225, 0.9);
  border-radius: 999px;
  z-index: 0;
}

.product-showcase img{
  position: relative;
  z-index: 1;
  width: 340px;             /* 画像の見せたいサイズに */
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* 価格＋期間：横並びをやめて縦積みに（崩れ防止） */
.pricing{
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 18px;
  margin-bottom: 26px;
}

/* 特別価格：中央揃えで詰まらない形 */
.special-price{
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.price-wrap{
  display: flex;
  flex-direction: column;
  align-items: flex-end;   /* ★これが右ぞろえの正体 */
}

.price{
  font-size: 80px;
  font-weight: 600;
  line-height: 1;
}

.tax{
  font-size: 16px;
  margin-top: 8px;
}

.special-price .label{
  width: 82px;
  height: 82px;
  border: 2px solid var(--dark-pink);
  display: grid;
  place-items: center;
  font-family: "Hiragino Mincho Pro", Helvetica, serif;
  font-size: 22px;
  font-weight: 600;
  color: var(--dark-pink);
  line-height: 1.2;
}

.special-price .price{
  font-family: "Hiragino Mincho Pro", Helvetica, serif;
  font-size: 64px;          /* 80→少し縮めて収まり良く */
  font-weight: 600;
  color: var(--dark-pink);
  line-height: 1;
}

.special-price .tax{
  font-family: "Hiragino Mincho Pro", Helvetica, serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--dark-pink);
  white-space: nowrap;
}

/* 期間：バッジを見た目安定させる */
.campaign-info{
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-wrap: wrap;
}

.campaign-info .campaign-badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 29px;
  padding: 0 14px;
  border-radius: 6px;
  background: #e3365df0;
  color: #fff;
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 13px;
  font-weight: 500;
  white-space: nowrap;
}

.campaign-info .dates{
  font-family: "Noto Sans JP", Helvetica, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--dark-pink);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.purchase-btn{
  width: 390px;
  height: 90px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;

  background: linear-gradient(
    180deg,
    rgba(247,120,149,1) 0%,
    rgba(231,75,111,1) 100%
  );
  border-radius: 12px;

  text-decoration: none;            /* aタグ対策 */
  cursor: pointer;

  font-family: "Hiragino Mincho Pro", "Noto Serif JP", serif;
  font-size: 30px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: rgba(255,255,255,0.95);

  transition: 
    transform .25s ease,
    box-shadow .25s ease,
    opacity .25s ease;
}

/* hover：ふわっと浮く */
.purchase-btn:hover{
  transform: translateY(-2px);

}

/* active：押し込み感 */
.purchase-btn:active{
  transform: translateY(0);
}

/* 矢印 */
.purchase-btn__icon{
  width: 18px;          /* polygon2.pngに合わせて微調整 */
  height: auto;
  transition: transform .25s ease;
}

/* hoverで矢印だけ右にスライド */
.purchase-btn:hover .purchase-btn__icon{
  transform: translateX(8px);
}


/* Product Section 2 */
.product-section-2 {
  position: relative;
  width: 510px;
  height: 620px;
  margin: 0 auto;
  box-shadow: var(--shadow);
}

.product-overlay-2 {
  position: absolute;
  bottom: 0px;
  left: 0;
  width: 100%;
  padding: 20px;
}

.product-overlay-2 h2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: white;
  text-shadow: 0px 0px 6.9px #e3365df0;
  line-height: 35px;
  letter-spacing: 3px;
}

.product-subtitle-2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 25px;
  font-weight: 600;
  color: white;
  text-shadow: 0px 0px 6.9px #e3365df0;
  letter-spacing: 2.5px;
  white-space: nowrap;
  margin-top: 0;
}

.product-description-2 {
  font-family: "Noto Sans JP", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: white;
  text-shadow: 0px 0px 7px #e3365df2;
  letter-spacing: 1.5px;
  line-height: 35px;
  margin-top: 380px;
}

/* Points Section 2 */
.points-section-2 {
  position: relative;
  width: 510px;
  min-height: 2456px;
  margin: 0 auto;
  padding: 106px 22px 40px;
  box-shadow: var(--shadow);
}

.points-title-2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 3px;
  line-height: 42px;
  text-align: center;
  margin-bottom: 131px;
  white-space: pre-line;
}

.points-intro-2 {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 60px;
}

.points-intro-2 p {
  font-family: "Noto Sans JP", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 1.5px;
  line-height: 35px;
  width: 212px;
  margin: 0 auto;
}

.points-intro-2 img {
  width: 216px;
  height: 311px;
  object-fit: cover;
  margin: 0 auto;
}

.points-subtitle-2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 3px;
  line-height: 35px;
  text-align: center;
  margin: 60px 0 146px 0;
}

.point-card-2 {
  position: relative;
  width: 100%;
  margin: 0 auto 123px;
  padding: 0 20px;
}

.point-number-2 {
  font-family: "Allura", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  text-align: center;
  display: block;
  margin-bottom: 50px;
}

.point-card-2 h4 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 20px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 2px;
  line-height: 30px;
  text-align: center;
  margin-bottom: 75px;
  white-space: pre-line;
}

.point-card-2 img {
  width: 216px;
  height: 311px;
  object-fit: cover;
  display: block;
  margin: 0 auto 20px;
}

.point-card-2 p {
  font-family: "Noto Sans JP", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: var(--light-gray);
  letter-spacing: 1.5px;
  line-height: 35px;
  width: 212px;
  margin: 0 auto;
}

/* Set Section 2 */
.set-section-2 {
  position: relative;
  width: 510px;
  min-height: 400px;
  margin: 0 auto;
  padding: 60px 40px;
  background: white;
  box-shadow: var(--shadow);
  text-align: center;
}

.set-label-2 {
  font-family: "Noto Sans JP", Helvetica;
  font-size: 15px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 1.5px;
  line-height: 35px;
  margin-bottom: 20px;
}

.set-title-2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 30px;
  font-weight: 400;
  color: var(--dark-pink);
  letter-spacing: 3px;
  line-height: 35px;
  margin-bottom: 82px;
}

.product-showcase-2 {
  position: relative;
  width: 308px;
  height: 252px;
  margin: 0 auto 42px;
}

.circle-bg-2 {
  position: absolute;
  top: 18px;
  left: 116px;
  width: 192px;
  height: 192px;
  background: #ffd8e1e8;
  border-radius: 96px;
}

.product-showcase-2 img:nth-child(2) {
  position: absolute;
  top: 0;
  left: 0;
  width: 133px;
  height: 252px;
  object-fit: cover;
}

.product-showcase-2 img:nth-child(3) {
  position: absolute;
  top: 58px;
  left: 124px;
  width: 176px;
  height: 124px;
}

.pricing-2 {
  display: flex;
  justify-content: center;
}

.special-price-2 {
  display: flex;
  align-items: center;
  gap: 0;
}

.special-price-2 .label-2 {
  width: 97px;
  height: 97px;
  border: 2px solid var(--dark-pink);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 28px;
  font-weight: 600;
  color: var(--dark-pink);
  text-align: center;
  line-height: 35px;
}

.special-price-2 .price-2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 80px;
  font-weight: 600;
  color: var(--dark-pink);
  text-align: center;
  line-height: 35px;
  padding: 0 20px;
  width: 220px;
}

.special-price-2 .tax-2 {
  font-family: "Hiragino Mincho Pro", Helvetica;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark-pink);
  text-align: center;
  line-height: 35px;
  white-space: nowrap;
}

/*下線アニメーション*/
/* 改行対応マーカー下線 */
.underline-marker{
  background-image: linear-gradient(
    transparent 80%,
    rgba(234, 162, 179, 0.85) 70%,
    rgba(234, 162, 179, 0.85) 100%
  );
  background-repeat: no-repeat;
  background-size: 0% 100%;
  transition: background-size 0.8s ease;
  padding-bottom: 2px;

  /* ★ 改行対応の要 */
  box-decoration-break: clone;
  -webkit-box-decoration-break: clone;
}

/* 発火後 */
.underline-marker.is-active{
  background-size: 100% 100%;
}


.point-body p{
  align-self: center;
}
.howto-section{
  width: 510px;
  margin: 0 auto;
}

.howto-video-wrap{
  position: relative;
  height: 600px;
  overflow: hidden;
}

.howto-video-wrap video{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.howto-overlay{
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.howto-content{
  position: relative;
  z-index: 2;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* ←上寄せ */
  align-items: center;
  text-align: center;
  color: #fff;
  padding: 200px 30px 0; 
  gap: 14px;            
}

.howto-content_p{
  margin: 0;
  line-height: 1.8 !important;
  font-size: 16px;
}

@media (max-width: 980px){
  .header, .nav{ display:none; }
  .layout{ display:block; }
.hero-product .fade .slide-info{
  font-size: 26px;
}

}
@media (max-width: 360px){
  /* 510px固定を解除して画面幅に追従させる */
  .container,
  .hero,
  .intro,
  .checklist,
  .product-section,
  .product-section-2,
  .points-section,
  .points-section-2,
  .set-section,
  .set-section-2{
    width: 100% !important;
    max-width: 100% !important;
  }
  .point-card{
    width: 100% !important;
    padding: 0 18px !important;
  }

  .point-body{
    grid-template-columns: 1fr !important;
    gap: 14px !important;
  }

  .point-body img{
    width: 100% !important;
    height: auto !important;
  }

  .point-body p{
    align-self: start !important; /* 縦中央は解除（縦積み時は不要） */
  }

    .hero-product{
    left: 18px !important;
    right: 18px !important;
    width: auto !important;
    height: 320px !important;
  }
  .points-title,
  .points-subtitle{
    font-size: 24px !important;
    line-height: 1.4 !important;
    letter-spacing: 0.08em !important;
  }

  .campaign-date{
    top: 170px !important; /* バッジの下に逃がす */
  }

}