.workEnv {
  color: #595554;
}

.workEnvHero {
/*
  padding: clamp(56px, 8vw, 110px) 0;
*/
  background:
    linear-gradient(135deg, rgba(29, 79, 145, 0.08), rgba(255,255,255,0.75)),
    #f0f5fc;
}
/*

.workEnvHero__label {
  display: inline-block;
  margin-bottom: 18px;
  padding: 7px 18px;
  border-radius: 999px;
  background: #1d4f91;
  color: #fff;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}
*/

.workEnvHero__catch {
  margin-bottom: var(--space-sm);
  font-size: var(--fz-xl2);
  line-height: 1.45;
  font-weight: 700;
  color: #595554;
	font-family: "見出ゴMB31", sans-serif;
}

.workEnvHero__text {
  max-width: 880px;
  margin-top: 28px;
  line-height: 2.1;
}

.workEnvSection {
  padding: clamp(64px, 8vw, 110px) 0;
  background: #fff;
}

.workEnvSection--blue {
  background: #f0f5fc;
}

.workEnvSection--photo {
  background: linear-gradient(180deg, #fff 0%, #f0f5fc 100%);
}

.workEnvHead {
  margin-bottom: 42px;
}

.workEnvHead__num {
  margin: 0 0 10px;
  color: #1d4f91;
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.workEnvHead__section {
  white-space: nowrap;
	font-weight: 700;
}
.workEnvHead__section span {
  opacity: 0.6;
  margin-left: 6px;
}
.workEnvHead__label {
  display: flex;
  align-items: center;
  gap: 16px;
  white-space: nowrap;
}

.workEnvHead__label::before {
  content: "";
  width: 30px;
  height: 1px;
  background: #1d4f91;
  opacity: 0.4;
}
.workEnvHead__title {
  margin: 0;
  font-size: clamp(1.55rem, 4vw, 2.25rem);
  line-height: 1.55;
/*
  color: #1d4f91;
	border-bottom: 1px solid #1d4f91;
*/
  color: #595554;
	border-bottom: 1px solid #595554;
}

.workEnvHead__text {
  max-width: 860px;
  margin-top: 18px;
  line-height: 2;
}
.workEnvCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;
}
.js-spSwiper .swiper-wrapper.workEnvCards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 26px;

}
.workEnvCards--two {
  max-width: 980px;
}
.workEnvCard {
  position: relative;
  padding: 30px;
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 30px rgba(29, 79, 145, 0.09);
  border: 1px solid rgba(29, 79, 145, 0.08);
}
.workEnvPhotos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.workEnvSection:not(.workEnvSection--blue) .workEnvCard {
  background: #f8fbff;
}

.workEnvCard__tag {
  display: inline-block;
  margin: 0 0 14px;
  padding: 5px 13px;
  border-radius: 999px;
  background: rgba(29, 79, 145, 0.1);
  color: #1d4f91;
  font-size: 0.82rem;
  font-weight: 700;
}

.workEnvCard__title {
  margin: 0;
  font-size: clamp(1.15rem, 2.4vw, 1.35rem);
  line-height: 1.6;
  color: #1d4f91;
}

.workEnvCard__text {
  margin: 16px 0 0;
  line-height: 1.95;
}

.workEnvPhotoGroup {
  margin-top: 48px;
}

.workEnvPhotoGroup__title {
  margin: 0 0 20px;
  padding-left: 16px;
  border-left: 5px solid #1d4f91;
  font-size: 1.35rem;
  color: #1d4f91;
}

.workEnvPhotos {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}

.workEnvPhoto {
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 12px 28px rgba(29, 79, 145, 0.1);
}
.workEnvPhoto img {
  display: block;
  width: 100%;
  height: clamp(220px, 20vw, 300px);
  object-fit: cover;
}
.workEnvPhoto__imgWrap {
  position: relative;
  overflow: hidden;
}
.workEnvPhoto--note::before {
  content: "※写真はイメージです";
  position: absolute;
  top: 10px;
  right: 12px;
  font-size: 0.75rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.55);
  padding: 4px 8px;
  border-radius: 4px;
  letter-spacing: 0.05em;
	z-index: 2;
}
.workEnvPhoto img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.workEnvPhoto figcaption {
  padding: 16px 18px 20px;
  line-height: 1.8;
  font-size: 0.95rem;
}

/* SP */
@media (max-width: 900px) {
  .workEnvCards,
  .workEnvPhotos {
    grid-template-columns: 1fr;
  }

  .workEnvCard {
    padding: 24px;
  }

  .workEnvHero__text br,
  .workEnvHead__text br {
    display: none;
  }
}
@media (min-width: 769px) {
  .js-spSwiper .swiper-wrapper.workEnvCards {
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 26px;
    row-gap: 36px;
    transform: none !important;
    align-items: stretch;
  }
.js-spSwiper .swiper-wrapper.workEnvPhotos {
    display: grid !important;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
    transform: none !important;
  }
  .js-spSwiper .swiper-slide {
    width: auto !important;
    height: auto !important;
    margin-right: 0 !important;
  }

  .js-spSwiper {
    overflow: visible;
  }

  .js-spSwiper .swiper-pagination {
    display: none;
  }
}
@media (max-width: 768px) {
  .js-spSwiper {
		position: relative;
    margin-inline: -10px;
    padding: 0 10px 42px;
    overflow: hidden;
  }

  .js-spSwiper .swiper-wrapper.workEnvCards {
    display: flex !important;
    gap: 0;
  }

  .js-spSwiper .workEnvCards {
    max-width: none;
  }

  .js-spSwiper .swiper-slide {
    width: 100% !important;
    box-sizing: border-box;
  }

  .js-spSwiper .workEnvCard {
    box-sizing: border-box;
    height: auto;
  }
	.js-spSwiper .swiper-pagination {
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 100%;
  }
	.js-spSwiper .swiper-pagination-bullet {
	  background: rgba(29, 79, 145, 0.2);
	  backdrop-filter: blur(4px);
	}

	.js-spSwiper .swiper-pagination-bullet-active {
	  background: linear-gradient(135deg, #1d4f91, #667eea);
	}
 .js-spSwiper .swiper-wrapper.workEnvPhotos {
    display: flex !important;
    gap: 0;
  }

  .js-spSwiper .workEnvPhoto {
    width: 100%;
  }
}