/* ──────────────────────────────────────────────
   lp/j-credit-price
   ────────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;700&family=Noto+Sans+JP:wght@400;500;700;800;900&family=Roboto:wght@400;700;900&display=swap');

/* ── Tokens ── */
:root {
  --c-base-black: #2b312e;
  --c-base-white: #ffffff;
  --c-base-gray: #595959;
  --c-base-gray-light: #efefef;
  --c-base-gray-light-02: #f8f8f8;
  --c-point-blue: #5d77e0;
  --c-point-yellow: #f4db22;
  --c-point-yellow-strong: #ffe737;
  --c-point-yellow-deep: #f5d806;
  --c-point-yellow-darker: #eac700;
  --c-point-orange: #e59149;
  --c-point-orange-light: #fff8f3;
  --c-brand-green: #24aa5a;
  --c-brand-green-light: #f7f8f0;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  color: var(--c-base-black);
  background: var(--c-base-white);
  -webkit-font-smoothing: antialiased;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }


/* ──────────────────────────────────────────────
   Section: First View (1440 x 800 design canvas)
   ────────────────────────────────────────────── */
.lp-j-credit-fv {
  position: relative;
  width: 100%;
  height: 800px;
  min-height: 800px;
  overflow: hidden;
  background-color: var(--c-brand-green);
  background-image: url('../img/fv-background.png');
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
}

.lp-j-credit-fv__inner {
  position: relative;
  width: 1440px;
  height: 800px;
  margin: 0 auto;
}

/* Logo */
.lp-j-credit-fv__logo {
  position: absolute;
  top: 40px;
  left: 40px;
  width: 160px;
  height: 40px;
  z-index: 10;
}
.lp-j-credit-fv__logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* Heading（タグライン + 見出し） */
.lp-j-credit-fv__heading {
  position: absolute;
  left: 180px;
  top: 160px;
  width: 616px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}
.lp-j-credit-fv__tagline {
  align-self: stretch;
  text-align: center;
  padding-left: 16px;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1;
}
.lp-j-credit-fv__headline {
  align-self: stretch;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  color: #fff;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
}
.lp-j-credit-fv__headline-main {
  font-size: 68px;
  letter-spacing: -0.05em;
}
.lp-j-credit-fv__headline-tail {
  margin-left: -4px;
  display: inline-flex;
  align-items: baseline;
}
.lp-j-credit-fv__headline-mid {
  font-size: 32px;
  letter-spacing: -0.02em;
}
.lp-j-credit-fv__headline-sub {
  font-size: 40px;
  letter-spacing: -0.02em;
}

/* Price block (origin at left:180, top:327; width:616, height:160) */
.lp-j-credit-fv__price {
  position: absolute;
  left: 180px;
  top: 327px;
  width: 616px;
  height: 160px;
}

/* "J-クレジット" yellow label */
.lp-j-credit-fv__price-label {
  position: absolute;
  left: 0;
  top: 42px;
  color: var(--c-point-yellow-strong);
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Decorative slashes around the label */
.lp-j-credit-fv__price-line {
  position: absolute;
  width: 146px;
  height: 0;
  border-top: 3px solid var(--c-point-yellow-strong);
  transform-origin: 0 0;
}
.lp-j-credit-fv__price-line--top {
  left: 146px;
  top: 33px;
  transform: rotate(-176deg);
}
.lp-j-credit-fv__price-line--bottom {
  left: 146px;
  top: 77px;
  transform: rotate(-4deg) scale(-1, 1);
}

/* Big "4,300" number with yellow elliptical highlight */
.lp-j-credit-fv__price-figure {
  position: absolute;
  left: 158px;
  top: 0;
  width: 325px;
  height: 109px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.lp-j-credit-fv__price-figure-num {
  position: relative;
  z-index: 1;
  font-family: 'Roboto', sans-serif;
  font-size: 120px;
  font-weight: 900;
  letter-spacing: -0.04em;
  line-height: 0.9;
  background: linear-gradient(
    165deg,
   #ffeb3b 0%,
   #fff176 45%,
   #fff176 50%,
   #fdd835 55%,
   #fdd835 100%
   );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 2px 0 rgba(0, 0, 0, 0.05));
}

/* "円〜" — sits to the right of 4,300 figure */
.lp-j-credit-fv__price-yen {
  position: absolute;
  left: 483px;
  top: 36px;
  font-size: 64px;
  font-weight: 900;
  color: var(--c-point-yellow-deep);
  line-height: 1;
  letter-spacing: 0.02em;
}
.lp-j-credit-fv__price-yen-tilde {
  font-weight: 800;
}

/* "／t-CO2" — right-aligned within 616px */
.lp-j-credit-fv__price-unit {
  position: absolute;
  left: 0;
  top: 112px;
  width: 100%;
  text-align: right;
  color: var(--c-point-yellow-strong);
  font-size: 40px;
  font-weight: 400;
  line-height: 0.8;
}
.lp-j-credit-fv__price-unit-slash {
  font-family: 'Roboto', sans-serif;
}
.lp-j-credit-fv__price-unit-text {
  font-family: 'Roboto', sans-serif;
  font-weight: 900;
}

/* Feature cards */
.lp-j-credit-fv__features {
  position: absolute;
  left: 180px;
  top: 528px;
  width: 616px;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
.lp-j-credit-fv__feature {
  position: relative;
  flex-shrink: 0;
  width: 200px;
  height: 93px;
}

/* Feature white card with diagonal grey accent in the top-right corner */
.lp-j-credit-fv__feature-bg {
  position: absolute;
  left: 0;
  top: 13px;
  width: 200px;
  height: 80px;
  background: #fff;
  border-radius: 6px;
  overflow: hidden;
}
.lp-j-credit-fv__feature-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #efefef;
  opacity: 0.5;
  clip-path: polygon(235% 0, 100% 0, -300% 390%);
}

.lp-j-credit-fv__feature-content {
  position: relative;
  z-index: 1;
  height: 93px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.lp-j-credit-fv__feature-badge-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}
.lp-j-credit-fv__feature-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-point-yellow-strong);
  border-radius: 100px;
  padding: 6px 20px 7px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.lp-j-credit-fv__feature-arrow {
  width: 8px;
  height: 6px;
  background: var(--c-point-yellow-strong);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.lp-j-credit-fv__feature-value {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  color: var(--c-brand-green);
  font-weight: 700;
  letter-spacing: 0.02em;
  white-space: nowrap;
  line-height: 1;
}
.lp-j-credit-fv__feature-value-main { font-size: 24px; }
.lp-j-credit-fv__feature-value-sub  { font-size: 18px; }

/* Form area */
.lp-j-credit-fv__form-area {
  position: absolute;
  left: 840px;
  top: 162px;
  width: 420px;
}
.lp-j-credit-fv__tabs {
  display: flex;
  gap: 8px;
  width: 360px;
  margin: 0 auto;
}
.lp-j-credit-fv__tab {
  flex: 1;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: none;
  border-radius: 6px 6px 0 0;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-brand-green);
  letter-spacing: 0.02em;
  line-height: 1;
  transition: opacity 0.2s;
}
.lp-j-credit-fv__tab:not(.is-active) { opacity: 0.6; }

.lp-j-credit-fv__form-card {
  background: #fff;
  border-radius: 6px;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 0;
  align-items: center;
}
.lp-j-credit-fv__form-fields {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}
.lp-j-credit-fv__form-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.lp-j-credit-fv__form-row--textarea { align-items: flex-start; }
.lp-j-credit-fv__form-label-group {
  display: flex;
  align-items: center;
  gap: 4px;
}
.lp-j-credit-fv__form-row--textarea .lp-j-credit-fv__form-label-group { padding-top: 6px; }

.lp-j-credit-fv__form-req {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-point-orange-light);
  border: 1px solid var(--c-point-orange);
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 700;
  color: var(--c-point-orange);
  line-height: 1;
}
.lp-j-credit-fv__form-opt {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  border: 1px solid var(--c-base-gray);
  border-radius: 3px;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 700;
  color: var(--c-base-gray);
  line-height: 1;
}
.lp-j-credit-fv__form-label {
  font-size: 12px;
  font-weight: 500;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  padding-bottom: 2px;
  line-height: 1;
}
.lp-j-credit-fv__form-input-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 208px;
}
.lp-j-credit-fv__form-input {
  flex: 1;
  width: 100%;
  height: 28px;
  background: var(--c-base-gray-light);
  border: none;
  border-radius: 6px;
  padding: 0 10px;
  font-size: 13px;
  font-family: inherit;
  color: var(--c-base-black);
  outline: none;
  transition: background 0.2s;
}
.lp-j-credit-fv__form-input:focus { background: #e8e8e8; }
.lp-j-credit-fv__form-select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-base-gray) 50%),
    linear-gradient(-45deg, transparent 50%, var(--c-base-gray) 50%);
  background-position:
    calc(100% - 14px) 50%,
    calc(100% - 9px) 50%;
  background-size: 5px 5px;
  background-repeat: no-repeat;
  padding-right: 26px;
  cursor: pointer;
}
.lp-j-credit-fv__form-input--textarea {
  height: 80px;
  padding: 8px 10px;
  resize: vertical;
}
.lp-j-credit-fv__form-input::placeholder,
.lp-j-credit-fv__form-input--textarea::placeholder {
  color: var(--c-base-gray);
  opacity: 0.6;
  font-size: 12px;
}
.lp-j-credit-fv__form-input-unit {
  flex-shrink: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  white-space: nowrap;
}
.lp-j-credit-fv__form-privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
  cursor: pointer;
}
.lp-j-credit-fv__form-privacy-check {
  width: 9px;
  height: 9px;
  margin: 0;
  accent-color: var(--c-brand-green);
  cursor: pointer;
}
.lp-j-credit-fv__form-privacy-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  line-height: 1;
  white-space: nowrap;
}
.lp-j-credit-fv__form-privacy-link {
  color: var(--c-brand-green);
  text-decoration: underline;
}
.lp-j-credit-fv__form-submit {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 46px;
  margin-top: 16px;
  padding: 14px 80px 16px;
  background: linear-gradient(90deg, var(--c-point-yellow-deep) 0%, var(--c-point-orange) 100%);
  border: none;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.02em;
  filter: drop-shadow(0 4px 4px rgba(234, 199, 0, 0.6));
  line-height: 1;
  white-space: nowrap;
  transition: transform 0.2s, filter 0.2s;
}
.lp-j-credit-fv__form-submit:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 8px rgba(234, 199, 0, 0.7));
}
.lp-j-credit-fv__form-submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
}

