@charset 'UTF-8';

.photo-list .box{
	display: flex;
	flex-wrap: wrap;
}
.photo-list section{
    width: 310px;
    position: relative;
    margin: 0 35px 30px 0;
}
.photo-list section:nth-child(3n){
    margin-right: 0;
}
.photo-list .inner {
    display: block;
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 100%;
    color: #fff;
}
.photo-list .article-text {
    display: flex;
	justify-content: center;
	align-items: center;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(52, 55, 62, 0.6);
    width: 100%;
    height: 100%;
    padding: 30px 27px;
    opacity: 0;
    transition: opacity .3s;
}
.photo-list .inner:hover .article-text {
    opacity: 1;
}
.photo-list .article-text__inner {
    position: relative;
    width: 100%;
    padding-top: 25px;
    text-align: center;
}
.photo-list .title{
    position: absolute;
    top: calc(-1rem - 34px);
    left: 0;
    width: 100%;
    font-size: 1.6rem;
    font-family: 'Lato', sans-serif;
    font-weight: normal;
    text-align: center;
    line-height: 1.625;
    letter-spacing: 0.15em;
}
.photo-list .title span{
    display: inline-block;
    border-bottom: 2px solid #fff;
    padding-bottom: 3px;
}
.photo-list .text{
    font-size: 1.6rem;
    line-height: 1.625;
}

.page{
	margin-top: 20px;
}