@charset "utf-8";

.bl_introList {
  position: relative;
  display: flex;
  flex-direction: column;
  row-gap: 60px;
  counter-reset: point 0;
}

.bl_introList > ._item {
  position: relative;
  flex-direction: row-reverse;
  display: flex;
  gap: 30px 6%;
}

.bl_introList > ._item ._thumb {
  position: relative;
  width: 40%;
  z-index: 5;
}
.bl_introList > ._item ._thumb img {
  display: block;
}

.bl_introList > ._item ._body {
  flex: 1;
}

.bl_introList > ._item ._ttl {
  position: relative;
  display: flex;
  flex-direction: column;
  padding-bottom: .4em;
  margin-bottom: 1em;
  font-size: 26px;
  line-height: 1.2;
  font-weight: 450;
}
.bl_introList > ._item ._ttl::before {
  content: 'POINT ' counter(point);
  counter-increment: point;
  margin-bottom: 5px;
  color: var(--main_color1);
  font-size: 1.8rem;
  font-weight: 450;
  font-family: 'Century Gothic','Trebuchet MS', 'Lucida Sans Unicode', 'Lucida Grande', 'Lucida Sans', Arial, sans-serif;
  word-break: normal;
}
.bl_introList > ._item ._ttl::after {
  content: '';
  height: 1px;
  background-color: #000;
  width: calc(120%);
  z-index: 1;
  margin-top: .4em;
}

/* lg */
@media screen and (min-width:960px) {
  .bl_introList > ._item ._thumb {
    top:20px;
  }
}

/* md */
@media not screen and (min-width:960px) {
  .bl_introList {
    row-gap: 40px;
  }
  .bl_introList > ._item {
    flex-direction: column;
  }
  .bl_introList > ._item ._thumb {
    width: 100%;
  }

  .bl_introList > ._item ._ttl {
    font-size: 22px;
    padding-top: 0;
  }
  .bl_introList > ._item ._ttl::after {
    width: 100%;
  }
}