@charset "UTF-8";

/* ============================================================
   le rêve Brillant Queen - Landing Page
   Design tokens
   ============================================================ */
:root {
  --tiffany: #7FD1CC;
  --tiffany-deep: #4FB3AD;
  --tiffany-dark: #2E8A85;

  --gold: #D4AF37;
  --gold-light: #E8C97A;
  --gold-pale: #F5ECD2;

  --black: #1A1A1C;
  --gray-900: #2A2A2E;
  --gray-700: #5A5A60;
  --gray-500: #9A9AA0;
  --gray-300: #D5D5D8;
  --gray-100: #F2F2F4;
  --white: #ffffff;

  --serif: "Zen Old Mincho", "Shippori Mincho", "Hiragino Mincho ProN", "Yu Mincho", serif;
  --serif-en: "Bodoni Moda", "Playfair Display", "Times New Roman", serif;
  --sans-geo: "Futura", "Century Gothic", "Helvetica Neue", "Zen Old Mincho", sans-serif;
  --sans: "Zen Old Mincho", "Shippori Mincho", "Hiragino Sans", "Yu Gothic", sans-serif;
  /* 現行サイトのボタン用フォント（変更しない） */
  --btn-font: "Shippori Mincho B1", "Hiragino Mincho ProN", "Yu Mincho", serif;

  --wrap: 1120px;
  --pad: 24px;
  --header-h: 60px;
}

/* ============================================================
   Reset / Base
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
  margin: 0;
  font-family: var(--sans);
  font-weight: 400;
  font-size: 15px;
  line-height: 1.9;
  letter-spacing: .03em;
  color: var(--black);
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
h1, h2, h3, p, ul, ol, figure, blockquote { margin: 0; padding: 0; }
ul, ol { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
em { font-style: normal; }

.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--pad); }
.wrap--narrow { max-width: 780px; }

.sp-only { display: inline; }
.pc-only { display: none; }
@media (min-width: 768px) {
  .sp-only { display: none; }
  .pc-only { display: inline; }
}

/* ============================================================
   Common headings
   ============================================================ */
.sec-ttl {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(22px, 5.6vw, 34px);
  line-height: 1.6;
  letter-spacing: .04em;
  text-align: center;
}
.sec-sub {
  margin-top: 12px;
  text-align: center;
  font-family: var(--sans-geo);
  font-size: 10.5px;
  letter-spacing: .2em;
  color: var(--gray-500);
}
@media (min-width: 768px) { .sec-sub { font-size: 12px; } }

/* ============================================================
   Buttons（フォントは現行サイトのものを維持）
   ============================================================ */
.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .6em;
  width: min(100%, 340px);
  min-height: 60px;
  padding: 12px 28px;
  border-radius: 999px;
  font-family: var(--btn-font);
  font-weight: 600;
  font-size: 16px;
  letter-spacing: .08em;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease, filter .3s ease;
}
.btn span { position: relative; }
.btn span::before {
  content: "▶";
  margin-right: .6em;
  font-size: .6em;
  vertical-align: 1px;
}
.btn:hover { transform: translateY(-2px); filter: brightness(1.05); }
.btn:active { transform: translateY(0); }

.btn--gold {
  color: var(--black);
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  box-shadow: 0 10px 28px rgba(212, 175, 55, .38);
}
.btn--white {
  color: var(--black);
  background: #fff;
  box-shadow: 0 12px 30px rgba(0, 0, 0, .18);
}
.btn--sm { min-height: 48px; font-size: 13.5px; padding: 10px 20px; width: auto; }

/* ============================================================
   Header
   ============================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  height: var(--header-h);
  background: rgba(26, 26, 28, .55);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(212, 175, 55, .3);
  transition: background .4s ease;
}
.site-header.is-solid { background: rgba(26, 26, 28, .92); }
.site-header__inner {
  height: 100%;
  max-width: var(--wrap);
  margin-inline: auto;
  padding-inline: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header__logo { display: flex; align-items: center; }
.site-header__logo img { width: 110px; height: auto; }
@media (min-width: 768px) { .site-header__logo img { width: 130px; } }
.site-header__menu {
  width: 26px; height: 20px;
  display: flex; flex-direction: column; justify-content: space-between;
  padding: 0;
}
@media (min-width: 768px) { .site-header__menu { display: none; } }
.site-header__menu span { display: block; height: 1.5px; background: var(--gold-light); transition: transform .3s ease, opacity .3s ease; }
.site-header__menu.is-active span:nth-child(1) { transform: translateY(9px) rotate(45deg); }
.site-header__menu.is-active span:nth-child(2) { opacity: 0; }
.site-header__menu.is-active span:nth-child(3) { transform: translateY(-9px) rotate(-45deg); }

body.nav-open { overflow: hidden; }

/* ============================================================
   Nav drawer
   ============================================================ */
