
:root {
  --s-bg: #070708;
  --s-card: linear-gradient(180deg, rgba(22, 22, 25, 0.96) 0%, rgba(9, 9, 11, 0.96) 100%);
  --s-card-border: rgba(214, 180, 96, 0.55);
  --s-text: #f3efe4;
  --s-text-weak: #cfc8b6;
  --s-gold: #d4af37;
  --s-gold-light: #f4e3a1;
  --s-gold-deep: #9a7418;
  --s-line-green: #06c755;

  --grad-gold: linear-gradient(180deg, #fffbe8 0%, #f9e9a8 28%, #edd079 52%, #d9b054 66%, #fdf1bd 100%);  
  --grad-gold-btn: linear-gradient(180deg, #f6e5a6 0%, #dfbd5c 48%, #c39a33 52%, #e9cf78 100%);
  --grad-gold-line: linear-gradient(90deg, rgba(212,175,55,0) 0%, #e2c366 50%, rgba(212,175,55,0) 100%);
  --s-shadow: 0 8px 22px rgba(0, 0, 0, 0.55);
  --font-serif: "Shippori Mincho B1", "Zen Old Mincho", "Hiragino Mincho ProN", serif;
  --font-sans: "Noto Sans JP", "Hiragino Sans", sans-serif;
  --font-num: "Playfair Display", "Times New Roman", serif;
  --font-caps: "Cinzel", "Times New Roman", serif;
  --page-max: 430px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  color: var(--s-text);
  background: var(--s-bg);
  -webkit-text-size-adjust: 100%;
  min-height: 100dvh;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }

.bg-layer {
  position: fixed;
  top: 0; left: 50%;
  width: min(100vw, var(--page-max));
  height: 130vh;
  height: 130lvh;
  z-index: -1;
  transform: translate(-50%, var(--bg-shift, 0px));
  will-change: transform;

  background: var(--s-bg) url(/assets/shogun/bg-tall.jpg) center top / 110% auto no-repeat;
  pointer-events: none;
}

.bg-layer::after {
  content: "";
  position: absolute; inset: 0;
  background: rgba(0,0,0,.25);
}
@media (min-width: 431px) {
  body { background: #000; }
}

.page {
  position: relative;
  max-width: var(--page-max);
  margin: 0 auto;
  padding: 26px 16px 48px;
}
@media (min-width: 431px) {
  .page { min-height: 100dvh; box-shadow: 0 0 40px rgba(0,0,0,.6); }
}

.gold-text {
  background: var(--grad-gold);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
}

.hero {
  text-align: center;
  margin: 8px 0 22px;
}
.hero-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 31px;      
  letter-spacing: 0.5px;
  line-height: 1.25;
  margin: 0;
  white-space: nowrap;
  position: relative;
  
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.7)) drop-shadow(0 0 9px rgba(0,0,0,.75));
}

.hero-kicker {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 10px 0 0;
  font-family: var(--font-caps);
  font-size: 10px;
  letter-spacing: 4px;
  color: var(--s-gold-light);
}
.hero-kicker::before, .hero-kicker::after {
  content: ""; flex: 0 0 34px; height: 1px;
  background: var(--grad-gold-line);
}

.gold-rule {
  position: relative;
  width: 100%; height: 1px;
  margin: 12px auto 0;
  background: var(--grad-gold-line);
}
.gold-rule::after {
  content: "";
  position: absolute; left: 50%; top: 50%;
  width: 7px; height: 7px;
  background: var(--s-gold-light);
  transform: translate(-50%, -50%) rotate(45deg);
}

.link-list { display: flex; flex-direction: column; gap: 12px; }

.link-card {
  position: relative;
  display: grid;
  grid-template-columns: 58px 1fr;
  align-items: center;
  gap: 12px;   
  min-height: 104px;
  padding: 14px 64px 14px 10px;   
  background: var(--s-card);
  border: 1.5px solid var(--s-card-border);   
  border-radius: 6px;
  box-shadow: var(--s-shadow), inset 0 0 0 1px rgba(0,0,0,.6);
  overflow: hidden;
  -webkit-tap-highlight-color: transparent;
}
.link-card:active { transform: translateY(1px); }

.link-card::before {
  content: "";
  position: absolute; left: -30px; top: -10px;
  width: 120px; height: 22px;
  background: linear-gradient(90deg, rgba(240,215,122,0) 0%, rgba(240,215,122,.55) 50%, rgba(240,215,122,0) 100%);
  transform: rotate(-18deg);
  pointer-events: none;
}
.num-block {
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  line-height: 1;
}
.num-big {
  font-family: var(--font-num);
  font-style: italic;
  font-weight: 700;
  font-size: 38px;   
  letter-spacing: -1px;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.8));
}
.num-label {
  margin-top: 4px;
  font-family: var(--font-caps);
  font-size: 8.5px;
  letter-spacing: 2.5px;
  color: var(--s-gold-light);
  white-space: nowrap;
}
.link-body { position: relative; z-index: 1; min-width: 0; }
.link-title {
  display: block;
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 17.5px;   
  letter-spacing: 0;
  line-height: 1.3;
  color: #fff;
  margin: 0 0 5px;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0,0,0,.9);
}
.link-row { display: flex; align-items: center; gap: 4px; }
.link-desc {
  flex: 1 1 auto; min-width: 0;
  font-size: 11.5px;
  line-height: 1.65;
  color: var(--s-text);
  margin: 0;
  font-weight: 500;
  text-shadow: 0 1px 3px rgba(0,0,0,.9);
}
.arrow-btn {
  position: relative; z-index: 1;
  flex: 0 0 auto;
  
  margin-right: 60px;
  display: block;
  width: 36px; height: 36px; border-radius: 50%;
  background: var(--grad-gold-btn);
  box-shadow: 0 3px 8px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.35);
}