/* "入力30秒 即日対応" Badge */
.lp-j-credit-fv__badge {
  position: absolute;
  left: 1236px;
  top: 120px;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--c-point-yellow-strong);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 6;
}
.lp-j-credit-fv__badge-text {
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-brand-green);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* FV responsive ──────────────────────────────────────── */
@media (max-width: 1440px) {
  .lp-j-credit-fv {
    height: auto;
    min-height: auto;
    background-size: cover;
  }
  .lp-j-credit-fv__inner {
    width: 100%;
    height: auto;
    padding: 110px 40px 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px 0;
  }
  .lp-j-credit-fv__heading,
  .lp-j-credit-fv__price,
  .lp-j-credit-fv__features,
  .lp-j-credit-fv__form-area { position: static; }

  .lp-j-credit-fv__heading   { width: 616px; flex-shrink: 0; }
  .lp-j-credit-fv__form-area { width: 420px; flex-shrink: 0; }
  .lp-j-credit-fv__price     { margin-top: 50px; width: 616px; }
  .lp-j-credit-fv__features  { margin-top: 60px; width: 616px; }
  .lp-j-credit-fv__badge     { left: auto; right: 0; top: 70px; }
}
@media (max-width: 1100px) {
  .lp-j-credit-fv__inner { flex-direction: column; align-items: center; }
  .lp-j-credit-fv__heading,
  .lp-j-credit-fv__price,
  .lp-j-credit-fv__features,
  .lp-j-credit-fv__form-area {
    width: 100%;
    max-width: 616px;
  }
  .lp-j-credit-fv__form-area { max-width: 420px; }
  .lp-j-credit-fv__features  { margin-top: 40px; }
  .lp-j-credit-fv__price     { margin-top: 40px; height: auto; min-height: 160px; }
}
@media (max-width: 768px) {
  /* Container — 393px design canvas (autohtml-project SP) */
  .lp-j-credit-fv {
    height: auto;
    min-height: auto;
    padding: 0 0 40px;
    background-color: transparent;
    background-size: 100% 660px;
    background-position: center top;
    background-repeat: no-repeat;
  }
  .lp-j-credit-fv__inner {
    width: 100%;
    max-width: 393px;
    height: auto;
    margin: 0 auto;
    padding: 0 20px;
    display: block;
    position: relative;
  }

  /* Logo — centered top */
  .lp-j-credit-fv__logo {
    position: relative;
    top: auto;
    left: auto;
    display: block;
    width: 128px;
    height: 32px;
    margin: 30px auto 0;
  }

  /* Heading (tagline + 2-line headline) */
  .lp-j-credit-fv__heading {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 353px;
    margin: 40px auto 0;
    gap: 28px;
    align-items: center;
  }
  .lp-j-credit-fv__tagline {
    font-size: 16px;
    line-height: 1.6;
    padding-left: 16px;
    text-align: center;
  }
  .lp-j-credit-fv__headline {
    flex-direction: column;
    align-items: center;
    align-self: stretch;
    gap: 8px;
    white-space: normal;
  }
  .lp-j-credit-fv__headline-main {
    font-size: 56px;
    letter-spacing: -0.05em;
  }
  .lp-j-credit-fv__headline-tail {
    margin-left: 0;
    align-items: baseline;
  }
  .lp-j-credit-fv__headline-mid { font-size: 28px; letter-spacing: -0.02em; }
  .lp-j-credit-fv__headline-sub { font-size: 36px; letter-spacing: -0.02em; }

  /* Price block (4,300 yen / t-CO2) */
  .lp-j-credit-fv__price {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 353px;
    height: 90px;
    min-height: 90px;
    margin: 40px auto 0;
  }
  .lp-j-credit-fv__price-label {
    left: 0;
    top: 24px;
    font-size: 14px;
  }
  .lp-j-credit-fv__price-line {
    width: 84px;
    border-top-width: 1.72px;
  }
  .lp-j-credit-fv__price-line--top    { left: 84px; top: 19px; }
  .lp-j-credit-fv__price-line--bottom { left: 84px; top: 44px; }

  .lp-j-credit-fv__price-figure {
    left: 91px;
    top: 0;
    width: 186px;
    height: 62px;
    margin: 0;
  }
  .lp-j-credit-fv__price-figure-num { font-size: 64px; }

  .lp-j-credit-fv__price-yen {
    left: auto;
    right: 0;
    top: 20px;
    font-size: 36px;
    display: inline-block;
  }

  .lp-j-credit-fv__price-unit {
    left: 0;
    top: 66px;
    width: 100%;
    text-align: right;
    font-size: 22px;
    margin: 0;
  }

  /* Feature cards — 3-up row (autohtml SP) */
  .lp-j-credit-fv__features {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 353px;
    margin: 24px auto 0;
    flex-direction: row;
    gap: 4px;
    justify-content: space-between;
    align-items: flex-start;
  }
  .lp-j-credit-fv__feature {
    flex: 1 1 0;
    width: auto;
    max-width: 115px;
    height: 60px;
  }
  .lp-j-credit-fv__feature-bg {
    width: 100%;
    height: 52px;
    top: 8px;
    border-radius: 3px;
  }
  .lp-j-credit-fv__feature-content {
    height: 60px;
    gap: 4px;
  }
  .lp-j-credit-fv__feature-badge {
    padding: 3.4px 10px 4px;
    font-size: 10px;
  }
  .lp-j-credit-fv__feature-arrow {
    width: 4.6px;
    height: 3.4px;
  }
  .lp-j-credit-fv__feature-value-main { font-size: 16px; }
  .lp-j-credit-fv__feature-value-sub  { font-size: 14px; }

  /* Form area — stacked below FV content on SP */
  .lp-j-credit-fv__form-area {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    max-width: 353px;
    margin: 75px auto 0;
  }
  .lp-j-credit-fv__tabs { width: 330px; }
  .lp-j-credit-fv__form-card { padding: 20px 16px; }
  .lp-j-credit-fv__form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
  .lp-j-credit-fv__form-input-wrap { width: 100%; }

  /* Badge — autohtml SP: 72×72 yellow circle at left:301 top:548 */
  .lp-j-credit-fv__badge {
    position: absolute;
    left: auto;
    right: 20px;
    top: 480px;
    width: 72px;
    height: 72px;
    z-index: 6;
  }
  .lp-j-credit-fv__badge-text { font-size: 13.2px; line-height: 1.2; }
}


/* ──────────────────────────────────────────────
   Section: OFFSELでの調達がお得（Pricing comparison）
   ────────────────────────────────────────────── */
