.org-footer * {
    font-family: "Zen Maru Gothic", sans-serif;
}
.org-footer {
    background: transparent;
    padding: 0;
}
    .org-footer__bg {
        background: #004898;
        padding: 60px 0 20px;
        border-radius: 100px 100px 0 0;
    }
        .org-footer__inner {
            display: flex;
            justify-content: space-between;
            width: 1140px;
            margin: 0 auto;
        }
            .org-footer__name a {
                font-family: "Zen Kaku Gothic New", sans-serif;
                font-size: 30px;
                font-weight: 700;
                color: #FFF;
            }
            .org-footer__name span {
                font-size: 20px;
                font-family: "Zen Kaku Gothic New", sans-serif;
            }
            .org-footer__info-list {
                display: flex;
                flex-direction: column;
                gap: 5px;
                margin-top: 19px;
            }
                .org-footer__info-item {
                    font-size: 14px;
                    font-weight: 500;
                    color: #FFF;
                }
                    .org-footer__info-item span {
                        margin-left: 16px;
                    }
                    .org-footer__info-item a {
                        font-size: 14px;
                        font-weight: 500;
                        color: #FFF;
                    }
            .org-footer-nav__list {
                display: grid;
                grid-template-columns: 180px 180px 180px;
                gap: 29px 30px;
                margin-top: 47px;
            }
                .org-footer-nav__link {
                    display: flex;
                    justify-content: space-between;
                    align-items: center;
                    padding-bottom: 6px;
                    font-size: 16px;
                    font-weight: 700;
                    line-height: 1.8;
                    color: #FFF;
                    position: relative;
                }
                .org-footer-nav__link::before {
                    --line-width: 8px;
                    --line-height: 1px;
                    --line-gap: 16px;
                    --line-color: #FFFFFF;
                    content: "";
                    display: block;
                    width: 100%;
                    height: var(--line-height);
                    background-image: linear-gradient(
                        to right, 
                        var(--line-color) 0, 
                        var(--line-color) var(--line-width), 
                        transparent var(--line-width)
                    );
                    background-size: var(--line-gap) var(--line-height);
                    background-repeat: repeat-x;
                    border-radius: calc(var(--line-height) / 2);
                    position: absolute;
                    bottom: 0;
                    left: 0;
                }
                .org-footer-nav__link::after {
                    content: "";
                    display: inline-block;
                    width: 20px;
                    height: 20px;
                    background: url('/images/top/footer-nav-arow.svg') no-repeat center / contain;
                }
        .org-footer__bottom {
            display: flex;
            justify-content: space-between;
            width: 1140px;
            margin: 0 auto;
            border-top: 1px solid #fff;
            padding-top: 17px;
            margin-top: 49px;
        }
            .org-footer-bottom__list {
                display: flex;
                gap: 30px;
            }
            .org-copy__write {
                font-size: 16px;
                font-weight: 500;
                line-height: 1;
                color: #FFF;
            }