.arrow-btn::after {
  content: "";
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 36 36'%3E%3Cpath d='M11 18H24M19 13L24 18L19 23' fill='none' stroke='%23161208' stroke-width='1.8' stroke-linejoin='miter'/%3E%3C/svg%3E") center / 36px 36px no-repeat;
}

.card-photo {
  position: absolute; right: 0; top: 0; bottom: 0;
  width: 150px;   
  -webkit-mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 45%, #000 60%);
  mask-image: linear-gradient(90deg, rgba(0,0,0,0) 0%, rgba(0,0,0,.55) 45%, #000 60%);
}
.card-photo img { width: 100%; height: 100%; object-fit: cover; }

.back-btn {
  display: inline-flex; align-items: center; gap: 5px;
  height: 30px; padding: 0 13px;
  border-radius: 30px;
  background: rgba(0,0,0,.6);
  border: 1px solid var(--s-card-border);
  color: var(--s-gold-light);
  font-size: 12px; font-weight: 500;
}
.back-btn::before {
  content: ""; width: 7px; height: 7px;
  border-left: 1.5px solid currentColor; border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg);
}
.sub-header { text-align: center; margin: 14px 0 16px; }
.sub-title {
  font-family: var(--font-serif);
  font-weight: 800;
  font-size: 27px;
  letter-spacing: 0.5px;
  line-height: 1.3;
  margin: 0;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.7)) drop-shadow(0 0 9px rgba(0,0,0,.75));  
}
.sub-title .sm { font-size: 0.72em; }

.lead-card {
  position: relative;
  background: rgba(8,8,10,.82);
  border: 1.5px solid var(--s-gold);
  box-shadow: 0 0 14px rgba(212,175,55,.22), inset 0 0 0 1px rgba(0,0,0,.6);
  border-radius: 4px;
  padding: 14px 18px;
  text-align: center;
  font-size: 13.5px;
  line-height: 1.85;
  font-weight: 500;
  color: var(--s-text);
  margin: 0 0 16px;
}
.lead-card .em { color: var(--s-gold-light); font-weight: 700; }

.lead-link { color: var(--s-gold-light); font-weight: 700; text-decoration: underline; text-underline-offset: 3px; text-decoration-color: rgba(244,227,161,.7); }

