@charset "UTF-8";

/*///////////////////// font-face ///////////////////////////*/
@font-face {
    font-family: "IBM Plex Sans JP";
    src: url(/fonts/IBMPlexSansJP-Medium.woff2) format('woff2');
    font-weight: 500;
    font-display: swap;
}
/*///////////////////// font-face ///////////////////////////*/

/* ============================
フッター
============================ */
.l-footer {
    padding: 0;
    background-color: #74a72e;
    border-top: none;
}

.org-footer * {
    box-sizing: border-box;
    font-family: "IBM Plex Sans JP", sans-serif;
    font-weight: 500;
}

.org-footer__logo-link,
.org-footer__nav-link {
    text-decoration: none;
}

.org-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
    padding: 40px 20px 20px;
}

.org-footer__content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.org-footer__logo {
    width: 434px;
    margin: 0;
}

.org-footer__logo-link {
    display: block;
    line-height: 0;
}
.org-footer__logo-link:hover {
    opacity: 1;
}

.org-footer__logo-link img {
    display: block;
    width: 100%;
    height: auto;
}

.org-footer__nav-list {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.org-footer__nav-link {
    display: block;
}

[class*="org-footer__nav-text"] {
    position: relative;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.5;
    white-space: nowrap;
}

/* テキストリンク：下線が左から */
.org-footer__nav-link:hover {
    opacity: 1;
    text-decoration: none;
}

[class*="org-footer__nav-text"]::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: currentColor;
    transition: transform 0.4s ease;
    transform: scaleX(0);
    transform-origin: left center;
}

.org-footer__nav-link:hover [class*="org-footer__nav-text"]::after {
    transform: scaleX(1);
}

.org-footer__copy {
    margin: 0;
    color: #fff;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.5;
    text-align: center;
    white-space: nowrap;
}
