﻿/* ========================================
   Greeting Page
======================================== */

.greeting-page {
    width: 100%;
    background: #fff;
}

.principle-page {
    width: 100%;
    background: #fff;
}

.history-page {
    width: 100%;
    background: #fff;
}

.certified-page {
    width: 100%;
    background: #fff;
}

.greeting-page section {
    display: block;
    min-height: 0;
}

.principle-page section {
    display: block;
    min-height: 0;
}

.history-page section {
    /*display: block;*/
    min-height: 0;
}

.certified-page section {
    display: block;
    min-height: 0;
}


/* ========================================
   Sub Title
======================================== */

.sub-title {
    width: 100%;
    padding: 10px 20px 30px;
    box-sizing: border-box;
}

.sub-title__inner {
    width: min(calc(100% - 120px), 1500px);
    max-width: none;
    margin: 0 auto;
}

.sub-title h1 {
    margin: 60px 0 0;
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    letter-spacing: -1.5px;
    text-align: left;
    color: #1A1A1A;
}

.sub-title__breadcrumb {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 24px;
    margin-bottom: 48px;

    font-size: 16px;
    color: #999;
}

.sub-title__breadcrumb a {
    display: flex;
    align-items: center;
}

.sub-title__breadcrumb img {
    width: 14px;
    height: 14px;
    object-fit: contain;
}

.sub-title__breadcrumb span {
    display: flex;
    align-items: center;
}

.sub-title__breadcrumb span::before {
    content: "";
    width: 5px;
    height: 5px;

    margin-right: 10px;

    border-top: 1px solid #bbb;
    border-right: 1px solid #bbb;

    transform: rotate(45deg);
}


/* ========================================
   Company Visual
======================================== */

.company-visual {
    width: 100%;
    position: relative;
}

.company-visual__image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.company-visual__image img {
    display: block;

    width: 100%;
    height: 100%;

    object-fit: cover;
    object-position: center;
}


/* ========================================
   Company Tabs
======================================== */

.company-tabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);

    max-width: none;
    width: min(calc(100% - 154px), 1466px);

    min-height: 70px;
    padding: 0;
    margin: 0;

    position: absolute;
    left: max(60px, calc((100% - 1500px) / 2));
    right: auto;
    bottom: 0;
    transform: none;
    z-index: 2;

    background: transparent;
}

.company-tabs::before {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    width: 150vw;
    height: 100%;
    transform: translateX(-50%);
    z-index: 0;
    background: rgba(18, 32, 43, 0.42);
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
}

.company-tabs__item {
    position: relative;
    z-index: 1;

    display: flex;
    align-items: center;
    justify-content: center;

    min-height: 70px;
    /*padding: 10px 1px;*/

    box-sizing: border-box;

    border-right: 0;

    color: rgba(255, 255, 255, 0.92);

    font-size: 20px;
    font-weight: 600;

    text-decoration: none;

    transition:
            background 0.2s ease,
            color 0.2s ease;
}

.company-tabs__item:last-child {
    border-right: 0;
}

.company-tabs__item:hover {
    background: rgba(61, 151, 199, 0.58);
    color: #fff;
}

.company-tabs__item.active {
    background: #58A5D6;
    color: #fff;
}


/* ========================================
   Greeting Content
======================================== */

.greeting {
    width: 100%;

    padding: 159px 0 165px;

    box-sizing: border-box;
}

.greeting__inner {
    display: grid;

    grid-template-columns:
        minmax(300px, 0.8fr)
        minmax(500px, 1.4fr);

    column-gap: 100px;

    width: min(calc(100% - 120px), 1500px);
    max-width: none;

    margin: 0 auto;
}

.greeting__title {
    width: 100%;
    max-width: 540px;
    justify-items: flex-start;

}

.greeting__title h2 {
    margin: 0;

    font-size: 32px;
    font-weight: 700;

    line-height: 1.5;

    letter-spacing: -0.5px;
    text-align: left;

    color: #222;
}

