@charset "UTF-8";

/*---------------------------------------------------
フッター
-----------------------------------------------------*/
.org-footer {
    --org-footer-bg: #071423;
    --org-footer-text: #ffffff;
    --org-footer-muted: #838e9a;
    box-sizing: border-box;
    width: 100%;
    padding: 100px 0 50px;
    background-color: var(--org-footer-bg);
    color: var(--org-footer-text);
}
.org-footer a:hover {
    opacity: 1;
}
.org-footer *,
.org-footer *::before,
.org-footer *::after {
    box-sizing: border-box;
}

.org-footer * {
    font-family: "Noto Sans JP", sans-serif;
}

.org-footer__inner {
    display: flex;
    flex-direction: column;
    gap: 78px;
    width: 1140px;
    max-width: calc(100% - 40px);
    margin: 0 auto;
}

.org-footer__main {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.org-footer__nav {
    display: flex;
    flex-shrink: 0;
    gap: 96px;
    align-items: flex-start;
}

.org-footer__col {
    display: flex;
    flex-direction: column;
    gap: 45px;
    align-items: flex-start;
}

.org-footer__group {
    display: flex;
    flex-direction: column;
    gap: 21px;
    align-items: flex-start;
}

.org-footer__ttl,
.org-footer__ttl-link {
    margin: 0;
    color: var(--org-footer-text);
    font-size: 16px;
    font-weight: 500;
    line-height: 1;
    text-decoration: none;
}

.org-footer__ttl-link {
    position: relative;
    display: inline-block;
}

.org-footer__ttl-link::before {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--org-footer-text);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    content: "";
}

.org-footer__ttl-link:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
}

.org-footer__links {
    display: flex;
    flex-direction: column;
    gap: 9px;
    align-items: flex-start;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-footer__link {
    position: relative;
    display: inline-block;
    color: var(--org-footer-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
}

.org-footer__link::before {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--org-footer-text);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    content: "";
}

.org-footer__link:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
}

.org-footer__bottom {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 24px;
    width: 100%;
}

.org-footer__bottom-left {
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: flex-start;
    min-width: 0;
}

.org-footer__note {
    margin: 0;
    color: var(--org-footer-text);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
}

.org-footer__legal {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-footer__legal > li {
    display: flex;
    align-items: center;
    gap: 14px;
}

.org-footer__legal > li:not(:last-child)::after {
    display: block;
    width: 1px;
    height: 14px;
    background-color: var(--org-footer-muted);
    content: "";
}

.org-footer__legal-link {
    position: relative;
    display: inline-block;
    color: var(--org-footer-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    text-decoration: none;
    white-space: nowrap;
}

.org-footer__legal-link::before {
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 100%;
    height: 1px;
    background: var(--org-footer-muted);
    transform: scale(0, 1);
    transform-origin: left top;
    transition: transform 0.3s;
    content: "";
}

.org-footer__legal-link:hover::before {
    transform: scale(1, 1);
    transform-origin: left top;
}

.org-footer__copy {
    flex-shrink: 0;
    margin: 0;
    color: var(--org-footer-muted);
    font-size: 13px;
    font-weight: 400;
    line-height: 1;
    white-space: nowrap;
}
