@charset "UTF-8";

:root {
  --color-green-dark: #006d3c;
  --color-green-mid: #008a4a;
  --color-green-light: #d8efd8;
  --color-green-pale: #e8f5e8;
  --color-text: #1a1a1a;
  --color-text-sub: #333;
  --color-white: #fff;
  --inner-max: 1440px;
  --inner-pad: 20px;
  --header-h-pc: 100px;
  --header-h-sp: 76px;
  --radius-pill: 999px;
  --radius-box: 12px;
}


/* data_wrap
***************************************************************/

.data_box{
  width: 47.8%;
  max-height: 460px;
  background-color: var(--color-white);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3vw 0 3.4vw;

  > p{
    font-size: 28px;
    font-weight: 700;
    color: var(--color-green-dark);
  }

  .box_img{
    width: 100%;
    margin-top: 20px;
  }
}


.number_txt{
  font-size: 16px;
  text-align: right;
  margin-top: 40px;
  margin-left: auto;
}


/*--------------------PC--------------------*/
@media all and (min-width:1025px){

}

@media all and (max-width:1024px){


}


/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .data_wrap {
    .inner{
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
    }
  }

  .data_box:nth-child(n + 3){
    margin-top: 4.7vw;
  }

}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .data_box{
    width: 100%;
    max-width: 550px;
    padding: 4vw 0 4.4vw;
    margin-left: auto;
    margin-right: auto;

    > p{
      font-size: 20px;
    }

    .box_img{
      width: 90%;
      margin-top: 15px;
    }
  }
  .data_box + .data_box{
    margin-top: 20px;
  }

  .number_txt{
    font-size: 14px;
    margin-top: 20px;
  }

}




/* aaa
***************************************************************/


/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
}