@font-face {
    font-family: 'DIN';
    src: url('../font/DIN_Condensed_Bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}



/* sub common */
.sub_top {
    position: relative;
}

.sub_top video {
    width: 100%;
    height: 500px;
    object-fit: cover;
}

.sub_top .slogan_box {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    text-align: left;
    color: var(--wc);
    font-family: 'Montserrat', sans-serif;
    font-size: 60px;
}

.sub_top .slogan_box p {
    font-size: 28px;
    margin-bottom: 15px;
}

.sub_top .slogan_box h2 {
    font-weight: 700;

    text-shadow:
        2px 2px 5px rgba(0, 0, 0, 0.2),
        -2px -2px 5px rgba(0, 0, 0, 0.2),
        2px -2px 5px rgba(0, 0, 0, 0.2),
        -2px 2px 5px rgba(0, 0, 0, 0.2);
}

@media (max-width:768px) {

    /* sub common - m */
    .sub_top {
        position: relative;
        height: 235px;
    }

    .sub_top img {
        object-fit: cover;
        height: 235px;
    }

    .sub_top video {
        width: 100%;
        height: 300px;
        object-fit: cover;
    }

    .sub_top .slogan_box {
        position: absolute;
        top: 52%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
        color: var(--wc);
        font-family: 'Montserrat', sans-serif;
        font-size: 20px;
    }

    .sub_top .slogan_box h2 {
        font-weight: 700;
        font-size: 20px;
        text-shadow:
            2px 2px 5px rgba(0, 0, 0, 0.2),
            -2px -2px 5px rgba(0, 0, 0, 0.2),
            2px -2px 5px rgba(0, 0, 0, 0.2),
            -2px 2px 5px rgba(0, 0, 0, 0.2);
    }
}

/* navigation */
.sub_nav {
    margin: -60px auto 0;
    position: relative;
    color: var(--bc);
    background: var(--wc);
    z-index: 998;
    border-top: none;
    border: 1px solid #d1d1d1;
}

.sub_nav .sub_list {
    display: flex;
    align-items: center;
    font-size: 18px;
}

.sub_nav .sub_list>li .sel1-menu {
    padding-right: 15px;
    border-right: 2px solid #cccccc;
}

.sub_nav .sub_list>li .sel1-menu:last-child {
    padding-left: 15px;
}

.sub_nav .sub_list>li:first-child {
    border-right: none;

    width: 60px;
    height: 70px;
    background: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}

.pc_none{
    display: none;
}
@media (max-width:768px) {

    /* navigation - m */
    .sub_nav {
        margin: -40px auto 0;
        position: relative;
        color: var(--bc);
        background: var(--wc);
        border: 0px solid #e8e8e8;
        z-index: 998;
        border-bottom: 1px solid #e8e8e8;
    }

    .sub_nav .sub_list {
        display: flex;
        align-items: center;
        font-size: 11px;
        padding: 0 0 0 0;
    }

    .sub_nav .sub_list>li {
        border-right: 0;
    }

    .sub_nav .sub_list>li:first-child {
        border-right: none;

        width: 40px;
        height: 40px;

        display: flex;
        justify-content: center;
        align-items: center;

        width: 10%;
    }


    .sub_nav .sub_list>li:nth-child(3) {
        border-right: none;
    }

    .sub_nav .sub_list .home {
        font-variation-settings:
            'FILL' 1,
            'wght' 100,
            'GRAD' 0,
            'opsz' 0
    }

    .sub_nav .sub_list>li .sel1-menu {
        font-size: 11px;
        padding-right: 9px;
        border-right: 1px solid #cccccc;
    }
}

/* nice-select styling */
.nice-select {
    border-radius: 0px;
    border: none;
    font-size: 17px;
    font-weight: 600;
    height: 60px;
    line-height: 60px;
    /* width: 300px; */
    background-color: transparent;
    padding-left: 15px;
    color: #08295e;
    font-weight: 700;
    min-width: auto;
}

.sel1-menu {
    color: #7f7f7f;
}

.nice-select:after {
    right: 15px;
    border-bottom: 2px solid #08295e;
    border-right: 2px solid #08295e;
    height: 8px;
    width: 8px;
}

.nice-select .list {
    border-radius: 0px;
    color: var(--bc);
}

.nice-select .option {
    padding-left: 15px;
    font-weight: 500;
    min-width: auto;

}

.nice-select .option.selected {
    color: #08295e;
}

@media (max-width: 768px) {

    /*  nice-select - m */
    .nice-select {
        border-radius: 0px;
        border: none;
        font-size: 11px;
        font-weight: 400;
        height: 40px;
        line-height: 40px;
        width: 100%;
        background-color: transparent;
        padding-left: 15px;
        min-width: 50px;
    }

    .nice-select:after {
        right: 15px;
        border-bottom: 1px solid var(--bc);
        border-right: 1px solid var(--bc);
        height: 6px;
        width: 6px;
    }

    .nice-select .list {
        width: auto%;
        border-radius: 0px;
        color: var(--bc);
    }

    .nice-select .option {
        padding-left: 15px;
        font-size: 11px;
        min-width: auto;
    }

    .sub_nav .sub_list>li .sel1-menu:last-child {
        padding-left: 9px;
    }
}


/* subpage common*/
.sub_content {
    padding-top: 150px;
}

.sub_content section {
    margin-bottom: 150px;
}

.page_tit {
    margin: 0 auto 48px auto;
}

.page_tit .big_tit {
    display: block;
    font-size: 100px;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;

    margin: -63px auto 0;
    position: relative;

    color: rgba(0, 0, 0, 0.5);
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
}

.page_tit h2 {
    text-align: center;
    color: var(--bc);

    font-size: 45px;
    font-weight: 700;
}

.sub_container p {
    font-size: 20px;
    line-height: 1.4;
}

@media (max-width: 768px) {

    /* subpage common*/
    .sub_content {
        padding-top: 30px;
    }

    .sub_content section {
        margin-bottom: 30px;
    }

    .page_tit {
        margin: 0 auto 24px auto;
    }

    .page_tit .big_tit {
        display: block;
        font-size: 30px;
        font-family: 'Montserrat', sans-serif;
        font-weight: 600;

        margin: -19px auto 0;
        position: relative;

        color: rgba(0, 0, 0, 0.5);
        text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.2);
    }

    .page_tit h2 {
        text-align: center;
        color: var(--bc);

        font-size: 20px;
        font-weight: 700;
    }

    .sub_container p {
        font-size: 11px;
        line-height: 15px;
    }
}

/* Main_Menu : 01 */
/* Sub_Menu : 1-1 =========================================== */
.subtit_wrap {
    margin: 0 auto 48px auto;
}

.subtit_wrap span {
    font-family: 'Montserrat', sans-serif;
    color: var(--mc);
    font-size: 18px;
    font-weight: 600;
    display: block;
    margin: 0 0 24px 0;
}

.subtit_wrap .sub_tit_box {
    display: flex;
    gap: 100px;
}

.subtit_wrap .sub_tit_box li {
    position: relative;
}

.subtit_wrap .sub_tit_box li~li::before {
    content: "";
    position: absolute;
    top: 50%;
    left: -50px;
    transform: translate(0, -50%);
    width: 1px;
    height: 90%;
    background: #ccc;
}

.subtit_wrap .sub_tit_box li:nth-child(1) {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
    color: var(--bc);
}

.subtit_wrap .sub_tit_box li:nth-child(2) {
    font-size: 18px;
    line-height: 1.4;
    flex: 2;
    text-align: justify;
}

.pc-none {
    display: none;
}

.mi_vi {
    background: url(../images/mivi_banner.jpg) no-repeat center center/cover;
    /* height: 600px; */
}

.mi_vi .subtit_wrap span {
    text-align: left;
}

.mi_vi .subtit_wrap .sub_tit_box li:nth-child(1) {
    color: var(--wc);
    text-align: left;
}

.mi_vi .subtit_wrap .sub_tit_box li:nth-child(2) {
    color: var(--wc);
    text-align: justify;
}


.mi_vi .mivi_container {
    gap: 30px;
}

.mi_vi .mivi_container>* {
    flex: 1;
}

.mi_vi .mivi_container figure {
    position: relative;

    background: rgba(255, 255, 255, .06);
    border-radius: 5px;

    width: 410px;
    height: 322px;
    text-align: center;

    overflow: hidden;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.mi_vi .mivi_container .img_box {
    margin: 0 0 48px 0;
}

.mi_vi .mivi_container .img_box img {
    height: 120px;
}

.mi_vi .mivi_container strong {
    color: var(--wc);
    display: block;
    font-size: 20px;
    font-weight: 500;
}

.mi_vi .mivi_container .cover {
    position: absolute;
    bottom: 0;
    color: var(--wc);
    padding: 60px 40px;
    text-align: center;

    position: absolute;
    inset: 0 auto auto 100%;
    width: 100%;
    /* height: calc(100% - 56px); */
    height: 322px;

    display: flex;
    flex-direction: column;

    background: rgba(0, 0, 0, 1);

    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.mi_vi .mivi_container figure:hover .cover {
    inset: 0 auto auto 0;
    opacity: 1;
}

/* 
.mi_vi .sub_container .cover h3 {
    font-family: 'Montserrat', sans-serif;
    font-size: 30px;
    font-weight: 600;
    margin: 0 0 16px 0;
}

.mi_vi .sub_container .cover strong {
    display: block;
    font-size: 20px;
    font-weight: 300;
    margin: 0 0 24px 0;
} */

/* .mi_vi .sub_container .cover p {
    text-align: justify;
    word-break: break-all;
    font-weight: 200;
    line-height: 1.4;
    font-size: 16px;
} */

.mi_vi .mivi_container .cover .cv_wrap {
    color: var(--wc);
    text-align: left;
    font-size: 18px;
    line-height: 1.4;
}

.mi_vi .mivi_container .cover .cv_wrap .cv_txt {
    margin: 0 0 24px 0;

    font-size: 16px;
    line-height: 1.4;

}

.mi_vi .mivi_container .cover .cv_wrap .desc:last-child {
    margin: 0 0 0 0;
}

.mi_vi .subtit_wrap,
.history .subtit_wrap {
    text-align: center;
}

.mi_vi .subtit_wrap h2 {
    color: var(--wc);
}

.mi_vi .subtit_wrap h2,
.history .subtit_wrap h2 {
    font-size: 32px;
    line-height: 42px;
    font-weight: 700;
}

.history .subtit_wrap h2 {
    color: var(--bc);
}

.history .history-cont {
    border-top: 2px solid #666;
    border-bottom: 2px solid #666;
}

.history .history-cont .box-wrap {
    border-bottom: 1px solid #ddd;
    padding: 48px 0;

    display: flex;
}

.history .history-cont .box-wrap:last-child {
    border: none;
    /* padding-bottom: 0; */
}

.history .history-cont .box-wrap .h_box {
    display: flex;
}

.history .history-cont .box-wrap .year {
    color: var(--bc);
    font-size: 32px;
    font-weight: 700;
    /* margin: 0 0 24px 0; */

    /* font-family: 'Montserrat', sans-serif; */
    min-width: 200px;
}

.history .history-cont .box-wrap .month {
    width: 100px;
    height: 100%;
}

.history .history-cont .box-wrap ul {
    width: calc(100% - 100px);

}

.history .history-cont .box-wrap ul li {
    position: relative;
    font-size: 18px;
    line-height: 28px;
    padding-left: 15px;
}

.history .history-cont .box-wrap ul li::before {
    content: '';
    display: inline-block;
    width: 3px;
    height: 3px;
    background: var(--mc);
    border-radius: 50px;
    top: 12px;
    left: 0;
    vertical-align: middle;
    position: absolute;
}

.business03 {
    margin-bottom: 150px;
}

@media (max-width: 768px) {

    /* Sub_Menu : 1-1 (m) */
    .subtit_wrap {
        margin: 0 auto 24px auto;
    }

    .subtit_wrap span {
        font-family: 'Montserrat', sans-serif;
        color: var(--mc);
        font-size: 12px;
        font-weight: 600;
        display: block;
        margin: 0 0 8px 0;
    }

    .subtit_wrap .sub_tit_box {
        display: flex;
        gap: 30px;

        flex-direction: column;
    }

    .subtit_wrap .sub_tit_box li {
        position: relative;
    }

    .subtit_wrap .sub_tit_box li~li::before {
        content: "";
        position: absolute;
        /* top: 50%;
        left: -50px;
        transform: translate(0, -50%);
        width: 1px;
        height: 90%; */

        width: 100%;
        height: 1px;
        background: #ccc;

        top: -15px;
        left: 0;
    }

    .subtit_wrap .sub_tit_box li:nth-child(1) {
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
        color: var(--bc);
    }

    .subtit_wrap .sub_tit_box li:nth-child(2) {
        font-size: 12px;
        line-height: 1.4;
        /* flex: 2; */
        text-align: justify;
    }

    .mi_vi {
        background: url(../images/mivi_banner.jpg) no-repeat center center/cover;
        /* height: 600px; */
        height: 100%;
    }

    .mi_vi .mivi_container {
        gap: 15px;

        flex-direction: column;
    }

    .mi_vi .mivi_container>* {
        flex: 1;
    }

    .mi_vi .mivi_container figure {
        position: relative;

        background: rgba(255, 255, 255, .06);
        border-radius: 5px;

        /* width: 410px;
        height: 400px; */
        width: 100%;
        height: 322px;
        text-align: center;

        padding-top: 24px;
        padding-bottom: 24px;

        pointer-events: none;

    }

    .mi_vi .mivi_container .img_box {
        margin: 0 0 24px 0;

    }

    .mi_vi .mivi_container .img_box img {
        height: 60px;
    }

    .mi_vi .mivi_container .cover {
        position: static;
        bottom: 0;
        color: var(--wc);
        padding: 20px;
        text-align: center;

        padding-bottom: 0;

        display: none;
    }


    .mi_vi .mivi_container strong {
        color: var(--wc);
        display: block;
        font-size: 16px;
        font-weight: 500;
    }

    .mi_vi .mivi_container .cover p {
        font-weight: 200;
        line-height: 1.4;
        font-size: 12px;

        width: 80%;
        margin: 0 auto;
    }

    .history .subtit_wrap {
        text-align: center;
    }

    .history .subtit_wrap h2 {
        font-size: 20px;
        line-height: 30px;
        font-weight: 700;
        color: var(--bc);
    }

    .history .history-cont {
        border-top: 2px solid #666;
        border-bottom: 2px solid #666;

        width: 90%;
    }

    .history .history-cont .box-wrap {
        border-bottom: 1px solid #ddd;
        padding: 24px 0;

        display: flex;
        flex-direction: column;
    }

    .history .history-cont .box-wrap:last-child {
        border: none;
        /* padding-bottom: 0; */
    }

    .history .history-cont .box-wrap .h_box {
        display: flex;
    }

    .history .history-cont .box-wrap .year {
        color: var(--bc);
        font-size: 20px;
        font-weight: 700;
        margin: 0 0 12px 0;

        /* font-family: 'Montserrat', sans-serif; */
        min-width: 200px;
    }

    .history .history-cont .box-wrap .month {
        width: 100px;
        height: 100%;

        display: none;
    }

    .history .history-cont .box-wrap ul {
        /* width: calc(100% - 100px); */
        width: 100%;
    }

    .history .history-cont .box-wrap ul li {
        position: relative;
        font-size: 12px;
        line-height: 1.4;
        padding-left: 12px;
    }

    .history .history-cont .box-wrap ul li::before {
        content: '';
        display: inline-block;
        width: 3px;
        height: 3px;
        background: var(--mc);
        border-radius: 50px;
        top: 6px;
        left: 0;
        vertical-align: middle;
        position: absolute;
    }

}

.business_01 .btn_box {
    margin-bottom: 60px;
}

/* Sub_Menu : 1-2 =========================================== */
.greeting .greet_txt strong {
    display: block;
    font-size: 26px;
    line-height: 1.2;
    font-weight: 700;
    color: var(--bc);
    margin: 0 0 48px 0;
}

.greeting .greet_txt .desc {
    text-align: justify;
    word-break: keep-all;
}

.greeting .greet_txt .desc .d_txt {
    margin: 0 0 24px 0;
    font-size: 18px;
    line-height: 1.4;
}

.greeting .greet_txt .name {
    display: block;
    text-align: right;
    font-weight: 500;
    font-size: 24px;
    color: var(--bc);
    font-weight: 700;

    position: relative;
}

.greeting .greet_txt .name::before {
    position: absolute;
    content: "";
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: rgba(194, 153, 73, 0.1);
    right: 100px;
    top: -50px;
}

@media (max-width: 768px) {

    /* Sub_Menu : 1-2  */
    .greeting .greet_txt strong {
        display: block;
        font-size: 18px;
        line-height: 1.2;
        font-weight: 700;
        color: var(--bc);
        margin: 0 0 24px 0;
    }

    .greeting .greet_txt .desc {
        text-align: justify;
        word-break: break-all;
    }

    .greeting .greet_txt .desc .d_txt {
        margin: 0 0 12px 0;
        font-size: 12px;
        line-height: 1.4;
    }

    .greeting .greet_txt .name {
        display: block;
        text-align: right;
        font-weight: 500;
        font-size: 12px;
        color: var(--bc);
        font-weight: 700;

        position: relative;
    }

    .greeting .greet_txt .name::before {
        position: absolute;
        content: "";
        width: 50px;
        height: 50px;
        border-radius: 50%;
        background: rgba(194, 153, 73, 0.1);
        right: 50px;
        top: -25px;
    }
}


/* Sub_Menu : 1-3 =========================================== */
.tabnav {
    border: 1px solid #dedede;
    display: flex;
}

.tabnav>* {
    flex: 1;
}

.tabnav li {
    text-align: center;
    border-right: 1px solid #ddd;
}

.tabnav li:last-child {
    border-right: none;
}

.tabnav li a {
    position: relative;
    display: block;
    font-size: 20px;
    line-height: 60px;
    font-weight: 500;
    text-decoration: none;
    color: var(--bc);
}

.tabnav li a.active {
    background: var(--mc);
    color: var(--wc);
}

.tabcontent {
    padding: 50px 0 0;
    border-top: none;
}

.tabcontent:last-child {
    padding-bottom: 0;
}

#tab01 .patent_container,
#tab02 .skill_container_01,
#tab02 .skill_container_02,
#tab02 .skill_container_03 {
    display: flex;
    gap: 52px;
    margin-bottom: 70px;
    justify-content: flex-start;
}

#tab01 .patent_box .p_img,
#tab02 .skill_box .s_img {
    margin: 0 0 16px 0;
}

#tab01 .patent_box .p_img img,
#tab02 .skill_box .s_img img {
    width: 100%;
    height: 238px;
    object-fit: cover;
    border: 1px solid #dedede;
    padding: 3px;
}

