@charset "UTF-8";
@import url("root.css");
/*-----*ブレイクポイントルール*-----*/
/* スマートフォン：max-width:767px */
/* タブレット：min-width:768px */
/* PC：min-width:1025px */
/***************************************
---------------- LINE ----------------
***************************************/
.container {
  counter-reset: number;
}

ul.line_step {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-between;
}

ul.line_step li {
  width: 32%;
  background: var(--base-color01);
  border: 1px solid var(--base-color01);
  margin-bottom: 2rem;
  padding: 0;
}
@media (max-width: 767px) {
  ul.line_step li {
    width: 48%;
  }
}

ul.line_step li:nth-last-child(-n+3) {
  margin-bottom: 0;
}

@media screen and (max-width: 1024px) {
  ul.line_step li:nth-last-child(-n+3) {
    margin-bottom: 2rem;
  }
  ul.line_step li:nth-last-child(-n+2) {
    margin-bottom: 0rem;
  }
}
ul.line_step li p {
  display: block;
  text-align: center;
  width: 100%;
  padding: 12px;
  margin: 10px auto 0 !important;
}
@media ( max-width : 767px ) {
  ul.line_step li p {
    text-align: left;
    padding: 8px;
  }
}

ul.line_step li div {
  position: relative;
  /* box-shadow: 4px 4px 5px #33333321; */
}

ul.line_step li div::before {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  counter-increment: number 1;
  content: "" counter(number) "";
  padding: 5px 5px;
  margin-right: 10px;
  margin-top: 0px;
  width: 60px;
  min-width: 60px;
  height: 60px;
  background: var(--base-color01);
  font-size: 160% !important;
  color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
ul.line_step li span::after {
  counter-increment: number 1;
  content: "" counter(number) "";
  font-size: 160% !important;
  color: var(--base-color03);
}

@media ( max-width : 767px ) {
  ul.line_step li div::before {
    width: 30px;
    min-width: 30px;
    height: 30px;
    font-size: 100% !important;
  }
}

ul.line_step li {
  line-height: 1.4;
  background: var(--base-bgcolor01);
  box-shadow: 4px 4px 5px rgba(51, 51, 51, 0.1294117647);
}

ul.line_step li img {
  width: 100%;
  object-fit: cover;
}

.h3_line {
  color: #fff;
  text-align: center;
  background: var(--base-color01);
  padding: 10px 0;
  font-size: clamp(2rem, 2vw, 2.4rem);
}

.h4_line {
  margin: 0 0 5px;
  position: relative;
  padding-left: 1.4em;
}
.h4_line:after {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 0.8em;
  height: 0.8em;
  background: var(--base-color01);
  transform: rotate(45deg);
}

.list_circle {
  margin: 0 0 20px;
  padding: 0 0 10px;
  border-bottom: 2px dotted var(--base-color01);
}
.list_circle li {
  position: relative;
  padding-left: 15px;
}
.list_circle li:after {
  content: "";
  position: absolute;
  top: 0.6em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 100vh;
  background: var(--text-color);
}

.h3_line02 {
  padding: 10px 0;
  color: #fff;
  text-align: center;
  background: #00b73c;
  padding: 10px 0;
  font-size: clamp(2rem, 2vw, 2.4rem);
}