@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;
}



/* business_menu
***************************************************************/
.business_menu{
  display: flex;
  margin-bottom: 40px;

  a{
    width: 50%;
    font-size: 18px;
    text-align: center;
    color: var(--color-white);
    background-color: #BACAC3;
    padding: 1.5em 0;
    position: relative;
  }
  a + a{
    border-left: 1px solid var(--color-green-light);
  }

  a.current{
    background-color: var(--color-green-dark);
    pointer-events: none;

    &::after{
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent;
      border-top: 19px solid var(--color-green-dark);
      border-bottom: 0;
      position: absolute;
      bottom: -19px;
      left: 50%;
      transform: translateX(-50%);
    }
  }
}



/*--------------------PC--------------------*/
@media all and (min-width:768px){
  .business_menu a:hover{
    background-color: var(--color-green-dark);

    &::after{
      content: '';
      width: 0;
      height: 0;
      border-style: solid;
      border-right: 10px solid transparent;
      border-left: 10px solid transparent;
      border-top: 19px solid var(--color-green-dark);
      border-bottom: 0;
      position: absolute;
      bottom: -19px;
      left: 50%;
      transform: translateX(-50%);
    }
  }
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .business_menu{
    margin-bottom: 30px;

    a{
      font-size: 15px;
      padding: 1em 0;
    }

    a.current{
      &::after{
        border-right: 7px solid transparent;
        border-left: 7px solid transparent;
        border-top: 13px solid var(--color-green-dark);
        bottom: -13px;
      }
    }
  }

}


/* business_head
***************************************************************/
.business_head{

  .com_txt{
    margin-top: 65px;
  }
  .business_head_img{
    margin-top: 65px;
  }
}

/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .business_head{

    .com_txt{
      margin-top: 30px;
    }
    .business_head_img{
      margin-top: 30px;
    }
  }
}

/* business_box
***************************************************************/
.business_box{
  margin-top: 35px;

  .sub_ttl{
    margin-top: 35px;
  }
  .d_flex{
    margin-top: 45px;
  }
}


.point{
  width: 218px;
  height: 56px;
  background-color: var(--color-green-dark);
  border-radius: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--color-white);
  margin: 0 auto;
  position: relative;

  &::after{
    content: '';
    width: 0;
    height: 0;
    border-style: solid;
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
    border-top: 19px solid var(--color-green-dark);
    border-bottom: 0;
    position: absolute;
    bottom: -19px;
    left: 50%;
    transform: translateX(-50%);
  }
}



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

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

}

/*--------------------PC--------------------*/
@media all and (min-width:768px){
}
/*--------------------SP--------------------*/
@media all and (max-width:767px){
  .business_box{
    margin-top: 35px;

    .sub_ttl{
      white-space: nowrap;
      margin-left: -0.1em;
      margin-top: 20px;
    }
    .d_flex{
      margin-top: 20px;
    }
  }

  .point{
    width: 152px;
    height: 39px;
    font-size: 18px;

    &::after{
      border-right: 7px solid transparent;
      border-left: 7px solid transparent;
      border-top: 13px solid var(--color-green-dark);
      bottom: -13px;
    }
  }



}





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


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