@charset "utf-8";
/* CSS Document */

.col2_01 {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media screen and (min-width: 768px),print {
  .col2_01 {
    flex-direction: row-reverse;
    gap: 0;
    justify-content: space-between;
  }
  .col2_01__right {
    width: 38.38%;
  }
  .col2_01__left {
    width: 57.37%;
  }
}

.box01 {
  border: 1px solid var(--color_gray01);
  padding: 20px 7px;
  max-width: 916px;
  margin: 30px auto 0;
}
.box01__textWrap {
  margin: 20px 15px 0;
}
@media screen and (min-width: 768px),print {
  .box01 {
    padding: 30px 20px;
  }
  .box01__textWrap {
    margin: 20px 75px 0;
  }
}

.col2_02 {
  display: flex;;
  gap: 20px;
  flex-direction: column;
}
@media screen and (min-width: 768px),print {
  .col2_02 {
    flex-direction: row;
    gap: 0;
    justify-content: space-between;
  }
  .col2_02__left {
    width: 57.28%;
  }
  .col2_02__right {
    width: 40.47%;
  }
}
.imgList {
  display: flex;;
  gap: 40px;
  flex-direction: column;
}
.imgList__item {
  max-width: 300px;
  margin-left: auto;
  margin-right: auto;
}
.imgList__item + .imgList__item {
  position: relative;
}
.imgList__item + .imgList__item::before {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-top: 21px solid var(--color_gray01);
  border-right: 26px solid transparent;
  border-left: 26px solid transparent;
  position: absolute;
  left: 0;
  right: 0;
  top: -30px;
  margin: auto;
}
.imgList__caption {
  font-size: 1.4rem;
  margin-top: 10px;
  margin-left: 26px;
}
@media screen and (min-width: 768px),print {
  .imgList {
    flex-direction: row;
    gap: 25px;

  }
  .imgList__caption {
    font-size: 1.2rem;
    margin-left: 14px;
  }
  .imgList__item + .imgList__item::before {
    border-left: 15px solid var(--color_gray01);
    border-top: 13px solid transparent;
    border-bottom: 13px solid transparent;
    border-right: none;
    top: 63px;
    left: -13px;
    right: auto;
  }
}
