.biz-page {
  padding-top: 0;
  background: #ffffff;
}

.biz-hero {
  --biz-hero-tab-h: 110px;
  --site-header-h: 72px;
  position: relative;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  height: 100svh;
  max-height: 100svh;
  padding-top: 0;
  overflow: hidden;
}

.biz-hero__radio {
  position: absolute;
  width: 0;
  height: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
}

.biz-hero__panels {
  flex: 1;
  position: relative;
  min-height: 0;
  height: auto;
}

.biz-hero__panel {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease, visibility 0.4s ease;
}

.biz-hero:has(#biz-hero-tab-0:checked) .biz-hero__panel--0,
.biz-hero:has(#biz-hero-tab-1:checked) .biz-hero__panel--1,
.biz-hero:has(#biz-hero-tab-2:checked) .biz-hero__panel--2,
.biz-hero:has(#biz-hero-tab-3:checked) .biz-hero__panel--3,
.biz-hero:has(#biz-hero-tab-4:checked) .biz-hero__panel--4 {
  z-index: 1;
  opacity: 1;
  visibility: visible;
}

.biz-hero__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  margin-left: -50vw;
}

.biz-hero__bg img,
.biz-hero__bg picture {
  display: block;
  width: 100%;
  height: 100%;
}

.biz-hero__bg img {
  object-fit: cover;
  object-position: center center;
}

.biz-hero__shade {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 1;
  width: 100vw;
  margin-left: -50vw;
  background: linear-gradient(90deg, rgba(245, 247, 250, 0.96) 0%, rgba(245, 247, 250, 0.88) 34%, rgba(245, 247, 250, 0.35) 58%, rgba(245, 247, 250, 0) 72%);
  pointer-events: none;
}

.biz-hero__inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  width: 100%;
  max-width: 1600px;
  min-height: 0;
  margin: 0 auto;
  padding: 0;
}

.biz-hero__main {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  box-sizing: border-box;
  height: 100%;
  min-height: 0;
  padding: 0 24px;
  overflow: hidden;
}

.biz-hero__content {
  max-width: 565px;
  max-height: 100%;
  overflow: hidden;
}

.biz-hero__label {
  margin-bottom: 20px;
  font-size: 48px;
  font-weight: var(--font-weight-normal);
  line-height: 1.2;
  color: #000000;
}

.biz-hero__title {
  margin-bottom: 28px;
  font-size: 32px;
  font-weight: var(--font-weight-normal);
  line-height: 1.3;
  color: #000000;
}

.biz-hero__desc {
  max-width: 480px;
  font-size: 20px;
  font-weight: 400;
  line-height: 2;
  color: #000;
  text-align: justify;
}

.biz-hero__tabs-sentinel {
  flex-shrink: 0;
  width: 100%;
  height: 0;
  pointer-events: none;
}

.biz-hero__tabs-placeholder {
  display: none;
  flex-shrink: 0;
  width: 100%;
}

.biz-hero__tabs-placeholder.is-active {
  display: block;
}

.biz-hero__tabs-wrap {
  flex-shrink: 0;
  width: 100%;
  border-top: 1px solid #e8e8e8;
  background: #f5f6f7;
  transition: box-shadow 0.25s ease;
}

.biz-hero__tabs-wrap.is-sticky {
  position: fixed;
  top: var(--site-header-h);
  right: 0;
  left: 0;
  z-index: 900;
  border-top: 1px solid #e8e8e8;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.biz-hero__tabs {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  box-sizing: border-box;
  width: 100%;
  max-width: 1600px;
  height: var(--biz-hero-tab-h);
  margin: 0 auto;
}

.biz-hero__tab {
  position: relative;
  flex: 1 1 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 16px;
  border: none;
  color: #000000;
  font-family: inherit;
  cursor: pointer;
}

.biz-hero__tab:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: calc(100% - 48px);
  background: #e8e8e8;
}

.biz-hero:has(#biz-hero-tab-0:checked) .biz-hero__tabs label[for="biz-hero-tab-0"],
.biz-hero:has(#biz-hero-tab-1:checked) .biz-hero__tabs label[for="biz-hero-tab-1"],
.biz-hero:has(#biz-hero-tab-2:checked) .biz-hero__tabs label[for="biz-hero-tab-2"],
.biz-hero:has(#biz-hero-tab-3:checked) .biz-hero__tabs label[for="biz-hero-tab-3"],
.biz-hero:has(#biz-hero-tab-4:checked) .biz-hero__tabs label[for="biz-hero-tab-4"] {
  color: #0070d5;
}

.biz-hero__tab-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  color: inherit;
}

.biz-hero__tab-icon svg {
  width: 36px;
  height: 36px;
  fill: currentColor;
}

.biz-hero__tab-text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

@media (max-height: 820px) {
  .biz-hero {
    --biz-hero-tab-h: 92px;
  }
  .biz-hero__label {
    font-size: 40px;
    margin-bottom: 12px;
  }
  .biz-hero__desc {
    font-size: 16px;
    line-height: 1.75;
  }
  .biz-hero__tab {
    gap: 6px;
    padding: 10px 12px;
  }
}

@media (max-width: 1024px) {
  .biz-hero {
    --biz-hero-tab-h: 96px;
  }
  .biz-hero__tab-text {
    white-space: nowrap;
  }
  .biz-hero__inner {
    padding: 0 16px;
  }
  .biz-hero__main {
    padding: 24px 0 0;
  }
  .biz-hero__tabs-wrap {
    padding: 0 16px;
  }
  .biz-hero__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    height: var(--biz-hero-tab-h);
    overflow-x: auto;
    scrollbar-width: none;
  }
  .biz-hero__tabs::-webkit-scrollbar {
    display: none;
  }
  .biz-hero__tab {
    flex: 0 0 auto;
    min-width: 132px;
    max-width: none;
  }
  .biz-hero__tab:not(:last-child)::after {
    display: none;
  }
}

.biz-body {
  width: 100%;
}

.biz-body__group {
  display: none;
}

.biz-page:has(#biz-hero-tab-0:checked) .biz-body__group[data-biz-index="0"],
.biz-page:has(#biz-hero-tab-1:checked) .biz-body__group[data-biz-index="1"],
.biz-page:has(#biz-hero-tab-2:checked) .biz-body__group[data-biz-index="2"],
.biz-page:has(#biz-hero-tab-3:checked) .biz-body__group[data-biz-index="3"],
.biz-page:has(#biz-hero-tab-4:checked) .biz-body__group[data-biz-index="4"] {
  display: block;
}

.biz-equip {
  padding: 88px 0 100px;
  background: #ffffff;
}

.biz-equip__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.biz-equip__head {
  margin-bottom: 32px;
  text-align: center;
}

.biz-equip__label {
  margin-bottom: 16px;
  color: #0070d5;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 30px;
  /* 125% */
}

.biz-equip__title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: #000000;
}

.biz-equip__desc {
  max-width: 900px;
  margin: 0 auto;
  color: #666;
  text-align: center;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 28px;
  /* 175% */
}

.biz-equip__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 20px;
  margin-bottom: 40px;
}

.biz-equip__tab {
  padding: 10px 24px;
  border: none;
  border-radius: 999px;
  background: transparent;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.biz-equip__tab.is-active {
  background: #0070d5;
  color: #ffffff;
}

.biz-equip__gallery {
  margin-bottom: 32px;
}

.biz-equip__viewport {
  overflow: hidden;
  width: 100%;
  padding: 16px 0;
  margin: -16px 0;
  box-sizing: content-box;
  --biz-equip-gap: 24px;
  --biz-equip-panel-w: calc((100% - 48px) / 3);
}

.biz-equip__track {
  display: flex;
  flex-wrap: nowrap;
  gap: var(--biz-equip-gap);
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.biz-equip__panel {
  flex: 0 0 var(--biz-equip-panel-w);
  width: var(--biz-equip-panel-w);
  flex-shrink: 0;
  position: relative;
  z-index: 0;
  margin: 0;
  background: #f0f2f5;
  box-shadow: none;
  border-top: 3px solid transparent;
  border-bottom: 3px solid transparent;
  transition: box-shadow 0.35s ease, border-color 0.35s ease;
  box-sizing: border-box;
}

.biz-equip__panel.is-active {
  z-index: 1;
  border-top-color: #0070d5;
  border-bottom-color: #0070d5;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1), 0 2px 6px rgba(0, 0, 0, 0.06);
}

.biz-equip__panel img {
  display: block;
  width: 100%;
  height: 517px;
  object-fit: cover;
  object-position: center center;
}

.biz-equip__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.biz-equip__progress {
  flex: 1;
  height: 2px;
  background: #e8e8e8;
  border-radius: 999px;
  overflow: hidden;
}

.biz-equip__progress-fill {
  display: block;
  height: 100%;
  background: #0070d5;
  border-radius: 999px;
  transition: width 0.4s ease;
}

.biz-equip__arrows {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.biz-equip__arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: transparent;
  color: #999999;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}

.biz-equip__arrow--next {
  background: #0070d5;
  color: #ffffff;
}

.biz-equip__arrow:hover {
  opacity: 0.9;
}

.biz-equip__arrow:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.biz-support {
  padding: 88px 0 100px;
  background: #ffffff;
}

.biz-support__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.biz-support__head {
  margin-bottom: 48px;
  text-align: center;
}

.biz-support__label {
  margin-bottom: 16px;
  color: #0070d5;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 30px;
}

.biz-support__title {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: #000000;
}

.biz-support__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: left;
}

.biz-support__card {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  overflow: hidden;
  background: #ffffff;
  transition: box-shadow 0.3s ease;
}

.biz-support__card:hover {
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.1);
}

.biz-support__media {
  flex-shrink: 0;
  overflow: hidden;
}

.biz-support__media img {
  display: block;
  width: 100%;
  height: 400px;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.4s ease;
}

.biz-support__card:hover .biz-support__media img {
  transform: scale(1.03);
}

.biz-support__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
  box-sizing: border-box;
  padding: 32px 28px 36px;
  background: #f5f7fa;
  text-align: left;
  border-bottom: 3px solid transparent;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.biz-support__card:hover .biz-support__body {
  background: #ffffff;
  border-bottom-color: #0070d5;
}

.biz-support__card-title {
  width: 100%;
  margin: 0 0 16px;
  color: #000;
  text-align: center;
  font-size: 24px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 28px;
  /* 116.667% */
}

.biz-support__card-desc {
  width: 100%;
  margin: 0;
  color: #222;
  text-align: left;
  font-size: 16px;
  font-style: normal;
  font-weight: var(--font-weight-bold);
  line-height: 1.625;
  /* 162.5% */
}

.biz-support__card-desc1 {
  text-align: center;
}

.biz-product {
  padding: 88px 0 100px;
  background: #ffffff;
}

.biz-product__inner {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.biz-product__head {
  margin-bottom: 40px;
  text-align: center;
}

.biz-product__label {
  margin-bottom: 16px;
  color: #0070d5;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 30px;
}

.biz-product__title {
  margin-bottom: 24px;
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: #000000;
}

.biz-product__desc {
  max-width: 900px;
  margin: 0 auto;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  color: #666666;
}

.biz-product__tabs {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 12px 16px;
  margin-bottom: 40px;
}

.biz-product__tab {
  padding: 10px 28px;
  border: 1px solid #e8e8e8;
  border-radius: 999px;
  background: #ffffff;
  color: #1a1a1a;
  font-family: inherit;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  white-space: nowrap;
  cursor: pointer;
  transition: border-color 0.25s ease, color 0.25s ease, background 0.25s ease;
}

.biz-product__tab.is-active {
  border-color: #0070d5;
  color: #0070d5;
}

.biz-product__tab:hover {
  border-color: #0070d5;
}

.biz-product__panels {
  position: relative;
  min-height: 200px;
  padding: 0 180px;
}

.biz-product__panel {
  display: none;
}

.biz-product__panel.is-active {
  display: block;
}

.biz-product__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px 24px;
}

.biz-product__item {
  min-width: 0;
  text-align: center;
  border: 1px solid #f9f9f9;
  transition: box-shadow 0.3s ease;
}

.biz-product__item:hover {
  box-shadow: 0 12px 36px rgba(0, 64, 152, 0.12);
}

.biz-product__item[hidden] {
  display: none;
}

.biz-product__thumb {
  width: 100%;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  margin: 0 auto;
  overflow: hidden;
  background: #ffffff;
}

.biz-product__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transition: transform 0.4s ease;
}

.biz-product__item:hover .biz-product__thumb img {
  transform: scale(1.02);
}

.biz-product__name {
  font-size: 18px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: #000000;
}

.biz-product__more {
  display: block;
  margin: 48px auto 0;
  padding: 0;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: var(--font-weight-bold);
  line-height: 1.4;
  color: #000000;
  cursor: pointer;
  transition: color 0.25s ease;
}

.biz-product__more:hover {
  color: #0070d5;
}

.biz-product__more[hidden] {
  display: none;
}

.biz-inquiry {
  position: relative;
  min-height: 720px;
  padding: 88px 0 100px;
  overflow: hidden;
}

.biz-inquiry__bg {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  z-index: 0;
  width: 100vw;
  margin-left: -50vw;
}

.biz-inquiry__bg img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.biz-inquiry__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0;
}

.biz-inquiry__main {
  width: 100%;
  max-width: 520px;
}

.biz-inquiry__head {
  margin-bottom: 36px;
}

.biz-inquiry__label {
  margin-bottom: 16px;
  color: #0070d5;
  font-size: 24px;
  font-weight: var(--font-weight-bold);
  line-height: 30px;
}

.biz-inquiry__title {
  font-size: 40px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: #000000;
}

.biz-inquiry__form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.biz-inquiry__field {
  display: block;
}

.biz-inquiry__sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.biz-inquiry__input,
.biz-inquiry__textarea {
  display: block;
  width: 100%;
  padding: 16px 20px;
  border: none;
  border-radius: 0;
  background: #ffffff;
  color: #000000;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  transition: box-shadow 0.25s ease;
}

.biz-inquiry__input::placeholder,
.biz-inquiry__textarea::placeholder {
  color: #666666;
}

.biz-inquiry__input:focus,
.biz-inquiry__textarea:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 64, 152, 0.25);
}

.biz-inquiry__textarea {
  min-height: 160px;
  resize: vertical;
}

.biz-inquiry__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  align-self: flex-start;
  margin-top: 8px;
  height: 44px;
  padding: 0 24px;
  border: none;
  border-radius: 999px;
  background: #0070d5;
  color: #ffffff;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s ease;
}

.biz-inquiry__submit:hover {
  background: #0052d9;
}

.biz-inquiry__submit-icon {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.biz-inquiry__submit-icon svg {
  display: block;
  width: 16px;
  height: 16px;
}

@media (max-width: 1024px) {
  .biz-equip {
    padding: 64px 0 72px;
  }
  .biz-equip__panel img {
    height: 260px;
  }
  .biz-equip__tabs {
    justify-content: flex-start;
    flex-wrap: nowrap;
    overflow-x: auto;
    padding-bottom: 8px;
    scrollbar-width: none;
  }
  .biz-equip__tabs::-webkit-scrollbar {
    display: none;
  }
  .biz-support {
    padding: 64px 0 72px;
  }
  .biz-support__cards {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 24px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .biz-support__cards::-webkit-scrollbar {
    display: none;
  }
  .biz-support__card {
    flex: 0 0 auto;
    width: min(340px, 78vw);
  }
  .biz-support__media img {
    height: 240px;
  }
  .biz-product {
    padding: 64px 0 72px;
  }
  .biz-product__tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding: 0 24px 8px 0;
    margin-bottom: 32px;
    scrollbar-width: none;
  }
  .biz-product__tabs::-webkit-scrollbar {
    display: none;
  }
  .biz-product__tab {
    flex: 0 0 auto;
  }
  .biz-product__grid {
    display: flex;
    flex-wrap: nowrap;
    gap: 20px;
    padding: 0 24px 8px 0;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .biz-product__grid::-webkit-scrollbar {
    display: none;
  }
  .biz-product__item {
    flex: 0 0 auto;
    width: min(300px, 72vw);
  }
  .biz-product__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .biz-product__thumb img {
    height: 100%;
  }
  .biz-product__more {
    display: none;
  }
  .biz-inquiry {
    padding: 64px 0 72px;
    min-height: 640px;
  }
  .biz-inquiry__main {
    max-width: none;
  }
  .biz-product__panels {
    padding: 0;
  }
}

@media (max-width: 768px) {
  .biz-hero {
    --site-header-h: 56px;
    height: auto;
    max-height: none;
    overflow: visible;
  }
  .biz-hero__inner {
    max-width: none;
    padding: 0;
  }
  .biz-hero__panels {
    flex: none;
    width: 100vw;
    height: 480px;
    margin-left: calc(50% - 50vw);
  }
  .biz-hero__bg {
    left: 0;
    width: 100%;
    margin-left: 0;
  }
  .biz-hero__main {
    padding: 0 16px;
  }
  .biz-hero__panel::after {
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    background: rgba(0, 0, 0, 0.15);
    pointer-events: none;
  }
  .biz-hero__label-prefix,
  .biz-hero__desc {
    display: none;
  }
  .biz-hero__label,
  .biz-hero__title {
    color: #ffffff;
  }
  .biz-equip__inner,
  .biz-support__inner,
  .biz-product__inner,
  .biz-inquiry__inner {
    padding: 0 16px;
  }
  .biz-equip {
    padding: 48px 0 56px;
  }
  .biz-equip__title {
    font-size: 28px;
  }
  .biz-equip__desc {
    font-size: 14px;
    line-height: 1.85;
  }
  .biz-equip__tab {
    font-size: 13px;
    padding: 8px 16px;
  }
  .biz-equip__panel img {
    height: 220px;
    object-fit: contain;
    object-position: center center;
  }
  .biz-hero__label {
    font-size: 32px;
  }
  .biz-hero__title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  .biz-hero__tab-text {
    font-size: 12px;
  }
  .biz-hero__tab-icon svg {
    width: 28px;
    height: 28px;
  }
  .biz-support {
    padding: 48px 0 56px;
  }
  .biz-support__title {
    font-size: 28px;
  }
  .biz-support__label {
    font-size: 20px;
  }
  .biz-support__cards {
    padding: 0 16px 8px 0;
    gap: 16px;
  }
  .biz-support__card {
    width: min(300px, 82vw);
  }
  .biz-support__media img {
    height: 200px;
  }
  .biz-support__body {
    padding: 24px 20px 28px;
  }
  .biz-support__card-title {
    font-size: 18px;
    margin-bottom: 12px;
  }
  .biz-support__card-desc {
    font-size: 14px;
    line-height: 1.75;
  }
  .biz-product {
    padding: 48px 0 56px;
  }
  .biz-product__title {
    font-size: 28px;
  }
  .biz-product__label {
    font-size: 20px;
  }
  .biz-product__desc {
    font-size: 14px;
    line-height: 1.85;
  }
  .biz-product__tabs {
    padding: 0 16px 8px 0;
    gap: 10px;
  }
  .biz-product__tab {
    padding: 8px 20px;
    font-size: 14px;
  }
  .biz-product__grid {
    padding: 0 16px 8px 0;
    gap: 16px;
  }
  .biz-product__item {
    width: min(350px, 78vw);
  }
  .biz-product__thumb {
    width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .biz-product__thumb img {
    height: 100%;
  }
  .biz-product__name {
    font-size: 16px;
  }
  .biz-product__more {
    display: none;
    margin-top: 36px;
    font-size: 15px;
  }
  .biz-inquiry {
    padding: 48px 0 56px;
    min-height: 560px;
  }
  .biz-inquiry__head {
    margin-bottom: 28px;
  }
  .biz-inquiry__label {
    font-size: 20px;
  }
  .biz-inquiry__title {
    font-size: 28px;
  }
  .biz-inquiry__input,
  .biz-inquiry__textarea {
    padding: 14px 16px;
    font-size: 15px;
  }
  .biz-inquiry__textarea {
    min-height: 140px;
  }
  .biz-inquiry__submit {
    width: 100%;
    font-size: 15px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .biz-hero {
    --biz-hero-tab-h: 5.84375vw;
    --site-header-h: 3.825vw;
  }
  .biz-hero__inner {
    max-width: 85vw;
  }
  .biz-hero__main {
    padding: 0 1.275vw;
  }
  .biz-hero__content {
    max-width: 30.01562vw;
  }
  .biz-hero__label {
    margin-bottom: 1.0625vw;
    font-size: 2.55vw;
  }
  .biz-hero__title {
    margin-bottom: 1.4875vw;
    font-size: 1.7vw;
  }
  .biz-hero__desc {
    max-width: 25.5vw;
    font-size: 1.0625vw;
  }
  .biz-hero__tabs-wrap {
    border-top-width: 0.05312vw;
  }
  .biz-hero__tabs-wrap.is-sticky {
    border-top-width: 0.05312vw;
    box-shadow: 0 0.2125vw 0.6375vw rgba(0, 0, 0, 0.08);
  }
  .biz-hero__tabs {
    max-width: 85vw;
  }
  .biz-hero__tab {
    gap: 0.425vw;
    padding: 0.6375vw 0.85vw;
  }
  .biz-hero__tab:not(:last-child)::after {
    width: 0.05312vw;
    height: calc(100% - 2.55vw);
  }
  .biz-hero__tab-icon {
    width: 2.125vw;
    height: 2.125vw;
  }
  .biz-hero__tab-icon svg {
    width: 1.9125vw;
    height: 1.9125vw;
  }
  .biz-hero__tab-text {
    font-size: 0.74375vw;
  }
  .biz-equip {
    padding: 4.675vw 0 5.3125vw;
  }
  .biz-equip__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .biz-equip__head {
    margin-bottom: 1.7vw;
  }
  .biz-equip__label {
    margin-bottom: 0.85vw;
    font-size: 1.275vw;
    line-height: 1.59375vw;
  }
  .biz-equip__title {
    margin-bottom: 1.275vw;
    font-size: 2.125vw;
  }
  .biz-equip__desc {
    max-width: 47.8125vw;
    font-size: 0.85vw;
    line-height: 1.4875vw;
  }
  .biz-equip__tabs {
    gap: 0.6375vw 1.0625vw;
    margin-bottom: 2.125vw;
  }
  .biz-equip__tab {
    padding: 0.53125vw 1.275vw;
    border-radius: 53.07187vw;
    font-size: 0.79688vw;
  }
  .biz-equip__gallery {
    margin-bottom: 1.7vw;
  }
  .biz-equip__viewport {
    --biz-equip-gap: 1.275vw;
    --biz-equip-panel-w: calc((100% - 2.55vw) / 3);
    padding: 0.85vw 0;
    margin: -0.85vw 0;
  }
  .biz-equip__panel {
    border-top-width: 0.15937vw;
    border-bottom-width: 0.15937vw;
  }
  .biz-equip__panel.is-active {
    border-top-color: #0070d5;
    border-bottom-color: #0070d5;
    box-shadow: 0 0.31875vw 1.0625vw rgba(0, 0, 0, 0.1), 0 0.10625vw 0.31875vw rgba(0, 0, 0, 0.06);
  }
  .biz-equip__panel img {
    height: 27.46562vw;
  }
  .biz-equip__bar {
    gap: 1.7vw;
  }
  .biz-equip__progress {
    height: 0.10625vw;
    border-radius: 53.07187vw;
  }
  .biz-equip__progress-fill {
    border-radius: 53.07187vw;
  }
  .biz-equip__arrows {
    gap: 0.85vw;
  }
  .biz-equip__arrow {
    width: 2.3375vw;
    height: 2.3375vw;
  }
  .biz-support {
    padding: 4.675vw 0 5.3125vw;
  }
  .biz-support__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .biz-support__head {
    margin-bottom: 2.55vw;
  }
  .biz-support__label {
    margin-bottom: 0.85vw;
    font-size: 1.275vw;
    line-height: 1.59375vw;
  }
  .biz-support__title {
    font-size: 2.125vw;
  }
  .biz-support__cards {
    gap: 1.275vw;
  }
  .biz-support__card:hover {
    box-shadow: 0 0.6375vw 1.9125vw rgba(0, 0, 0, 0.1);
  }
  .biz-support__media img {
    height: 21.25vw;
  }
  .biz-support__body {
    padding: 1.7vw 1.4875vw 1.9125vw;
    border-bottom-width: 0.15937vw;
  }
  .biz-support__card-title {
    margin: 0 0 0.85vw;
    font-size: 1.275vw;
    line-height: 1.4875vw;
  }
  .biz-support__card-desc {
    font-size: 0.85vw;
  }
  .biz-product {
    padding: 4.675vw 0 5.3125vw;
  }
  .biz-product__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .biz-product__head {
    margin-bottom: 2.125vw;
  }
  .biz-product__label {
    margin-bottom: 0.85vw;
    font-size: 1.275vw;
    line-height: 1.59375vw;
  }
  .biz-product__title {
    margin-bottom: 1.275vw;
    font-size: 2.125vw;
  }
  .biz-product__desc {
    max-width: 47.8125vw;
    font-size: 0.85vw;
  }
  .biz-product__tabs {
    gap: 0.6375vw 0.85vw;
    margin-bottom: 2.125vw;
  }
  .biz-product__tab {
    padding: 0.53125vw 1.4875vw;
    border-width: 0.05312vw;
    border-radius: 53.07187vw;
    font-size: 0.79688vw;
  }
  .biz-product__panels {
    min-height: 10.625vw;
    padding: 0 9.5625vw;
  }
  .biz-product__grid {
    gap: 1.7vw 1.275vw;
  }
  .biz-product__item {
    border-width: 0.05312vw;
  }
  .biz-product__item:hover {
    box-shadow: 0 0.6375vw 1.9125vw rgba(0, 64, 152, 0.12);
  }
  .biz-product__thumb {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1 / 1;
  }
  .biz-product__name {
    font-size: 0.95625vw;
  }
  .biz-product__more {
    margin: 2.55vw auto 0;
    font-size: 0.85vw;
  }
  .biz-inquiry {
    min-height: 38.25vw;
    padding: 4.675vw 0 5.3125vw;
  }
  .biz-inquiry__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .biz-inquiry__main {
    max-width: 27.625vw;
  }
  .biz-inquiry__head {
    margin-bottom: 1.9125vw;
  }
  .biz-inquiry__label {
    margin-bottom: 0.85vw;
    font-size: 1.275vw;
    line-height: 1.59375vw;
  }
  .biz-inquiry__title {
    font-size: 2.125vw;
  }
  .biz-inquiry__form {
    gap: 0.85vw;
  }
  .biz-inquiry__input,
  .biz-inquiry__textarea {
    padding: 0.85vw 1.0625vw;
    font-size: 0.85vw;
  }
  .biz-inquiry__input:focus,
  .biz-inquiry__textarea:focus {
    box-shadow: 0 0 0 0.10625vw rgba(0, 64, 152, 0.25);
  }
  .biz-inquiry__textarea {
    min-height: 8.5vw;
  }
  .biz-inquiry__submit {
    gap: 0.53125vw;
    margin-top: 0.425vw;
    height: 2.3375vw;
    padding: 0 1.275vw;
    border-radius: 53.07187vw;
    font-size: 0.85vw;
  }
  .biz-inquiry__submit-icon svg {
    width: 0.85vw;
    height: 0.85vw;
  }
}
