@charset "UTF-8";
/* ============================================================
 * June Bride Special Fair - Stylesheet
 * URL: /celebration/june-bride-fair
 * 常設URL運用
 * ============================================================ */

:root {
  /* --- Color Palette --- */
  --jb-bg: #fbf8f3;
  --jb-bg-deep: #f5efe4;
  --jb-cream: #fdfbf7;
  --jb-ink: #3a2f24;
  --jb-ink-soft: #6a5a48;
  --jb-gold: #c9ad7c;
  --jb-gold-deep: #a08555;
  /* メインアクセント:ティファニーブルー系 */
  --jb-accent: #5fc6c0;
  --jb-accent-deep: #2fa8a1;
  --jb-accent-soft: #a8e0dd;
  --jb-accent-pale: #e6f5f4;
  --jb-line: rgba(201, 173, 124, 0.3);

  /* --- Typography --- */
  --jb-font-en: 'Cormorant Garamond', 'Times New Roman', serif;
  --jb-font-ja: 'Shippori Mincho', 'Yu Mincho', 'YuMincho', 'Hiragino Mincho ProN', serif;

  /* --- Layout --- */
  --jb-max: 1180px;
  --jb-pad-x: clamp(20px, 5vw, 80px);
}

/* Webフォント読み込み */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Shippori+Mincho:wght@400;500;600;700&display=swap');

/* ============================================================
 * Base
 * ============================================================ */
.jb-page {
  background: var(--jb-bg);
  color: var(--jb-ink);
  font-family: var(--jb-font-ja);
  font-feature-settings: "palt";
  line-height: 1.85;
  letter-spacing: 0.04em;
  overflow-x: hidden;
}

.jb-page * {
  box-sizing: border-box;
}

.jb-only-pc { display: inline; }
.jb-only-mobile { display: none; }

@media (max-width: 768px) {
  .jb-only-pc { display: none; }
  .jb-only-mobile { display: inline; }
}

/* ============================================================
 * 共通セクション
 * ============================================================ */
.jb-section {
  padding: 140px var(--jb-pad-x);
}

.jb-section__inner {
  max-width: var(--jb-max);
  margin: 0 auto;
}

.jb-section__head {
  margin-bottom: 80px;
}

.jb-section__head--center {
  text-align: center;
}

.jb-section__sub {
  display: block;
  font-family: var(--jb-font-en);
  font-style: italic;
  font-weight: 400;
  font-size: 16px;
  letter-spacing: 0.3em;
  color: var(--jb-gold-deep);
  margin: 0 0 16px;
}

.jb-section__title {
  font-family: var(--jb-font-ja);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: var(--jb-ink);
  margin: 0 0 20px;
}

.jb-section__desc {
  font-size: 14px;
  line-height: 2;
  color: var(--jb-ink-soft);
  margin: 24px 0 0;
}

.jb-section__head--light .jb-section__sub { color: var(--jb-accent-deep); }
.jb-section__head--light .jb-section__title { color: var(--jb-cream); }

/* ============================================================
 * HERO
 * ============================================================ */
.jb-hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px var(--jb-pad-x);
  background: linear-gradient(180deg, #f5eee2 0%, #faf7f2 100%);
  overflow: hidden;
}

.jb-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

/* 雨のアニメーション */
.jb-hero__rain {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(to bottom, transparent 0%, rgba(95, 198, 192, 0.18) 50%, transparent 100%);
  background-size: 1px 80px;
  background-repeat: repeat;
  opacity: 0.45;
  animation: jb-rain 3s linear infinite;
}

@keyframes jb-rain {
  0% { background-position-y: 0; }
  100% { background-position-y: 80px; }
}

/* ベール風グラデーション */
.jb-hero__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(201, 173, 124, 0.14) 0%, transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(168, 224, 221, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 50% 50%, rgba(253, 251, 247, 0.4) 0%, transparent 70%);
}

.jb-hero__inner {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.jb-hero__eyebrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
  animation: jb-fade-in 1.2s ease 0.2s both;
}

.jb-hero__line {
  display: block;
  width: 60px;
  height: 1px;
  background: var(--jb-gold);
}

