.wrapper{
  width: 956px;
  margin: 0 auto;
  padding: 40px 0;
}
h1{
  position: relative;
  width: 100%;
  padding-bottom: 40px;
  font-size: 32px;
  color: #0E2B04;
  font-weight: bold;
  text-align: center;
  margin-bottom: 24px;
}
h1::after{
  content: "";
  position: absolute;
  bottom: 0;
  left:  calc(50% - 50px);
  width: 100px;
  height: 3px;
  border-radius: 1.5px;
  background-color: var(--main-color);
}
h1 .english{
  font-size: 16px;
  color: var(--main-color);
  position: relative;
  top: -16px;
}
.category_box{
  position: relative;
  margin-top: 40px;
}
.category_list{
  display: flex;
  flex-wrap: wrap;
}
.category_list a{
  display: block;
  width: 32%;
  margin-right: 1.3%;
  margin-bottom: 40px;
  padding: 16px;
  box-sizing: border-box;
  border-radius: 8px;
  box-shadow: 0 3px 16px rgb(0 0 0 / 16%);
}
.category_list a:nth-of-type(3n){
  margin-right: 0;
}
.category_list a img{
  border-radius: 8px;
  width: 100%;
  height: auto;
  margin-bottom: 16px;
}
.card__inner{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 24px;
  font-weight: bold;
}
.card__category{
  font-size: 14px;
  color: var(--main-color);
}
.card__time{
  font-size: 12px;
  color: #9F9F9F
}
.card__title{
  font-size: 16px;
  font-weight: bold;
  text-align: left;
  margin: 0;
}
@media screen and (max-width: 768px){
.wrapper{
    width: 100%;
  }
  h1{
    padding-bottom: 24px;
    font-size: 24px;
    margin-bottom: 32px;
  }
  h1::after{
    width: 80px;
    left: calc(50% - 40px);
  }
  h1 .english{
    font-size: 12px;
  }
  .category_box{
    padding: 16px;
    margin-top: 0;
  }
  .category_list{
    flex-wrap: nowrap;
  }
  .category_list a{
    margin-right: 0;
    width: 100%;
  }
}
