@charset "UTF-8";

/*売りたい人ページ*/
.sell-flow{
    display: flex;
    justify-content: space-around;
    align-items: stretch;
    text-align: center;
    width: 80%;
    background: #fff;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
    border-radius: 1rem;
    margin: 0 auto;
}

.sell-flow > .flow-box{
    width: 22%;
}

.flow-box > h4{
    font-size: 2rem;
}

.flow-box > p{
    text-align: left;
}
/*1~4の売却フローについて*/
@media (max-width: 700px) {
    .sell-flow {
        display: block;
        background: none;
        box-shadow: none;
        border-radius: none;
    }

    .sell-flow > .flow-box{
        background: #fff;
        box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
        border-radius: 1rem;
        width: 100%;
        padding: 2rem 0;
        margin: 4rem auto;
    }

    .flow-box > p{
        text-align: center;
    }
    
}   


.sell-strengths-box{
    width: 80%;
    margin: 0 auto;
}

.sell-strengths-box_img {
    position: relative;
    background-image: url('../img/our-strengths02.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 500px;
}
.sell-strengths-box_img::before{
    background-color: rgba(0,0,0,0.5);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

.sell-strengths-box > div{
    position: absolute;
    height: 100%;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.sell-strengths-box p{
    display: block;
    text-align: left;
    width: 50%;
    color: #fff;
    font-size: 1.8rem;
}
@media (max-width: 700px) {
    .sell-strengths-box p{
        font-size: 1.3rem;
    }
}   


.sell-contact-box{
    background: #fff;
    padding: 6rem 1rem;
    width: 80%;
    margin: 0 auto;
    box-shadow: 0 0 6px 3px rgba(0,0,0,.05);
    border: 2px solid;
}

.sell-contact-box > div{
    font-size: 2rem;
    text-align: center;
}

.contact-flex{
    display: flex;
    justify-content: space-around;
    align-items: center;
}

.line-link{
    background: #2EE934;
    width: 30%;
    margin: 0 auto;
}

.mail-link{
    background: #D9D9D9;
    width: 30%;
    margin: 0 auto;
}

.line-link a,
.mail-link a{
    width: 100%;
    display: block;
    padding: 2rem 0;
    text-align: center;
    font-size: 2rem;
}

@media (max-width: 700px) {
    .contact-flex{
        display: block;
    }
    
    .line-link{
        width: 80%;
        margin: 3rem auto;
    }

    .mail-link{
        width: 80%;
        margin: 3rem auto;
    }
}   

.sell-num{
    display: block;
    margin: 2rem auto;
    text-align: center;
    font-size: 2rem;
}


.sell-main_img{
    position: relative;
    background-image: url('../img/sellpage-main01.jpg');
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    height: 600px;
}

.sell-main_img::before{
    background-color: rgba(0,0,0,0.3);
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: '';
}

.sell-main_img > h2{
    position: absolute;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 4rem;
    height: 100%;
    width: 100%;
    margin: 0;
}

@media (max-width: 700px) {
    .sell-main_img{
        height: 300px;
    }

    .sell-main_img > h2{
        font-size: 3rem;
    }


}