.sx-services {
  padding: 100px 20px;
  background: #eef6fb;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.sx-wrap {
  max-width: 1200px;
  margin: auto;
}

.sx-kicker {
  margin: 0 0 12px;
  text-align: center;
  color: #0057ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.sx-wrap h2 {
  margin: 0 0 50px;
  text-align: center;
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.05;
  color: #071b34;
  font-weight: 600;
  letter-spacing: 0.01em;
  font-family: "poppins";
}

.sx-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr .85fr;
  gap: 24px;
}

.sx-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 30px 90px rgba(5, 35, 80, .12);
  border: 1px solid rgba(255,255,255,.85);
  transition: .35s ease;
}

.sx-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 40px 110px rgba(0,87,255,.18);
}

.sx-media {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.sx-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sx-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,20,70,.05), rgba(0,20,70,.0));
}

.sx-media span {
  position: absolute;
  right: 22px;
  top: 20px;
  z-index: 2;
  color: rgba(255,255,255,.85);
  font-size: 42px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.sx-content {
  padding: 30px;
}

.sx-content h3 {
  margin: 0 0 22px;
  color: #071b34;
  font-size: 25px;
  font-weight: 600;
  letter-spacing: -0.04em;
  font-family: "poppins";
}

.sx-list {
  display: grid;
  gap: 12px;
}

.sx-blue .sx-list {
  grid-template-columns: repeat(2, 1fr);
  column-gap: 20px;
}

.sx-list p {
  position: relative;
  margin: 0;
  padding-left: 26px;
  color: #10233f;
  font-size: 14px;
  font-weight: 800;
  line-height: 1.45;
}

.sx-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #0057ff;
  box-shadow: 0 0 0 5px rgba(0,87,255,.12);
}

@media (max-width: 1000px) {
  .sx-grid {
    grid-template-columns: 1fr;
  }

  .sx-blue .sx-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .sx-services {
    padding: 70px 16px;
  }

  .sx-card {
    border-radius: 26px;
  }

  .sx-media {
    height: 210px;
  }

  .sx-content {
    padding: 24px;
  }

  .sx-blue .sx-list {
    grid-template-columns: 1fr;
  }
}


/* START - 2 */

.dev-section {
  padding: 0px 50px 50px 50px;
  background: #edf6fb;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.dev-wrap {
  max-width: 1200px;
  margin: auto;
}

.dev-kicker {
  text-align: center;
  margin: 0 0 12px;
  color: #0057ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.dev-wrap h2 {
  margin: 0 0 55px;
  text-align: center;
  font-size: clamp(46px, 4vw, 86px);
  font-weight: 950;
  color: #111;
  letter-spacing: -0.05em;
}

.dev-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.dev-card {
  position: relative;
  min-height: 155px;
  padding: 34px;
  border-radius: 10px;
  background: #fff;
  display: flex;
  align-items: center;
  gap: 28px;
  overflow: hidden;
  box-shadow: 0 28px 80px rgba(5, 35, 80, .11);
  transition: .35s ease;
}

.dev-card::before {
  content: "";
  position: absolute;
  inset: 0;
  width: 7px;
  background: #0057ff;
  opacity: 0;
  transition: .35s ease;
}

.dev-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 38px 100px rgba(0, 87, 255, .18);
}

.dev-card:hover::before {
  opacity: 1;
}

.dev-icon {
  min-width: 86px;
  height: 86px;
  border-radius: 24px;
  background: #dff1fb;
  color: #2294cf;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
}

.dev-card span {
  display: block;
  margin-bottom: 8px;
  color: #0057ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .12em;
}

.dev-card h3 {
  margin: 0;
  color: #071b34;
  font-size: clamp(22px, 2vw, 30px);
  line-height: 1.35;
  font-weight: 800;
}

.dev-feature {
  background: linear-gradient(135deg, #0032ad, #0057ff);
}

.dev-feature h3,
.dev-feature span {
  color: #fff;
}

.dev-feature .dev-icon {
  background: rgba(255,255,255,.16);
  color: #fff;
}

.dev-wide {
  grid-column: 1 / -1;
  max-width: 720px;
  margin: auto;
  width: 100%;
}

@media (max-width: 900px) {
  .dev-grid {
    grid-template-columns: 1fr;
  }

  .dev-wide {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  .dev-section {
    padding: 70px 16px;
  }

  .dev-card {
    padding: 24px;
    border-radius: 24px;
    gap: 20px;
  }

  .dev-icon {
    min-width: 68px;
    height: 68px;
    font-size: 28px;
  }
}

/* END - 2 */

/* START - 3 */

.skillmap-section {
  padding: 50px 50px;
  background: #edf6fb;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.skillmap-wrap {
  max-width: 1200px;
  margin: auto;
}

.skillmap-kicker {
  margin: 0 0 12px;
  text-align: center;
  color: #0057ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.skillmap-wrap h2 {
  margin: 0 0 50px;
  text-align: center;
  color: #071b34;
  font-size: clamp(34px, 5vw, 56px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.skillmap-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.skill-card {
  position: relative;
  display: grid;
  grid-template-columns: 230px 1fr;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 10px;
  background: #fff;
  box-shadow: 0 28px 80px rgba(5, 35, 80, .11);
  overflow: hidden;
  transition: .35s ease;
}

.skill-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 40px 105px rgba(0, 87, 255, .18);
}

.skill-large {
  grid-column: 1 / -1;
}

.skill-image {
  position: relative;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  background: #0032ad;
}

.skill-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.skill-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 25, 80, .75), rgba(0, 87, 255, .18));
}

