.section__feature-block{
  width: 100%;
}
.section__feature-list{
  display: flex;
  gap: 26.49px 1.55%;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}
.section__feature-list-item{
  width: 32.29%;
  background-color: #F0F4FF;
  padding: 24px 28px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.section__feature-list-item-tag{
  display: inline-block;
  width: 100%;
  min-height: 54px;
  border-radius: 30px;
  background-color: #4B76D2;
  color: #FFFFFF;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 33.6px;
  text-align: center;
  word-break: auto-phrase;
  padding: 10px 0;
}
.section__feature-list-item-desc{
  color: #333333;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.6;
  text-align: center;
  word-break: auto-phrase;
}
.section__feature-list-item:nth-child(1) > .section__feature-list-item-desc{
  display: inline-block;
  min-height: 3.2em;
}
.section__feature-list-item-image-wrap{
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.section__feature-list-item-image-wrap > div,
.section__feature-list-item-image-wrap img,
.section__feature-list-item-image-wrap svg {
  min-width: 0;
  max-width: 100%;
  height: auto;
  flex: 1 1 auto;
}
.section__feature-list-item-svg{
  position: relative;
}
.section__feature-list-item-png{
  width: 115px;
  height: auto;
  object-fit: contain;
}
.section__feature-list-item-date{
  color: #333333;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 25.6px;
  text-align: center;
}
.section__feature-list-item-number{
  min-width: 120px;
  color: #4B76D2;
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-text-stroke: 3px #F0F4FF;
  text-stroke: 3px #F0F4FF;
  paint-order: stroke;
}
.section__feature-list-item-number::after{
  content: "%";
  position: absolute;
  bottom: 3px;
  right: 3px;
  color: #4B76D2;
  font-size: 1.829rem;
  font-weight: 700;
  line-height: 23.41px;
}
.section__feature-list-item-time {
  color: #4B76D2;
  font-size: 6rem;
  font-weight: 700;
  line-height: 64px;
  text-align: center;
  transition: all 0.3s ease;
  min-width: 128px;
}
.section__feature-list-item-img-deco{
  width: clamp(80px, 47%, 121px);
}
.section__feature-list-item-hour{
  color: #4B76D2;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 0.97;
  text-align: center;
}
/*ドーナツ*/
svg{
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  transform: rotate(-90deg);
}
svg circle{
  stroke: #CCCCCC;
  stroke-width: 23;
  fill: none;
}
circle.base {
  stroke-dasharray: 373.66;
  stroke-dashoffset: 0;
}
circle.line {
  stroke: #4B76D2;
  stroke-dasharray: 373.66;
}
.line.circle-no1 {
  stroke-dashoffset: 61.28;
  animation: circleAnim01 1s forwards;
}
@keyframes circleAnim01 {
  0% {
    stroke-dasharray: 61.28 373.66;
  }
  99.9%,
  to {
    stroke-dasharray: 373.66 373.66;
  }
}
.line.circle-no2 {
  stroke-dashoffset: 134.51;
  animation: circleAnim02 1s forwards;
}
@keyframes circleAnim02 {
  0% {
  stroke-dasharray: 134.51 373.66;
  }
  99.9%,
  to {
  stroke-dasharray: 373.66 373.66;
  }
}
.line.circle-no4 {
  stroke-dashoffset: 13.49;
  animation: circleAnim04 1s forwards;
}
@keyframes circleAnim04 {
  0% {
  stroke-dasharray: 13.49 373.66;
  }
  99.9%,
  to {
  stroke-dasharray: 373.66 373.66;
  }
}
.line.circle-no5 {
  stroke-dashoffset: 10.84;
  animation: circleAnim04 1s forwards;
}
@keyframes circleAnim04 {
  0% {
  stroke-dasharray: 10.84 373.66;
  }
  99.9%,
  to {
  stroke-dasharray: 373.66 373.66;
  }
}
.line.circle-no6 {
  stroke-dashoffset: 0;
  animation: circleAnim04 1s forwards;
}
@keyframes circleAnim04 {
  0% {
  stroke-dasharray: 0 374.66;
  }
  99.9%,
  to {
  stroke-dasharray: 374.66 374.66;
  }
}

@media screen and (max-width: 767px){
  .section__feature-list{
    flex-direction: column;
    gap: 15px;
  }
  .section__feature-list-item{
    width: 100%;
  }
  .section__feature-list-item-image-wrap{
    padding: 0 16px;
  }
  .section__feature-list-item-number{
    min-width: 120px;
  }
  .section__feature-list-item-image-wrap img{
    flex-basis: 115px;
  }
  .section__feature-list-item-time{
    min-width: 135px;
  }
}

/*アニメーション*/
.is-anim{
  opacity: 0;
  transform: translate(0px, 50px);
  transition: all .3s linear;
}
/* アニメーション後のスタイル */
.is-anim.fadeIn{
  opacity: 1;
  transform: translate(0px, 0px);
}
 
@media screen and (max-width: 767px) {
  .is-anim{
    opacity: 0;
    transform: translate(0px, 50px);
    transition: all .3s linear;
  }
  .is-anim.fadeIn{
    opacity: 1;
    transform: translate(0px, 0px);
  }
}

/*ユーティリティ*/
.u-mt--8{
  margin-top: 8px;
}
.u-mt--16{
  margin-top: 16px;
}
.u-ml--16{
  margin-left: 16px;
}