/* ========================================
   Primitive Tokens（変更不可）
   ======================================== */
:root {
  --white: #ffffff;
  --black: #212126;

  /* Primary */
  --color-primary-50: #f5fbfd;
  --color-primary-100: #e9f4fa;
  --color-primary-200: #c2e3f5;
  --color-primary-300: #89c7eb;
  --color-primary-400: #5fb9ec;
  --color-primary-500: #198bd2;
  --color-primary-600: #1377b5;
  --color-primary-700: #0e679a;
  --color-primary-800: #034e7a;
  --color-primary-900: #02334f;

  /* Accent */
  --color-accent-50: #fff8f4;
  --color-accent-100: #fff0e7;
  --color-accent-200: #ffe3d1;
  --color-accent-300: #ffb386;
  --color-accent-400: #ff9050;
  --color-accent-500: #f57919;
  --color-accent-600: #e26319;
  --color-accent-700: #db5a0a;
  --color-accent-800: #c34801;
  --color-accent-900: #ad3e00;

  /* Gray */
  --color-gray-50: #f8f9fa;
  --color-gray-100: #f6f7f8;
  --color-gray-200: #e4e4e7;
  --color-gray-300: #d4d4d8;
  --color-gray-400: #9f9fa9;
  --color-gray-500: #71717b;
  --color-gray-600: #52525c;
  --color-gray-700: #3f3f46;
  --color-gray-800: #2c2c30;
  --color-gray-900: #212126;

  /* Decorative（装飾・演出専用） */
  --color-deco-neon-lime: #edffb1;
}

/* ========================================
   System Palette（変更不可）
   ======================================== */
:root {
  --system-success: #15bb03;
  --system-error: #ff4855;
}

/* ========================================
   Semantic Tokens
   ======================================== */
/* primitive Tokens を値に設定 */
:root {
  /* text */
  --color-text-default: var(--color-gray-900);
  --color-text-primary: var(--color-primary-500);

  /* button primary */
  --color-button-primary-text: var(--white);
  --color-button-primary-text-hover: var(--color-accent-600);
  --color-button-primary-bg: var(--color-accent-600);
  --color-button-primary-bg-hover: var(--white);
  --color-button-primary-badge: var(--white);
  --color-button-primary-badge-hover: var(--color-accent-600);
  --color-button-primary-border: var(--color-accent-600);
  --color-button-primary-border-hover: var(--color-accent-600);

  /* button secondary */
  --color-button-secondary-text: var(--white);
  --color-button-secondary-text-hover: var(--color-primary-500);
  --color-button-secondary-bg: var(--color-primary-500);
  --color-button-secondary-bg-hover: var(--white);
  --color-button-secondary-border: var(--color-primary-500);
  --color-button-secondary-border-hover: var(--color-primary-500);

  /* button tertiary */
  --color-button-tertiary-text: var(--color-primary-500);
  --color-button-tertiary-text-hover: var(--white);
  --color-button-tertiary-bg: var(--white);
  --color-button-tertiary-bg-hover: var(--color-primary-500);
  --color-button-tertiary-border: var(--color-primary-500);
  --color-button-tertiary-border-hover: var(--color-primary-500);
}

/* ststem Palette を値に設定 */
:root {
  --color-text-success: var(--system-success);
  --color-text-error: var(--system-error);
}

/* ========================================
   汎用パーツ
   ======================================== */

/* 共通CSS body { line-height: 155% } は計算値(固定px)のまま全子孫に継承されるため、
   カンプと同じ「フォントサイズ比での継承」になるよう各セクション配下を比率でリセットする */
.bizcheck-hero,
.bizcheck-problems,
.bizcheck-solution,
.bizcheck-usage,
.bizcheck-features,
.bizcheck-input,
.bizcheck-flow,
.bizcheck-faq,
.bizcheck-cta {
  line-height: 1.6;
}

/* 共通バッジスタイル */
.bizcheck-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 30px;
  padding: 7px 8px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
  text-align: center;
  background-color: var(--color-deco-neon-lime);
}

/* 共通セクションヘッダー */
.bizcheck-section-header {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  margin-bottom: 60px;
  text-align: center;
}
.bizcheck-section-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.bizcheck-section-title br {
  display: none;
}
.bizcheck-section-subtitle {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}

@media (width <= 940px) {
  .bizcheck-badge {
    height: 24px;
    padding: 5px 8px;
    font-size: 14px;
  }
  .bizcheck-section-header {
    gap: 12px;
    margin-bottom: 32px;
  }
  .bizcheck-section-title {
    font-size: 32px;
  }
  .bizcheck-section-subtitle {
    font-size: 18px;
  }
}
@media (width <= 670px) {
  .bizcheck-section-header {
    gap: 8px;
    margin-bottom: 24px;
  }
  .bizcheck-section-title {
    font-size: 24px;
    line-height: 1.4;
  }
  .bizcheck-section-title br {
    display: inline;
  }
  .bizcheck-section-subtitle {
    font-size: 14px;
  }
}

/* ========================================
   BizCheck Hero Section
   ======================================== */
