@charset "utf-8";

.month_list{
	padding: 20px;
}

.card_list {
  display: flex;
  align-items: stretch;
    flex-wrap: wrap;
    justify-content: space-around;
    width: 100%;
    margin: 0 auto;
  box-sizing: border-box;
}

/*--------------------------------------
  カード型_01
--------------------------------------*/
.card_wrap1 {
  margin: 1rem auto;
  width: 22%;
  
}
@media (width <= 500px) {
  .card_wrap1 {
    /* （全体の幅 - gapでつけた余白の合計）をカラム数で割る */
  width: 100%;
  }
}
.card_wrap1:hover {
  transform: translateY(-3px);
  box-shadow: 0 7px 14px rgba(50,50,93,.1), 0 3px 6px rgba(0,0,0,.08);
  transition: all .5s;
}

.card_01 {
  background-color: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, .16);
  color: #212121;
  text-decoration: none;
  height: 100%;
}

.card__header_01 {
  display: flex;
  flex-wrap: wrap;
}

.card__title_01 {
  padding: 1rem 1.5rem 0;
  font-size: 1.6rem;
  order: 1;
  margin-bottom: 0.6rem;
  font-weight: bold;
  text-decoration: none;
}

.card__thumbnail_01 {
  margin: 0;
  order: 0;
}
.card__thumbnail_01 img{
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}
.card__image_01 {
  width: 100%;
}

.card__body_01 {
  padding: 0 1.5rem;
}

.card__text_01 {
  font-size: .8rem;
  text-align:center;
  text-decoration: none;
	padding-bottom: 0;
}

.card__text2_01 {
  font-size: .8rem;
  margin-top: 0;
  margin-bottom: 2rem;
}

.card__text_01 + .card__text_01 {
  margin-top: .5rem;
}

.card__footer_01 {
  padding: 1rem;
  border-top: 1px solid #ddd;
}

.button_01 {
  display: inline-block;
  text-decoration: none;
  transition: background-color .3s ease-in-out;
  text-align: center;
}

.button_01 a {
  text-decoration: none;
}

.button_01.-compact {
  padding: .5rem 1rem;
  border-radius: .25rem;
  background-color: #4f96f6;
  color: #fff;
  font-weight: bold;
	text-decoration: none;
}

.button_01.-compact:hover,
.button_01.-compact:focus {
  background-color: #6bb6ff;
}
.category_list {
	margin-top: 10px;
	margin-bottom: 10px;
}
.category_list .category_name{
    background: #eee;
    display: inline-block;
    margin: 0 6px 6px 0;
    border: solid 1px #e6e2d4;
    border-radius: 2px;
}
.category_list .category_name a {
    display: block;
    padding: 0 10px;
    color: #000;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    text-decoration: none !important;
}

.tag_list {
	margin-top: 10px;
}
.tag_list .tag_name{
    background: #fff;
    display: inline-block;
    margin: 0 6px 6px 0;
    border: solid 1px #e6e2d4;
    border-radius: 2px;
}
.tag_list .tag_name a {
    display: block;
    padding: 0 10px;
    color: #797258;
    font-size: 12px;
    height: 24px;
    line-height: 24px;
    text-decoration: none !important;
}