.jb-hero__eyebrow-text {
  font-family: var(--jb-font-en);
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.4em;
  color: var(--jb-gold-deep);
}

.jb-hero__title {
  display: flex;
  flex-direction: column;
  gap: 24px;
  margin: 0 0 48px;
  animation: jb-fade-up 1.4s ease 0.5s both;
}

.jb-hero__title-en {
  font-family: var(--jb-font-en);
  font-style: italic;
  font-weight: 300;
  font-size: clamp(56px, 9vw, 120px);
  line-height: 1;
  color: var(--jb-ink);
  letter-spacing: 0.01em;
}

.jb-hero__title-ja {
  font-family: var(--jb-font-ja);
  font-weight: 500;
  font-size: clamp(18px, 2.4vw, 28px);
  letter-spacing: 0.6em;
  color: var(--jb-gold-deep);
  text-indent: 0.6em;
}

.jb-hero__lead {
  font-size: clamp(14px, 1.6vw, 17px);
  line-height: 2.4;
  color: var(--jb-ink-soft);
  margin: 0 0 80px;
  animation: jb-fade-up 1.4s ease 0.8s both;
}

.jb-hero__scroll {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-family: var(--jb-font-en);
  font-size: 11px;
  letter-spacing: 0.4em;
  color: var(--jb-gold-deep);
  animation: jb-fade-in 1.4s ease 1.5s both;
}

.jb-hero__scroll-line {
  display: block;
  width: 1px;
  height: 50px;
  background: linear-gradient(to bottom, var(--jb-gold) 30%, transparent);
  animation: jb-scroll-line 2s ease-in-out infinite;
}

@keyframes jb-scroll-line {
  0%, 100% { transform: scaleY(1); transform-origin: top; }
  50% { transform: scaleY(0.4); transform-origin: top; }
}

@keyframes jb-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes jb-fade-up {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================================
 * ABOUT - 言い伝え
 * ============================================================ */
.jb-about {
  background: var(--jb-cream);
  text-align: center;
  position: relative;
}

.jb-about::before,
.jb-about::after {
  content: '';
  position: absolute;
  left: 50%;
  width: 1px;
  height: 60px;
  background: var(--jb-gold);
  transform: translateX(-50%);
}

.jb-about::before { top: 0; }
.jb-about::after { bottom: 0; }

.jb-about .jb-section__inner {
  max-width: 720px;
}

.jb-about__symbol {
  width: 60px;
  height: 60px;
  margin: 0 auto 40px;
  color: var(--jb-gold);
}

.jb-about__symbol svg {
  width: 100%;
  height: 100%;
}

.jb-about__title {
  font-family: var(--jb-font-ja);
  font-weight: 500;
  font-size: clamp(22px, 3.2vw, 36px);
  line-height: 1.8;
  letter-spacing: 0.12em;
  margin: 0 0 50px;
  color: var(--jb-ink);
}

.jb-about__title-sub {
  display: block;
  font-family: var(--jb-font-en);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.3em;
  color: var(--jb-gold-deep);
  margin-bottom: 24px;
}

.jb-about__text {
  font-size: 15px;
  line-height: 2.2;
  color: var(--jb-ink-soft);
}

.jb-about__text p {
  margin: 0 0 24px;
}

.jb-about__text em {
  font-family: var(--jb-font-en);
  font-style: italic;
  font-weight: 500;
  color: var(--jb-accent-deep);
  letter-spacing: 0.08em;
  padding: 0 4px;
}

/* ============================================================
 * FEATURE - フェア限定の特別なお祝い
 * ============================================================ */
.jb-feature {
  background: var(--jb-bg);
}

/* ステートメント型(1カラム) */
.jb-feature__statement {
  max-width: 680px;
  margin: 0 auto;
  padding: 80px 48px;
  background: var(--jb-cream);
  border: 1px solid var(--jb-line);
  text-align: center;
  position: relative;
}

.jb-feature__statement::before,
.jb-feature__statement::after {
  content: '';
  position: absolute;
  width: 40px;
  height: 40px;
}

.jb-feature__statement::before {
  top: -1px;
  left: -1px;
  border-top: 1px solid var(--jb-gold);
  border-left: 1px solid var(--jb-gold);
}

.jb-feature__statement::after {
  bottom: -1px;
  right: -1px;
  border-bottom: 1px solid var(--jb-gold);
  border-right: 1px solid var(--jb-gold);
}

.jb-feature__statement-lead {
  font-family: var(--jb-font-ja);
  font-size: 15px;
  line-height: 2.4;
  letter-spacing: 0.1em;
  color: var(--jb-ink);
  margin: 0;
}

.jb-feature__statement-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 40px auto;
  width: 120px;
  height: 1px;
  background: var(--jb-gold);
  position: relative;
}

