@charset "UTF-8";

/* --------------------------
    上書き
-------------------------- */
.title_bg {
    background: url(../img/title_img_sp.jpg) no-repeat;
    background-size: cover;
}
@media print, screen and (min-width: 768px) {
    .title_bg {
        background: url(../img/title_img_pc.jpg) no-repeat;
        background-size: 100%;
    }
}




.step {
    margin-top: 20px;
}
@media print, screen and (min-width: 768px) {
    .step {
        margin-top: 30px;
    }
}
.iconDescList {
    font-size: 1.4rem;
    font-weight: 500;
    display: flex;
    justify-content: flex-end;
}
.iconDescList li {
    padding: 5px;
    border-radius: 31px;
}
.iconDescList li + li {
    margin-left: 10px;
}
.iconDescList li.customer {
    background-color: #FEF4DE;
}
.iconDescList li.ourCompany {
    background-color: #E3EFF6;
}
.iconDescList li:before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 40px;
    vertical-align: -14px;
}
.iconDescList li.customer:before {
    background: url(../img/step_icon_customer.png) no-repeat top left;
    background-size: contain;
}
.iconDescList li.ourCompany:before {
    background: url(../img/step_icon_ourcompany.png) no-repeat top left;
    background-size: contain;
}
.iconDescList_text {
    display: inline-block;
    min-width: 67px;
    text-align: center;
}
@media print, screen and (min-width: 768px) {
    .iconDescList {
        font-size: 1.6rem;
    }
    .iconDescList li {
        padding: 6px;
    }
    .iconDescList li + li {
        margin-left: 20px;
    }
    .iconDescList li:before {
        width: 50px;
        height: 50px;
        vertical-align: -18px;
    }
    .iconDescList_text {
        min-width: 84px;
    }
}

.step_item {
    position: relative;
    border-radius: 8px;
    padding: 20px 10px;
    margin-top: 20px;
}
.step_item:not(:last-child):after{
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-right: 10px solid transparent;
    border-left: 10px solid transparent;
}
.step_item.customer {
    background-color: #FEF4DE;
}
.step_item.customer::after {
    border-top: 10px solid #FEF4DE;
}
.step_item.ourCompany {
    background-color: #EEF8FD;
}
.step_item.ourCompany::after {
    border-top: 10px solid #EEF8FD;
}
@media print, screen and (min-width: 768px) {
    .step_item {
        padding: 30px;
        margin-top: 50px;
        display: flex;
        justify-content: space-between;
        align-items: center;
    }
    .step_item:first-of-type {
        margin-top: 30px;
    }
    .step_item:not(:last-child):after{
        border-right: 20px solid transparent;
        border-left: 20px solid transparent;
    }
    .step_item.customer::after {
        border-top: 20px solid #FEF4DE;
    }
    .step_item.ourCompany::after {
        border-top: 20px solid #EEF8FD;
    }
}
.step_number {
    display: block;
    font-size: 1.4rem;
    font-weight: bold;
    text-align: center;
    color: #fff;
    border-radius: 50px;
    width: 60px;
    height: 60px;
    padding-top: 7px;
    margin: 0 auto;
}
.step_item.customer .step_number {
    background-color: #F9BC31;
}
.step_item.ourCompany .step_number {
    background-color: #3669E8;
}
.step_number .num {
    display: block;
    font-size: 1.8rem;
    line-height: 0.7;
}
@media print, screen and (min-width: 768px) {
    .step_number {
        font-size: 1.8rem;
        width: 90px;
        height: 90px;
        padding-top: 10px;
        margin: 0;
    }
    .step_number .num {
        font-size: 2.4rem;
        line-height: 0.5;
    }
}
.step_textBox {
    margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
    .step_textBox {
        margin-top: 0;
        width: 810px;
    }
}
.step_title {
    position: relative;
    font-size: 2.0rem;
    font-weight: bold;
    line-height: 1.6;
    padding-left: 50px;
    display: flex;
    align-items: center;
    min-height: 40px;
}
.step_title::before {
    content: '';
    width: 40px;
    height: 40px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
}
.step_item.customer .step_title::before {
    background: url(../img/step_icon_customer.png) no-repeat top left;
    background-size: contain;
}
.step_item.ourCompany .step_title::before {
    background: url(../img/step_icon_ourcompany.png) no-repeat top left;
    background-size: contain;
}
@media print, screen and (min-width: 768px) {
    .step_title {
        font-size: 2.4rem;
        padding-left: 60px;
        min-height: 50px;
    }
    .step_title::before {
        width: 50px;
        height: 50px;
    }
}
.step_list {
    margin-top: 10px;
}
.step_list li {
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1.75;
    padding-left: 1.3em;
}
.step_list li + li {
    margin-top: 7px;
}
.step_list li::before {
    content: '●';
    display: inline-block;
    text-indent: -1.3em;
}
.step_item.customer .step_list li::before {
    color: #F9BC31;
}
.step_item.ourCompany .step_list li::before {
    color: #3669E8;
}
@media print, screen and (min-width: 768px) {
    .step_list {
        margin: 10px 0 0 60px;
    }
    .step_list li {
        font-size: 2.0rem;
        line-height: 1.6;
    }
    .step_list li + li {
        margin-top: 17px;
    }
}

.step_img {
    display: block;
    margin-top: 10px;
}
.step_04_img {
    max-width: 480px;
}
.step_08_img {
    max-width: 480px;
}
@media print, screen and (min-width: 768px) {
    .step_img {
        margin: 20px 0 0 60px;
    }
}

p.step_notes {
    margin-top: 10px;
}
@media print, screen and (min-width: 768px) {
    p.step_notes {
        line-height: 1.6;
        margin: 7px 0 0 60px;
    }
}


.stepNotesList {
    margin-top: 20px;
}
.stepNotesList li {
    font-size: 1.4rem;
    line-height: 1.714;
}
.stepNotesList li + li {
    margin-top: 0.3em;
}
@media print, screen and (min-width: 768px) {
    .stepNotesList {
        margin-top: 30px;
    }
    .stepNotesList li {
        font-size: 1.6rem;
        line-height: 1.6;
    }
}