/* ========================================
   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);
}

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

/* 共通バッジスタイル */
.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;
  align-items: center;
  justify-content: space-between;
  max-width: 1280px;
  height: 576px;
  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);
}
.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-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 {
  flex-shrink: 2;
  max-width: 641px;
  transform: translateY(60px);
}
.bizcheck-hero-image img {
  width: 100%;
  height: auto;
}
.bizcheck-hero-title-break {
  display: inline-block;
}

@media (width >= 941px) {
  .bizcheck-hero-image.inview-x-top {
    transform: translateY(110px);
  }
  .bizcheck-hero-image.inview-x-top.inview-o {
    transform: translateY(60px);
  }
}
@media (width <= 940px) {
  .bizcheck-hero {
    padding-top: 60px;
  }
  .bizcheck-hero-inner {
    justify-content: space-around;
    height: auto;
    min-height: 400px;
    padding: 0 20px;
  }
  .bizcheck-hero-content {
    flex-shrink: 0;
    min-width: 0;
  }
  .bizcheck-hero-image {
    transform: translateY(40px);
  }
  .bizcheck-hero-cta {
    max-width: 380px;
    height: 70px;
    margin-top: 20px;
    margin-left: 0;
  }
  .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 {
    position: relative;
    flex-direction: column;
    min-height: auto;
    padding: 0 16px 280px;
    overflow: hidden;
  }
  .bizcheck-hero-content {
    width: 100%;
    text-align: center;
  }
  .bizcheck-hero-title {
    margin-bottom: 8px;
    font-size: 28px;
  }
  .bizcheck-hero-description {
    margin-bottom: 26px;
    font-size: 14px;
    font-weight: 400;
    text-align: left;
  }
  .bizcheck-hero-description br {
    display: none;
  }
  .bizcheck-hero-cta {
    max-width: 100%;
    height: 64px;
    margin: 0 auto;
  }
  .bizcheck-hero-cta-icon {
    top: 3px;
    right: 3px;
  }
  .bizcheck-hero-image {
    position: absolute;
    bottom: -64px;
    max-width: 350px;
    transform: translateY(0);
  }
  .bizcheck-hero-image.inview-x-top {
    opacity: 0;
    transform: translateY(60px);
  }
  .bizcheck-hero-image.inview-x-top.inview-o {
    opacity: 1;
    transform: translateY(0);
    transition:
      transform 0.4s,
      opacity 0.4s;
  }
}

/* ========================================
   BizCheck Steps Section
   ======================================== */
.bizcheck-steps {
  padding: 80px 40px;
  color: var(--color-text-default);
}
.bizcheck-steps-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.bizcheck-steps-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 40px;
  text-align: center;
}
.bizcheck-steps-label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-steps-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
}
.bizcheck-steps-content {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.bizcheck-steps-flow {
  display: flex;
  flex: 1;
  gap: 24px;
  align-items: stretch;
  padding: 0;
  margin: 0;
  list-style: none;
}
.bizcheck-steps-item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 276px;
}
.bizcheck-steps-item:first-child .bizcheck-steps-item-title {
  background-color: var(--color-primary-900);
}
.bizcheck-steps-item:nth-child(2) .bizcheck-steps-item-title {
  background-color: var(--color-primary-700);
}
.bizcheck-steps-item:last-child .bizcheck-steps-item-title {
  background-color: var(--color-primary-500);
}
.bizcheck-steps-item-title-text {
  transform: translateX(-16px);
}
.bizcheck-steps-item-title {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10vw;
  max-height: 110px;
  margin: 0;
  font-size: clamp(16px, 1.5vw, 20px);
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
  clip-path: polygon(
    0 0,
    calc(100% - 32px) 0,
    100% 50%,
    calc(100% - 32px) 100%,
    0 100%
  );
}
.bizcheck-steps-item-description {
  display: flex;
  flex: 1;
  align-items: center;
  justify-content: center;
  width: calc(100% - 33px);
  margin: 0;
  font-size: clamp(14px, 1.5vw, 18px);
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
  text-align: center;
  background-color: var(--white);
  box-shadow: 0 2px 8px rgb(0 0 0 / 10%);
}
.bizcheck-steps-graph {
  display: flex;
  flex-direction: column;
}
.bizcheck-steps-graph > img {
  max-width: 160px;
  margin-left: auto;
}
.bizcheck-steps-graph-title {
  display: flex;
  flex-direction: column;
  margin-bottom: 8px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
  text-align: center;
}
.bizcheck-steps-graph img {
  width: 100%;
  height: auto;
}
.bizcheck-steps-title-answer {
  color: var(--color-text-primary);
}
.bizcheck-steps-title br {
  display: none;
}