.jb-feature__statement-dot {
  display: block;
  width: 8px;
  height: 8px;
  background: var(--jb-accent);
  border-radius: 50%;
  position: relative;
}

.jb-feature__statement-dot::before,
.jb-feature__statement-dot::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 4px;
  height: 4px;
  background: var(--jb-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.jb-feature__statement-dot::before { left: -16px; }
.jb-feature__statement-dot::after { right: -16px; }

.jb-feature__statement-note {
  font-family: var(--jb-font-ja);
  font-size: 12px;
  line-height: 2;
  letter-spacing: 0.06em;
  color: var(--jb-ink-soft);
  margin: 0;
  text-align: left;
  display: inline-block;
}

/* ============================================================
 * PRODUCTS - フェア対象商品(システム排出ブロック)
 * ============================================================ */
.jb-products {
  background: var(--jb-bg-deep);
  position: relative;
}

.jb-products::before {
  content: '';
  position: absolute;
  top: 60px;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 1px;
  background: var(--jb-gold);
}

/* システム排出ブロックのラッパー */
.jb-products__list {
  margin-top: 20px;
}

/* システム側で .row.append_scroll_data に商品が出力されるため、
   ここでは余白の調整のみ。商品カード自体のスタイルは
   既存のシステム排出CSSをそのまま使用します。 */
.jb-products__list .row.append_scroll_data {
  margin-left: 0;
  margin-right: 0;
}

/* ------------------------------------------------------------
 * 商品カードのフェア専用上書き
 * 共通CSSの色味をジューンブライドフェア用に調整
 * ------------------------------------------------------------ */

/* 商品カードの余白を整える */
.jb-products .shopitem-box {
  padding: 0 12px;
  margin-bottom: 48px;
}

/* 商品名 */
.jb-products .shopitem-box .name {
  font-family: var(--jb-font-ja);
  font-weight: 500;
  font-size: 15px;
  letter-spacing: 0.06em;
  color: var(--jb-ink);
  line-height: 1.7;
}

/* 価格 */
.jb-products .shopitem-box .price-half,
.jb-products .shopitem-box .price1 {
  font-family: var(--jb-font-ja);
  color: var(--jb-ink);
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* 送料・文字料金テキストのリンクカラーを解除 */
.jb-products .shopitem-box .tax_postage,
.jb-products .shopitem-box a .tax_postage,
.jb-products .shopitem-box .product-link-wrapper .tax_postage {
  color: var(--jb-ink-soft) !important;
  text-decoration: none !important;
  font-size: 12px;
  letter-spacing: 0.04em;
}

/* 商品説明 */
.jb-products .shopitem-box .product_description {
  font-size: 13px;
  color: var(--jb-ink-soft);
  line-height: 1.8;
  letter-spacing: 0.04em;
  margin-top: 8px;
  margin-bottom: 16px;
  padding: 0 4px;
}

/* 商品リンク領域のアンカー装飾を解除 */
.jb-products .shopitem-box .product-link-wrapper,
.jb-products .shopitem-box .product-link-wrapper:hover {
  text-decoration: none;
  color: inherit;
}

/* 画像枠の調整 */
.jb-products .shopitem-box .img-item {
  overflow: hidden;
  background: var(--jb-cream);
}

.jb-products .shopitem-box .img-item img {
  transition: transform 0.6s ease;
  width: 100%;
  height: auto;
}

.jb-products .shopitem-box:hover .img-item img {
  transform: scale(1.05);
}

/* 「詳しく見る」ボタンを白からティファニーブルーに上書き */
.jb-products .btn-product-detail,
.jb-products .next-button,
.jb-products .sub-button,
.jb-products .btn-submit-add-to-cart,
.jb-products .shopitem-box .btn-product-detail,
.jb-products .shopitem-box .next-button {
  background-color: var(--jb-accent-deep) !important;
  background: var(--jb-accent-deep) !important;
  color: var(--jb-cream) !important;
  border: 1px solid var(--jb-accent-deep) !important;
  font-family: var(--jb-font-ja);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.15em;
  padding: 12px 28px;
  text-decoration: none !important;
  transition: all 0.35s ease;
  display: inline-block;
  border-radius: 0;
}

.jb-products .btn-product-detail:hover,
.jb-products .next-button:hover,
.jb-products .shopitem-box .btn-product-detail:hover,
.jb-products .shopitem-box .next-button:hover {
  background-color: var(--jb-gold-deep) !important;
  background: var(--jb-gold-deep) !important;
  border-color: var(--jb-gold-deep) !important;
  color: var(--jb-cream) !important;
}

/* カートボタンコンテナの中央寄せ */
.jb-products .cart-button-container {
  text-align: center;
  margin-top: 8px;
}

/* セール表示エリアの余白調整(空の場合に詰める) */
.jb-products .fix-height-when-sale-wrap:empty,
.jb-products .arrow-wrap:empty {
  display: none;
}

/* レスポンシブ:タブレット以下で2列、スマホで1列 */
@media (max-width: 900px) {
  .jb-products .shopitem-box {
    margin-bottom: 36px;
  }
}

/* ------------------------------------------------------------
 * 商品一覧下の「もっと見る」リンク
 * ------------------------------------------------------------ */
.jb-products__more {
  margin-top: 60px;
  padding-top: 50px;
  border-top: 1px solid var(--jb-line);
  text-align: center;
}

.jb-products__more-text {
  font-family: var(--jb-font-ja);
  font-size: 14px;
  letter-spacing: 0.08em;
  color: var(--jb-ink-soft);
  margin: 0 0 24px;
  line-height: 1.9;
}

.jb-products__more-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 32px;
  font-family: var(--jb-font-ja);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--jb-accent-deep);
  background: transparent;
  border: 1px solid var(--jb-accent-deep);
  text-decoration: none;
  transition: all 0.35s ease;
}

