@charset "utf-8";

.card {
  float: left;
  padding: 0 0.7rem;
  width: 300px;
  margin-bottom: 35px;
}
.card .c-wrapper {
  background-color: #fff;
  min-height: 450px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 9px 19px rgba(0, 0, 0, 0.3), 0 8px 6px rgba(0, 0, 0, 0.2);
}
.card .c-wrapper:hover .data {
  transform: translateY(0);
}
.card .data {
  position: absolute;
  bottom: 0;
  width: 100%;
  transform: translateY(calc(70px + 1em));
  transition: transform 0.3s;
}
.card .data .content {
  padding: 1em;
  position: relative;
  z-index: 1;
}
.card .author {
  font-size: 12px;
}
.card .title {
  margin-top: 10px;
}
.card .text {
  height: 70px;
  margin: 0;
}
.tw-pc .date {
  position: absolute;
  top: 0;
  left: 0;
  background-color: #4f96f6;
  color: #fff;
  padding: 0.8em;
}
.tw-pc .date span {
  display: block;
  text-align: center;
}
.tw-pc .date .day {
  font-weight: 700;
  font-size: 24px;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.18);
}
.tw-pc .date .month {
  text-transform: uppercase;
}
.tw-pc .date .month,
.tw-pc .date .year {
  font-size: 12px;
}
.tw-pc .content {
  background-color: #fff;
  box-shadow: 0 5px 30px 10px rgba(0, 0, 0, 0.3);
}
.tw-pc .title a {
  color: gray;
}
.card_href {
  text-decoration:none!important;
  color: #4f96f6!important;
}
.card_maintitle {
  font-size: 1.4rem;
  font-weight: bold;
  text-decoration:none;
}

@media screen and (max-width: 479px) {
  .card {
    float: none;
    margin: 0 auto;
    margin-bottom: 35px;
  }
}
