.hero-service {
  padding-left: 128px;
  position: relative;
}

@media screen and (max-width: 835px) {
  .hero-service {
    padding-left: 0px;
  }
  
}

@media screen and (max-width: 440px) {
  .hero-service {
    padding-left: 0px;
  }
}

.hero-img {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: flex-start;
  width: 100%;
  height: 50vh;
  padding: 48px 96px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.hero-img::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.2); /* 白の透過レイヤー = 20%白を重ねる */
  /* 0.2 → 白の濃さ。0.2なら結果的に画像が約80%の見え方 */
}

@media screen and (max-width: 835px) {
  .hero-img {
    height: 40vh;
    padding: 32px 64px;
  }
}

@media screen and (max-width: 440px) {
  .hero-img {
    padding: 32px 16px;
  }
}

.h1-service {
  width: 100%;
  font-size: 48px;
  font-weight: bold;
  line-height: 1.6;
  color: #fff;
  position: relative;
  z-index: 600;
}

@media screen and (max-width: 835px) {
  .h1-service {
    font-size: 32px;
  }
}

@media screen and (max-width: 440px) {
  .hero-service {
    padding-left: 0px;
  }
}

.hero-stick {
  width: 64px;
  height: 1px;
  border: 1px solid #fff;
}

.hero-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 16px;
}

.section-service {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 88px 16px;
}

@media screen and (max-width: 835px) {
  .section-service {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }
}

@media screen and (max-width: 440px) {
  .section-service {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }
}

.section-service-bg {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: auto;
  padding: 88px 16px;
  background-color: rgba(7, 176, 228, 0.05);
}

@media screen and (max-width: 835px) {
  .section-service-bg {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }
}

@media screen and (max-width: 440px) {
  .section-service-bg {
    width: 100%;
    height: auto;
    padding: 40px 16px;
  }
}

.container-service {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  gap: 32px;
  position: relative;
  z-index: 1; 
}

@media screen and (max-width: 835px) {
  .container-service {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .container-service {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}

.container-service-gap {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1120px;
  gap: 64px;
  position: relative;
  z-index: 1; 
}

@media screen and (max-width: 835px) {
  .container-service-gap {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

@media screen and (max-width: 440px) {
  .container-service-gap {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
  }
}

.h2-service {
  width: 100%;
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
}

@media screen and (max-width: 835px) {
  .h2-service {
    font-size: 32px;
  }
}

@media screen and (max-width: 440px) {
  .h2-service {
    font-size: 24px;
    line-height: 2.5;
  }
}

.text-service-center {
  width: 100%;
  max-width: 820px;
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: 1.6;
  text-align: center;
  color: #333;
}

@media screen and (max-width: 440px) {
  .text-service-center {
    text-align: start;
  }
}

.approach-wrapper {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  width: 100%;
}

@media screen and (max-width: 835px) {
  .approach-wrapper {
    display: flex;
  }
}

@media screen and (max-width: 440px) {
  .approach-wrapper {
    display: none;
  }
}

.approach-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
}

.service-text {
  font-size: 16px;
  line-height: 2.0;
  letter-spacing: 1.6;
  text-align: start;
}

/* 並び・間隔（PCで“63px”のギャップに） */
.approach-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 63px;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* a を丸カードにする */
.approach-card {
  width: 200px;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #fff;
  text-align: center;
  position: relative;
  background-image: linear-gradient(261deg, #003784, #07b0e4);
  box-shadow: 0 8px 24px rgba(0,0,0,.08);
  transition: transform .2s ease, opacity .2s ease;
  text-decoration: none;  /* リンクの下線消す */
}

.approach-card:hover {
  transform: translateY(-2px);
  opacity: 0.9;
}

.approach-card i {
  font-size: 20px;
  line-height: 1;
}

.approach-card h3 {
  font-size: 16px;
  font-weight: 400;
  letter-spacing: .04em;
  line-height: 1.6;
}

.approach-card::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 10px;
  width: 8px;
  height: 8px;
  border-right: 2px solid rgba(255,255,255,.9);
  border-bottom: 2px solid rgba(255,255,255,.9);
  transform: translateX(-50%) rotate(45deg);
}

.approach-card a {
  color: white;
}

.h2-wrapper {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  gap: 16px;
}

.h2-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.h2-service-text {
  font-size: 24px;
  line-height: 1.6;
  color: #003784;
}

.stick-inner {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}

.service-stick {
  width: 32px;
  height: 1px;
  border: 1px solid #003784;
}