.jb-products__more-link:hover {
  background: var(--jb-accent-deep);
  color: var(--jb-cream);
  text-decoration: none;
}

.jb-products__more-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.35s ease;
}

.jb-products__more-link:hover svg {
  transform: translateX(4px);
}

/* ============================================================
 * RELATED - 関連カテゴリ
 * ============================================================ */
.jb-related {
  background: var(--jb-bg);
}

.jb-related__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 32px;
  max-width: 880px;
  margin: 0 auto;
}

.jb-related__card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 48px 40px;
  background: var(--jb-cream);
  border: 1px solid var(--jb-line);
  text-decoration: none;
  color: var(--jb-ink);
  position: relative;
  transition: transform 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  overflow: hidden;
}

.jb-related__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--jb-accent) 0%, var(--jb-gold) 100%);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
}

.jb-related__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(47, 168, 161, 0.2);
  border-color: var(--jb-accent-soft);
  text-decoration: none;
  color: var(--jb-ink);
}

.jb-related__card:hover::before {
  transform: scaleX(1);
}

.jb-related__card-sub {
  display: block;
  font-family: var(--jb-font-en);
  font-style: italic;
  font-weight: 400;
  font-size: 14px;
  letter-spacing: 0.25em;
  color: var(--jb-accent-deep);
  margin-bottom: 12px;
}

.jb-related__card-title {
  display: block;
  font-family: var(--jb-font-ja);
  font-weight: 500;
  font-size: 22px;
  letter-spacing: 0.1em;
  color: var(--jb-ink);
  margin-bottom: 16px;
  line-height: 1.5;
}

.jb-related__card-desc {
  display: block;
  font-family: var(--jb-font-ja);
  font-size: 13px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  color: var(--jb-ink-soft);
  margin-bottom: 32px;
}

.jb-related__card-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border: 1px solid var(--jb-accent-deep);
  color: var(--jb-accent-deep);
  border-radius: 50%;
  transition: all 0.35s ease;
  margin-top: auto;
}

