@charset "UTF-8";

/* CSS Document */


/*-----------
function_list
-----------*/

#function_list.contents_box {
  padding: 50px 0;
  margin-top: 70px;
}

#function_list h2 {
  font-size: 22px;
  padding-left: 9px;
  border-left: 4px solid #000;
  line-height: 1.1;
  font-weight: bold;
  margin-bottom: 20px;
  margin: 0 0 30px;
  border-bottom: none;
}

.function_list_group {
  margin-bottom: 60px;
}

.function_list_group > ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 45px;
}

.function_list_group > ul > li {
  display: flex;
  column-gap: 20px;
  width: 510px;
}

.function_list_group > ul > li > h3 {
  width: 77px;
  height: 77px;
  display: flex;
  flex-direction: column;
  background: #008c95;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  border-radius: 5px;
  color: #fff;
  line-height: 1.3;
  justify-content: center;
  align-items: center;
}

.function_list_group > ul > li > h3 > span {
  letter-spacing: -1px;
  transform: scale(0.9, 1);
}

.function_txt {
  flex: 1;
}

.function_img {
  width: 180px;
}

.function_img.img_s {
  width: 70px;
}

.function_img img {
  width: 100%;
}

.img_side {
  display: flex;
  column-gap: 20px;
}

.img_side .left {
  flex: 1;
}

.img_side .right {
  width: 180px;
}

.img_side .right.sml {
  width: 70px;
}

.img_side .right img {
  width: 100%;
}

.function_txt .explanation {
  font-size: 12px;
  margin-top: 15px;
}


/*
SP
---------------------------------------------------------------------*/

@media only screen and ( max-width: 768px) {

  #function_list.contents_box {
    padding: 9% 0 13%;
    margin-top: 11%;
  }

  #function_list {
    margin-top: 11%;
  }

  #function_list h2 {
    font-size: calc(100vw / ( 375 / 18 ));
    margin-bottom: 5%;
  }

  .function_list_group {
    margin-bottom: 0;
  }

  .function_list_group > ul {
    display: block;
  }

  .function_list_group > ul > li {
    overflow: hidden;
    width: 100%;
    margin-bottom: 12%;
    display: block;
  }

  .function_list_group > ul > li > h3 {
    font-size: calc(100vw / ( 375 / 12 ));
    float: left;
  }

  .function_list_group > ul > li > h3 > span {
    letter-spacing: 0;
    transform: none;
  }

  .function_txt {
    font-size: calc(100vw / ( 375 / 14 ));
    padding-left: 100px;
  }

  .function_img {
    width: 100%;
    padding-left: 100px;
    box-sizing: border-box;
    margin-top: 5%;
  }

  .function_img.img_s {
    width: 100%;
  }

  .function_img.img_s img {
    width: 40%;
  }

  .img_side {
    display: block;
  }
  
  .img_side .right {
    width: 100%;
    margin-top: 5%;
  }
  
  .img_side .right.sml {
    width: 40%;
  }
  
  .img_side .right img {
    width: 100%;
  }
  
  .function_txt .explanation {
    font-size: 12px;
    margin-top: 15px;
  }

}