@charset "UTF-8";
.clfl:after {
  content: ".";
  display: block;
  clear: left;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clfr:after {
  content: ".";
  display: block;
  clear: right;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clf:after, #tiles:after, a.tile:after {
  content: ".";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
  overflow: hidden;
  font-size: 0.1em;
  line-height: 0;
}

.clf, #tiles, a.tile {
  min-height: 1px;
}

* html .clf, * html #tiles, * html a.tile {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  #contents {
    margin-top: 100px;
  }
}
#contents .wrap {
  padding: 0;
  max-width: none;
  margin-bottom: -1px;
  overflow: hidden;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  #contents .wrap {
    width: 100%;
    margin-right: 0;
  }
}

footer {
  position: relative;
}

a.tile {
  position: relative;
  display: block;
  float: left;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 1.5s;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  a.tile {
    border: 0;
  }
}
a.tile .text {
  display: none;
  padding: 30px 28px 13px;
  color: #000;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  a.tile .text {
    display: block;
    background-color: #fff;
  }
}
a.tile .text > span {
  display: inline-block;
  font-size: 11px;
  letter-spacing: 0.15em;
  line-height: 1em;
}
a.tile .text > span.date {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #000;
}
a.tile .text h3 {
  font-weight: 400;
  font-size: 15px;
  line-height: 28px;
  letter-spacing: 0.07em;
  margin-top: 2px;
}
a.tile:not(.through) {
  height: 22vw;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  a.tile:not(.through) {
    width: 100%;
    height: auto;
  }
}
a.tile:not(.through) > img {
  width: auto;
  height: 100%;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  a.tile:not(.through) > img {
    width: 100%;
    height: auto;
  }
}
a.tile.through {
  width: 100%;
  border-right: 0;
}
a.tile.through > img {
  width: 100%;
  height: auto;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  a.tile[data-tatenaga] {
    background-color: #e6e6e6;
  }
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  a.tile[data-tatenaga] > img {
    display: block;
    border: 1px solid #e6e6e6;
    margin: 4vw auto;
    width: 44vw;
    height: auto;
  }
}
a.tile[data-calc=false] {
  opacity: 0;
  transition: opacity 1.5s;
}

#tiles {
  min-height: 100vh;
  transition: padding 1s;
  margin-right: -5px;
  width: calc(100% + 5px);
}
#tiles.loading {
  padding-bottom: calc(100vh - 81px);
  transition: padding 1s;
}
#tiles.resizing {
  opacity: 0;
}

#readmore {
  display: block;
  height: 240px;
  background-color: #fafafa;
  font-size: 16px;
  text-decoration: none;
  -webkit-display: flex;
  -webkit-justify-content: center;
  -webkit-align-items: center;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  #readmore {
    height: 100px;
  }
}

#info {
  position: absolute;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.9);
  padding: 22px 30px 23px;
  display: none;
  opacity: 0;
  /* transition の唯一のソース。JS 側は値を持たず is-visible の付け外しのみ。
     順序: opacity, left, top（.is-visible で duration を上書き）。
     left/top にも transition を効かせることでカーソル追従を滑らかにトレイリングさせる。
     元 Sass の easeInOutSine は CSS 無効値で ease にフォールバックしていたため ease を明示。 */
  transition: opacity 200ms ease, left 200ms ease, top 200ms ease;
}
#info.is-visible {
  opacity: 1;
  /* 表示時のみ opacity を 150ms に（非表示=フェードアウトは上の 200ms）。位置は 200ms 据え置き */
  transition-duration: 150ms, 200ms, 200ms;
}
@media only screen and (max-width: 1039px), (max-device-width: 1039px) {
  #info {
    display: none;
  }
}
#info > span {
  display: inline-block;
  font-size: 12px;
  line-height: 12px;
  height: 12px;
  letter-spacing: 0.15em;
  top: -4px;
  position: relative;
}
#info > span.category {
  color: #ccc;
}
#info > span.date {
  margin-left: 1em;
  padding-left: 1em;
  border-left: 1px solid #808080;
  color: #808080;
}
#info h3 {
  font-size: 16px;
  line-height: 26px;
  letter-spacing: 0.075em;
  font-weight: 400;
  color: #fff;
}
