@charset "UTF-8";

/* =========================================================
       配色は同梱イラスト（pattern-tickets）から実測して構成。
       レイアウト方針は白 / 淡いブルーグレーの交互配置、罫線は最小限にして
       背景色の差とやわらかい影で区切る。
       ========================================================= */
:root {
  --lp-navy: #1b3a72;
  --lp-navy-deep: #14284f;
  --lp-blue: #2a5da0;
  --lp-blue-bright: #3d7ad4;
  --lp-teal: #2fa8b4;
  --lp-gold: #f2c14e;

  --lp-ink: #1d2b45;
  --lp-body: #56637a;
  --lp-mute: #8a94a6;

  --lp-paper: #ffffff;
  --lp-sky: #f4f8fc;
  --lp-line: #e4eaf3;

  --lp-shadow-sm: 0 2px 8px rgba(27, 58, 114, 0.06);
  --lp-shadow: 0 4px 20px rgba(27, 58, 114, 0.08);
  --lp-shadow-lg: 0 16px 44px rgba(27, 58, 114, 0.14);

  --lp-r: 12px;
  --lp-r-sm: 8px;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--lp-paper);
  color: var(--lp-body);
  font-family: var(--vx-font-sans);
  letter-spacing: 0;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
}

.lp-container {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* ---------------- nav ---------------- */

.lp-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--lp-line);
}

.lp-nav-inner {
  min-height: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.lp-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-navy);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  min-width: 0;
}

.lp-brand img {
  width: 62px;
  height: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.lp-brand span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.lp-nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
  flex-wrap: wrap;
}

.lp-nav-links a {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 14px;
  border-radius: var(--lp-r-sm);
  color: var(--lp-body);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition:
    color 160ms ease,
    background 160ms ease;
}

.lp-nav-links a:hover {
  background: var(--lp-sky);
  color: var(--lp-navy);
}

.lp-nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* ---------------- buttons ---------------- */

.lp-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 0 26px;
  border-radius: var(--lp-r-sm);
  border: 1px solid transparent;
  font-size: 15px;
  font-weight: 800;
  line-height: 1.3;
  text-decoration: none;
  white-space: nowrap;
  transition:
    background 170ms ease,
    color 170ms ease,
    border-color 170ms ease,
    box-shadow 170ms ease,
    transform 170ms ease;
}

.lp-btn:hover {
  transform: translateY(-1px);
}

.lp-btn-sm {
  min-height: 40px;
  padding: 0 18px;
  font-size: 14px;
}

.lp-btn-primary {
  background: var(--lp-navy);
  color: #fff;
  box-shadow: 0 6px 18px rgba(27, 58, 114, 0.24);
}

.lp-btn-primary:hover {
  background: #16305f;
  color: #fff;
}

.lp-btn-outline {
  background: #fff;
  border-color: var(--lp-line);
  color: var(--lp-navy);
}

.lp-btn-outline:hover {
  border-color: var(--lp-navy);
  color: var(--lp-navy);
}

.lp-btn-line {
  background: #06c755;
  color: #fff;
  box-shadow: 0 6px 18px rgba(6, 199, 85, 0.26);
}

.lp-btn-line:hover {
  background: #05b04b;
  color: #fff;
}

.lp-btn-ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.36);
  color: #fff;
}

.lp-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
}

.lp-btn-white {
  background: #fff;
  color: var(--lp-navy);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}

.lp-btn-white:hover {
  background: #f2f6fc;
  color: var(--lp-navy);
}

/* ---------------- hero ---------------- */

.lp-hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--lp-sky);
}

/* 同梱イラストを敷き、左からの白スクリムで見出しの可読性を確保する */
.lp-hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
  background-image: url("../images/lp/pattern-tickets.webp");
  background-size: cover;
  background-position: center right;
}

.lp-hero-scrim {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(
    100deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.94) 34%,
    rgba(255, 255, 255, 0.72) 58%,
    rgba(244, 248, 252, 0.46) 100%
  );
}

.lp-hero-inner {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 88px;
}

.lp-hero-copy {
  max-width: 660px;
}