.greeting__content {
    width: 100%;
    max-width: 860px;
    height: auto;
    margin-bottom: 100px;

    font-size: 18px;

    line-height: 1.5;

    font-weight: 500;

    letter-spacing: -0.5px;

    color: #444;
}

.greeting__content p {
    margin: 0 0 26px;
}

.greeting__content p:last-child {
    margin-bottom: 0;
}


/* ========================================
   CEO
======================================== */

.greeting-ceo {
    width: min(calc(100% - 140px), 1500px);
    max-width: none;

    height: 230px;

    margin: 85px 0 0 auto;

    background: #f4f4f4;

    position: relative;

    overflow: visible;
}

.greeting-ceo__inner {
    width: 100%;
    height: 100%;

    position: relative;
}

.greeting-ceo__name {
    position: absolute;

    left: 31%;
    bottom: 45px;
    margin-right: 89px;

    transform: translateX(-20%);

    display: flex;
    align-items: baseline;

    gap: 8px;

    z-index: 2;
}

.greeting-ceo__name span {
    font-size: 20px;
    font-weight: 700;
    color: #666;
}

.greeting-ceo__name strong {
    font-size: 36px;
    font-weight: 700;
    color: #666;
}


/* 대표 이미지 */

.greeting-ceo__image {
    position: absolute;

    right: 360px;
    bottom: 0;

    height: 400px;
}

.greeting-ceo__image img {
    display: block;

    width: min(450px, 32vw);
    height: 400px;

    object-fit: contain;
}


/* ========================================
   Greeting Animation
======================================== */

.greeting-page.greeting-scroll-ready .greeting-animate {
    opacity: 0;
    transform: translateY(42px);
    transition:
            opacity 0.75s ease,
            transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: var(--greeting-delay, 0ms);
}

.greeting-page.greeting-scroll-ready .greeting-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.greeting-page.greeting-scroll-ready .company-visual__image img {
    transform: scale(1.045);
    transition: transform 1.2s ease;
}

