html {
    margin: 0;
    padding: 0;

}

body {
    font-size: 100%;
    font-family: Arial、Hiragino Sans、Hiragino Kaku Gothic ProN、Meiryo、sans-serif;
}

a {
    text-decoration: none;
}

a :hover {
    opacity: 0.7;
}

img {
    max-width: 100%;
}

li {
    list-style: none;
}

.wrapper {
    max-width: 1200px;
    padding: 0 5%;
    margin: 0 auto;

}

h2 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.btn {
    color: #2a2a2a;
    border: #2a2a2a solid 1px;
    display: inline-block;
    font-size: 0.75rem;
    padding: 14px 36px;
    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: 50px;
    position: relative;
}

header h1 {
    position: absolute;
    top: 20px;
    right: 30px;
}

/*magazine*/

#magazine {
    text-align: center;
    margin-bottom: 80px;
}

#magazine .flex-item {
    display: flex;
    justify-content: space-between;
}

#magazine .flex-item .item {
    width: 50%;
    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.5rem;
    margin-bottom: 2px;

}

/*fashion*/

#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*/

.catalog-antique {
    background-color: #f5f5f5;
    padding: 60px 0;
}


.catalog-antique h2 {
    margin-bottom: 40px;
}


.catalog-antique .flex-item {
    display: flex;
    align-items: center;
    justify-content: space-between;

}

.catalog-antique .item {
    width: 40%;
    text-align: center;
}

.catalog-antique .item img {
    width: 100%;
}

.catalog-antique .item p {
    text-align: left;
    margin-bottom: 30px;
}

.catalog-antique .item p :last-child {
    margin-bottom: 0;
}

/*footer*/

#footer {
    background-color: #333;
    font-size: 1rem;
}

#footer .flex-item {
    display: flex;
    justify-content: space-between;
    color: #fff;
    padding-bottom: 100px;
    padding-top: 100px;
}

#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;
    margin-bottom: 30px 0;
}

/*SP*/

@media screen and(max-width:896px) {


    /*magazine*/

    #magazine .flex-item {
        flex-direction: column;
    }

    #magazine .flex-item .item {
        width: 100%;
    }

    #magazine .flex-item .item:first-child{
       margin-bottom:  60px;
    }

    /*fashion*/
    #fashion {
        padding-top: 35px;
        margin-bottom: 50px;
    }

    /*catalog-antique*/

    .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*/

    #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;
    }


}