@charset "UTF-8";

/* ギャラリー
/*--------------------------------------------------------*/
.gallery div.photo{
}
.gallery div.photo > a {
  display: block;
  height: 100%;
  overflow: hidden;
}
.gallery img{
  transition-property: all;
  transition: 0.7s ease;
    width: 100%;
    height: auto;
}

.gallery img:hover {
  -webkit-transform: scale(1.2);
  -moz-transform: scale(1.2);
  -o-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
}
.gallery .col-sm-3,.gallery .col-sm-2{
  margin-bottom:10px;
}
.gallery .col-xs-4 {
    margin-bottom: 10px !important;
}
.gallery #more {
    text-align: center;
}
.gallery #more > a {
  display: inline-block;
  padding: .5em 2em;
  color:white;
  text-shadow: 1px 1px 3px #000;
  font-size: 120%;
  text-decoration: none;
}
.gallery #more > a > i {
    margin-right: .5em;
    color: #996600;
}
.gallery #more > a:hover {
    color: #996600;
}
@media (min-width:768px) {
    .gallery #more {
        margin-top: 20px;
    }
}
