/*
---------------------------------------------
                Sub 0204
---------------------------------------------
*/

/* cont1 */
.cont1 .container {
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
}

.cont1 .desc {
    color: white;
    font-size: var(--font-2xl);
    font-weight: 600;
    line-height: 38.40px;
    word-break: keep-all;
}

@media (max-width: 1440px) {
    .cont1 .container {
        gap: 40px;
    }

    .cont1 .desc {
        font-size: var(--font-xl);
        line-height: 1.6;
    }
}

@media (max-width: 1280px) {
    .cont1 .container {
        gap: 30px;
    }

    .cont1 .desc {
        font-size: var(--font-lg);
    }
}

@media (max-width: 1024px) {
    .cont1 .container {
        justify-content: flex-end;
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }

    .cont1 .desc {
        font-size: var(--font-md);
    }
}

@media (max-width: 768px) {
    .cont1 .container {
        gap: 8px;
    }

    .cont1 .desc {
        font-size: var(--font-base);
    }
}

@media (max-width: 480px) {
    .cont1 .desc {
        font-size: var(--font-sm);
    }
}

/* cont2 */
.cont2 {
    display: block;
}

.cont2 .container {
    padding-top: 120px;
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    gap: 60px;
    position: static;
    height: auto;
    align-items: stretch;
    justify-content: flex-start;
}

.cont2 .title {
    font-size: var(--font-headline36);
    font-weight: 700;
    line-height: 1.6;
}

.cont2 .layout {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    position: relative;
}

.cont2 .layout input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.cont2 .tabs {
    display: flex;
    align-items: center;
    gap: 24px;
}

.cont2 .tabs label {
    padding-bottom: 4px;
    border-bottom: 2px solid transparent;
    color: var(--black-700);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 32px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
}

#tabpatent:checked~.tabs label[for="tabpatent"],
#tabdesign:checked~.tabs label[for="tabdesign"],
#tabmark:checked~.tabs label[for="tabmark"] {
    color: var(--orange);
    border-bottom-color: var(--orange);
    font-weight: 600;
}

.cont2 .tabs label:hover {
    color: var(--orange);
    border-bottom-color: transparent;
}

.cont2 .panels {
    width: 100%;
}

.cont2 .panel {
    display: none;
    overflow-x: auto;
    scrollbar-color: rgba(0, 0, 0, 0.28) rgba(0, 0, 0, 0.06);
    scrollbar-width: thin;
}

.cont2 .panel::-webkit-scrollbar {
    height: 8px;
}

.cont2 .panel::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0.06);
    border-radius: 999px;
}

.cont2 .panel::-webkit-scrollbar-thumb {
    background: rgba(0, 0, 0, 0.28);
    border-radius: 999px;
}

.cont2 .panel::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 0, 0, 0.4);
}

#tabpatent:checked~.panels .panel:nth-of-type(1),
#tabdesign:checked~.panels .panel:nth-of-type(2),
#tabmark:checked~.panels .panel:nth-of-type(3) {
    display: block;
}

.cont2 table {
    width: 100%;
    border-collapse: collapse;
    table-layout: fixed;
}

.cont2 col:nth-child(1) {
    width: 240px;
}

.cont2 col:nth-child(2) {
    width: 1040px;
}

.cont2 col:nth-child(3) {
    width: 190px;
}

.cont2 col:nth-child(4) {
    width: 170px;
}

.cont2 col:nth-child(5) {
    width: 64px;
}

.cont2 thead tr {
    border-top: 1px solid var(--black);
}

.cont2 tbody tr {
    border-top: 1px solid var(--black-400);
    transition: background-color 0.2s ease;
}

.cont2 th,
.cont2 td {
    padding: 16px;
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
}

.cont2 th {
    font-size: var(--font-md);
    font-weight: 600;
    line-height: 1.6;
}

.cont2 td {
    color: var(--black-900);
    font-size: var(--font-md);
    font-weight: 500;
    line-height: 1.6;
}

.cont2 tbody tr:hover {
    background-color: #f3f3f3;
}

@media (max-width: 1440px) {
    .cont2 .container {
        padding-top: 100px;
        gap: 56px;
    }

    .cont2 .title {
        font-size: 40px;
    }

    .cont2 .layout {
        gap: 32px;
    }

    .cont2 col:nth-child(1) {
        width: 200px;
    }

    .cont2 col:nth-child(2) {
        width: 600px;
    }

    .cont2 col:nth-child(3) {
        width: 160px;
    }

    .cont2 col:nth-child(4) {
        width: 140px;
    }

    .cont2 col:nth-child(5) {
        width: 60px;
    }
}

@media (max-width: 1280px) {
    .cont2 .container {
        padding-top: 90px;
        gap: 48px;
    }

    .cont2 .layout {
        gap: 28px;
    }

    .cont2 col:nth-child(1) {
        width: 180px;
    }

    .cont2 col:nth-child(2) {
        width: 480px;
    }

    .cont2 col:nth-child(3) {
        width: 150px;
    }

    .cont2 col:nth-child(4) {
        width: 130px;
    }

    .cont2 col:nth-child(5) {
        width: 60px;
    }
}