.greeting-page.greeting-scroll-ready .company-visual.is-visible .company-visual__image img {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .greeting-page.greeting-scroll-ready .greeting-animate,
    .company-visual__image img {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ========================================
   Principle Content
======================================== */

.principle {
    width: 100%;
    padding: 90px 0 150px;
    box-sizing: border-box;
}

.principle__inner {
    width: min(calc(100% - 120px), 1500px);
    margin: 0 auto;
}

.principle__intro {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-bottom: 80px;
}

.principle__intro p {
    margin: 0;
    color: #1f1f1f;
    font-size: 48px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.principle__intro strong {
    color: #58A5D6;
    font-weight: 700;
}

.principle__watermark {
    width: min(calc(100% - 120px), 1500px);
    /*margin: 0 0 42px;*/
    color: #F2F2F2;
    font-size: clamp(268px, 8.7vw, 1200px);
    font-weight: 800;
    line-height: 0.95;
    letter-spacing: 23px;
    margin-bottom: 80px;
    text-align: left;
    white-space: nowrap;
    user-select: none;
}

.principle-list {
    display: flex;
    flex-direction: column;
    gap: 80px;
    width: 100%;
}

.principle-card {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    min-height: 600px;
}

.principle-card__image {
    width: 1080px;
    height: 600px;
    overflow: hidden;
    border-radius: 8px;
    background: #e9eef2;
}

.principle-card__image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.principle-card__text {
    position: absolute;
    bottom: -1px;
    z-index: 1;
    width: 630px;
    min-height: 350px;
    padding: 34px 38px;
    box-sizing: border-box;
    background: #f2f2f2;
    border-radius: 10px;
    text-align: left;
}

.principle-card__text span {
    display: block;
    margin-bottom: 10px;
    color: #58A5D6;
    font-size: 20px;
    margin-top: 20px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: 0;
    text-transform: uppercase;
    text-align: left;
}

.principle-card__text h2 {
    /*margin: 0 0 10px;*/
    color: #1A1A1A;
    font-size: 40px;
    font-weight: 600;
    line-height: 1.5;
    letter-spacing: -0.5px;
    margin-bottom: 15px;
    text-align: left;
}

.principle-card__text p {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin: 0;
    color: #1A1A1A;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.5;
    text-align: left;
    word-break: keep-all;
    overflow-wrap: break-word;
    /*letter-spacing: -0.2px;*/
}

.principle-card--right .principle-card__image {
    margin-right: auto;
}

.principle-card--right .principle-card__text {
    right: 0%;
    margin-left: 0;
}

.principle-card--right {
    transform: translateX(200px);
}

.principle-card--left .principle-card__image {
    margin-left: auto;
}

.principle-card--left {
    transform: translateX(-400px);
}

.principle-card--left .principle-card__text {
    left: 0%;
    margin-right: 0;
}


/* ========================================
   History Content
======================================== */

.company-history {
    width: 100%;
    padding: 80px 0 150px;
    box-sizing: border-box;
}

.company-history__inner {
    width: min(calc(100% - 170px), 1450px);
    margin-left: max(60px, calc((100% - 1500px) / 2));
    margin-right: auto;
}

.company-history__banner {
    position: relative;
    width: 100%;
    height: 280px;
    margin-bottom: 36px;
    overflow: hidden;
    border-radius: 20px;
    background: rgba(0, 0, 0, 0.2);
}

.company-history__banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.company-history__banner p {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px;
    color: #fff;
    background: rgba(0, 0, 0, 0.22);
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    text-align: center;
    word-break: keep-all;
}

.company-history__list {
    display: flex;
    flex-direction: column;
    margin-top: 64px;
    gap: 0;
}

.company-history__year {
    display: grid;
    grid-template-columns: 195px minmax(0, 1fr);
    column-gap: 36px;

    width: 100%;

    margin-bottom: 64px;
}

/* 왼쪽 연도 */
.company-history__year h2 {
    position: relative;
    

    margin: 0;
    /*margin-top: 14px;*/
    padding-top: 14px;
    text-align: left;

    color: #58A5D6;

    font-size: 44px;
    font-weight: 700;
    line-height: 1;
}

/* 연도 위 파란 라인 */
.company-history__year h2::before {
    content: "";

    position: absolute;
    top: 0;
    left: 0;

    width: 100%;
    height: 2px;

    background: #58A5D6;
}


/* 오른쪽 목록 */
.company-history__year ul {
    display: flex;
    flex-direction: column;

    margin: 0;
    padding: 0;

    list-style: none;

    border-top: 2px solid #E6E6E6;
}


/* 각 연혁 한 줄 */
.company-history__year li {
    display: grid;
    grid-template-columns: max-content minmax(0, 1fr);
    align-items: center;

    min-height: 68px;
    padding: 0 14px;

    border-bottom: 2px solid #E6E6E6;

    color: #1A1A1A;

    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;

    box-sizing: border-box;
}


/* 월 */
.company-history__year li span {
    color: #1A1A1A;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    min-width: 58px;
    white-space: nowrap;
}


/* 월 뒤 점 */
.company-history__year li span::after {
    content: "·";

    display: inline-block;

    margin-left: 15px;
    margin-right: 15px;
    color: #B3B3B3;
    font-weight: 600;
}

.company-history__year li span.company-history__label--text {
    font-size: 17px;
}


/* ========================================
   Certified Content
======================================== */

.certified-status {
    width: 100%;
    padding: 80px 0 0;
    box-sizing: border-box;
}

.certified-status__inner {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.certified-status__banner {
    position: relative;
    width: min(calc(100% - 170px), 1465px);
    height: 280px;
    margin-left: max(60px, calc((100% - 1500px) / 2));
    margin-right: auto;
    margin-bottom: 80px;
    overflow: hidden;
    border-radius: 20px;
    background: #dfe8ed;
}

.certified-status__banner img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.certified-status__banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.2);
}

.certified-status__banner p {
    position: absolute;
    inset: 0;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 24px;
    color: #fff;
    font-size: 40px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.5px;
    text-align: center;
    word-break: keep-all;
}

.certified-status__table-wrap {
    width: min(calc(100% - 170px), 1465px);
    margin-left: max(60px, calc((100% - 1500px) / 2));
    margin-right: auto;
    overflow-x: auto;
}

.certified-status__table {
    width: 100%;
    min-width: 980px;
    border-collapse: collapse;
    table-layout: fixed;
    color: #1A1A1A;
    font-size: 18px;
}

.certified-status__table caption {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.certified-status__table thead th {
    height: 60px;
    padding: 16px;
    background: #0B5495;
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.4;
    text-align: center;
    vertical-align: middle;
}

.certified-status__table tbody td {
    height: 52px;
    padding: 0 18px;
    border-bottom: 1px solid #E6E6E6;
    background: #fff;
    font-size: 18px;
    font-weight: 400;
    line-height: 1.45;
    text-align: center;
    vertical-align: middle;
    word-break: keep-all;
}

.certified-status__table tbody td:first-child {
    background: #F2F2F2;
}

.certified-status__table tbody tr:last-child td {
    border-bottom-width: 2px;
}

.certified-status__table tbody td:nth-child(3) {
    text-align: left;
    font-weight: 600;
}

.certified-status__table th:nth-child(4),
.certified-status__table td:nth-child(4) {
    white-space: nowrap;
}

.certified-status__mobile-type {
    display: none;
}

.certified-status__col-no {
    width: 70px;
}

.certified-status__col-year {
    width: 90px;
}

.certified-status__col-title {
    width: auto;
}

.certified-status__col-apply,
.certified-status__col-register {
    width: 210px;
}

.certified-status__certificates {
    width: 100%;
    margin-top: 80px;
    margin-left: 0;
    margin-right: 0;
    padding: 80px max(60px, calc((100% - 1465px) / 2)) 80px;
    box-sizing: border-box;
    background: #F2F2F2;
}

.certified-status__certificates h2 {
    margin: 0 0 54px;
    text-align: left;
    color: #222;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.certified-status__certificate-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: space-between;
    gap: 36px 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.certified-status__certificate-list li {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 100%;
    min-width: 0;
    text-align: center;
}

.certified-status__certificate-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 297 / 360;
    padding: 10px;
    box-sizing: border-box;
    background: #fff;
}

.certified-status__certificate-image img {
    display: block;
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 306px;
    object-fit: contain;
}

.certified-status__certificate-list p {
    margin: 0;
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

.certified-status__awards {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 80px max(60px, calc((100% - 1465px) / 2)) 80px;
    box-sizing: border-box;
    background: #fff;
}

.certified-status__awards h2 {
    margin: 0 0 54px;
    text-align: left;
    color: #222;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.certified-status__award-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: space-between;
    gap: 36px 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.certified-status__award-list li {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 100%;
    min-width: 0;
    text-align: center;
}

.certified-status__award-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 297 / 360;
    padding: 32px;
    box-sizing: border-box;
    border: 1px solid #cccccc;
    background: #fff;
}

.certified-status__award-image img {
    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.certified-status__award-list p {
    margin: 0;
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.5px;
    word-break: keep-all;
}

.certified-status__reports {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
    padding: 80px max(60px, calc((100% - 1465px) / 2)) 120px;
    box-sizing: border-box;
    background: #F2F2F2;
}

.certified-status__reports h2 {
    margin: 0 0 54px;
    text-align: left;
    color: #222;
    font-size: 32px;
    font-weight: 700;
    line-height: 1.5;
    letter-spacing: -0.5px;
}

.certified-status__report-list {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: space-between;
    gap: 54px 36px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.certified-status__report-list li {
    display: flex;
    flex-direction: column;
    gap: 23px;
    width: 100%;
    min-width: 0;
    text-align: center;
}

.certified-status__report-image {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: auto;
    aspect-ratio: 297 / 360;
    padding: 0;
    box-sizing: border-box;
    background: #fff;
}

.certified-status__report-image img {
    display: block;
    width: min(235px, 100%);
    height: auto;
    max-height: 306px;
    object-fit: contain;
}

.certified-status__report-list p {
    margin: 0;
    color: #222;
    font-size: 24px;
    font-weight: 400;
    line-height: 1.5;
    letter-spacing: -0.5px;
    word-break: keep-all;
}


/* ========================================
   Company Scroll Animation
======================================== */

.company-scroll-ready .company-animate {
    opacity: 0;
    transform: translateY(42px);
    transition:
            opacity 0.75s ease,
            transform 0.75s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: var(--company-delay, 0ms);
}

.company-scroll-ready .company-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.company-scroll-ready .company-history-row-animate {
    opacity: 0;
    transform: translateY(24px);
    transition:
            opacity 0.55s ease,
            transform 0.55s cubic-bezier(0.19, 1, 0.22, 1);
    transition-delay: var(--history-row-delay, 0ms);
}

.company-scroll-ready .company-history-row-animate.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.company-scroll-ready .company-visual__image img {
    transform: scale(1.045);
    transition: transform 1.2s ease;
}

.company-scroll-ready .company-visual.is-visible .company-visual__image img {
    transform: scale(1);
}

@media (prefers-reduced-motion: reduce) {
    .company-scroll-ready .company-animate,
    .company-scroll-ready .company-history-row-animate,
    .company-scroll-ready .company-visual__image img {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ========================================
   Tablet
======================================== */

@media (max-width: 1200px) {
    .certified-status__table-wrap {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    .certified-status__table {
        min-width: 0;
        font-size: 16px;
    }

    .certified-status__table thead th {
        padding: 14px 12px;
        font-size: 18px;
    }

    .certified-status__table tbody td {
        padding: 0 12px;
        font-size: 16px;
    }

    .certified-status__col-no {
        width: 58px;
    }

    .certified-status__col-year {
        width: 88px;
    }

    .certified-status__col-apply,
    .certified-status__col-register {
        width: 180px;
    }
}

@media (max-width: 1024px) {

    .sub-title {
        padding: 45px 0 25px;
    }

    .sub-title__inner {
        width: min(calc(100% - 60px), 1500px);
    }

    .sub-title h1 {
        font-size: 36px;
    }

    .company-visual__image {
        height: 240px;
    }

    .company-tabs {
        min-height: 64px;
        width: min(calc(100% - 60px), 1500px);
        left: 30px;
        padding: 0;
    }

    .company-tabs__item {
        min-height: 64px;
    }

    .greeting {
        padding: 85px 0 110px;
    }

    .greeting__inner {
        grid-template-columns:
            0.9fr
            1.3fr;

        column-gap: 55px;
        width: min(calc(100% - 60px), 1500px);
    }

    .greeting__title h2 {
        font-size: 28px;
    }

    .greeting__content {
        font-size: 16px;
    }

    .greeting-ceo {
        width: min(calc(100% - 60px), 1500px);
        height: 210px;
        margin-right: 0;
    }

    .greeting-ceo__name {
        left: 25%;
    }

    .greeting-ceo__image {
        right: 40px;
        height: 330px;
    }

    .greeting-ceo__image img {
        width: 350px;
        height: 330px;
    }

    .principle {
        padding: 80px 0 120px;
    }

    .principle__inner {
        width: min(calc(100% - 60px), 1500px);
    }

    .principle__watermark {
        font-size: 82px;
        letter-spacing: 4px;
    }

    .principle-card {
        min-height: 420px;
    }

    .principle-card__image {
        width: 72%;
        height: 420px;
    }

    .principle-card__text {
        width: 40%;
        min-height: 280px;
        padding: 24px 28px;
    }

    .principle-card--right,
    .principle-card--left {
        transform: none;
    }

    .principle-card__text span {
        margin-top: 0;
        font-size: 18px;
    }

    .principle-card__text h2 {
        font-size: 32px;
        margin-bottom: 12px;
    }

    .principle-card__text p {
        max-width: none;
        font-size: 17px;
        line-height: 1.55;
    }

    .company-history {
        padding: 80px 0 120px;
    }

    .company-history__inner {
        width: min(calc(100% - 74px), 980px);
        margin-left: 20px;
        margin-right: auto;
    }

    .company-history__banner {
        height: 126px;
    }

    .company-history__banner p {
        font-size: 18px;
    }

    .certified-status {
        padding: 80px 0 0;
    }

    .certified-status__inner {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .certified-status__banner,
    .certified-status__table-wrap {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    .certified-status__certificates,
    .certified-status__awards,
    .certified-status__reports {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .certified-status__banner {
        height: 280px;
        margin-bottom: 56px;
    }

    .certified-status__banner p {
        font-size: 20px;
    }

    .certified-status__certificates {
        padding: 50px 7% 58px;
    }

    .certified-status__awards {
        padding: 50px 7% 58px;
    }

    .certified-status__reports {
        padding: 50px 7% 70px;
    }

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

    .certified-status__award-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px;
    }

    .certified-status__report-list {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 36px;
    }

    .certified-status__award-list li {
        width: 100%;
    }

    .certified-status__report-list li {
        width: 100%;
    }

    .certified-status__certificate-image {
        width: 100%;
        height: auto;
        aspect-ratio: 297 / 360;
    }

    .certified-status__award-image {
        width: 100%;
        height: auto;
        aspect-ratio: 297 / 360;
    }

    .certified-status__report-image {
        width: 100%;
        height: auto;
        aspect-ratio: 297 / 360;
    }

    .company-history__year {
        grid-template-columns: 140px minmax(0, 1fr);
        column-gap: 20px;
    }

    .company-history__year h2 {
        font-size: 22px;
    }

    .company-history__year li {
        font-size: 14px;
    }

}


/* ========================================
   Mobile
======================================== */

@media (max-width: 768px) {

    .sub-title {
        padding: 32px 0 22px;
    }

    .sub-title__inner {
        width: min(calc(100% - 40px), 1500px);
    }

    .sub-title h1 {
        margin: 28px 0 0;

        font-size: 28px;

        letter-spacing: -1px;
    }

    .sub-title__breadcrumb {
        gap: 10px;
        margin-top: 16px;
        margin-bottom: 28px;
        font-size: 11px;
    }


    /* visual */

    .company-visual__image {
        height: 180px;
    }


    /* tabs */

    .company-tabs {
        grid-template-columns:
            repeat(2, 1fr);

        position: static;
        width: 100%;
        max-width: none;
        transform: none;
        margin-top: 0;
        min-height: 0;
        padding: 0;

        background: rgba(38, 55, 70, 0.74);
    }

    .company-tabs::before {
        display: none;
    }

    .company-tabs__item {
        min-height: 48px;
        padding: 10px 12px;

        font-size: 13px;

        border-bottom:
                1px solid rgba(255, 255, 255, 0.12);
    }


    /* content */

    .greeting {
        padding: 60px 0 90px;
    }

    .greeting__inner {
        display: grid;
        grid-template-columns: 1fr;
        width: min(calc(100% - 40px), 1500px);
        row-gap: 34px;
    }

    .greeting__title {
        max-width: none;
        margin-bottom: 0;
    }

    .greeting__title h2 {
        font-size: 24px;

        line-height: 1.55;
    }

    .greeting__content {
        max-width: none;
        margin-bottom: 0;
        font-size: 14px;

        line-height: 1.75;
    }


    /* CEO */

    .greeting-ceo {
        width: min(calc(100% - 40px), 1500px);
        height: 185px;

        margin: 100px auto 0;
    }

    .greeting-ceo__name {
        left: 25px;
        bottom: 25px;

        transform: none;

        display: block;
    }

    .greeting-ceo__name span {
        display: block;

        margin-bottom: 3px;

        font-size: 12px;
    }

    .greeting-ceo__name strong {
        font-size: 19px;
    }

    .greeting-ceo__image {
        right: -10px;

        height: 225px;
    }

    .greeting-ceo__image img {
        width: 255px;
        height: 225px;
    }

    .principle {
        padding: 60px 0 90px;
    }

    .principle__inner {
        width: min(calc(100% - 40px), 1500px);
    }

    .principle__intro,
    .principle__watermark,
    .principle-list {
        width: 100%;
    }

    .principle__intro p {
        font-size: 22px;
        line-height: 1.5;
    }

    .principle__watermark {
        margin-bottom: 30px;
        font-size: 44px;
        letter-spacing: 2px;
        text-align: left;
    }

    .principle-list {
        gap: 34px;
    }

    .principle-card {
        display: block;
        min-height: 0;
        transform: none;
    }

    .principle-card__image {
        width: 100%;
        height: 210px;
        border-radius: 6px 6px 0 0;
    }

    .principle-card__text,
    .principle-card--right .principle-card__text,
    .principle-card--left .principle-card__text {
        position: static;
        width: 100%;
        min-height: 0;
        right: auto;
        left: auto;
        margin: 0;
        padding: 26px 24px;
        border-radius: 0 0 6px 6px;
    }

    .principle-card--left .principle-card__text,
    .principle-card--left .principle-card__image {
        order: initial;
    }

    .principle-card__text h2 {
        font-size: 21px;
    }

    .principle-card__text p {
        width: 100%;
        height: auto;
        font-size: 14px;
    }

    .company-history {
        padding: 60px 0 90px;
    }

    .company-history__inner {
        width: calc(100% - 74px);
        margin-left: 20px;
        margin-right: auto;
    }

    .company-history__banner {
        height: 96px;
        margin-bottom: 28px;
    }

    .company-history__banner p {
        padding: 18px;
        font-size: 14px;
    }

    .certified-status {
        padding: 60px 0 0;
    }

    .certified-status__inner {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .certified-status__banner,
    .certified-status__table-wrap {
        width: calc(100% - 40px);
        margin-left: auto;
        margin-right: auto;
    }

    .certified-status__certificates,
    .certified-status__awards,
    .certified-status__reports {
        width: 100%;
        margin-left: 0;
        margin-right: 0;
    }

    .certified-status__banner {
        height: 96px;
        margin-bottom: 36px;
        border-radius: 8px;
    }

    .certified-status__banner p {
        padding: 18px;
        font-size: 14px;
    }

    .certified-status__table {
        min-width: 0;
        border-collapse: separate;
        border-spacing: 0 12px;
    }

    .certified-status__table colgroup,
    .certified-status__table thead {
        display: none;
    }

    .certified-status__table tbody,
    .certified-status__table tr,
    .certified-status__table td {
        display: block;
    }

    .certified-status__table tbody tr {
        position: relative;
        min-height: 178px;
        padding: 24px 18px 24px 168px;
        border: 1px solid #dde7f3;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 4px 16px rgba(15, 23, 42, .04);
    }

    .certified-status__table tbody td {
        height: auto;
        min-height: 0;
        padding: 0;
        border-bottom: 0;
        background: transparent;
        color: #222;
        font-size: 13px;
        font-weight: 500;
        line-height: 1.45;
        text-align: center;
        white-space: normal;
        word-break: keep-all;
    }

    .certified-status__table tbody td:first-child {
        position: absolute;
        top: 22px;
        left: 22px;
        width: 124px;
        background: transparent;
    }

    .certified-status__desktop-no {
        display: none;
    }

    .certified-status__mobile-type {
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 42px;
        padding: 0 16px;
        border-radius: 999px;
        background: #f0f0f0;
        color: #222;
        font-size: 13px;
        font-weight: 700;
        line-height: 1.25;
    }

    .certified-status__table tbody td:first-child::before {
        display: none;
    }

    .certified-status__table tbody td:nth-child(2) {
        display: none;
    }

    .certified-status__table tbody td:nth-child(3) {
        margin-bottom: 12px;
        text-align: center;
        font-size: 14px;
        font-weight: 600;
    }

    .certified-status__table tbody td:nth-child(3)::before,
    .certified-status__table tbody td:nth-child(4)::before,
    .certified-status__table tbody td:nth-child(5)::before,
    .certified-status__table tbody td[colspan="2"]::before {
        content: attr(data-label);
        display: block;
        margin: 0 0 4px;
        color: #6b7280;
        font-size: 11px;
        font-weight: 800;
        line-height: 1.3;
    }

    .certified-status__table tbody td:nth-child(4),
    .certified-status__table tbody td:nth-child(5),
    .certified-status__table tbody td[colspan="2"] {
        margin-top: 10px;
    }

    .certified-status__table tbody tr:last-child td {
        border-bottom-width: 0;
    }

    .certified-status__certificates {
        margin-top: 50px;
        padding: 38px 20px 46px;
    }

    .certified-status__certificates h2 {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .certified-status__awards {
        padding: 38px 20px 46px;
    }

    .certified-status__reports {
        padding: 38px 20px 58px;
    }

    .certified-status__awards h2 {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .certified-status__reports h2 {
        margin-bottom: 24px;
        font-size: 16px;
    }

    .certified-status__certificate-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .certified-status__award-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .certified-status__report-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 24px 18px;
    }

    .certified-status__certificate-list li {
        width: 100%;
        gap: 12px;
    }

    .certified-status__award-list li {
        width: 100%;
        gap: 12px;
    }

    .certified-status__report-list li {
        width: 100%;
        gap: 12px;
    }

    .certified-status__certificate-image {
        width: 100%;
        height: auto;
        aspect-ratio: 297 / 360;
    }

    .certified-status__award-image {
        width: 100%;
        height: auto;
        aspect-ratio: 297 / 360;
        padding: 16px;
    }

    .certified-status__report-image {
        width: 100%;
        height: auto;
        aspect-ratio: 297 / 360;
    }

    .certified-status__certificate-list p {
        margin-top: 12px;
        font-size: 12px;
    }

    .certified-status__award-list p {
        margin-top: 12px;
        font-size: 12px;
    }

    .certified-status__report-list p {
        margin-top: 12px;
        font-size: 12px;
    }

    .company-history__list {
        gap: 0;
    }

    .company-history__year {
        grid-template-columns: 78px minmax(0, 1fr);
        column-gap: 14px;
        min-height: 60px;
    }

    .company-history__year h2 {
        padding-top: 8px;
        font-size: 18px;
    }

    .company-history__year li {
        grid-template-columns: max-content minmax(0, 1fr);
        gap: 0;
        min-height: 34px;
        padding: 10px 0;
        font-size: 12px;
        line-height: 1.5;
    }

}


/* ========================================
   Small Mobile
======================================== */

@media (max-width: 480px) {

    .company-visual__image {
        height: 150px;
    }

    .company-tabs__item {
        font-size: 12px;
    }

    .greeting {
        padding-top: 50px;
    }

    .greeting__title h2 {
        font-size: 20px;
    }

    .greeting__content {
        font-size: 13px;
        line-height: 1.7;
    }

    .greeting-ceo {
        height: 170px;
    }

    .greeting-ceo__image {
        right: -40px;

        height: 205px;
    }

    .greeting-ceo__image img {
        width: 230px;
        height: 205px;
    }

    .principle__intro p {
        font-size: 19px;
    }

    .principle__watermark {
        font-size: 34px;
    }

    .principle-card__image {
        height: 178px;
    }

    .principle-card__text {
        padding: 22px 20px;
    }

    .certified-status__certificates {
        /*padding: 34px 16px 42px;*/
    }

    .certified-status__certificate-list {
        gap: 36px 36px;
    }

}

@media (max-width: 450px) {

    .certified-status__certificate-list,
    .certified-status__award-list,
    .certified-status__report-list {
        grid-template-columns: 1fr;
    }

}


@media (max-width: 425px) {

    .company-history__year {
        display: block;
    }

    .company-history__year h2 {
        width: 100%;
        margin-bottom: 14px;
        text-indent: 0;
    }

    .company-history__year ul {
        width: 100%;
    }

    .company-history__year li span.company-history__label--text {
        font-size: 14px;
    }

}