#tab01 .patent_box .p_txt,
#tab02 .skill_box .s_txt {
    text-align: center;
    width: 170px;
    word-break: keep-all;
}

#tab01 .patent_box .p_txt span,
#tab02 .skill_box .s_txt span {
    font-size: 18px;
    line-height: 1.2;
    display: block;
}

/* r */
@media (max-width:768px) {

    .tabnav {
        border: 0;
        display: flex;
    }

    .tabnav>* {
        flex: 1;
    }

    .tabnav li {
        text-align: center;
        border-right: 1px solid #ddd;
    }

    .tabnav li:last-child {
        border-right: none;
    }

    .tabnav li a {
        position: relative;
        display: block;
        font-size: 14px;
        line-height: 44px;
        font-weight: 500;
        text-decoration: none;
        color: var(--bc);
    }

    .tabnav li a.active {
        background: var(--mc);
        color: var(--wc);

    }

    .tabcontent {
        padding: 0;
        border: 0;
        border-top: none;
    }

    #tab01 .patent_container,
    #tab02 .skill_container_01,
    #tab02 .skill_container_02,
    #tab02 .skill_container_03 {
        display: flex;
        gap: 15px;
        justify-content: center;
        margin-bottom: 15px;
        display: grid;
        grid-template-columns: 1fr 1fr;
    }


    #tab01 .patent_box .p_img,
    #tab02 .skill_box .s_img {
        margin: 0 0 10px 0;
    }

    #tab01 .patent_box .p_img img,
    #tab02 .skill_box .s_img img {
        width: 100%;

    }

    #tab01 .patent_box .p_txt,
    #tab02 .skill_box .s_txt {
        text-align: center;
        width: auto;
        word-break: keep-all;
    }

    #tab01 .patent_box .p_txt span,
    #tab02 .skill_box .s_txt span {
        font-size: 11px;
        line-height: 18px;
        display: block;
    }

    #tab01 .patent_box br {
        display: inline-block;
        content: "";
        padding: 0 2px;
    }
}