.nav-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  visibility: hidden;
  pointer-events: none;
}
.nav-drawer.is-open { visibility: visible; pointer-events: auto; }
@media (min-width: 768px) { .nav-drawer { display: none; } }
.nav-drawer__veil {
  position: absolute; inset: 0;
  background: rgba(0, 0, 0, .5);
  opacity: 0;
  transition: opacity .35s ease;
}
.nav-drawer.is-open .nav-drawer__veil { opacity: 1; }
.nav-drawer__panel {
  position: absolute;
  top: 0; right: 0; bottom: 0;
  width: min(78vw, 340px);
  background: rgba(26, 26, 28, .97);
  border-left: 1px solid rgba(212, 175, 55, .3);
  padding: calc(var(--header-h) + 20px) 28px 32px;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform .4s cubic-bezier(.2, .8, .3, 1);
}
.nav-drawer.is-open .nav-drawer__panel { transform: translateX(0); }
.nav-drawer__brand img { width: 120px; height: auto; }
.nav-drawer__list { margin-top: 40px; display: flex; flex-direction: column; gap: 26px; }
.nav-drawer__list a {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-family: var(--serif-en);
  font-size: 20px;
  letter-spacing: .06em;
  color: #fff;
}
.nav-drawer__list a span {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: .08em;
  color: var(--gray-500);
}
.nav-drawer__cta { margin-top: auto; width: 100%; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: calc(var(--header-h) + 24px) var(--pad) 88px;
  overflow: hidden;
  isolation: isolate;
  text-align: center;
  background: var(--black);
}
@media (min-width: 768px) { .hero { align-items: center; justify-content: flex-start; text-align: left; padding-bottom: 60px; } }

