.contents_wrap {
    max-width: 1100px;
    width: 95%;
}

/* リード文 */
.lead {
    font-size: 1.2rem;
    font-weight: bold;
}

/* problem お悩み*/
.problem ul {
    display: flex;
    justify-content: center;
    margin-top: 5em;
}

.problem ul li {
    position: relative;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 1em;
    padding-left: 1em;
}

.problem ul li::before {
    position: absolute;
    content: '';
    background: 100% / 100% url(../img/encashment_problem.png) no-repeat;
    width: 24px;
    height: 22px;
    top: 20%;
    left: 0;
}

.problem ul li span {
    background: linear-gradient(transparent 72%, var(--marker-blue) 0%);
}

@media screen and (max-width:768px) {
    .problem ul {
        flex-direction: column;
        margin-top: 0;
    }

    .problem ul li {
        font-size: 1.2rem;
    }

    .problem ul li::before {
        width: 18px;
        height: 16px;
    }
}

/* solution 解決 */
.solution ul {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    row-gap: 20px;
}

.solution ul li {
    text-align: center;
    background: var(--light-gray);
    border-radius: 10px;
}

.solution ul li div h3 {
    color: var(--main-blue);
    font-size: 1.6rem;
    font-weight: bold;
}

.solution ul li div p {
    margin-top: 0;
    font-weight: bold;
}

.solution ul li img {
    width: 30%;
    margin-inline: auto;
}

@media screen and (max-width:768px) {
    .solution ul {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        row-gap: 10px;
    }

    .solution ul li div h3 {
        font-size: 1.2rem;
    }
}

@media screen and (max-width:599px) {
    .solution ul {
        grid-template-columns: 1fr;
    }
}

/* no1 */
.no1 {
    background: var(--light-blue);
    margin-top: 5rem;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    padding: 4rem 0 2rem;
}

.no1_inner {
    max-width: 1100px;
    width: 95%;
    margin: 0 auto;
    text-align: center;
}

.no1 h3 {
    font-size: 1.8rem;
    font-weight: bold;
}

.no1 img {
    max-width: 580px;
    width: 100%;
    margin: 10px auto;
}

.no1 p {
    font-size: 0.8rem;
}

@media screen and (max-width:768px) {
    .no1 {
        padding: 2rem 0 1rem;
    }

    .no1 h3 {
        font-size: clamp(18px, 0.6017rem + 2.3923vw, 28px);
    }

    .no1 img {
        margin: 0 auto;
    }
}

/* factoring ファクタリングとは */
.factoring img {
    width: 80%;
    margin-inline: auto;
}

@media screen and (max-width:768px) {
    .factoring img {
        width: 100%;
    }
}

/* achievement 取引実績 */
.achievement ul {
    display: flex;
    justify-content: space-between;
    margin: auto;
    max-width: 1100px;
}

.achievement ul li {
    outline: 2px solid var(--light-blue);
    outline-offset: -2px;
    border-radius: 8px;
    width: 47.25%;
}

.achievement ul li h3 {
    background: var(--main-blue);
    border-radius: 8px 8px 0 0;
    color: #fff;
    font-size: 1.8rem;
    font-weight: bold;
    letter-spacing: .075em;
    padding: .25em;
    text-align: center;
}

@media screen and (max-width:768px) {
    .achievement ul {
        flex-direction: column;
        row-gap: 40px;
    }

    .achievement ul li {
        width: 90%;
        margin-inline: auto;
    }

    .achievement ul li h3 {
        font-size: 1.2rem;
    }
}

/* flow ご利用の流れ */
.flow .lead {
    position: relative;
    background: var(--main-blue);
    border-radius: 10px;
    color: #fff;
    display: table;
    font-size: 28px;
    line-height: 1;
    margin: 0 auto 1em;
    padding: .5em 1em;
    text-align: center;
}

.flow .lead:before {
    position: absolute;
    content: '';
    top: 100%;
    left: 50%;
    margin-left: -8px;
    border: 8px solid transparent;
    border-top: 12px solid var(--main-blue);
}

.flow .lead span {
    font-size: 30px;
}

.flow ul {
    position: relative;
}

.flow ul::before {
    content: "";
    width: 0.15rem;
    height: 100%;
    display: block;
    position: absolute;
    left: 7.8rem;
    top: 0;
    background: url(../img/flow-border.svg) repeat-y center left / 0.19rem auto;
}

.flow ul li {
    background: var(--light-gray);
    padding: 20px;
    margin-bottom: 30px;
    border-radius: 8px;
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 2rem;
    position: relative;
}

.flow ul li .txt_wrap {
    width: 70%;
}

.flow ul li .txt_wrap .step {
    font-weight: bold;
    background: var(--main-blue);
    display: block;
    width: 9rem;
    text-align: center;
    color: #fff;
    border-radius: 3rem;
    font-size: 1.2rem;
    padding: 0.2rem 0;
    margin: 0.8em 0;
}

.flow ul li .txt_wrap h3 {
    font-size: 1.4rem;
    font-weight: bold;
    color: var(--main-blue);
}

.flow ul li img {
    width: 18%;
    border-radius: 4px;
}

@media screen and (max-width:768px) {
    .flow .lead {
        font-size: 1.2rem;
    }
    .flow .lead span {
        font-size: 1.4rem;
    }
    .flow ul::before {
        left: 5rem;
    }

    .flow ul li {
        display: block;
        padding: 1rem;
    }

    .flow ul li .txt_wrap {
        width: 100%;
    }

    .flow ul li .txt_wrap h3 {
        font-size: 1.2rem;
    }

    .flow ul li img {
        width: 80px;
        position: absolute;
        top: 30px;
        right: 20px;
    }
}

/* usage-example ご利用例 */
.usage-example ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    row-gap: 2rem;
}

.usage-example ul li {
    box-sizing: border-box;
    margin-top: 2%;
    width: 47%;
    outline: 2px solid var(--light-blue);
    outline-offset: -2px;
    border-radius: 0 0 8px 8px;
}

.usage-example ul li img {
    margin: 1.5rem auto 0;
}

.usage-example ul li .txt {
    padding: 0 1rem;
}

@media screen and (max-width:768px) {
    .usage-example ul {
        flex-direction: column;
    }

    .usage-example ul li {
        width: 100%;
    }
}

/* commission 手数料 */
.commission table {
    border: 2px solid #222;
    font-weight: 700;
    width: 100%;
}

.commission table th {
    background: var(--main-blue);
    border: 1px solid #222;
    color: #fff;
    padding: .5em;
    width: 33%;
    text-align: center;
}

.commission table td {
    border: 1px solid #222;
    padding: 1em;
    text-align: center;
}

@media screen and (max-width:599px) {
    .commission table td {
        font-size: 14px;
        padding: 1em .5em;
    }
}

/* .certification 認定取得 */
.certification .t1 {
    text-align: right;
}