.table-c {
    text-align: center !important;
}

/* Sub_Menu : 1-4 =========================================== */
.location .map_img {
    height: 600px;
    border: 1px solid #eee;
}

.location .address {
    padding-top: 15px;
}

.location .address h3 {
    font-size: 35px;
    font-weight: 700;
    margin: 60px 0 20px 0;
    color: #000;
}

.location .address li {
    display: flex;
    width: 100%;
    padding: 23px 0;
    border-bottom: 1px solid #737373;
    font-size: 18px;
    align-items: center;
}

.location .address li .info {
    background-color: #0A1D4C;
    border-radius: 100px;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
}


.location .address li .fax {
    margin-left: 80px;
}

.location .address li .info img {
    width: 53%;
}

.location .address li .num {
    padding-left: 13px;
    font-size: 20px;
}

@media (max-width: 768px) {

    .location .map_img {
        height: 340px;
    }

    .location .map_img iframe {
        height: 340px;
    }

    .location .address {
        padding-top: 5px;
    }

    .location .address li {
        display: flex;
        width: 100%;
        flex-wrap: nowrap;
        align-items: flex-start;
        flex-direction: column;
        padding: 0;
        border-bottom: 0;
        font-size: 14px;
        margin-bottom: 0px;
    }

    .location .address li .info {
        color: var(--bc);
        font-weight: 600;
        width: 30px;
        height: 30px;
        padding-left: 0;

        margin: 0 0 8px 0;
    }

    .location .address h3 {
        font-size: 13px;
        margin: 15px 0;
    }

    .location .address li .num {
        width: 100%;
        font-size: 11px;
        margin-bottom: 15px;
        padding-left: 0;
    }

    .location .address li .info img {
        width: 50%;
    }

}

