@charset UTF-8;

main {
    margin-top: 60px;
}

.title{
    font-size: 16px;
    line-height: 1.5em;
    margin: 0 0 20px 60px;
    position: fixed;
}

.content {
    position: fixed;
}

.detail {
    font-size: 14px;
    line-height: 1.4em;
    margin: 0 0 20px 60px;
    position: absolute;
    top:100px;
}

.completed {
    width: 140px;
    display: flex;
    justify-content: space-between;
}

.floorspace {
    width: 140px;
    display: flex;
    justify-content: space-between;
}

.plan {
    width: 140px;
    display: flex;
    justify-content: space-between;
}

.fhoto {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    margin: 0 auto;
    margin-left: 100px;
    align-items: center;
}

.fhoto img {
    max-width: 832px;
    margin-bottom: 50px;
}

@media screen and (max-width: 960px) {
    .title{
        font-size: 14px;
        margin: 0 0 20px 30px;
    }

    .detail {
        font-size: 12px;
        margin: 0 0 30px 30px;
    }
    
    .fhoto {
        margin-left: 120px;
    }

    .fhoto img {
        max-width: 500px;
    }

}

@media screen and (max-width: 767px) {
    main {
        margin-top: 50px;
    }

    .title{
        position:initial;
    }
    
    .content {
        position: initial;
    }
    
    .detail {
        position: initial;
    }
    
    .fhoto {
        margin-left: 0;
    }
    
    .fhoto img {
        width: 90%;
        margin-bottom: 50px;
    }
}