@charset "utf-8";

/* ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■
 *
 *
	Component（c-btn） CSS
 *
 *
 * ■■■■■■■■■■■■■■■■■■■■■■■■■■■■■■ */

.c-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-right: 13px;
    margin: 0 auto;
    border: 1px solid var(--color-blue);
    border-radius: 45px;
    background-color: var(--color-off-white);
    color: var(--color-blue);
    text-decoration: none;
    font-size: var(--fs-base--pc);
    line-height: 1;
    max-width: 350px;
    height: 60px;
    transition: 0.3s;
}

.c-btn::before {
    content: "";
    display: block;
    position: absolute;
    top: 38%;
    right: 65px;
    height: 16px;
    width: 16px;
    background-image: url(/img/common/icon__arrow.svg);
    background-repeat: no-repeat;
    will-change: transform;
    transition: .3s;
}

.l-section .c-grid-child__txt--up::before {
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    right: 35px;
    height: 23px;
    width: 23px;
    background-image: url(/img/common/icon__arrow-up.svg);
    background-repeat: no-repeat;
    will-change: transform;
    transition: 0.3s;
}

.l-section .c-grid-child__txt--down::before {
    content: "";
    display: block;
    position: absolute;
    top: 40%;
    right: 35px;
    height: 23px;
    width: 23px;
    background-image: url(/img/common/icon__arrow-down.svg);
    background-repeat: no-repeat;
    will-change: transform;
    transition: 0.3s;
}

.l-section .c-grid-child__txt--up:hover::before {
    background-image: url(/img/common/icon__arrow--hover-up.svg);
}

.l-section .c-grid-child__txt--down:hover::before {
    background-image: url(/img/common/icon__arrow--hover-down.svg);
}


.c-btn:hover {
    background-color: var(--color-blue);
    color: var(--color-off-white);
}

.c-btn:hover::before {
    /* transform: translate(5px, 0%); */
    background-image: url(/img/common/icon__arrow--hover.svg);
}

.c-btn__box {
    margin: 70px 0 0 0;
}

@media screen and (max-width: 768px) {
    .c-btn {
        font-size: var(--fs-m--pc);
        height: 55px;
    }

    .c-btn::before {
        top: 39%;
        right: 75px;
        height: 16px;
        width: 16px;
    }

    .l-section .c-grid-child__txt--up::before {
        top: 39%;
        right: 35px;
        height: 16px;
        width: 16px;
    }
}


.p-sub-list .c-list__item .c-btn--profile,
.p-sub__section--errors a {
    position: relative;
    color: var(--color-blue);
    font-weight: 700;
    transition: .3s;
}

.p-sub-list .c-list__item .c-btn--profile::before,
.p-sub__section--errors a::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 30%;
    right: -22px;
    height: 13px;
    width: 13px;
    background-image: url(/img/common/icon__arrow--v2.svg);
    background-repeat: no-repeat;
    will-change: transform;
    transition: .3s;
}

.p-sub-list .c-list__item .c-btn--profile:hover,
.p-sub__section--errors a:hover {
    opacity: 0.7;
    border-bottom: none;
    transition: .3s;
}

@media screen and (max-width: 768px) {
    .p-sub-list .c-list__item .c-btn--profile::before,
    .p-sub__section--errors a::before {
        top: 34%;
        right: -15px;
        height: 11px;
        width: 11px;
    }
}