@media (max-width: 1024px) {
    .cont2 .container {
        padding-top: 80px;
        gap: 40px;
    }

    .cont2 .layout {
        gap: 24px;
    }

    .cont2 .title {
        font-size: var(--font-headline32);
    }

    .cont2 .tabs label {
        font-size: var(--font-md);
    }

    .cont2 th,
    .cont2 td {
        font-size: var(--font-base);
    }

    .cont2 table {
        min-width: 760px;
    }

    .cont2 col:nth-child(1) {
        width: 160px;
    }

    .cont2 col:nth-child(2) {
        width: 360px;
    }

    .cont2 col:nth-child(3) {
        width: 140px;
    }

    .cont2 col:nth-child(4) {
        width: 120px;
    }

    .cont2 col:nth-child(5) {
        width: 60px;
    }
}

@media (max-width: 768px) {
    .cont2 .container {
        padding-top: 70px;
        gap: 32px;
    }

    .cont2 .layout {
        gap: 20px;
    }

    .cont2 .tabs {
        gap: 16px;
    }

    .cont2 th,
    .cont2 td {
        overflow-wrap: anywhere;
        white-space: normal;
    }

    .cont2 th:last-child,
    .cont2 td:last-child {
        padding-left: 8px;
        padding-right: 8px;
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: keep-all;
    }

    .cont2 th:nth-child(4),
    .cont2 td:nth-child(4) {
        white-space: nowrap;
        overflow-wrap: normal;
        word-break: keep-all;
    }

    .cont2 table {
        min-width: 780px;
    }

    .cont2 col:nth-child(1) {
        width: 150px;
    }

    .cont2 col:nth-child(2) {
        width: 320px;
    }

    .cont2 col:nth-child(3) {
        width: 130px;
    }

    .cont2 col:nth-child(4) {
        width: 120px;
    }

    .cont2 col:nth-child(5) {
        width: 60px;
    }
}

@media (max-width: 480px) {
    .cont2 .container {
        padding-top: 60px;
        gap: 20px;
    }

    .cont2 .title {
        font-size: var(--font-4xl);
    }

    .cont2 .tabs label {
        font-size: var(--font-base);
        line-height: 1.6;
    }

    .cont2 .tabs {
        flex-wrap: wrap;
        row-gap: 10px;
    }

    .cont2 .layout {
        gap: 10px;
    }

    .cont2 table {
        min-width: 700px;
    }

    .cont2 col:nth-child(1) {
        width: 130px;
    }

    .cont2 col:nth-child(2) {
        width: 280px;
    }

    .cont2 col:nth-child(3) {
        width: 120px;
    }

    .cont2 col:nth-child(4) {
        width: 110px;
    }

    .cont2 col:nth-child(5) {
        width: 60px;
    }
}

/* cont3 */
.cont3 .container {
    display: flex;
    flex-direction: row;
    gap: 180px;
}

.cont3 .title {
    font-size: var(--font-headline36);
    font-weight: 700;
    line-height: 1.6;
    flex-shrink: 0;
}

.cont3 .list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 4px;
}

.cont3 .item {
    padding: 0 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 26px;
}

.cont3 .thumb {
    width: 280px;
    height: auto;
    display: block;
    border: 1px solid var(--black-400);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    will-change: transform;
}

.cont3 .name {
    color: var(--black);
    font-size: var(--font-lg);
    font-weight: 500;
    line-height: 1.6;
    text-align: center;
    word-break: keep-all;
    transition: color 0.2s ease;
}

.cont3 .item:hover .thumb,
.cont3 .item:focus-within .thumb {
    transform: translateY(-4px) scale(1.01);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
}

@media (max-width: 1440px) {
    .cont3 .container {
        gap: 120px;
    }

    .cont3 .title {
        font-size: var(--font-headline32);
    }

    .cont3 .list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .cont3 .item {
        padding: 0 20px;
        gap: 22px;
    }

    .cont3 .thumb {
        width: 240px;
    }
}

@media (max-width: 1280px) {
    .cont3 .container {
        gap: 90px;
    }

    .cont3 .list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 18px;
    }

    .cont3 .item {
        padding: 0 16px;
        gap: 20px;
    }

    .cont3 .thumb {
        width: 220px;
    }
}

@media (max-width: 1024px) {
    .cont3 .container {
        flex-direction: column;
        gap: 40px;
    }

    .cont3 .title {
        font-size: var(--font-headline32);
    }

    .cont3 .list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 20px;
    }

    .cont3 .item {
        padding: 0 12px;
        gap: 18px;
    }

    .cont3 .thumb {
        width: 210px;
    }
}

@media (max-width: 768px) {
    .cont3 .container {
        gap: 32px;
    }

    .cont3 .list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 18px;
    }

    .cont3 .item {
        padding: 0 8px;
        gap: 16px;
    }

    .cont3 .thumb {
        width: 200px;
    }

    .cont3 .name {
        font-size: var(--font-base);
    }
}

@media (max-width: 480px) {
    .cont3 .container {
        gap: 24px;
    }

    .cont3 .title {
        font-size: var(--font-4xl);
    }

    .cont3 .list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 16px;
    }

    .cont3 .item {
        padding: 0;
        gap: 14px;
    }

    .cont3 .thumb {
        width: 100%;
        max-width: 200px;
    }

    .cont3 .name {
        font-size: var(--font-base);
    }
}