.site-list { display: flex; flex-direction: column; gap: 14px; }
.site-card {
  position: relative;
  background: var(--s-card);
  border: 1.5px solid var(--s-card-border);   
  border-radius: 6px;
  box-shadow: var(--s-shadow), inset 0 0 0 1px rgba(0,0,0,.6);
  padding: 14px 14px 14px;
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 12px 10px;
  align-items: center;
  overflow: hidden;
}
.site-card::before {
  content: "";
  position: absolute; left: -30px; top: -10px;
  width: 120px; height: 22px;
  background: linear-gradient(90deg, rgba(240,215,122,0) 0%, rgba(240,215,122,.55) 50%, rgba(240,215,122,0) 100%);
  transform: rotate(-18deg);
  pointer-events: none;
}
.site-num {
  font-family: var(--font-num);
  font-style: italic;
  font-weight: 700;
  font-size: 40px;
  line-height: 1;
  letter-spacing: -1px;
  text-align: center;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.8));
}

.site-logo { height: 62px; display: flex; align-items: center; }

.site-logo img { height: 100%; width: auto; max-width: 100%; object-fit: contain; mix-blend-mode: lighten; }
.site-name-text {
  font-family: var(--font-serif); font-weight: 800; font-size: 22px; color: #fff; letter-spacing: 1px;
}
.cta-btn {
  grid-column: 1 / -1;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  position: relative;
  height: 46px; border-radius: 30px;
  background: var(--grad-gold-btn);
  color: #161208; font-size: 15px; font-weight: 700; letter-spacing: 0.5px;
  box-shadow: 0 4px 10px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.4);
}
.cta-btn::after {
  content: ""; position: absolute; right: 18px; top: 50%;
  width: 8px; height: 8px;
  border-top: 2px solid #161208; border-right: 2px solid #161208;
  transform: translateY(-50%) rotate(45deg);
}

.line-mark { display: inline-flex; width: 32px; height: 32px; flex: 0 0 auto; }
.line-mark svg { width: 100%; height: 100%; display: block; }

.foot-nav { margin-top: 26px; text-align: center; }

.sub-kicker {
  display: flex; align-items: center; justify-content: center; gap: 10px;
  margin: 6px 0 0;
  font-family: var(--font-caps);
  font-size: 11px; letter-spacing: 3px;   
  color: var(--s-gold-light);
}
.sub-kicker::before, .sub-kicker::after { content: ""; flex: 0 0 26px; height: 1px; background: var(--grad-gold-line); }

.sub-kicker--plain::before, .sub-kicker--plain::after { content: none; }

.sub-kicker--plain { font-family: inherit; font-size: 13px; letter-spacing: 1.5px; margin-top: 8px; }
.sub-title--2l { font-size: 31px; line-height: 1.25; }  
.sub-title .pre { display: block; font-size: 0.6em; letter-spacing: 3px; }

.sec-title {
  display: flex; align-items: center; justify-content: center; gap: 12px;
  margin: 20px 0 12px;
  font-family: var(--font-serif); font-weight: 800; font-size: 21px; letter-spacing: 3px;
}
.sec-title::before, .sec-title::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--grad-gold-line); }
.sec-title .t { filter: drop-shadow(0 2px 2px rgba(0,0,0,.7)); }
.sec-title--pill { font-size: 18px; letter-spacing: 1.5px; }

.sec-sub { text-align: center; margin: 8px 0 -12px; }
.sec-note { font-size: 12.5px; font-weight: 700; letter-spacing: 1px; color: var(--s-gold-light); }
.gstep-text--sm { font-size: 13px; }
.pill-gold {
  display: inline-block; padding: 3px 10px;
  border: 1px solid var(--s-gold); border-radius: 3px;
  font-family: var(--font-sans); font-size: 12px; font-weight: 700; letter-spacing: 1px;
  color: var(--s-gold-light);
}

.gcard {
  position: relative;
  background: var(--s-card);
  border: 1.5px solid var(--s-card-border);   
  border-radius: 6px;
  box-shadow: var(--s-shadow), inset 0 0 0 1px rgba(0,0,0,.6);
  padding: 16px 16px;
  overflow: hidden;
}
.gcard::before {
  content: "";
  position: absolute; left: -30px; top: -10px; width: 120px; height: 22px;
  background: linear-gradient(90deg, rgba(240,215,122,0) 0%, rgba(240,215,122,.5) 50%, rgba(240,215,122,0) 100%);
  transform: rotate(-18deg); pointer-events: none;
}