.c_black {
    color: #333 !important;
}

/* Main_Menu : 02 */
/* Sub_Menu : 2-1~4 =========================================== */
.business_01 .sub_container,
.business_02 .sub_container,
.business_03 .sub_container,
.business_04 .sub_container {
    gap: 100px;
    width: 100%;
}

.business_01 .sub_container>*,
.business_02 .sub_container>*,
.business_03 .sub_container>*,
.business_04 .sub_container>* {
    flex: 1;
}

.b_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;

    border-radius: 30px;
}

.prodcut-txt {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin: 0 0 75px 0;
    position: relative;
    flex-direction: column;
}

.mt80 {
    margin-top: 80px;
}

.mt150 {
    margin-top: 150px;
}

.list-box {
    display: flex;
    justify-content: space-between;
}

.flex {
    display: flex;
}

.con-txt h4 {
    font-weight: 600;
    font-size: 28px;
    margin-bottom: 40px;
}

.con-txt p {
    line-height: 2.1;
    font-size: 20px;
    letter-spacing: -0.7px;
}

.btn_box {
    align-items: center;
    margin-bottom: 50px;
}

.type {
    padding: 60px 20px;
    border-top: 3px solid #08295e;
    background: linear-gradient(to top, white, #F2F2F5);
}

.type ul {
    gap: 30px;
    display: flex;
}

.type ul li {
    text-align: center;
}

.type ul li p {
    margin-top: 25px;
}

.type_2 {}

.type_2 ul {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px 20px;
}

.type_2 ul li {
    text-align: center;
    border: 1px solid #bdbdbd;
    padding: 20px;
}

.type_2 ul li p {
    margin-top: 25px;
}



.img-box ul {
    display: flex;
    justify-content: space-between;
}

.img-box ul li {
    text-align: center;
}

.img-box ul li p {
    margin-top: 25px;
}


.considerations {
    justify-content: space-between;
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 100px;
    margin-bottom: 100px;
}

.btn_box .b_btn {
    display: inline-block;
    background: var(--mc);
    color: var(--wc);
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 50px;
}

.btn_box .b_btn::after {
    content: "\e5cc";
    font-family: "Material Symbols Outlined";
    vertical-align: middle;
    margin: 0 0 0 20px;
    font-size: 20px;
    font-weight: 300;
}

.btn_box strong {
    display: block;
    font-size: 48px;

    font-weight: 800;
    color: #08295e;
    flex: 2;
    margin-top: 7px;
}


.btn_box h3 {
    font-size: 35px;
    font-weight: 600;
    margin-bottom: 20px;
    margin-top: 100px;
}

.btn_box .s-title {
    font-size: 23px;
}

.b_txt p {
    text-align: justify;
    margin: 0 0 27px 0;
    font-family: "Montserrat", sans-serif;
    color: #7f7f7f;
    font-size: 20px;
}

.b_txt .hp_btn {
    font-size: 16px;
    text-decoration: underline;
    color: var(--gc);
}

.b_txt span {
    font-size: 17px;
    font-weight: 600;
    display: block;
    margin: 0 0 10px 0;
    color: var(--mc);
}

.b_txt ul>li {
    font-size: 16px;
    line-height: 1.2;
    position: relative;
    padding: 3px 3px 3px 20px;
}

.b_txt ul>li::before {
    position: absolute;
    content: '';
    display: inline-block;
    width: 5px;
    height: 5px;
    top: 10px;
    left: 2px;
    border-radius: 40px;
    background: var(--gc);
}



.b_desc {
    display: block;
    color: var(--bc);
    font-weight: 500;
    padding-top: 10px;
    margin-bottom: 5px;
}

.instrument_box>* {
    flex: 1;
}

.bottom_banner {
    position: relative;
    height: 540px;
    background: url(../images/bottom_banner.jpg) no-repeat fixed 50% center/cover;
}

/*기업이념*/
.sub_content.greeting {
    background: url(../images/greeting-bg.png) no-repeat center/cover;
}

.program_area {
    text-align: center;
}

.program_area .txt_area .col {
    overflow: hidden;
    display: flex;
    align-items: center;
    margin-bottom: 180px;
}

.program_area .txt_area .col img {
    float: left;
    width: 44%;
    border-radius: 20px;
}

.program_area .txt_area .col dl {
    float: left;
    width: 50%;
    padding: 43px 75px;
    text-align: left
}

.program_area .txt_area .col dt {
    margin-bottom: 21px;
    font-weight: 400;
    font-size: 23px;
    color: #7f7f7f;
}

.program_area .txt_area .col dt:last-child {
    margin-bottom: 0;
}

.program_area .txt_area .col dd {
    font-size: 20px;
    margin-top: 30px;
    line-height: 1.4;
    color: #7f7f7f;
}

.program_area .txt_area span {
    font-size: 30px;
    color: #333;
    font-weight: 500;
    line-height: 1.2;
}

.program_area .txt_area b {
    font-weight: 700;
}


.value-wrpa {
    width: 100%;
    padding: 100px;
    background: url(../images/value-bg.jpg) no-repeat center/cover;
}

.value-wrpa .inner {
    display: flex;
    justify-content: space-between;
}

.value-wrpa .value-box {
    background-color: #ffffffe8;
    border-radius: 20px;
    width: 30%;
    text-align: center;
    padding: 80px 40px;
}

.value-wrpa .value-box h3 {
    font-size: 30px;
    font-weight: 700;
    margin: 30px 0;
    color: #000;
}

.value-wrpa .value-box p {
    font-size: 20px;
    line-height: 1.4;
}

.value-wrpa .value-box img {
    width: 35%;
}


/*연혁*/
.sub_content.history {
    background: url(../images/greeting-bg.png) no-repeat center/cover;
}



.timeline {
    position: relative;

}

/* 중앙 세로 라인 */
.timeline::before {
    content: "";
    position: absolute;
    top: 24px;
    left: 300px;
    width: 1px;
    height: 100%;
    background: #6f6f6f;
    height: 97%;
}


.timeline-year {
    font-family: 'DIN';
    position: absolute;
    left: 0;
    text-align: right;
    font-size: 44px;
    font-weight: 800;
    color: #08295e;
    top: 0;
}

.timeline-year::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 141px;
    width: 160px;
    height: 1px;
    background: #6f6f6f;
    transform: translateY(-50%);
}


.timeline-block {
    position: relative;
    margin-bottom: 100px;
    padding-top: 12px;
}

/* 이벤트 항목 */
.timeline-item {
    display: flex;
    align-items: center;
    position: relative;
    padding-left: 360px;
    margin-bottom: 30px;
    align-items: flex-start;
}

.timeline-item::before {
    content: "";
    position: absolute;
    left: 300px;
    top: 32%;
    width: 50px;
    height: 1px;
    background: #6f6f6f;
    transform: translateY(-50%);
}

