@charset "UTF-8";

/* トップオリ：レイアウト枠 */
.l-footer {
    background-color: inherit;
    padding: 0;
}

.l-footer * {
    font-family: "Noto Sans JP", sans-serif;
}

.org-footer {
    width: 100%;
    padding: 97px 0 14px;
    background-color: #2b346e;
    box-sizing: border-box;
}
.org-footer * {
    box-sizing: border-box;
}
.org-footer__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 100px;
    width: 1140px;
    margin: 0 auto;
}

/* メインコンテンツ */
.org-footer__content {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}

/* 会社情報 */
.org-footer__company {
    width: 315px;
    padding-top: 3px;
}
.org-footer__company-name a {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 24px;
    line-height: 1.7;
    color: #ffffff;
    white-space: nowrap;
}
.org-footer__company-name a:hover {
    opacity: 1;
}
.org-footer__company-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    width: 100%;
}
.org-footer__address {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}
.org-footer__detail {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 16px;
    line-height: 1.6;
    color: #ffffff;
}

/* リンク・CTA */
.org-footer__right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 46px;
}
.org-footer__nav {
    display: flex;
    align-items: flex-start;
    gap: 59px;
}
.org-footer__nav-list {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}
.org-footer__nav-link {
    position: relative;
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}
.org-footer__nav-link:hover {
    opacity: 1;
}

.org-footer__nav-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.org-footer__nav-link:hover::after {
    transform: scaleX(1);
}

/* CTAボタン */
.org-footer__cta {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
    width: 380px;
}
[class^="org-footer__btn--"] {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 210px;
    height: 50px;
    border-radius: 99999px;
    box-shadow: 0 4px 5px rgba(0, 0, 0, 0.25);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease, filter 0.3s ease;
}
[class^="org-footer__btn--"]:hover {
    opacity: 1;
    transform: scale(1.05);
    box-shadow: 0 6px 14px rgba(0, 0, 0, 0.3);
    filter: brightness(1.08);
}
.org-footer__btn--contact {
    background-image: linear-gradient(99deg, #ff9b28 4.55%, #d80000 135.32%);
}
.org-footer__btn--satei {
    background-image: linear-gradient(99deg, #35b7ef 4.55%, #1344e6 135.32%);
}
.org-footer__btn-icon {
    display: block;
    flex-shrink: 0;
}
.org-footer__btn--contact .org-footer__btn-icon {
    width: 20px;
    height: 15px;
}
.org-footer__btn--satei .org-footer__btn-icon {
    width: 16px;
    height: 19px;
}
.org-footer__btn-text {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    font-size: 16px;
    line-height: 1;
    color: #ffffff;
    text-align: center;
    white-space: nowrap;
}

/* コピーライト */
.org-footer__bottom {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    width: 100%;
}
.org-footer__legal {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 0;
    list-style: none;
}
.org-footer__legal-item {
    display: flex;
    align-items: center;
}
.org-footer__legal-item:not(:first-child) {
    margin-left: 12px;
    padding-left: 12px;
    border-left: 1px solid #ffffff;
}
.org-footer__legal-link {
    position: relative;
    display: inline-block;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    text-decoration: none;
    white-space: nowrap;
}
.org-footer__legal-link:hover {
    opacity: 1;
}
.org-footer__legal-link::after {
    content: "";
    position: absolute;
    right: 0;
    bottom: -5px;
    left: 0;
    height: 1px;
    background-color: #ffffff;
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s ease;
}
.org-footer__legal-link:hover::after {
    transform: scaleX(1);
}
.org-footer__copyright {
    margin: 0;
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 1;
    color: #ffffff;
    text-align: right;
    white-space: nowrap;
}
