/* =====================================================
   Business Page Styles
===================================================== */

/* ----- Business Header ----- */
.business-header {
  text-align: left;
}

.business-header__title-en {
  font-size: 4rem;
  font-weight: 700;
  background: linear-gradient(90deg, #9ec231 0%, #45ac56 55%, #249336 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.business-header__title-ja {
  display: block;
  margin-top: 16px;
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  letter-spacing: -0.02em;
}

/* ----- Business Intro ----- */
.business-intro {
  margin-top: 40px;
}

.business-intro__title {
  font-size: 3rem;
  font-weight: 500;
  color: var(--color-text);
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.business-intro__text {
  margin-top: 24px;
  font-size: 1.8rem;
  line-height: 1.8;
  color: #000;
}

/* ----- Service Cards ----- */
.service-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.service-cards__item {
  position: relative;
  margin-bottom: 30px;
  
}

.service-cards__title {
  font-size: 2rem;
  font-weight: 500;
  color: var(--color-text);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  z-index:  1;
  padding: 8px 8px;
  background: rgba(255, 255, 255, 1);
  clip-path: polygon(0 0, 70% 0, 60% 100%, 0 100%);
}

.service-cards__title-accent {
  color: #249336;
}

.service-cards__image {
  aspect-ratio: 304 / 240;
  overflow: hidden;
  position: relative;
}

.service-cards__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-slow);
}

.service-cards__item:hover .service-cards__image img {
  transform: scale(1.05);
}

.service-cards__connector {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 16px;
}

.service-cards__dot {
  width: 12px;
  height: 12px;
  background-color: #249336;
  border-radius: 50%;
}

.service-cards__line {
  position: absolute;
  top: 22px;
  width: 2px;
  height: 40px;
  background-color: #249336;
}

.service-cards__line--left {
  left: 50%;
  transform: translateX(-50%);
}

.service-cards__line--center {
  left: 50%;
  transform: translateX(-50%);
}

.service-cards__line--right {
  left: 50%;
  transform: translateX(-50%);
}

/* ----- One Stop Connector ----- */
.onestop-connector {
  width: 100%;
  max-width: 720px;
  margin: 0 auto;
  height: 80px;
}

.onestop-connector__svg {
  width: 100%;
  height: 100%;
}

.onestop-connector__path {
  stroke: #249336;
  stroke-width: 2;
  fill: none;
}

/* ----- One Stop Section ----- */
.onestop-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 0 48px;
}

.onestop-section__title {
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--color-text);
  text-align: center;
  line-height: 1.4;
}

.onestop-section__symbol {
  display: block;
  font-size: 2.8rem;
  color: var(--color-text);
  margin: 4px 0;
}

/* ----- Clients Header ----- */
.clients-header {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.clients-header__line {
  width: 4px;
  height: 57px;
  background-color: var(--color-text);
  flex-shrink: 0;
  margin-top: 4px;
}

.clients-header__text {
  display: flex;
  flex-direction: column;
}

.clients-header__title-en {
  font-size: 1.6rem;
  font-weight: 700;
  color: #9ec231;
  letter-spacing: 0.01em;
  line-height: 1.8;
}

.clients-header__title-ja {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-text);
  letter-spacing: 0.05em;
  line-height: 1.2;
}

/* ----- Clients List ----- */
.clients-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 40px;
}

.clients-list__items {
  font-size: 1.55rem;
  line-height: 2;
  color: #040000;
}

.clients-list__items li {
  white-space: nowrap;
}

/* ----- Responsive ----- */
@media screen and (max-width: 768px) {
  .business-header__title-en {
    font-size: 2.8rem;
  }

  .business-header__title-ja {
    font-size: 1.6rem;
    margin-top: 12px;
  }

  .business-intro__title {
    font-size: 2rem;
  }

  .business-intro__text {
    font-size: 1.5rem;
  }

  .service-cards {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .service-cards__title {
    font-size: 1.8rem;
  }

  .service-cards__connector {
    display: none;
  }

  .onestop-connector {
    display: none;
  }

  .onestop-section {
    flex-direction: column;
    padding: 32px 0;
  }

  .onestop-section__title {
    font-size: 2.2rem;
  }

  .clients-header__title-ja {
    font-size: 2rem;
  }

  .clients-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