.timeline-item::after {
    content: "";
    position: absolute;
    left: 349px;
    top: 32%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    border: 1px solid #6f6f6f;
    border-radius: 50%;
}

.month {
    font-weight: 800;
    color: #1e3557;
    width: 50px;
    text-align: right;
    margin-right: 20px;
    font-size: 30px;
    font-family: 'DIN';
}


.event {
    font-size: 20px;
    color: #7f7f7f;
    display: contents;
}


/* 

.bottom_banner::after {
    position: absolute;
    content: "";
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 1) 80%);
} */

.business-img-wrap {
    display: flex;
    gap: 30px;
}

.business-img-wrap img {
    width: 49%;
}

.business-sub-tit {
    font-size: 30px;
    color: #08295e;
    font-weight: 700;
    margin-top: 100px;
    position: relative;
    padding-left: 25px;
    margin-bottom: 30px;
}

.business-sub-tit::after {
    content: '';
    display: block;
    position: absolute;
    top: 185%;
    left: 0;
    width: 15px;
    height: 15px;
    margin-top: -3.0rem;
    background: url('../images/business-sub-tit.png') no-repeat center / contain;
    transform-origin: center;
    transition: all 0.3s ease;
}


.bottom_banner .page_tit {
    color: var(--wc);
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.bottom_banner .page_tit h2 {
    font-size: 55px;
    line-height: 1.2;
    font-weight: 600;
    color: var(--wc);
    margin: 0 0 55px 0;
}

.point-wrpa ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 20px;
}