.lp-j-credit-pricing {
  position: relative;
  padding: 0 20px 80px;
}
.lp-j-credit-pricing__inner {
  position: relative;
  z-index: 5;
  width: 100%;
  max-width: 1280px;
  margin: -80px auto 0;
  padding: 60px 100px;
  background: var(--c-brand-green-light);
  border-radius: 50px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

/* Heading */
.lp-j-credit-pricing__heading {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  gap: 16px;
  padding-left: 12px;
  margin-bottom: 32px;
}
.lp-j-credit-pricing__title {
  display: flex;
  align-items: flex-end;
  padding-bottom: 2px;
}
.lp-j-credit-pricing__title-brand {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 40px;
  font-weight: 900;
  color: var(--c-brand-green);
  letter-spacing: 0.02em;
  line-height: 1;
}
.lp-j-credit-pricing__title-text {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Decorative chevron-like marks on each side */
.lp-j-credit-pricing__deco {
  position: relative;
  display: inline-block;
  width: 28px;
  height: 36px;
  flex-shrink: 0;
}
.lp-j-credit-pricing__deco::before,
.lp-j-credit-pricing__deco::after {
  content: '';
  position: absolute;
  bottom: 4px;
  width: 4px;
  height: 32px;
  background: var(--c-base-black);
  border-radius: 2px;
}
.lp-j-credit-pricing__deco--left::before  { left: 6px;  transform: rotate(-20deg); }
.lp-j-credit-pricing__deco--left::after   { left: 16px; transform: rotate(-20deg); }
.lp-j-credit-pricing__deco--right::before { right: 6px;  transform: rotate(20deg); }
.lp-j-credit-pricing__deco--right::after  { right: 16px; transform: rotate(20deg); }

/* Table */
.lp-j-credit-pricing__table {
  display: flex;
  align-items: flex-start;
  position: relative;
}
.lp-j-credit-pricing__col {
  display: flex;
  flex-direction: column;
}
.lp-j-credit-pricing__col--labels {
  width: 280px;
  padding-top: 48px;
}
.lp-j-credit-pricing__col--offsel {
  width: 400px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--c-brand-green);
  border-radius: 6px;
  background: var(--c-base-white);
  overflow: hidden;
}
.lp-j-credit-pricing__col--other {
  width: 400px;
  padding-top: 4px;
}

/* Header rows for OFFSEL / 他社 columns */
.lp-j-credit-pricing__head {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-brand-green);
  color: var(--c-base-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.lp-j-credit-pricing__head--other {
  background: var(--c-base-gray-light);
  color: var(--c-base-gray);
  border-radius: 6px 6px 0 0;
}

/* Cells (data + label) */
.lp-j-credit-pricing__cell {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  background: var(--c-base-white);
  border-bottom: 1px solid var(--c-base-gray-light);
  font-size: 20px;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
}
.lp-j-credit-pricing__cell--alt {
  background: var(--c-base-gray-light-02);
}
.lp-j-credit-pricing__cell--label {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-base-black);
}

/* Round corners on first/last cells of label column */
.lp-j-credit-pricing__col--labels .lp-j-credit-pricing__cell:first-child { border-radius: 6px 0 0 0; }
.lp-j-credit-pricing__col--labels .lp-j-credit-pricing__cell:last-child  { border-radius: 0 0 0 6px; border-bottom: none; }

/* Round corner on last cell of 他社 column */
.lp-j-credit-pricing__col--other .lp-j-credit-pricing__cell:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

/* Remove last-cell border in OFFSEL column */
.lp-j-credit-pricing__col--offsel .lp-j-credit-pricing__cell:last-child { border-bottom: none; }

/* Cell variants per column */
.lp-j-credit-pricing__col--offsel .lp-j-credit-pricing__cell--data {
  font-weight: 700;
  color: var(--c-base-black);
}
/* SP-only line break for pricing data values — inert on PC */
.lp-j-credit-pricing__br--sp { display: none; }

/* OFFSEL column data cells — left-aligned: check + text share the same left edge */
.lp-j-credit-pricing__col--offsel .lp-j-credit-pricing__cell--data {
  justify-content: flex-start;
  text-align: left;
}
.lp-j-credit-pricing__col--offsel .lp-j-credit-pricing__cell--data > *:last-child { text-align: left; }
@media (min-width: 769px) {
  .lp-j-credit-pricing__col--offsel .lp-j-credit-pricing__cell--data { padding: 0 90px; }
}
.lp-j-credit-pricing__col--offsel .lp-j-credit-pricing__cell--alt {
  background: var(--c-brand-green-light);
}
.lp-j-credit-pricing__col--other .lp-j-credit-pricing__cell--data {
  font-weight: 600;
  color: var(--c-base-gray);
}

/* Green check icon (SVG) */
.lp-j-credit-pricing__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url('../img/icon-check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* Pricing responsive */
@media (max-width: 1100px) {
  .lp-j-credit-pricing__inner {
    margin-top: -60px;
    padding: 40px 32px;
  }
  .lp-j-credit-pricing__col--labels { width: 200px; }
  .lp-j-credit-pricing__col--offsel,
  .lp-j-credit-pricing__col--other { width: 280px; }
  .lp-j-credit-pricing__cell { font-size: 16px; padding: 0 8px; }
  .lp-j-credit-pricing__cell--label { font-size: 14px; }
}
@media (max-width: 768px) {
  /* Section / outer container — autohtml-project SP (rectangle-20: 353×326, radius 16) */
  .lp-j-credit-pricing { padding: 0 20px 60px; }
  .lp-j-credit-pricing__inner {
    width: 100%;
    max-width: 353px;
    margin: 0 auto;
    padding: 40px 16px 32px;
    border-radius: 16px;
    box-shadow: none;
  }

  /* Heading — title text stacked (OFFSEL on top / での調達がお得 below) */
  .lp-j-credit-pricing__heading {
    gap: 12px;
    padding-left: 0;
    margin-bottom: 24px;
    align-items: center;
  }
  .lp-j-credit-pricing__title {
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding-bottom: 2px;
  }
  .lp-j-credit-pricing__title-brand { font-size: 32px; }
  .lp-j-credit-pricing__title-text  { font-size: 20px; }
  .lp-j-credit-pricing__deco { width: 22px; height: 32px; }
  .lp-j-credit-pricing__deco::before,
  .lp-j-credit-pricing__deco::after { height: 28px; width: 3px; bottom: 2px; }
  .lp-j-credit-pricing__deco--left::before  { left: 4px; }
  .lp-j-credit-pricing__deco--left::after   { left: 12px; }
  .lp-j-credit-pricing__deco--right::before { right: 4px; }
  .lp-j-credit-pricing__deco--right::after  { right: 12px; }

  /* Table — keep 3 columns side-by-side (autohtml SP) */
  .lp-j-credit-pricing__table {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
  }
  .lp-j-credit-pricing__col,
  .lp-j-credit-pricing__col--labels {
    width: 120px;
    padding-top: 44px;
  }
  .lp-j-credit-pricing__col--offsel {
    width: 108px;
    padding-top: 0;
  }
  .lp-j-credit-pricing__col--other {
    width: 86px;
    padding-top: 4px;
  }

  /* Restore label-column corner radii (overrides earlier 768 reset) */
  .lp-j-credit-pricing__col--labels .lp-j-credit-pricing__cell:first-child { border-radius: 6px 0 0 0; }
  .lp-j-credit-pricing__col--labels .lp-j-credit-pricing__cell:last-child  { border-radius: 0 0 0 6px; border-bottom: none; }

  /* Cells */
  .lp-j-credit-pricing__cell {
    height: 42px;
    padding: 0 6px;
    gap: 6px;
    font-size: 14px;
    line-height: 1;
  }
  .lp-j-credit-pricing__cell--label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
  }

  /* Headers (OFFSEL / 他社) */
  .lp-j-credit-pricing__head {
    height: 40px;
    font-size: 16px;
  }

  /* Green check icon */
  .lp-j-credit-pricing__check { width: 12px; height: 12px; }

  /* SP-only line break in price values (e.g. 4,300円〜 / ／t-CO2) */
  .lp-j-credit-pricing__br--sp { display: inline; }
}


/* ──────────────────────────────────────────────
   Section: Voice（お客様の声）
   ────────────────────────────────────────────── */
.lp-j-credit-voice {
  position: relative;
  background: transparent;
}
/* Background image — full viewport width, aspect-ratio preserved.
   Top half overlaps with Advantage section by half the image height. */
.lp-j-credit-voice::before {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  height: calc(100vw * 725 / 1440);
  top: calc(-100vw * 363 / 1440);
  background-image: url('../img/voice-background.png');
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  z-index: 0;
  pointer-events: none;
}
.lp-j-credit-voice__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 769px) {
  .lp-j-credit-voice__inner {
    padding-left: max(40px, calc((100vw - 1280px) / 2));
    padding-right: max(40px, calc((100vw - 1280px) / 2));
  }
}

/* Swiper container */
.lp-j-credit-voice__swiper {
  width: 100%;
  overflow: hidden;
}
.lp-j-credit-voice__slide {
  width: 346px;
  height: auto;
}

/* Card */
.lp-j-credit-voice__card {
  width: 346px;
  height: 100%;
  background: var(--c-base-white);
  border-radius: 50px 50px 50px 6px;
  padding: 40px 20px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
}
.lp-j-credit-voice__avatar {
  flex-shrink: 0;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-brand-green-light);
  object-fit: cover;
}
.lp-j-credit-voice__body {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-j-credit-voice__top {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Top tags（業種・規模・役職） */
.lp-j-credit-voice__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 2px 2px;
}
.lp-j-credit-voice__tag {
  display: inline-flex;
  align-items: center;
  background: var(--c-brand-green-light);
  border-radius: 100px;
  padding: 3px 6px 4px;
  color: var(--c-brand-green);
  font-size: 11px;
  font-weight: 500;
  line-height: 1;
}
.lp-j-credit-voice__sub {
  font-size: 10px;
  font-weight: 400;
  color: var(--c-base-gray);
  line-height: 1;
}
.lp-j-credit-voice__quote {
  font-size: 14px;
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1.6;
  letter-spacing: -0.01em;
}

/* Bottom tag pills（少量ご対応 / 手数料無料 等） */
.lp-j-credit-voice__pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}
.lp-j-credit-voice__pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.lp-j-credit-voice__pill-mark {
  flex-shrink: 0;
  width: 7.5px;
  height: 4.5px;
  background: var(--c-point-orange);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.lp-j-credit-voice__pill-text {
  color: var(--c-point-orange);
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}

/* Scrollbar (Swiper) — placed as a direct child of the section so it
   centers in the viewport regardless of the asymmetric inner padding. */
.lp-j-credit-voice__scrollbar.swiper-scrollbar,
.lp-j-credit-voice__scrollbar.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 320px;
  height: 8px;
  margin: 32px auto 0;
  background: var(--c-base-white);
  border-radius: 100px;
  z-index: 1;
}
.lp-j-credit-voice__scrollbar .swiper-scrollbar-drag {
  background: var(--c-point-yellow);
  border-radius: 100px;
  cursor: pointer;
}

/* Voice responsive */
@media (max-width: 768px) {
  .lp-j-credit-voice::before { height: calc(260vw * 725 / 1440); }
  .lp-j-credit-voice { padding: 60px 0; }
  /* Swiper sizes the slide via slidesPerView:1; card fills it */
  .lp-j-credit-voice__slide { width: auto; }
  .lp-j-credit-voice__card {
    width: 100%;
    max-width: 320px;
    margin: 0 auto;
    padding: 28px 16px;
    border-radius: 32px 32px 32px 6px;
  }
  .lp-j-credit-voice__avatar { width: 56px; height: 56px; }
  .lp-j-credit-voice__scrollbar.swiper-scrollbar {
    width: calc(100% - 32px);
    max-width: 320px;
  }
}


