@charset "utf-8";
/*------------------------------------------------------------
	WORKSスタイル
------------------------------------------------------------*/
.worksBox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.worksBox .item {
  width: calc(100% / 2);
}
@media all and (min-width: 897px) {
  .worksBox .item {
    width: calc(100% / 3);
  }
}
.worksBox .item figure {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 100%;
  background-color: #EFEFEF;
}
.worksBox .item figure img {
  width: 100%;
  height: auto;
}
.worksBox .item figure figcaption {
  position: absolute;
  bottom: 0;
  background-color: #3A582Cc0;
  font-size: 0.67em;
  color: #fff;
  height: 50px;
  width: 100%;
  line-height: 50px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding: 0 20px;
}
