:root {
   --ink: #0C1D33;
   /* deep navy ink */
   --navy: #143A66;
   /* NISHI blue */
   --board: #14181D;
   /* matte board black */
   --board2: #0E1115;
   /* darker board (page bg) */
   --paper: #F3F5F8;
   /* cool light panel */
   --paper2: #FFFFFF;
   --accent: #FF4612;
   /* sprint orange */
   --accent-d: #E23A0C;
   --muted: #5C6B7E;
   --line: #E2E7EE;
   --col: 468px;
   /* content column width on mobile/tablet */
   --col-wide: 750px;
   /* content column width on PC (>=1180px) */
   --nav-h: 60px;
   /* height of the site's fixed .pane-globalnav on mobile/tablet */
   --jp: "Noto Sans JP", sans-serif;
   --body: "Noto Sans JP", sans-serif;
   --num: "Noto Sans JP", sans-serif;
}

* {
   box-sizing: border-box;
   margin: 0;
   padding: 0
}

html {
   scroll-behavior: smooth
}

body {
   font-family: var(--body);
   color: var(--ink);
   background: var(--board2);
   line-height: 1.8;
   -webkit-font-smoothing: antialiased;
   overflow-x: hidden;
   padding-top: 54px;
   /* leave room for the sticky CTA bar (~70px) + the global nav (--nav-h) */
   padding-bottom: calc(var(--nav-h) + 82px);
}

img {
   display: block;
   max-width: 100%
}

#header {
   display: none;
}

.pane-header_lp {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   position: fixed;
   top: 0;
   left: 0;
   z-index: 9999;
   width: 100%;
   height: 50px;
   background: #fff;
}

/* ---------- page scaffold ---------- */
.stage {
   position: relative;
   min-height: 100vh;
   display: flex;
   justify-content: center
}

