/*------------------------------------
  pie chart
------------------------------------*/
@media screen and (min-width: 340px) {
  .pie-chart-wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
 
.box {
  position: relative;
  min-width: 200px;
  width: 20%;
  height: 300px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width:1024px) {
  .box {
    width: 100%;
  }
}
@media screen and (min-width: 1025px) {
  .box + .box {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1024px) {
  .box + .box {
    margin-top: 20px;
  }
}
.box .percent {
  position: relative;
  width: 150px;
  height: 150px;
}
.box .percent svg {
  position: relative;
  width: 150px;
  height: 150px;
  -webkit-transform: rotate(-90deg);
          transform: rotate(-90deg);
}
.box .percent svg circle {
  position: relative;
  fill: none;
  stroke-width: 10;
  stroke: #f3f3f3;
  stroke-dasharray: 440;
  stroke-dashoffset: 0;
  stroke-linecap: round;
}
.box .percent .number {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #111;
}
#main h4.title {
  font-size: 50px;
  margin-bottom: 0px;
}
#main h4.title span {
  font-size: 22px;
}
.box .text {
  padding: 10px 0 0;
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height:140%;
}
.box .percent .line {
  -webkit-animation: circleAnim 1s forwards;
          animation: circleAnim 1s forwards;
}
.box.c01 .percent .line {
  stroke-dashoffset: 50;
  stroke: #009F93;
}
.box.c02 .percent .line {
  stroke-dashoffset: 260;
  stroke: #F2E380;
}
.box.c03 .percent .line {
  stroke-dashoffset: 190;
  stroke: #009F93;
}
.box.c04 .percent .line {
  stroke-dashoffset: 50;
  stroke: #F2E380;
}
.box.c05 .percent .line {
  stroke-dashoffset: 0;
  stroke: #009F93;
}
@-webkit-keyframes circleAnim {
  0% {
    stroke-dasharray: 0 440;
  }
  99.9%, to {
    stroke-dasharray: 440 440;
  }
}
 
@keyframes circleAnim {
  0% {
    stroke-dasharray: 0 440;
  }
  99.9%, to {
    stroke-dasharray: 440 440;
  }
}
 
 @media screen and (max-width:1024px){
	.box {
		min-width:auto;
		width: 20%;
		height:auto;
		margin-bottom:30px;
	}
 }
 @media screen and (max-width:820px){
	.pie-chart-wrap {
		zoom:80%;
	}
 }
 @media screen and (max-width:640px){
	.pie-chart-wrap {
		zoom:70%;
	}
}
@media screen and (max-width:540px){
	.pie-chart-wrap {
		zoom:60%;
	}
	.box .text {
		font-size: 2.4rem;
	}
}
@media screen and (max-width:428px){
	.pie-chart-wrap {
		zoom:40%;
	}
	.box .text {
		font-size: 3.0rem;
	}
}