.lp-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 14px;
  border-radius: 100px;
  background: #fff;
  color: var(--lp-blue);
  font-size: 13px;
  font-weight: 800;
  margin-bottom: 22px;
  box-shadow: var(--lp-shadow-sm);
}

.lp-hero h1 {
  color: var(--lp-navy);
  font-size: 50px;
  line-height: 1.24;
  font-weight: 800;
  letter-spacing: -0.01em;
  margin: 0 0 18px;
}

.lp-hero-catch {
  margin: 0 0 14px;
  color: var(--lp-blue);
  font-size: 22px;
  line-height: 1.6;
  font-weight: 800;
}

.lp-hero-lead {
  max-width: 34em;
  margin: 0;
  color: var(--lp-body);
  font-size: 16px;
  line-height: 1.95;
  font-weight: 500;
}

.lp-proof {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  padding: 9px 16px;
  border-radius: 100px;
  background: #fff;
  color: var(--lp-navy);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.5;
  box-shadow: var(--lp-shadow-sm);
}

.lp-proof i {
  color: var(--lp-teal);
  font-size: 17px;
}

.lp-proof em {
  font-style: normal;
  font-weight: 600;
  color: var(--lp-mute);
  font-size: 13px;
}

.lp-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.lp-hero-points {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 56px;
}

.lp-hero-point {
  padding: 20px 18px;
  border-radius: var(--lp-r);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: var(--lp-shadow);
  color: var(--lp-body);
  font-size: 13px;
  line-height: 1.7;
  font-weight: 500;
}

.lp-hero-point i {
  display: block;
  color: var(--lp-teal);
  font-size: 24px;
  margin-bottom: 10px;
}

.lp-hero-point strong {
  display: block;
  color: var(--lp-navy);
  font-size: 14.5px;
  font-weight: 800;
  margin-bottom: 5px;
}

/* ---------------- shop cards ---------------- */

.lp-logos {
  background: #fff;
  padding: 56px 0 72px;
  scroll-margin-top: 86px;
}

.lp-logos-title {
  text-align: center;
  margin: 0 0 26px;
  color: var(--lp-mute);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.lp-logo-wall {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.lp-shop-card {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  min-height: 148px;
  padding: 18px;
  border-radius: var(--lp-r-sm);
  border: 1px solid var(--lp-line);
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
}

.lp-shop-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 82px;
  height: 82px;
  padding: 10px;
  border-radius: var(--lp-r-sm);
  background: var(--lp-sky);
  border: 1px solid #edf2f8;
}

.lp-shop-logo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}

.lp-shop-body {
  min-width: 0;
}

.lp-shop-body h3 {
  margin: 0 0 7px;
  color: var(--lp-navy);
  font-size: 16px;
  font-weight: 800;
  line-height: 1.45;
  letter-spacing: 0;
}

.lp-shop-address {
  margin: 0 0 10px;
  color: var(--lp-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

/* 住所 → Googleマップ。lp.html は vuexy.css を読まないので同名クラスをこちらにも置く */
.vx-address-link {
  display: inline-flex;
  align-items: flex-start;
  gap: 4px;
  color: inherit;
  text-decoration: none;
}

.vx-address-link i {
  flex-shrink: 0;
  /* 折り返して複数行になっても、ピンは1行目の文字に揃える */
  margin-top: 0.15em;
  color: var(--lp-navy);
  font-size: 15px;
}

.vx-address-link:hover {
  color: var(--lp-blue);
  text-decoration: underline;
}

.lp-shop-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex-wrap: wrap;
}

.lp-shop-type {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border-radius: 100px;
  background: #eaf6f8;
  color: #1c7480;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
}

.lp-shop-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  min-height: 28px;
  color: var(--lp-navy);
  font-size: 12px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}

.lp-shop-link i {
  font-size: 15px;
}

.lp-shop-link:hover {
  color: var(--lp-blue);
}

.lp-shop-empty {
  grid-column: 1 / -1;
  padding: 34px 24px;
  border-radius: var(--lp-r-sm);
  border: 1px solid var(--lp-line);
  background: var(--lp-sky);
  color: var(--lp-body);
  font-size: 14px;
  font-weight: 700;
  text-align: center;
}

/* ---------------- section ---------------- */