.board-bg {
   position: fixed;
   inset: 0;
   z-index: 0;
   background:
      radial-gradient(120% 80% at 50% -10%, #1b2530 0%, var(--board2) 60%);
   overflow: hidden
}

.board-bg .n {
   position: absolute;
   font-family: var(--num);
   font-weight: 900;
   color: #fff;
   opacity: .04;
   line-height: .8;
   user-select: none
}

.board-bg .n.o {
   color: transparent;
   -webkit-text-stroke: 2px rgba(255, 255, 255, .07);
   opacity: 1
}

.board-bg .acc {
   color: var(--accent);
   opacity: .10
}

/* ---------- gutter images ----------
   Anchored to the viewport edges (not the content column) so they always
   sit at the far left/right on PC and wide monitors, well clear of content. */
.gutter-img {
   position: fixed;
   z-index: 1;
   width: 230px;
   border-radius: 14px;
   overflow: hidden;
   box-shadow: 0 30px 70px rgba(0, 0, 0, .55);
   display: none;
   border: 1px solid rgba(255, 255, 255, .06)
}

.gutter-img img {
   width: 100%;
   height: 100%;
   object-fit: cover
}

.gutter-img .cap {
   position: absolute;
   left: 0;
   bottom: 0;
   right: 0;
   font-family: var(--num);
   font-weight: 700;
   letter-spacing: .06em;
   font-size: 12px;
   color: #fff;
   padding: 18px 12px 9px;
   background: linear-gradient(transparent, rgba(0, 0, 0, .7))
}

/* left gutter */
.gi-1 {
   top: 90px;
   left: 40px
}

.gi-2 {
   top: 300px;
   left: 70px;
   width: 200px
}

/* right gutter */
.gi-3 {
   top: 90px;
   right: 40px
}

.gi-4 {
   top: 470px;
   right: 70px;
   width: 200px
}

.lp {
   position: relative;
   z-index: 2;
   width: 100%;
   max-width: var(--col);
   background: var(--paper);
   min-height: 100vh;
   box-shadow: 0 0 80px rgba(0, 0, 0, .5)
}

/* ---------- shared ---------- */
section {
   padding: 64px 22px
}

.eyebrow {
   font-family: var(--num);
   font-weight: 700;
   letter-spacing: .18em;
   text-transform: uppercase;
   font-size: 12px;
   color: var(--accent);
   display: flex;
   align-items: center;
   gap: 9px
}

.eyebrow::before {
   content: "";
   width: 26px;
   height: 2px;
   background: var(--accent)
}

.h2 {
   font-family: var(--jp);
   font-weight: 900;
   font-size: 27px;
   line-height: 1.35;
   letter-spacing: .01em;
   margin: 14px 0 6px
}

.h2 .br {
   color: var(--accent)
}

.lead {
   color: var(--muted);
   font-size: 14.5px;
   margin-top: 10px
}

/* ---------- hero ---------- */
.hero {
   background:
      radial-gradient(130% 90% at 70% 0%, #1d2b3e 0%, var(--ink) 55%, #08111d 100%);
   color: #fff;
   padding: 34px 22px 46px;
   position: relative;
   overflow: hidden
}

.hero .field {
   position: absolute;
   inset: 0;
   opacity: .5;
   pointer-events: none
}

.hero .field span {
   position: absolute;
   font-family: var(--num);
   font-weight: 900;
   color: #fff;
   opacity: .05
}

.hero-inner {
   position: relative;
   z-index: 2;
   text-align: center;
   max-width: 430px;
   margin: 0 auto
}

.hero .chip {
   display: inline-flex;
   align-items: center;
   gap: 7px;
   font-size: 11px;
   font-weight: 700;
   color: #cfe0f2;
   border: 1px solid rgba(255, 255, 255, .22);
   border-radius: 30px;
   padding: 6px 13px;
   letter-spacing: .02em;
   line-height: 1.5
}

.hero .chip i {
   width: 6px;
   height: 6px;
   border-radius: 50%;
   background: var(--accent);
   display: inline-block;
   flex-shrink: 0
}

.hero h1 {
   font-family: var(--jp);
   font-weight: 900;
   font-size: 40px;
   line-height: 1.25;
   margin: 20px 0 6px;
   letter-spacing: .02em
}

.hero h1 .o {
   color: var(--accent)
}

.hero .pname {
   font-family: var(--num);
   font-weight: 700;
   font-size: 17px;
   letter-spacing: .1em;
   color: #aebfd2
}

.hero p.sub {
   color: #c4d2e2;
   font-size: 14px;
   margin: 16px auto 0;
   max-width: 330px
}

.hero-img {
   margin: 26px -10px 0;
   position: relative
}

.hero-img img {
   width: 100%;
   border-radius: 14px;
   filter: drop-shadow(0 24px 40px rgba(0, 0, 0, .5))
}

.btn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 10px;
   width: 100%;
   background: var(--accent);
   color: #fff;
   font-family: var(--jp);
   font-weight: 900;
   font-size: 17px;
   letter-spacing: .04em;
   border: none;
   padding: 18px;
   border-radius: 13px;
   cursor: pointer;
   text-decoration: none;
   box-shadow: 0 12px 26px rgba(255, 70, 18, .42);
   transition: .2s;
   margin-top: 26px
}

.btn:hover {
   background: var(--accent-d);
   transform: translateY(-2px)
}

.btn.ghost {
   background: transparent;
   border: 1.5px solid rgba(255, 255, 255, .3);
   color: #fff;
   box-shadow: none;
   font-size: 14px;
   padding: 14px;
   margin-top: 12px
}

/* price + points */
.pricebox {
   margin-top: 18px
}

.pricebox .pr {
   font-size: 13px;
   color: #9fb2c8
}

.pricebox .pr b {
   font-family: var(--num);
   font-size: 26px;
   color: #fff;
   font-weight: 900;
   vertical-align: -2px;
   margin: 0 2px
}

.pointline {
   margin-top: 8px;
   display: inline-block;
   background: rgba(255, 70, 18, .14);
   border: 1px solid rgba(255, 70, 18, .45);
   color: #FFB196;
   font-weight: 700;
   font-size: 13px;
   border-radius: 8px;
   padding: 6px 14px
}

/* ---------- problem ---------- */
.problem {
   background: var(--paper)
}

.prob-list {
   margin-top: 22px;
   display: flex;
   flex-direction: column;
   gap: 12px
}

.prob {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 13px;
   padding: 16px 16px 16px 52px;
   position: relative;
   font-weight: 500;
   font-size: 14.5px
}

.prob::before {
   content: "✕";
   position: absolute;
   left: 16px;
   top: 50%;
   transform: translateY(-50%);
   width: 24px;
   height: 24px;
   border-radius: 50%;
   background: #FFE9E2;
   color: var(--accent);
   font-size: 12px;
   font-weight: 700;
   display: grid;
   place-items: center
}

.prob b {
   color: var(--ink)
}

.turn {
   margin-top: 24px;
   text-align: center;
   font-family: var(--jp);
   font-weight: 900;
   font-size: 21px;
   line-height: 1.5
}

.turn .o {
   color: var(--accent)
}

.turn .small {
   display: block;
   font-size: 13px;
   font-weight: 500;
   color: var(--muted);
   margin-top: 6px
}

/* ---------- pillars ---------- */
.pillars {
   background: var(--ink);
   color: #fff
}

.pillars .h2 {
   color: #fff
}

.pillars .lead {
   color: #aebfd2
}

.pillar-row {
   margin-top: 26px;
   display: flex;
   flex-direction: column;
   gap: 14px
}

.pillar {
   display: flex;
   gap: 16px;
   align-items: flex-start;
   border-bottom: 1px solid rgba(255, 255, 255, .1);
   padding-bottom: 14px
}

.pillar:last-child {
   border-bottom: none
}

.pillar .pn {
   font-family: var(--num);
   font-weight: 900;
   font-size: 30px;
   color: var(--accent);
   line-height: 1.15;
   min-width: 44px
}

.pillar .pt {
   font-family: var(--jp);
   font-weight: 700;
   font-size: 16.5px
}

.pillar .pd {
   font-size: 13px;
   color: #aebfd2;
   margin-top: 3px
}

/* ---------- mechanism ---------- */
.mech {
   background: var(--paper)
}

.mech .note {
   background: #EEF2F7;
   border-radius: 11px;
   padding: 13px 15px;
   font-size: 12.5px;
   color: var(--muted);
   margin-top: 20px;
   line-height: 1.7
}

.mech .note b {
   color: var(--ink)
}

.mcards {
   margin-top: 20px;
   display: flex;
   flex-direction: column;
   gap: 16px
}

.mcard {
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 15px;
   padding: 22px;
   position: relative;
   overflow: hidden
}

.mcard .big {
   position: absolute;
   right: -2px;
   top: -24px;
   font-family: var(--num);
   font-weight: 900;
   font-size: 110px;
   color: var(--accent);
   opacity: .08;
   line-height: 1
}

.mcard .tag {
   font-family: var(--num);
   font-weight: 700;
   color: var(--accent);
   font-size: 13px;
   letter-spacing: .1em
}

.mcard h3 {
   font-family: var(--jp);
   font-weight: 900;
   font-size: 19px;
   margin: 5px 0 8px;
   position: relative;
   z-index: 2
}

.mcard p {
   font-size: 13.5px;
   color: #48566a;
   position: relative;
   z-index: 2
}

/* ---------- quality ---------- */
.quality {
   background: var(--board);
   color: #fff
}

.quality .h2 {
   color: #fff
}

.q-photos {
   margin-top: 24px;
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 12px
}

.q-photos figure {
   border-radius: 13px;
   overflow: hidden;
   position: relative;
   background: #1d2229
}

.q-photos img {
   width: 100%;
   height: 190px;
   object-fit: cover
}

.q-photos figcaption {
   font-size: 12px;
   color: #cdd8e4;
   padding: 11px 13px;
   font-weight: 500;
   line-height: 1.6
}

.q-points {
   margin-top: 20px;
   display: flex;
   flex-direction: column;
   gap: 11px
}

.q-point {
   display: flex;
   gap: 12px;
   align-items: flex-start;
   font-size: 14px
}

.q-point .ck {
   color: var(--accent);
   font-family: var(--num);
   font-weight: 900;
   font-size: 16px;
   line-height: 1.6
}

.q-point b {
   font-weight: 700
}

.q-specs {
   margin-top: 22px;
   display: grid;
   grid-template-columns: 1fr 1fr 1fr;
   gap: 9px
}

.q-spec {
   background: #1d232b;
   border: 1px solid rgba(255, 255, 255, .09);
   border-radius: 11px;
   padding: 12px 8px;
   text-align: center
}

.q-spec .v {
   font-family: var(--num);
   font-weight: 900;
   font-size: 15px;
   line-height: 1.3
}

.q-spec .v small {
   font-size: 11px;
   font-weight: 700
}

.q-spec .l {
   font-size: 10.5px;
   color: #9fb2c8;
   margin-top: 3px
}

/* ---------- usage by event (text cards) ---------- */
.usage {
   background: var(--paper)
}

.uitem {
   margin-top: 16px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 15px;
   padding: 18px
}

.uitem .ev {
   display: inline-flex;
   align-items: center;
   gap: 8px;
   background: var(--ink);
   color: #fff;
   font-family: var(--jp);
   font-weight: 700;
   font-size: 12.5px;
   padding: 6px 13px;
   border-radius: 30px;
   margin-bottom: 11px
}

.uitem .ev b {
   color: var(--accent);
   font-family: var(--num);
   letter-spacing: .06em
}

.uitem .how {
   font-weight: 700;
   font-size: 14.5px;
   margin-bottom: 8px;
   line-height: 1.7
}

.uitem .eff {
   font-size: 12.5px;
   color: var(--muted)
}

.uitem .eff span {
   display: inline-block;
   background: #FFF1EC;
   color: var(--accent-d);
   border-radius: 6px;
   padding: 3px 9px;
   margin: 2px 4px 2px 0;
   font-weight: 700;
   font-size: 11.5px
}

/* ---------- injury ---------- */
.injury {
   background: var(--navy);
   color: #fff;
   position: relative;
   overflow: hidden
}

.injury .ghostnum {
   position: absolute;
   right: -20px;
   bottom: -40px;
   font-family: var(--num);
   font-weight: 900;
   font-size: 190px;
   opacity: .06;
   color: #fff;
   line-height: .8
}

.injury .h2 {
   color: #fff;
   position: relative;
   z-index: 2
}

.inj-card {
   background: rgba(255, 255, 255, .07);
   border: 1px solid rgba(255, 255, 255, .13);
   border-radius: 14px;
   padding: 18px;
   margin-top: 16px;
   position: relative;
   z-index: 2
}

.inj-card h3 {
   font-family: var(--jp);
   font-weight: 900;
   font-size: 16.5px;
   line-height: 1.5;
   margin-bottom: 8px
}

.inj-card h3 .o {
   color: #FF8A5E
}

.inj-card p {
   font-size: 13px;
   color: #cfdcec
}

/* ---------- 10 functions ---------- */
.func {
   background: var(--ink);
   color: #fff
}

.func .h2 {
   color: #fff
}

.func .lead {
   color: #aebfd2
}

/* trainer profile card */
.trainer-card {
   margin-top: 24px;
   background: #fff;
   color: var(--ink);
   border-radius: 16px;
   overflow: hidden
}

.trainer-card .top {
   display: flex;
   gap: 16px;
   padding: 18px;
   align-items: center
}

.trainer-card .top img {
   width: 74px;
   height: 74px;
   border-radius: 50%;
   object-fit: cover;
   border: 2px solid var(--line);
   flex-shrink: 0
}

.trainer-card .nm {
   font-family: var(--jp);
   font-weight: 900;
   font-size: 17px
}

.trainer-card .ti {
   font-size: 12px;
   color: var(--muted);
   margin-top: 2px;
   line-height: 1.55
}

.trainer-card .ig {
   font-family: var(--num);
   font-weight: 700;
   color: var(--navy);
   font-size: 12.5px;
   margin-top: 5px;
   letter-spacing: .02em
}

.igbtn {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 9px;
   margin: 0 18px 18px;
   background: linear-gradient(100deg, #0C1D33, #143A66);
   color: #fff;
   font-family: var(--jp);
   font-weight: 700;
   font-size: 12.5px;
   letter-spacing: .01em;
   line-height: 1.5;
   text-align: center;
   border-radius: 11px;
   padding: 14px 12px;
   text-decoration: none;
   transition: .2s
}

.igbtn:hover {
   opacity: .9
}

.igbtn .cam {
   width: 18px;
   height: 18px;
   border: 2px solid #fff;
   border-radius: 6px;
   position: relative;
   flex-shrink: 0
}

.igbtn .cam::before {
   content: "";
   position: absolute;
   inset: 3.5px;
   border: 2px solid #fff;
   border-radius: 50%
}

.igbtn .cam::after {
   content: "";
   position: absolute;
   top: 1px;
   right: 1px;
   width: 3px;
   height: 3px;
   border-radius: 50%;
   background: #fff
}

/* numbered training list */
.flist {
   margin-top: 20px;
   display: flex;
   flex-direction: column;
   gap: 9px
}

.frow {
   background: #171f2b;
   border: 1px solid rgba(255, 255, 255, .08);
   border-radius: 12px;
   padding: 13px 15px;
   display: flex;
   gap: 14px;
   align-items: center
}

.frow .fn {
   font-family: var(--num);
   font-weight: 900;
   font-size: 17px;
   color: #fff;
   background: var(--accent);
   min-width: 34px;
   height: 34px;
   border-radius: 9px;
   display: grid;
   place-items: center;
   line-height: 1;
   flex-shrink: 0
}

.frow .fnm {
   font-family: var(--jp);
   font-weight: 700;
   font-size: 14.5px;
   line-height: 1.4
}

.frow .fcat {
   font-size: 11.5px;
   color: #8fa2b8;
   margin-top: 2px
}

/* ---------- spec table ---------- */
.spec {
   background: var(--paper)
}

.set-cards {
   margin-top: 22px;
   display: flex;
   flex-direction: column;
   gap: 11px
}

.set-card {
   background: #fff;
   border: 1.5px solid var(--ink);
   border-radius: 13px;
   padding: 15px 17px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   gap: 12px
}

.set-card .sk {
   font-family: var(--jp);
   font-weight: 900;
   font-size: 15.5px;
   flex-shrink: 0
}

.set-card .sv {
   font-size: 12.5px;
   color: #48566a;
   text-align: right;
   line-height: 1.6
}

.spec-table {
   margin-top: 18px;
   background: #fff;
   border: 1px solid var(--line);
   border-radius: 15px;
   overflow: hidden
}

.spec-row {
   display: flex;
   border-bottom: 1px solid var(--line);
   font-size: 13px
}

.spec-row:last-child {
   border-bottom: none
}

.spec-row .k {
   width: 88px;
   flex-shrink: 0;
   background: #F0F3F7;
   padding: 13px 14px;
   font-weight: 700;
   color: var(--ink);
   line-height: 1.6
}

.spec-row .v {
   padding: 13px 15px;
   color: #48566a;
   line-height: 1.7
}

/* ---------- final cta ---------- */
.final {
   background:
      radial-gradient(120% 90% at 50% 0, #1d2b3e, var(--ink) 60%);
   color: #fff;
   text-align: center;
   padding: 60px 22px 70px
}

.final .pname {
   font-family: var(--num);
   font-weight: 700;
   letter-spacing: .1em;
   color: #aebfd2;
   font-size: 14px
}

.final h2 {
   font-family: var(--jp);
   font-weight: 900;
   font-size: 28px;
   margin: 8px 0 18px;
   line-height: 1.4
}

.final h2 .o {
   color: var(--accent)
}

.final .pr {
   font-size: 13px;
   color: #9fb2c8
}

.final .pr b {
   font-family: var(--num);
   font-weight: 900;
   font-size: 42px;
   color: #fff;
   vertical-align: -3px;
   margin: 0 3px
}

.final .pointline {
   margin-top: 12px
}

/* ---------- sticky CTA (all devices) ----------
   On mobile/tablet the site's .pane-globalnav is fixed at bottom:0,
   so the CTA bar sits --nav-h above it to avoid overlap.
   On PC (>=1260px) the global nav is hidden, so it drops to bottom:0. */
.sticky {
   position: fixed;
   left: 0;
   right: 0;
   bottom: var(--nav-h);
   z-index: 9990;
   background: rgba(12, 29, 51, .95);
   backdrop-filter: blur(8px);
   border-top: 1px solid rgba(255, 255, 255, .1);
   padding: 11px 16px;
   display: flex;
   align-items: center;
   gap: 14px;
   max-width: var(--col);
   margin: 0 auto
}

.sticky .pr {
   color: #fff;
   flex-shrink: 0
}

.sticky .pr .yen {
   font-family: var(--num);
   font-weight: 900;
   font-size: 20px
}

.sticky .pr .lb {
   font-size: 10px;
   color: #9fb2c8;
   display: block;
   line-height: 1.2
}

.sticky .sbtn {
   flex: 1;
   background: var(--accent);
   color: #fff;
   font-family: var(--jp);
   font-weight: 900;
   font-size: 15px;
   border: none;
   border-radius: 10px;
   padding: 14px;
   text-align: center;
   text-decoration: none;
   box-shadow: 0 6px 16px rgba(255, 70, 18, .4)
}

.pane-footer {
    display: none;
}

.ecbn-selection-description.vsm-selection-description {
    display: none;
}

.ecbn-selection-to-nextpage.vsm-selection-to-nextpage {
    display: none;
}

/* =========================================================
   PC / wide monitor ( >=1260px )
   Breakpoint chosen so the 750px column leaves >=255px of gutter
   on each side — enough for the edge images to sit at the far
   left/right WITHOUT ever touching the content column.
   ( (1260 - 750) / 2 = 255px gutter ;  image 190 + edge 26 = 216 < 255 )
   ========================================================= */
@media(min-width:1260px) {

   .gutter-img {
      display: block;
      width: 190px
   }

   /* global nav is hidden on PC, so the CTA bar sits at the very bottom
      and matches the widened content column */
   .sticky {
      bottom: 0;
      max-width: var(--col-wide)
   }

   body {
      padding-bottom: 90px
   }

   footer {
      padding-bottom: 40px
   }

   /* widen the centered content column to ~750px */
   .lp {
      max-width: var(--col-wide)
   }

   /* gutter images pinned to the viewport edges, staggered by top */
   .gi-1 {
      top: 96px;
      left: 26px;
      width: 190px
   }

   .gi-2 {
      top: 300px;
      left: 26px;
      width: 172px
   }

   .gi-3 {
      top: 96px;
      right: 26px;
      width: 190px
   }

   .gi-4 {
      top: 470px;
      right: 26px;
      width: 172px
   }

   /* more generous section padding at the wider width */
   section {
      padding: 84px 64px
   }

   /* keep long-form reading blocks from stretching too wide;
      cap inner content and center it within the 750px column */
   .prob-list,
   .pillar-row,
   .mcards,
   .mech .note,
   .q-points,
   .q-specs,
   .flist,
   .set-cards,
   .spec-table,
   .trainer-card {
      max-width: 620px;
      margin-left: auto;
      margin-right: auto
   }

   .q-points,
   .q-specs,
   .flist,
   .set-cards,
   .spec-table {
      margin-top: 22px
   }

   /* hero stays centered and calm */
   .hero {
      padding: 56px 64px 60px
   }

   .hero-img {
      max-width: 460px;
      margin: 26px auto 0
   }

   /* usage cards: two-up on the wider column */
   .usage .uitem {
      display: inline-block;
      width: calc(50% - 8px);
      vertical-align: top;
      margin-top: 16px
   }

   .usage .uitem:nth-child(odd) {
      margin-right: 12px
   }
}

/* wide monitors ( >=1600px ): larger edge images, still hugging the edges.
   Gutter grows to (1600-750)/2 = 425px, so 240px images + 40px edge clear easily. */
@media(min-width:1600px) {

   .gi-1,
   .gi-3 {
      width: 240px
   }

   .gi-2,
   .gi-4 {
      width: 210px
   }

   .gi-1 {
      left: 40px
   }

   .gi-2 {
      left: 40px
   }

   .gi-3 {
      right: 40px
   }

   .gi-4 {
      right: 40px
   }
}

@media(max-width:767px) {
   body {
      padding-top: 27px;
   }
   .wrapper {
    padding-top: 0px;
}
}

@media(max-width:380px) {
   .hero h1 {
      font-size: 33px
   }

   .h2 {
      font-size: 24px
   }
}

/* =========================================================
   visumo（Instagram連携）のタイトル調整
   Instagramロゴ（img）を「トレーニング動画」テキストの真横・縦中央に揃える。
   visumo のスタイルが後から注入されても勝てるよう、要素が持つ
   .vsm-selection-title を併記して詳細度を一段上げている。
   ========================================================= */
.ecbn-selection-page-wrapper .ecbn-selection-title.vsm-selection-title,
.ecbn-selection-wrapper .ecbn-selection-title.vsm-selection-title {
   display: flex;
   align-items: center;
   /* ロゴとテキストを縦中央で揃える */
   justify-content: center;
   /* 全体を中央寄せ（従来の text-align: center 相当） */
   gap: 8px;
   /* ロゴとテキストの間隔 */
}
 
.ecbn-selection-page-wrapper .ecbn-selection-title.vsm-selection-title img,
.ecbn-selection-wrapper .ecbn-selection-title.vsm-selection-title img {
   margin: 0;
   /* -4px の上ズレ・右マージンをリセット（間隔は gap で確保） */
   margin-top: 0;
   vertical-align: middle;
   flex-shrink: 0;
   /* 幅が詰まってもロゴが潰れない */
}