/* ============================================================
   行政書士法人リーガルイースト 補助金LP
   Mobile-first / 画像+HTMLハイブリッド構成
   ============================================================ */

/* --- Reset & Base --- */
.le-lp-body {
  margin: 0;
  padding: 0;
  background: #1a1a1a;
}

.le-lp {
  --primary: #c41e3a;
  --primary-dark: #9a1830;
  --primary-light: #f5e6e9;
  --accent: #1a5276;
  --accent-dark: #0d2137;
  --gold: #d4a017;
  --bg-light: #f8fafc;
  --text: #2c3e50;
  --text-muted: #64748b;
  --ease: cubic-bezier(0.4, 0, 0.2, 1);

  font-family: "Noto Sans JP", "Hiragino Sans", "Hiragino Kaku Gothic ProN",
    "Yu Gothic", "YuGothic", Meiryo, sans-serif;
  color: var(--text);
  line-height: 1.75;
  letter-spacing: 0.04em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.le-lp *,
.le-lp *::before,
.le-lp *::after {
  box-sizing: border-box;
}

/* --- LP Header --- */
.le-lp-header {
  background: var(--accent-dark);
  padding: 12px 16px;
  text-align: center;
}

.le-lp-header__name {
  font-size: 0.8125rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.1em;
}

/* --- Center Column --- */
.le-lp__body {
  width: 100%;
  max-width: 450px;
  margin: 0 auto;
  position: relative;
}

/* --- PC Side Panels --- */
.le-lp__side {
  display: none;
}

@media (min-width: 900px) {
  .le-lp {
    position: relative;
  }

  .le-lp__side {
    display: block;
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    writing-mode: vertical-rl;
    text-orientation: mixed;
    z-index: 10;
  }

  .le-lp__side--left {
    left: 32px;
  }

  .le-lp__side--right {
    right: 32px;
  }

  .le-lp__side-name {
    font-size: 0.6875rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.15em;
    margin: 0 0 24px;
  }

  .le-lp__side-catch {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    line-height: 2;
    margin: 0;
  }

  .le-lp__side-catch strong {
    color: var(--gold);
    font-weight: 700;
  }
}

/* --- Image Sections --- */
.le-lp__section {
  line-height: 0;
  font-size: 0;
}

.le-lp__section img {
  display: block;
  width: 100%;
  height: auto;
}

/* ============================================================
   CTA Sections
   ============================================================ */
.le-lp-cta {
  padding: 40px 20px;
  text-align: center;
}

.le-lp-cta--light {
  background: var(--primary-light);
}

.le-lp-cta--dark {
  background: var(--accent-dark);
}

.le-lp-cta__text {
  font-size: 1.125rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 24px;
  line-height: 1.5;
  font-feature-settings: "palt" 1;
}

.le-lp-cta--light .le-lp-cta__text {
  color: var(--accent-dark);
}

.le-lp-cta__text-accent {
  color: var(--primary);
  font-size: 1.375rem;
}

.le-lp-cta--dark .le-lp-cta__text-accent {
  color: var(--gold);
}

.le-lp-cta--light .le-lp-cta__text-accent {
  color: var(--primary-dark);
}

/* --- CTA Label --- */
.le-lp-cta__label {
  font-size: 0.875rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
  letter-spacing: 0.05em;
}

.le-lp-cta--light .le-lp-cta__label {
  color: var(--accent-dark);
}

/* --- TEL Button --- */
.le-lp-cta__tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--primary);
  color: #fff;
  font-size: 1.5rem;
  font-weight: 700;
  padding: 18px 24px;
  border-radius: 8px;
  text-decoration: none;
  transition: background 0.2s var(--ease), transform 0.2s var(--ease), box-shadow 0.2s var(--ease);
  box-shadow: 0 4px 16px rgba(196, 30, 58, 0.35);
  min-height: 60px;
  letter-spacing: 0.05em;
}

.le-lp-cta__tel:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(196, 30, 58, 0.45);
}

.le-lp-cta--dark .le-lp-cta__tel {
  background: linear-gradient(135deg, #d4a017 0%, #f0c040 100%);
  color: #1a1a1a;
  box-shadow: 0 4px 16px rgba(212, 160, 23, 0.35);
}

.le-lp-cta--dark .le-lp-cta__tel:hover {
  background: linear-gradient(135deg, #b8890f 0%, #d4a017 100%);
}

.le-lp-cta__tel-icon {
  font-size: 1.25rem;
}

.le-lp-cta__sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 12px 0 0;
  line-height: 1.5;
}

.le-lp-cta--light .le-lp-cta__sub {
  color: rgba(13, 33, 55, 0.75);
}

/* ============================================================
   sec-merit: プロに任せるメリット (HTML)
   ============================================================ */
.le-lp-merit {
  background: #fff;
  padding: 48px 20px;
}

.le-lp-merit__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0 0 8px;
}