.lp-section {
  padding: 104px 0;
  background: #fff;
  scroll-margin-top: 86px;
}

.lp-section.is-sky {
  background: var(--lp-sky);
}

.lp-section-head {
  max-width: 780px;
  margin-bottom: 52px;
}

.lp-section-head.is-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.lp-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--lp-blue);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.lp-label i {
  font-size: 16px;
}

.lp-section h2 {
  margin: 0;
  color: var(--lp-navy);
  font-size: 38px;
  line-height: 1.38;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lp-section-copy {
  margin: 18px 0 0;
  color: var(--lp-body);
  font-size: 16px;
  line-height: 2;
  font-weight: 500;
}

/* ---------------- 見出し横の余白に敷くイラスト ----------------
       セクション見出しは本文を 720px 幅に抑えているので、右側に常に余白が空く。
       そこへイラストを背景として置く。本文側は padding-right で退避させるため、
       文字とイラストが重なることはない。
       2レイヤー目の radial-gradient は、白背景でイラストが浮かないための淡いハロー。 */
.lp-section-head.has-art {
  --art-h: 290px;
  max-width: none;
  padding-right: 400px;
  min-height: var(--art-h);
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-repeat: no-repeat, no-repeat;
  background-position:
    right center,
    right center;
  background-size:
    auto var(--art-h),
    calc(var(--art-h) * 1.6) calc(var(--art-h) * 1.6);
}

.art-payment {
  --art-h: 255px;
  background-image:
    url("../images/lp/art-payment.webp"),
    radial-gradient(circle, rgba(42, 93, 160, 0.1) 0%, rgba(42, 93, 160, 0) 64%);
}

.art-cards {
  --art-h: 290px;
  background-image:
    url("../images/lp/art-cards.webp"),
    radial-gradient(circle, rgba(42, 93, 160, 0.1) 0%, rgba(42, 93, 160, 0) 64%);
}

/* is-sky セクション上なので、ハローは白で抜く */
.art-dealer {
  --art-h: 315px;
  background-image:
    url("../images/lp/art-dealer.webp"),
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.9) 0%,
      rgba(255, 255, 255, 0) 66%
    );
}

/* 同じく is-sky。イラスト自体が淡いハローを持つので重ねる分は弱めにする */
.art-seat {
  --art-h: 300px;
  background-image:
    url("../images/lp/art-seat.webp"),
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.65) 0%,
      rgba(255, 255, 255, 0) 66%
    );
}

.art-fast {
  --art-h: 280px;
  background-image:
    url("../images/lp/art-fast.webp"),
    radial-gradient(circle, rgba(42, 93, 160, 0.1) 0%, rgba(42, 93, 160, 0) 64%);
}

.art-mobile-operations {
  --art-h: 330px;
  background-image:
    url("../images/lp/shop-mobile-operations.webp"),
    radial-gradient(
      circle,
      rgba(255, 255, 255, 0.86) 0%,
      rgba(255, 255, 255, 0) 66%
    );
}

/* ---------------- card ---------------- */

.lp-card {
  background: #fff;
  border-radius: var(--lp-r);
  box-shadow: var(--lp-shadow);
  padding: 30px;
}

.is-sky .lp-card {
  box-shadow: var(--lp-shadow-sm);
}

/* ---------------- 1つの残高 diagram ---------------- */

.lp-multi {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  gap: 56px;
  align-items: center;
}

.lp-diagram {
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
  padding: 36px 26px 30px;
  text-align: center;
}

.lp-balance {
  display: inline-grid;
  gap: 6px;
  padding: 20px 38px;
  border-radius: var(--lp-r);
  background: linear-gradient(135deg, var(--lp-navy), var(--lp-blue));
  color: #fff;
  box-shadow: 0 12px 28px rgba(27, 58, 114, 0.28);
}

.lp-balance small {
  font-size: 12px;
  font-weight: 700;
  opacity: 0.86;
}

.lp-balance b {
  font-size: 34px;
  line-height: 1.05;
  font-weight: 800;
}

/* 「ひとつの残高」から3店舗へ分岐するコネクタ。1:3 の関係が図として
       読めることがこのセクションの肝なので、アイコンではなく罫線で描く */
