@charset "utf-8";
/*===========================
add
===========================*/
:root {
  --basic-color: #41b879;
}





/*===========================
box01
===========================*/
.box01{
  display:flex;
  align-items: center;
  margin-bottom: 3em;
}

.box01:last-child{
  margin-bottom: 0;
}

.box01 .left{
  width:48%;
  margin-right: 4%;
}

.box01.f-row-reverse .left{
  margin-left: 4%;
  margin-right: 0;
}


.box01 .title{
  font-size: 2em;
  color: var(--basic-color);
  margin-bottom: 1em;
  padding-left: 1em;
  text-indent: -1em;
}

.box01 .ph01{
  width:48%;
}

@media (max-width:768px){
  .box01 .title{
    font-size: 1.5em;
    margin-bottom: 0.5em;
    line-height: 140%;
  }
}

@media (max-width:600px){

  .box01{
    flex-direction:column;
  }

  .box01 .left{
    display:contents;
  }

  .box01 .title{
    order:1;
    text-align: center;
    line-height: 150%;
    padding-left: 0;
    text-indent: 0;
  }

  .box01 .ph01{
    order:2;
    width: 100%;
    margin-bottom: 0.6em;
  }

  .box01 .text{
    order:3;
  }
}



/*===========================
font
===========================*/
.fw-b{font-weight: bold;}