.jb-related__card:hover .jb-related__card-arrow {
  background: var(--jb-accent-deep);
  color: var(--jb-cream);
  transform: translateX(4px);
}

.jb-related__card-arrow svg {
  width: 16px;
  height: 16px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .jb-related__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .jb-related__card {
    padding: 40px 32px;
  }

  .jb-products__more {
    margin-top: 40px;
    padding-top: 36px;
  }
}

/* ============================================================
 * VOICE - お客様の声
 * ============================================================ */
.jb-voice {
  background: linear-gradient(135deg, var(--jb-accent-pale) 0%, #f0faf9 50%, var(--jb-accent-pale) 100%);
  position: relative;
  overflow: hidden;
}

.jb-voice::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--jb-accent), transparent);
}

.jb-voice::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--jb-accent), transparent);
}

.jb-voice .jb-section__inner {
  position: relative;
}

/* 明るい背景に変えたのでセクションヘッダーの light モディファイアも調整 */
.jb-voice .jb-section__head--light .jb-section__sub {
  color: var(--jb-accent-deep);
}

.jb-voice .jb-section__head--light .jb-section__title {
  color: var(--jb-ink);
}

.jb-voice__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.jb-voice__card {
  margin: 0;
  padding: 48px 32px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--jb-accent-soft);
  position: relative;
  backdrop-filter: blur(10px);
  transition: transform 0.5s ease, box-shadow 0.5s ease;
}

.jb-voice__card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px -20px rgba(47, 168, 161, 0.25);
}

.jb-voice__card::before {
  content: '"';
  position: absolute;
  top: 12px;
  left: 24px;
  font-family: var(--jb-font-en);
  font-size: 80px;
  line-height: 1;
  color: var(--jb-accent);
  opacity: 0.5;
}

.jb-voice__quote {
  font-family: var(--jb-font-ja);
  font-size: 14px;
  line-height: 2.1;
  letter-spacing: 0.06em;
  color: var(--jb-ink);
  margin: 24px 0 32px;
  position: relative;
  z-index: 1;
}

.jb-voice__author {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 20px;
  border-top: 1px solid var(--jb-accent-soft);
}

.jb-voice__author-name {
  font-family: var(--jb-font-en);
  font-style: italic;
  font-size: 14px;
  color: var(--jb-accent-deep);
  letter-spacing: 0.08em;
}

.jb-voice__author-rel {
  font-size: 12px;
  color: var(--jb-ink-soft);
}

/* ============================================================
 * FAQ
 * ============================================================ */
.jb-faq {
  background: var(--jb-cream);
}

.jb-faq .jb-section__inner {
  max-width: 880px;
}

.jb-faq__list {
  margin: 0;
  padding: 0;
}

.jb-faq__item {
  border-top: 1px solid var(--jb-line);
  padding: 0;
}

.jb-faq__item:last-child {
  border-bottom: 1px solid var(--jb-line);
}

.jb-faq__q {
  position: relative;
  padding: 28px 56px 28px 56px;
  font-family: var(--jb-font-ja);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.8;
  letter-spacing: 0.06em;
  color: var(--jb-ink);
  cursor: pointer;
  list-style: none;
  transition: color 0.3s ease;
}

.jb-faq__q::-webkit-details-marker {
  display: none;
}

.jb-faq__q::before {
  content: 'Q';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jb-font-en);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--jb-gold-deep);
  border: 1px solid var(--jb-gold);
  border-radius: 50%;
}

.jb-faq__q::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 8px;
  width: 14px;
  height: 14px;
  border-right: 1px solid var(--jb-gold-deep);
  border-bottom: 1px solid var(--jb-gold-deep);
  transform: translateY(-75%) rotate(45deg);
  transition: transform 0.3s ease;
}

.jb-faq__item[open] .jb-faq__q::after {
  transform: translateY(-25%) rotate(-135deg);
}

.jb-faq__q:hover {
  color: var(--jb-accent-deep);
}

.jb-faq__a {
  position: relative;
  padding: 4px 56px 28px 56px;
  font-size: 14px;
  line-height: 2;
  color: var(--jb-ink-soft);
}

