@charset "UTF-8";
/* =============== keyvisual =============== */

/* =============== サービス =============== */
.service_flex {
  display: flex;
  padding-top: 50px;
}
@media (max-width: 750px) {
  .service_flex {
    display: block;
  }
}
/* =============== 左選択バー =============== */
.service_fixed {
  width: fit-content;
  position: sticky;
  top: 50%; /* スクロール時に上部に固定 */
  color: #fe8f39;
  height: 100vh; /* ビューポート全体の高さに固定 */
  font-size: clamp(1rem, 2vw + 1rem, 1.5rem);
  font-weight: 500;
  line-height: 2.5;
}
@media (max-width: 750px) {
  .service_fixed {
    display: none;
  }
}
/* =============== サービス一覧（右側） =============== */
.service_contents {
  width: 70%;
  margin: 0 0 0 auto;
}

.service_contents li {
  padding-bottom: 30px;
  border-bottom: #7676763b 3px solid;
  margin-bottom: 27px;
}
.service_icon {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.service_icon img {
  width: 10%;
  height: 10%;
  align-content: center;
}
.service_icon h2 {
  padding-left: 20px;
  font-size: clamp(1.5rem, 2vw + 1rem, 2.5rem);
  color: #fe8f39;
}

.service_pic img {
  width: 100%;
  aspect-ratio: 5 / 2;
  object-fit: cover;
}
.service_contents li p {
  margin-top: 20px;
  font-size: clamp(0.813rem, 2vw + 1rem, 1.25rem);
}
@media (max-width: 750px) {
  .service_contents {
    width: 100%;
    margin: 0 auto;
  }
  .service_icon img {
    width: 20%;
    height: 20%;
  }
  .service_contents li p {
    font-size: clamp(1rem, 2vw + 1rem, 1rem);
  }
}
/* =============== =============== */
