@charset "utf-8";
/* CSS Document */

/*----------------------------------------------------------
 Features
---------------------------------------------------------- */

#features_list li{
  border-bottom: 1px solid #ccc;
  padding-bottom: 60px;
  margin-bottom: 60px;
}

#features_list li:last-child{
  border-bottom: none;
  padding-bottom: 0;
  margin-bottom: 0;
}

#features_list dd img{
  width: 100%;
}

/* ---- PC ---- */
@media (min-width: 769px) {
  #features_list dl::after{
    content: "."; 
    display: block; 
    height: 0; 
    font-size:0;	
    clear: both; 
    visibility:hidden;
  }

  #features_list dt{
    width: 100%;
    float: left;
    padding-right: 330px;
    margin-right: -300px;
    box-sizing: border-box;
  }

  #features_list dd{
    width: 300px;
    float: right;
  }
}

/* ---- SP ---- */
@media (max-width: 768px) {
  #features_list li{
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
  
  #features_list dd{
    width: 70%;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15px;
  }

}