.org-footer * {
    color: unset;
    font-family: "Zen kaku gothic new", sans-serif;
}
.org-footer {
    background-color: #03CB85;
    padding: 60px 0 38px;
}
    .org-footer__inner {
        display: flex;
        justify-content: space-between;
        width: 1140px;
        margin: 0 auto;
    }
    .org-footer__left {
        display: flex;
        flex-direction: column;
        gap: 51px;
    }
        .org-footer__name a {
            width: fit-content;
            font-size: 30px;
            font-weight: 700;
            color: #fff;
        }
        .org-footer__company-info {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.4;
            color: #fff;
            margin-top: 14px;
        }
        .contact__link {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 300px;
            height: 60px;
            background: #03CB85;
            border: 1px solid #FFF;
            font-family: "Noto Sans JP", sans-serif;
            font-size: 16px;
            font-weight: 500;
            line-height: 2;
            color: #FFF;
            position: relative;
        }
            .contact__link svg {
                position: absolute;
                right: 18px;
                top: 50%;
                transform: translateY(-50%);
            }
    .org-footer__right {
        display: flex;
        flex-direction: column;
        gap: 48px;
    }
        .org-footer__list-box {
            display: flex;
            gap: 70px;
        }
            .org-footer__list {
                display: flex;
                flex-direction: column;
                gap: 19px;
            }
                .org-footer__list-link {
                    font-size: 14px;
                    font-weight: 500;
                    color: #FFF;
                }
        .org-footer__copy {
            font-family: "Noto Sans JP", sans-serif;
            font-size: 14px;
            font-weight: 500;
            color: #FFF;
            text-align: right;
        }