@media (width <= 940px) {
  .bizcheck-steps {
    padding: 40px 20px;
  }
  .bizcheck-steps-label {
    font-size: 18px;
  }
  .bizcheck-steps-title {
    font-size: 28px;
  }
  .bizcheck-steps-content {
    gap: 12px;
  }
  .bizcheck-steps-flow {
    gap: 12px;
  }
  .bizcheck-steps-item-title {
    font-size: clamp(11px, 1.6vw, 18px);
  }
  .bizcheck-steps-item-description {
    width: calc(100% - 48px);
    padding: 12px 8px;
    font-size: clamp(10px, 1.6vw, 14px);
  }
  .bizcheck-steps-graph-title {
    font-size: 18px;
  }
}
@media (width <= 670px) {
  .bizcheck-steps {
    padding: 40px 24px 60px;
  }
  .bizcheck-steps-header {
    gap: 0;
    margin-bottom: 32px;
  }
  .bizcheck-steps-label {
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-steps-title {
    font-size: 24px;
    line-height: 1.4;
  }
  .bizcheck-steps-title br {
    display: inline;
  }
  .bizcheck-steps-content {
    flex-direction: column;
    gap: 20px;
  }
  .bizcheck-steps-flow {
    flex-direction: column;
  }
  .bizcheck-steps-item {
    position: relative;
    max-width: 100%;
  }
  .bizcheck-steps-item-title {
    position: relative;
    height: auto;
    min-height: 60px;
    font-size: 18px;
    line-height: 1.6;
    clip-path: none;
  }
  .bizcheck-steps-item-title::after {
    position: absolute;
    bottom: -8px;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border-top: 32px solid;
    border-right: 60px solid transparent;
    border-left: 60px solid transparent;
    transform: translateX(-50%);
  }
  .bizcheck-steps-item:first-child .bizcheck-steps-item-title::after {
    border-top-color: var(--color-primary-900);
  }
  .bizcheck-steps-item:nth-child(2) .bizcheck-steps-item-title::after {
    border-top-color: var(--color-primary-700);
  }
  .bizcheck-steps-item:last-child .bizcheck-steps-item-title::after {
    border-top-color: var(--color-primary-500);
  }
  .bizcheck-steps-item-title-text {
    position: relative;
    z-index: 1;
    transform: none;
  }
  .bizcheck-steps-item-title-text br {
    display: none;
  }
  .bizcheck-steps-item-description {
    flex: auto;
    width: 100%;
    height: 84px;
    padding: 0;
    font-size: 14px;
    line-height: 1.6;
  }
  .bizcheck-steps-item-description br.pc {
    display: none;
  }
  .bizcheck-steps-graph {
    position: relative;
    align-items: center;
    padding-top: 32px;
  }
  .bizcheck-steps-graph::before {
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 0;
    content: "";
    border-top: 12px solid var(--color-primary-500);
    border-right: 16px solid transparent;
    border-left: 16px solid transparent;
    transform: translateX(-50%);
  }
  .bizcheck-steps-graph-title {
    display: block;
    margin-bottom: 16px;
    font-size: 24px;
    line-height: 1.6;
    text-align: left;
  }
  .bizcheck-steps-graph > img {
    position: absolute;
    inset: 0;
    width: 84px;
    max-width: 100%;
    margin: auto;
    transform: translate(110px, 48px);
  }
  .bizcheck-steps-title-answer {
    margin: 0;
  }
}

/* ========================================
   BizCheck Problems Section
   ======================================== */
.bizcheck-problems {
  padding: 80px 40px;
  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-content {
  position: relative;
}
.bizcheck-problems-grid {
  position: relative;
  max-width: 1040px;
  height: 348px;
  margin: 0 auto;
}
.bizcheck-problems-item {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 400px;
  min-height: 130px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background-color: var(--white);
  border-radius: 8px;
  box-shadow: 0 0 16px 4px #e4e4e7;
}
.bizcheck-problems-item p {
  margin: 0;
}
.bizcheck-problems-item-topleft {
  top: 0;
  left: 0;
}
.bizcheck-problems-item-topright {
  top: 0;
  right: 0;
}
.bizcheck-problems-item-bottomleft {
  bottom: 0;
  left: 28px;
}
.bizcheck-problems-item-bottomright {
  right: 28px;
  bottom: 0;
}
.bizcheck-problems-illust {
  position: absolute;
  inset: 0;
  top: 20px;
  z-index: 1;
  max-width: 382px;
  margin: auto;
}
.bizcheck-problems-illust img {
  width: 100%;
  height: auto;
}

@media (width <= 940px) {
  .bizcheck-problems {
    padding: 40px 20px;
  }
  .bizcheck-problems-grid {
    max-width: 780px;
    height: 260px;
  }
  .bizcheck-problems-item {
    max-width: 300px;
    min-height: 100px;
    font-size: 16px;
  }
  .bizcheck-problems-item-bottomleft {
    left: 20px;
  }
  .bizcheck-problems-item-bottomright {
    right: 20px;
  }
  .bizcheck-problems-illust {
    top: 15px;
    max-width: 286px;
  }
}
@media (width <= 670px) {
  .bizcheck-problems {
    padding-bottom: 32px;
  }
  .bizcheck-problems .bizcheck-section-header {
    margin-bottom: 0;
  }
  .bizcheck-problems-grid {
    position: static;
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: auto;
    transform: translateY(-24px);
  }
  .bizcheck-problems-item {
    position: static;
    width: 268px;
    max-width: 100%;
    min-height: 88px;
  }
  .bizcheck-problems-item-topleft,
  .bizcheck-problems-item-topright,
  .bizcheck-problems-item-bottomleft,
  .bizcheck-problems-item-bottomright {
    position: static;
    z-index: 1;
  }
  .bizcheck-problems-item-topleft {
    box-shadow:
      -16px 0 8px -4px rgb(228 228 231 / 60%),
      16px 0 8px -4px rgb(228 228 231 / 60%),
      0 12px 8px -4px rgb(228 228 231 / 60%);
  }
  .bizcheck-problems-item-bottomright,
  .bizcheck-problems-item-topright {
    margin-left: auto;
  }
  .bizcheck-problems-illust {
    position: static;
    max-width: 200px;
    margin: 0 auto;
    transform: translateY(48px);
  }
}

/* ========================================
   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%;
  text-align: center;
  transform: translateX(-50%);
}
.bizcheck-solution-arrow img {
  width: 440px;
  height: auto;
}
.bizcheck-solution-inner {
  max-width: 1240px;
  padding: 112px 20px 88px;
  margin: 0 auto;
  background-color: var(--white);
  border-radius: 16px;
}
.bizcheck-solution-title {
  margin: 0 0 48px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.bizcheck-solution-content {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 1040px;
  margin: 0 auto 46px;
}
.bizcheck-solution-check-flow {
  display: flex;
  gap: 40px;
  align-items: center;
  justify-content: center;
}
.bizcheck-solution-check-left {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
}
.bizcheck-solution-before {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 160px;
  height: 38px;
  background-color: var(--color-primary-100);
  border: 1px solid var(--color-text-default);
  border-radius: 8px;
}
.bizcheck-solution-before-text {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-solution-check {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  background-color: var(--white);
}
.bizcheck-solution-check p {
  margin: 0;
}
.bizcheck-solution-illust {
  flex-shrink: 0;
  max-width: 370px;
}
.bizcheck-solution-illust img {
  width: 100%;
  height: auto;
}
.bizcheck-solution-results {
  display: flex;
  gap: 24px;
  align-items: flex-start;
  justify-content: center;
}
.bizcheck-solution-result {
  box-sizing: border-box;
  display: flex;
  gap: 24px;
  align-items: center;
  width: 100%;
  max-width: 430px;
  padding: 20px 32px;
  background-color: var(--color-primary-100);
  border-radius: 8px;
}
.bizcheck-solution-result-icon {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  background-color: var(--white);
  border-radius: 50%;
}
.bizcheck-solution-result-icon img {
  width: 32px;
  height: 32px;
}
.bizcheck-solution-result-label {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-solution-result-success .bizcheck-solution-result-label {
  color: var(--color-text-success);
}
.bizcheck-solution-result-error .bizcheck-solution-result-label {
  color: var(--color-text-error);
}
.bizcheck-solution-result-desc {
  margin: 0;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-solution-conclusion {
  margin: 0;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
  text-align: center;
}
.bizcheck-solution-highlight {
  background: linear-gradient(to right, #ebfff0, #c2e3f5);
  background-repeat: no-repeat;
  background-position: 0 110%;
  background-size: 100% 50%;
}
.bizcheck-solution-conclusion br {
  display: none;
}

@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 {
    margin-bottom: 36px;
    font-size: 28px;
  }
  .bizcheck-solution-content {
    gap: 36px;
    margin-bottom: 32px;
  }
  .bizcheck-solution-check-flow {
    gap: 24px;
  }
  .bizcheck-solution-check-left {
    gap: 16px;
  }
  .bizcheck-solution-before {
    width: 140px;
    height: 32px;
  }
  .bizcheck-solution-before-text {
    font-size: 16px;
  }
  .bizcheck-solution-check {
    font-size: 22px;
  }
  .bizcheck-solution-illust {
    max-width: 280px;
  }
  .bizcheck-solution-results {
    gap: 16px;
  }
  .bizcheck-solution-result {
    gap: 16px;
    max-width: 340px;
    padding: 16px 24px;
  }
  .bizcheck-solution-result-icon {
    width: 100px;
    height: 100px;
  }
  .bizcheck-solution-result-icon img {
    width: 24px;
    height: 24px;
  }
  .bizcheck-solution-result-label {
    font-size: 14px;
  }
  .bizcheck-solution-result-desc {
    font-size: 18px;
  }
  .bizcheck-solution-conclusion {
    font-size: 24px;
  }
}
@media screen and (width <= 670px) {
  .bizcheck-solution {
    padding: 0 20px 40px;
  }
  .bizcheck-solution-arrow {
    top: -40px;
  }
  .bizcheck-solution-arrow img {
    width: 252px;
  }
  .bizcheck-solution-inner {
    padding: 76px 20px 40px;
  }
  .bizcheck-solution-title {
    margin-bottom: 30px;
    font-size: 24px;
  }
  .bizcheck-solution-content {
    gap: 24px;
    margin-bottom: 24px;
  }
  .bizcheck-solution-check-flow {
    flex-direction: column;
    gap: 12px;
  }
  .bizcheck-solution-check-left {
    gap: 8px;
    order: 1;
  }
  .bizcheck-solution-before {
    box-sizing: border-box;
    width: 128px;
    height: 36px;
  }
  .bizcheck-solution-check {
    font-size: 20px;
  }
  .bizcheck-solution-illust {
    order: 0;
    max-width: 200px;
    margin: 0 auto;
  }
  .bizcheck-solution-results {
    gap: 8px;
    align-items: initial;
  }
  .bizcheck-solution-result {
    flex-direction: column;
    gap: 12px;
    max-width: 100%;
    padding: 20px;
    text-align: center;
  }
  .bizcheck-solution-result-icon {
    width: 100px;
    height: 100px;
  }
  .bizcheck-solution-result-icon img {
    width: 24px;
    height: 24px;
  }
  .bizcheck-solution-result-label {
    font-size: 13px;
  }
  .bizcheck-solution-result-desc {
    font-size: 14px;
  }
  .bizcheck-solution-conclusion {
    font-size: 24px;
    line-height: 1.6;
  }
  .bizcheck-solution-conclusion br {
    display: inline;
  }
}

/* ========================================
   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: bottom;
  background-size: cover;
}
.bizcheck-usage .bizcheck-section-title {
  color: var(--white);
}
.bizcheck-usage .bizcheck-section-subtitle {
  color: var(--white);
}
.bizcheck-usage-inner {
  max-width: 1276px;
  margin: 0 auto;
}
.bizcheck-usage-content {
  display: flex;
  gap: 8px;
  justify-content: center;
}
.bizcheck-usage-card {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  width: calc(100% / 3);
  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 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-usage-card-title br {
  display: none;
}
.bizcheck-usage-card-description {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: left;
}

@media (width <= 940px) {
  .bizcheck-usage {
    padding: 56px 20px 32px;
  }
  .bizcheck-usage-content {
    gap: 8px;
  }
  .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-title br {
    display: block;
  }
  .bizcheck-usage-card-description {
    font-size: 14px;
  }
}
@media (width <= 670px) {
  .bizcheck-usage {
    padding: 44px 24px 32px;
  }
  .bizcheck-usage-content {
    flex-direction: column;
    gap: 12px;
  }
  .bizcheck-usage-card {
    box-sizing: border-box;
    flex-flow: row wrap;
    gap: 8px;
    align-items: center;
    width: 100%;
    padding: 24px;
  }
  .bizcheck-usage-card-icon {
    box-sizing: border-box;
    flex-shrink: 0;
    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-title br {
    display: none;
  }
  .bizcheck-usage-card-description {
    width: 100%;
    line-height: 2;
  }
  .bizcheck-usage .bizcheck-section-subtitle {
    white-space: nowrap;
  }
}

/* ========================================
   BizCheck Features Section
   ======================================== */
.bizcheck-features {
  padding: 80px 20px;
  color: var(--color-text-default);
}
.bizcheck-features-inner {
  max-width: 1056px;
  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;
  justify-content: center;
  padding-left: 16px;
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-primary-200);
  text-align: center;
  background-color: #ffffff;
  border-radius: 4px;
}
.bizcheck-features-item-number::after {
  display: block;
  flex-shrink: 0;
  align-self: stretch;
  width: 4px;
  margin-left: 36px;
  content: "";
  background-color: var(--color-primary-200);
}
.bizcheck-features-item-text {
  display: flex;
  flex: 1 0 0;
  flex-direction: column;
  gap: 8px;
  min-height: 0;
}
.bizcheck-features-item-title {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}
.bizcheck-features-item-title br {
  display: none;
}
.bizcheck-features-item-description {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.bizcheck-features-item-box {
  padding: 32px;
  background-color: var(--color-primary-100);
  border-radius: 8px;
}
.bizcheck-features-item-box-title {
  margin-bottom: 40px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-features-item-box-data {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.bizcheck-features-item-box-row {
  display: flex;
  gap: 80px;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 0 8px 0 var(--color-primary-200);
}
.bizcheck-features-item-box-company {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  min-width: 200px;
}
.bizcheck-features-item-box-company-label {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-features-item-box-logo {
  max-width: 100%;
  height: auto;
}
.bizcheck-features-item-box-stats {
  display: flex;
  gap: 40px;
  align-items: center;
}
.bizcheck-features-item-box-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.bizcheck-features-item-box-stat-label {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
}
.bizcheck-features-item-box-stat-value {
  margin-bottom: 0;
  font-size: 0;
  font-weight: 700;
  line-height: 0;
  color: var(--color-text-primary);
}
.bizcheck-features-item-box-stat-value-number {
  font-size: 48px;
  line-height: 1.2;
}
.bizcheck-features-item-box-stat-value-unit {
  font-size: 28px;
  line-height: 1.6;
}
.bizcheck-features-item-box-stat-value-highlight {
  padding: 8px 16px;
  border-radius: 4px;
}
.bizcheck-features-item-box-database {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
}
.bizcheck-features-item-box-database-icon {
  flex-shrink: 0;
  max-width: 386px;
}
.bizcheck-features-item-box-database-content {
  display: flex;
  flex-direction: column;
}
.bizcheck-features-item-box-database-title {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.bizcheck-features-item-box-database-number {
  display: flex;
  gap: 4px;
  align-items: baseline;
}
.bizcheck-features-item-box-database-value {
  font-size: 76px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}
.bizcheck-features-item-box-database-unit {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
}
.bizcheck-features-item-box-database-description {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-features-item-box-price {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}
.bizcheck-features-item-box-price-item {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  width: 320px;
  height: 76px;
  background-color: var(--white);
  border-radius: 8px;
}
.bizcheck-features-item-box-price-icon {
  width: 32px;
  height: 32px;
  transform: translateY(1px);
}
.bizcheck-features-item-box-price-label {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-features-item-box-price-plus {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.bizcheck-features-item-box-price-result {
  display: flex;
  gap: 16px;
  align-items: flex-end;
  justify-content: center;
  margin-bottom: 12px;
}
.bizcheck-features-item-box-price-result-label {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-features-item-box-price-result-value {
  font-size: 48px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--color-text-primary);
}
.bizcheck-features-item-box-price-result-value-op {
  font-size: 32px;
}
.bizcheck-features-item-box-price-note {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-features-item-box-title br {
  display: none;
}

@media (width <= 940px) {
  .bizcheck-features {
    padding: 56px 20px;
  }
  .bizcheck-features-content {
    gap: 40px;
  }
  .bizcheck-features-item {
    gap: 16px;
  }
  .bizcheck-features-item-header {
    gap: 16px;
  }
  .bizcheck-features-item-number {
    padding-left: 12px;
    font-size: 32px;
  }
  .bizcheck-features-item-number::after {
    margin-left: 28px;
  }
  .bizcheck-features-item-title {
    font-size: 32px;
  }
  .bizcheck-features-item-description {
    font-size: 16px;
  }
  .bizcheck-features-item-box {
    padding: 28px;
  }
  .bizcheck-features-item-box-title {
    margin-bottom: 32px;
    font-size: 20px;
  }
  .bizcheck-features-item-box-row {
    gap: 60px;
    padding: 32px 28px;
  }
  .bizcheck-features-item-box-company {
    min-width: 160px;
  }
  .bizcheck-features-item-box-company-label {
    font-size: 16px;
  }
  .bizcheck-features-item-box-stats {
    gap: 32px;
  }
  .bizcheck-features-item-box-stat-label {
    font-size: 16px;
  }
  .bizcheck-features-item-box-stat-value-number {
    font-size: 40px;
  }
  .bizcheck-features-item-box-stat-value-unit {
    font-size: 24px;
  }
  .bizcheck-features-item-box-database {
    gap: 20px;
  }
  .bizcheck-features-item-box-database-icon {
    max-width: 300px;
  }
  .bizcheck-features-item-box-database-icon img {
    width: 100%;
  }
  .bizcheck-features-item-box-database-title {
    font-size: 28px;
  }
  .bizcheck-features-item-box-database-value {
    font-size: 56px;
  }
  .bizcheck-features-item-box-database-unit {
    font-size: 28px;
  }
  .bizcheck-features-item-box-database-description {
    font-size: 20px;
  }
  .bizcheck-features-item-box-price {
    gap: 8px;
    margin-bottom: 20px;
  }
  .bizcheck-features-item-box-price-item {
    width: 280px;
    height: 68px;
  }
  .bizcheck-features-item-box-price-icon {
    width: 28px;
    height: 28px;
  }
  .bizcheck-features-item-box-price-label {
    font-size: 24px;
  }
  .bizcheck-features-item-box-price-plus {
    font-size: 28px;
  }
  .bizcheck-features-item-box-price-result {
    margin-bottom: 12px;
  }
  .bizcheck-features-item-box-price-result-label {
    font-size: 20px;
  }
  .bizcheck-features-item-box-price-result-value {
    font-size: 40px;
  }
  .bizcheck-features-item-box-price-result-value-op {
    font-size: 24px;
  }
  .bizcheck-features-item-box-price-note {
    font-size: 14px;
  }
  .bizcheck-features-item-box-data {
    gap: 8px;
  }
}
@media (width <= 670px) {
  .bizcheck-features {
    padding: 40px 20px;
  }
  .bizcheck-features-content {
    gap: 40px;
    padding-top: 12px;
  }
  .bizcheck-features-item-header {
    display: grid;
    grid-template-rows: auto auto;
    grid-template-columns: auto 1fr;
    gap: 16px 20px;
  }
  .bizcheck-features-item-number {
    min-height: 60px;
    padding-left: 0;
  }
  .bizcheck-features-item-number::after {
    width: 2px;
    margin-left: 16px;
  }
  .bizcheck-features-item-text {
    display: contents;
  }
  .bizcheck-features-item-title {
    grid-row: 1;
    grid-column: 2;
    align-self: center;
    font-size: 24px;
    line-height: 1.4;
  }
  .bizcheck-features-item-title br {
    display: block;
  }
  .bizcheck-features-item-description {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-features-item-box {
    box-sizing: border-box;
    border-radius: 0;
  }
  .bizcheck-features-item:nth-child(1) .bizcheck-features-item-box {
    padding: 20px;
  }
  .bizcheck-features-item:nth-child(2) .bizcheck-features-item-box {
    padding: 28px 32px 40px;
  }
  .bizcheck-features-item:nth-child(3) .bizcheck-features-item-box {
    padding: 28px;
  }
  .bizcheck-features-item-box-title {
    margin-bottom: 8px;
    font-size: 18px;
  }
  .bizcheck-features-item-box-title br {
    display: inline;
  }
  .bizcheck-features-item-box-row {
    flex-direction: column;
    gap: 20px;
    padding: 24px 16px;
  }
  .bizcheck-features-item-box-company {
    width: 100%;
    min-width: auto;
  }
  .bizcheck-features-item-box-company-label {
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-features-item-box-logo-uriho {
    width: 140px;
  }
  .bizcheck-features-item-box-logo-paid {
    width: 110px;
  }
  .bizcheck-features-item-box-stats {
    gap: 24px;
    justify-content: center;
    width: 100%;
  }
  .bizcheck-features-item-box-stat-label {
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-features-item-box-stat-value-number {
    font-size: 28px;
  }
  .bizcheck-features-item-box-stat-value-unit {
    font-size: 28px;
  }
  .bizcheck-features-item-box-database {
    flex-direction: column;
    gap: 28px;
    margin-top: 24px;
  }
  .bizcheck-features-item-box-database-number {
    gap: 0;
  }
  .bizcheck-features-item-box-database-icon {
    order: 0;
  }
  .bizcheck-features-item-box-database-icon > img {
    width: 100%;
  }
  .bizcheck-features-item-box-database-title {
    font-size: 18px;
  }
  .bizcheck-features-item-box-database-value {
    font-size: 48px;
  }
  .bizcheck-features-item-box-database-description {
    font-size: 18px;
  }
  .bizcheck-features-item-box-database-content {
    align-items: center;
    order: 1;
  }
  .bizcheck-features-item-box-price {
    flex-direction: column;
    gap: 4px;
    margin-top: 24px;
  }
  .bizcheck-features-item-box-price-item {
    box-sizing: border-box;
    width: 100%;
    height: 100%;
    padding: 24px 16px;
  }
  .bizcheck-features-item-box-price-icon {
    width: 28px;
    height: 28px;
  }
  .bizcheck-features-item-box-price-label {
    font-size: 20px;
  }
  .bizcheck-features-item-box-price-plus {
    font-size: 32px;
    line-height: 1;
    transform: translateY(-2px);
  }
  .bizcheck-features-item-box-price-result-value {
    font-size: 32px;
  }
  .bizcheck-features-item-box-price-note {
    font-size: 12px;
  }
  .bizcheck-features-item-box-stat-value-highlight {
    padding: 0;
  }
  .bizcheck-features-item-box-price-result {
    flex-direction: column;
    gap: 0;
    align-items: center;
  }
  .bizcheck-features-item-box-price-result-label {
    font-size: 18px;
  }
}

/* ========================================
   BizCheck Input Section
   ======================================== */
.bizcheck-input {
  padding: 80px 20px;
  color: var(--color-text-default);
  background-color: var(--color-gray-50);
}
.bizcheck-input-inner {
  max-width: 1056px;
  margin: 0 auto;
}
.bizcheck-input-content {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1040px;
  margin-bottom: 40px;
}
.bizcheck-input-box {
  position: relative;
  z-index: 1;
  box-sizing: border-box;
  flex-shrink: 0;
  width: 100%;
  max-width: 420px;
  padding: 48px 36px;
  background-color: var(--white);
  border-radius: 8px;
}
.bizcheck-input-box:first-child {
  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:last-child {
  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-bottom: 40px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--color-text-primary);
  text-align: center;
}
.bizcheck-input-box-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 24px;
}
.bizcheck-input-box-form-field {
  display: flex;
  gap: 11px;
  align-items: center;
}
.bizcheck-input-box-form-label {
  flex-shrink: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.6;
}
.bizcheck-input-box-form-input {
  flex: 1;
  padding: 8px 11px;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 2;
  background-color: var(--white);
  border: 1px solid var(--color-gray-500);
  border-radius: 8px;
}
.bizcheck-input-box-form-button {
  position: relative;
  box-sizing: border-box;
  display: flex;
  gap: 10px;
  align-items: center;
  justify-content: center;
  padding: 8px 0;
  margin-top: 16px;
  background-color: var(--color-primary-500);
  border: none;
  border-radius: 8px;
}
.bizcheck-input-box-form-button-icon {
  position: absolute;
  inset: auto;
  width: 40px;
  margin: auto;
  transform: translate(80px, 20px);
}
.bizcheck-input-box-form-button-text {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
}
.bizcheck-input-box-csv {
  position: absolute;
  top: -48px;
  right: -24px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 120px;
  height: 120px;
  background-color: var(--white);
  border: 1px solid var(--color-primary-500);
  border-radius: 100%;
}
.bizcheck-input-box-csv-text {
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-text-primary);
  text-align: center;
}
.bizcheck-input-box-csv-large {
  font-size: 24px;
}
.bizcheck-input-box-csv-small {
  font-size: 18px;
}
.bizcheck-input-middle {
  position: absolute;
  inset: 0;
  z-index: 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-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-middle-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--white);
  text-align: center;
}
.bizcheck-input-box-result {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}
.bizcheck-input-box-result-label {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-input-box-result-company {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-input-box-result-company br {
  display: none;
}
.bizcheck-input-box-result-judge {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: center;
  width: 100%;
  padding: 23px 20px;
  background-color: var(--color-primary-100);
  border-radius: 8px;
}
.bizcheck-input-box-result-judge-label {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-input-box-result-judge-stars {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 48px;
}
.bizcheck-input-box-result-judge-stars > img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.bizcheck-input-box-result-judge-text {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-input-note {
  display: flex;
  gap: 28px;
  justify-content: center;
  padding: 0 16px;
  margin-bottom: 32px;
}
.bizcheck-input-note-title {
  flex-shrink: 0;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
.bizcheck-input-note-list {
  padding: 0 0 0 30px;
  margin: 0;
  list-style-type: auto;
}
.bizcheck-input-note-list li {
  padding-left: 4px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
}
.bizcheck-input-contact {
  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 {
  text-decoration: none;
}

@media (width <= 940px) {
  .bizcheck-input {
    padding: 60px 20px;
  }
  .bizcheck-input-content {
    gap: 164px;
    max-width: 880px;
    margin-bottom: 32px;
  }
  .bizcheck-input-box {
    flex: 1;
    min-width: 0;
    padding: 36px 28px;
  }
  .bizcheck-input-box-title {
    margin-bottom: 32px;
    font-size: 24px;
  }
  .bizcheck-input-box-form {
    gap: 16px;
    margin-bottom: 20px;
  }
  .bizcheck-input-box-form-field {
    flex-direction: column;
    gap: 8px;
  }
  .bizcheck-input-box-form-label {
    font-size: 16px;
  }
  .bizcheck-input-box-form-input {
    width: 100%;
    font-size: 13px;
  }
  .bizcheck-input-box-form-button {
    padding: 6px 0;
    margin-top: 12px;
  }
  .bizcheck-input-box-form-button-icon {
    width: 32px;
    transform: translate(70px, 16px);
  }
  .bizcheck-input-box-form-button-text {
    font-size: 18px;
  }
  .bizcheck-input-box-csv {
    top: -32px;
    right: -20px;
    width: 80px;
    height: 80px;
  }
  .bizcheck-input-box-csv-large {
    font-size: 20px;
  }
  .bizcheck-input-box-csv-small {
    font-size: 16px;
  }
  .bizcheck-input-middle {
    gap: 16px;
    width: 240px;
    height: 240px;
  }
  .bizcheck-input-middle-icon {
    gap: 32px;
    width: 50px;
  }
  .bizcheck-input-middle-arrow {
    height: 12px;
  }
  .bizcheck-input-middle-text {
    font-size: 14px;
  }
  .bizcheck-input-box-result {
    gap: 12px;
  }
  .bizcheck-input-box-result-label {
    font-size: 14px;
  }
  .bizcheck-input-box-result-company {
    font-size: 18px;
  }
  .bizcheck-input-box-result-company br {
    display: inline;
  }
  .bizcheck-input-box-result-judge {
    padding: 20px 16px;
  }
  .bizcheck-input-box-result-judge-label {
    font-size: 18px;
  }
  .bizcheck-input-box-result-judge-stars {
    width: 130px;
    height: 42px;
  }
  .bizcheck-input-box-result-judge-text {
    font-size: 14px;
  }
  .bizcheck-input-note {
    gap: 20px;
    margin-bottom: 28px;
  }
  .bizcheck-input-note-title {
    font-size: 18px;
  }
  .bizcheck-input-note-list li {
    font-size: 18px;
  }
  .bizcheck-input-contact {
    font-size: 14px;
  }
}
@media (width <= 670px) {
  .bizcheck-input {
    padding: 40px 16px 44px;
  }
  .bizcheck-input-content {
    flex-direction: column;
    gap: 90px;
    margin: 40px 0 16px;
  }
  .bizcheck-input-box {
    width: 100%;
    max-width: 100%;
    padding: 32px 40px 52px;
  }
  .bizcheck-input-box:last-child {
    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:first-child {
    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-box-form {
    gap: 8px;
    margin-bottom: 16px;
  }
  .bizcheck-input-box-form-field {
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
  }
  .bizcheck-input-box-form-input {
    box-sizing: border-box;
    width: 100%;
    padding: 8px 11px;
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-input-box-form-button {
    width: 100%;
    padding: 8px 100px;
    margin-top: 16px;
  }
  .bizcheck-input-box-form-button-icon {
    width: 36px;
    transform: translate(72px, 16px);
  }
  .bizcheck-input-box-form-button-text {
    font-size: 16px;
  }
  .bizcheck-input-box-csv {
    top: -32px;
    right: -12px;
    box-sizing: border-box;
    width: 84px;
    height: 84px;
  }
  .bizcheck-input-box-csv-large {
    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(32px);
  }
  .bizcheck-input-middle::before {
    display: none;
  }
  .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-box-result {
    gap: 8px;
  }
  .bizcheck-input-box-result-label {
    font-size: 16px;
  }
  .bizcheck-input-box-result-company {
    margin-bottom: 4px;
    font-size: 20px;
    line-height: 1.6;
  }
  .bizcheck-input-box-result-judge {
    gap: 8px;
    padding: 24px 0 28px;
  }
  .bizcheck-input-box-result-judge-label {
    font-size: 20px;
  }
  .bizcheck-input-box-result-judge-stars {
    width: 144px;
    height: auto;
  }
  .bizcheck-input-box-result-judge-text {
    font-size: 16px;
  }
  .bizcheck-input-note {
    flex-direction: column;
    gap: 0;
    margin-bottom: 12px;
  }
  .bizcheck-input-note-title {
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-input-note-list {
    padding-left: 21px;
  }
  .bizcheck-input-note-list li {
    font-size: 14px;
    line-height: 2;
  }
  .bizcheck-input-contact {
    font-size: 14px;
  }
  .bizcheck-input-middle-icon > img {
    order: 1;
    width: 48px;
  }
  .bizcheck-input-middle-arrow {
    position: static;
    height: 56px;
    transform: none;
  }
}

/* ========================================
   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 CTA Section
   ======================================== */
.bizcheck-cta {
  position: relative;
  padding: 48px 40px;
  color: var(--color-text-default);
}
.bizcheck-cta::after {
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 200px;
  content: "";
  background-color: var(--color-primary-100);
}
.bizcheck-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
}
.bizcheck-cta-title {
  margin: 0 0 56px;
  font-size: 28px;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
}
.bizcheck-cta-title br {
  display: none;
}
.bizcheck-cta-title-slash {
  font-size: 40px;
  line-height: 1.2;
}
.bizcheck-cta-title-slash:first-child {
  margin-right: 28px;
}
.bizcheck-cta-title-slash:last-child {
  margin-left: 28px;
}
.bizcheck-cta-title-price {
  font-size: 40px;
  line-height: 1.2;
}
.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 rgb(228 228 231 / 100%);
}
.bizcheck-cta-box::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 50%;
  width: 1px;
  content: "";
  background-color: var(--color-gray-200);
}
.bizcheck-cta-left,
.bizcheck-cta-right {
  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;
  inset: 0;
  width: 100%;
  margin: auto;
  transition: 0.2s;
}
.bizcheck-cta-image img {
  width: 100%;
  height: auto;
}
.bizcheck-cta-image-left {
  max-width: 420px;
  transform: translateY(-30px);
}
.bizcheck-cta-content:hover .bizcheck-cta-image-left {
  transform: translateY(-38px);
}
.bizcheck-cta-image-right {
  max-width: 280px;
}
.bizcheck-cta-content:hover .bizcheck-cta-image-right {
  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;
  padding: 6px 24px;
  font-weight: 700;
  color: var(--white);
  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-cta-button-orange {
  background-color: var(--color-button-primary-bg);
  border: 2px solid var(--color-button-primary-border);
}
.bizcheck-cta-content:hover .bizcheck-cta-button-orange {
  color: var(--color-button-primary-text-hover);
  text-decoration: none;
  background-color: var(--color-button-primary-bg-hover);
  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);
  text-decoration: none;
}
.bizcheck-cta-content:hover
  .bizcheck-cta-button-orange
  .bizcheck-cta-button-badge {
  color: var(--color-button-primary-text-hover);
  background-color: var(--color-button-primary-bg-hover);
  border-color: var(--color-button-primary-badge-hover);
}
.bizcheck-cta-button-blue {
  background-color: var(--color-button-secondary-bg);
  border: 2px solid var(--color-button-secondary-border);
}
.bizcheck-cta-content:hover .bizcheck-cta-button-blue {
  color: var(--color-button-seconrdary-text-hover);
  text-decoration: none;
  background-color: var(--color-button-secondary-bg-hover);
  transform: translateY(-8px);
}
.bizcheck-cta-content:hover
  .bizcheck-cta-button-blue
  .bizcheck-cta-button-main {
  color: var(--color-button-seconrdary-text-hover);
  text-decoration: none;
}
.bizcheck-cta-button-sentence {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-right: 16px;
  margin: 0;
  line-height: 1.4;
  text-decoration: none;
}
.bizcheck-cta-button-text {
  display: block;
  font-size: clamp(14px, 1.6vw, 18px);
  color: var(--color-button-primary-text);
  text-align: center;
  text-decoration: none;
  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);
  text-decoration: none;
  transition: color 0.2s ease;
}
.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-text);
  text-decoration: none;
  background-color: var(--color-button-primary-bg);
  border: 1px solid var(--color-button-primary-badge);
  border-radius: 100%;
  transition:
    background-color 0.2s ease,
    color 0.2s ease,
    border 0.2s ease;
}
.bizcheck-cta-info {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 24px;
  justify-content: space-between;
  width: 100%;
  max-width: 530px;
  margin: 0 auto;
  text-align: left;
}
.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-note {
  position: absolute;
  bottom: -28px;
  margin: 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 2;
  color: var(--color-text-default);
  text-align: center;
  text-decoration: none;
}
.bizcheck-cta-note br {
  display: none;
}
.bizcheck-cta-phone {
  display: flex;
  gap: 48px;
  justify-content: center;
  width: 100%;
}
.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-top: 8px;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.6;
  text-align: right;
}

@media (width <= 940px) {
  .bizcheck-cta {
    padding: 40px 20px;
  }
  .bizcheck-cta::after {
    height: 128px;
  }
  .bizcheck-cta-inner {
    max-width: 780px;
  }
  .bizcheck-cta-title {
    margin-bottom: 40px;
    font-size: 20px;
  }
  .bizcheck-cta-title-slash {
    font-size: 28px;
  }
  .bizcheck-cta-title-price {
    font-size: 28px;
  }
  .bizcheck-cta-box {
    max-width: 780px;
  }
  .bizcheck-cta-left,
  .bizcheck-cta-right {
    gap: 32px;
    padding: 32px 24px;
  }
  .bizcheck-cta-section-title {
    font-size: 20px;
  }
  .bizcheck-cta-content {
    min-height: 160px;
  }
  .bizcheck-cta-image-left {
    max-width: 320px;
    transform: translateY(-20px);
  }
  .bizcheck-cta-image-right {
    max-width: 220px;
  }
  .bizcheck-cta-button {
    max-width: 100%;
    min-height: 70px;
  }
  .bizcheck-cta-button-badge {
    width: 56px;
    height: 56px;
    font-size: 15px;
  }
  .bizcheck-cta-info-title {
    font-size: 16px;
  }
  .bizcheck-cta-info-list {
    font-size: clamp(11px, 1.7vw, 14px);
  }
  .bizcheck-cta-note {
    bottom: -24px;
    font-size: 10px;
  }
  .bizcheck-cta-phone {
    gap: 32px;
  }
  .bizcheck-cta-button-main {
    font-size: clamp(16px, 2.4vw, 25px);
  }
  .bizcheck-cta-button-text {
    font-size: clamp(13px, 1.5vw, 16px);
  }
  .bizcheck-cta-phone-tel {
    font-size: clamp(17px, 2.5vw, 24px);
  }
  .bizcheck-cta-phone-title {
    font-size: 16px;
  }
}
@media (width <= 670px) {
  .bizcheck-cta {
    background-color: #e9f4fa;
  }
  .bizcheck-cta::after {
    content: none;
  }
  .bizcheck-cta-title {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
    font-size: 18px;
  }
  .bizcheck-cta-title br {
    display: inline;
  }
  .bizcheck-cta-title-slash {
    font-size: 36px;
  }
  .bizcheck-cta-title-slash:first-child {
    margin-right: 8px;
    transform: rotate(20deg);
  }
  .bizcheck-cta-title-slash:last-child {
    margin-left: 8px;
    transform: rotate(-20deg);
  }
  .bizcheck-cta-title-price {
    font-size: 18px;
  }
  .bizcheck-cta-left,
  .bizcheck-cta-right {
    gap: 20px;
    padding: 8px 20px 20px;
  }
  .bizcheck-cta-left {
    padding-top: 20px;
    padding-bottom: 0;
  }
  .bizcheck-cta-left::after {
    display: block;
    width: calc(100% - 12px * 2);
    margin: 12px;
    content: "";
    border: 1px solid #d4d4d8;
  }
  .bizcheck-cta-button-blue .bizcheck-cta-button-main {
    font-size: 16px;
  }
  .bizcheck-cta-image-left {
    width: 248px;
    transform: translateY(-12px);
  }
  .bizcheck-cta-box {
    flex-direction: column;
    margin-bottom: 20px;
  }
  .bizcheck-cta-box::before {
    display: none;
  }
  .bizcheck-cta-section-title {
    margin-bottom: 16px;
    font-size: 20px;
  }
  .bizcheck-cta-button-text {
    font-size: 12px;
    line-height: 1;
  }
  .bizcheck-cta-button-main {
    font-size: 18px;
  }
  .bizcheck-cta-button-badge {
    top: 4px;
    right: 4px;
    width: 40px;
    height: 40px;
    font-size: 12px;
  }
  .bizcheck-cta-button {
    min-height: 52px;
    padding: 3px 0 0;
  }
  .bizcheck-cta-button-blue {
    padding: 0;
  }
  .bizcheck-cta-info-title {
    font-size: 16px;
  }
  .bizcheck-cta-info-list {
    gap: 4px 0;
    max-width: 260px;
    font-size: 12px;
  }
  .bizcheck-cta-phone-tel {
    font-size: 18px;
  }
  .bizcheck-cta-left .bizcheck-cta-content {
    min-height: 130px;
  }
  .bizcheck-cta-info {
    flex-direction: column;
    gap: 4px;
    max-width: 260px;
    margin: 0 auto;
  }
  .bizcheck-cta-note br {
    display: inline;
  }
  .bizcheck-cta-note {
    bottom: -40px;
    font-size: 12px;
    line-height: 1.4;
  }
  .bizcheck-cta-phone {
    gap: 16px;
    margin-top: 44px;
  }
  .bizcheck-cta-phone-hours {
    margin-top: 0;
    font-size: 12px;
    line-height: 1.4;
  }
  .bizcheck-cta-phone-icon {
    width: 18px;
    height: 18px;
  }
  .bizcheck-cta-phone-number {
    gap: 4px;
  }
}

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