@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;
}

#section02 .pbox.feature h4 {
  width: fit-content;
  padding-bottom: .3em;
  margin-bottom: 1.5em;
  font-size: 1.5em;
  text-align: center;
  font-weight: 500;
  position: relative;
}

#section02 .pbox.feature h4::before {
  content: '';
  display: inline-block;
  position: absolute;
  top: 50%;
  left: -2em;
  transform: translateY(-50%);
  margin-right: .5em;
  width: 1.5em;
  height: 1.5em;
  background: url(../images/icon_clock.svg) no-repeat;
}

.pbox.feature .cflex {
  width: 85%;
  justify-content: space-between;
}

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

.pbox.feature ul li:not(:last-of-type) {
  margin-bottom: 1.2em;
}

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

.pbox.feature ul li:not(:last-of-type) span::after {
  content: '';
  display: block;
  position: absolute;
  bottom: -1em;
  left: 50%;
  transform: translateX(-50%);
  width: 1em;
  height: .5em;
  background: #fabdb9;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
}

.pbox.feature figure {
  width: 45%;
}

.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) {  
  #section01 {
    padding-top: 0;
  }

  .pbox.feature .cflex ul {
    margin-bottom: 1em;
  }
  #section02 .pbox.feature h4 {
    margin-left: 1.5em;
  }
}

@media (max-width: 640px) {  
  #section01 > h4 {
    font-size: 5.5vw;
  }
}

