@charset "utf-8";

/*
トップコンテンツレイアウト
----------------------------------------------- */
.item .tile {
  position: relative;
}
.item .tile::before {
  content: '';
  background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, .8));
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.6), rgba(255, 255, 255, .8));
  width: 100%;
  height: 50%;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 2;
  -webkit-transition-property: top, opacity;
          transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
}

.item .tile .details {
  padding: 20px;
  position: absolute;
  overflow: hidden;
  bottom: 0;
  left: 0;
  z-index: 3;
}
.item .tile .details span {
  display: block;
  position: relative;
  overflow: hidden;
  top: 100px;
  -webkit-transition-property: top, opacity;
          transition-property: top, opacity;
  -webkit-transition-duration: 0.3s;
          transition-duration: 0.3s;
  -webkit-transition-delay: 0s;
          transition-delay: 0s;
}
.item .tile .details .title {
  color: #000;
  line-height: 1;
  font-size: 14px;
  font-size: .875rem;
}
.item .tile .details .info {
  color: #000;
  line-height: 1.2;
  margin-top: 5px;
  font-size: 12px;
  font-size: .75rem;
}
.item .tile:hover::before,
.item .tile:hover span {
  opacity: 1;
}
.item .tile:hover::before {
  top: 50%;
}
.item .tile:hover span {
  top: 0;
}
.item .tile:hover .title {
  -webkit-transition-delay: 0.15s;
          transition-delay: 0.15s;
}
.item .tile:hover .info {
  -webkit-transition-delay: 0.25s;
          transition-delay: 0.25s;
}


.item {
  padding: 0px;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}

.item img {
  width: 100%;
  object-fit: cover;
}

.item a {
  display: block;
  overflow: hidden;
}
.item a img {
  width: 100%;
  max-width: 500px;
  -webkit-transition: .3s ease-out;
  -moz-transition: .3s ease-out;
  transition: .3s ease-out;
  opacity: 0.7;
  filter: alpha(opacity=70);
  -ms-filter: "alpha( opacity=70 )";
}
.item a:hover img {
  -webkit-transform: scale(1.1);
-moz-transform: scale(1.1);
-o-transform: scale(1.1);
-ms-transform: scale(1.1);
transform: scale(1.1);
opacity: 1.0;
  filter: alpha(opacity=100);
  -ms-filter: "alpha( opacity=100 )";
}

.container {
  margin: 0 auto;
  padding: 50px 15px;
  width: calc(100% - 30px);
  background-color: #f8f8f8;
  column-count: 3;
  column-gap: 0px;
  max-width: 1024px;
}

@media (max-width: 960px) {
  .container {
    padding: 15px;
    padding-top: 50px;
    width: calc(100% - 30px);
    column-count: 2;
  }
}

@media (max-width: 490px) {
  .container {
    padding: 15px;
    padding-top: 50px;
    width: calc(100% - 30px);
    column-count: 1;
  }
}