.bizcheck-hero {
  position: relative;
  padding-top: 92px;
  background-image: url(/web/img/bizcheck/bg.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.bizcheck-hero-inner {
  display: flex;
  gap: 56px;
  align-items: center;
  justify-content: center;
  max-width: 1280px;
  height: 540px;
  padding: 0 32px;
  margin: 0 auto;
}
.bizcheck-hero-title {
  margin: 0 0 20px;
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
  white-space: nowrap;
}
.bizcheck-hero-description {
  margin: 0 0 36px;
  font-size: clamp(14px, 1.4vw, 20px);
  font-weight: 700;
  line-height: 2;
  color: var(--white);
}
.bizcheck-hero-description-segment {
  display: inline-block;
}
.bizcheck-hero-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  height: 88px;
  font-weight: 700;
  color: var(--color-button-primary-text);
  background-color: var(--color-button-primary-bg);
  border: 2px solid var(--color-button-primary-border);
  border-radius: 200px;
  box-shadow: 0 0 8px rgb(0 0 0 / 25%);
  transition:
    0.2s,
    background-color 0.2s ease,
    color 0.2s ease;
}
.bizcheck-hero-cta:hover {
  color: var(--color-button-primary-text-hover);
  text-decoration: none;
  background-color: var(--color-button-primary-bg-hover);
  border: 2px solid var(--color-button-primary-border-hover);
  transform: translateY(-8px);
}
.bizcheck-hero-cta:hover .bizcheck-hero-cta-text,
.bizcheck-hero-cta:hover .bizcheck-hero-cta-main {
  color: var(--color-button-primary-text-hover);
}
.bizcheck-hero-cta:hover .bizcheck-hero-cta-icon {
  color: var(--color-button-primary-text-hover);
  border-color: var(--color-button-primary-border);
}
.bizcheck-hero-cta-text {
  font-size: 18px;
  line-height: 1.2;
  color: var(--color-button-primary-text);
  transition: color 0.2s ease;
}
.bizcheck-hero-cta-main {
  font-size: 28px;
  line-height: 1.2;
  color: var(--color-button-primary-text);
  transition: color 0.2s ease;
}
.bizcheck-hero-cta-icon {
  position: absolute;
  top: 8px;
  right: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  font-size: 18px;
  color: var(--color-button-primary-text);
  border: 1px solid var(--color-button-primary-badge);
  border-radius: 100%;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.bizcheck-hero-cta-sentence {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  padding-right: 16px;
}
.bizcheck-hero-content {
  flex-shrink: 1;
}
.bizcheck-hero-image {
  display: flex;
  flex-shrink: 2;
  flex-direction: column;
  align-items: center;
  width: 520px;
  min-width: 240px;
  transform: translateY(64px);
}
.bizcheck-hero-image img {
  width: 100%;
  height: auto;
}

@media (width >= 941px) {
  .bizcheck-hero-image.inview-x-top {
    transform: translateY(114px);
  }
  .bizcheck-hero-image.inview-x-top.inview-o {
    transform: translateY(64px);
  }
}
@media (width <= 940px) {
  .bizcheck-hero {
    padding-top: 60px;
  }
  .bizcheck-hero-inner {
    gap: 16px;
    justify-content: space-around;
    height: auto;
    min-height: 360px;
    padding: 16px 20px 0;
  }
  .bizcheck-hero-content {
    min-width: 0;
  }
  .bizcheck-hero-title {
    font-size: clamp(28px, 3.4vw, 32px);
    white-space: normal;
  }
  .bizcheck-hero-description br {
    display: none;
  }
  .bizcheck-hero-description-segment {
    display: inline;
  }
  .bizcheck-hero-image {
    flex-shrink: 0;
    width: 46%;
    min-width: 300px;
    transform: translateY(40px);
  }
  .bizcheck-hero-cta {
    max-width: 380px;
    height: 70px;
  }
  .bizcheck-hero-cta-text {
    font-size: 14px;
  }
  .bizcheck-hero-cta-main {
    font-size: 20px;
  }
  .bizcheck-hero-cta-icon {
    top: 7px;
    right: 7px;
    width: 56px;
    height: 56px;
    font-size: 14px;
  }
}
@media (width >= 671px) {
  .bizcheck-hero-image.inview-x-top {
    transform: translateY(90px);
  }
  .bizcheck-hero-image.inview-x-top.inview-o {
    transform: translateY(40px);
  }
}
@media (width <= 670px) {
  .bizcheck-hero {
    padding-top: 96px;
  }
  .bizcheck-hero-inner {
    flex-direction: column;
    min-height: auto;
    padding: 0 16px 48px;
  }
  .bizcheck-hero-content {
    width: 100%;
    text-align: center;
  }
  .bizcheck-hero-title {
    margin-bottom: 8px;
    font-size: 28px;
  }
  .bizcheck-hero-description {
    margin-bottom: 24px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }
  .bizcheck-hero-cta {
    max-width: 100%;
    height: 64px;
    margin: 0 auto;
  }
  .bizcheck-hero-cta-icon {
    top: 3px;
    right: 3px;
  }
  .bizcheck-hero-image {
    width: 100%;
    max-width: 400px;
    margin-top: -64px;
    transform: translateY(112px);
  }
  .bizcheck-hero-image.inview-x-top {
    opacity: 0;
    transform: translateY(172px);
  }
  .bizcheck-hero-image.inview-x-top.inview-o {
    opacity: 1;
    transform: translateY(92px);
    transition:
      transform 0.4s,
      opacity 0.4s;
  }
}

/* ========================================
   BizCheck Problems Section
   ======================================== */
.bizcheck-problems {
  padding: 136px 40px 104px;
  color: var(--color-text-default);
  background-color: var(--color-gray-50);
}
.bizcheck-problems-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.bizcheck-problems .bizcheck-section-header {
  margin-bottom: 64px;
}
.bizcheck-problems-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
}
.bizcheck-problems-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  padding: 32px 28px 40px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 16px 4px var(--color-gray-200);
}
.bizcheck-problems-card-tail {
  position: absolute;
  bottom: -36px;
  left: 50%;
  filter: drop-shadow(0 5px 5px var(--color-gray-200));
  clip-path: inset(12px 0 0);
  transform: translateX(-50%);
}
.bizcheck-problems-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
.bizcheck-problems-card-body {
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.bizcheck-problems-card-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.5;
}
.bizcheck-problems-card-title span {
  display: inline-block;
}
.bizcheck-problems-card-description {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.7;
  color: var(--color-gray-600);
  text-wrap: pretty;
}
.bizcheck-problems-card-segment {
  display: inline-block;
}

@media (width <= 940px) {
  .bizcheck-problems {
    padding: 112px 20px 88px;
  }
  .bizcheck-problems .bizcheck-section-header {
    margin-bottom: 32px;
  }
  .bizcheck-problems-grid {
    gap: 16px;
  }
  .bizcheck-problems-card {
    gap: 16px;
    min-width: 0;
    padding: 20px 24px;
  }
  .bizcheck-problems-card-icon img {
    width: auto;
    height: 48px;
  }
  .bizcheck-problems-card-title {
    font-size: 18px;
  }
  .bizcheck-problems-card-description {
    font-size: 14px;
  }
  .bizcheck-problems-card-segment {
    display: inline;
  }
}
@media (width <= 670px) {
  .bizcheck-problems {
    padding: 88px 16px 72px;
  }
  .bizcheck-problems .bizcheck-section-header {
    margin-bottom: 24px;
  }
  .bizcheck-problems-grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .bizcheck-problems-card-tail {
    display: none;
  }
}

/* ========================================
   BizCheck Solution Section
   ======================================== */