.lp-branch {
  --c: #c3d6f0;
  position: relative;
  height: 48px;
  margin: 14px 0 0;
}

.lp-branch::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 24px;
  transform: translateX(-50%);
  background: var(--c);
}

.lp-branch::after {
  content: "";
  position: absolute;
  top: 22px;
  left: 16.6667%;
  right: 16.6667%;
  height: 2px;
  background: var(--c);
}

.lp-branch span {
  position: absolute;
  top: 22px;
  width: 2px;
  height: 26px;
  background: var(--c);
  transform: translateX(-50%);
}

.lp-branch span:nth-child(1) {
  left: 16.6667%;
}
.lp-branch span:nth-child(2) {
  left: 50%;
}
.lp-branch span:nth-child(3) {
  left: 83.3333%;
}

.lp-shop-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.lp-shop-chip {
  padding: 14px 6px;
  border-radius: var(--lp-r-sm);
  background: var(--lp-sky);
  font-size: 14px;
  font-weight: 800;
  color: var(--lp-navy);
  line-height: 1.5;
}

.lp-shop-chip small {
  display: block;
  font-weight: 600;
  color: var(--lp-mute);
  font-size: 11px;
  margin-top: 3px;
}

.lp-vs {
  display: grid;
  gap: 18px;
}

.lp-vs-row {
  display: grid;
  grid-template-columns: 26px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  font-size: 16px;
  line-height: 1.95;
  font-weight: 500;
  color: var(--lp-body);
}

.lp-vs-row b {
  color: var(--lp-navy);
  font-weight: 800;
}

.lp-vs-row i {
  margin-top: 6px;
  font-size: 21px;
}

.lp-vs-bad i {
  color: #e0748a;
}
.lp-vs-good i {
  color: var(--lp-teal);
}

/* ---------------- shots ---------------- */

.lp-phone-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 32px;
  align-items: start;
}

.lp-phone-shot {
  margin: 0;
  display: grid;
  justify-items: center;
  gap: 18px;
}

.lp-phone-frame {
  width: min(100%, 280px);
  border-radius: 28px;
  padding: 9px;
  background: var(--lp-navy-deep);
  box-shadow: var(--lp-shadow-lg);
  overflow: hidden;
}

.lp-phone-frame img {
  width: 100%;
  display: block;
  border-radius: 20px;
  background: #fff;
}

/* 横並びで高さを揃える箇所だけ上部トリミング。権利カードは全体を見せる */
.lp-phone-frame.is-cropped {
  aspect-ratio: 390 / 844;
}

.lp-phone-frame.is-cropped img {
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.lp-shot-caption {
  width: min(100%, 280px);
  color: var(--lp-body);
  line-height: 1.85;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
}

.lp-shot-caption strong {
  display: block;
  color: var(--lp-navy);
  font-size: 16px;
  font-weight: 800;
  margin-bottom: 6px;
}

.lp-two-col {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 56px;
  align-items: center;
}

.lp-pc-shot {
  margin: 0;
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
  overflow: hidden;
}

.lp-pc-shot img {
  display: block;
  width: 100%;
  background: #fff;
}

.lp-pc-shot figcaption {
  padding: 20px 24px;
  color: var(--lp-body);
  line-height: 1.9;
  font-size: 14.5px;
  font-weight: 500;
}

.lp-pc-shot figcaption b {
  color: var(--lp-navy);
  font-weight: 800;
}

.lp-pc-stack {
  display: grid;
  gap: 24px;
}

/* ---------------- navy band (divider / cta) ---------------- */

.lp-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background: var(--lp-navy);
  color: #fff;
  padding: 88px 0;
}

.lp-band.is-deep {
  background: var(--lp-navy-deep);
}

/* 同梱イラストを濃紺に馴染ませて敷く */
.lp-band::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: url("../images/lp/pattern-tickets-sm.webp");
  background-size: cover;
  background-position: center;
  opacity: 0.16;
  mix-blend-mode: luminosity;
}

.lp-band-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 40px;
  align-items: center;
}

