/*
* nca_about_philosophy.css
* /about/philosophy/
*/

@charset "UTF-8";
/* nca_fc_green
---------------------------------------------------------- */
.nca_fc_green {
    color: #8ec300;
}

/* nca_pageBack
---------------------------------------------------------- */
.nca_pageBack {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 8px;
    margin-top: 48px;
    -webkit-text-decoration: underline 1px solid transparent;
    text-decoration: underline 1px solid transparent;
    -webkit-transition: -webkit-text-decoration .3s ease;
    transition: -webkit-text-decoration .3s ease;
    transition: text-decoration .3s ease;
    transition: text-decoration .3s ease,-webkit-text-decoration .3s ease
}

.nca_pageBack::before {
    background: url(/assets/img/ico_arrow_left.svg) 50% 50%/100% 100% no-repeat;
    content: "";
    height: min(24px,1.6666666667vw);
    -webkit-transition: background .3s ease;
    transition: background .3s ease;
    width: min(24px,1.6666666667vw)
}

@media screen and (width < 768px) {
    .nca_pageBack::before {
        height: 24px;
        width: 24px;
    }
}

@media(hover: hover)and (pointer:fine) {
    .nca_pageBack:hover {
        color: #1a005d;
        text-decoration-color: #1a005d
    }

    .nca_pageBack:hover:before {
        background-image: url(/assets/img/ico_arrow_left_hover.svg)
    }
}