/* ──────────────────────────────────────────────
   Section: Experience（価格だけでなく、調達の体験がここまで違います）
   ────────────────────────────────────────────── */
.lp-j-credit-experience {
  position: relative;
  background: var(--c-brand-green-light);
  padding: 100px 0;
}
.lp-j-credit-experience__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.lp-j-credit-experience__heading {
  text-align: center;
  margin-bottom: 40px;
}
.lp-j-credit-experience__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.lp-j-credit-experience__title-br--sp,
.lp-j-credit-experience__sub-br--sp { display: none; }
.lp-j-credit-experience__title-emph {
  color: var(--c-brand-green);
}
.lp-j-credit-experience__sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-base-black);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* POINT 01 callout */
.lp-j-credit-experience__point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.lp-j-credit-experience__point-badge {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--c-point-yellow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.lp-j-credit-experience__point-badge::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: var(--c-point-yellow);
  border-radius: 0 0 4px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transform: rotate(-10deg);
}
.lp-j-credit-experience__point-label {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--c-brand-green);
  line-height: 1;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}
.lp-j-credit-experience__point-num {
  font-family: 'Roboto', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--c-brand-green);
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.lp-j-credit-experience__point-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-brand-green);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Compare cards container */
.lp-j-credit-experience__compare {
  display: flex;
  align-items: stretch;
  justify-content: center;
  gap: 21px;
}

/* Card base */
.lp-j-credit-experience__card {
  position: relative;
  flex-shrink: 0;
  width: 500px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  padding: 40px;
  border-radius: 20px;
}
.lp-j-credit-experience__card--other {
  background: var(--c-base-gray-light);
}
.lp-j-credit-experience__card--offsel {
  background: rgba(244, 219, 34, 0.7);
}

/* Card head */
.lp-j-credit-experience__card-head {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}
.lp-j-credit-experience__card-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--c-base-black);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lp-j-credit-experience__card-title--offsel {
  font-size: 32px;
  color: var(--c-brand-green);
  line-height: 1;
}
.lp-j-credit-experience__card-period {
  font-weight: 700;
  letter-spacing: 0.04em;
  line-height: 1.6;
  text-align: center;
}
.lp-j-credit-experience__card-period-text {
  font-size: 16px;
  color: var(--c-base-black);
}
.lp-j-credit-experience__card-period-emph {
  font-size: 20px;
  color: var(--c-base-black);
  margin-left: 4px;
}
.lp-j-credit-experience__card-period-emph--offsel {
  color: var(--c-brand-green);
}
.lp-j-credit-experience__card-period-strong {
  font-size: 20px;
  font-weight: 700;
}
.lp-j-credit-experience__card-period-num {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.lp-j-credit-experience__card-period-note {
  font-size: 12px;
  font-weight: 700;
  color: var(--c-base-black);
}

/* Divider */
.lp-j-credit-experience__card-divider {
  display: block;
  width: 52px;
  height: 2px;
  background: var(--c-base-black);
}

/* Steps */
.lp-j-credit-experience__steps {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.lp-j-credit-experience__step {
  position: relative;
  display: flex;
  align-items: stretch;
  border-radius: 6px;
  overflow: hidden;
}
.lp-j-credit-experience__step + .lp-j-credit-experience__step {
  margin-top: 20px;
}
/* Down arrow between steps */
.lp-j-credit-experience__step + .lp-j-credit-experience__step::before {
  content: '';
  position: absolute;
  left: 50%;
  top: -16px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 12px solid var(--c-base-gray);
}
.lp-j-credit-experience__card--offsel .lp-j-credit-experience__step + .lp-j-credit-experience__step::before {
  border-top-color: var(--c-brand-green);
}

/* Step badge (left side) */
.lp-j-credit-experience__step-badge {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 12px;
  background: var(--c-base-gray);
  color: var(--c-base-white);
  border-radius: 6px 0 0 6px;
}
.lp-j-credit-experience__card--offsel .lp-j-credit-experience__step-badge {
  background: var(--c-brand-green);
}
.lp-j-credit-experience__step-label {
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.02em;
  line-height: 1;
}
.lp-j-credit-experience__step-num {
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  line-height: 0.8;
}

/* Step text (right side) */
.lp-j-credit-experience__step-text {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 8px 12px;
  background: var(--c-base-white);
  color: var(--c-base-black);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.2;
  text-align: center;
  border-radius: 0 6px 6px 0;
}
.lp-j-credit-experience__card--offsel .lp-j-credit-experience__step-text {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-point-orange);
  letter-spacing: 0.02em;
}

/* SKIP overlay (OFFSEL only) */
.lp-j-credit-experience__step--skip .lp-j-credit-experience__step-badge,
.lp-j-credit-experience__step--skip .lp-j-credit-experience__step-text {
  opacity: 0.6;
}
.lp-j-credit-experience__step-skip-label {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  color: var(--c-brand-green);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  z-index: 2;
}

/* Card photo at the bottom */
.lp-j-credit-experience__card-photo {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-base-gray-light);
}
.lp-j-credit-experience__card-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Compare arrow (green right-pointing between cards) */
.lp-j-credit-experience__compare-arrow {
  flex-shrink: 0;
  align-self: center;
  width: 0;
  height: 0;
  border-top: 32px solid transparent;
  border-bottom: 32px solid transparent;
  border-left: 36px solid var(--c-brand-green);
}

/* Experience responsive */
@media (max-width: 1100px) {
  .lp-j-credit-experience__compare {
    flex-direction: column;
    align-items: center;
  }
  .lp-j-credit-experience__card {
    width: 100%;
    max-width: 500px;
  }
  .lp-j-credit-experience__compare-arrow {
    border-top: 36px solid var(--c-brand-green);
    border-bottom: none;
    border-left: 32px solid transparent;
    border-right: 32px solid transparent;
  }
}
@media (max-width: 768px) {
  .lp-j-credit-experience { padding: 60px 0; }
  .lp-j-credit-experience__inner { padding: 0 16px; }
  .lp-j-credit-experience__title { font-size: 24px; }
  .lp-j-credit-experience__title-br--sp,
  .lp-j-credit-experience__sub-br--sp { display: inline; }
  .lp-j-credit-experience__sub { font-size: 13px; }
  .lp-j-credit-experience__point { flex-direction: column; gap: 12px; }
  .lp-j-credit-experience__point-badge { width: 80px; height: 80px; }
  .lp-j-credit-experience__point-num { font-size: 42px; }
  .lp-j-credit-experience__point-text { font-size: 20px; text-align: center; }
  .lp-j-credit-experience__card { padding: 24px 20px; }
  .lp-j-credit-experience__card-title { font-size: 16px; }
  .lp-j-credit-experience__card-title--offsel { font-size: 24px; }
  .lp-j-credit-experience__step-text { font-size: 14px; }
  .lp-j-credit-experience__card--offsel .lp-j-credit-experience__step-text { font-size: 16px; }
  .lp-j-credit-experience__step-num { font-size: 20px; }
  .lp-j-credit-experience__card-photo { height: 160px; }
}


/* ──────────────────────────────────────────────
   Section: Services（POINT 02 / 付帯サービスが充実）
   ────────────────────────────────────────────── */
.lp-j-credit-services {
  background: var(--c-brand-green-light);
  padding: 60px 0 100px;
}
.lp-j-credit-services__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* POINT 02 callout (same style as experience point) */
.lp-j-credit-services__point {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}
.lp-j-credit-services__point-badge {
  position: relative;
  flex-shrink: 0;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: var(--c-point-yellow);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 4px;
}
.lp-j-credit-services__point-badge::after {
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  width: 18px;
  height: 18px;
  background: var(--c-point-yellow);
  border-radius: 0 0 4px 0;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
  transform: rotate(-10deg);
}
.lp-j-credit-services__point-label {
  display: inline-block;
  font-family: 'Roboto', sans-serif;
  font-size: 14px;
  font-weight: 900;
  color: var(--c-brand-green);
  line-height: 1;
  writing-mode: vertical-rl;
  letter-spacing: 0.05em;
}
.lp-j-credit-services__point-num {
  font-family: 'Roboto', sans-serif;
  font-size: 56px;
  font-weight: 700;
  color: var(--c-brand-green);
  line-height: 0.8;
  letter-spacing: -0.04em;
}
.lp-j-credit-services__point-text {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-brand-green);
  letter-spacing: 0.02em;
  line-height: 1;
}

/* Comparison table */
.lp-j-credit-services__table {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
.lp-j-credit-services__col {
  display: flex;
  flex-direction: column;
}
.lp-j-credit-services__col--labels {
  width: 280px;
  padding-top: 54px;
}
.lp-j-credit-services__col--offsel {
  width: 400px;
  position: relative;
  z-index: 2;
  border: 4px solid var(--c-brand-green);
  border-radius: 6px;
  background: var(--c-base-white);
  overflow: hidden;
  margin-top: 6px;
}
.lp-j-credit-services__col--other {
  width: 400px;
  padding-top: 10px;
}

/* Header (OFFSEL / 他社) */
.lp-j-credit-services__head {
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-brand-green);
  color: var(--c-base-white);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
}
.lp-j-credit-services__head--other {
  background: var(--c-base-gray);
  color: var(--c-base-white);
  border-radius: 6px 6px 0 0;
}