.lp-band-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #7ad6de;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.lp-band h2 {
  margin: 0 0 16px;
  color: #fff;
  font-size: 38px;
  line-height: 1.38;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.lp-band p {
  margin: 0;
  color: rgba(255, 255, 255, 0.82);
  line-height: 2;
  font-size: 16px;
  font-weight: 500;
  max-width: 44em;
}

.lp-band p b {
  color: #fff;
  font-weight: 800;
}

.lp-band-actions {
  display: grid;
  gap: 12px;
}

/* ---------------- shop benefits ---------------- */

.lp-weapon-label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--lp-teal);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.lp-weapon-label b {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 26px;
  height: 26px;
  border-radius: 100px;
  background: var(--lp-teal);
  color: #fff;
  font-size: 12px;
  font-weight: 800;
}

.lp-benefit-list {
  display: grid;
  gap: 14px;
}

.lp-benefit {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 18px;
  align-items: start;
  padding: 24px 26px;
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.is-sky .lp-benefit {
  box-shadow: var(--lp-shadow-sm);
}

.lp-benefit i {
  width: 48px;
  height: 48px;
  border-radius: var(--lp-r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--lp-sky);
  color: var(--lp-blue);
  font-size: 23px;
}

.is-sky .lp-benefit i {
  background: #eaf1fa;
}

.lp-benefit strong {
  display: block;
  color: var(--lp-navy);
  margin-bottom: 6px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.5;
}

.lp-benefit span {
  display: block;
  color: var(--lp-body);
  line-height: 1.9;
  font-size: 14.5px;
  font-weight: 500;
}

/* ---------------- feature cards ---------------- */

.lp-grid-4 {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.lp-feature {
  border-radius: var(--lp-r);
  background: #fff;
  padding: 28px 24px;
  box-shadow: var(--lp-shadow);
}

.is-sky .lp-feature {
  box-shadow: var(--lp-shadow-sm);
}

.lp-feature i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--lp-r-sm);
  background: var(--lp-sky);
  color: var(--lp-blue);
  font-size: 23px;
  margin-bottom: 18px;
}

.is-sky .lp-feature i {
  background: #eaf1fa;
}

.lp-feature h3 {
  color: var(--lp-navy);
  font-size: 17px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0;
  line-height: 1.5;
}

.lp-feature p {
  margin: 0;
  color: var(--lp-body);
  line-height: 1.9;
  font-size: 14px;
  font-weight: 500;
}

.lp-feature p b {
  color: var(--lp-navy);
  font-weight: 800;
}

/* ---------------- rights: pain / flow / annotation ---------------- */

.lp-pain {
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
  padding: 34px 36px;
  border-left: 4px solid #e0748a;
}

.lp-pain h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 20px;
  font-weight: 800;
  color: var(--lp-navy);
  margin: 0 0 18px;
  letter-spacing: 0;
}

.lp-pain h3 i {
  color: #e0748a;
  font-size: 24px;
}

.lp-pain ul {
  margin: 0;
  padding-left: 22px;
  display: grid;
  gap: 10px;
}

.lp-pain li {
  color: var(--lp-body);
  font-size: 15.5px;
  line-height: 1.9;
  font-weight: 500;
}

.lp-flow {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 32px;
}

.lp-flow-step {
  position: relative;
  padding: 28px 24px;
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lp-flow-step::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -12px;
  transform: translateY(-50%);
  color: #bccce4;
  font-size: 14px;
  z-index: 2;
}

.lp-flow-step:last-child::after {
  content: none;
}

.lp-flow-no {
  width: 34px;
  height: 34px;
  border-radius: 100px;
  background: linear-gradient(135deg, var(--lp-navy), var(--lp-blue));
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 16px;
}

.lp-flow-step h3 {
  font-size: 16.5px;
  font-weight: 800;
  margin: 0 0 10px;
  letter-spacing: 0;
  color: var(--lp-navy);
  line-height: 1.5;
}

.lp-flow-step p {
  margin: 0;
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--lp-body);
  font-weight: 500;
}

.lp-flow-step p b {
  color: var(--lp-navy);
  font-weight: 800;
}

