.business {
  background: #ffffff;
  padding: 88px 0 100px;
  overflow: hidden;
}

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

.business__head {
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
  animation: business-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.1s forwards;
}

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

.business__title {
  color: #000;
  font-size: 40px;
  font-style: normal;
  font-weight: var(--font-weight-normal);
  line-height: 56px;
  /* 116.667% */
}

.business__tabs {
  padding-right: 96px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  align-items: stretch;
  margin-bottom: 48px;
  opacity: 0;
  transform: translateY(24px);
  animation: business-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.25s forwards;
}

.business__tab {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: 100%;
  min-height: 120px;
  padding: 20px 16px;
  border: none;
  border-radius: 10px;
  background: #ffffff;
  color: #000000;
  font-family: inherit;
  cursor: pointer;
  box-sizing: border-box;
}

.business__tab::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -6px;
  right: -6px;
  border-radius: 10px;
  background-color: #ffffff;
  z-index: -1;
}

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

.business__tab.is-active::before {
  background-color: #0070d5;
}

.business__tab.is-active {
  z-index: 1;
  background-color: #0070d5;
  color: #ffffff;
}

.business__tab.is-active::after,
.business__tab:has( + .business__tab.is-active)::after {
  display: none;
}

.business__tab.is-active + .business__tab::before {
  display: none;
}

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

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

.business__tab-text {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: calc(15px * 1.4 * 2);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.business__body {
  position: relative;
  opacity: 0;
  transform: translateY(24px);
  animation: business-enter 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.4s forwards;
}

.business__panels {
  position: relative;
  min-height: 480px;
  padding-bottom: 88px;
}

.business__panel {
  display: grid;
  grid-template-columns: minmax(0, 520px) minmax(0, 58%);
  gap: 88px;
  align-items: stretch;
  position: absolute;
  inset: 0;
  width: 100%;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.75s ease, visibility 0.75s ease;
  pointer-events: none;
  z-index: 0;
}

.business__panel.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  z-index: 1;
}

.business__panel.is-leaving {
  opacity: 0;
  visibility: visible;
  pointer-events: none;
  z-index: 2;
}

.business__content,
.business__media {
  opacity: 0;
  transform: translate3d(0, 24px, 0);
}

.business__panel.is-active:not(.is-animating) .business__content:not(.is-entering),
.business__panel.is-active:not(.is-animating) .business__media:not(.is-entering) {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.business__content.is-entering,
.business__media.is-entering {
  animation: business-panel-enter 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

.business__content {
  display: flex;
  flex-direction: column;
  padding-top: 68px;
}

.business__panel-title {
  margin-bottom: 28px;
  font-size: 32px;
  font-weight: var(--font-weight-bold);
  line-height: 1.3;
  color: #1a1a1a;
}

.business__panel-desc {
  margin-bottom: 40px;
  font-size: 15px;
  font-weight: 400;
  line-height: 2;
  color: #666666;
  text-align: justify;
}

.business__cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  height: 44px;
  padding: 0 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: #0070d5;
  color: #ffffff;
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 0 0 0 rgba(0, 112, 213, 0);
  transition: background 0.3s ease,
 border-color 0.3s ease,
 box-shadow 0.35s ease;
}

.business__cta svg {
  position: relative;
  z-index: 1;
  flex-shrink: 0;
  transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.business__cta::before {
  content: "";
  position: absolute;
  top: 0;
  left: -130%;
  z-index: 0;
  width: 72%;
  height: 100%;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 28%, rgba(255, 255, 255, 0.38) 50%, rgba(255, 255, 255, 0.06) 72%, transparent 100%);
  transform: skewX(-22deg);
  transition: left 1.45s cubic-bezier(0.22, 1, 0.36, 1);
  pointer-events: none;
}

.business__cta:hover {
  border-color: rgba(160, 220, 255, 0.45);
  background: #005eb8;
  box-shadow: 0 0 0 1px rgba(120, 200, 255, 0.18), 0 0 18px rgba(0, 112, 213, 0.35);
}

.business__cta:hover::before {
  left: 150%;
}

.business__cta:hover svg {
  transform: translate(2px, -2px);
}

.business__footer {
  position: relative;
  left: auto;
  bottom: auto;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: calc(520px - 20px);
  margin-top: 24px;
  padding-top: 0;
}

.business__page {
  font-size: 16px;
  font-weight: 500;
  color: #999999;
  letter-spacing: 0.08em;
}

.business__page-current {
  color: #1a1a1a;
}

.business__arrows {
  display: flex;
  align-items: center;
  gap: 16px;
}

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

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

.business__arrow:hover {
  opacity: 0.9;
}

.business__arrow:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.business__media {
  position: relative;
  min-height: 480px;
  overflow: hidden;
  background: #f5f7fa;
}

.business__media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 480px;
  object-fit: cover;
  object-position: center center;
}

