@charset "UTF-8";



/*  ----------------------------------------------------------

flow

----------------------------------------------------------  */
.construction-flow {
    margin-bottom: 10rem;
}
.construction-flow > p {
    text-align: center;
}
.construction-flow > p:last-of-type {
    margin-bottom: 4rem;
}
.construction-flow figure {
    margin: 1.5rem 0;
}
.construction-flow-check {
    margin-bottom: 4rem;
}
.construction-flow-check ul {
    display: flex;
    justify-content: space-between;
}
.construction-flow-check ul li {
    width: 47%;
}
.construction-flow-check ul li dl dt {
    background: #ccecfb;
    line-height: 1;
    padding: 1rem 1.5rem 1.1rem 1.5rem;
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
}
.construction-flow-select {
    margin-bottom: 4rem;
}
.construction-flow-select p {
    margin-bottom: .5rem;
}
@media screen and (max-width: 768px) {
    .construction-flow {
        padding: 0 3rem;
    }
    .construction-flow > p {
        text-align: left;
    }
    .construction-flow-check ul {
        display: block;
    }
    .construction-flow-check ul li {
        width: 100%;
    }
    .construction-flow-check ul li:not(:last-child) {
        margin-bottom: 2rem;
    }
    .construction-flow-check ul li dl dt {
        padding: 1.2rem 1.5rem 1.1rem 1.5rem;
    }
}



/*  ----------------------------------------------------------

procedure

----------------------------------------------------------  */
.construction-procedure ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
.construction-procedure ul li {
    width: 47%;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
.construction-procedure ul li:nth-child(n + 3) {
    margin-top: 5rem;
}
.construction-procedure ul li > figure {
    width: 45%;
}
.construction-procedure ul li > dl {
    width: 50%;
    line-height: 1.6;
}
.construction-procedure ul li dl dt {
    margin-bottom: 1rem;
}
.construction-procedure .step {
    display: flex;
    align-items: center;
    font-weight: 600;
    color: var(--color-blue);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.construction-procedure .step > span {
    color: #d9f1fc;
    font-size: 7rem;
    margin-top: -0.5rem;
    margin-left: -2.4rem;
    position: relative;
    z-index: -1;
}
.construction-procedure ul li dl dt > span:last-of-type {
    font-size: 2.2rem;
    font-weight: 600;
    line-height: 1.4;
}
@media screen and (max-width: 768px) {
    .construction-procedure {
        padding: 0 3rem;
    }
    .construction-procedure ul {
        display: block;
    }
    .construction-procedure ul li {
        width: 100%;
        display: block;
    }
    .construction-procedure ul li:nth-child(n + 3) {
        margin-top: 0;
    }
    .construction-procedure ul li:not(:last-child) {
        margin-bottom: 4rem;
    }    
    .construction-procedure ul li > figure {
        width: 100%;
        margin-bottom: 1rem;
    }
    .construction-procedure ul li > figure img {
        height: 36rem;
        object-fit: cover;
        border-radius: 2rem;
    }
    .construction-procedure ul li > dl {
        width: 100%;
    }
}