.lp-annotated {
  display: grid;
  grid-template-columns: minmax(220px, 0.42fr) minmax(0, 1fr);
  gap: 52px;
  align-items: center;
  margin-top: 32px;
  padding: 40px;
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.lp-annotated h3 {
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  margin: 0 0 22px;
  color: var(--lp-navy);
}

.lp-annotate-list {
  display: grid;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.lp-annotate-list li {
  display: grid;
  grid-template-columns: 122px minmax(0, 1fr);
  gap: 18px;
  align-items: baseline;
  font-size: 14.5px;
  line-height: 1.85;
  color: var(--lp-body);
  font-weight: 500;
}

.lp-annotate-list b {
  color: var(--lp-navy);
  font-size: 14.5px;
  font-weight: 800;
}

.lp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  overflow: hidden;
  background: #fff;
  border-radius: var(--lp-r);
  box-shadow: var(--lp-shadow);
}

.lp-table th,
.lp-table td {
  padding: 22px 26px;
  border-bottom: 1px solid var(--lp-line);
  vertical-align: top;
  font-size: 15px;
  line-height: 1.9;
  text-align: left;
  font-weight: 500;
  color: var(--lp-body);
}

.lp-table th {
  background: var(--lp-sky);
  color: var(--lp-navy);
  font-weight: 800;
  white-space: nowrap;
  font-size: 14px;
}

.lp-table td strong,
.lp-table td b {
  color: var(--lp-navy);
  font-weight: 800;
}

.lp-table tr:last-child td {
  border-bottom: none;
}

.lp-note {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 26px 28px;
  border-radius: var(--lp-r);
  background: #eaf6f8;
  color: #1c6c78;
  line-height: 2;
  font-size: 15px;
  font-weight: 500;
  margin-top: 24px;
}

.lp-note b {
  color: #124e58;
  font-weight: 800;
}

.lp-note i {
  font-size: 24px;
  margin-top: 3px;
  flex-shrink: 0;
  color: var(--lp-teal);
}

.lp-user-help-note {
  align-items: center;
  background: #eef5fc;
  color: #4b6078;
}

.lp-user-help-note b {
  color: var(--lp-navy);
}

.lp-user-help-link {
  margin-top: 16px;
  min-height: 42px;
  padding: 0 20px;
}

.lp-shop-help-link {
  margin-top: 16px;
  min-height: 42px;
  padding: 0 20px;
}

.lp-shop-help-note {
  margin: 0 0 52px;
  background: #fff;
  color: #4b6078;
  box-shadow: var(--lp-shadow-sm);
}

.lp-shop-help-note b {
  color: var(--lp-navy);
}

/* ---------------- pricing ---------------- */

.lp-price-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.lp-price-card {
  padding: 40px;
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
  display: grid;
  align-content: start;
  gap: 20px;
}

.lp-price-card.is-featured {
  background: linear-gradient(160deg, var(--lp-navy), var(--lp-navy-deep));
  box-shadow: 0 20px 48px rgba(27, 58, 114, 0.3);
}

.lp-price-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  /* グリッドアイテムは既定で stretch するため、両軸とも start に寄せる */
  align-self: start;
  justify-self: start;
  padding: 7px 16px;
  border-radius: 100px;
  background: var(--lp-sky);
  color: var(--lp-blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.is-featured .lp-price-badge {
  background: rgba(255, 255, 255, 0.18);
  color: #9fe4ea;
}

.lp-price-card h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--lp-navy);
}

.is-featured h3 {
  color: #fff;
}

.lp-price-amount {
  margin: 0;
  font-size: 46px;
  line-height: 1.05;
  font-weight: 800;
  color: var(--lp-navy);
  letter-spacing: -0.02em;
}

.is-featured .lp-price-amount {
  color: #fff;
}

.lp-price-amount small {
  font-size: 15px;
  font-weight: 700;
  color: var(--lp-mute);
  margin-left: 6px;
  letter-spacing: 0;
}

.is-featured .lp-price-amount small {
  color: rgba(255, 255, 255, 0.7);
}

.lp-price-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

/* グリッド2カラムにすると <b> と裸テキストが別々のグリッドアイテムになり、
       テキストがアイコン側のカラムへ回り込んで崩れる。
       アイコンを絶対配置にして、本文は通常のインラインフローのままにする */
