@charset "utf-8";
/* column css */
#column_top .column_list_wrap {
  margin-top: 60px;
  justify-content: flex-start;
  gap: 60px 40px;
}
#column_top .column_list_wrap .post_set {
  width: calc((100% - 40px*3)/4);
  display: flex;
  flex-direction: column;
}
#column_top .column_list_wrap .post_set .eyecatch {
  width: 100%;
  text-align: center;
  aspect-ratio: 4 / 5;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
#column_top .column_list_wrap .post_set .eyecatch img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
#column_top .column_list_wrap .post_set p {
  width: 100%;
  margin-top: 25px;
  font-size: 16px;
  line-height: 2em;
  flex: 1;
}
#column_top .column_list_wrap .post_set a.btn {
  display: flex;
  width: 100%;
  height: 60px;
  justify-content: center;
  align-items: center;
  border: 10px;
  color: #fff;
  margin-top: 25px;
  font-size: 16px;
  line-height: 2em;
  position: relative;
}
.pager {
  margin: 100px 0 0;
}



/* ========================================================================================================
   767px以下
   ========================================================================================================*/
@media screen and (max-width: 767px) {
  .pager {
    margin: 70px 0 0;
  }
  #column_top .column_list_wrap {
    margin-top: 40px;
    gap: 40px 20px;
  }
  #column_top .column_list_wrap .post_set {
    width: calc((100% - 20px) / 2);
  }
  #column_top .column_list_wrap .post_set p {
    margin-top: 15px;
    font-size: 14px;
    line-height: 1.8em;
  }
  #column_top .column_list_wrap .post_set a.btn {
    height: 50px;
    border: 6px;
    margin-top: 15px;
    font-size: 14px;
    line-height: 2em;
  }
    
}
/* ========================================================================================================
   499px以下
   ========================================================================================================*/
@media screen and (max-width: 499px) {

}