@charset "UTF-8";

.agreement-list {
    display: flex;
    align-items: center;
    position: relative;
    min-height: 90px;
    width: 100%;
    background-color: #F4F5F8;
    border-bottom: #e5e5e5 1px solid;
    padding: 0 15px;
    box-sizing: border-box;
}

.agreement-list:after   {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    right: 20px;
    background: url(/common_c/images/common/icon/icon_pdf_black.svg) no-repeat left top;
    background-size: 20px 20px;
    width: 20px;
    height: 20px;
    display: inline-block;
}
.agreement-list-exception:after   {
    content: none;
}

@media (max-width: 768px) {
    .agreement-list {
        padding: 0 55px 0 15px;
    }
}