@charset "UTF-8";
/* CSS Document */
.gallery-box {
    display: flex;
    justify-content: space-around;
    padding: 50px 0;
}
.gallery-box .img-box {
  position: relative;
    display: block;
}
.gallery-box .img-box .active {
  position: absolute;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
.gallery-box .img-box:hover .active {
  opacity: 1;
    box-shadow: 0 0 40px rgba(0,0,0,.4);
}
.gallery-box.gallery-sp {
    display: none;
}
.gallery-box a:last-of-type {
    display: none;
}
.gallery .btnMore{
	text-align: center;
	margin:0 auto;
}
.gallery .btnMore a{
	font-size: 16px;
    display: inline-block;
    border: 2px solid #173c5f;
    padding: 10px 30px;
	letter-spacing: .1em;
    text-decoration: none;
    transition: .5s;
    font-weight: 400;
    margin:0 auto;
    position: relative;
    background-color: #fff;
	color:#173c5f;
	margin-bottom:70px;
}
.gallery .btnMore a:hover{
	border: 2px solid #fff;
	color:#fff;
	background-color: #173c5f;
}
.gallery .cmsList01Wrap{
	margin:70px auto;
}
.gallery .cmsList01 li{
	padding-top:0;
}
@media screen and (max-width:768px){
	.gallery .cmsList01Wrap{
		margin:40px auto;
	}
	.gallery .btnMore a{
		margin-bottom:40px;
	}
}
@media screen and (max-width:425px) {
    .gallery-nohover.gallery-box {
        display: none;
    }
    .gallery-box.gallery-sp {
        display: block;
        padding: 30px 15px;
        box-sizing: border-box;
    }
    .gallery-box.gallery-sp a {
        margin-bottom: 10px;
    }
    .gallery-box.gallery-sp a:last-of-type {
    display: none;
}
}