/* ===================================
   月詠澪 - ブレスレット販売LP CSS
   公開ページと世界観を統一
   販売要素（価格・CTA・FAQ等）追加
   =================================== */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables（公開ページと統一） --- */
:root {
  --bg-main: #FBF7FF;
  --bg-section: #F6EEFF;
  --bg-card: #FFFFFF;
  --bg-accent: #FFF9FC;
  --bg-silver: #F4F1FA;
  --purple-light: #DCC8FF;
  --purple-mid: #CDB4F6;
  --purple-deep: #BFA2F2;
  --purple-soft: #E8DEFF;
  --text-dark: #3D2A4F;
  --text-mid: #4A3568;
  --text-body: #5A4570;
  --text-light: #7B6A8E;
  --gold-accent: #E8D7A2;
  --gold-light: #F3E7C4;
  --gold-champagne: #D4C494;
  --sakura: #FFF0F5;
  --white: #FFFFFF;
  --font-sans: 'Noto Sans JP', sans-serif;
  --font-serif: 'Noto Serif JP', serif;
  --shadow-soft: 0 4px 20px rgba(191, 162, 242, 0.12);
  --shadow-card: 0 8px 32px rgba(191, 162, 242, 0.10);
  --shadow-glow: 0 0 40px rgba(191, 162, 242, 0.15);
  --radius: 16px;
  --radius-lg: 24px;
}

/* --- Reset & Base --- */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  color: var(--text-body);
  background-color: var(--bg-main);
  line-height: 2;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  text-align: center;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--text-dark);
  font-weight: 500;
  line-height: 1.7;
}

/* --- Layout --- */
.page-wrapper { max-width: 480px; margin: 0 auto; overflow: hidden; }
.section { padding: 56px 24px; position: relative; text-align: center; }
.section--alt { background-color: var(--bg-section); }

/* --- Decorative Divider --- */
.section-divider {
  display: flex; align-items: center; justify-content: center;
  padding: 8px 24px; gap: 12px;
}
.section-divider::before, .section-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
}
.section-divider__icon { font-size: 14px; color: var(--purple-mid); opacity: 0.7; }

/* --- First View --- */
.firstview {
  background: linear-gradient(180deg, #F6EEFF 0%, #FBF7FF 50%, var(--bg-main) 100%);
  padding: 48px 24px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.firstview::before {
  content: ''; position: absolute; top: -60px; left: 50%;
  transform: translateX(-50%); width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(220, 200, 255, 0.3) 0%, transparent 70%);
  pointer-events: none;
}
.firstview__image-wrap {
  margin: 0 -8px 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-glow);
}
.firstview__image { width: 100%; display: block; }
.firstview__label {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
  color: var(--text-dark); font-size: 12px; font-weight: 500;
  letter-spacing: 0.15em; padding: 7px 22px;
  border-radius: 100px; margin-bottom: 24px;
}
.firstview__title {
  font-family: var(--font-serif); font-size: 24px; font-weight: 600;
  line-height: 1.9; color: var(--text-dark);
  margin-bottom: 24px; letter-spacing: 0.06em;
}
.firstview__subtitle {
  font-family: var(--font-serif); font-size: 17px;
  color: var(--text-dark); line-height: 2.2;
  margin-bottom: 28px; font-weight: 500;
  letter-spacing: 0.08em;
}
.firstview__note {
  font-family: var(--font-serif); font-size: 15.5px;
  color: var(--text-dark); line-height: 2.4; margin-bottom: 48px;
  font-weight: 500;
}
.firstview__note .highlight-date {
  color: var(--text-dark); font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(232, 215, 162, 0.35) 60%);
  padding: 0 2px;
}

/* --- Section Headings --- */
.section-heading { text-align: center; margin-bottom: 40px; }
.section-heading__title {
  font-family: var(--font-serif); font-size: 21px; font-weight: 600;
  line-height: 1.8; color: var(--text-dark); letter-spacing: 0.06em;
}
.section-heading__line {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, var(--purple-light), var(--gold-accent));
  margin: 16px auto 0;
}

/* --- Body Text --- */
.body-text {
  font-size: 15.5px; line-height: 2.4;
  color: var(--text-body); letter-spacing: 0.04em; text-align: left;
  margin-bottom: 48px;
}
.body-text p { margin-bottom: 48px; }
.body-text p:last-child { margin-bottom: 0; }

.body-text .emphasis { color: var(--text-dark); font-weight: 700; }
.body-text .gold-emphasis {
  color: #7A6520; font-weight: 700;
  background: linear-gradient(transparent 60%, rgba(232, 215, 162, 0.3) 60%);
  padding: 0 2px;
}

