@import url("root.css");
.section {
  padding: clamp(20px, 2.6vw, 40px) 0;
  margin: 0 !important;
  border-bottom: solid 1px #eee;
}
.section.bg01 {
  background: var(--base-color01);
  position: relative;
  z-index: 0;
  border-bottom: 0;
}
.section.bg01:before {
  content: "";
  width: 300vw;
  height: calc(100% + 1px);
  background: var(--base-color01);
  margin-left: -300%;
  margin-right: -300%;
  margin: auto;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
.section.bg02 {
  background: #eee;
  position: relative;
  z-index: 0;
  border-bottom: 0;
}
.section.bg02:before {
  content: "";
  width: 300vw;
  height: calc(100% + 1px);
  background: #eee;
  margin-left: -300%;
  margin-right: -300%;
  margin: auto;
  position: absolute;
  top: calc(50% - 1px);
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.parts {
  background: #eee;
  padding: 10px 20px;
}
.parts dt, .parts dd {
  padding: 10px 0;
}
.parts dt {
  border-bottom: solid 1px #ccc;
}


.service_img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media (max-width: 767px) {
  .service_box .row {
    gap: 0;
  } 
  .service_img img {
    aspect-ratio: 5/3;
  }
}
.txt_wrap {
  width: 100%;
  margin: 1em auto 0;
}
.txt_wrap dl {
  width: 100%;
  margin: 0;
  padding: 0;
  border: solid 1px #ccc;
  display: flex;
  flex-wrap: wrap;
}
.txt_wrap dl:not(:nth-of-type(1)) {
  border-top: none;
}
.txt_wrap dl dt {
  width: 34%;
  flex-shrink: 0;
  background: rgba(239, 97, 0, 0.9);
  color: #fff;
  padding: 10px;
}
.txt_wrap dl dd {
  flex-grow: 1;
  background: #fff;
  padding: 10px;
}
@media (max-width: 767px) {
  .txt_wrap dl dt,
  .txt_wrap dl dd {
    display: block;
    width: 100% !important;
  }
}






