/* LESS Document */
/*+++++++++++++++++++++++++++++++++++++++++++
	flow
+++++++++++++++++++++++++++++++++++++++++++ */
#flow .stepItem {
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 35px;
  min-height: 210px;
  margin: 0 0 75px;
  padding: 30px 38px;
  border-radius: 10px;
  border: #CCC 1px solid;
  position: relative;
  background: #FFF;
}
@media screen and (max-width: 767px) {
  #flow .stepItem {
    flex-wrap: wrap;
    gap: 20px;
    padding: 15px 20px;
  }
}
#flow .stepItem::after {
  content: '\f0d7';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 7rem;
  text-align: center;
  line-height: 1;
  color: #1A7108;
  position: absolute;
  bottom: -70px;
  left: 0;
  right: 0;
}
#flow .stepItem .stepNum {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  color: #CDD639;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #flow .stepItem .stepNum {
    font-size: 5.6vw;
  }
}
#flow .stepItem .stepNum strong {
  display: block;
  color: #1A7108;
  font-size: 10rem;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  #flow .stepItem .stepNum strong {
    font-size: 20vw;
  }
}
#flow .stepItem section {
  flex: 1;
}
@media screen and (max-width: 767px) {
  #flow .stepItem section {
    order: 1;
    flex-basis: 100%;
  }
}
#flow .stepItem section h3 {
  margin: 0 0 12px;
  padding: 0 0 3px 20px;
  font-size: 3.2rem;
  line-height: 1.1;
  position: relative;
}
@media screen and (max-width: 767px) {
  #flow .stepItem section h3 {
    font-size: 6.4vw;
  }
}
#flow .stepItem section h3::before {
  content: '';
  display: block;
  width: 8px;
  height: 100%;
  background: #1A7108;
  border-radius: 4px;
  position: absolute;
  top: 0;
  left: 0;
}
#flow .stepItem section p {
  font-weight: 400;
}
#flow .stepItem figure {
  align-self: center;
}
@media screen and (max-width: 767px) {
  #flow .stepItem figure {
    max-width: 25vw;
  }
}
#flow .stepLast {
  display: block;
  max-width: 600px;
  margin: 95px auto 0;
  padding: 22px 0;
  background: #1A7108;
  color: #FFF;
  border-radius: 10px;
  font-size: 2.4rem;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #flow .stepLast {
    font-size: 4.8vw;
  }
}
/*+++++++++++++++++++++++++++++++++++++++++++
	case
+++++++++++++++++++++++++++++++++++++++++++ */
#case {
  padding-bottom: 78px;
  margin-bottom: 0;
  position: relative;
}
#case::before,
#case::after {
  content: '';
  display: block;
  width: 520px;
  height: 520px;
  background: url(../img/bg_case.webp) no-repeat;
  position: absolute;
  z-index: -1;
}
#case::before {
  left: -200px;
  bottom: -80px;
}
#case::after {
  right: -355px;
  bottom: 260px;
}
#case .columnBox {
  margin: 48px 0 0;
}
#case .columnBox .columnItem {
  background: rgba(255, 255, 255, 0.92);
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 767px) {
  #case .columnBox .columnItem {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    flex-wrap: nowrap;
    gap: 0;
    flex-direction: column;
    padding: 20px 10px;
    margin-bottom: 15px;
  }
}
#case .columnBox .columnItem figure {
  margin: 0 0 10px;
}
#case .columnBox .columnItem figure img {
  width: 100%;
  height: 272px;
  object-fit: cover;
  object-position: center center;
}
@media screen and (max-width: 767px) {
  #case .columnBox .columnItem figure img {
    height: 50vw;
  }
}
#case .columnBox .columnItem h3 {
  margin: 0 0 8px;
  font-size: 2.4rem;
}
@media screen and (max-width: 767px) {
  #case .columnBox .columnItem h3 {
    font-size: 4.8vw;
    order: -1;
  }
}
#case .columnBox .columnItem h3 strong {
  color: #4C9C19;
}
#case .columnBox .columnItem .name {
  font-size: 1.4rem;
  color: #4C9C19;
}
@media screen and (max-width: 767px) {
  #case .columnBox .columnItem .name {
    font-size: 2.8vw;
  }
}
