@charset "UTF-8";
/* Index CSS Document */
.p_btn {
    display: table;
    width: 100%;
    max-width: 345px;
    height: 70px;
    font-size: 18px;
    font-weight: 700;
    text-align: center;
    color: #FFFFFF;
    background-color: #3B3230;
}
.p_btn > * {
    display: table-cell;
    vertical-align: middle;
}

.p_link-txt {
    font-size: 16px;
}
.p_link-txt > * {
    position: relative;
    padding-right: 15px;
}
.p_link-txt > *::after {
    content: "";
    position: absolute;
    display: block;
    width: 4px;;
    height: 4px;
    border-top: 1px solid #3B3230;
    border-right: 1px solid #3B3230;
    top: 50%;
    right: 0;
    transform: translate3d(0, -50%, 0) rotate(45deg);
}

@media screen and (max-width: 375px) {
    .p_btn {
        height: 55px;
        font-size: 16px;
    }
}
