@charset "utf-8";
/* CSS Document */


/* ---------- flow ---------- */

.flow_titlebox {
  display: flex;
  align-items: center;
	flex-direction: column;
  gap: 5px;
  margin-bottom: 60px;
}

.flow_titlebox h2 {
  color: #333333;
  font-weight: 700;
  line-height: 1.5;
  white-space: nowrap;
}

.flow_title_line {
  width: 248px;
  height: 4px;
  background-image: radial-gradient(circle, #8dc35c 2px, transparent 2px);
  background-size: 10px 4px;
  background-repeat: repeat-x;
  background-position: center;
}

.flow_boxwrap {
  display: flex;
  flex-direction: column;
  gap: 70px;
}

.flow_box {
  position: relative;
  gap: 70px;
	align-items: stretch;
	overflow: hidden;
}
.flow_box .txtbox{
	position: relative;
}
.flow_box .txtbox::before {
  content: "";
  position: absolute;
  top: 80px;
  left: 35px;
  width: 1px;
  height: calc(100% + 70px);
  border-left: 1px dashed rgba(51, 51, 51, 0.35);
}

.flow_box:last-child::before {
  display: none;
}

.flow_box .imgbox {
  width: 44%;
  flex-shrink: 0;
}

.flow_box .imgbox img {
  width: 100%;
  object-fit: cover;
  display: block;
	border-radius: 40px;
}

.flow_box .txtbox {
  position: relative;
  flex: 1;
  padding-left: 95px;
}

.step_icon {
  position: absolute;
  top: 0;
  left: 0;
  width: 70px;
  height: 70px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f7ef62;
  border-radius: 50%;
  z-index: 2;
}

.step_icon p {
  color: #07913a;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}

.step_txt {
  margin-bottom: 4px;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.step_num {
  font-size: 20px;
  letter-spacing: 0.04em;
}

.flow_box .txtbox h3 {
  margin-bottom: 24px;
  font-weight: 700;
  line-height: 1.5;
}

.flow_box .txtbox > p {
  color: #333333;
  line-height: 1.9;
}

.flow_more {
  margin-top: 35px;
  max-width: 190px;
}

.flow_more a {
  display: block;
  padding: 13px 22px;
  background: #00a651;
  border-radius: 999px;
  text-decoration: none;
}

.flow_more .flex {
  justify-content: center;
  gap: 12px;
}

.flow_more p,
.flow_more i {
  color: #ffffff;
  font-weight: 700;
}


/* ---------- IEのみ ---------- */
@media all and (-ms-high-contrast: none) {
}

/* ---------- 1280px ~ ---------- */
@media screen and (max-width: 1280px) {
}

/* ---------- 1080px ~ ---------- */
@media screen and (max-width: 1080px) {
  .flow_box {
    gap: 45px;
  }

  .flow_box .txtbox {
    padding-left: 85px;
  }

  .flow_box::before {
    left: calc(44% + 22px);
  }
}

/* ---------- 768px ~ ---------- */
@media screen and (max-width: 768px) {

  .flow_titlebox {
    display: block;
    margin-bottom: 45px;
  }

  .flow_titlebox h2 {
    margin-bottom: 18px;
    white-space: normal;
  }

  .flow_title_line {
    width: 100%;
  }

  .flow_boxwrap {
    gap: 55px;
  }

  .flow_box {
    display: block;
  }

  .flow_box .txtbox::before {
    display: none;
  }

  .flow_box .imgbox {
    width: 100%;
    margin-bottom: 24px;
  }

  .flow_box .txtbox {
    width: 100%;
    padding-left: 85px;
  }

  .step_icon {
    width: 64px;
    height: 64px;
  }

  .step_txt {
    font-size: 11px;
  }

  .step_num {
    font-size: 18px;
  }
}

/* ---------- 576px ~ ---------- */
@media screen and (max-width: 576px) {
  .flow_boxwrap {
    gap: 45px;
  }

  .flow_box .imgbox img {
    aspect-ratio: 335 / 210;
  }

  .flow_box .txtbox {
    padding-left: 0;
  }

  .step_icon {
    position: static;
    margin-bottom: 16px;
  }

  .flow_box .txtbox h3 {
    margin-bottom: 16px;
  }

  .flow_more {
    margin-top: 25px;
  }
}

/* ---------- 350px ~ ---------- */
@media screen and (max-width: 350px) {
}