.hero__bg { position: absolute; top: var(--header-h); left: 0; right: 0; bottom: 0; z-index: -3; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero__veil {
  position: absolute; inset: 0; z-index: -2;
  background: linear-gradient(180deg, rgba(0,0,0,.05) 0%, rgba(0,0,0,0) 40%, rgba(0,0,0,.62) 82%, rgba(0,0,0,.85) 100%);
}
@media (min-width: 768px) {
  .hero__veil { background: linear-gradient(90deg, rgba(0,0,0,.68) 0%, rgba(0,0,0,.36) 42%, rgba(0,0,0,0) 72%); }
}
.hero__sparkle {
  position: absolute; inset: 0; z-index: -1;
  background-image:
    radial-gradient(2px 2px at 12% 22%, rgba(255,255,255,.9), transparent 60%),
    radial-gradient(1.6px 1.6px at 78% 16%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(2px 2px at 88% 62%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1.4px 1.4px at 22% 72%, rgba(255,255,255,.75), transparent 60%);
  animation: twinkle 4.5s ease-in-out infinite alternate;
}
@keyframes twinkle { from { opacity: .35; } to { opacity: 1; } }

.hero__inner { width: 100%; max-width: 560px; margin-inline: auto; color: #fff; position: relative; z-index: 2; }
@media (min-width: 768px) { .hero__inner { max-width: 640px; margin-inline: 40px 0; } }

.hero__eyebrow {
  font-family: var(--sans-geo);
  font-size: 12px;
  letter-spacing: .3em;
  color: var(--gold-light);
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,.5);
}
.hero__badge {
  display: inline-block;
  margin-top: 18px;
  padding: 8px 18px;
  border: 1px solid var(--gold);
  border-radius: 30px;
  background: rgba(212, 175, 55, .22);
  backdrop-filter: blur(6px);
  color: var(--gold-light);
  font-family: var(--sans-geo);
  font-size: 10.5px;
  letter-spacing: .08em;
}
@media (min-width: 768px) { .hero__badge { font-size: 12px; padding: 9px 22px; } }

.hero__copy {
  margin-top: 26px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(28px, 8.4vw, 42px);
  line-height: 1.5;
  letter-spacing: .02em;
  text-shadow: 0 4px 20px rgba(0, 0, 0, .55);
}
@media (min-width: 768px) { .hero__copy { font-size: clamp(34px, 5vw, 54px); } }
.hero__copy em {
  background: linear-gradient(135deg, #F0D97A 0%, var(--gold) 40%, #FFE9A8 70%, #B8891E 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  font-weight: 800;
  filter: drop-shadow(0 2px 10px rgba(212,175,55,.4));
}
.hero__lead {
  margin-top: 20px;
  font-family: var(--serif);
  font-size: 14.5px;
  line-height: 2;
  letter-spacing: .04em;
  color: rgba(255, 255, 255, .95);
  text-shadow: 0 2px 12px rgba(0, 0, 0, .5);
}
.hero__lead em { font-weight: 700; color: var(--gold-light); }
.hero .btn { margin-top: 30px; }
@media (min-width: 768px) {
  .hero__lead { font-size: 17px; }
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 20px;
  translate: -50% 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-family: var(--sans-geo);
  font-size: 10px;
  letter-spacing: .3em;
  color: rgba(255, 255, 255, .8);
  z-index: 2;
}
.scroll-cue i { display: block; width: 1px; height: 38px; background: linear-gradient(180deg, rgba(255,255,255,.9), transparent); animation: cue 2.2s ease-in-out infinite; transform-origin: top; }
@keyframes cue { 0%, 100% { transform: scaleY(.3); opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ============================================================
   Already joined
   ============================================================ */
.joined {
  padding: 56px 0 44px;
  background: var(--black);
  color: #fff;
  text-align: center;
}
.joined__en { font-family: var(--sans-geo); font-size: 11px; letter-spacing: .32em; color: var(--gold-light); }
.joined__title {
  margin-top: 14px;
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(18px, 4.8vw, 26px);
  line-height: 1.7;
  letter-spacing: .04em;
}
.joined__list {
  margin-top: 30px;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 4px 20px 12px;
  margin-inline: calc(var(--pad) * -1);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.joined__list::-webkit-scrollbar { height: 3px; }
.joined__list::-webkit-scrollbar-thumb { background: var(--gold); }
.joined__card {
  flex: 0 0 150px;
  scroll-snap-align: start;
  text-align: left;
  border: 1px solid var(--gray-700);
  border-radius: 6px;
  padding: 12px;
  background: var(--gray-900);
}
@media (min-width: 768px) {
  .joined__list { overflow: visible; margin-inline: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 820px; margin-inline: auto; margin-top: 36px; }
  .joined__card { flex: none; padding: 20px; }
  .joined__card--sp-extra { display: none; }
}
.joined__thumb {
  aspect-ratio: 1 / 1;
  border-radius: 3px;
  background: repeating-linear-gradient(45deg, #2E2E32, #2E2E32 6px, #38383C 6px, #38383C 12px);
  border: 1px dashed var(--gray-500);
  display: flex; align-items: center; justify-content: center;
  padding: 8px;
}
.joined__thumb span { font-size: 9.5px; line-height: 1.5; color: var(--gray-500); text-align: center; }
.joined__name { margin-top: 10px; font-size: 12px; letter-spacing: .04em; font-weight: 700; color: #fff; }
.joined__role { margin-top: 4px; font-size: 10px; line-height: 1.7; color: var(--gray-500); }
@media (min-width: 768px) {
  .joined__thumb span { font-size: 11px; }
  .joined__name { font-size: 14px; }
  .joined__role { font-size: 11.5px; }
}
.joined__note { margin-top: 10px; padding-inline: 20px; font-size: 10.5px; letter-spacing: .04em; color: var(--gray-500); text-align: left; }

/* ============================================================
   Empathy / Insta grid
   ============================================================ */
.empathy {
  padding: 72px 0 84px;
  background: linear-gradient(180deg, #ffffff 0%, #E8F5F3 50%, #ffffff 100%);
  position: relative;
  overflow: hidden;
}
.empathy::after {
  content: "♦";
  position: absolute; bottom: 6%; right: 5%;
  color: var(--tiffany);
  font-size: 40px; opacity: .15;
}
.empathy__lead {
  margin-top: 34px;
  text-align: center;
  font-family: var(--serif);
  font-size: clamp(17px, 4.6vw, 24px);
  line-height: 1.85;
  font-weight: 500;
}
.empathy__lead em {
  background: linear-gradient(transparent 62%, rgba(212, 175, 55, .38) 62%);
  font-weight: 600;
}
.insta-grid {
  margin-top: 32px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 6px;
  max-width: 640px;
  margin-inline: auto;
  padding: 12px;
  background: var(--white);
  border-radius: 12px;
  box-shadow: 0 12px 36px rgba(127, 209, 204, .25);
}
@media (min-width: 768px) { .insta-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; padding: 16px; } }
.insta-cell { position: relative; aspect-ratio: 1 / 1; overflow: hidden; border-radius: 4px; background: var(--gray-100); order: 10; }
.insta-cell:nth-child(1) { order: 10; }
.insta-cell:nth-child(2) { order: 20; }
.insta-cell:nth-child(3) { order: 30; }
.insta-cell:nth-child(4) { order: 40; }
.insta-cell:nth-child(5) { order: 35; }
.insta-cell:nth-child(6) { order: 50; }
.insta-cell:nth-child(7) { order: 60; }
.insta-cell:nth-child(8) { order: 70; }
.insta-cell:nth-child(9) { order: 80; }
@media (min-width: 768px) { .insta-cell:nth-child(5) { order: 45; } }
.insta-cell img { width: 100%; height: 100%; object-fit: cover; }
.insta-cell__meta {
  position: absolute; bottom: 5px; left: 6px;
  color: #fff; font-family: var(--serif-en);
  font-size: 10px; letter-spacing: .03em;
  text-shadow: 0 1px 4px rgba(0,0,0,.65);
}
@media (min-width: 768px) { .insta-cell__meta { font-size: 11px; } }
.insta-cell--you {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; color: #fff;
  background: linear-gradient(135deg, var(--tiffany) 0%, var(--tiffany-deep) 100%);
  box-shadow: inset 0 0 0 3px rgba(255,255,255,.4);
}
.insta-cell--you::before { content: "♦"; position: absolute; top: 7px; right: 8px; color: rgba(255,255,255,.75); font-size: 12px; }
.insta-cell__label { font-family: var(--serif-en); font-style: italic; font-weight: 600; font-size: 26px; letter-spacing: .02em; text-shadow: 0 2px 12px rgba(0,0,0,.25); }
@media (min-width: 768px) { .insta-cell__label { font-size: 34px; } }
.insta-cell__sub { margin-top: 4px; font-family: var(--serif); font-size: 10px; letter-spacing: .1em; opacity: .95; }

.empathy__answer {
  margin-top: 40px;
  text-align: center;
  font-family: var(--serif);
  font-size: 14px;
  line-height: 2.15;
  letter-spacing: .02em;
  color: var(--gray-700);
}
.empathy__answer em { font-weight: 700; color: var(--gold); }
@media (min-width: 768px) { .empathy__answer { font-size: 16px; } }

/* ============================================================
   Prize
   ============================================================ */
.prize { padding: 78px 0 86px; background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%); }
.prize__list { margin-top: 42px; display: grid; gap: 30px; }
@media (min-width: 768px) { .prize__list { gap: 32px; } }

.prize-card {
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 14px 40px rgba(0, 0, 0, .07);
}
@media (min-width: 768px) {
  .prize-card { display: grid; grid-template-columns: 1.05fr 1fr; align-items: center; }
  .prize-card--rev .prize-card__media { order: 2; }
}
.prize-card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; }
@media (min-width: 768px) { .prize-card__media { aspect-ratio: 5 / 4; height: 100%; } }
.prize-card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s ease; }
.prize-card:hover .prize-card__media img { transform: scale(1.05); }
.prize-card__no {
  position: absolute; top: 0; left: 0;
  padding: 7px 16px 7px 14px;
  background: var(--black);
  color: var(--gold-light);
  font-family: var(--sans-geo);
  font-size: 10.5px;
  letter-spacing: .16em;
}
.prize-card__body { padding: 26px 22px 32px; }
@media (min-width: 768px) { .prize-card__body { padding: 40px 44px; } }

.tag {
  display: inline-block;
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .12em;
  font-weight: 700;
}
.tag--gold     { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); }
.tag--platinum { background: linear-gradient(135deg, #E5E5E7, #B8B8BC); color: var(--black); }
.tag--diamond  { background: linear-gradient(135deg, #B8E4E1, var(--tiffany)); color: #05343a; }

.prize-card h3 {
  margin-top: 16px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(19px, 5vw, 26px);
  line-height: 1.55;
  letter-spacing: .02em;
}
.prize-card p { margin-top: 14px; font-size: 13.5px; line-height: 2; color: var(--gray-700); }
.prize-card p em { font-weight: 700; color: var(--black); background: linear-gradient(transparent 62%, rgba(127,209,204,.45) 62%); }

/* ============================================================
   Rank
   ============================================================ */
.rank { padding: 78px 0 86px; background: var(--white); }
.rank__list { margin-top: 40px; display: grid; gap: 20px; }
@media (min-width: 480px) { .rank__list { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .rank__list { grid-template-columns: repeat(4, 1fr); gap: 20px; } }
.rank-card {
  border: 1px solid var(--gray-300);
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  transition: transform .35s ease, box-shadow .35s ease;
}
.rank-card:hover { transform: translateY(-4px); box-shadow: 0 16px 34px rgba(0, 0, 0, .08); }
.rank-card img { width: 100%; aspect-ratio: 750 / 400; object-fit: cover; transform: scale(1.03); }
.rank-card__body { padding: 18px 20px 22px; text-align: center; }
.rank-card__lv {
  font-family: var(--sans-geo);
  font-size: 13px;
  letter-spacing: .2em;
  color: var(--gray-500);
}
.rank-card__lv span {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--black);
}
.rank-card__txt { margin-top: 10px; font-size: 13px; line-height: 1.85; color: var(--gray-700); text-wrap: pretty; }
@media (min-width: 768px) { .rank-card__txt { font-size: 12.5px; } }
.rank__note { margin-top: 24px; font-size: 11px; line-height: 1.9; color: var(--gray-500); text-align: center; }

/* ============================================================
   Story
   ============================================================ */
.story { padding: 78px 0 86px; background: var(--gray-100); }
.story__list {
  margin-top: 40px;
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 4px 20px 14px;
  margin-inline: calc(var(--pad) * -1);
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}
.story__list::-webkit-scrollbar { height: 3px; }
.story__list::-webkit-scrollbar-thumb { background: var(--gold); }
.story-card {
  flex: 0 0 210px;
  scroll-snap-align: start;
  aspect-ratio: 3 / 4;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 8px 26px rgba(0, 0, 0, .1);
}
.story-card img { width: 100%; height: 100%; object-fit: cover; }
@media (min-width: 768px) {
  .story__list { overflow: visible; margin-inline: 0; padding: 0; display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
  .story-card { flex: none; }
}
.story__note { margin-top: 18px; text-align: center; font-family: var(--sans-geo); font-size: 11px; letter-spacing: .2em; color: var(--gray-500); }

/* ============================================================
   Step 2 (応募フロー)
   ============================================================ */
.step2 {
  padding: 78px 0 86px;
  position: relative;
  overflow: hidden;
  background-image:
    radial-gradient(2px 2px at 10% 15%, rgba(255,255,255,.95), transparent 60%),
    radial-gradient(1.6px 1.6px at 85% 12%, rgba(255,255,255,.85), transparent 60%),
    radial-gradient(2px 2px at 92% 68%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(1.4px 1.4px at 14% 78%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(1.6px 1.6px at 52% 42%, rgba(255,255,255,.65), transparent 60%),
    radial-gradient(1.4px 1.4px at 70% 90%, rgba(255,255,255,.7), transparent 60%),
    linear-gradient(160deg, #e9f7f6 0%, #d9f0ee 45%, #edf9f8 100%);
}
.step2::before, .step2::after {
  content: "";
  position: absolute;
  width: 26px; height: 26px;
  background: linear-gradient(135deg, rgba(255,255,255,.95), rgba(255,255,255,.35));
  clip-path: polygon(50% 0%, 100% 50%, 50% 100%, 0% 50%);
  opacity: .8;
}
.step2::before { top: 7%; left: 4%; width: 20px; height: 20px; }
.step2::after { bottom: 8%; right: 5%; }
.step2__head { position: relative; text-align: center; z-index: 1; }
.step2__eyebrow {
  font-family: var(--serif);
  font-size: 15px;
  letter-spacing: .04em;
  color: var(--black);
}
.step2__ttl {
  margin-top: 6px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(23px, 6vw, 30px);
  letter-spacing: .02em;
}
.step2__spark { position: absolute; top: -4px; color: var(--tiffany-dark); font-size: 18px; }
.step2__spark--l { left: 8%; }
.step2__spark--r { right: 8%; }

.step2__list { position: relative; z-index: 1; margin-top: 36px; display: flex; flex-direction: column; }
.step2-card {
  position: relative;
  display: grid;
  grid-template-columns: 64px 84px 1fr;
  align-items: center;
  gap: 12px;
  background: #fff;
  box-shadow: 0 10px 28px rgba(46, 138, 133, .12);
  border-radius: 16px;
  padding: 14px;
}
@media (min-width: 480px) { .step2-card { grid-template-columns: 72px 92px 1fr; gap: 16px; padding: 18px; } }

.step2-card__badge {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  width: 64px; height: 64px; flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(160deg, var(--tiffany), var(--tiffany-dark));
  color: #fff;
  font-family: var(--sans-geo);
  font-size: 9px;
  letter-spacing: .05em;
  box-shadow: 0 4px 10px rgba(46, 138, 133, .35);
}
@media (min-width: 480px) { .step2-card__badge { width: 72px; height: 72px; font-size: 10px; } }
.step2-card__badge b { display: block; margin-top: 1px; font-family: var(--serif-en); font-size: 20px; font-weight: 700; line-height: 1.1; }

.step2-card__media { width: 84px; height: 84px; flex-shrink: 0; border-radius: 10px; overflow: hidden; }
@media (min-width: 480px) { .step2-card__media { width: 92px; height: 92px; } }
.step2-card__media img { width: 100%; height: 100%; object-fit: cover; }
.step2-card__media--phone { width: auto; height: auto; background: none; overflow: visible; display: flex; align-items: center; justify-content: center; }
.step2-card__media--point {
  display: flex; align-items: center; justify-content: center;
  background: radial-gradient(circle at 35% 30%, var(--tiffany), var(--tiffany-dark));
  border-radius: 50%;
  position: relative;
}
.step2-card__media--point span { font-family: var(--serif-en); font-size: 32px; font-weight: 700; color: #fff; }
.step2-card__media--point::before, .step2-card__media--point::after {
  content: "✦"; position: absolute; color: var(--tiffany-dark); font-size: 10px;
}
.step2-card__media--point::before { top: -2px; right: 2px; }
.step2-card__media--point::after { bottom: 2px; right: -6px; font-size: 7px; }

.phone-mock {
  width: 74px; height: 132px;
  background: #17181a;
  border-radius: 18px;
  padding: 6px;
  position: relative;
  box-shadow: 0 6px 16px rgba(0, 0, 0, .3);
}
@media (min-width: 480px) { .phone-mock { width: 80px; height: 142px; } }
.phone-mock__notch {
  position: absolute; top: 12px; left: 50%; translate: -50% 0;
  width: 24px; height: 5px; border-radius: 3px; background: #17181a; z-index: 2;
}
.phone-mock__screen {
  width: 100%; height: 100%;
  background: #fff; border-radius: 13px;
  display: flex; flex-direction: column; align-items: center;
  padding: 12px 6px 8px; gap: 3px;
  overflow: hidden;
}
.phone-mock__label { font-size: 6px; letter-spacing: .01em; color: var(--gray-700); }
.phone-mock__qr svg { width: 40px; height: 40px; display: block; }
.phone-mock__brand { margin-top: auto; font-family: var(--serif-en); font-style: italic; font-size: 6px; line-height: 1.15; text-align: center; color: var(--tiffany-dark); }
.phone-mock__form { width: 100%; display: flex; flex-direction: column; gap: 3px; margin-top: 2px; }
.phone-mock__form span { font-size: 5px; color: var(--gray-700); }
.phone-mock__form i { display: block; height: 6px; border: .5px solid var(--gray-300); border-radius: 2px; background: var(--gray-100); }
.phone-mock__form em { margin-top: 3px; display: block; text-align: center; font-style: normal; font-size: 6px; padding: 4px; border-radius: 8px; background: var(--tiffany-dark); color: #fff; }

.step2-card__ttl {
  display: flex; align-items: center; gap: 5px;
  font-family: var(--serif);
  font-weight: 700;
  color: var(--tiffany-dark);
  font-size: 13.5px;
  line-height: 1.4;
}
@media (min-width: 480px) { .step2-card__ttl { font-size: 15px; } }
.step2-card__crown { width: 15px; height: 15px; color: var(--gold); flex-shrink: 0; }
.step2-card__txt { margin-top: 6px; font-size: 11px; line-height: 1.65; color: var(--gray-700); }
@media (min-width: 480px) { .step2-card__txt { font-size: 12px; } }

.step2-arrow { display: flex; justify-content: center; padding: 6px 0; }
.step2-arrow::before {
  content: "";
  width: 0; height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--tiffany-dark);
}

.step2__tagline {
  margin-top: 44px;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  text-align: center; font-family: var(--serif); font-size: 15px; letter-spacing: .02em; color: var(--black);
}
.step2__tagline-gem { width: 16px; height: 16px; color: var(--tiffany-dark); flex-shrink: 0; }
.step2__photos { position: relative; z-index: 1; margin-top: 20px; display: flex; justify-content: center; gap: 18px; }
.step2__photo {
  width: 130px; padding: 6px 6px 16px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(0, 0, 0, .16);
}
.step2__photo:nth-child(1) { transform: rotate(-4deg); }
.step2__photo:nth-child(2) { transform: rotate(4deg); }
.step2__photo img { width: 100%; aspect-ratio: 1 / 1; object-fit: cover; display: block; }

@media (min-width: 768px) {
  .step2__list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 22px; }
  .step2-arrow { display: none; }
  .step2-card { height: 100%; }
}

/* ============================================================
   Gallery (lifestyle strip)
   ============================================================ */
.gallery { background: var(--black); }
.gallery__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
@media (min-width: 768px) { .gallery__grid { grid-template-columns: repeat(4, 1fr); } }
.gallery__grid li { position: relative; aspect-ratio: 1 / 1; overflow: hidden; }
.gallery__grid img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.1s ease; }
.gallery__grid li:hover img { transform: scale(1.06); }
.gallery__grid span {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 22px 10px 10px;
  background: linear-gradient(transparent, rgba(0, 0, 0, .75));
  color: rgba(255, 255, 255, .95);
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .04em;
  text-align: center;
}

/* ============================================================
   FAQ
   ============================================================ */
.faq { padding: 78px 0 86px; background: var(--white); }
.faq__list { margin-top: 38px; border-top: 1px solid var(--gray-300); }
.faq__item { border-bottom: 1px solid var(--gray-300); }
.faq__q {
  display: grid;
  grid-template-columns: 26px 1fr 22px;
  align-items: start;
  gap: 10px;
  width: 100%;
  padding: 20px 4px;
  text-align: left;
}
.faq__mark {
  font-family: var(--serif-en);
  font-weight: 700;
  font-size: 18px;
  line-height: 1.3;
  color: var(--gold);
}
.faq__mark--a { color: var(--tiffany-dark); }
.faq__text {
  font-family: var(--serif);
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  letter-spacing: .02em;
}
.faq__icon { position: relative; width: 14px; height: 22px; }
.faq__icon::before, .faq__icon::after {
  content: "";
  position: absolute;
  top: 50%; left: 0;
  width: 14px; height: 1px;
  background: var(--gray-700);
  transition: transform .3s ease;
}
.faq__icon::after { transform: rotate(90deg); }
.faq__q[aria-expanded="true"] .faq__icon::after { transform: rotate(0); }

.faq__a {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 10px;
  padding: 0 4px 22px;
}
.faq__a p { font-size: 13px; line-height: 2; color: var(--gray-700); }
.faq__a[hidden] { display: none; }

/* ============================================================
   Video
   ============================================================ */
.video { padding: 60px 0 78px; background: var(--white); }
.video__frame {
  max-width: 320px;
  margin-inline: auto;
  aspect-ratio: 9 / 16;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 14px 36px rgba(0, 0, 0, .16);
  background: var(--black);
}
.video__frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ============================================================
   Entry CTA
   ============================================================ */
.entry {
  position: relative;
  padding: 84px 0 90px;
  background:
    radial-gradient(ellipse at center, rgba(212,175,55,.15) 0%, transparent 60%),
    linear-gradient(180deg, var(--tiffany) 0%, var(--tiffany-deep) 100%);
  color: #fff;
  text-align: center;
  overflow: hidden;
}
.entry__sparkle {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(2px 2px at 16% 26%, rgba(255,255,255,.9), transparent 60%),
    radial-gradient(1.6px 1.6px at 82% 18%, rgba(255,255,255,.8), transparent 60%),
    radial-gradient(2px 2px at 74% 78%, rgba(255,255,255,.7), transparent 60%),
    radial-gradient(1.4px 1.4px at 26% 82%, rgba(255,255,255,.75), transparent 60%);
  animation: twinkle 4s ease-in-out infinite alternate;
  pointer-events: none;
}
.entry .wrap { position: relative; }
.entry__brand { font-family: var(--serif-en); font-style: italic; font-size: 14px; letter-spacing: .22em; color: rgba(255, 255, 255, .9); }
.entry__title {
  margin-top: 14px;
  font-family: var(--serif);
  font-weight: 600;
  font-size: clamp(23px, 6vw, 38px);
  line-height: 1.6;
  letter-spacing: .03em;
  text-shadow: 0 4px 18px rgba(0, 0, 0, .18);
}
.entry__lead { margin-top: 20px; font-size: 13px; line-height: 2.05; letter-spacing: .03em; color: rgba(255, 255, 255, .96); }
.entry .btn { margin-top: 30px; }
.entry__note { margin-top: 18px; font-family: var(--sans-geo); font-size: 11px; letter-spacing: .14em; color: rgba(255, 255, 255, .85); }
@media (min-width: 768px) { .entry__lead { font-size: 15px; } }

/* ============================================================
   Footer
   ============================================================ */
.footer { padding: 52px 0 40px; background: var(--gray-900); color: var(--gray-500); text-align: center; }
.footer__logo img { width: 130px; height: auto; margin-inline: auto; }
.footer__nav { margin-top: 26px; display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 22px; }
.footer__nav a { font-size: 12px; letter-spacing: .04em; transition: color .3s ease; }
.footer__nav a:hover { color: var(--gold-light); }
.footer__company { margin-top: 26px; font-size: 11px; line-height: 2; letter-spacing: .02em; }
.footer__company a { color: var(--gold-light); }
.footer__alert { margin-top: 16px; font-size: 10.5px; color: rgba(255, 255, 255, .35); }
.footer__copy { margin-top: 16px; font-family: var(--sans-geo); font-size: 10.5px; letter-spacing: .1em; color: rgba(255, 255, 255, .3); }

/* ============================================================
   Sticky CTA（PC・SP 両方で表示）
   ============================================================ */
.sticky-cta {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 90;
  background: linear-gradient(90deg, var(--black) 0%, var(--gray-900) 100%);
  color: #fff;
  border-top: 2px solid var(--gold);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, .25);
  padding-bottom: env(safe-area-inset-bottom);
  transform: translateY(110%);
  transition: transform .45s cubic-bezier(.2, .8, .3, 1);
}
.sticky-cta.is-visible { transform: translateY(0); }
.sticky-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding-block: 10px;
}
.sticky-cta__msg { font-size: 10.5px; line-height: 1.5; letter-spacing: .01em; }
.sticky-cta__msg strong { color: var(--gold-light); font-size: 11.5px; display: block; }
@media (min-width: 768px) {
  .sticky-cta__msg { font-size: 13px; }
  .sticky-cta__msg strong { display: inline; font-size: 13px; }
}

/* ============================================================
   Scroll reveal
   ============================================================ */
.reveal > * { opacity: 0; transform: translateY(24px); transition: opacity .9s ease, transform .9s cubic-bezier(.2, .8, .3, 1); }
.reveal.is-in > * { opacity: 1; transform: none; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .reveal > * { opacity: 1; transform: none; }
}