/* Cells */
.lp-j-credit-services__cell {
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 0 16px;
  background: var(--c-base-white);
  border-bottom: 1px solid var(--c-base-gray-light);
  font-size: 16px;
  letter-spacing: 0.02em;
  line-height: 1.1;
  text-align: center;
}
.lp-j-credit-services__cell--label {
  font-weight: 600;
  color: var(--c-base-black);
  font-size: 14px;
}

/* Alternating bg per column (matches Figma alternation pattern) */
.lp-j-credit-services__col--labels .lp-j-credit-services__cell:nth-child(odd) {
  background: var(--c-base-gray-light-02);
}
.lp-j-credit-services__col--offsel .lp-j-credit-services__cell:nth-child(odd) {
  background: var(--c-brand-green-light);
}
.lp-j-credit-services__col--other .lp-j-credit-services__cell:nth-child(odd) {
  background: var(--c-base-gray-light-02);
}

/* Round corners on first/last label cells (no header) */
.lp-j-credit-services__col--labels .lp-j-credit-services__cell:first-child {
  border-radius: 6px 0 0 0;
}
.lp-j-credit-services__col--labels .lp-j-credit-services__cell:last-child {
  border-radius: 0 0 0 6px;
  border-bottom: none;
}
/* Last cell of OFFSEL / 他社 — remove bottom border */
.lp-j-credit-services__col--offsel .lp-j-credit-services__cell:last-child {
  border-bottom: none;
}
.lp-j-credit-services__col--other .lp-j-credit-services__cell:last-child {
  border-bottom: none;
  border-radius: 0 0 6px 6px;
}

/* OFFSEL data text style */
.lp-j-credit-services__col--offsel .lp-j-credit-services__cell--data {
  font-size: 20px;
  font-weight: 900;
  color: var(--c-point-orange);
  letter-spacing: 0.02em;
}
/* 他社 data text style */
.lp-j-credit-services__col--other .lp-j-credit-services__cell--data {
  font-size: 20px;
  font-weight: 600;
  color: var(--c-base-gray);
}

/* Green check (SVG) — same as pricing/advantage */
.lp-j-credit-services__check {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background-image: url('../img/icon-check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

/* SP-only line break + small annotation — inert on PC */
.lp-j-credit-services__br--sp { display: none; }
.lp-j-credit-services__small { font-size: inherit; }

/* OFFSEL column data cells — left-aligned: check + text share the same left edge */
.lp-j-credit-services__col--offsel .lp-j-credit-services__cell--data {
  justify-content: flex-start;
  text-align: left;
}
.lp-j-credit-services__col--offsel .lp-j-credit-services__cell--data > *:last-child { text-align: left; }
@media (min-width: 769px) {
  .lp-j-credit-services__col--offsel .lp-j-credit-services__cell--data { padding: 0 50px; }
}

/* Services responsive */
@media (max-width: 1100px) {
  .lp-j-credit-services__inner { padding: 0 20px; }
  .lp-j-credit-services__col--labels { width: 200px; }
  .lp-j-credit-services__col--offsel,
  .lp-j-credit-services__col--other { width: 280px; }
  .lp-j-credit-services__cell { font-size: 14px; padding: 0 8px; }
  .lp-j-credit-services__cell--label { font-size: 12px; }
  .lp-j-credit-services__col--offsel .lp-j-credit-services__cell--data,
  .lp-j-credit-services__col--other .lp-j-credit-services__cell--data {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .lp-j-credit-services { padding: 40px 0 60px; }
  .lp-j-credit-services__inner { padding: 0 20px; }

  /* POINT badge + text — stacked vertically on SP */
  .lp-j-credit-services__point {
    flex-direction: column;
    gap: 12px;
    margin-bottom: 24px;
  }
  .lp-j-credit-services__point-badge { width: 80px; height: 80px; }
  .lp-j-credit-services__point-num { font-size: 42px; }
  .lp-j-credit-services__point-text { font-size: 20px; text-align: center; }

  /* Table — autohtml-project SP: 3 cols side-by-side, OFFSEL extends above */
  .lp-j-credit-services__table {
    flex-direction: row;
    gap: 0;
    align-items: flex-start;
    justify-content: center;
  }
  .lp-j-credit-services__col,
  .lp-j-credit-services__col--labels {
    width: 106px;
    padding-top: 44px;
    margin-top: 0;
  }
  .lp-j-credit-services__col--offsel {
    width: 136px;
    padding-top: 0;
  }
  .lp-j-credit-services__col--other {
    width: 103px;
    padding-top: 4px;
  }

  .lp-j-credit-services__col--labels .lp-j-credit-services__cell:first-child { border-radius: 6px 0 0 0; }
  .lp-j-credit-services__col--labels .lp-j-credit-services__cell:last-child  { border-radius: 0 0 0 6px; }

  /* Cells */
  .lp-j-credit-services__cell {
    height: 42px;
    padding: 0 4px;
    gap: 4px;
    font-size: 11px;
    line-height: 1.1;
  }
  .lp-j-credit-services__cell--label {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.1;
  }
  .lp-j-credit-services__col--offsel .lp-j-credit-services__cell--data {
    font-size: 14px;
    font-weight: 700;
  }
  .lp-j-credit-services__col--other .lp-j-credit-services__cell--data {
    font-size: 11px;
    font-weight: 500;
  }

  /* Headers */
  .lp-j-credit-services__head {
    height: 40px;
    font-size: 16px;
  }

  /* Check icon — autohtml SP uses 12px */
  .lp-j-credit-services__check { width: 12px; height: 12px; }

  /* SP line breaks / small annotation text */
  .lp-j-credit-services__br--sp { display: inline; }
  .lp-j-credit-services__small { font-size: 10px; font-weight: inherit; }

  /* Multi-line content alignment is now handled by the general
     .lp-j-credit-services__cell--data text-align rule above. */
}


/* ──────────────────────────────────────────────
   Section: Lineup（目的別に選べる商品ラインナップ）
   ────────────────────────────────────────────── */
.lp-j-credit-lineup {
  position: relative;
  background: var(--c-brand-green);
  padding: 80px 0;
  overflow: hidden;
}
.lp-j-credit-lineup__bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(255, 255, 255, 0.08) 0%, transparent 60%),
    radial-gradient(ellipse at 80% 80%, rgba(0, 0, 0, 0.10) 0%, transparent 60%);
  pointer-events: none;
  z-index: 0;
}
.lp-j-credit-lineup__inner {
  position: relative;
  z-index: 1;
  width: 100%;
}
@media (min-width: 769px) {
  .lp-j-credit-lineup__inner {
    padding-left: max(40px, calc((100vw - 1280px) / 2));
    padding-right: max(40px, calc((100vw - 1280px) / 2));
  }
}
.lp-j-credit-lineup__heading {
  text-align: center;
  margin-bottom: 40px;
}
.lp-j-credit-lineup__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-base-white);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.lp-j-credit-lineup__sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-base-white);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lp-j-credit-lineup__br--sp { display: none; }

/* Carousel container */
.lp-j-credit-lineup__carousel {
  position: relative;
}
.lp-j-credit-lineup__swiper {
  width: 100%;
  overflow: hidden;
}
.lp-j-credit-lineup__slide {
  width: 346px;
  height: auto;
}

/* Card */
.lp-j-credit-lineup__card {
  position: relative;
  width: 346px;
  height: 100%;
  background: var(--c-base-white);
  border-radius: 20px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.lp-j-credit-lineup__icon {
  position: absolute;
  top: 196px;
  left: 16px;
  z-index: 2;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-base-white);
  border-radius: 50%;
  color: var(--c-brand-green);
  font-size: 14px;
  line-height: 1;
}
.lp-j-credit-lineup__image {
  width: 100%;
  height: 200px;
  background: var(--c-brand-green-light);
  overflow: hidden;
}
.lp-j-credit-lineup__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-j-credit-lineup__body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 16px 20px 24px;
}
.lp-j-credit-lineup__product-title {
  min-height: 56px;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-base-black);
  line-height: 1.5;
  letter-spacing: 0.02em;
}

/* Specs grid (4 cols × 2 rows) */
.lp-j-credit-lineup__specs {
  display: grid;
  grid-template-columns: auto 1fr auto 1fr;
  border: 1px solid var(--c-base-gray-light);
  border-radius: 6px;
  overflow: hidden;
}
.lp-j-credit-lineup__spec-label,
.lp-j-credit-lineup__spec-value {
  padding: 8px 10px;
  font-size: 12px;
  line-height: 1.2;
  letter-spacing: 0.02em;
  border-bottom: 1px solid var(--c-base-gray-light);
}
.lp-j-credit-lineup__specs > :nth-last-child(-n+4) {
  border-bottom: none;
}
.lp-j-credit-lineup__spec-label {
  background: var(--c-base-gray-light-02);
  color: var(--c-base-gray);
  font-weight: 500;
  white-space: nowrap;
}
.lp-j-credit-lineup__spec-value {
  background: var(--c-base-white);
  color: var(--c-base-black);
  font-weight: 700;
  text-align: right;
}

/* CTA button */
.lp-j-credit-lineup__cta {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  margin-top: auto;
  padding: 0 24px;
  background: linear-gradient(180deg, #34c46d 0%, var(--c-brand-green) 100%);
  border-radius: 100px;
  color: var(--c-base-white);
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1;
  filter: drop-shadow(0 4px 8px rgba(36, 170, 90, 0.4));
  transition: filter 0.2s, transform 0.2s;
}
.lp-j-credit-lineup__cta:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 6px 10px rgba(36, 170, 90, 0.5));
}

/* Navigation buttons */
.lp-j-credit-lineup__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-base-white);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
  transition: transform 0.2s, box-shadow 0.2s;
}
.lp-j-credit-lineup__nav:hover {
  transform: translateY(-50%) scale(1.05);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}
