@charset "utf-8";

/* effortsSection */
#effortsSection {
    background-image: url(/_assets/img/outline/efforts_bg.png);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: cover;
}

/* historySection */
#historySection {
    background-image: url(/_assets/img/outline/history_bg.png);
    background-position: center bottom;
    background-repeat: no-repeat;
    background-size: cover;
    padding-bottom: 150px;
}

#historySection > p:nth-of-type(n+2) {
    margin-top: 40px;
}

/* companySection */
#companySection h3 {
    text-align: center;
    margin-bottom: 10px;
}

#companySection > p:first-of-type {
    margin-bottom: 60px;
}

/* PC */
@media screen and (min-width: 768px) {
}

/* SP */
@media screen and (max-width: 767px){
    /* historySection */
    #historySection {
        background-size: contain;
        padding-bottom: 80px;
        background-color: #e0f6ff;
    }

    #historySection > p:nth-of-type(n+2) {
        margin-top: 20px;
    }

    /* companySection */
    #companySection {
        padding-top: 40px;
    }

    #companySection h3 {
        margin-bottom: 15px;
    }
    
    #companySection h3:first-of-type img {
        width: 240px;
    }

    #companySection h3:last-of-type img {
        width: 195px;
    }

    #companySection > p:first-of-type {
        margin-bottom: 30px;
    }
}