@charset "UTF-8";

/* ---------------------------------
  page_title
--------------------------------- */
.page_title img {
  width: 50.4rem;
}


/* ---------------------------------
  category_block
--------------------------------- */
.category_block {
  margin-bottom: 8rem;
}
.category_block img {
  margin-bottom: 4rem;
}
.cotegory_list {
  display: flex;
  justify-content: space-between;
}
.cotegory_list dl {
  width: calc(calc(100% - 12rem) / 4);
}
.cotegory_list dt {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  margin-bottom: 2rem;
}
.cotegory_list dt span {
  font-size: 1.4rem;
  font-weight: 500;
  margin-bottom: .8rem;
  display: block;
}
.cotegory_list dd li {
  background-color: #fff;
  text-align: center;
  font-size: 1.4rem;
  font-weight: 500;
  padding: .8rem;
  border-radius: .5rem;
}
.cotegory_list dd li:not(:last-child) {
  margin-bottom: .4rem;
}
@media screen and (max-width: 999px) {
  .cotegory_list {
    flex-flow: column;
  }
  .cotegory_list dl {
    width: 100%;
  }
  .cotegory_list dl + dl {
    margin-top: 4rem;
  }
}

/* ---------------------------------
  service_block
--------------------------------- */
.service_block {
  background-color: #fff;
  border-radius: 3rem;
  border: .1rem solid #000;
}
.service_block h2 {
  font-size: 2.4rem;
  text-align: center;
  font-weight: 500;
  padding: 4rem 0;
  border-bottom: .2rem solid #000;
}
.service_block ul {
  padding: 6.4rem 8rem;
}
.service_block li {
  display: flex;
  column-gap: min(8rem,10%);
  align-items: center;
}
.service_block li:not(:last-child) {
  margin-bottom: 6.4rem;
  padding-bottom: 6.4rem;
  background-image: repeating-linear-gradient(90deg, #000000, #000000 5px, transparent 5px, transparent 10px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 100% .1rem;
}
.service_block li img {
  max-width: 30rem;
  width: 30%;
}
.service_block .service_detail h3 {
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 2rem;
}
@media screen and (max-width: 999px) {
  .service_block {
    border-radius: 0;
    border-right: 0;
    border-left: 0;
    width: calc(100% + 4rem);
    transform: translateX(-2rem);
  }
  .service_block h2 {
    font-size: 2rem;
    line-height: 1.4;
  }
  .service_block ul {
    padding: 6.4rem 3.2rem;
  }
  .service_block li {
    row-gap: 4rem;
    flex-flow: column;
  }
  .service_block li img {
    max-width: 100%;
    width: 100%;
  }
  .service_block .service_detail p {
    font-size: 1.4rem;
  }
}
