@charset "UTF-8";

html{
    font-size: 100%;
}
body{
    margin: 0;
    font-family: "Arial", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
    font-size: 0.875rem;
    color: #2a2a2a;
}
a{
    text-decoration: none;
}
a:hover{
    opacity: 0,7;
}
img{
    max-width: 100%;
}
li{
    list-style: none;
}

.wrapper{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.sec-title{
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn{
    display: inline-block;
    padding: 14px 36px;
    color: #2a2a2a;
    border: solid 1px #2a2a2a;
    font-size: 0.750rem;
    margin-top: 30px;
}

#header{
    height: 100vh;
    background-image: url(../img/mainvisual.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    margin-bottom: 80px;
    position: relative;
}

#header .site-title{
    position: absolute;
    top: 30px;
    right: 30px;
}

#magazine{
    text-align: center;
    margin-bottom: 80px;
}
#magazine .flex-item{
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}
#magazine .flex-item .item{
    width: 49%;
    position: relative;
}
#magazine .flex-item .item .text{
    max-width: 290px;
    color: #fff;
    font-weight: bold;
    background-color: rgba(0, 0, 0, 0.5);
    padding: 15px 0;
    margin: 0 auto;
    position: absolute;
    top: 40%;
    left: 0;
    right: 0;
}
#magazine .flex-item .item .title{
    font-size: 1.25rem;
    margin-bottom: 2px;
}
#magazine .item{
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}
#magazine .item::after{
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.3);
    opacity: 0;
    transition: opacity 0.3s ease;
}
#magazine .item:hover::after{
    opacity: 1;
}

#fashion{
    height: 520px;
    background-image: url(../img/fashion.jpg);
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    text-align: center;
    padding-top: 60px;
    margin-bottom: 80px;
}

.catalog-antique{
    background-color: #f5f5f5;
    padding: 60px 0;
}
.catalog-antique .sec-title{
    margin-bottom: 40px;
}
.catalog-antique .flex-item{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.catalog-antique .item{
    width: 48%;
    text-align: center;
}
.catalog-antique .item img{
    width: 100%;
}
.catalog-antique .item p{
    margin-bottom: 30px;
    text-align: left;
}
.catalog-antique .item p:last-child{
    margin-bottom: 0;
}

#footer{
    background-color: #333;
    font-size: 0.750rem;
}
#footer .flex-item{
    display: flex;
    justify-content: space-between;
    padding-top: 100px;
    padding-bottom: 100px;
    color: #fff;
}
#footer .item{
    width: 33%;
    line-height: 2;
}
#footer .item:first-child{
    padding: 60px 0;
}
#footer .item li::before{
    content: "-";
    margin-right: 5px;
}
#footer .item .title{
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 10px;
}
#footer .copyright{
    background-color: #fff;
    text-align: center;
    padding: 30px 0;
}

@media screen and (max-width: 896px){

#magazine .flex-item{
    flex-direction: column;
}
#magazine .flex-item .item{
    width: 100%;
}
#magazine .flex-item .item:first-child{
    margin-bottom: 30px;
}

#fashion{
    padding-top: 35px;
    margin-bottom: 50px;
}

.catalog-antique{
    padding: 30px 0;
}
.catalog-antique .flex-item{
    flex-direction: column;
}
.catalog-antique .item{
    width: 100%;
}
.catalog-antique .item:first-child{
    margin-bottom: 60px;
}

#footer .flex-item{
    flex-direction: column;
    padding-top: 30px;
    padding-bottom: 30px;
}
#footer .item{
    width: 100%;
    margin-bottom: 30px;
}
#footer .item:first-child{
    text-align: center;
    padding: 0;
}
}