@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767 */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
-------------- LINE --------------
***************************************/
.img_row {
  justify-content: space-between;
}
@media (min-width: 768px) {
  .img_row {
    gap: 60px;
  }
}
.img_row .link_text {
  position: relative;
  color: #06c755;
  display: inline-block;
  padding: 5px 0;
}
.img_row .link_text:after {
  content: "";
  position: absolute;
  top: auto;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  width: 100%;
  height: 1px;
  background: #06c755;
}

.h3_step {
  color: var(--base-color01);
  font-size: clamp(1.8rem, 1.8vw, 2rem);
  border-bottom: 1px solid var(--base-color01);
  margin-bottom: 0 0 10px;
}

.remarks .desc {
  position: relative;
  padding-left: 25px;
  margin: 0 0 10px;
}
.remarks .desc:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 16px;
  height: 16px;
  background: var(--base-color01);
}
.remarks .list_remarks:not(:last-child) {
  padding-bottom: 30px;
  border-bottom: 2px dotted #777;
}
.remarks .list_remarks li {
  position: relative;
  padding-left: 15px;
}
.remarks .list_remarks li:before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 4px;
  height: 4px;
  border-radius: 100vh;
  background: var(--base-color01);
}