.point-wrpa ul li {
    flex: 1 1 0%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;

    padding: 60px 20px;
    border-top: 3px solid #08295e;
    background: linear-gradient(to top, white, #F2F2F5);
}

.point-wrpa ul li h3 {
    color: #08295e;
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 10px;
}

.point-wrpa ul li i img {
    margin-bottom: 35px;
}

.point-wrpa ul li p {
    font-size: 20px;
    text-align: center;
    line-height: 1.4;
}

.stww-table {
    border-collapse: collapse;
    width: 100%;
    margin: 30px auto;
    background-color: #fff;
    border-top: 2px solid #08295e;
}

.stww-table span {
    background-color: #000;
    padding: 0px 6px;
    color: #fff;
    border-radius: 100px;
}



.stww-table-c th,
.stww-table-c td {
    text-align: center !important;
}

.stww-table th,
.stww-table td {
    border: 1px solid #333;
    text-align: left;
    padding: 20px 40px;
    font-size: 20px;
    line-height: 1.4;
    font-weight: 500;
}

/* 왼쪽 진한 네이비 헤더 */
.stww-table th.main-header {
    background-color: #13224d;
    color: #fff;
    font-weight: 600;
    text-align: center;
}

/* 상단 첫 번째 헤더(기준 허용차, KS 기준 등) */
.stww-table thead tr:first-child th:not(.main-header) {
    background-color: #EFF1F5;
    color: #333;
    font-weight: 600;
    text-align: center;
}

.stww-table thead tr:nth-child(2) th {
    background-color: #EFF1F5 !important;
    color: #333;
    font-weight: 500;
}


.stww-table th[rowspan] {
    vertical-align: middle;
    text-align: center;
}

.stww-table .bg-gray {
    background-color: #EFF1F5;
    text-align: center;
}

/* 
.bottom_banner .page_tit p {
    font-size: 18px;
    margin: 0 0 72px 0;
} */
.structure {
    border-top: 3px solid #08295e;
    background: linear-gradient(to top, white, #F2F2F5);
}

.structure img {
    width: 80%;
    padding: 100px 0 0;
}

.structure .structure-txt {
    float: right;
    margin-top: 8%;
    line-height: 3.1;
    margin-right: 5%;
}

.structure .structure-txt p {
    font-size: 20px;
}



.structure_2 {
    border-top: 3px solid #08295e;
    background: linear-gradient(to top, white, #F2F2F5);
}

.structure_2 img {
    width: 80%;
    padding: 100px 0 0;
}

.structure_2 .structure-txt {
    float: left;
    margin-top: 10.3%;
    line-height: 4;
    margin-left: 5%;
    text-align: right;
}

.structure_2 .structure-txt p {
    font-size: 20px;
    line-height: 2.5;
}


.check-txt {
    border-top: 3px solid #08295e;
    background: linear-gradient(to top, white, #F2F2F5);
    margin-top: 30px;
    padding: 50px 0;
    display: flex;
    justify-content: flex-end;
}

.check-txt ul {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 25px;
}

.check-txt ul li {
    font-size: 20px;
    width: 31%;
}

.check-txt ul li span {
    color: #08295e;
    font-size: 25px;
    font-weight: 700;
    padding-right: 10px;
}

.stww-table table {
    width: 100%;
}

.function {
    background: url(../images/business_03_img02.png) no-repeat center / contain;
    margin-top: 60px;
    width: 100%;
    height: 500px;
    margin-bottom: 100px;
}

.function .function-txt {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: center;
    flex-wrap: wrap;
    padding-top: 65px;
    gap: 190px 590px;
}

.function .function-txt p {
    text-align: center;
    width: 23%;
}

.bg_gray {
    background-color: #F1F1F5;
    display: flex;
    padding-bottom: 150px;
}

.l-box-wrap {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.grid5 {
    width: 45%;
}

.r-img {
    width: 45%;
    background-color: #fff;
    border-radius: 25px;
    margin-top: 150px;
}
.r-img img {
    border-radius: 25px;
    width: 100%;
}


.line-txt {
    font-size: 28px;
    font-weight: 600;
    padding: 70px 0;
    border-top: 2px solid #08295e;
}
.line-txt:last-child{padding: 70px 0 0;}

.line-txt h4 {
    margin-bottom: 30px;
}

.line-txt p {
    font-size: 20px;
    font-weight: 400;
    width: 49%;
}

.line-txt p span {
    color: #08295e;
    font-size: 25px;
    font-weight: 700;
    padding-right: 6px;
}

.line-txt-list {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;

}



@media (max-width:768px) {

    .bottom_banner .br_B {
        display: block;
    }

    /* Sub_Menu : 2-1~4 */
    .business_01 .sub_container,
    .business_02 .sub_container,
    .business_03 .sub_container,
    .business_04 .sub_container {
        gap: 15px;
        width: 100%;
        padding: 0;
        flex-direction: column;
    }

    .business_01 .sub_container>*,
    .business_02 .sub_container>*,
    .business_03 .sub_container>*,
    .business_04 .sub_container>* {
        flex: 1;
    }

    .business_01 .btn,
    .business_02 .btn,
    .business_03 .btn,
    .business_04 .btn {
        padding: 0 3px;
    }

    .b_img img {
        width: 100%;
        height: 100%;
        object-fit: cover;

        border-radius: 15px;
    }

    .btn_box {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        margin: 0 0 20px 0;
        position: relative;
    }

    .btn_box::before {
        position: absolute;
        content: "";
        width: 100%;
        height: 2px;
        background: #ffffff;
        bottom: -10px;
    }

    .btn_box .b_btn {
        display: inline-block;
        background: var(--mc);
        color: var(--wc);
        font-size: 10px;
        padding: 6px 12px;
        border-radius: 50px;
    }

    .btn_box .b_btn::after {
        content: "\e5cc";
        font-family: "Material Symbols Outlined";
        vertical-align: middle;
        margin: 0 0 0 10px;
        font-size: 10px;
        font-weight: 300;
    }

    .btn_box strong {
        display: block;
        font-size: 13px;
        font-weight: 800;
        color: var(--bc);
    }

    .b_txt p {
        text-align: justify;
        margin: 0 0 0px 0;
        font-size: 11px;
    }

    .business_01 .b_txt p {
        margin-bottom: 10px;
    }

    .b_txt .hp_btn {
        font-size: 12px;
        text-decoration: underline;
        color: var(--gc);
    }

    .b_txt span {
        font-size: 13px;
        font-weight: 600;
        display: block;
        margin: 0 0 5px 0;
        color: var(--mc);
    }

    .b_txt ul>li {
        font-size: 12px;
        line-height: 1.2;
        position: relative;
        padding: 3px 3px 3px 14px;
    }

    .b_txt ul>li::before {
        position: absolute;
        content: '';
        display: inline-block;
        width: 3px;
        height: 3px;
        top: 8px;
        left: 2px;
        border-radius: 40px;
        background: var(--gc);
    }

    .b_desc {
        display: block;
        color: var(--bc);
        font-weight: 500;
        padding-top: 10px;
        margin-bottom: 5px;
    }

    .instrument_box>* {
        flex: 1;
    }

    .bottom_banner {
        position: relative;
        height: 200px;
        background: url(../images/bottom_banner.jpg) no-repeat fixed 50% center/cover;
    }

    /* 
    .bottom_banner::after {
        position: absolute;
        content: "";
        bottom: 0;
        left: 0;
        width: 100%;
        height: 50px;
        background: linear-gradient(to bottom, rgba(15, 15, 15, 0) 0%, rgba(15, 15, 15, 1) 80%);
    } */

    .bottom_banner .page_tit {
        color: var(--wc);
        text-align: center;

        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 100%;
    }

    .bottom_banner .page_tit h2 {
        font-size: 18px;
        line-height: 1.2;

        font-weight: 600;
        color: var(--wc);
        margin: 0 0 20px 0;
    }

    .bottom_banner .page_tit p {
        font-size: 14px;
        margin: 0 0 40px 0;

        line-height: 1.2;
    }

    .bottom_banner .inq_btn {
        font-size: 12px;
        font-weight: 500;
        font-family: 'Montserrat', sans-serif;

        display: inline-block;
        width: 140px;
        height: 40px;
        padding: 0 15px;
        border-radius: 50px;

        backdrop-filter: blur(20px);
        border: 2px solid rgba(194, 153, 73, 0.1);
        margin: 0 auto;

        display: flex;
        justify-content: space-between;
        align-items: center;

        position: relative;
        overflow: hidden;
        z-index: 1;
    }

    .bottom_banner .inq_btn::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 0;
        z-index: -1;
        background: var(--mc);

        transition: .5s;
    }

    .bottom_banner .inq_btn:hover::before {
        top: auto;
        bottom: 0;
        height: 100%;
    }

    .bottom_banner .inq_btn::after {
        content: "\e8e4";
        font-family: "Material Symbols Outlined";
        font-size: 15px;
        font-weight: 300;

        vertical-align: middle;
        z-index: 2;
    }
}

@media (max-width:360px) {
    .bottom_banner .page_tit h2 {
        font-size: 17px;
        line-height: 1.2;

        font-weight: 600;
        color: var(--wc);
        margin: 0 0 20px 0;
    }
}


.process-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 90px 40px;
    text-align: center;
    overflow: hidden;

}

.process-step {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    position: relative;

}

.process-step::after {
    content: "";
    position: absolute;
    top: 5%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 113%;
    border-top: 3px dotted #ccc;
    z-index: -1;
}


.process-step:nth-child(4n)::before {
    content: "";
    position: absolute;
    top: 10px;
    right: -4px;
    border: 6px solid transparent;
    border-left-color: #ccc;
    /* 화살표 색상 */
}

.process-step:last-child::before {
    display: none;
}

.process-step:last-child::after {
    left: 63px;
    right: 55%;
    width: 55%;

}

.process-step img {
    width: 100%;
    margin-top: 30px;
}

.step-number {
    background-color: #08295e;
    color: #fff;
    font-weight: bold;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;

}

.step-title {
    margin-top: 20px;
    font-size: 22px;
}


@media (max-width: 600px) {
    .process-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 15px;
    }
}



/* Main_Menu : 03 */
/* Sub_Menu : 3-1~2 =========================================== */
.product_container {
    margin: 0 0 100px 0;
}

.product_box {
    display: flex;
    gap: 60px;
}

.product_box img {
    filter: drop-shadow(3px 3px 5px #eee);
}

/* 2box */
.case1 .itm {
    width: 630px;
    height: 400px;
    height: 100%;
}

.itm_subtit {
    font-family: 'Montserrat', sans-serif;
    color: var(--bc);

    font-size: 20px;
    font-weight: 600;
    margin: 0 0 15px 0;
}

.product_list {
    margin: 0 0 5px 0;
}

.product_list>* {
    text-align: left;
}

.pro_list {
    font-family: 'Montserrat', sans-serif;
    color: var(--bc);
    font-weight: 500;
    font-size: 14px;
    line-height: 1.4;
}

.pro_list li {
    position: relative;
    padding-left: 20px;
}

.pro_list li::before {
    position: absolute;
    content: "";
    display: inline-block;
    width: 4px;
    height: 4px;

    top: 8px;
    left: 2px;
    border-radius: 40px;
    background: var(--gc);
}

.brand_container {
    border-top: 2px solid #666;
    border-bottom: 2px solid #666;
}

.brand_container .brand-wrap {
    display: flex;
    align-items: center;
    gap: 40px;

    border-bottom: 1px solid #ddd;
    padding: 48px 0;
}

.brand_container .brand-wrap:last-child {
    border-bottom: none;
}

.brand_container .brand-wrap .b_box {
    flex: 2;

    font-family: 'Montserrat', sans-serif;
    line-height: 1.2;
}

.brand_container .brand-wrap .b_box strong {
    display: block;
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 10px;
}

.brand_container .link_btn {
    display: inline-block;
    background: var(--mc);
    color: var(--wc);
    font-size: 15px;
    padding: 10px 25px;
    border-radius: 50px;
}

.brand_container .link_btn::after {
    content: "\e5cc";
    font-family: "Material Symbols Outlined";
    vertical-align: middle;
    margin: 0 0 0 20px;
    font-size: 20px;
    font-weight: 300;
}

@media (max-width:768px) {

    /* Sub_Menu : 3-1~2 */
    .product_container {
        margin: 0 0 30px 0;
    }

    .product_box {
        display: flex;
        gap: 30px;

        flex-direction: column;
    }

    .product_box img {
        filter: drop-shadow(3px 3px 5px #eee);
    }

    /* 2box */
    .case1 .itm {
        /* width: 630px;
        height: 400px; */
        height: 100%;
        width: 100%;
    }

    .itm_subtit {
        font-family: 'Montserrat', sans-serif;
        color: var(--bc);

        font-size: 14px;
        font-weight: 600;
        margin: 0 0 8px 0;
    }

    .product_list {
        margin: 0 0 5px 0;
    }

    .product_list>* {
        text-align: left;
    }

    .pro_list {
        font-family: 'Montserrat', sans-serif;
        color: var(--bc);
        font-weight: 500;
        font-size: 12px;
        line-height: 1.4;
    }

    .pro_list li {
        position: relative;
        padding-left: 15px;
    }

    .pro_list li::before {
        position: absolute;
        content: "";
        display: inline-block;
        width: 3px;
        height: 3px;

        top: 6px;
        left: 2px;
        border-radius: 40px;
        background: var(--gc);
    }

    .brand_container {
        border-top: 2px solid #666;
        border-bottom: 2px solid #666;

        width: 90%;
    }

    .brand_container .brand-wrap {
        display: flex;
        /* align-items: center; */
        gap: 12px;

        border-bottom: 1px solid #ddd;
        padding: 24px 0;

        flex-direction: column;
        align-items: flex-start;

    }

    /* r */
    .brand_container .brand-wrap .brand_logo {
        border: 1px solid #eee;
    }


    .brand_container .brand-wrap:last-child {
        border-bottom: none;
    }

    .brand_container .brand-wrap .b_box {
        /* flex: 2; */

        font-family: 'Montserrat', sans-serif;
        line-height: 1.2;

        font-size: 12px;
    }

    .brand_container .brand-wrap .b_box strong {
        display: block;
        font-size: 18px;
        font-weight: 600;
        margin-bottom: 5px;
    }

    .brand_container .link_btn {
        display: inline-block;
        background: var(--mc);
        color: var(--wc);
        font-size: 10px;
        padding: 6px 12px;
        border-radius: 50px;
    }

    .brand_container .link_btn::after {
        content: "\e5cc";
        font-family: "Material Symbols Outlined";
        vertical-align: middle;
        margin: 0 0 0 10px;
        font-size: 10px;
        font-weight: 300;
    }

}


/* Main_Menu : 04 */
/* Sub_Menu : 4-1 =========================================== */
.form-wrap {
    width: 100%;
    position: relative;
    margin-top: 70px;
}

.form-table {
    width: 100%;
    position: relative;
}

table.form-table {
    width: 100%;
    border-top: 2px solid #000;
}

table.form-table tr {
    width: 100%;
    display: table;
}

table.form-table td {
    background: #FFF;
    padding: 15px 30px;
    display: table-cell;
    width: 70%;
}


table.form-table td.fm_case {
    padding: 50px 0;
    border-top: 1px solid #909090;
}

table.form-table .formmail_title_bgcolor {
    background: #F5F5F5;
    text-align: left;
    display: table-cell;
    width: 14% !important;
    font-size: 20px;
    font-weight: 500;
    /* border-bottom: 1px solid #909090; */
}

table.form-table td input,
table.form-table td textarea {
    width: 100%;
    border: 1px solid #e2e1e1;
    border-radius: 0;
    background: #fff;
    padding: 10px;
    float: left;
}

table.form-table td textarea {
    width: 100%;
}

#email_id {
    width: 40%;
}

#email_domain {
    width: 30%;
}


.privacy_txt {
    margin-bottom: 50px;
}

.privacy_txt h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.privacy_txt p {
    font-size: 15px;
    color: #585858;
}

input#privacy_chk {
    width: 15px;
    margin-right: 5px;
}

input[type='file'][name='attachment[]'] {
    border: 0 !important;
    background: 0 !important;
}

.formmail_cell_bgcolor br {
    display: none;
}

input[name='com_formmail_check_safe'] {
    width: 15px !important;
}

.formmail_cell_bgcolor textarea {
    font-size: 16px !important;

    line-height: 1.4;
}

.formmail_cell_bgcolor table td {
    width: 50% !important;
    padding: 5px 0 !important;

    font-size: 18px;
}

table.form-table tr:last-child td:first-child {
    width: 20%;
}


.form-btn-wrap {
    padding-top: 10px;
    text-align: center;
}

@media (max-width:768px) {

    /* Sub_Menu : 4-1 */
    .form-wrap {
        width: 100%;
        position: relative;
        margin-top: 0;
    }

    .form-table {
        width: 100%;
        position: relative;
    }

    table.form-table {
        width: 100%;
        border-top: 2px solid #000;
    }

    table.form-table tr {
        width: 100%;
        display: table;
    }

    table.form-table td {
        background: #FFF;
        padding: 10px;
        display: table-cell;
    }

    table.form-table td.fm_case {
        padding: 15px 0;
    }

    table.form-table .formmail_title_bgcolor {
        background: #F5F5F5;
        text-align: left;
        display: table-cell;
        font-size: 11px;
    }

    table.form-table td input,
    table.form-table td textarea {
        width: 100%;
        border: 1px solid #DDD;
        border-radius: 0;
        background: #F9F9F9;
        padding: 5px;

        font-size: 11px !important;
    }

    input#privacy_chk {
        width: 15px;
        margin-right: 5px;
    }

    input[type='file'][name='attachment[]'] {
        border: 0 !important;
        background: 0 !important;
    }

    .formmail_cell_bgcolor br {
        display: none;
    }

    input[name='com_formmail_check_safe'] {
        width: 15px !important;
    }

    .formmail_cell_bgcolor textarea {
        font-size: 12px !important;

        line-height: 1.4;
    }

    .formmail_cell_bgcolor table td {
        width: 100% !important;
        padding: 5px 0 !important;
        font-size: 12px;
    }

    table.form-table tr:last-child td:first-child {
        width: 20%;
    }


    .form-btn-wrap {
        padding-top: 0px;
        text-align: center;
    }
}