.lp-j-credit-lineup__nav.swiper-button-disabled {
  opacity: 0.4;
  cursor: not-allowed;
}
.lp-j-credit-lineup__nav--prev {
  left: 40px;
}
.lp-j-credit-lineup__nav--next {
  right: 40px;
}
.lp-j-credit-lineup__nav-arrow {
  width: 14px;
  height: 14px;
  border-style: solid;
  border-color: var(--c-brand-green);
}
.lp-j-credit-lineup__nav--prev .lp-j-credit-lineup__nav-arrow {
  border-width: 3px 0 0 3px;
  transform: rotate(-45deg);
  margin-left: 4px;
}
.lp-j-credit-lineup__nav--next .lp-j-credit-lineup__nav-arrow {
  border-width: 3px 3px 0 0;
  transform: rotate(45deg);
  margin-right: 4px;
}

/* Scrollbar */
.lp-j-credit-lineup__scrollbar.swiper-scrollbar,
.lp-j-credit-lineup__scrollbar.swiper-scrollbar.swiper-scrollbar-horizontal {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  width: 320px;
  height: 8px;
  margin: 32px auto 0;
  background: var(--c-base-white);
  border-radius: 100px;
  z-index: 1;
}
.lp-j-credit-lineup__scrollbar .swiper-scrollbar-drag {
  background: var(--c-point-yellow);
  border-radius: 100px;
  cursor: pointer;
}

/* Lineup responsive */
@media (max-width: 768px) {
  .lp-j-credit-lineup { padding: 60px 0; }
  .lp-j-credit-lineup__heading { padding-right: 16px; margin-bottom: 24px; }
  .lp-j-credit-lineup__title { font-size: 24px; }
  .lp-j-credit-lineup__sub { font-size: 13px; }
  .lp-j-credit-lineup__br--sp { display: inline; }
  /* Swiper sizes the slide via slidesPerView:1; card fills it */
  .lp-j-credit-lineup__slide { width: auto; }
  .lp-j-credit-lineup__card { width: 100%; max-width: 320px; margin: 0 auto; }
  .lp-j-credit-lineup__product-title { min-height: 48px; font-size: 14px; }
  .lp-j-credit-lineup__nav { width: 44px; height: 44px; }
  .lp-j-credit-lineup__nav--prev { left: 8px; }
  .lp-j-credit-lineup__nav--next { right: 8px; }
  .lp-j-credit-lineup__scrollbar.swiper-scrollbar { width: calc(100% - 32px); max-width: 320px; }
}


/* ──────────────────────────────────────────────
   Section: Step（最短1週間、3ステップで調達完了）
   ────────────────────────────────────────────── */
.lp-j-credit-step {
  background: var(--c-brand-green-light);
  padding: 100px 0;
}
.lp-j-credit-step__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.lp-j-credit-step__heading {
  text-align: center;
  margin-bottom: 80px;
}
.lp-j-credit-step__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.lp-j-credit-step__title-emph {
  color: var(--c-brand-green);
}
.lp-j-credit-step__sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-base-black);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lp-j-credit-step__br--sp { display: none; }

/* 3 cards */
.lp-j-credit-step__list {
  display: flex;
  gap: 21px;
  justify-content: center;
  align-items: stretch;
}
.lp-j-credit-step__card {
  position: relative;
  flex: 1 1 0;
  max-width: 346px;
  min-width: 0;
  background: var(--c-base-white);
  border-radius: 20px;
  padding: 52px 40px 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
}
.lp-j-credit-step__num {
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--c-point-yellow);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Roboto', sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--c-brand-green);
  line-height: 1;
  letter-spacing: 0.02em;
}
.lp-j-credit-step__icon {
  width: 266px;
  height: 160px;
  background: var(--c-base-gray-light-02);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.lp-j-credit-step__icon img {
  max-width: 50%;
  max-height: 70%;
  object-fit: contain;
}
.lp-j-credit-step__text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  width: 100%;
}
.lp-j-credit-step__card-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-brand-green);
  letter-spacing: 0.02em;
  line-height: 1;
  text-align: center;
}
.lp-j-credit-step__card-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  line-height: 1.6;
  text-align: center;
}

/* Step responsive */
@media (max-width: 1100px) {
  .lp-j-credit-step__list {
    flex-direction: column;
    align-items: center;
    gap: 48px;
  }
  .lp-j-credit-step__card {
    flex: none;
    width: 100%;
    max-width: 480px;
  }
}
@media (max-width: 768px) {
  .lp-j-credit-step { padding: 60px 0; }
  .lp-j-credit-step__heading { margin-bottom: 60px; }
  .lp-j-credit-step__title { font-size: 24px; }
  .lp-j-credit-step__sub { font-size: 13px; }
  .lp-j-credit-step__br--sp { display: inline; }
  .lp-j-credit-step__card { padding: 44px 24px 32px; gap: 24px; }
  .lp-j-credit-step__num { width: 48px; height: 48px; top: -24px; font-size: 20px; }
  .lp-j-credit-step__icon { width: 100%; max-width: 266px; height: 140px; }
  .lp-j-credit-step__card-title { font-size: 20px; }
  .lp-j-credit-step__card-text { font-size: 13px; }
}


/* ──────────────────────────────────────────────
   Section: FAQ（よくあるご質問・アコーディオン）
   ────────────────────────────────────────────── */
.lp-j-credit-faq {
  background: var(--c-base-white);
  padding: 100px 0;
}
.lp-j-credit-faq__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.lp-j-credit-faq__title {
  text-align: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 60px;
}

/* List */
.lp-j-credit-faq__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Each item (details) */
.lp-j-credit-faq__item {
  border-radius: 6px;
  overflow: hidden;
}
.lp-j-credit-faq__item summary::-webkit-details-marker { display: none; }
.lp-j-credit-faq__item summary { list-style: none; }

/* Q row (summary) */
.lp-j-credit-faq__q {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--c-brand-green);
  color: var(--c-base-white);
  border-radius: 6px;
  cursor: pointer;
  transition: border-radius 0.2s;
}
.lp-j-credit-faq__item[open] .lp-j-credit-faq__q {
  border-radius: 6px 6px 0 0;
}
.lp-j-credit-faq__q-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-base-white);
  color: var(--c-brand-green);
  border-radius: 50%;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.lp-j-credit-faq__q-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* +/- icon */
.lp-j-credit-faq__icon {
  position: relative;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
}
.lp-j-credit-faq__icon::before,
.lp-j-credit-faq__icon::after {
  content: '';
  position: absolute;
  background: var(--c-base-white);
  border-radius: 1px;
}
/* horizontal bar (always visible) */
.lp-j-credit-faq__icon::before {
  left: 0;
  top: 50%;
  width: 20px;
  height: 2px;
  margin-top: -1px;
}
/* vertical bar (hides when open → becomes "−") */
.lp-j-credit-faq__icon::after {
  left: 50%;
  top: 0;
  width: 2px;
  height: 20px;
  margin-left: -1px;
  transition: transform 0.2s ease;
}
.lp-j-credit-faq__item[open] .lp-j-credit-faq__icon::after {
  transform: scaleY(0);
}

/* A row */
.lp-j-credit-faq__a {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 20px;
  background: var(--c-brand-green-light);
  border-radius: 0 0 6px 6px;
}
.lp-j-credit-faq__a-badge {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-brand-green);
  color: var(--c-base-white);
  border-radius: 50%;
  font-family: 'Roboto', sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
}
.lp-j-credit-faq__a-text {
  flex: 1;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: var(--c-base-black);
  letter-spacing: 0.02em;
  line-height: 1.6;
}

/* FAQ responsive */
@media (max-width: 768px) {
  .lp-j-credit-faq { padding: 60px 0; }
  .lp-j-credit-faq__inner { padding: 0 16px; }
  .lp-j-credit-faq__title { font-size: 24px; margin-bottom: 32px; }
  .lp-j-credit-faq__q,
  .lp-j-credit-faq__a {
    gap: 12px;
    padding: 12px 14px;
  }
  .lp-j-credit-faq__q-badge,
  .lp-j-credit-faq__a-badge { width: 28px; height: 28px; font-size: 16px; }
  .lp-j-credit-faq__q-text,
  .lp-j-credit-faq__a-text { font-size: 14px; }
  .lp-j-credit-faq__icon { width: 16px; height: 16px; }
  .lp-j-credit-faq__icon::before { width: 16px; }
  .lp-j-credit-faq__icon::after { height: 16px; }
}


/* ──────────────────────────────────────────────
   Section: CTA（現在の調達コストを、まず比較してみてください）
   ────────────────────────────────────────────── */
