.org-footer * {
    font-family: 'Noto Sans JP', sans-serif;
}
.org-footer {
    background: linear-gradient(180deg, #0067D2 19.39%, #4EA6FF 110.58%);
    padding-block: 60px 30px;
}
    .org-footer__inner {
        display: flex;
        justify-content: space-between;
        width: 1140px;
        margin: 0 auto;
    }
        .org-footer__logo a {
            display: flex;
            align-items: center;
            justify-content: center;
            width: 244px;
            height: 75px;
            background: #fff;
        }
            .org-footer__logo a img {
                width: 244px;
            }
        .org-footer__txt-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            margin-top: 40px;
        }
            .org-footer__txt-item {
                font-size: 14px;
                font-weight: 500;
                line-height: 1.3;
                color: #FFF;
            }
                .org-footer__txt-item span {
                    font-size: 14px;
                    font-weight: 600;
                    line-height: 1.7;
                    color: #FFF;
                }
        .org-footer___nav-group-list {
            display: grid;
            grid-template-columns: 82px 124px 287px;
            gap: 130px;
        }
            .org-footer___nav-group-ttl {
                font-size: 20px;
                font-weight: 600;
                color: #FFF;
                margin-bottom: 25px;
            }
                .org-footer___nav-list {
                    display: flex;
                    flex-direction: column;
                    gap: 15px;
                }
                .org-footer___nav-group-item:last-child .org-footer___nav-list {
                    display: grid;
                    grid-template-columns: repeat(2, 1fr);
                    gap: 15px 0;
                }
                    .org-footer___nav-link {
                        display: flex;
                        align-items: center;
                        gap: 8px;
                        width: fit-content;
                        font-size: 14px;
                        font-weight: 500;
                        line-height: 1.3; 
                        color: #FFF;
                        white-space: nowrap;
                    }
                    .org-footer___nav-link::before {
                        content: "";
                        display: inline-block;
                        width: 18px;
                        height: 2px;
                        background: #FFF;
                    }
        .org-footer___bottom-list {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-top: 48px;
        }
            .org-footer___bottom-link {
                font-size: 14px;
                font-weight: 500;
                line-height: 1.3;
                color: #fff;
            }
        .org-footer__copy {
            font-size: 14px;
            font-weight: 400;
            color: #FFF;
            text-align: center;
            margin-top: 10px;
        }