
#footer {
    background-color: #F3F3F5;
}

.footer_top {
    border-top: 1px solid #E6E6EA;
    border-bottom: 1px solid #E6E6EA;
}

.footer_list {
    padding: 16px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.footer_list li {
    margin: 0 5px;
}

.footer_list a {
    font-size: 14px;
    line-height: 20px;
    color: #8b8b8b;
}

.footer_list a em {
    font-weight: 700;
    color: #68687A
}

.footer_info .btn_f_info {
    padding: 24px 0;
    width: 100%;
}

.footer_info .btn_f_info span {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

.footer_info .btn_f_info span:after {
    content: '';
    width: 14px;
    height: 14px;
    background: url('../images/common/ico_f_arrow_down.svg') no-repeat 0 0/100% 100%;
}

.footer_info.active .f_info_box {
    display: block;
}

.footer_info.active .btn_f_info span:after {
    transform: rotate(180deg);
}

.f_info_box {
    display: none;
    padding-bottom: 24px;
    text-align: center;
    font-size: 12px;
    color: #68687a;
}

.f_info_box span {
    color: #8b8b8b;
}

.f_info_box a {
    color: #68687a;
}

.f_info_box button {
    font-weight: 700;
    color: #68687a;
    vertical-align: 1px;
}

.footer_btm {
    padding: 24px 30px 64px;
    text-align: center;
    border-top: 1px solid #E6E6EA;
}

.footer_btm .footer_btm_txt1 {
    font-size: 11px;
    color: #a6a6b3;
}

.footer_sns {
    margin: 24px 0;
    position: relative;
}

.footer_sns .footer_sns_wrap {
    position: absolute;
    width: 150px;
    height: 24px;
    left: 50%;
    top: 0;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.footer_sns a {
    width: 24px;
    height: 24px;
}

.footer_btm .footer_btm_txt2 {
    font-size: 11px;
    color: #cbcbd2;
}

.onlyM_f {
    display: block;
}

.onlyW_f {
    display: none;
}


@media all and (max-width: 1200px) and (min-width: 766px) {
    .footer_list {
        justify-content: center;
    }
}

@media all and (min-width: 1201px) {
    .onlyM_f {
        display: none !important;
    }

    .onlyW_f {
        display: block !important;
    }

    .footer_list {
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px 32px;
    }

    .footer_list li {
        position: relative;
        display: flex;
        align-items: center;
    }

    .footer_list li:not(:last-child):after {
        content: '/';
        margin-left: 5px;
        color: #DDDDE2;
    }

    .footer_info {
        max-width: 1200px;
        margin: 0 auto;
        padding: 24px 32px 0;
    }

    .f_info_box {
        display: block;
    }

    .f_info_box {
        padding-top: 24px;
        padding-bottom: 0;
        text-align: left;
    }

    .footer_btm {
        max-width: 1200px;
        margin: 0 auto;
        padding: 16px 32px 64px;
        border-top: none;
        text-align: left;
    }

    .footer_btm_txt1,
    .footer_btm_txt2 {
        font-size: 12px;
    }

    .footer_sns .footer_sns_wrap {
        left: 0;
        transform: translateX(0);
    }
}