/* --- Stage Marks --- */
.stage-marks {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin: 24px 0 32px;
}
.stage-mark {
  background: linear-gradient(135deg, rgba(246, 238, 255, 0.9), rgba(255, 249, 252, 0.9));
  border: 1px solid rgba(191, 162, 242, 0.4);
  padding: 10px 24px;
  border-radius: 100px;
  font-family: var(--font-serif);
  font-size: 15.5px;
  color: var(--text-dark);
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(191, 162, 242, 0.12);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  letter-spacing: 0.08em;
}
.stage-mark::before {
  content: '✦';
  color: var(--purple-mid);
  font-size: 13px;
}

.highlight-box {
  background: linear-gradient(135deg, rgba(246, 238, 255, 0.8), rgba(255, 249, 252, 0.9));
  border: 1px solid rgba(191, 162, 242, 0.2);
  border-left: 3px solid var(--purple-mid);
  border-radius: 12px; padding: 24px 20px; margin: 32px 0;
  text-align: center; font-size: 16px; line-height: 2.2;
  color: var(--text-dark); font-weight: 500;
}

/* --- Empathy Quotes --- */
.empathy-quote {
  font-family: var(--font-serif);
  font-size: 15px; color: var(--text-mid);
  line-height: 2.2; padding: 16px 0;
  border-bottom: 1px solid rgba(191, 162, 242, 0.12);
  text-align: center;
}
.empathy-quote:last-child { border-bottom: none; }

/* --- CTA Buttons --- */
.cta-block { text-align: center; padding: 40px 16px; }
.cta-block__lead {
  font-family: var(--font-serif); font-size: 15px;
  color: var(--text-mid); margin-bottom: 16px; line-height: 1.8;
}
.cta-button {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  color: var(--white); font-family: var(--font-sans);
  font-size: 15px; font-weight: 600; letter-spacing: 0.05em;
  padding: 18px 28px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(191, 162, 242, 0.3);
  transition: all 0.3s ease; line-height: 1.6; white-space: nowrap;
}
.cta-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(191, 162, 242, 0.4);
}
.cta-button__icon { font-size: 20px; }
.cta-block__note { font-size: 12px; color: var(--text-light); margin-top: 12px; line-height: 1.8; }

/* --- 購入ボタン（ゴールド系） --- */
.buy-button {
  display: block; width: 100%; text-align: center;
  background: linear-gradient(135deg, #D4B872, #C5A55A, #D4B872);
  color: var(--white); font-family: var(--font-sans);
  font-size: 15px; font-weight: 600; letter-spacing: 0.06em;
  padding: 18px 24px; border-radius: 100px; border: none; cursor: pointer;
  box-shadow: 0 4px 20px rgba(196, 165, 90, 0.3);
  transition: all 0.3s ease; line-height: 1.6;
  position: relative; overflow: hidden;
}
.buy-button::after {
  content: ''; position: absolute; top: 0; left: -100%; width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  animation: shimmer 3s infinite;
}
@keyframes shimmer {
  0% { left: -100%; } 100% { left: 200%; }
}
.buy-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196, 165, 90, 0.4);
}
.buy-buttons-group { display: flex; flex-direction: column; gap: 14px; margin-top: 24px; }

/* --- Bracelet Cards (販売版) --- */
.bracelet-cards { display: flex; flex-direction: column; gap: 40px; }
.bracelet-card {
  background: var(--white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-card);
  border: 1px solid rgba(191, 162, 242, 0.15);
}
/* --- Bracelet Card Slider --- */
.bracelet-card__slider {
  width: 100%;
  position: relative;
  overflow: hidden;
  background-color: var(--white);
  padding-top: 100%; /* LINEブラウザ等の aspect-ratio バグ対策 */
}

.bracelet-card__slider-track {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-animation: cardSlide 9s infinite cubic-bezier(0.4, 0, 0.2, 1);
  animation: cardSlide 9s infinite cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  height: 100%;
  width: 100%;
}

.bracelet-card__slide {
  -webkit-box-flex: 0;
  -webkit-flex: 0 0 100%;
  -ms-flex: 0 0 100%;
  flex: 0 0 100%;
  width: 100%;
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--white);
}

.bracelet-card__image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

/* 着用画像は左右の余白を消すためcoverを使用 */
.bracelet-card__image--worn {
  object-fit: contain;
  object-position: center;
  aspect-ratio: auto;
}

@-webkit-keyframes cardSlide {
  0%, 42% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  48%, 92% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
  98%, 100% { -webkit-transform: translate3d(-200%, 0, 0); transform: translate3d(-200%, 0, 0); }
}

