@charset "UTF-8";

#section01 {
  padding-top: 30px;
}

#section01 > h4 {
  font-size: 1.7rem;
  margin-bottom: .5em;
}

#section02 .pbox.feature {
  padding: 5% 2em;
  display: grid;
  place-items: center;
}

.pbox.feature ul li {
  display: flex;
  align-items: center;
  margin-right: 1em;
  margin-bottom: .5em;
  width: fit-content;
  font-size: 1.05em;
}

.pbox.feature ul li span {
  display: inline-block;
  margin-right: 1em;
  padding: 0 1em;
  background: #f57c73;
  border-radius: 100vh;
  color: #fff;
  font-weight: 700;
  font-size: initial;
  letter-spacing: .1em;
}

.pbox.flow {
  background: #fef3f2;
}

.pbox.flow h5 {
  color: inherit;
}

.feature_list {
  justify-content: space-between;
}

.feature_list > * {
  width: 31%;
  background: #faf8e6;
  border-radius: 25px;
  padding: 3%;
}

.feature_list dt, .feature_list div dd:first-of-type {
  text-align: center;
  font-weight: 700;
}

.feature_list dt {
  padding-top: 80%;
  position: relative;
  font-size: 1.75em;
  letter-spacing: .2em;
  color: #f57c73;
}

.feature_list div dt::before {
  content: '';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(../images/feature01.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 70%;
}

.feature_list div:nth-of-type(2) dt::before {
  background-image: url(../images/feature02.png);
  background-size: 90%;
}

.feature_list div:nth-of-type(3) dt::before {
  background-image: url(../images/feature03.png);
  background-size: 100%;
}

.feature_list dd {
  font-weight: 400;
}

.feature_list div:first-of-type dd {
  margin-bottom: 1em;
}

@media (max-width: 1000px) {
  .pbox.feature ul li, .pbox.feature ul li span {
    display: block;
    margin-bottom: 1em;
  }

  .pbox.feature ul li span {
    margin-bottom: .2em;
    width: fit-content;
  }
  
  .feature_list {
    flex-direction: row;
    justify-content: center;
    height: fit-content;
    gap: 0 3%;
  }
    
  .feature_list div {
    width: 46%!important;
    padding: 10%;
    margin-bottom: 3%;
  }
  
  .feature_list dt {
    padding-top: 8em;
  }
  
  .feature_list div dt::before {
    width: 100%;
    height: 7em;
    background-size: contain!important;
    background-position: center center!important;
  }
  
  .feature_list div dd {
    margin-bottom: 1em;
  }

}

@media (max-width: 640px) {
   .feature_list div {
     width: 100%!important;
   }
   
  #section01 > h4 {
    font-size: 5.5vw;
  }
}