.skill-image span {
  position: absolute;
  left: 22px;
  bottom: 22px;
  z-index: 2;
  color: #fff;
  font-size: 28px;
  font-weight: 500;
  line-height: 1.15;
  font-family: "poppins";
}

.skill-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px 28px;
}

.skill-card:not(.skill-large) .skill-list {
  grid-template-columns: 1fr;
}

.skill-list p {
  position: relative;
  margin: 0;
  padding-left: 24px;
  color: #071b34;
  font-size: 16px;
  font-weight: 600;
  font-family:"poppins" ;
}

.skill-list p::before {
  content: "";
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #0057ff;
  box-shadow: 0 0 0 5px rgba(0, 87, 255, .12);
}

@media (max-width: 1000px) {
  .skillmap-grid {
    grid-template-columns: 1fr;
  }

  .skill-card {
    grid-template-columns: 1fr;
  }

  .skill-list,
  .skill-card:not(.skill-large) .skill-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .skillmap-section {
    padding: 70px 16px;
  }

  .skill-card {
    padding: 18px;
    border-radius: 10px;
  }

  .skill-image {
    height: 190px;
  }

  .skill-list,
  .skill-card:not(.skill-large) .skill-list {
    grid-template-columns: 1fr;
  }
}


/* END - 3 */

/* START - 4 */

.project-model {
  padding: 100px 20px;
  background: #edf6fb;
  font-family: "Inter", "Noto Sans JP", sans-serif;
}

.project-wrap {
  max-width: 1200px;
  margin: auto;
}

.project-kicker {
  margin: 0 0 12px;
  text-align: center;
  color: #0057ff;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.project-wrap h2 {
  margin: 0 0 52px;
  text-align: center;
  color: #071b34;
  font-size: clamp(36px, 5vw, 58px);
  font-weight: 950;
  letter-spacing: -0.04em;
}

.project-grid {
  display: grid;
  grid-template-columns: 1fr 1.18fr 1fr;
  gap: 26px;
  align-items: stretch;
}

.project-card {
  border-radius: 10px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 30px 90px rgba(5, 35, 80, .12);
  transition: .35s ease;
}

.project-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 42px 110px rgba(0, 87, 255, .18);
}

.project-feature {
  transform: translateY(-22px);
}

.project-feature:hover {
  transform: translateY(-32px);
}

.project-media {
  position: relative;
  height: 250px;
  overflow: hidden;
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 20, 70, .08), rgba(0, 20, 70, .78));
}

.project-media span {
  position: absolute;
  top: 20px;
  right: 24px;
  z-index: 2;
  color: rgba(255,255,255,.82);
  font-size: 48px;
  font-weight: 950;
  letter-spacing: -0.06em;
}

.project-media h3 {
  position: absolute;
  left: 26px;
  right: 26px;
  bottom: 26px;
  z-index: 2;
  margin: 0;
  color: #fff;
  font-size: 25px;
  font-weight: 900;
  line-height: 1.3;
}

.project-body {
  padding: 28px 30px 34px;
}

.project-flow {
  display: inline-block;
  margin: 0 0 22px;
  padding: 8px 16px;
  border-radius: 999px;
  background: #eef3f8;
  color: #516173;
  font-size: 13px;
  font-weight: 800;
}

.project-body h4 {
  margin: 0 0 18px;
  color: #0068a8;
  font-size: 30px;
  font-weight: 950;
  letter-spacing: -0.04em;
}

.project-body ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-body li {
  position: relative;
  margin-bottom: 13px;
  padding-left: 34px;
  color: #071b34;
  font-size: 16px;
  font-weight: 850;
}

.project-body li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: -1px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  border: 2px solid #44a4d8;
  color: #44a4d8;
  font-size: 12px;
  font-weight: 950;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1000px) {
  .project-grid {
    grid-template-columns: 1fr;
  }

  .project-feature,
  .project-feature:hover {
    transform: none;
  }
}

@media (max-width: 600px) {
  .project-model {
    padding: 70px 16px;
  }

  .project-card {
    border-radius: 26px;
  }

  .project-media {
    height: 220px;
  }

  .project-body {
    padding: 24px;
  }

  .project-body h4 {
    font-size: 25px;
  }
}

/* END - 4 */