/* CSS Document */

/**********************************************/

/**
 * ----------------------------------------
 * animation scale-up-center
 * ----------------------------------------
 */
@-webkit-keyframes scale-up-center {
  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  3% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  5% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
 8% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
@keyframes scale-up-center {

  0% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  3% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  5% {
    -webkit-transform: scale(1.2);
            transform: scale(1.2);
  }
  8% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
  100% {
    -webkit-transform: scale(0.75);
            transform: scale(0.75);
  }
}
    
.scale-up-center {
 -webkit-animation: scale-up-center 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) 3s infinite both;
         animation: scale-up-center 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) 3s infinite both;
}
    
.scale-up-center.delay {
 -webkit-animation: scale-up-center 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) 3.5s infinite both;
         animation: scale-up-center 3s cubic-bezier(0.390, 0.575, 0.565, 1.000) 3.5s infinite both;
}
/**************/

/****button****/
    .contentset .content{
        background-color: #00d1d2;
        font-size: 30px;
        font-weight: bold;
        padding: 35px;
        padding-bottom: 20px;
        cursor: pointer;
        color: #34303d;
        text-align: center;
    }
    .contentset .content p{
        padding-bottom: 20px;
        margin: 0;
    }
    .contentset .content img{
        transition: all 0.5s ease;
        transform: rotate(0);   
    }
    .contentset.on .content img{
        transform: rotate(180deg);  
    }
    .contentset .content_expend{
        display: none;
        background-color: #ffffff;
        text-align: left;
    } 
/*******************/
    
/****FAQ****/
    .faqset{
        cursor: pointer;
  padding-bottom:30px;
    }
 .faqset:last-child{
     padding-bottom:0;
 }
    .faq{
        font-weight: bold;
        margin-left: 25px;
    }
    .faq_expend{
        display: none;
        padding-top: 5px;
        margin-left: 25px;
    }

.faqset:before{
    content: "+";
    font-weight: bold;
    position: absolute;
}
.faqset.on:before{
    content: "-";
    font-weight: bold;
    position: absolute;
}
/***********/


@media screen and (max-width: 1024px) {
 .contentset .content {
  font-size: 22px;
  padding: 25px 25px;
  padding-bottom: 5px;
 }
 .contentset .content img{
  width:40px;
 }
 .contentset .content p{
  padding-bottom: 10px;
 }
}

/***********/
.circle-chart_circle {
  animation: circle-chart-fill 2s reverse;
  transform: rotate(-90deg);
  transform-origin: center;
}
.circle-chart{
  overflow: inherit;
  padding: 10px 0;
}
.chart{
  position: relative;
  margin: 30px 0 50px;
}
.chart span{
  position: absolute;
  top: -30px;
  font-size: 70px;
 font-weight: 700;
}
.chart .gift {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}

@keyframes circle-chart-fill {
  to {
    stroke-dasharray: 0 100;
  }
}

@media screen and (max-width: 1024px) {
 .circle-chart{
  width: 250px;
  height:250px;
 }
 .chart img {
  width: 135px;
 }
 .chart span{
  top: -25px;
  font-size: 50px;
 }
 .chart{
    margin: 10px 0 30px;
 }
 svg circle{
  stroke-width: 4;
 }
}
@media screen and (max-width: 480px) {
 .chart span{
  top: -5px;
    right: 10px;
  font-size: 35px;
 }
 .chart{
    margin: 10px 0 30px -20px
 }
}