@keyframes cardSlide {
  0%, 42% { -webkit-transform: translate3d(0, 0, 0); transform: translate3d(0, 0, 0); }
  48%, 92% { -webkit-transform: translate3d(-100%, 0, 0); transform: translate3d(-100%, 0, 0); }
  98%, 100% { -webkit-transform: translate3d(-200%, 0, 0); transform: translate3d(-200%, 0, 0); }
}

.bracelet-card .image-placeholder {
  aspect-ratio: 3 / 2;
}
.bracelet-card__body { padding: 28px 24px 32px; }
.bracelet-card__phase {
  display: inline-block; font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; padding: 5px 16px;
  border-radius: 100px; margin-bottom: 14px;
}
.bracelet-card--encounter .bracelet-card__phase { background: linear-gradient(135deg, #FFF0F5, #FFE8F0); color: #A66B8A; }
.bracelet-card--silence .bracelet-card__phase { background: linear-gradient(135deg, #EDE8FF, #E0D8F8); color: #6B5A9E; }
.bracelet-card--union .bracelet-card__phase { background: linear-gradient(135deg, #F3E7C4, #EDE0B8); color: #8B7535; }

.bracelet-card__name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 600;
  color: var(--text-dark); margin-bottom: 4px; letter-spacing: 0.1em;
}
.bracelet-card__reading {
  font-size: 13px; color: var(--text-light);
  margin-bottom: 16px; letter-spacing: 0.06em;
}
.bracelet-card__copy {
  font-family: var(--font-serif); font-size: 15px;
  color: var(--text-mid); line-height: 2.1; margin-bottom: 20px;
  padding-bottom: 20px; border-bottom: 1px solid rgba(191, 162, 242, 0.15);
}
.bracelet-card__desc {
  font-size: 15px; color: var(--text-body);
  line-height: 2.3; margin-bottom: 48px; text-align: left;
}
.bracelet-card__label {
  font-size: 13px; font-weight: 700; color: var(--text-dark);
  margin-bottom: 12px; letter-spacing: 0.08em; text-align: left;
}
.bracelet-card__tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bracelet-card__tag {
  font-size: 13px; color: var(--text-mid);
  background: var(--bg-section); padding: 6px 14px;
  border-radius: 100px; letter-spacing: 0.04em;
}
.bracelet-card__roles { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 24px; }
.bracelet-card__role {
  font-size: 12px; color: var(--purple-deep);
  background: rgba(191, 162, 242, 0.08); padding: 5px 14px;
  border-radius: 100px; letter-spacing: 0.04em;
  border: 1px solid rgba(191, 162, 242, 0.15);
}

/* 石情報 */
.bracelet-card__stones {
  background: var(--bg-silver); border-radius: 12px;
  padding: 16px 20px; margin-bottom: 24px; text-align: left;
}
.bracelet-card__stones-title {
  font-size: 12px; font-weight: 600; color: var(--text-dark);
  letter-spacing: 0.08em; margin-bottom: 8px;
}
.bracelet-card__stones-text {
  font-size: 13.5px; color: var(--text-body); line-height: 2;
}

/* 価格表示 */
.bracelet-card__pricing { margin: 24px 0; text-align: center; }
.bracelet-card__original-price {
  font-size: 14px; color: var(--text-light);
  text-decoration: line-through; margin-bottom: 4px;
}
.bracelet-card__price-label {
  font-size: 13px; color: var(--gold-champagne);
  font-weight: 500; letter-spacing: 0.08em; margin-bottom: 4px;
}
.bracelet-card__price {
  font-family: var(--font-serif); font-size: 28px; font-weight: 700;
  color: var(--text-dark); letter-spacing: 0.04em;
}
.bracelet-card__price small { font-size: 16px; font-weight: 400; }
.bracelet-card__limited {
  display: inline-block; margin-top: 10px;
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
  color: var(--text-dark); font-size: 12px; font-weight: 600;
  letter-spacing: 0.12em; padding: 5px 18px; border-radius: 100px;
}

/* --- 価格一覧テーブル --- */
.price-table { width: 100%; margin: 32px 0; }
.price-table-item {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 20px; margin-bottom: 16px;
  border: 1px solid rgba(191, 162, 242, 0.15);
  box-shadow: var(--shadow-soft); text-align: center;
}
.price-table-item__name {
  font-family: var(--font-serif); font-size: 18px;
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 4px; letter-spacing: 0.08em;
}
.price-table-item__phase {
  font-size: 12px; color: var(--text-light);
  margin-bottom: 12px; letter-spacing: 0.06em;
}
.price-table-item__original {
  font-size: 14px; color: var(--text-light);
  text-decoration: line-through; margin-bottom: 4px;
}
.price-table-item__price {
  font-family: var(--font-serif); font-size: 26px;
  font-weight: 700; color: var(--text-dark);
}
.price-table-item__price small { font-size: 14px; font-weight: 400; }
.price-table-item__badge {
  display: inline-block; margin-top: 10px;
  background: linear-gradient(135deg, var(--gold-accent), var(--gold-light));
  color: var(--text-dark); font-size: 11px; font-weight: 600;
  letter-spacing: 0.12em; padding: 4px 16px; border-radius: 100px;
}

/* --- 特典カード --- */
.benefit-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; margin-bottom: 20px;
  border: 1px solid rgba(191, 162, 242, 0.15);
  box-shadow: var(--shadow-soft); text-align: left;
}
.benefit-card__number {
  display: inline-block; font-size: 11px; font-weight: 600;
  color: var(--purple-deep); letter-spacing: 0.12em;
  background: rgba(191, 162, 242, 0.1); padding: 4px 14px;
  border-radius: 100px; margin-bottom: 12px;
}
.benefit-card__title {
  font-family: var(--font-serif); font-size: 17px;
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 14px; line-height: 1.7; text-align: center;
}
.benefit-card__text {
  font-size: 14.5px; color: var(--text-body);
  line-height: 2.2; text-align: center;
}

/* --- 比較表 --- */
.comparison-list { text-align: left; margin: 24px 0; }
.comparison-item {
  background: var(--white); border-radius: 12px;
  padding: 20px; margin-bottom: 14px;
  border: 1px solid rgba(191, 162, 242, 0.12);
}
.comparison-item__name {
  font-family: var(--font-serif); font-size: 16px;
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 10px; text-align: center;
}
.comparison-item__list {
  list-style: none; padding: 0;
}
.comparison-item__list li {
  font-size: 13.5px; color: var(--text-body);
  line-height: 2; padding-left: 18px; position: relative;
}
.comparison-item__list li::before {
  content: '✦'; position: absolute; left: 0;
  color: var(--purple-mid); font-size: 10px; top: 2px;
}

/* --- ステップ（タイムライン形式） --- */
.steps {
  margin: 32px 0;
  position: relative;
  padding-left: 8px;
}
.steps::before {
  content: '';
  position: absolute;
  top: 24px;
  bottom: 40px;
  left: 26px; /* padding 8px + 36px/2 */
  width: 1px;
  border-left: 1px dashed rgba(191, 162, 242, 0.6);
}
.step-item {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 0 0 32px 0;
  text-align: left;
  position: relative;
  z-index: 1;
}
.step-item:last-child { padding-bottom: 0; }
.step-item__number {
  flex-shrink: 0; width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--purple-mid), var(--purple-deep));
  color: var(--white); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 14px; font-weight: 600;
  box-shadow: 0 0 0 6px var(--bg-silver); /* 背景色と同じ色で線を隠す */
  font-family: var(--font-sans);
}
.step-item__content { flex: 1; padding-top: 6px; }
.step-item__title {
  font-weight: 700; color: var(--purple-deep);
  margin-bottom: 8px; font-size: 15px;
  line-height: 1.4;
}
.step-item__text {
  font-size: 14px; color: var(--text-body); line-height: 2;
}

/* --- FAQ --- */
.faq-list { margin: 32px 0; text-align: left; }
.faq-item {
  background: var(--white); border-radius: 12px;
  margin-bottom: 12px; overflow: hidden;
  border: 1px solid rgba(191, 162, 242, 0.12);
}
.faq-question {
  width: 100%; padding: 18px 20px; border: none;
  background: transparent; cursor: pointer;
  display: flex; align-items: center; justify-content: space-between; gap: 12px;
  font-family: var(--font-sans); font-size: 14.5px;
  font-weight: 600; color: var(--text-dark);
  line-height: 1.7; text-align: left;
}
.faq-question::after {
  content: '+'; flex-shrink: 0; font-size: 20px;
  color: var(--purple-mid); transition: transform 0.3s ease;
}
.faq-item.open .faq-question::after { content: '−'; }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease;
}
.faq-answer__inner {
  padding: 0 20px 20px;
  font-size: 14px; color: var(--text-body); line-height: 2.1;
}

/* --- 口コミ --- */
.voice-card {
  background: var(--white); border-radius: var(--radius);
  padding: 28px 24px; margin-bottom: 20px;
  border: 1px solid rgba(191, 162, 242, 0.12);
  box-shadow: var(--shadow-soft); text-align: left;
}
.voice-card__title {
  font-family: var(--font-serif); font-size: 15px;
  font-weight: 600; color: var(--text-dark);
  margin-bottom: 14px; line-height: 1.8;
}
.voice-card__text {
  font-size: 14px; color: var(--text-body); line-height: 2.2;
}
.voice-notice {
  font-size: 12.5px; color: var(--text-light);
  line-height: 2; margin-bottom: 24px;
  padding: 16px; background: var(--bg-silver);
  border-radius: 12px; text-align: left;
}

/* --- 注意事項 --- */
.policy-box {
  background: var(--bg-silver); border-radius: var(--radius);
  padding: 24px 20px; text-align: left;
}
.policy-box p {
  font-size: 14px; color: var(--text-body);
  line-height: 2.2; margin-bottom: 48px;
}
.policy-box p:last-child { margin-bottom: 0; }

/* --- Signature --- */
.signature { text-align: center; padding: 48px 24px 64px; }
.signature__closing {
  font-family: var(--font-serif); font-size: 15px;
  color: var(--text-mid); line-height: 2.4; margin-bottom: 48px;
}
.signature__line {
  display: block; width: 40px; height: 1px;
  background: linear-gradient(90deg, transparent, var(--purple-light), transparent);
  margin: 0 auto 24px;
}
.signature__title { font-size: 13px; color: var(--text-light); letter-spacing: 0.12em; margin-bottom: 8px; }
.signature__name {
  font-family: var(--font-serif); font-size: 22px; font-weight: 500;
  color: var(--text-dark); letter-spacing: 0.15em;
}

/* --- FV Info Box --- */
.fv-info {
  background: linear-gradient(135deg, rgba(246, 238, 255, 0.8), rgba(255, 249, 252, 0.9));
  border: 1px solid rgba(191, 162, 242, 0.2);
  border-radius: var(--radius); padding: 20px; margin: 24px 0;
}
.fv-info__row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 8px 0; border-bottom: 1px solid rgba(191, 162, 242, 0.1);
  font-size: 14px;
}
.fv-info__row:last-child { border-bottom: none; }
.fv-info__label { color: var(--text-light); font-size: 12px; letter-spacing: 0.06em; }
.fv-info__value { color: var(--text-dark); font-weight: 600; font-size: 14px; }

