.fv {
    background: center no-repeat;
    background-size: cover;
    background-image: url('/funding/images/fv01-sp.jpg');
    background-color: var(--subTextB);
    position: relative;
    color: var(--white);
}

.fv .inner {
    padding: 20px 24px 40px;
    display: grid;
    justify-content: flex-start;
    gap: 16px;
}

.fv h1 {
    display: grid block;
    gap: 3px;
}

.fv .name {
    font-size: 26px;
    line-height: 1.3;
}

@media (min-width: 768px) {
    .fv {
        background-image: url('/funding/images/fv01-pc.jpg');
    }

    .fv .inner {
        margin-inline: auto;
        padding: 72px 0 120px;
        width: 1160px;
        gap: 40px;
    }

    .fv h1 {
        gap: 6px;
    }

    .fv .copy {
        font-size: 22px;
    }

    .fv .name {
        font-size: 40px;
    }
}

.fv__message {
    display: block;
    width: auto;
    padding: 8px;
    color: var(--negative);
    background-color: rgba(255,255,255, .4);
}

@media (min-width: 768px) {
    .fv__message {
        padding: 16px;
    }
}

/* *********************************** */

.news {
    margin-top: -24px;
}

.news li {
    border-bottom: 1px solid var(--line);
    padding: 24px 0 20px;
    display: flex block;
    flex-direction: column;
    gap: 4px;
}

.news time {
    color: var(--subTextA);
    font-size: 12px;
    line-height: 1.83;
    font-family: var(--font-en);
}

@media (min-width: 768px) {
    .news {
        margin-top: unset;
        display: grid;
        gap: 10px;
    }

    .news li {
        border: unset;
        padding: unset;
        flex-direction: row;
        align-items: center;
    }

    .news time {
        width: 92px;
    }
}

/* *********************************** */

.about {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    background-image: url('/funding/images/about-sp.jpg');
    padding: 48px 24px;
    color: var(--white);
}

.about > .inner {
    display: grid;
    gap: 16px;
}

@media (min-width: 768px) {
    .about {
        padding: 80px 0;
        background-image: url('/funding/images/about-pc.jpg');
    }

    .about > .inner {
        width: 1160px;
        margin-inline: auto;
        gap: 24px;
    }
}

/* *********************************** */

.flow {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.flow::before {
    content: "";
    display: block;
    height: 100%;
    width: 2px;
    background-color: var(--green);
    position: absolute;
    left: 50%;
    margin-left: -1px;
}

.flow li {
    text-align: center;
    background-color: var(--background);
    height: 70px;
    position: relative;
    z-index: 1;
    padding-inline: 30px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.flow .no {
    text-align: center;
    font-size: 12px;
    font-family: var(--font-en);
    letter-spacing: .06em;
}

.flow .label {
    line-height: 70px;
    text-align: center;
    color: var(--green);
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.flow .icon {
    width: 40px;
    height: 40px;
}

@media (min-width: 768px) {
    .flow {
        flex-direction: row;
        justify-content: space-between;
    }

    .flow::before {
        height: 2px;
        width: 100%;
        left: 0;
        top: 50%;
        margin-top: -1px;
        margin-left: unset;
    }

    .flow li {
        width: 208px;
        height: 190px;
        padding: unset;
        flex-direction: column;
        justify-content: center;
        align-items: center;
    }

    .flow .label {
        margin-top: 8px;
        position: relative;
        inset: unset;
        width: unset;
        height: unset;
        font-size: 18px;
        line-height: 1;
    }

    .flow .icon {
        margin-top: 32px;
        width: 60px;
        height: 60px;
    }
}

/* *********************************** */

.contact {
    padding: 48px 24px;
    position: relative;
    box-sizing: border-box;
    background: url('/funding/images/contact-sp.jpg') center no-repeat;
    background-size: cover;
    overflow: hidden;
    color: var(--white);
}

.contact .inner {
    display: grid;
    gap: 32px;
}

.contact .btn {
    padding: 16px 8px;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    text-align: center;
    letter-spacing: .06em;
    border: 1px solid;
    border-radius: 4px;
    display: block;
    position: relative;
    color: var(--white);
    border-color: var(--green);
    background-color: var(--green);
}

@media (min-width: 768px) {
    .contact {
        padding: 80px 0;
        background-image: url('/funding/images/contact-pc.jpg');
    }

    .contact .inner {
        margin-inline: auto;
        width: 1160px;
        gap: 24px;
    }

    .contact .btn {
        width: 310px;
        transition-duration: .3s;
        transition-property: border-color, background-color;
    }

    .contact .btn:hover {
        border-color: var(--pearlGreen);
        background-color: var(--pearlGreen);
    }
}
