@charset "UTF-8";

/*---------------
 color override
-----------------*/
body {
  color: var(--color-rich-black);
}
.m-note-list-v2 > li {
  color: #848484;
}
.m-note-list > li {
  color: var(--color-service-home);
}

/*---------------
 other override
-----------------*/
.m-media__frame img,
.m-media__image img {
  width: 100%;
}
.m-figure-wrap--center {
  margin-right: auto;
  margin-left: auto;
}
@media print, screen and (min-width: 768px) {
  .m-figure-wrap--center {
    width: 760px;
  }
  .m-figure-wrap--center + .m-column {
    margin: 40px 0 0;
  }
  .l-main {
    margin-top: 64px;
  }
}
@media only screen and (max-width: 767.98px) {
  .m-figure-wrap--center {
    width: 292px;
  }
}
ul li {
  padding: 0;
}
/*---------------
 l-grid override
-----------------*/
@media print, screen and (min-width: 768px) {
  .l-grid {
    gap: 40px;
  }
}
@media only screen and (max-width: 767.98px) {
  .l-grid {
    gap: 24px;
  }
  .-order1-sp {
    order: 1;
  }
  .-order2-sp {
    order: 2;
  }
  .-order3-sp {
    order: 3;
  }
  .-order4-sp {
    order: 4;
  }
}

/*---------------
 m-heading_title
-----------------*/
.m-heading_title {
  margin: 0;
  box-shadow: 0px -1px 0px 0px #dde0e5 inset;
  line-height: 1.5;
}
.m-heading_title.-h2center {
  text-align: center;
}
@media print, screen and (min-width: 768px) {
  .m-heading_title {
    margin: 96px 0 0;
  }
  .m-heading_title.-h2center {
    font-size: 3.6rem;
    font-weight: 400;
    padding-bottom: 20px;
  }
}
@media only screen and (max-width: 767.98px) {
  .m-heading_title {
    margin: 74px 0 0;
  }
  .m-heading_title.-h2center {
    font-size: 2.8rem;
    font-weight: normal;
    padding-bottom: 12px;
  }
}

/*---------------
list__mark
-----------------*/
.m-order-list__mark {
  color: #fff;
  text-align: center;
  width: 15px;
}
.m-order-list__mark:after {
  position: absolute;
  z-index: -1;
  content: "";
  background-color: #4444a1;
  width: 20px;
  height: 20px;
  border-radius: 20px;
  left: -2px;
  top: 2px;
}
