/* SALES */
.company-sales {
    width: 100%;
    padding-bottom: 80px;
    background-color: #fff;
}

.sales-title {
    padding-top: 65px;
    text-align: center;
}
.sales-title h2 {
    font-size: 58px;
    color: #1E416B;
    letter-spacing: .3em;
}

.sales-inner {
    width: 78%;
    margin: 60px auto 0;
}
.sales-table {
    width: 100%;
    border-collapse: collapse;
    color: #1E416B;
}
.sales-table th,
.sales-table td {
    padding: 18px 20px;
    border-bottom: 1px solid #ccc;
    text-align: center;
    vertical-align: middle;
    line-height: 1.4;
}
.sales-table th {
    width: 25%;
    position: relative;
    color: #738EAA;
    font-size: 28px;
    font-style: italic;
}
.sales-table th::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    width: 1px;
    height: 1em;
    background-color: #ccc;
    transform: translateY(-50%);
}
.sales-table td {
    font-size: 28px;
    font-weight: bold;
}
.sales-table td:last-child {
    width: 40%;
    font-size: 24px;
    font-weight: normal;
}
.sales-unit {
    font-size: 22px;
    font-weight: normal;
}
/* SALES */

/* FOR IPHONE */
@media screen and (max-width: 480px) {
    .company-sales {
        padding-bottom: 45px;
    }
    .sales-title {
        padding-top: 10px;
    }
    .sales-title h2 {
        font-size: 26px;
    }
    .sales-inner {
        width: 94%;
        margin-top: 30px;
    }
    .sales-table {
        table-layout: fixed;
    }
    .sales-table th,
    .sales-table td {
        padding: 12px 3px;
        font-size: 14px;
    }
    .sales-table th {
        width: 20%;
    }
    .sales-table td:last-child {
        width: 43%;
        font-size: 11px;
        overflow-wrap: anywhere;
    }
    .sales-unit {
        display: inline-block;
        font-size: 10px;
    }
}

/* FOR IPAD */
@media screen and (min-width: 481px) and (max-width: 780px) {
    .company-sales {
        padding-bottom: 60px;
    }
    .sales-title h2 {
        font-size: 46px;
    }
    .sales-inner {
        width: 90%;
        margin-top: 40px;
    }
    .sales-table th,
    .sales-table td {
        padding: 15px 8px;
        font-size: 20px;
    }
    .sales-table th {
        width: 20%;
    }
    .sales-table td:last-child {
        font-size: 16px;
    }
    .sales-unit {
        font-size: 14px;
    }
}

@media screen and (min-width: 781px) and (max-width: 1080px) {
    .sales-title h2 {
        font-size: 46px;
    }
    .sales-inner {
        width: 85%;
        margin-top: 50px;
    }
    .sales-table th,
    .sales-table td {
        padding: 16px 12px;
        font-size: 24px;
    }
    .sales-table td:last-child {
        font-size: 20px;
    }
    .sales-unit {
        font-size: 18px;
    }
}