.lp-price-list li {
  position: relative;
  padding-left: 30px;
  font-size: 15px;
  line-height: 1.85;
  color: var(--lp-body);
  font-weight: 500;
}

.is-featured .lp-price-list li {
  color: rgba(255, 255, 255, 0.88);
}

.lp-price-list li b {
  color: var(--lp-navy);
  font-weight: 800;
}

.is-featured .lp-price-list li b {
  color: #fff;
}

.lp-price-list i {
  position: absolute;
  left: 0;
  top: 6px;
  color: var(--lp-teal);
  font-size: 18px;
  line-height: 1;
}

.is-featured .lp-price-list i {
  color: #7ad6de;
}

.lp-price-note {
  margin: 0;
  padding-top: 18px;
  border-top: 1px solid var(--lp-line);
  font-size: 13.5px;
  line-height: 1.9;
  color: var(--lp-mute);
  font-weight: 500;
}

.is-featured .lp-price-note {
  border-top-color: rgba(255, 255, 255, 0.18);
  color: rgba(255, 255, 255, 0.66);
}

.lp-price-tax {
  margin-top: 22px;
  color: var(--lp-mute);
  font-size: 13px;
  line-height: 1.9;
  font-weight: 500;
}

/* ---------------- steps / needs ---------------- */

.lp-steps {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 16px;
}

.lp-step {
  padding: 26px 22px;
  border-radius: var(--lp-r);
  background: #fff;
  box-shadow: var(--lp-shadow);
}

.is-sky .lp-step {
  box-shadow: var(--lp-shadow-sm);
}

