.download-wrap {
    padding: 1rem 1rem;
    border-bottom: 1px solid #D2D2D2;   
}

#download_btn {
    width: 80%;
    height: 150px;    
    margin-top: 3rem;
    margin-bottom: 1rem;
    margin-left: auto;
    margin-right: auto;    
    clip-path: polygon(
        30px 0%, 
        100% 0%,
        100% calc(100% - 30px),
        calc(100% - 30px) 100%,
        0% 100%,
        0% 30px
    );
    overflow: hidden;
}

#download_btn a {
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 0 80px;   
    width: 100%;
    height: 100%;
    background: var(--color-gold);
    color: var(--color-white);
    text-decoration: none;
    
    background-image:  url('/static/images/common/download/gameDownload_back.png');
}

#download_btn .guide {
    color: #FFF;
}
#download_btn .guide h1 { font-size: 40px; }
#download_btn .guide p { margin: 0; font-size: 18px; }

.btn-image {
    display: flex;
    align-items: center;
}

.gamedownload-btn-1 {
    font-size: 32px;
}

#download_guide {
    text-align: center;
    color: var(--color-gray3);
    margin-bottom: 2rem;
}

#download2 {
    margin-bottom: 3rem;
    text-align: center;
    color: var(--color-gray3);
}

.spec-title {
    margin-bottom: 1rem;
}

#spec_table {
    width: 100%;
    margin-bottom: 2rem;
    color: var(--color-dark);
    table-layout: fixed;
}

#spec_table tr th:first-of-type {
    width: 150px;
}

#spec_table tr th:nth-child(2),
#spec_table tr th:last-of-type {
    width: calc((100% - 150px) / 2);
}

#spec_table tr > th {
    background: #E4E6Eb;
    padding: 1rem 0;
}

#spec_table tr > td {
    padding: 0.5rem 0;
    border: 1px solid var(--color-lightgray);
    text-align: center;
}