@keyframes business-enter {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes business-panel-enter {
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (min-width: 1921px) {
  .business__inner {
    max-width: 1600px;
  }
}

@media screen and (max-width: 1600px) and (min-width: 1025px) {
  .business {
    padding: 4.675vw 0 5.3125vw;
  }
  .business__inner {
    max-width: 85vw;
    padding: 0 1.275vw;
  }
  .business__head {
    margin-bottom: 2.55vw;
    transform: translateY(1.275vw);
  }
  .business__label {
    margin-bottom: 0.85vw;
    font-size: 1.275vw;
    line-height: 1.59375vw;
  }
  .business__title {
    font-size: 2.125vw;
    line-height: 2.975vw;
  }
  .business__tabs {
    padding-right: 5.1vw;
    margin-bottom: 2.55vw;
    transform: translateY(1.275vw);
  }
  .business__tab {
    gap: 0.74375vw;
    min-height: 6.375vw;
    padding: 1.0625vw 0.85vw;
    border-radius: 0.53125vw;
  }
  .business__tab::before {
    left: -0.31875vw;
    right: -0.31875vw;
    border-radius: 0.53125vw;
  }
  .business__tab:not(:last-child)::after {
    top: 1.275vw;
    width: 0.05312vw;
    height: calc(100% - 2.55vw);
  }
  .business__tab-icon {
    width: 2.125vw;
    height: 2.125vw;
  }
  .business__tab-icon svg {
    width: 1.9125vw;
    height: 1.9125vw;
  }
  .business__tab-text {
    min-height: calc(0.79688vw * 1.4 * 2);
    font-size: 0.79688vw;
  }
  .business__body {
    transform: translateY(1.275vw);
  }
  @keyframes business-enter {
    from {
      opacity: 0;
      transform: translateY(1.275vw);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  .business__panels {
    min-height: 25.5vw;
    padding-bottom: 4.675vw;
  }
  .business__panel {
    grid-template-columns: minmax(0, 27.625vw) minmax(0, 58%);
    gap: 4.675vw;
  }
  .business__content,
  .business__media {
    transform: translate3d(0, 1.275vw, 0);
  }
  .business__content {
    padding-top: 3.6125vw;
  }
  .business__panel-title {
    margin-bottom: 1.4875vw;
    font-size: 1.7vw;
  }
  .business__panel-desc {
    margin-bottom: 2.125vw;
    font-size: 0.79688vw;
  }
  .business__cta {
    gap: 0.53125vw;
    height: 2.3375vw;
    padding: 0 1.275vw;
    border-width: 0.05312vw;
    border-radius: 53.07187vw;
    font-size: 0.85vw;
  }
  .business__cta:hover {
    box-shadow: 0 0 0 0.05312vw rgba(120, 200, 255, 0.18), 0 0 0.95625vw rgba(0, 112, 213, 0.35);
  }
  .business__cta:hover svg {
    transform: translate(0.10625vw, -0.10625vw);
  }
  .business__footer {
    width: calc(27.625vw - 1.0625vw);
    margin-top: 1.275vw;
  }
  .business__page {
    font-size: 0.85vw;
  }
  .business__arrows {
    gap: 0.85vw;
  }
  .business__arrow {
    width: 2.3375vw;
    height: 2.3375vw;
  }
  .business__media {
    min-height: 25.5vw;
  }
  .business__media img {
    min-height: 25.5vw;
  }
}

@media (max-width: 1024px) {
  .business {
    padding: 64px 0 72px;
  }
  .business__title {
    font-size: 32px;
    line-height: 1.3;
  }
  .business__label {
    font-size: 24px;
  }
  .business__tabs {
    display: flex;
    flex-wrap: nowrap;
    justify-content: flex-start;
    gap: 12px;
    margin-bottom: 32px;
    padding: 0 24px 8px 0;
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .business__tabs::-webkit-scrollbar {
    display: none;
  }
  .business__tab:not(:last-child)::after {
    display: none;
  }
  .business__tab {
    flex: 0 0 168px;
    width: 168px;
    min-width: 168px;
    max-width: 168px;
    min-height: 100px;
  }
  .business__panel {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .business__footer {
    position: static;
    width: 100%;
    margin-top: 24px;
  }
  .business__panels {
    min-height: 640px;
    padding-bottom: 0;
  }
  .business__media {
    min-height: 360px;
  }
  .business__media img {
    min-height: 360px;
  }
  .business__panel-title {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  .business {
    padding: 48px 0 56px;
  }
  .business__inner {
    padding: 0 16px;
  }
  .business__head {
    margin-bottom: 32px;
  }
  .business__title {
    font-size: 28px;
  }
  .business__label {
    font-size: 20px;
  }
  .business__tabs {
    padding: 0 16px 8px 0;
    gap: 10px;
  }
  .business__tab {
    flex: 0 0 148px;
    width: 148px;
    min-width: 148px;
    max-width: 148px;
    min-height: 88px;
    gap: 10px;
    padding: 12px 10px;
  }
  .business__tab-icon svg {
    width: 28px;
    height: 28px;
  }
  .business__tab-text {
    font-size: 12px;
  }
  .business__panel-title {
    font-size: 22px;
    margin-bottom: 20px;
  }
  .business__panel-desc {
    font-size: 14px;
    line-height: 1.85;
    margin-bottom: 28px;
  }
  .business__panels {
    min-height: 520px;
  }
  .business__media,
  .business__media img {
    min-height: 260px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .business__content,
  .business__media {
    opacity: 1;
    transform: none;
  }
  .business__panel.is-active:not(.is-animating) .business__content:not(.is-entering),
  .business__panel.is-active:not(.is-animating) .business__media:not(.is-entering),
  .business__content.is-entering,
  .business__media.is-entering {
    animation: none;
  }
  .business__panel {
    transform: none;
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
  .business__cta::before,
  .business__cta svg {
    transition: none;
  }
  .business__cta:hover svg {
    transform: none;
  }
}