/* --- ボルドー赤強調 --- */
.strong-red {
  color: #8B1A2B;
  font-weight: 700;
  font-size: 1.05em;
}

/* --- プルクォート --- */
.pull-quote {
  font-family: var(--font-serif);
  font-size: 19px;
  font-weight: 600;
  color: var(--text-dark);
  text-align: center;
  line-height: 2.2;
  margin: 48px 0;
  padding: 32px 20px;
  border-top: 1px solid rgba(191, 162, 242, 0.3);
  border-bottom: 1px solid rgba(191, 162, 242, 0.3);
  letter-spacing: 0.06em;
}

/* --- セクション画像 --- */
.section-image {
  margin: 0 -8px 32px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.section-image img {
  width: 100%;
  height: auto;
  display: block;
}
.section-image--full {
  margin: 0 -24px 32px;
  border-radius: 0;
  box-shadow: none;
}

/* --- Animations --- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-in {
  opacity: 1; transform: translateY(0);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.js-loaded .animate-in {
  opacity: 0; transform: translateY(24px);
}

/* --- 特典画像 --- */
.benefit-card__image {
  margin: 16px -8px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
}
.benefit-card__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* --- 価格一覧の商品画像 --- */
.price-table-item__image-wrap {
  width: 90px;
  height: 90px;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid rgba(191, 162, 242, 0.3);
  box-shadow: var(--shadow-soft);
  transform: translateZ(0); /* LINEブラウザ（WebView）の border-radius バグ対策 */
  -webkit-mask-image: -webkit-radial-gradient(white, black);
}
.price-table-item__image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.js-loaded .animate-in.visible { opacity: 1; transform: translateY(0); }

/* --- Scrollbar --- */
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-main); }
::-webkit-scrollbar-thumb { background: var(--purple-light); border-radius: 4px; }

/* --- Responsive --- */
@media (min-width: 481px) {
  .page-wrapper { max-width: 520px; }
  .section { padding: 64px 32px; }
  .firstview__title { font-size: 26px; }
  .section-heading__title { font-size: 23px; }
  .body-text { font-size: 16px; }
}
@media (min-width: 768px) {
  .page-wrapper { max-width: 600px; }
  .body-text { font-size: 16.5px; }
}