.jb-faq__a::before {
  content: 'A';
  position: absolute;
  top: 0;
  left: 0;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--jb-font-en);
  font-style: italic;
  font-size: 18px;
  font-weight: 500;
  color: var(--jb-cream);
  background: var(--jb-accent-deep);
  border: 1px solid var(--jb-accent-deep);
  border-radius: 50%;
}

/* ============================================================
 * CTA
 * ============================================================ */
.jb-cta {
  padding: 140px var(--jb-pad-x);
  background: var(--jb-bg);
  text-align: center;
  position: relative;
}

.jb-cta__inner {
  max-width: 720px;
  margin: 0 auto;
  position: relative;
}

.jb-cta__ornament {
  width: 80px;
  height: 1px;
  background: var(--jb-gold);
  margin: 0 auto 40px;
  position: relative;
}

.jb-cta__ornament::before,
.jb-cta__ornament::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 6px;
  height: 6px;
  background: var(--jb-gold);
  border-radius: 50%;
  transform: translateY(-50%);
}

.jb-cta__ornament::before { left: -3px; }
.jb-cta__ornament::after { right: -3px; }

.jb-cta__sub {
  display: block;
  font-family: var(--jb-font-en);
  font-style: italic;
  font-size: 16px;
  letter-spacing: 0.15em;
  color: var(--jb-gold-deep);
  margin: 0 0 24px;
}

.jb-cta__title {
  font-family: var(--jb-font-ja);
  font-weight: 500;
  font-size: clamp(28px, 4vw, 42px);
  line-height: 1.6;
  letter-spacing: 0.1em;
  margin: 0 0 56px;
  color: var(--jb-ink);
}

.jb-cta__btn {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  padding: 22px 56px;
  background: var(--jb-accent-deep);
  color: var(--jb-cream);
  font-family: var(--jb-font-ja);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-decoration: none;
  border: 1px solid var(--jb-accent-deep);
  transition: all 0.4s ease;
  position: relative;
  overflow: hidden;
}

.jb-cta__btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--jb-gold-deep);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s ease;
  z-index: 0;
}

.jb-cta__btn:hover::before {
  transform: scaleX(1);
}

.jb-cta__btn:hover {
  color: var(--jb-cream);
  text-decoration: none;
}

.jb-cta__btn span,
.jb-cta__btn svg {
  position: relative;
  z-index: 1;
}

.jb-cta__btn svg {
  width: 20px;
  height: 20px;
  transition: transform 0.4s ease;
}

.jb-cta__btn:hover svg {
  transform: translateX(6px);
}

/* ============================================================
 * Responsive - Tablet
 * ============================================================ */
@media (max-width: 900px) {
  .jb-section,
  .jb-cta {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  .jb-section__head {
    margin-bottom: 60px;
  }

  .jb-feature__statement {
    padding: 60px 32px;
  }

  .jb-voice__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

/* ============================================================
 * Responsive - Mobile
 * ============================================================ */
@media (max-width: 560px) {
  .jb-hero {
    min-height: 80vh;
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .jb-hero__lead {
    margin-bottom: 50px;
    line-height: 2.2;
  }

  .jb-feature__statement {
    padding: 48px 24px;
  }

  .jb-feature__statement-lead {
    font-size: 14px;
    line-height: 2.2;
  }

  .jb-faq__q,
  .jb-faq__a {
    padding-left: 48px;
    padding-right: 48px;
    font-size: 14px;
  }

  .jb-faq__q::before,
  .jb-faq__a::before {
    width: 28px;
    height: 28px;
    font-size: 15px;
  }

  .jb-cta__btn {
    padding: 20px 40px;
    font-size: 14px;
  }
}

/* ============================================================
 * Accessibility - 動きを減らす設定
 * ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .jb-hero__rain,
  .jb-hero__scroll-line,
  .jb-hero__eyebrow,
  .jb-hero__title,
  .jb-hero__lead,
  .jb-hero__scroll {
    animation: none;
  }

  .jb-feature__statement,
  .jb-cta__btn,
  .jb-cta__btn::before,
  .jb-cta__btn svg,
  .jb-faq__q,
  .jb-faq__q::after {
    transition: none;
  }
}
