@charset "UTF-8";
.r_list_box {
  width: 100%;
  margin: 0 auto 4rem;
}
.r_list_box ul {
  display: flex;
  justify-content: left;
  flex-wrap: wrap;
  margin-left: -2rem;
}
.r_list_box ul li {
  width: calc(100% / 4 - 2rem);
  margin-left: 2rem;
  box-sizing: border-box;
  margin-bottom: 2rem;
}
.r_list_box ul li a {
  color: #683D18;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  transition: .3s all ease;
  background:#fff;
  padding:.7rem;
  border-radius:.5rem;
  box-shadow: rgba(0, 0, 0, 0.5) 2px 4px 8px;
}
.r_list_box ul li a:hover {
  opacity: .7;
}


.r_list_box img{
/* object-fit:cover; */
width:100%;
height:auto; 
font-family: 'object-fit:cover;';
cursor: pointer;
transition:.3s;
margin:0 auto;
object-position: 1%; 
}




.button005 a {
  border-radius: 3px;
  position: relative;
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 0 auto;
  max-width: 220px;
  padding: 10px 25px;
  color: #FFF;
  transition: 0.3s ease-in-out;
  font-weight: 600;
  background: rgb(149,202,252);
  background: linear-gradient(270deg, rgba(149,202,252,1) 0%, rgba(107,182,255,1) 100%);
}
.button005 a:hover {
  background: rgb(117,188,255);
  background: linear-gradient(270deg, rgba(117,188,255,1) 0%, rgba(62,159,252,1) 100%);
}




@media screen and (max-width: 768px) {
  .r_list_box {
    margin: 0 auto;
  }
  .r_list_box ul {
    margin-left: -1rem;
  }
  .r_list_box ul li {
    width: calc(100% / 2 - 1rem);
    margin-left: 1rem;
	margin-bottom:2rem;
  }

  .r_list_box img{
  height:150px;
  }
}