.bizcheck-solution {
  position: relative;
  padding: 0 40px 80px;
  color: var(--color-text-default);
  background-color: var(--color-gray-50);
}
.bizcheck-solution-arrow {
  position: absolute;
  top: -70px;
  left: 50%;
  z-index: 2;
  transform: translateX(-50%);
}
.bizcheck-solution-arrow img {
  width: 440px;
  height: auto;
}
.bizcheck-solution-inner {
  position: relative;
  box-sizing: border-box;
  max-width: 1280px;
  padding: 112px 20px 88px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 16px;
  box-shadow: 0 0 8px 0 var(--color-gray-200);
}
.bizcheck-solution-title {
  margin: 0 0 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.bizcheck-solution-subtitle {
  margin: 0 0 48px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-solution-flex {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
  max-width: 1040px;
  margin: 0 auto 48px;
}
.bizcheck-solution-grid {
  display: grid;
  flex: 1;
  grid-template-columns: 1fr 56px 1fr;
  gap: 16px;
  align-items: stretch;
  max-width: 640px;
}
.bizcheck-solution-compare {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  text-align: center;
  border-radius: 8px;
}
.bizcheck-solution-compare-before {
  background-color: var(--color-gray-50);
}
.bizcheck-solution-compare-after {
  background-color: var(--color-primary-100);
}
.bizcheck-solution-compare-label {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 38px;
  font-weight: 700;
  border-radius: 8px;
}
.bizcheck-solution-compare-label-before {
  font-size: 20px;
  background-color: var(--color-primary-100);
  border: 1px solid var(--color-gray-900);
}
.bizcheck-solution-compare-label-after {
  font-size: 18px;
  color: var(--white);
  background-color: var(--color-primary-500);
}
.bizcheck-solution-compare-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-solution-compare-title-after {
  color: var(--color-text-primary);
}
.bizcheck-solution-compare-description {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
}
.bizcheck-solution-plus {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 40px;
  font-weight: 700;
  color: var(--color-text-primary);
}
.bizcheck-solution-illust {
  flex: 0 1 320px;
  min-width: 200px;
}
.bizcheck-solution-illust img {
  width: 100%;
  height: auto;
}
.bizcheck-solution-conclusion {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.bizcheck-solution-highlight {
  display: inline-block;
}
.bizcheck-solution-highlight01 {
  background: linear-gradient(to right, #ebfff0, #d5edf6) 0 110% / 100% 50%
    no-repeat;
}
.bizcheck-solution-highlight02 {
  background: linear-gradient(to right, #d5edf6, #cbe8f6) 0 110% / 100% 50%
    no-repeat;
}
.bizcheck-solution-highlight03 {
  background: linear-gradient(to right, #cbe8f6, #c2e3f5) 0 110% / 100% 50%
    no-repeat;
}

@media (width <= 940px) {
  .bizcheck-solution {
    padding: 0 20px 60px;
  }
  .bizcheck-solution-arrow {
    top: -50px;
  }
  .bizcheck-solution-arrow img {
    width: 320px;
  }
  .bizcheck-solution-inner {
    padding: 80px 16px 64px;
  }
  .bizcheck-solution-title {
    font-size: 28px;
  }
  .bizcheck-solution-subtitle {
    margin-bottom: 36px;
    font-size: 16px;
  }
  .bizcheck-solution-flex {
    flex-direction: column;
    gap: 24px;
    align-items: center;
    margin-bottom: 32px;
  }
  .bizcheck-solution-grid {
    width: 100%;
  }
  .bizcheck-solution-illust {
    flex: 0 1 auto;
    max-width: 240px;
    margin: 0 auto;
  }
  .bizcheck-solution-conclusion {
    font-size: 24px;
  }
}
@media (width <= 670px) {
  .bizcheck-solution {
    padding: 0 16px 40px;
  }
  .bizcheck-solution-arrow {
    top: -40px;
  }
  .bizcheck-solution-arrow img {
    width: 252px;
  }
  .bizcheck-solution-inner {
    padding: 76px 20px 40px;
  }
  .bizcheck-solution-title {
    font-size: 24px;
  }
  .bizcheck-solution-subtitle {
    margin-bottom: 28px;
    font-size: 14px;
  }
  .bizcheck-solution-flex {
    flex-direction: column-reverse;
    gap: 20px;
  }
  .bizcheck-solution-grid {
    grid-template-columns: 1fr;
    gap: 8px;
  }
  .bizcheck-solution-plus {
    font-size: 32px;
    line-height: 1;
  }
  .bizcheck-solution-illust {
    max-width: 200px;
    margin: 0 auto;
  }
  .bizcheck-solution-conclusion {
    font-size: 18px;
    line-height: 1.6;
  }
}

/* ========================================
   BizCheck Usage Section
   ======================================== */
.bizcheck-usage {
  padding: 80px 40px 40px;
  color: var(--color-text-default);
  background-image: url(/web/img/bizcheck/bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: cover;
}
.bizcheck-usage-inner {
  max-width: 1280px;
  margin: 0 auto;
}
.bizcheck-usage-section-title {
  color: var(--white);
}
.bizcheck-usage-section-subtitle {
  color: var(--white);
}
.bizcheck-usage-row {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.bizcheck-usage-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: 33.3333%;
  padding: 40px 40px 64px;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
}
.bizcheck-usage-card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 92px;
  height: 92px;
  background-color: var(--color-primary-50);
  border: 1px solid var(--color-primary-200);
  border-radius: 46px;
}
.bizcheck-usage-card-icon img {
  width: 48px;
  height: 48px;
}
.bizcheck-usage-card-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-usage-card-title span {
  display: inline-block;
}
.bizcheck-usage-card-description {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

@media (width <= 940px) {
  .bizcheck-usage {
    padding: 56px 20px 32px;
  }
  .bizcheck-usage-card {
    gap: 16px;
    padding: 32px 24px 48px;
  }
  .bizcheck-usage-card-icon {
    width: 72px;
    height: 72px;
  }
  .bizcheck-usage-card-icon img {
    width: 40px;
    height: 40px;
  }
  .bizcheck-usage-card-title {
    font-size: 22px;
  }
  .bizcheck-usage-card-description {
    font-size: 14px;
  }
}
@media (width <= 670px) {
  .bizcheck-usage-row {
    flex-direction: column;
    gap: 12px;
  }
  .bizcheck-usage-card {
    flex-flow: row wrap;
    gap: 8px;
    width: 100%;
    padding: 24px;
  }
  .bizcheck-usage-card-icon {
    width: 60px;
    height: 60px;
  }
  .bizcheck-usage-card-icon img {
    width: 28px;
    height: 28px;
  }
  .bizcheck-usage-card-title {
    flex: 1;
    font-size: 20px;
    text-align: left;
  }
  .bizcheck-usage-card-description {
    width: 100%;
    line-height: 2;
  }
}

/* ========================================
   BizCheck Features Section
   ======================================== */
.bizcheck-features {
  padding: 80px 20px;
  color: var(--color-text-default);
  background-color: var(--white);
}
.bizcheck-features-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.bizcheck-features-content {
  display: flex;
  flex-direction: column;
  gap: 56px;
}
.bizcheck-features-item {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bizcheck-features-item-header {
  display: flex;
  gap: 20px;
  align-items: stretch;
}
.bizcheck-features-item-number {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  padding-left: 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-200);
}
.bizcheck-features-item-number-line {
  display: block;
  align-self: stretch;
  width: 4px;
  margin-left: 36px;
  background-color: var(--color-primary-200);
}
.bizcheck-features-item-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.bizcheck-features-item-title {
  margin: 0;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}
.bizcheck-features-item-title span {
  display: inline-block;
}
.bizcheck-features-item-description {
  margin: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.bizcheck-features-item-box {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 380px;
  padding: 32px;
  background-color: var(--color-primary-100);
  border-radius: 8px;
}

/* 特長01 実績データ */
.bizcheck-features-data {
  display: flex;
  gap: 20px;
  align-items: stretch;
  padding: 0 20px;
}
.bizcheck-features-data-left {
  display: flex;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  padding: 12px 32px;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 8px 0 var(--color-primary-200);
}
.bizcheck-features-data-row {
  display: grid;
  grid-template-columns: 160px 1fr 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px 0;
}
.bizcheck-features-data-row + .bizcheck-features-data-row {
  border-top: 1px solid var(--color-gray-200);
}
.bizcheck-features-data-logo {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: flex-start;
}
.bizcheck-features-data-logo-uriho {
  max-width: 132px;
  height: 32px;
  object-fit: contain;
}
.bizcheck-features-data-logo-paid {
  max-width: 104px;
  height: 32px;
  object-fit: contain;
}
.bizcheck-features-data-logo-label {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
}
.bizcheck-features-data-stat {
  text-align: center;
}
.bizcheck-features-data-stat-value {
  margin: 0;
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.bizcheck-features-data-stat-number {
  font-size: 32px;
  line-height: 1.2;
}
.bizcheck-features-data-stat-unit {
  font-size: 20px;
}
.bizcheck-features-data-stat-label {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  white-space: nowrap;
}
.bizcheck-features-data-arrow {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}
.bizcheck-features-data-db {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  width: 320px;
  padding: 24px;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 8px 0 var(--color-primary-200);
}
.bizcheck-features-data-db img {
  width: 170px;
  height: auto;
}
.bizcheck-features-data-db-title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}
.bizcheck-features-data-db-value {
  margin: 0;
  font-weight: 700;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.bizcheck-features-data-db-number {
  font-size: 40px;
  line-height: 1.1;
}
.bizcheck-features-data-db-unit {
  font-size: 22px;
}
.bizcheck-features-data-db-note {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
}

/* 特長02 照会スピード */
.bizcheck-features-box-title {
  margin: 0 0 32px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-features-time {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.bizcheck-features-time-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 20px;
  align-items: center;
}
.bizcheck-features-time-label {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  text-align: right;
}
.bizcheck-features-time-label-after {
  color: var(--color-text-primary);
}
.bizcheck-features-time-bar-before {
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 56px;
  padding: 0 20px;
  background-color: var(--color-gray-300);
  border-radius: 0 8px 8px 0;
}
.bizcheck-features-time-bar-before span {
  font-size: 18px;
  font-weight: 700;
  color: var(--color-gray-700);
}
.bizcheck-features-time-after {
  display: flex;
  align-items: center;
}
.bizcheck-features-time-bar-after {
  width: 7%;
  min-width: 32px;
  height: 56px;
  background-color: var(--color-primary-500);
  border-radius: 0 8px 8px 0;
}
.bizcheck-features-time-result {
  margin-left: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--color-text-primary);
}
.bizcheck-features-time-result-number {
  font-size: 44px;
}
.bizcheck-features-time-result-unit {
  font-size: 20px;
}
.bizcheck-features-option-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 12px;
}
.bizcheck-features-option {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  background-color: var(--white);
  border-radius: 8px;
}
.bizcheck-features-option-tag {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  padding: 4px 12px;
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text-primary);
  background-color: var(--white);
  border: 1px solid var(--color-primary-500);
  border-radius: 4px;
}
.bizcheck-features-option-text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-features-option-text span {
  display: inline-block;
}

/* 特長03 料金 */
.bizcheck-features-price-box {
  justify-content: space-evenly;
}
.bizcheck-features-price-line {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  align-items: center;
  justify-content: center;
}
.bizcheck-features-price-badge {
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: 8px 20px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
  white-space: nowrap;
  background-color: var(--white);
  border: 1px solid var(--color-primary-500);
  border-radius: 4px;
}
.bizcheck-features-price-badge-value {
  margin-left: 4px;
}
.bizcheck-features-price-main {
  display: flex;
  flex-wrap: wrap;
  gap: 4px 12px;
  align-items: center;
  justify-content: center;
}
.bizcheck-features-price-lead {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.6;
  white-space: nowrap;
}
.bizcheck-features-price-value-wrap {
  display: inline-flex;
  align-items: center;
}
.bizcheck-features-price-value {
  position: relative;
  top: -0.06em;
  font-size: 64px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
  white-space: nowrap;
}
.bizcheck-features-price-value-unit {
  font-size: 40px;
}
.bizcheck-features-price-tax {
  align-self: flex-end;
  padding-bottom: 10px;
  margin-left: 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1;
  white-space: nowrap;
}
.bizcheck-features-price-row {
  display: flex;
  gap: 24px;
  align-items: stretch;
  justify-content: center;
  margin: 8px 0;
}
.bizcheck-features-price-item {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  padding: 20px 48px;
  background-color: var(--white);
  border-radius: 8px;
}
.bizcheck-features-price-item-label {
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-bottom: 12px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
  white-space: nowrap;
  border-bottom: 1px solid var(--color-gray-200);
}
.bizcheck-features-price-item-label img {
  width: 26px;
  height: 26px;
}
.bizcheck-features-price-item-description {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  text-align: center;
  white-space: nowrap;
}
.bizcheck-features-price-br {
  display: none;
}
.bizcheck-features-price-or {
  align-self: center;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-gray-600);
}
.bizcheck-features-price-note {
  margin: 0;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.6;
  color: var(--color-gray-600);
  text-align: center;
}

@media (width <= 940px) {
  .bizcheck-features {
    padding: 56px 20px;
  }
  .bizcheck-features-content {
    gap: 40px;
  }
  .bizcheck-features-item-number {
    padding-left: 12px;
    font-size: 32px;
  }
  .bizcheck-features-item-number-line {
    margin-left: 28px;
  }
  .bizcheck-features-item-title {
    font-size: 32px;
  }
  .bizcheck-features-item-description {
    font-size: 16px;
  }
  .bizcheck-features-item-box {
    height: auto;
    padding: 28px;
  }
  .bizcheck-features-data {
    box-sizing: border-box;
    flex-direction: column;
    width: 100%;
    max-width: 680px;
    padding: 0;
    margin: 0 auto;
  }
  .bizcheck-features-data-left {
    padding: 4px 20px;
  }
  .bizcheck-features-data-arrow {
    justify-content: center;
  }
  .bizcheck-features-data-arrow svg {
    transform: rotate(90deg);
  }
  .bizcheck-features-data-db {
    width: 100%;
  }
  .bizcheck-features-data-db img {
    width: 140px;
  }
  .bizcheck-features-box-title {
    margin-bottom: 32px;
    font-size: 20px;
  }
  .bizcheck-features-price-value {
    font-size: 40px;
  }
  .bizcheck-features-price-lead {
    font-size: 20px;
  }
  .bizcheck-features-price-badge {
    padding: 6px 20px;
    font-size: 16px;
  }
  .bizcheck-features-price-item {
    padding: 16px 24px;
  }
  .bizcheck-features-price-item-description {
    text-wrap: pretty;
    white-space: normal;
  }
  .bizcheck-features-price-br {
    display: inline;
  }
  .bizcheck-features-price-item-label {
    font-size: 20px;
  }
  .bizcheck-features-price-box {
    gap: 20px;
    padding-top: 36px;
  }
}
@media (width <= 670px) {
  .bizcheck-features {
    padding: 40px 16px;
  }
  .bizcheck-features-item-number {
    padding-left: 8px;
    font-size: 24px;
  }
  .bizcheck-features-item-number-line {
    width: 2px;
    margin-left: 16px;
  }
  .bizcheck-features-item-title {
    font-size: 24px;
    line-height: 1.4;
  }
  .bizcheck-features-item-description {
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-features-item-box {
    padding: 20px;
  }
  .bizcheck-features-box-title {
    margin-bottom: 16px;
    font-size: 18px;
  }
  .bizcheck-features-data {
    max-width: none;
  }
  .bizcheck-features-data-stat-number {
    font-size: 30px;
  }
  .bizcheck-features-data-row {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
  }
  .bizcheck-features-data-logo {
    grid-column: 1 / -1;
    align-items: center;
  }
  .bizcheck-features-data-db-number {
    font-size: 36px;
  }
  .bizcheck-features-time-row {
    grid-template-columns: 1fr;
    gap: 6px;
  }
  .bizcheck-features-time-label {
    text-align: left;
  }
  .bizcheck-features-option-grid {
    grid-template-columns: 1fr;
  }
  .bizcheck-features-price-row {
    flex-direction: column;
    gap: 12px;
    align-items: center;
  }
  .bizcheck-features-price-item {
    width: 100%;
    max-width: 340px;
    padding: 16px 20px;
  }
  .bizcheck-features-price-item-label {
    font-size: 20px;
  }
  .bizcheck-features-price-box {
    gap: 16px;
    padding-top: 32px;
  }
  .bizcheck-features-price-line {
    gap: 16px 12px;
  }
  .bizcheck-features-price-lead {
    font-size: 18px;
  }
  .bizcheck-features-price-value {
    font-size: 36px;
  }
  .bizcheck-features-price-badge {
    padding: 5px 16px;
    font-size: 14px;
  }
}

/* ========================================
   BizCheck Input Section
   ======================================== */
.bizcheck-input {
  padding: 80px 20px;
  color: var(--color-text-default);
  background-color: var(--color-gray-50);
}
.bizcheck-input-inner {
  max-width: 1080px;
  margin: 0 auto;
}
.bizcheck-input-flex {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1040px;
  margin: 0 auto 40px;
}
.bizcheck-input-box {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  width: min(420px, 38%);
  padding: 48px 36px;
  background-color: var(--white);
  border-radius: 8px;
}
.bizcheck-input-box-left {
  box-shadow:
    -16px 0 8px -8px rgb(228 228 231 / 60%),
    0 -12px 8px -4px rgb(228 228 231 / 60%),
    0 12px 8px -4px rgb(228 228 231 / 60%);
}
.bizcheck-input-box-right {
  box-shadow:
    16px 0 8px -8px rgb(228 228 231 / 60%),
    0 -12px 8px -4px rgb(228 228 231 / 60%),
    0 12px 8px -4px rgb(228 228 231 / 60%);
}
.bizcheck-input-box-title {
  margin: 0 0 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
  text-align: center;
}
.bizcheck-input-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.bizcheck-input-form-field {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 11px;
  align-items: center;
}
.bizcheck-input-form-label {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-input-form-value {
  padding: 8px 11px;
  margin: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  white-space: nowrap;
  background-color: var(--white);
  border: 1px solid var(--color-gray-500);
  border-radius: 8px;
}
.bizcheck-input-form-button {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  margin-top: 16px;
  background-color: var(--color-primary-500);
  border-radius: 8px;
}
.bizcheck-input-form-button-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
}
.bizcheck-input-form-button-icon {
  position: absolute;
  width: 40px;
  transform: translate(80px, 20px);
}
.bizcheck-input-middle {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  justify-content: center;
  width: 300px;
  height: 300px;
  margin: auto;
  background-color: var(--color-primary-700);
  border-radius: 100%;
}
.bizcheck-input-middle-text {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
}
.bizcheck-input-middle-icon {
  position: relative;
  width: 62px;
}
.bizcheck-input-middle-icon > img {
  position: relative;
  z-index: 1;
  width: 100%;
}
.bizcheck-input-middle-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 0;
  height: 15px;
  transform: translate(-50%, -50%);
}
.bizcheck-input-result {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.bizcheck-input-result-label {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-input-result-company {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-input-result-judge {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  width: 100%;
  padding: 23px 20px;
  background-color: var(--color-primary-100);
  border-radius: 8px;
}
.bizcheck-input-result-judge-label {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-input-result-judge-value {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-error);
}
.bizcheck-input-result-judge-note {
  box-sizing: border-box;
  width: 100%;
  padding: 0 8px;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-input-contact {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-input-contact a {
  font-weight: 700;
  color: var(--color-text-primary);
  text-decoration: underline;
}
.bizcheck-input-contact a:hover {
  color: var(--color-primary-700);
}

/* 利用イメージのタブレット表示もカンプでなく既存LPのレイアウトが正（改修前bizcheck.cssの940px定義を踏襲） */
@media (width <= 940px) {
  .bizcheck-input {
    padding: 60px 20px;
  }
  .bizcheck-input-flex {
    gap: 164px;
    max-width: 880px;
    margin-bottom: 32px;
  }
  .bizcheck-input-box {
    flex: 1;
    width: auto;
    min-width: 0;
    padding: 36px 28px;
  }
  .bizcheck-input-box-title {
    margin-bottom: 32px;
    font-size: 24px;
  }
  .bizcheck-input-form {
    gap: 16px;
    margin-bottom: 20px;
  }
  .bizcheck-input-form-field {
    display: flex;
    flex-direction: column;
    gap: 8px;
  }
  .bizcheck-input-form-label {
    font-size: 16px;
  }
  .bizcheck-input-form-value {
    box-sizing: border-box;
    width: 100%;
    font-size: 13px;
  }
  .bizcheck-input-form-button {
    padding: 6px 0;
    margin-top: 12px;
  }
  .bizcheck-input-form-button-icon {
    width: 32px;
    transform: translate(70px, 16px);
  }
  .bizcheck-input-form-button-text {
    font-size: 18px;
  }
  .bizcheck-input-middle {
    gap: 16px;
    width: 240px;
    height: 240px;
  }
  .bizcheck-input-middle-icon {
    width: 50px;
  }
  .bizcheck-input-middle-arrow {
    height: 12px;
  }
  .bizcheck-input-middle-text {
    font-size: 14px;
  }
  .bizcheck-input-result {
    gap: 12px;
  }
  .bizcheck-input-result-label {
    font-size: 14px;
  }
  .bizcheck-input-result-company {
    font-size: 18px;
  }
  .bizcheck-input-result-judge {
    padding: 20px 8px;
  }
  .bizcheck-input-result-judge-label {
    font-size: 18px;
  }
  .bizcheck-input-result-judge-note {
    padding: 0;
    font-size: 14px;
  }
  .bizcheck-input-contact {
    font-size: 14px;
  }
}

/* 利用イメージのSP表示はカンプでなく既存LPのレイアウトが正（改修前bizcheck.cssの670px定義を踏襲） */
@media (width <= 670px) {
  .bizcheck-input {
    padding: 40px 16px 44px;
  }
  .bizcheck-input-flex {
    flex-direction: column;
    gap: 90px;
    margin: 40px 0 16px;
  }
  .bizcheck-input-box {
    width: 100%;
    max-width: 100%;
    padding: 32px 40px 52px;
  }
  .bizcheck-input-box-left {
    box-shadow:
      -16px 0 8px -8px rgb(228 228 231 / 60%),
      16px 0 8px -8px rgb(228 228 231 / 60%),
      0 -12px 8px -4px rgb(228 228 231 / 60%);
  }
  .bizcheck-input-box-right {
    padding: 32px;
    box-shadow:
      -16px 0 8px -8px rgb(228 228 231 / 60%),
      16px 0 8px -8px rgb(228 228 231 / 60%),
      0 12px 8px -4px rgb(228 228 231 / 60%);
  }
  .bizcheck-input-box-title {
    margin-bottom: 24px;
    font-size: 20px;
  }
  .bizcheck-input-form {
    gap: 8px;
    margin-bottom: 16px;
  }
  .bizcheck-input-form-field {
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .bizcheck-input-form-label {
    font-size: 16px;
  }
  .bizcheck-input-form-value {
    box-sizing: border-box;
    width: 100%;
    font-size: 14px;
  }
  .bizcheck-input-form-button {
    width: 100%;
    padding: 8px 16px;
    margin-top: 16px;
  }
  .bizcheck-input-form-button-icon {
    width: 36px;
    transform: translate(72px, 16px);
  }
  .bizcheck-input-form-button-text {
    font-size: 16px;
  }
  .bizcheck-input-middle {
    flex-direction: row;
    gap: 20px;
    align-items: center;
    width: 300px;
    max-width: 100%;
    height: 300px;
    padding: 0;
    transform: translateY(40px);
  }
  .bizcheck-input-middle-text {
    order: 1;
    font-size: 14px;
    text-align: left;
  }
  .bizcheck-input-middle-icon {
    position: static;
    display: flex;
    align-items: center;
    width: auto;
  }
  .bizcheck-input-middle-icon > img {
    order: 1;
    width: 48px;
  }
  .bizcheck-input-middle-arrow {
    position: static;
    height: 56px;
    transform: none;
  }
  .bizcheck-input-result {
    gap: 8px;
  }
  .bizcheck-input-result-label {
    font-size: 16px;
  }
  .bizcheck-input-result-company {
    margin-bottom: 4px;
    font-size: 20px;
  }
  .bizcheck-input-result-judge {
    gap: 8px;
    padding: 24px 0 28px;
  }
  .bizcheck-input-result-judge-label {
    font-size: 20px;
  }
  .bizcheck-input-result-judge-note {
    padding: 0 8px;
    font-size: 16px;
  }
  .bizcheck-input-result-judge-br {
    display: inline;
  }
  .bizcheck-input-contact {
    font-size: 14px;
  }
}

/* ========================================
   BizCheck Flow Section
   ======================================== */
.bizcheck-flow {
  padding: 80px 40px;
  color: var(--color-text-default);
  background-color: var(--white);
}
.bizcheck-flow-inner {
  max-width: 1400px;
  margin: 0 auto;
}
.bizcheck-flow-content {
  display: flex;
  gap: 60px;
  justify-content: center;
  max-width: 848px;
  margin: 0 auto;
}
.bizcheck-flow-step {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  max-width: 400px;
}
.bizcheck-flow-step-number {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 80px;
  height: 80px;
  background-color: var(--white);
  border: 1px solid var(--color-primary-500);
  border-radius: 50%;
}
.bizcheck-flow-step-label {
  position: relative;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
  text-align: center;
}
.bizcheck-flow-step-value {
  position: relative;
  font-size: 28px;
  font-weight: 400;
  line-height: 1;
  color: var(--color-text-primary);
  text-align: center;
}
.bizcheck-flow-step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}
.bizcheck-flow-step-title {
  display: flex;
  flex-direction: column;
  margin: 0;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-flow-step-title-sub {
  font-size: 16px;
}
.bizcheck-flow-step-title-main {
  font-size: 28px;
}
.bizcheck-flow-step-description {
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}
.bizcheck-flow-step-description br {
  display: none;
}
.bizcheck-flow-step-button {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 36px;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-button-tertiary-text);
  text-align: center;
  background-color: var(--color-button-tertiary-bg);
  border: 1px solid var(--color-button-tertiary-border);
  border-radius: 200px;
  transition:
    0.2s,
    background-color 0.2s ease,
    color 0.2s ease;
}
.bizcheck-flow-step-button:hover {
  color: var(--color-button-tertiary-text-hover);
  text-decoration: none;
  background-color: var(--color-button-tertiary-bg-hover);
  transform: translateY(-4px);
}

@media (width <= 940px) {
  .bizcheck-flow {
    padding: 64px 20px;
  }
  .bizcheck-flow-content {
    gap: 40px;
    max-width: 780px;
  }
  .bizcheck-flow-step {
    flex-basis: initial;
    gap: 14px;
  }
  .bizcheck-flow-step-number {
    width: 80px;
    height: 80px;
  }
  .bizcheck-flow-step-label {
    font-size: 13px;
  }
  .bizcheck-flow-step-value {
    font-size: 26px;
  }
  .bizcheck-flow-step-content {
    gap: 14px;
  }
  .bizcheck-flow-step-title-sub {
    font-size: 15px;
  }
  .bizcheck-flow-step-title-main {
    font-size: 26px;
  }
  .bizcheck-flow-step-description {
    font-size: 15px;
  }
  .bizcheck-flow-step-button {
    width: 188px;
    height: 34px;
    font-size: 15px;
  }
}
@media (width <= 670px) {
  .bizcheck-flow {
    padding: 40px 32px 72px;
  }
  .bizcheck-flow-content {
    flex-direction: column;
    gap: 36px;
    max-width: 280px;
    margin: 8px auto 0;
  }
  .bizcheck-flow-step {
    display: grid;
    grid-template-areas:
      "number title"
      "description description"
      "button button";
    grid-template-columns: auto 1fr;
    gap: 0 12px;
    align-items: start;
    max-width: 100%;
  }
  .bizcheck-flow-step-number {
    box-sizing: border-box;
    grid-area: number;
    align-self: center;
    width: 48px;
    height: 48px;
  }
  .bizcheck-flow-step-label {
    font-size: 8px;
  }
  .bizcheck-flow-step-value {
    font-size: 16px;
  }
  .bizcheck-flow-step-content {
    display: contents;
  }
  .bizcheck-flow-step-title {
    flex-direction: initial;
    grid-area: title;
    align-items: center;
    align-self: center;
    line-height: 1;
  }
  .bizcheck-flow-step-title-sub {
    margin-right: 4px;
    font-size: 14px;
  }
  .bizcheck-flow-step-title-main {
    font-size: 20px;
  }
  .bizcheck-flow-step-description {
    grid-area: description;
    margin-top: 8px;
    font-size: 14px;
    line-height: 2;
    text-align: left;
  }
  .bizcheck-flow-step-description br {
    display: block;
  }
  .bizcheck-flow-step-button {
    box-sizing: border-box;
    grid-area: button;
    width: 100%;
    max-width: 260px;
    height: 36px;
    margin-top: 8px;
    font-size: 16px;
  }
}

/* ========================================
   BizCheck FAQ Section
   ======================================== */
.bizcheck-faq {
  padding: 80px 40px;
  color: var(--color-text-default);
  background-color: var(--color-gray-50);
}
.bizcheck-faq-inner {
  max-width: 880px;
  margin: 0 auto;
}
.bizcheck-faq-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bizcheck-faq-item {
  padding: 24px 32px;
  cursor: pointer;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 8px 0 var(--color-gray-200);
}
.bizcheck-faq-question {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
}
.bizcheck-faq-question-text {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-faq-question-mark {
  color: var(--color-text-primary);
}
.bizcheck-faq-icon {
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
  color: var(--color-text-primary);
}
.bizcheck-faq-answer {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.8;
}

@media (width <= 940px) {
  .bizcheck-faq {
    padding: 56px 20px;
  }
}
@media (width <= 670px) {
  .bizcheck-faq {
    padding: 40px 16px 72px;
  }
  .bizcheck-faq-item {
    padding: 20px;
  }
  .bizcheck-faq-question-text {
    font-size: 16px;
  }
  .bizcheck-faq-answer {
    font-size: 14px;
  }
}

/* ========================================
   BizCheck CTA Section
   ======================================== */
.bizcheck-cta {
  position: relative;
  padding: 88px 40px 48px;
  color: var(--color-text-default);
}
.bizcheck-cta-band {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: var(--color-primary-100);
}
.bizcheck-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.bizcheck-cta-message {
  margin: 0 0 56px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-cta-message span {
  display: inline-block;
}
.bizcheck-cta-message-highlight {
  color: var(--color-text-primary);
}
.bizcheck-cta-box {
  position: relative;
  display: flex;
  max-width: 1280px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 8px 4px var(--color-gray-200);
}
.bizcheck-cta-divider {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 1px;
  background-color: var(--color-gray-200);
}
.bizcheck-cta-column {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 48px;
  padding: 48px 40px;
}
.bizcheck-cta-section-title {
  margin: 0;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-cta-content {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  min-height: 212px;
  overflow: visible;
  text-decoration: none;
}
.bizcheck-cta-content:hover {
  text-decoration: none;
}
.bizcheck-cta-image {
  position: absolute;
  right: 0;
  left: 0;
  margin: 0 auto;
  transition: transform 0.2s ease;
}
.bizcheck-cta-image img {
  width: 100%;
  height: auto;
}
.bizcheck-cta-image-left {
  bottom: 58px;
  max-width: 420px;
}
.bizcheck-cta-image-right {
  bottom: 62px;
  max-width: 280px;
}
.bizcheck-cta-content:hover .bizcheck-cta-image {
  transform: translateY(-8px);
}
.bizcheck-cta-button {
  position: relative;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 500px;
  min-height: 88px;
  font-weight: 700;
  border-radius: 200px;
  box-shadow: 0 0 8px rgb(0 0 0 / 25%);
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    color 0.2s ease;
}
.bizcheck-cta-button-orange {
  padding: 6px 24px;
  background-color: var(--color-button-primary-bg);
  border: 2px solid var(--color-button-primary-border);
}
.bizcheck-cta-button-blue {
  font-size: clamp(20px, 2.2vw, 28px);
  color: var(--color-button-secondary-text);
  background-color: var(--color-button-secondary-bg);
  border: 2px solid var(--color-button-secondary-border);
}
.bizcheck-cta-button-sentence {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 16px;
  line-height: 1.4;
}
.bizcheck-cta-button-text {
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--color-button-primary-text);
  transition: color 0.2s ease;
}
.bizcheck-cta-button-main {
  font-size: clamp(20px, 2.2vw, 28px);
  line-height: 1.4;
  color: var(--color-button-primary-text);
  transition: color 0.2s ease;
}
.bizcheck-cta-button-blue .bizcheck-cta-button-main {
  color: var(--color-button-secondary-text);
}
.bizcheck-cta-button-badge {
  position: absolute;
  right: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 68px;
  height: 68px;
  font-size: 18px;
  color: var(--color-button-primary-badge);
  background-color: var(--color-button-primary-bg);
  border: 1px solid var(--white);
  border-radius: 100%;
  transition:
    color 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease;
}
.bizcheck-cta-content:hover .bizcheck-cta-button {
  background-color: var(--white);
  transform: translateY(-8px);
}
.bizcheck-cta-content:hover
  .bizcheck-cta-button-orange
  .bizcheck-cta-button-text,
.bizcheck-cta-content:hover
  .bizcheck-cta-button-orange
  .bizcheck-cta-button-main {
  color: var(--color-button-primary-text-hover);
}
.bizcheck-cta-content:hover .bizcheck-cta-button-badge {
  color: var(--color-button-primary-badge-hover);
  background-color: var(--white);
  border-color: var(--color-button-primary-border-hover);
}
.bizcheck-cta-content:hover
  .bizcheck-cta-button-blue
  .bizcheck-cta-button-main {
  color: var(--color-button-secondary-text-hover);
}
.bizcheck-cta-note {
  position: absolute;
  right: 0;
  bottom: -28px;
  left: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  color: var(--color-text-default);
  text-align: center;
}
.bizcheck-cta-note-br {
  display: none;
}
.bizcheck-cta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  width: 100%;
  max-width: 480px;
  margin: 0 auto;
  text-align: left;

  /* 電話ブロックと同じく既存LPの行間（共通CSS155%の計算値）で表示する */
  line-height: 21.7px;
}
.bizcheck-cta-info-title {
  margin: 0;
  font-size: 20px;
  font-weight: 700;
}
.bizcheck-cta-info-list {
  display: grid;
  grid-template-columns: auto auto;
  gap: 0 24px;
  padding: 0;
  margin: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  list-style: none;
}
.bizcheck-cta-info-list li::before {
  content: "・";
}
.bizcheck-cta-phone {
  display: flex;
  gap: 48px;
  justify-content: center;
  width: 100%;

  /* 21.7px = 共通CSS body { line-height: 155% }（14px基準）の計算値。
     既存LPの電話ブロックはこの固定値の継承で表示されていたため、同じ見た目になるよう明示する */
  line-height: 21.7px;
}
.bizcheck-cta-phone-title {
  margin: 0;
  font-size: clamp(16px, 1.8vw, 20px);
  font-weight: 700;
  text-align: center;
}
.bizcheck-cta-phone-number {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
}
.bizcheck-cta-phone-number:hover {
  text-decoration: none;
}
.bizcheck-cta-phone-icon {
  width: 24px;
  height: 24px;
}
.bizcheck-cta-phone-tel {
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--color-text-default);
}
.bizcheck-cta-phone-hours {
  margin: 8px 0 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
}

@media (width <= 940px) {
  .bizcheck-cta {
    padding: 64px 20px 40px;
  }
  .bizcheck-cta-message {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .bizcheck-cta-box {
    max-width: 780px;
  }
  .bizcheck-cta-column {
    gap: 32px;
    padding: 32px 24px;
  }
  .bizcheck-cta-section-title {
    font-size: 20px;
  }
  .bizcheck-cta-content {
    min-height: 176px;
  }
  .bizcheck-cta-image-left {
    bottom: 46px;
    max-width: 320px;
  }
  .bizcheck-cta-image-right {
    bottom: 50px;
    max-width: 220px;
  }
  .bizcheck-cta-button {
    min-height: 70px;
  }
  .bizcheck-cta-button-text {
    font-size: clamp(13px, 1.5vw, 16px);
  }
  .bizcheck-cta-button-main {
    font-size: clamp(16px, 2.4vw, 25px);
  }
  .bizcheck-cta-button-blue {
    font-size: clamp(16px, 2.4vw, 25px);
  }
  .bizcheck-cta-button-badge {
    width: 56px;
    height: 56px;
    font-size: 14px;
  }
  .bizcheck-cta-info-list {
    font-size: clamp(11px, 1.7vw, 14px);
  }
  .bizcheck-cta-info-title {
    font-size: 16px;
  }
  .bizcheck-cta-phone {
    gap: 32px;
  }
  .bizcheck-cta-phone-title {
    font-size: 16px;
  }
  .bizcheck-cta-phone-tel {
    font-size: clamp(17px, 2.5vw, 24px);
  }
  .bizcheck-cta-note {
    bottom: -24px;
    font-size: 10px;
  }
}
@media (width <= 670px) {
  .bizcheck-cta {
    padding: 48px 16px 40px;
    background-color: var(--color-primary-100);
  }
  .bizcheck-cta-message {
    margin-bottom: 24px;
    font-size: 18px;
  }
  .bizcheck-cta-box {
    flex-direction: column;
  }
  .bizcheck-cta-divider {
    display: none;
  }
  .bizcheck-cta-column {
    gap: 24px;
    padding: 24px 20px;
  }
  .bizcheck-cta-left {
    border-bottom: 1px solid var(--color-gray-300);
  }
  .bizcheck-cta-section-title {
    font-size: 20px;
  }
  .bizcheck-cta-content {
    min-height: 140px;
  }
  .bizcheck-cta-image-left {
    bottom: 32px;
    max-width: 248px;
  }
  .bizcheck-cta-image-right {
    bottom: 36px;
    max-width: 200px;
  }
  .bizcheck-cta-button {
    min-height: 52px;
  }
  .bizcheck-cta-button-text {
    font-size: 12px;
  }
  .bizcheck-cta-button-main {
    font-size: 18px;
  }
  .bizcheck-cta-button-blue {
    font-size: 18px;
  }
  .bizcheck-cta-button-badge {
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .bizcheck-cta-info {
    flex-direction: column;
    gap: 4px;
    max-width: 260px;
    margin: 0 auto;
  }
  .bizcheck-cta-info-list {
    gap: 4px 0;
    max-width: 260px;
    font-size: 12px;
  }
  .bizcheck-cta-phone {
    gap: 16px;
    margin-top: 44px;
  }
  .bizcheck-cta-phone-number {
    gap: 4px;
  }
  .bizcheck-cta-phone-tel {
    font-size: 18px;
  }
  .bizcheck-cta-phone-icon {
    width: 18px;
    height: 18px;
  }
  .bizcheck-cta-phone-hours {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.4;
  }
  .bizcheck-cta-note-br {
    display: inline;
  }
  .bizcheck-cta-note {
    bottom: -40px;
    font-size: 12px;
    line-height: 1.4;
  }
}

/* ========================================
   BizCheck Footer Section
   ======================================== */
@media screen and (width >= 941px) {
  .bizcheck-footer-info {
    padding-top: 24px !important;
  }
}