.gstep-list { display: flex; flex-direction: column; }

.gstep-group { padding: 4px 14px; }
.gstep-group .gstep { padding: 12px 0; min-height: 84px; }
.gstep-group .gstep + .gstep { border-top: 1px dotted rgba(212,175,55,.5); }
.gstep {
  display: grid;
  grid-template-columns: 52px 1px 58px 1fr;
  gap: 0 12px;
  align-items: center;
  padding: 14px 14px 14px 10px;
  min-height: 92px;
}
.gnum {
  width: 46px; height: 46px; border-radius: 50%;
  border: 1.5px solid var(--s-gold);
  box-shadow: 0 0 0 3px rgba(0,0,0,.6), 0 0 0 4px rgba(212,175,55,.35);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num); font-style: italic; font-weight: 700; font-size: 21px; line-height: 1;
  padding-bottom: 2px;
}
.gstep-line { width: 1px; height: 100%; min-height: 60px; background: linear-gradient(180deg, rgba(212,175,55,0) 0%, #d4af37 50%, rgba(212,175,55,0) 100%); }

.gicon { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; }
.gicon svg {
  width: 44px; height: 44px;
  stroke: #e2c366; fill: none; stroke-width: 2.4; stroke-linecap: round; stroke-linejoin: round;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,.8));
}
.gstep-text { min-width: 0; font-size: 14px; line-height: 1.7; font-weight: 700; color: #fff; text-align: left; }  
.gstep-text .sub { display: block; font-size: 12.5px; font-weight: 500; color: var(--s-text-weak); }
.gstep-text .big { font-size: 17px; }

.hl {
  display: inline-block; padding: 1px 6px; margin: 2px 1px;
  border: 1px solid var(--s-gold); border-radius: 3px;
  color: var(--s-gold-light); font-weight: 700; line-height: 1.5;
}
.hl--sm { font-size: 11.5px; padding: 0 6px; }
.step-arrow-gold { height: 26px; display: flex; align-items: center; justify-content: center; }
.step-arrow-gold::after {
  content: ""; width: 0; height: 0;
  border-left: 7px solid transparent; border-right: 7px solid transparent;
  border-top: 9px solid var(--s-gold);
}

.closing { text-align: center; margin: 22px 0 6px; }
.closing-title {
  font-family: var(--font-serif); font-weight: 800; font-size: 27px; letter-spacing: 1px; line-height: 1.35; margin: 0;
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.7));
}
.closing-title .l2 { display: block; font-size: 1.05em; }
.closing-check {
  display: flex; align-items: center; justify-content: center; gap: 10px; margin: 10px 0 0;
}
.closing-check::before, .closing-check::after { content: ""; width: 26px; height: 1px; background: var(--grad-gold-line); }
.closing-check .c {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--grad-gold-btn);
  display: flex; align-items: center; justify-content: center;
}
.closing-check .c svg { width: 22px; height: 22px; stroke: #161208; fill: none; stroke-width: 3; stroke-linecap: round; stroke-linejoin: round; }

.cta-btn--block { display: flex; margin: 18px 0 0; height: 58px; font-size: 16px; }  
.cta-btn--sub { margin-top: 10px; background: rgba(0,0,0,.55); color: var(--s-gold-light); border: 1px solid var(--s-card-border); box-shadow: none; }
.cta-btn--sub::after { border-color: var(--s-gold-light); }

.step-list { display: flex; flex-direction: column; }
.step { padding: 14px 14px 16px; }

.step-group { padding: 4px 14px; }
.step-group .step { padding: 16px 0 18px; }
.step-group .step + .step { border-top: 1px dotted rgba(212,175,55,.5); }
.step-label {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  font-family: var(--font-caps); font-size: 16px; font-weight: 600; letter-spacing: 3.5px;   
  color: var(--s-gold-light); margin: 0 0 10px;
}

.step-label .n {
  width: 30px; height: 30px; border-radius: 50%;
  background: var(--grad-gold-btn);
  -webkit-background-clip: padding-box; background-clip: padding-box;
  color: #161208; -webkit-text-fill-color: #161208;
  box-shadow: 0 2px 6px rgba(0,0,0,.6), inset 0 0 0 1px rgba(255,255,255,.35);
  font-family: var(--font-caps); font-style: normal; font-weight: 700; font-size: 15px; line-height: 1;
  
  letter-spacing: 0;
  text-indent: -0.5px;
  display: inline-flex; align-items: center; justify-content: center; padding: 0;
}
.step-shot {
  width: min(100%, 250px);
  margin: 0 auto;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(214,180,96,.45);
  box-shadow: 0 6px 16px rgba(0,0,0,.6);
  background: #000;
}
.step-shot--wide { width: 100%; }
.step-shot img { width: 100%; height: auto; }
.step-cap {
  margin: 12px 2px 0; text-align: center;
  font-size: 13.5px; line-height: 1.8; font-weight: 500; color: var(--s-text);
}
.step-cap + .step-cap { margin-top: 8px; }
.step-cap--sm { font-size: 12px; color: var(--s-text-weak); }
.strong { color: var(--s-gold-light); font-weight: 700; }

.check-box {
  margin: 12px 0 0;
  border: 1px dashed var(--s-gold);
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 14.5px; line-height: 1.8; color: var(--s-text);   
  text-align: left;
}
.check-box .ttl { text-align: center; font-weight: 700; font-size: 15px; color: var(--s-gold-light); margin: 0 0 6px; }
.check-box ul { margin: 0; padding: 0; list-style: none; }
.check-box li::before { content: "☑ "; color: var(--s-gold-light); }
.check-box .note { margin: 6px 0 0; font-size: 13px; color: var(--s-text-weak); }

.video-card { text-align: center; }

.video-frame--landscape {
  width: 100%; margin: 12px auto 0;
  aspect-ratio: 16 / 9;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(214,180,96,.45);
  box-shadow: 0 6px 16px rgba(0,0,0,.6);
  background: #000;
}
.video-frame--landscape video { display: block; width: 100%; height: 100%; object-fit: cover; }
.video-frame--portrait {
  width: min(100%, 250px); margin: 12px auto 0;
  aspect-ratio: 588 / 1278;
  border-radius: 4px; overflow: hidden;
  border: 1px solid rgba(214,180,96,.45);
  box-shadow: 0 6px 16px rgba(0,0,0,.6);
  background: #000;
}
.video-frame--portrait video { display: block; width: 100%; height: 100%; object-fit: cover; }

.point-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.point-group { display: grid; grid-template-columns: 1fr 1fr; padding: 12px 6px; }
.point-col { text-align: center; padding: 0 8px; }
.point-col + .point-col { border-left: 1px dotted rgba(212,175,55,.5); }

.point-group::before, .flow-card::before, .rep-card::before { content: none; }   
.point-card { padding: 12px 8px 12px; text-align: center; }
.point-label {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-caps); font-size: 9px; letter-spacing: 2px; color: var(--s-gold-light); margin: 0 0 6px;
}
.point-label::before, .point-label::after { content: ""; flex: 1 1 auto; height: 1px; background: var(--grad-gold-line); }
.point-label .n { font-family: var(--font-num); font-style: italic; font-size: 16px; letter-spacing: 0; position: relative; top: -2px; }  
.point-title { font-family: var(--font-serif); font-weight: 800; font-size: 13.5px; white-space: nowrap; color: #fff; margin: 0 0 6px; line-height: 1.4; }
.point-desc { font-size: 12.5px; line-height: 1.7; color: var(--s-text); margin: 0; }

.flow { margin: 16px 0 0; text-align: center; }

.flow-top {
  display: block; width: fit-content; margin: 0 auto; padding: 6px 36px;
  border: 1px solid var(--s-gold); border-radius: 30px;
  background: rgba(0,0,0,.6);
  font-family: var(--font-serif); font-weight: 800; font-size: 20px; letter-spacing: 1px;
}

.flow-branches {
  position: relative;
  display: grid; grid-template-columns: 1fr 1fr; gap: 0;
  padding-top: 36px;
}

.flow-branches::after { content: ""; position: absolute; left: 50%; top: 0; width: 2px; height: 17px; transform: translateX(-50%); background: var(--s-gold); }
.flow-branches::before { content: ""; position: absolute; left: 25%; right: 25%; top: 16px; height: 2px; background: var(--s-gold); }
.flow-branch { position: relative; display: flex; flex-direction: column; align-items: center; gap: 10px; padding: 0 6px; }
.flow-branch::before { content: ""; position: absolute; left: 50%; top: -20px; width: 2px; height: 21px; transform: translateX(-50%); background: var(--s-gold); }
.flow-tag {
  width: 58px; height: 58px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-serif); font-weight: 800; font-size: 13px;
}
.flow-tag--miss { border: 1px solid var(--s-gold); background: rgba(0,0,0,.7); color: #fff; }
.flow-tag--hit { background: var(--grad-gold-btn); color: #161208; }
.flow-card { width: 100%; padding: 14px 8px 12px; text-align: center; flex: 1 1 auto; display: flex; flex-direction: column; justify-content: center; }  
.flow-card svg { width: 34px; height: 34px; stroke: var(--s-gold-light); fill: none; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; margin: 0 auto 6px; display: block; flex: 0 0 auto; }
.flow-card .l1 { font-family: var(--font-serif); font-weight: 800; font-size: 15px; color: #fff; margin: 0; line-height: 1.4; }
.flow-card .l2 { font-family: var(--font-serif); font-weight: 800; font-size: 17px; margin: 0; line-height: 1.4; }
.flow-card .l3 { font-size: 12px; color: var(--s-text-weak); margin: 6px 0 0; border-top: 1px solid rgba(212,175,55,.35); padding-top: 4px; }

.faq { margin: 20px 0 0; padding: 12px 14px 4px; }
.faq-title { text-align: center; font-family: var(--font-serif); font-weight: 800; font-size: 18px; letter-spacing: 2px; margin: 0 0 6px; }
.faq-item { padding: 10px 0 12px; }
.faq-item + .faq-item { border-top: 1px dotted rgba(212,175,55,.5); }
.faq-line { display: flex; align-items: flex-start; gap: 10px; }
.faq-line + .faq-line { margin-top: 6px; }
.faq-q, .faq-a {
  flex: 0 0 auto; width: 28px; height: 28px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-caps); font-style: normal; font-weight: 700; font-size: 14px; line-height: 1;
}
.faq-q { background: var(--grad-gold-btn); color: #161208; }
.faq-a { border: 1px solid var(--s-gold); color: var(--s-gold-light); }
.faq-txt { font-size: 13.5px; line-height: 1.6; color: #fff; padding-top: 4px; font-weight: 700; }
.faq-line--a .faq-txt { font-weight: 500; color: var(--s-text); }

.reason { margin: 12px 0 0; padding: 12px 14px 14px; }
.reason-title { text-align: center; font-family: var(--font-serif); font-weight: 800; font-size: 18px; letter-spacing: 2px; margin: 0 0 10px; }
.reason-row { display: flex; align-items: center; gap: 8px; padding: 8px 0; font-size: 13px; color: #fff; font-weight: 700; }
.reason-row .lh { white-space: nowrap; }
.reason-row + .reason-row { border-top: 1px dotted rgba(212,175,55,.5); }
.reason-row .ic {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%; border: 1px solid var(--s-gold);
  display: flex; align-items: center; justify-content: center;
}
.reason-row .ic svg { width: 16px; height: 16px; stroke: var(--s-gold-light); fill: none; stroke-width: 2.4; stroke-linecap: round; }
.reason-row .ar { color: var(--s-gold); font-weight: 400; }
.closing-msg { text-align: center; margin: 18px 0 0; font-family: var(--font-serif); font-weight: 800; font-size: 17px; line-height: 1.6; color: #fff; }
.closing-msg .l2 { display: block; font-size: 22px; }

.pg-lead { text-align: center; font-size: 12px; letter-spacing: 2px; color: var(--s-gold-light); margin: 0 0 8px; }
.pg-q { text-align: center; font-family: var(--font-serif); font-weight: 800; font-size: 18px; color: #fff; margin: 0 0 6px; line-height: 1.5; }
.pg-q .em { color: var(--s-gold-light); }
.pg-text { font-size: 14px; line-height: 1.8; color: var(--s-text); margin: 0; text-align: center; }  
.pg-text--left { text-align: left; }
.pg-text .em { color: var(--s-gold-light); font-weight: 700; }
.pg-ex { margin: 10px 0 0; padding: 10px 10px; border: 1px solid rgba(212,175,55,.45); border-radius: 4px; background: rgba(0,0,0,.55); }
.pg-ex .lbl { display: inline-block; font-size: 12.5px; font-weight: 700; color: var(--s-gold-light); margin: 0 0 4px; }
.pg-table { width: 100%; border-collapse: collapse; font-weight: 700; font-size: 16px; }   
.pg-table td { padding: 6px 4px; text-align: center; white-space: nowrap; }
.pg-table tr + tr td { border-top: 1px solid rgba(212,175,55,.25); }
.pg-combo { letter-spacing: 1px; }
.pg-pct { font-weight: 500; font-size: 13px; }
.pg-arrow { color: var(--s-gold); font-weight: 400; }
.pg-val { color: var(--s-gold-light); }

.r-blue   .pg-combo, .r-blue   .pg-val, .r-blue   .pg-pct { color: #5b9cff; }
.r-green  .pg-combo, .r-green  .pg-val, .r-green  .pg-pct { color: #4cd97b; }
.r-red    .pg-combo, .r-red    .pg-val, .r-red    .pg-pct { color: #ff6464; }
.r-purple .pg-combo, .r-purple .pg-val, .r-purple .pg-pct { color: #c084fc; }
.race-head { display: flex; align-items: center; gap: 10px; margin: 0 0 10px; }
.race-num {
  width: 38px; height: 38px; border-radius: 50%; border: 1.5px solid var(--s-gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-num); font-style: italic; font-weight: 700; font-size: 18px; padding-bottom: 2px;
}
.race-title { font-family: var(--font-serif); font-weight: 800; font-size: 20px; line-height: 1.1; }
.race-title small { display: block; font-family: var(--font-caps); font-size: 8.5px; letter-spacing: 3px; color: var(--s-gold-light); margin-top: 3px; }
.pg-check { margin: 10px 0 0; padding: 0; list-style: none; font-size: 13.5px; line-height: 1.75; color: var(--s-text); }
.pg-check li { padding-left: 22px; position: relative; }
.pg-check li + li { margin-top: 6px; }
.pg-check li::before { content: "✓"; position: absolute; left: 0; top: 4px; width: 16px; height: 16px; border-radius: 3px; background: var(--grad-gold-btn); color: #161208; font-size: 11px; font-weight: 900; text-align: center; line-height: 16px; }
.pg-check .em { color: var(--s-gold-light); font-weight: 700; }

.pg-ex .lbl, .important-txt, .pg-check li { word-break: auto-phrase; }

.important {
  display: grid; grid-template-columns: 96px 1fr; gap: 12px; align-items: center; padding: 14px 14px;
  border: 1.5px solid var(--s-gold);
  background: linear-gradient(90deg, rgba(212,175,55,.22) 0%, rgba(22,22,25,.96) 38%, rgba(9,9,11,.96) 100%);
  box-shadow: var(--s-shadow), 0 0 16px rgba(212,175,55,.25);
}
.important-lbl { text-align: center; font-family: var(--font-serif); font-weight: 800; font-size: 24px; letter-spacing: 3px; color: #fff; line-height: 1.1; }
.important-lbl .warn { display: block; font-size: 26px; color: #ffcc33; letter-spacing: 0; margin-bottom: 2px; filter: drop-shadow(0 1px 2px rgba(0,0,0,.8)); }
.important-lbl small { display: block; font-family: var(--font-caps); font-size: 8px; letter-spacing: 2px; color: var(--s-gold-light); margin-top: 4px; }
.important-txt { font-size: 14px; line-height: 1.8; color: #fff; font-weight: 700; margin: 0; border-left: 1.5px solid var(--s-gold); padding-left: 12px; }
.important-txt .em { color: var(--s-gold-light); }
.important-txt .em--big { font-size: 1.25em; }

.summary { padding: 14px 14px; display: flex; flex-direction: column; gap: 10px; }
.summary-ttl { text-align: center; font-size: 14px; font-weight: 700; color: var(--s-gold-light); letter-spacing: 1px; margin: 0 0 2px; }
.summary-row { display: grid; grid-template-columns: 86px 14px 1fr; gap: 8px; align-items: center; font-size: 13.5px; line-height: 1.6; color: #fff; }
.summary-row .ar { color: var(--s-gold); text-align: center; }
.summary-row .em { color: var(--s-gold-light); font-weight: 700; }
.summary-row .tag { text-align: center; padding: 5px 0; border-radius: 30px; color: #fff; font-weight: 700; font-size: 13px; box-shadow: 0 2px 6px rgba(0,0,0,.5), inset 0 0 0 1px rgba(255,255,255,.25); }
.summary-row .tag--r1 { background: linear-gradient(180deg, #e0506e 0%, #b8264a 100%); }
.summary-row .tag--r2 { background: linear-gradient(180deg, #4d8dff 0%, #2456c9 100%); }
.gap { height: 12px; }

.rep-header { margin: 14px 0 18px; }

.rep-header .gold-rule { margin-top: 16px; }

.rep-title {
  display: flex; flex-direction: column; align-items: center;
  gap: 12px;
  margin: 0;
  font-family: var(--font-serif);
  font-weight: 800;
  line-height: 1;
  
  filter: drop-shadow(0 2px 2px rgba(0,0,0,.7));
}

.rep-title-sm { font-size: 21px; letter-spacing: 3px; margin-right: -3px; }
.rep-title-lg { font-size: 34px; letter-spacing: 8px; margin-right: -8px; }

.rep-lead {
  margin: 0 0 18px;
  font-size: 13.5px; line-height: 1.85; font-weight: 500;
  text-align: center; color: var(--s-text);
}

.rep-card {
  
  padding: 20px 0 40px;
  
  display: flex;
  flex-direction: column;
}

.rep-swipe {
  position: relative; z-index: 1;   
  margin: 0 16px 14px;
  font-size: 13px; font-weight: 500; line-height: 16px; letter-spacing: 1px;
  text-align: center; color: var(--s-gold-light);
}

.rep-carousel {
  position: relative; z-index: 1;
  flex: 1 1 auto;
  min-height: 0;
  display: flex;
  align-items: stretch;
  gap: 14px;
  
  padding: 0 0 0 16px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 16px;   
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}
.rep-carousel::-webkit-scrollbar { display: none; }

.rep-carousel.is-dragging,
.rep-carousel.is-wheeling { scroll-snap-type: none; }

@media (hover: hover) and (pointer: fine) {
  .rep-carousel { cursor: grab; }
  .rep-carousel.is-dragging { cursor: grabbing; user-select: none; }
}

.rep-carousel::after { content: ""; flex: 0 0 2px; align-self: flex-start; }

.rep-carousel .report {
  margin: 0;
  flex: 0 0 clamp(150px, 40vw, 172px);   
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: flex-start;   
  scroll-snap-align: start;
}

.rep-carousel .shot {
  width: 100%;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid rgba(214,180,96,.45);
  box-shadow: 0 6px 16px rgba(0,0,0,.6);
}
.rep-carousel .shot img {
  display: block; width: 100%; height: auto;
  
  -webkit-user-drag: none; user-select: none;
}

.rep-carousel .shot-report img { max-height: 100%; max-width: 100%; width: auto; }

.rep-carousel .shot-report {
  flex: 0 0 280px;   
  display: flex; align-items: center; justify-content: center;
  background: #fff;  
}

.rep-carousel .shot-report.is-empty { background: rgba(255,255,255,.04); }

.rep-carousel .date-badge {
  display: inline-block;
  margin-left: 2px;
  border-radius: 20px;
  padding: 2px 10px;
  background: var(--s-gold);   
  font-size: 11px; font-weight: 700; letter-spacing: 0.8px; line-height: 16.5px;
  color: #161208;
}

.rep-carousel .date-badge.rep-placeholder {
  background: none;
  border: 1px solid var(--s-gold);
  color: var(--s-gold-light);
  font-weight: 500;
}

.rep-footer-rule { margin-top: 30px; }