.lp-j-credit-cta {
  position: relative;
  padding: 80px 0;
  background-color: var(--c-brand-green);
  background-image:
    repeating-linear-gradient(135deg,
      transparent 0,
      transparent 80px,
      rgba(255, 255, 255, 0.04) 80px,
      rgba(255, 255, 255, 0.04) 160px),
    linear-gradient(135deg, #1c8a48 0%, #2cab5d 60%, #34c46d 100%);
  overflow: hidden;
}
.lp-j-credit-cta__inner {
  position: relative;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Heading */
.lp-j-credit-cta__heading {
  text-align: center;
  margin-bottom: 32px;
}
.lp-j-credit-cta__title {
  font-size: 32px;
  font-weight: 700;
  color: var(--c-base-white);
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
}
.lp-j-credit-cta__sub {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-base-white);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lp-j-credit-cta__br--sp { display: none; }

/* Mode tabs (見積り / 資料DL) */
.lp-j-credit-cta__mode-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}
.lp-j-credit-cta__mode-tab {
  position: relative;
  min-width: 240px;
  padding: 14px 32px;
  background: rgba(255, 231, 55, 0.35);
  border: none;
  border-radius: 5px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.7);
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lp-j-credit-cta__mode-tab.is-active {
  background: var(--c-point-yellow-strong);
  color: var(--c-brand-green);
  filter: drop-shadow(0 4px 8px rgba(255, 231, 55, 0.3));
}
/* Active tab → downward arrow tip */
.lp-j-credit-cta__mode-tab.is-active::after {
  content: '';
  position: absolute;
  left: 50%;
  bottom: -10px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 12px solid var(--c-point-yellow-strong);
}

/* Panels */
.lp-j-credit-cta__panel { display: none; padding-top: 32px; }
.lp-j-credit-cta__panel.is-active { display: block; }
.lp-j-credit-cta__panel[hidden] { display: none; }

/* Product tabs (J-クレジット / 非化石証書) */
.lp-j-credit-cta__product-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 0;
}
.lp-j-credit-cta__product-tab {
  position: relative;
  min-width: 240px;
  padding: 12px 32px;
  background: rgba(255, 255, 255, 0.35);
  border: none;
  border-radius: 6px 6px 0 0;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 16px;
  font-weight: 700;
  color: var(--c-base-white);
  letter-spacing: 0.02em;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lp-j-credit-cta__product-tab.is-active {
  background: var(--c-base-white);
  color: var(--c-brand-green);
}

/* Form */
.lp-j-credit-cta__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 40px 60px;
}
.lp-j-credit-cta__form--bordered {
  border: 2px solid var(--c-base-white);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.06);
}

/* Form row */
.lp-j-credit-cta__row {
  display: flex;
  align-items: center;
  gap: 12px;
}
.lp-j-credit-cta__row--textarea {
  align-items: flex-start;
}
.lp-j-credit-cta__row--textarea .lp-j-credit-cta__badge,
.lp-j-credit-cta__row--textarea .lp-j-credit-cta__label {
  margin-top: 12px;
}

/* 必須/任意 badge */
.lp-j-credit-cta__badge {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
}
.lp-j-credit-cta__badge--req {
  background: var(--c-point-orange-light);
  border: 1px solid var(--c-point-orange);
  color: var(--c-point-orange);
}
.lp-j-credit-cta__badge--opt {
  background: var(--c-base-white);
  border: 1px solid var(--c-base-gray);
  color: var(--c-base-gray);
}

/* Label */
.lp-j-credit-cta__label {
  flex-shrink: 0;
  width: 130px;
  font-size: 13px;
  font-weight: 500;
  color: var(--c-base-white);
  letter-spacing: 0.02em;
  line-height: 1.2;
}

/* Input wrap */
.lp-j-credit-cta__input-wrap {
  flex: 1;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Inputs */
.lp-j-credit-cta__input,
.lp-j-credit-cta__select,
.lp-j-credit-cta__textarea {
  flex: 1;
  width: 100%;
  background: var(--c-base-white);
  border: none;
  border-radius: 6px;
  padding: 0 14px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  color: var(--c-base-black);
  outline: none;
  transition: box-shadow 0.2s;
}
.lp-j-credit-cta__input,
.lp-j-credit-cta__select { height: 38px; }
.lp-j-credit-cta__textarea {
  height: 120px;
  padding: 12px 14px;
  resize: vertical;
}
.lp-j-credit-cta__input:focus,
.lp-j-credit-cta__select:focus,
.lp-j-credit-cta__textarea:focus {
  box-shadow: 0 0 0 2px rgba(255, 231, 55, 0.6);
}
.lp-j-credit-cta__select {
  appearance: none;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--c-base-gray) 50%),
    linear-gradient(-45deg, transparent 50%, var(--c-base-gray) 50%);
  background-position:
    calc(100% - 18px) 50%,
    calc(100% - 12px) 50%;
  background-size: 6px 6px;
  background-repeat: no-repeat;
  padding-right: 36px;
}
.lp-j-credit-cta__textarea::placeholder {
  color: var(--c-base-gray);
  opacity: 0.6;
}
.lp-j-credit-cta__unit {
  flex-shrink: 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--c-base-white);
  letter-spacing: 0.02em;
  white-space: nowrap;
}

/* Privacy */
.lp-j-credit-cta__privacy {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  cursor: pointer;
}
.lp-j-credit-cta__privacy-check {
  width: 14px;
  height: 14px;
  margin: 0;
  accent-color: var(--c-point-yellow-strong);
  cursor: pointer;
}
.lp-j-credit-cta__privacy-text {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-base-white);
  letter-spacing: 0.02em;
  line-height: 1;
}
.lp-j-credit-cta__privacy-link {
  color: var(--c-point-yellow-strong);
  text-decoration: underline;
}

/* Submit button */
.lp-j-credit-cta__submit {
  align-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 280px;
  height: 56px;
  margin-top: 16px;
  padding: 16px 80px;
  background: linear-gradient(90deg, var(--c-point-yellow-deep) 0%, var(--c-point-orange) 100%);
  border: none;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--c-base-white);
  letter-spacing: 0.04em;
  line-height: 1;
  cursor: pointer;
  filter: drop-shadow(0 6px 12px rgba(234, 199, 0, 0.5));
  transition: transform 0.2s, filter 0.2s;
  white-space: nowrap;
}
.lp-j-credit-cta__submit:hover {
  transform: translateY(-1px);
  filter: drop-shadow(0 8px 16px rgba(234, 199, 0, 0.6));
}
.lp-j-credit-cta__submit:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  transform: none;
  filter: drop-shadow(0 6px 12px rgba(234, 199, 0, 0.3));
}
.lp-j-credit-cta__submit:disabled:hover {
  transform: none;
  filter: drop-shadow(0 6px 12px rgba(234, 199, 0, 0.3));
}

/* CTA responsive */
@media (max-width: 768px) {
  .lp-j-credit-cta { padding: 60px 0; }
  .lp-j-credit-cta__inner { padding: 0 16px; }
  .lp-j-credit-cta__title { font-size: 22px; }
  .lp-j-credit-cta__sub { font-size: 12px; }
  .lp-j-credit-cta__br--sp { display: inline; }

  .lp-j-credit-cta__mode-tabs { gap: 4px; flex-direction: row; align-items: center; justify-content: center; }
  .lp-j-credit-cta__mode-tab { min-width: 0; max-width: 200px; padding: 12px 16px; font-size: 14px; }
  .lp-j-credit-cta__mode-tab.is-active::after { display: block; }

  .lp-j-credit-cta__product-tabs { gap: 4px; }
  .lp-j-credit-cta__product-tab { min-width: 150px; padding: 10px 12px; font-size: 14px; }

  .lp-j-credit-cta__form { padding: 24px 16px; }
  .lp-j-credit-cta__row { flex-wrap: wrap; gap: 8px; }
  .lp-j-credit-cta__label { width: auto; min-width: 110px; }
  .lp-j-credit-cta__input-wrap { width: 100%; }

  .lp-j-credit-cta__submit {
    min-width: 0;
    width: 100%;
    padding: 14px 24px;
    font-size: 16px;
  }
}


/* ──────────────────────────────────────────────
   Footer
   ────────────────────────────────────────────── */
.lp-j-credit-footer {
  background: var(--c-base-white);
  padding: 32px 20px;
  text-align: center;
}
.lp-j-credit-footer__copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: var(--c-base-gray);
  letter-spacing: 0.02em;
  line-height: 1.4;
}


/* ──────────────────────────────────────────────
   Section: Problem
   ────────────────────────────────────────────── */
.lp-j-credit-problem {
  background: var(--c-base-white);
  padding: 200px 0;
}
.lp-j-credit-problem__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
}
.lp-j-credit-problem__heading {
  text-align: center;
  margin-bottom: 60px;
}
.lp-j-credit-problem__title {
  font-size: 40px;
  font-weight: 700;
  color: var(--c-base-black);
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-bottom: 24px;
}
.lp-j-credit-problem__title-emph {
  display: inline-block;
  border: 3px solid var(--c-point-orange);
  color: var(--c-point-orange);
  padding: 4px 12px 6px;
  margin: 0 4px;
  line-height: 1;
}
.lp-j-credit-problem__title-br { display: none; }
.lp-j-credit-problem__sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-base-black);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lp-j-credit-problem__list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lp-j-credit-problem__item {
  display: flex;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}
.lp-j-credit-problem__icon {
  flex-shrink: 0;
  width: 120px;
  height: auto;
  align-self: stretch;
  object-fit: cover;
}
.lp-j-credit-problem__body {
  flex: 1;
  background: var(--c-base-gray-light-02);
  padding: 24px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
  border-radius: 0 20px 20px 0;
}
.lp-j-credit-problem__item-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-base-black);
  line-height: 1.4;
  letter-spacing: 0.02em;
}
.lp-j-credit-problem__item-title-br--sp { display: none; }
.lp-j-credit-problem__item-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-base-black);
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* Problem responsive */
@media (max-width: 768px) {
  .lp-j-credit-problem { padding: 60px 0; }
  .lp-j-credit-problem__inner { padding: 0 20px; }
  .lp-j-credit-problem__heading { margin-bottom: 40px; }
  .lp-j-credit-problem__title { font-size: 26px; }
  .lp-j-credit-problem__title-br { display: inline; }
  .lp-j-credit-problem__sub { display: none; }

  /* List — autohtml-project SP: icon (120×220) left + body right, gap 12 */
  .lp-j-credit-problem__list { gap: 12px; }
  .lp-j-credit-problem__item {
    flex-direction: row;
    align-items: stretch;
    box-shadow: none;
  }
  .lp-j-credit-problem__icon {
    width: 120px;
    height: auto;
    min-height: 220px;
    flex-shrink: 0;
    align-self: stretch;
    object-fit: cover;
  }
  .lp-j-credit-problem__body {
    flex: 1;
    min-height: 220px;
    padding: 20px;
    gap: 16px;
    border-radius: 0 16px 16px 0;
    background: var(--c-base-gray-light-02);
  }
  .lp-j-credit-problem__item-title { font-size: 16px; line-height: 1.4; }
  .lp-j-credit-problem__item-text  { font-size: 14px; line-height: 1.4; }
  .lp-j-credit-problem__item-title-br--sp { display: inline; }
}