/* privacy */
table {
    text-align: center;
    border-collapse: collapse;
    border-spacing: 0;
}

.tb-wrap {
    overflow-x: auto;
}

.dbp {
    color: #666;
}

table.tb_03 {
    width: 100%;
    border-top: 2px solid #111;

    font-size: 18px;
    line-height: 1.4;
    text-align: justify;
    word-break: break-all;
}

table.tb_03 th {
    border: 1px solid #E5E5E5;
    padding: 30px;
    background: #F5F5F5;
    font-weight: 500;
    color: #111;

    width: 30%;
}

table.tb_03 td {
    border: 1px solid #E5E5E5;
    padding: 30px;
}


@media (max-width:768px) {

.pc_none{
    display: block;
}

    /* privacy */
    table.tb_03 {
        border-top: 2px solid #111;
        font-size: 12px;
        text-align: justify;
        word-break: break-all;
    }

    table.tb_03 th {
        border: 1px solid #E5E5E5;
        background: #F5F5F5;
        font-weight: 500;
        color: #111;

        display: block;
        width: 100%;
        margin-bottom: -1px;

        padding: 15px;
    }

    table.tb_03 td {
        border: 1px solid #E5E5E5;
        padding: 15px;

        display: block;
        width: 100%;
        margin-bottom: -1px;
    }

    .program_area .txt_area .col {
        flex-direction: column;
        margin-bottom: 30px;
    }

    .program_area .txt_area .col dl {
        width: 100%;
        padding: 0;
    }

    .program_area .txt_area span {
        font-size: 13px;
    }

    .program_area .txt_area .col dd {
        font-size: 11px;
        margin-top: 10px;
    }

    .program_area .txt_area .col img {
        width: 100%;
        margin-top: 20px;
        order: 1;
    }

    .value-wrpa {
        padding: 30px 0;
    }

    .value-wrpa .inner {
        flex-direction: column;
        gap: 15px;
    }

    .value-wrpa .value-box {
        width: 100%;
        padding: 15px;
    }

    .value-wrpa .value-box img {
        width: 15%;
    }

    .value-wrpa .value-box h3 {
        font-size: 13px;
        margin: 13px 0;
    }

    .value-wrpa .value-box p {
        font-size: 11px;
        line-height: 16px;
    }


    .timeline-year {
        font-size: 18px;
        text-align: left;
        position: unset;
        margin-bottom: 10px;
    }

    .month {
        font-size: 15px;
        width: auto;
    }

    .event {
        font-size: 11px;
        display: block;
        line-height: 15px;
    }

    .timeline {
        margin-bottom: 30px;
    }

    .timeline-item {
        padding-left: 0;
        margin-bottom: 5px;
        flex-direction: column;
        margin-top: 7px;
    }

    .timeline-item br {
        display: none;
    }

    .timeline-item::before,
    .timeline-year::after,
    .timeline::before,
    .timeline-item::after {
        display: none;
    }

    .timeline-block {
        margin-bottom: 0;
        padding: 15px 0;
        border-top: 1px solid #c6c6c6;
    }

    .m_none {
        display: none;
    }

    .timeline-block:last-child {
        padding-bottom: 0;
    }

    .history .btn_box::before {
        display: none;
    }

    .btn_box h3 {
        font-size: 13px;
        margin-top: 15px;
        margin-bottom: 10px;
    }

    .btn_box .s-title {
        font-size: 11px;
    }


    .sub_top .slogan_box p {
        font-size: 11px;
        margin-bottom: 7px;
    }

    .business-img-wrap {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 15px;
    }

    .business-img-wrap img {
        width: 47.1%;
    }

    .business-sub-tit {
        margin-top: 30px;
        font-size: 13px;
        padding-left: 15px;
        margin-bottom: 10px;
    }

    .business-sub-tit::after {
        top: 47px;
        width: 10px;
    }

    .point-wrpa ul {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 0;
    }

    .point-wrpa ul li {
        flex: auto;
        padding: 15px;
        width: 100%;
        border-top: 2px solid #08295e;
    }

    .point-wrpa ul li i {
        width: 50%;
        display: contents;
    }

    .point-wrpa ul li i img {
        margin-bottom: 10px;
        width: 12%;
    }

    .point-wrpa ul li p {
        font-size: 11px;
        line-height: 15px;
    }

    .stww-table {
        margin: 0 auto;
    }

    .stww-table th,
    .stww-table td {
        font-size: 11px;
        padding: 10px;
    }

    .structure img {
        padding: 15px 0 0;
        width: 65%;
    }

    .structure .structure-txt {
        margin-top: 4%;
        line-height: 1.3;
    }

    .structure .structure-txt p {
        font-size: 11px;
    }

    .con-txt p {
        font-size: 11px;
        line-height: 15px;
    }

    .check-txt {
        margin-top: 15px;
        padding: 15px 0;
        justify-content: flex-start;
        border-top: 2px solid #08295e;
    }

    .check-txt ul {
        gap: 15px;
    }

    .check-txt ul li {
        font-size: 11px;
        width: 100%;
    }

    .check-txt ul li span {
        font-size: 11px;
    }

    .point-wrpa ul li h3 {
        font-size: 13px;
        margin-bottom: 7px;
    }

    .structure_2 img {
        padding-top: 15px;
        width: 67%;
    }

    .structure_2 .structure-txt p {
        font-size: 11px;
        line-height: 1.3;
    }

    .structure_2 .structure-txt {
        margin-top: 4%;
        margin-left: 2%;
    }

    .function {
        margin-top: 15px;
        background: none;
        height: auto;
        margin-bottom: 15px;
    }

    .function .function-txt {
        padding-top: 0;
        display: block;
    }

    .function .function-txt h3 {
        font-size: 13px;
        position: relative;
        padding-left: 15px;
        font-weight: 600;
        color: #08295e;
    }

    .function .function-txt h3::after {
        content: '';
        display: block;
        position: absolute;
        top: 55px;
        left: 0;
        width: 10px;
        height: 15px;
        margin-top: -3.5rem;
        background: url('../images/business-sub-tit.png') no-repeat center / contain;
        transform-origin: center;
        transition: all 0.3s ease;
    }

    .function .function-txt p {
        font-size: 11px;
        text-align: left;
        width: 100%;
        border-bottom: 1px solid #cfcfcf;
        padding: 7px 0;
    }

    .function .function-txt p:last-child {
        border: none;
    }

    .function .function-txt p br {
        display: none;
    }

    .bg_gray {
        padding-bottom: 15px;
    }

    .l-box-wrap {
        flex-direction: column;
    }

    .grid5 {
        width: 100%;
    }

    .business_03 {
        margin-bottom: 0px !important;
    }

    .r-img {
        width: 100%;
        margin-top: 15px;
        padding: 0;
        order: 2;
    }

    .line-txt h4 {
        margin-bottom: 10px;
        font-size: 13px;
    }

    .line-txt {
        padding: 15px 0;
    }

    .line-txt p {
        font-size: 11px;
        width: 48%;
    }

    .line-txt p span {
        font-size: 11px;
    }

    .line-txt-list {
        justify-content: flex-start;
    }

    .con-txt p br {
        display: none;
    }

    .stww-table span {
        padding: 0 3px;
    }

    .business03 .stww-table {
        margin-top: 15px;
    }

    .con-txt h4 {
        font-size: 11px;
        margin-bottom: 10px;
    }

    .considerations {
        flex-direction: column;
        padding-bottom: 15px;
        margin-bottom: 15px;
    }

    .considerations img {
        width: 47%;
        margin-bottom: 15px;
    }

    .w100 img {
        width: 100%;
    }

    .mt80 {
        margin-top: 0px;
    }

    .list-box {
        flex-direction: column;
    }

    .list-box img {
        margin: 15px 0;
    }

    .pc-none {
        display: block;
    }

    .mt150 {
        margin-top: 15px;
    }

    .list-box.mt150 {
        margin-bottom: 25px;
    }


    .privacy_txt h3 {
        font-size: 12px;
        margin-bottom: 15px;
        line-height: 15px;
    }

    .privacy_txt p {
        font-size: 10px;
    }

    .privacy_txt {
        margin-bottom: 15px;
    }

    .border-none::before {
        display: none;
    }

    .structure {
        border-top: 2px solid #08295e;
    }


    .img-box ul {
        gap: 10px;
    }

    .img-box ul li p {
        margin-top: 5px;
    }

    .type {
        padding: 15px;
        border-top: 2px solid #08295e;
    }

    .type ul,
    .type_2 ul {
        flex-direction: row;
        gap: 15px;
        flex-wrap: wrap;
    }

    .type ul li p,
    .type_2 ul li p {
        margin-top: 5px;
    }

    .type ul li {
        width: 47%;
    }

    .type_2 ul li {
        padding: 15px;
    }

    .type_2 ul {
        grid-template-columns: repeat(2, 1fr);
    }

    .step-title {
        font-size: 11px;
        margin-top: 10px;
    }

    .process-step img {
        margin-top: 15px;
    }

    .step-number {
        font-size: 11px;
        width: 20px;
        height: 20px;
        font-size: 11px;
    }

    .process-step::after {
        width: 111%;
    }

    .process-step:nth-child(4n)::before {
        display: none;
    }

    .process-step:last-child::after {
        left: 27%;
        right: 0;
        width: 57%;
    }

    .btn_box {
        margin-bottom: 20px !important;
    }

    #tab02 {
        margin-top: 5px;
    }

    .stww-table {
        border-top: 0;
    }


    .structure_2 {
        border-top: 2px solid #08295e;
    }


    .line-txt:last-child{
        padding: 15px 0;
    }

}