@charset "UTF-8";
/*--------------------------------------------------------------------------
   Voice
---------------------------------------------------------------------------*/
#VoiceList .ttl dt {
  max-width: 200px !important;
}
@media screen and (max-width: 960px) {
  #VoiceList .ttl dt {
    max-width: 151px !important;
  }
}

/*-------------------------
記事サムネイル
--------------------------*/
.common_items {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 1400px;
  max-width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 960px) {
  .common_items {
    padding: 30px 4% 0 4%;
  }
}
.common_items .common_item {
  width: 32%;
  position: relative;
  padding-bottom: 40px;
  box-sizing: border-box;
  margin-bottom: 2%;
  margin-right: 2%;
}
.common_items .common_item:nth-child(3n) {
  margin-right: 0;
}
.common_items .common_item:hover .common_item_pic {
  opacity: 0.8;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 640px) {
  .common_items .common_item {
    width: 49%;
    margin-bottom: 2%;
    padding-bottom: 2%;
  }
  .common_items .common_item:nth-child(3n) {
    margin-right: 2%;
  }
  .common_items .common_item:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 480px) {
  .common_items .common_item {
    width: 100%;
    margin-bottom: 20px;
    margin-right: 0 !important;
  }
}
.common_items .common_item a {
  display: block;
  width: 100%;
  height: 100%;
}
.common_items .common_item .common_item_pic {
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  opacity: 1;
  transition: all 0.3s ease-out;
}
.common_items .common_item .common_item_pic:before {
  content: "";
  display: block;
  padding-top: 60%;
  /* 高さを幅の75%に固定 */
}
.common_items .common_item .common_item_pic span {
  display: inline-block;
  width: 100%;
  height: 100%;
  padding: 0;
  overflow: hidden;
  box-sizing: border-box;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.common_items .common_item .common_item_pic img {
  width: 100%;
  height: auto;
  position: relative;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
@media screen and (max-width: 480px) {
  .common_items .common_item .common_item_pic img {
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
}
.common_items .common_item .common_item_tags {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.common_items .common_item .common_item_tags .tag {
  font-size: 90%;
  line-height: 100%;
  background-color: #000000;
  padding: 5px 10px;
  border-radius: 50px;
  box-sizing: border-box;
  margin-left: 10px;
  margin-bottom: 10px;
}
.common_items .common_item .cate {
  display: none;
}
.common_items .common_item .common_item_ttl {
  padding: 5px 10px;
  font-size: 100%;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .common_items .common_item .common_item_ttl {
    padding: 5px 10px;
  }
}
.common_items .common_item .common_item_txt {
  padding: 0 10px;
  font-size: 80%;
  font-weight: bold;
}
@media screen and (max-width: 960px) {
  .common_items .common_item .common_item_txt {
    padding: 0 10px;
  }
}
.common_items .common_item .common_item_date {
  display: none;
}
