/* =====================================
   共通フッター用 CSS
   ===================================== */

.common-footer{
    border-top: 2px solid #E0481D;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 40px;
}
.common-footer__nav ul{
    display: flex;
}
.common-footer__nav ul li{
    position: relative;
    padding: 0 17px;
}
.common-footer__nav ul li:not(:last-child)::after{
    content: "";
    position: absolute;
    right: 0;
    top: 55%;
    transform: translateY(-50%);
    height: 20px;
    border-left: 1px solid #333;
}
.common-footer__nav ul li a{
    display: inline-flex;
    align-items: center;
    font-size: 16px;
    text-decoration: underline;
    color: #333;
}

/* 外部リンクアイコン（縦位置調整用） */
.link-icon--out {
    display: inline-block;
    margin-left: 6px;
    margin-right: 4px;
}
.link-icon--out svg {
    display: block;
    width: 100%;
    height: auto;
}

.common-footer__copyright{
    font-size: 14px;
    color: #333;
}

@media screen and (min-width: 768px) {
    .common-footer{
        position: relative;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 10001;
        background-color: #fff;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
    }
    .common-footer__nav ul li a{
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 16px;
    }
    .common-footer__nav ul li a:hover,
    .common-footer__nav ul li a:focus-visible{
        text-decoration: none;
    }
    .common-footer__copyright{
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 14px;
    }
    .link-icon--out {
        width: 15px;
        height: 15px;
        margin-bottom: -2px;
    }
    .common-footer__logo{
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .common-footer{
        display: block;
        padding: 20px 25px;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
    }
    .common-footer__nav ul{
        display: flex;
        flex-wrap: wrap;
        row-gap: 10px;
    }
    .common-footer__logo{
        display: flex;
        justify-content: center;
    }
    .common-footer__logo img{
        width: 108px;
        height: auto;
        margin-top: 20px;
    }
    .common-footer__copyright{
        margin-top: 10px;
        display: block;
        text-align: center;
        letter-spacing: 1px;
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 14px;
    }
    .common-footer__nav ul li a{
        font-family: 'Noto Sans JP', sans-serif;
        font-weight: 400;
        font-size: 14px;
        color: #333;
    }
    .link-icon--out {
        width: 12px;
        height: 12px;
        margin-bottom: -1px;
    }
}

@media screen and (max-width: 480px) {
    .common-footer__nav ul{
        justify-content: flex-start;
    }
}