@charset "UTF-8";

/* フォントは Google Fonts（サブセット）を header.phtml から読み込み */

.org-footer *{
    font-family: 'Noto Sans JP', sans-serif;
}

.org-footer {
    background-color: #2951a7;
    color: #ffffff;
    padding: 40px 0 20px;
}

.org-footer__inner {
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    gap: 40px;
    max-width: 1140px;
    margin: 0 auto;
    width: 100%;
}

.org-footer__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

.org-footer__logo-wrap {
    background-color: #ffffff;
    flex-shrink: 0;
    box-sizing: border-box;
}

.org-footer__logo-link {
    display: block;
    width: 252px;
    height: 60px;
}

.org-footer__logo-link:hover{
    opacity: 1;
}

.org-footer__logo-img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.org-footer__nav-block {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 15px;
}

.org-footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-end;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.org-footer__nav-item {
    margin: 0;
}

.org-footer__nav-link,
.org-footer__legal-link {
    position: relative;
    display: inline-block;
    color: #ffffff;
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-decoration: none;
}

.org-footer__nav-link::after,
.org-footer__legal-link::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}

.org-footer__nav-link:hover,
.org-footer__legal-link:hover {
    opacity: 1;
}

.org-footer__nav-link:hover::after,
.org-footer__legal-link:hover::after {
    transform: scaleX(1);
}

.org-footer__sns {
    display: flex;
    align-items: center;
    gap: 15px;
}

.org-footer__sns-link {
    display: block;
    width: 30px;
    height: 30px;
    line-height: 0;
    transition: transform 0.3s ease;
}

.org-footer__sns-link:hover{
    opacity: 1;
    transform: translateY(-5px);
    transition: transform 0.3s ease;
    box-shadow: 0 3px 1px rgba(0, 0, 0, 0.1);
}

.org-footer__sns-link img {
    display: block;
    width: 30px;
    height: 30px;
}

.org-footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}

.org-footer__legal-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 30px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-footer__legal-item {
    margin: 0;
}

.org-footer__copyright {
    margin: 0;
    color: #ffffff;
}