/* ──────────────────────────────────────────────
   Section: Advantage（OFFSELなら最もお得に最適な調達ができます）
   ────────────────────────────────────────────── */
.lp-j-credit-advantage {
  position: relative;
  z-index: 1;
  background: transparent;
}
.lp-j-credit-advantage__inner {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 20px;
}
.lp-j-credit-advantage__heading {
  text-align: center;
  margin-bottom: 60px;
}
.lp-j-credit-advantage__title {
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.6;
  margin-bottom: 16px;
}
.lp-j-credit-advantage__title-brand {
  display: inline-block;
  font-size: 32px;
  color: var(--c-brand-green);
  font-weight: 700;
}
.lp-j-credit-advantage__title-main {
  display: inline-block;
  font-size: 40px;
  color: var(--c-base-black);
  font-weight: 700;
}
.lp-j-credit-advantage__title-br--sp { display: none; }
.lp-j-credit-advantage__sub {
  font-size: 16px;
  font-weight: 500;
  color: var(--c-base-black);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lp-j-credit-advantage__sub-emph {
  color: var(--c-point-orange);
  font-weight: 700;
}

/* 3 cards */
.lp-j-credit-advantage__cards {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 21px;
  justify-content: center;
  align-items: stretch;
  border-radius: 20px;
  margin-bottom: 80px;
}
.lp-j-credit-advantage__card {
  flex: 1 1 0;
  max-width: 346px;
  min-width: 0;
  display: flex;
  flex-direction: column;
  background: var(--c-base-white);
  border-radius: 20px;
  overflow: hidden;
}
.lp-j-credit-advantage__card-image {
  width: 100%;
  height: 200px;
  background: var(--c-brand-green-light);
  overflow: hidden;
}
.lp-j-credit-advantage__card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.lp-j-credit-advantage__card-body {
  flex: 1;
  background: var(--c-base-white);
  border-radius: 0 0 20px 20px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.lp-j-credit-advantage__card-label {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  background: var(--c-point-yellow);
  border-radius: 100px;
  padding: 6px 12px;
  line-height: 1;
}
.lp-j-credit-advantage__card-label-num {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-brand-green);
}
.lp-j-credit-advantage__card-label-text {
  font-size: 14px;
  font-weight: 500;
  color: var(--c-base-black);
}

/* Card 01 (price) */
.lp-j-credit-advantage__card-price {
  display: flex;
  align-items: flex-end;
  gap: 1px;
  line-height: 0.8;
}
.lp-j-credit-advantage__card-price-num {
  font-family: 'Roboto', sans-serif;
  font-size: 44px;
  font-weight: 700;
  color: var(--c-brand-green);
}
.lp-j-credit-advantage__card-price-unit {
  font-size: 24px;
  font-weight: 900;
  color: var(--c-brand-green);
  padding-bottom: 2px;
}

/* Cards 02 / 03 headline */
.lp-j-credit-advantage__card-headline {
  font-size: 32px;
  font-weight: 900;
  color: var(--c-brand-green);
  line-height: 1;
}

.lp-j-credit-advantage__card-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--c-base-black);
  text-align: center;
  line-height: 1.6;
  letter-spacing: 0.02em;
}

/* Card 02 fee list */
.lp-j-credit-advantage__card--fee .lp-j-credit-advantage__card-body {
  align-items: stretch;
}
.lp-j-credit-advantage__card--fee .lp-j-credit-advantage__card-label,
.lp-j-credit-advantage__card--fee .lp-j-credit-advantage__card-headline {
  align-self: center;
}
.lp-j-credit-advantage__card--fee .lp-j-credit-advantage__card-text {
  text-align: center;
}
.lp-j-credit-advantage__feelist {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.lp-j-credit-advantage__feelist-item {
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--c-brand-green-light);
  border-radius: 6px;
  padding: 6px 20px;
}
.lp-j-credit-advantage__feelist-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background-image: url('../img/icon-check.svg');
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.lp-j-credit-advantage__feelist-text {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-base-black);
  line-height: 1.6;
  letter-spacing: 0.02em;
}
.lp-j-credit-advantage__feelist-text--small {
  font-size: 12px;
  font-weight: 600;
}

/* Advantage responsive */
@media (max-width: 1100px) {
  .lp-j-credit-advantage__cards {
    flex-direction: column;
    align-items: center;
  }
  .lp-j-credit-advantage__card {
    width: 100%;
    max-width: 480px;
    flex: none;
  }
}
@media (max-width: 768px) {
  .lp-j-credit-advantage__inner { padding: 0 20px; }
  .lp-j-credit-advantage__heading { margin-bottom: 40px; }
  .lp-j-credit-advantage__title-brand { font-size: 22px; }
  .lp-j-credit-advantage__title-main  { font-size: 26px; }
  .lp-j-credit-advantage__title-br--sp { display: inline; }
  .lp-j-credit-advantage__sub { display: none; }
  .lp-j-credit-advantage__cards { margin-bottom: 60px; }
  .lp-j-credit-advantage__card-headline { font-size: 24px; }
  .lp-j-credit-advantage__card-price-num { font-size: 36px; }
  .lp-j-credit-advantage__card-price-unit { font-size: 18px; }
  .lp-j-credit-advantage__feelist-item { padding: 6px 16px; }
}


/* ──────────────────────────────────────────────
   Sticky CTA (追従)
   ────────────────────────────────────────────── */
.lp-j-credit-sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 100;
  background: var(--c-base-white);
  box-shadow: 0 -2px 12px rgba(0, 0, 0, 0.08);
  padding: 28px 24px 16px;
}
.lp-j-credit-sticky__inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap: 32px;
}
.lp-j-credit-sticky__item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  flex: 0 1 420px;
  transition: transform 0.2s, filter 0.2s;
}
.lp-j-credit-sticky__item:hover {
  transform: translateY(-1px);
}

/* Accent row (label + overlay icon) sits above the button */
.lp-j-credit-sticky__accent {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-bottom: -10px;
  padding-top: 14px;
  z-index: 2;
}
.lp-j-credit-sticky__icon {
  position: absolute;
  top: 0;
  left: -10px;
  width: 45px;
  height: 45px;
  z-index: 3;
  pointer-events: none;
  filter: drop-shadow(1px 1px 2px rgba(9, 123, 55, 0.5));
}
.lp-j-credit-sticky__label {
  position: relative;
  display: inline-flex;
  align-items: center;
  padding: 8px 24px 10px 36px;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-weight: 900;
  font-size: 16px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.lp-j-credit-sticky__label::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
}
.lp-j-credit-sticky__label--quote {
  background: #24aa5a;
  color: var(--c-base-white);
}
.lp-j-credit-sticky__label--quote::after {
  border-top: 7px solid #24aa5a;
}
.lp-j-credit-sticky__label--download {
  background: #ffe737;
  color: #24aa5a;
}
.lp-j-credit-sticky__label--download::after {
  border-top: 7px solid #ffe737;
}

/* Main gradient button */
.lp-j-credit-sticky__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 16px 40px 18px;
  border-radius: 100px;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 900;
  color: var(--c-base-white);
  letter-spacing: 0.04em;
  line-height: 1;
  white-space: nowrap;
}
.lp-j-credit-sticky__btn--quote {
  background: linear-gradient(90deg, #f5d806 0%, #e59149 100%);
  filter: drop-shadow(0 4px 4px rgba(234, 199, 0, 0.6));
}
.lp-j-credit-sticky__btn--download {
  background: linear-gradient(90deg, #5ad863 0%, #24aa5a 100%);
  filter: drop-shadow(0 4px 4px rgba(36, 170, 90, 0.5));
}

/* Avoid hiding page content behind the sticky bar */
body { padding-bottom: 140px; }

/* ── SP ── */
@media (max-width: 768px) {
  body { padding-bottom: 112px; }

  .lp-j-credit-sticky {
    padding: 22px 8px 10px;
  }
  .lp-j-credit-sticky__inner {
    gap: 8px;
  }
  .lp-j-credit-sticky__item {
    flex: 1 1 0;
    min-width: 0;
  }
  .lp-j-credit-sticky__accent {
    padding-top: 10px;
  }
  .lp-j-credit-sticky__icon {
    top: 0;
    left: -6px;
    width: 30px;
    height: 30px;
  }
  .lp-j-credit-sticky__label {
    padding: 5px 12px 6px 26px;
    font-size: 11px;
    letter-spacing: 0.02em;
  }
  .lp-j-credit-sticky__label::after {
    bottom: -5px;
    border-left-width: 5px;
    border-right-width: 5px;
  }
  .lp-j-credit-sticky__label--quote::after { border-top-width: 6px; }
  .lp-j-credit-sticky__label--download::after { border-top-width: 6px; }
  .lp-j-credit-sticky__btn {
    min-height: 44px;
    padding: 10px 8px 12px;
    font-size: 13px;
    letter-spacing: 0.02em;
  }
}