.le-lp-merit__title-num {
  color: var(--gold);
  font-size: 1.75rem;
}

.le-lp-merit__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 32px;
  line-height: 1.7;
}

.le-lp-merit__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.le-lp-merit__item:last-child {
  border-bottom: none;
}

.le-lp-merit__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--gold);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.le-lp-merit__content {
  flex: 1;
}

.le-lp-merit__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.le-lp-merit__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.7;
}

/* ============================================================
   sec06: ご依頼の流れ (HTML)
   ============================================================ */
.le-lp-flow {
  background: var(--bg-light);
  padding: 48px 20px;
}

.le-lp-flow__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0 0 8px;
}

.le-lp-flow__sub {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 32px;
}

.le-lp-flow__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.le-lp-flow__item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.le-lp-flow__item:last-child {
  border-bottom: none;
}

.le-lp-flow__num {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  background: var(--primary);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
}

.le-lp-flow__content {
  flex: 1;
}

.le-lp-flow__name {
  font-size: 1rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 4px;
}

.le-lp-flow__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}

/* ============================================================
   sec08: 料金 (HTML)
   ============================================================ */
.le-lp-price {
  background: var(--accent-dark);
  padding: 48px 20px;
  color: #fff;
}

.le-lp-price__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: #fff;
  text-align: center;
  margin: 0 0 8px;
}

.le-lp-price__sub {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  margin: 0 0 32px;
}

.le-lp-price__item {
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.le-lp-price__item:last-of-type {
  border-bottom: none;
}

.le-lp-price__plan {
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  margin: 0 0 12px;
}

.le-lp-price__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 4px;
}

.le-lp-price__label {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.88);
  font-weight: 500;
}

.le-lp-price__value {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--gold);
}

.le-lp-price__note {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.78);
  text-align: center;
  margin: 24px 0 0;
  line-height: 1.75;
}

/* ============================================================
   sec09: FAQ (HTML)
   ============================================================ */
.le-lp-faq {
  background: var(--bg-light);
  padding: 48px 20px;
}

.le-lp-faq__title {
  font-size: 1.375rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0 0 32px;
}

.le-lp-faq__item {
  padding: 20px 0;
  border-bottom: 1px solid #e2e8f0;
}

.le-lp-faq__item:last-child {
  border-bottom: none;
}

.le-lp-faq__q {
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 8px;
  padding-left: 28px;
  position: relative;
}

.le-lp-faq__q::before {
  content: "Q.";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-weight: 700;
}

.le-lp-faq__a {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin: 0;
  padding-left: 28px;
  line-height: 1.7;
  position: relative;
}

.le-lp-faq__a::before {
  content: "A.";
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 700;
}

/* ============================================================
   sec11: サブ補助金・関連支援の案内 (HTML)
   ============================================================ */
.le-lp-sub {
  background: #fff;
  padding: 48px 20px;
}

.le-lp-sub__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--accent);
  text-align: center;
  margin: 0 0 12px;
  line-height: 1.5;
}

.le-lp-sub__br-sp {
  display: block;
}

@media (min-width: 481px) {
  .le-lp-sub__br-sp {
    display: inline;
  }
}

.le-lp-sub__desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0 0 24px;
  line-height: 1.7;
}

.le-lp-sub__list {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  border-top: 1px solid #e2e8f0;
}

.le-lp-sub__item {
  font-size: 0.9375rem;
  color: var(--text);
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid #e2e8f0;
  position: relative;
  font-weight: 500;
}

.le-lp-sub__item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: var(--primary);
  border-radius: 50%;
}

.le-lp-sub__note {
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  margin: 0;
  line-height: 1.7;
}

/* --- Footer --- */
.le-lp-footer {
  text-align: center;
  padding: 24px 16px;
  background: #111;
}

.le-lp-footer__copy {
  font-size: 0.6875rem;
  color: rgba(255, 255, 255, 0.4);
  margin: 0;
}

/* --- Hide theme defaults on LP --- */
.le-lp-body .l-header,
.le-lp-body .l-footer,
.le-lp-body .l-main,
.le-lp-body .c-page-top {
  display: none;
}