.lp-step-no {
  width: 32px;
  height: 32px;
  border-radius: 100px;
  background: var(--lp-sky);
  color: var(--lp-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  margin-bottom: 14px;
}

.lp-step h3 {
  font-size: 16px;
  font-weight: 800;
  margin: 0 0 8px;
  letter-spacing: 0;
  color: var(--lp-navy);
  line-height: 1.5;
}

.lp-step p {
  font-size: 13.5px;
  line-height: 1.9;
  margin: 0;
  color: var(--lp-body);
  font-weight: 500;
}

.lp-needs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.lp-need {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  padding: 22px;
  border-radius: var(--lp-r);
  background: var(--lp-sky);
}

.is-sky .lp-need {
  background: #fff;
  box-shadow: var(--lp-shadow-sm);
}

.lp-need i {
  width: 44px;
  height: 44px;
  border-radius: var(--lp-r-sm);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  color: var(--lp-blue);
  font-size: 21px;
}

.is-sky .lp-need i {
  background: var(--lp-sky);
}

.lp-need strong {
  display: block;
  color: var(--lp-navy);
  font-size: 15px;
  font-weight: 800;
  margin-bottom: 4px;
  line-height: 1.5;
}

.lp-need span {
  display: block;
  color: var(--lp-body);
  font-size: 13px;
  line-height: 1.85;
  font-weight: 500;
}

/* ---------------- faq ---------------- */

.lp-faq {
  display: grid;
  gap: 12px;
  max-width: 880px;
  margin: 0 auto;
}

.lp-faq details {
  border-radius: var(--lp-r);
  background: #fff;
  padding: 0 28px;
  box-shadow: var(--lp-shadow-sm);
}

.lp-faq summary {
  cursor: pointer;
  list-style: none;
  padding: 24px 0;
  font-weight: 800;
  color: var(--lp-navy);
  font-size: 16px;
  line-height: 1.6;
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.lp-faq summary::-webkit-details-marker {
  display: none;
}

.lp-faq summary::before {
  content: "Q";
  width: 26px;
  height: 26px;
  border-radius: var(--lp-r-sm);
  background: var(--lp-sky);
  color: var(--lp-blue);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  flex-shrink: 0;
  margin-top: 1px;
}

.lp-faq p {
  margin: 0;
  padding: 0 0 24px 40px;
  line-height: 2;
  font-size: 15px;
  color: var(--lp-body);
  font-weight: 500;
}

/* ---------------- final cta ---------------- */

.lp-cta-split {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.lp-cta-card {
  padding: 38px;
  border-radius: var(--lp-r);
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  display: grid;
  align-content: start;
  gap: 14px;
}

.lp-cta-card h2 {
  margin: 0;
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  letter-spacing: -0.01em;
  line-height: 1.5;
}

.lp-cta-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  line-height: 1.95;
  font-size: 15px;
  font-weight: 500;
}

.lp-cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.lp-cta-sub {
  margin: 0;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  line-height: 1.85;
  font-weight: 500;
}

/* ---------------- footer ---------------- */

.lp-footer {
  background: #fff;
  border-top: 1px solid var(--lp-line);
  padding: 34px 0;
  color: var(--lp-mute);
  font-size: 13px;
  font-weight: 500;
}

.lp-footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.lp-footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.lp-footer-links a {
  color: var(--lp-body);
  text-decoration: none;
  font-weight: 600;
}

.lp-footer-links a:hover {
  color: var(--lp-blue);
}

/* ---------------- responsive ---------------- */

@media (max-width: 1080px) {
  .lp-nav-inner {
    align-items: flex-start;
    flex-direction: column;
    padding: 14px 0;
  }

  .lp-nav-links {
    width: 100%;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
    padding-bottom: 4px;
  }

  .lp-nav-actions {
    width: 100%;
  }

  .lp-nav-actions .lp-btn {
    flex: 1;
  }

  .lp-section,
  .lp-logos {
    scroll-margin-top: 176px;
  }

  /* 背景イラストが見出しに干渉する帯を潰す */
  .lp-hero-scrim {
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 0.95) 0%,
      rgba(255, 255, 255, 0.9) 62%,
      rgba(244, 248, 252, 0.8) 100%
    );
  }

  .lp-multi,
  .lp-two-col,
  .lp-annotated,
  .lp-band-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .lp-grid-4,
  .lp-needs,
  .lp-flow,
  .lp-hero-points {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-logo-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .lp-flow-step:nth-child(2)::after {
    content: none;
  }

  .lp-steps {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .lp-annotate-list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  /* 横に置く余白がなくなるので、見出しの下へ回して中央に置く */
  .lp-section-head.has-art {
    --art-h: 210px;
    padding-right: 0;
    padding-bottom: calc(var(--art-h) + 20px);
    min-height: 0;
    background-position:
      center bottom,
      center bottom;
  }
}

@media (max-width: 767.98px) {
  .lp-hero-inner {
    padding: 56px 0 52px;
  }

  .lp-hero h1 {
    font-size: 31px;
  }

  .lp-hero-catch {
    font-size: 18px;
  }

  .lp-hero-lead {
    font-size: 15px;
  }

  .lp-hero-points {
    grid-template-columns: 1fr;
    margin-top: 36px;
  }

  .lp-section {
    padding: 64px 0;
  }

  .lp-section-head {
    margin-bottom: 34px;
  }

  .lp-section h2,
  .lp-band h2 {
    font-size: 26px;
  }

  .lp-band {
    padding: 56px 0;
  }

  .lp-phone-grid,
  .lp-grid-4,
  .lp-needs,
  .lp-steps,
  .lp-flow,
  .lp-logo-wall,
  .lp-shop-row,
  .lp-price-grid,
  .lp-cta-split {
    grid-template-columns: 1fr;
  }

  .lp-logos {
    padding: 40px 0 52px;
  }

  .lp-shop-card {
    grid-template-columns: 72px minmax(0, 1fr);
    gap: 14px;
    min-height: 132px;
    padding: 14px;
  }

  .lp-shop-logo {
    width: 72px;
    height: 72px;
    padding: 9px;
  }

  .lp-shop-meta {
    align-items: flex-start;
    justify-content: flex-start;
  }

  .lp-shop-link {
    width: 100%;
  }

  .lp-flow-step::after {
    content: none;
  }

  .lp-annotated,
  .lp-price-card,
  .lp-cta-card,
  .lp-pain {
    padding: 24px;
  }

  .lp-table {
    display: block;
    overflow-x: auto;
  }

  .lp-faq details {
    padding: 0 20px;
  }

  .lp-user-help-link,
  .lp-shop-help-link {
    width: 100%;
  }
}
