/**
 * Created by PhpStorm.
 * Date         :
 * Developer    :
 * Description  : wp_style.css
 * ⓒ 2024. WebPlanet Co. All Rights Reserved.
 */

@charset "utf-8";

/**********************************************************************************************************************/
/* 작성방법 */
/*
1. 모든 스타일은 클래스명 .wp_wrap 을 시작으로 작성한다.
2. 공통 스타일의 클래스명은 cm_ 접두어를 사용한다.
 */
/**********************************************************************************************************************/


/**********************************************************************************************************************/
/* 공통 스타일 */
/**********************************************************************************************************************/

/*FONT*/
@font-face {
    font-family: 'Pretendard-Thin';
    /*src: url('/font/Pretendard-Thin.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-ExtraLight';
    /*src: url('/font/Pretendard-ExtraLight.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Light';
    /*src: url('/font/Pretendard-Light.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Regular';
    /*src: url('/font/Pretendard-Regular.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Medium';
    /*src: url('/font/Pretendard-Medium.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-SemiBold';
    /*src: url('/font/Pretendard-SemiBold.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Bold';
    /*src: url('/font/Pretendard-Bold.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-ExtraBold';
    /*src: url('/font/Pretendard-ExtraBold.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
}
@font-face {
    font-family: 'Pretendard-Black';
    /*src: url('/font/Pretendard-Black.woff2') format('woff2');*/
    src: url('https://cdn.jsdelivr.net/gh/Project-Noonnu/noonfonts_2107@1.1/Pretendard-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
}

/*색상*/
.wp_wrap .cm_style1 {color: #fff;}
.wp_wrap .cm_style2 {color: #000;}


/**********************************************************************************************************************/
:root {
    --font-pre100: 'Pretendard-Thin';
    --font-pre200: 'Pretendard-ExtraLight';
    --font-pre300: 'Pretendard-Light';
    --font-pre400: 'Pretendard-Regular';
    --font-pre500: 'Pretendard-Medium';
    --font-pre600: 'Pretendard-SemiBold';
    --font-pre700: 'Pretendard-Bold';
    --font-pre800: 'Pretendard-ExtraBold';
    --font-pre900: 'Pretendard-Black';
}


html{
    scroll-behavior: smooth;
}

.wp_wrap {
    font-family: var(--font-pre400);
    word-break: keep-all;
    overflow-x: clip;
}

.wp_wrap .cm_inner {
    max-width: 1500px;
    width: 100%;
    margin: 0 auto;
}


/**********************************************************************************************************************/
/* 헤더 */
/**********************************************************************************************************************/
.wp_wrap header{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    transition: 0.5s;
    z-index: 9999;
    background: transparent;
}
.wp_wrap header .h_inner{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.wp_wrap header .h_inner .mlogo{
    min-width: 190px;
}
.wp_wrap header .h_inner nav{
    display: flex;
    align-items: center;
    gap: 35px;
}
.wp_wrap header .h_inner nav .gnb{
    display: flex;
    align-items: center;
}
.wp_wrap header .h_inner nav .gnb .m_list{
    position: relative;
    text-align: center;
    width: 210px;
}
.wp_wrap header .h_inner nav .gnb .m_list>a{
    display: block;
    font-size: 20px;
    color: #fff;
    padding: 38.5px 0;
}
.wp_wrap header .h_inner nav .gnb .m_list>.sub_mnu{
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    width: 100%;
    padding: 15px 0;
}
.wp_wrap header .h_inner nav .gnb .m_list>.sub_mnu a{
    display: block;
    padding: 10px 0;
    font-size: 20px;
    color: #000;
}
.wp_wrap header .h_inner .convenient_box .lang_box {
    position: relative;
}
.wp_wrap header .h_inner .convenient_box .lang_box .language {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: unset;
    transition: 0.3s;
    gap: 6px;
    padding: 5px 10px;
    border-radius: 20px;
    border: 1px solid #fff;
    background: rgba(255, 255, 255, 0.2);
}
.wp_wrap header .h_inner .convenient_box .lang_box .language span {
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}
.wp_wrap header .h_inner .convenient_box .lang_box .language i {
    font-size: 16px;
    color: #fff;
    transition: 0.3s;
}
.wp_wrap header .h_inner .convenient_box .lang_box .language:hover {
    background: #072e69 !important;
}
.wp_wrap header .h_inner .convenient_box .lang_box .language:hover i {
    color: #fff;
}
.wp_wrap header .h_inner .convenient_box .lang_box .language:hover span {
    color: #fff;
}
.wp_wrap header .h_inner .momnu_icon {
    display: none;
}
.wp_wrap header .h_inner .momnu_icon .icon_box{
    cursor: pointer;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    width: 36px;
}
.wp_wrap header .h_inner .momnu_icon .icon_box>div{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}
.wp_wrap header .h_inner .momnu_icon .icon_box span{
    position: relative;
    display: inline-block;
    background: #fff;
}

.wp_wrap header .h_inner .momnu_icon .icon_box .short{    
    width:3px;
    height:3px;
    border-radius: 50%;
}
.wp_wrap header .h_inner .momnu_icon .icon_box .mid{
    width: 28px;
    height: 3px;
    border-radius: 3px;
    transition: 0.3s;

}
.wp_wrap header .h_inner .momnu_icon .icon_box .long{    
    width: 36px;
    height:3px;
    border-radius: 3px;
}



.wp_wrap header .h_inner .momnu_icon .icon_box:hover .mid{
    width:36px;
}

.wp_wrap header .h_inner .momnu_icon .icon_box:hover .short{
    display: none;
}
.wp_wrap header .sub_mnu_bg{
    display: none;
    position: absolute;
    top: 100px;
    left: 0;
    width: 100%;
    height: 300px;
    z-index:-1 ;
    background: #fff;
    border-top: 1px solid #DCDCDC;
}
.wp_wrap .mo_mnu{
    display: none;
}
.wp_wrap header .mnu_bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    background: #fff;
    opacity: 0;
    transition: 0.5s;
    z-index: -1;
}


/**********************************************************************************************************************/



/**********************************************************************************************************************/
/* 푸터 */
/**********************************************************************************************************************/
.wp_wrap footer {
    background: #000000;
    color: #E5E5E5;
    padding: 60px 0;
}
.wp_wrap footer .f_inner {}
.wp_wrap footer .f_inner .lt {
    padding-bottom: 25px;
    border-bottom: 1px dotted #EFEFEF;
}
.wp_wrap footer .f_inner .lt .f_logo {}
.wp_wrap footer .f_inner .rt {
    margin-top: 25px;
}
.wp_wrap footer .f_inner .rt .bot_area {}
.wp_wrap footer .f_inner .rt .bot_area .f_info_box {}
.wp_wrap footer .f_inner .rt .bot_area .f_info_box .f_info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    font-size: 17px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 40px;
}
.wp_wrap footer .f_inner .rt .bot_area .f_info_box .f_info>li {}
.wp_wrap footer .f_inner .rt .bot_area .f_info_box .f_info>li>span {
    font-family: 'Pretendard-Regular';
}
.wp_wrap footer .f_inner .rt .bot_area .copyright {
    font-size: 17px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap footer .f_inner .rt .bot_area .copyright>a {
    color: #E5E5E5;
}


/**********************************************************************************************************************/

/* 메인 */
/**********************************************************************************************************************/
.wp_wrap #visual {
    position: relative;
}
.wp_wrap #visual .main_slider .slide{
    position: relative;
    width: 100%;
    height: 100vh;
}
.wp_wrap #visual .main_slider .slide .img_bg.item01{
    background: url(../img/main/mainSlide01_1.jpg) no-repeat center center / cover;
}
.wp_wrap #visual .main_slider .slide .img_bg.item02{
    background: url(../img/main/mainSlide02_1.jpg) no-repeat center center / cover;
}

.wp_wrap #visual .main_slider .slide .img_bg{
    display: block; 
    position: absolute; 
    top: 0; 
    left: 0; 
    width: 100%; 
    height: 100%; 
    border:0;
    transform: scale(1.1);    
    transition: 2s;
}
.wp_wrap #visual .main_slider .slide.action .img_bg {
    transform: scale(1); 
}

.wp_wrap #visual .main_slider .slide .slide_inner{
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;    
    background: rgba(0, 0, 0, 0.08);
}
.wp_wrap #visual .main_slider .slide .slide_inner .txt_box{
    text-align: start;
    color: #fff;
    text-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}
.wp_wrap #visual .main_slider .slide .slide_inner .txt_box .top_tit{
    font-size: 30px;
    font-family: 'Pretendard-Regular';   
    transform:translateY(100px);
    opacity: 0;
    transition: 0.7s 2s;
    line-height: 1.4;
}
.wp_wrap #visual .main_slider .slide .slide_inner .txt_box .top_tit>span {
    font-family: 'Pretendard-Semibold';
}
.wp_wrap #visual .main_slider .slide .slide_inner .txt_box .mid_tit{
    font-size: 70px;
    font-family: 'Pretendard-Regular';
    transform:translateY(100px);
    opacity: 0;
    margin-bottom: 10px;
    transition: 0.7s 2.7s;
}
.wp_wrap #visual .main_slider .slide .slide_inner .txt_box .mid_tit>span {
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #visual .main_slider .slide .slide_inner .txt_box .bot_tit{
    font-size: 25px;
    font-family: var(--font-pre200);    
    transform:translateY(100px);
    opacity: 0;
    transition: 0.7s 3.4s;
}



.wp_wrap #visual .main_slider .slide.action .slide_inner .txt_box .top_tit,
.wp_wrap #visual .main_slider .slide.action .slide_inner .txt_box .mid_tit,
.wp_wrap #visual .main_slider .slide.action .slide_inner .txt_box .bot_tit{   
    opacity: 1; 
    transform:translateY(0);
}


/* about */
.wp_wrap #about {
    padding: 120px 0;
}
.wp_wrap #about .txt_box {
    margin-bottom: 65px;
    text-align: center;
}
.wp_wrap #about .txt_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-Regular';
    margin-bottom: 20px;
}
.wp_wrap #about .txt_box .tit>span {
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #about .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #about .sd_container {
      width: 100%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: stretch;
      gap: 40px;
      overflow: hidden;
      border-radius: 30px;
}

.wp_wrap #about .sd_container .sd_view_box {
      position: relative;
      width: 100%;
      height: 450px;
      overflow: hidden;
}

/* 슬라이드 영역 */
.wp_wrap #about .sd_container .acd_wrap {
      display: flex;
      flex-direction: row;
      width: 100%;
      height: 550px;
      overflow: hidden;
}

.wp_wrap #about .sd_container .acd_wrap .item {
      position: relative;
      flex: 1;
      height: 100%;
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      transition: flex 0.8s ease;
      filter: grayscale(0.5);
      transition: 0.6s;
}

.wp_wrap #about .sd_container .acd_wrap .item:hover {
      flex: 7;
      filter: grayscale(0);
      transition: 0.6s;
}

.wp_wrap #about .sd_container .acd_wrap .item .item_inner {
      position: absolute;
      top: 0;
      left: 0;
      display: flex;
      justify-content: center;
      align-items: flex-end;
      width: 100%;
      height: 100%;
      padding: 40px 20px;
      box-sizing: border-box;
}



.wp_wrap #about .sd_container .acd_wrap .item .item_inner>p {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    transition: 0.3s;
}

.wp_wrap #about .sd_container .acd_wrap .item:hover .item_inner>p {
    display: none;
    font-size: 20px;
}


.wp_wrap #about .sd_container .acd_wrap .item .item_inner .fence {
      position: absolute;
      left: 0;
      bottom: 0;
      width: 70%;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      align-items: stretch;
      transform: scaleX(0);
      overflow: hidden;
      padding: 40px;
}

.wp_wrap #about .sd_container .acd_wrap .item:hover .item_inner .fence {
      transform: scaleX(1);
}

.wp_wrap #about .sd_container .acd_wrap .item:hover .item_inner>i {
      display: none;
}

.wp_wrap #about .sd_container .acd_wrap .item .item_inner .fence .tit {
      font-size: 40px;
      font-family: 'Pretendard-SemiBold';
      color: #fff;
}

.wp_wrap #about .sd_container .acd_wrap .item .item_inner .fence .des {
      font-size: 18px;
      font-family: var(--font-prer);
}

.wp_wrap #about .sd_container .acd_wrap .item01 {
      background-image: url(../img/main/ms_bsn01.jpg);
}

.wp_wrap #about .sd_container .acd_wrap .item02 {
      background-image: url(../img/main/ms_bsn02.jpg);
}

.wp_wrap #about .sd_container .acd_wrap .item03 {
      background-image: url(../img/main/ms_bsn03.jpg);
}

.wp_wrap #about .sd_container .acd_wrap .item04 {
      background-image: url(../img/main/ms_bsn04.jpg);
}


/* info */
.wp_wrap #info {
    background-image: url(../img/main/sub_counsel01.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    padding: 170px 0;
    height: 600px;
}
.wp_wrap #info .txt_box {
    color: #fff;
    margin-bottom: 50px;
}
.wp_wrap #info .txt_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 10px;
}
.wp_wrap #info .txt_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 20px;
}
.wp_wrap #info .txt_box .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
}
.wp_wrap #info a {
    font-size: 16px;
    font-family: 'Pretendard-Light';
    padding: 20px 38px;
    background: #fff;
}
.wp_wrap #info a:hover {
    color: #000;
}
/**********************************************************************************************************************/

/* 서브 */
/**********************************************************************************************************************/
.wp_wrap .sub_main01{
    width: 100%;
    /* background: url('../img/sub/subMain01.jpg') no-repeat center center / cover;
    transform: scale(1.05); */
    position: relative;
    overflow: hidden;
}
.wp_wrap .sub_main01 .img_box img {
    object-fit: cover;
    transform: scale(1.1);
}
.wp_wrap .sub_main01.sub_top.on .img_box img {
    transform: scale(1);
    transition: 3s;
}
.wp_wrap .sub_main01 .sub_main_inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wp_wrap .sub_main01 .sub_main_inner .txt_box {
    text-align: center;
    margin-bottom: 35px;
}
.wp_wrap .sub_main01 .sub_main_inner .txt_box .tit {
    font-family: 'Pretendard-SemiBold';
    font-size: 60px;
    color: #fff;
}
.wp_wrap .sub_main01 .sub_main_inner .sub_list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wp_wrap .sub_main01 .sub_main_inner .sub_list>li {}
.wp_wrap .sub_main01 .sub_main_inner .sub_list>li>a {
    color: #fff;
    font-size: 25px;
}
.wp_wrap .sub_main01 .sub_main_inner .sub_list>li>a>i {}
.wp_wrap .sub_main01 .sub_main_inner .sub_list>li>p {
    color: #fff;
    font-size: 20px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap .sub_main01 .sub_main_inner .sub_list>li .circle {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #fff;
    opacity: 0.7;
}
.wp_wrap .sub_main01 .sub_main_inner .w_bar {
    width: 100%;
    height: 100px;
    background: #fff;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    position: absolute;
    bottom: -1px;
}


.wp_wrap .sub_main02{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.wp_wrap .sub_main02 .img_box img {
    object-fit: cover;
    transform: scale(1.1);
}
.wp_wrap .sub_main02.sub_top.on .img_box img {
    transform: scale(1);
    transition: 3s;
}
.wp_wrap .sub_main02 .sub_main_inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wp_wrap .sub_main02 .sub_main_inner .txt_box {
    text-align: center;
    margin-bottom: 35px;
}
.wp_wrap .sub_main02 .sub_main_inner .txt_box .tit {
    font-family: 'Pretendard-SemiBold';
    font-size: 60px;
    color: #fff;
}
.wp_wrap .sub_main02 .sub_main_inner .sub_list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wp_wrap .sub_main02 .sub_main_inner .sub_list>li {}
.wp_wrap .sub_main02 .sub_main_inner .sub_list>li>a {
    color: #fff;
    font-size: 25px;
}
.wp_wrap .sub_main02 .sub_main_inner .sub_list>li>a>i {}
.wp_wrap .sub_main02 .sub_main_inner .sub_list>li>p {
    color: #fff;
    font-size: 20px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap .sub_main02 .sub_main_inner .sub_list>li .circle {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #fff;
    opacity: 0.7;
}
.wp_wrap .sub_main02 .sub_main_inner .w_bar {
    width: 100%;
    height: 100px;
    background: #fff;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    position: absolute;
    bottom: -1px;
}

.wp_wrap .sub_main03{
    width: 100%;
    position: relative;
    overflow: hidden;
}
.wp_wrap .sub_main03 .img_box img {
    object-fit: cover;
    transform: scale(1.1);
}
.wp_wrap .sub_main03.sub_top.on .img_box img {
    transform: scale(1);
    transition: 3s;
}
.wp_wrap .sub_main03 .sub_main_inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wp_wrap .sub_main03 .sub_main_inner .txt_box {
    text-align: center;
    margin-bottom: 35px;
}
.wp_wrap .sub_main03 .sub_main_inner .txt_box .tit {
    font-family: 'Pretendard-SemiBold';
    font-size: 60px;
    color: #fff;
}
.wp_wrap .sub_main03 .sub_main_inner .sub_list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wp_wrap .sub_main03 .sub_main_inner .sub_list>li {}
.wp_wrap .sub_main03 .sub_main_inner .sub_list>li>a {
    color: #fff;
    font-size: 25px;
}
.wp_wrap .sub_main03 .sub_main_inner .sub_list>li>a>i {}
.wp_wrap .sub_main03 .sub_main_inner .sub_list>li>p {
    color: #fff;
    font-size: 20px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap .sub_main03 .sub_main_inner .sub_list>li .circle {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #fff;
    opacity: 0.7;
}
.wp_wrap .sub_main03 .sub_main_inner .w_bar {
    width: 100%;
    height: 100px;
    background: #fff;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    position: absolute;
    bottom: -1px;
}


.wp_wrap .sub_main04 {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.wp_wrap .sub_main04 .img_box img {
    object-fit: cover;
    transform: scale(1.1);
}
.wp_wrap .sub_main04.sub_top.on .img_box img {
    transform: scale(1);
    transition: 3s;
}
.wp_wrap .sub_main04 .sub_main_inner{
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    position: relative;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.wp_wrap .sub_main04 .sub_main_inner .txt_box {
    text-align: center;
    margin-bottom: 35px;
}
.wp_wrap .sub_main04 .sub_main_inner .txt_box .tit {
    font-family: 'Pretendard-SemiBold';
    font-size: 60px;
    color: #fff;
}
.wp_wrap .sub_main04 .sub_main_inner .sub_list {
    display: flex;
    align-items: center;
    gap: 20px;
}
.wp_wrap .sub_main04 .sub_main_inner .sub_list>li {}
.wp_wrap .sub_main04 .sub_main_inner .sub_list>li>a {
    color: #fff;
    font-size: 25px;
}
.wp_wrap .sub_main04 .sub_main_inner .sub_list>li>a>i {}
.wp_wrap .sub_main04 .sub_main_inner .sub_list>li>p {
    color: #fff;
    font-size: 20px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap .sub_main04 .sub_main_inner .sub_list>li .circle {
    width: 6px;
    height: 6px;
    border-radius: 100%;
    background: #fff;
    opacity: 0.7;
}
.wp_wrap .sub_main04 .sub_main_inner .w_bar {
    width: 100%;
    height: 100px;
    background: #fff;
    border-top-left-radius: 100px;
    border-top-right-radius: 100px;
    position: absolute;
    bottom: -1px;
}


/* history */
.wp_wrap #history {
    padding: 100px 0 200px;
}
.wp_wrap #history .tit_box {
    margin-bottom: 150px;
    text-align: center;
}
.wp_wrap #history .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
}
.wp_wrap #history .tit_box .s_tit {
    font-size: 30px;
    font-family: 'Pretendard-Regular';
    color: #868686;
}
.wp_wrap #history .history_box {
    padding-left: 520px;
    position: relative;
}
.wp_wrap #history .history_box .history_inner {}
.wp_wrap #history .history_box .history_inner .history_list {
    display: flex;
    flex-direction: column;
    gap: 150px;
}
.wp_wrap #history .history_box .history_inner .history_list>li {}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner {
    display: flex;
    gap: 145px;
    position: relative;
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner:after {
    content: '';
    width: 24px;
    height: 24px;
    background: #24408A;
    border-radius: 100%;
    position: absolute;
    top: 50%;
    left: 203px;
    transform: translateY(-50%);
    z-index: 10;
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .right {
    display: flex;
    align-items: center;
    gap: 25px;
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .year {
    width: 150px;
    font-size: 60px;
    font-family: 'Pretendard-Bold';
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .month {
    width: 40px;
    font-size: 30px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .info {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .info_list {
    display: flex;
    flex-direction: column;
    gap: 35px;
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .info_list>li {}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .info_list>li .i_inner {
    display: flex;
    align-items: center;
    gap: 25px;
}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .info_list>li .i_inner .month {}
.wp_wrap #history .history_box .history_inner .history_list>li .h_inner .info_list>li .i_inner .info {}
.wp_wrap #history .history_box .h_bar {
    display: block;
    width: 2px;
    height: 1422px;
    background: #E4E4E4;
    position: absolute;
    top: 3%;
    left: 49%;
    transform: translateX(-50%);
    z-index: -1;
}



/* organ */
.wp_wrap #organ {
    padding: 100px 0 200px;
}
.wp_wrap #organ .tit_box {
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #organ .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
}
.wp_wrap #organ .tit_box .s_tit {
    font-size: 30px;
    font-family: 'Pretendard-Regular';
    color: #868686;
}
.wp_wrap #organ .organ_box {}
.wp_wrap #organ .organ_box .img_or_box {
    display: none;
}
.wp_wrap #organ .organ_box .organ_list {}
.wp_wrap #organ .organ_box .organ_list>li {}
.wp_wrap #organ .organ_box .organ_list>li:nth-child(3) {
    margin-top: 140px;
}
.wp_wrap #organ .organ_box .organ_list>li .img_box {
    margin-bottom: 100px;
    position: relative;
}
.wp_wrap #organ .organ_box .organ_list>li .img_box:after {
    content: '';
    width: 1px;
    height: 302px;
    background: #E3E3E3;
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.wp_wrap #organ .organ_box .organ_list>li .img_box>img {
    margin: 0 auto;
}
.wp_wrap #organ .organ_box .organ_list>li .or_box {
    width: 235px;
    margin: 0 auto;
    position: relative;
}
.wp_wrap #organ .organ_box .organ_list>li .or_box:after {
    content: '';
    width: 1px;
    height: 99px;
    background: #E3E3E3;
    position: absolute;
    top: -99%;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}
.wp_wrap #organ .organ_box .organ_list>li .or_box>p {
    padding: 18px 0;
    background: #425DA4;
    color: #fff;
    text-align: center;
    font-size: 19px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #organ .organ_box .organ_list>li .or_list {
    display: flex;
    justify-content: space-between;
    position: relative;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list:after {
    content: '';
    width: 1265px;
    height: 1px;
    background: #E3E3E3;
    position: absolute;
    top: -14%;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li {}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_box {}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li:nth-child(2) .or_box {
    width: 800px;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_box>p {
    background: #8A9DCF;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
    position: relative;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner:after {
    content: '';
    width: 565px;
    height: 1px;
    background: #E3E3E3;
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .fir {}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .fir .fir_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .fir .fir_list:after {
    content: '';
    width: 1px;
    height: 37px;
    background: #E3E3E3;
    position: absolute;
    top: -12%;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .fir .fir_list>li {
    width: 235px;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .fir .fir_list>li .fir_name {
    font-size: 19px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    text-align: center;
    padding: 18px 0;
    background: #C3CEEB;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .fir .fir_list>li>p {
    font-size: 19px;
    font-family: 'Pretendard-Medium';
    text-align: center;
    background: #F9F9F9;
    padding: 18px 0;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .sec {}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .sec .sec_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    position: relative
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .sec .sec_list:after {
    content: '';
    width: 1px;
    height: 80px;
    background: #E3E3E3;
    position: absolute;
    top: -55%;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .sec .sec_list>li {
    width: 235px;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .sec .sec_list>li .sec_name {
    font-size: 19px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    text-align: center;
    padding: 18px 0;
    background: #C3CEEB;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .sec .sec_list>li>p {
    font-size: 19px;
    font-family: 'Pretendard-Medium';
    text-align: center;
    background: #F9F9F9;
    padding: 18px 0;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .thi {}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .thi .thi_list {
    position: relative
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .thi .thi_list:after {
    content: '';
    width: 1px;
    height: 37px;
    background: #E3E3E3;
    position: absolute;
    top: -59%;
    left: 50%;
    transform: translateX(-50%);
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .thi .thi_list>li {
    width: 235px;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_inner .thi .thi_list>li .thi_name {
    font-size: 19px;
    font-family: 'Pretendard-SemiBold';
    color: #fff;
    text-align: center;
    padding: 18px 0;
    background: #C3CEEB;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_last_list {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-top: 15px;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_last_list>li {
    width: 235px;
}
.wp_wrap #organ .organ_box .organ_list>li .or_list>li .or_last_list>li>p {
    font-size: 19px;
    font-family: 'Pretendard-Medium';
    text-align: center;
    background: #F9F9F9;
    padding: 18px 0;
}




/* graph */
.wp_wrap #graph {
    padding: 100px 0 200px;
}
.wp_wrap #graph .tit_box {
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #graph .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
}
.wp_wrap #graph .tit_box .s_tit {
    font-size: 30px;
    font-family: 'Pretendard-Regular';
    color: #868686;
}
.wp_wrap #graph .table_inner {
    padding: 120px 0;
    background: #F9F9F9;
}
.wp_wrap #graph .table_inner .top {
    margin-bottom: 100px;
}
.wp_wrap #graph .table_inner .top .txt_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.wp_wrap #graph .table_inner .top .txt_box .l_tit {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #graph .table_inner .top .txt_box .r_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap #graph .table_inner .top table {
    width: 100%;
    border-collapse: collapse;
    border-top: 3px solid #24408A;
}
.wp_wrap #graph .table_inner .top table thead {
    background: #fff;
}
.wp_wrap #graph .table_inner .top table thead tr {}
.wp_wrap #graph .table_inner .top table thead tr th {
    padding: 15px 0;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    width: 250px;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.wp_wrap #graph .table_inner .top table thead tr th:last-child {
    border-right: none;
}
.wp_wrap #graph .table_inner .top table tbody {}
.wp_wrap #graph .table_inner .top table tbody tr {}
.wp_wrap #graph .table_inner .top table tbody tr td {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding: 15px 0;
    text-align: center;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.wp_wrap #graph .table_inner .top table tbody tr td>span {
    font-size: 18px;
}
.wp_wrap #graph .table_inner .top table tbody tr td:last-child {
    border-right: none;
}
.wp_wrap #graph .table_inner .bot {}
.wp_wrap #graph .table_inner .bot .txt_box {
    display: flex;
    justify-content: space-between;
    margin-bottom: 15px;
}
.wp_wrap #graph .table_inner .bot .txt_box .l_tit {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #graph .table_inner .bot .txt_box .r_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
}
.wp_wrap #graph .table_inner .bot table {
    width: 100%;
    border-collapse: collapse;
    border-top: 3px solid #24408A;
}
.wp_wrap #graph .table_inner .bot table thead {
    background: #fff;
}
.wp_wrap #graph .table_inner .bot table thead tr {}
.wp_wrap #graph .table_inner .bot table thead tr th {
    padding: 15px 0;
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    width: 250px;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.wp_wrap #graph .table_inner .bot table thead tr th:last-child {
    border-right: none;
}
.wp_wrap #graph .table_inner .bot table tbody {}
.wp_wrap #graph .table_inner .bot table tbody tr {}
.wp_wrap #graph .table_inner .bot table tbody tr td {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    padding: 15px 0;
    text-align: center;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.wp_wrap #graph .table_inner .bot table tbody tr td>span {
    font-size: 18px;
}
.wp_wrap #graph .table_inner .bot table tbody tr td:last-child {
    border-right: none;
}




/* map */
.wp_wrap #map {
    padding-top: 100px;
}
.wp_wrap #map .tit_box {
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #map .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
}
.wp_wrap #map .tit_box .s_tit {
    font-size: 30px;
    font-family: 'Pretendard-Regular';
    color: #868686;
}
.wp_wrap #map .map_inner {
    display: flex;
    align-items: end;
    gap: 45px;
}
.wp_wrap #map .map_inner .left {
    width: 50%;
}
.wp_wrap #map .map_inner .left .tit_box {
    text-align: start;
    margin-bottom: 40px;
}
.wp_wrap #map .map_inner .left .tit_box .s_tit {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    color: #24408A;
    margin-bottom: 15px;
}
.wp_wrap #map .map_inner .left .tit_box .tit {
    font-size: 50px;
    font-family: 'Pretendard-SemiBold';
}
.wp_wrap #map .map_inner .left .info_list {
    display: flex;
    flex-direction: column;
    gap: 18px;
}
.wp_wrap #map .map_inner .left .info_list>li {}
.wp_wrap #map .map_inner .left .info_list>li .info_box {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 20px;
    border: 1px solid #E1E1E1;
    border-radius: 5px;
}
.wp_wrap #map .map_inner .left .info_list>li .info_box>i {
    font-size: 25px;
    color: #24408A;
}
.wp_wrap #map .map_inner .left .info_list>li .info_box>p {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
}
.wp_wrap #map .map_inner .right {
    width: 50%;
}
.wp_wrap #map .map_inner .right .map_box {}

.root_daum_roughmap .cont .section.lst {
    display: none;
}
.root_daum_roughmap .wrap_controllers {
    display: none;
}
.root_daum_roughmap .map_border {
    display: none;
}
#daumRoughmapContainer1736917800010 {
    height: 100%;
}

.wp_wrap #map .corp_info {
    margin-top: 50px;
    background: #F9F9F9;
    padding: 60px 0;
}
.wp_wrap #map .corp_info h3 {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 30px;
}
.wp_wrap #map .corp_info table {
    width: 100%;
    border-spacing: 0;
    border-top: 3px solid #24408A;
}
.wp_wrap #map .corp_info table tbody {}
.wp_wrap #map .corp_info table tbody tr {
    font-size: 18px;
}
.wp_wrap #map .corp_info table tbody tr th {
    font-family: 'Pretendard-Light';
    padding: 15px 0;
    width: 300px;
    background: #fff;
    border-right: 1px solid #E5E5E5;
    border-bottom: 1px solid #E5E5E5;
}
.wp_wrap #map .corp_info table tbody tr td {
    font-family: 'Pretendard-Regular';
    border-bottom: 1px solid #E5E5E5;
    padding: 15px 0;
    padding-left: 20px;
}
.wp_wrap #map .corp_info .info_desc {
    font-size: 15px;
    font-family: 'Pretendard-Regular';
    margin-top: 10px;
}



/* fujikura */
.wp_wrap #fuji {
    padding: 100px 0 200px;
}
.wp_wrap #fuji .m_tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #fuji .top {
    display: flex;
    margin-bottom: 150px;
}
.wp_wrap #fuji .top .left {
    width: 75%;
}
.wp_wrap #fuji .top .left .tit {
    font-size: 36px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 25px;
    line-height: 1.5;
}
.wp_wrap #fuji .top .left .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    color: #4A4A4A;
    line-height: 1.5;
    margin-bottom: 50px;
}
.wp_wrap #fuji .top .left .ex.fir {
    margin-bottom: 40px;
}
.wp_wrap #fuji .top .left>a {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    padding-bottom: 3px;
    border-bottom: 2px solid #000;
}
.wp_wrap #fuji .top .left>a:hover {
    color: #000;
}
.wp_wrap #fuji .top .right {}
.wp_wrap #fuji .top .right .img_box {
    overflow: hidden;
    width: 555px;
    border-radius: 100%;
}
.wp_wrap #fuji .top .right .img_box>img {
    width: 100%;
    height: 555px;
    object-fit: cover;
}
.wp_wrap #fuji .bot {}
.wp_wrap #fuji .bot .b_tit {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #fuji .bot .bot_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 60px;
}
.wp_wrap #fuji .bot .bot_list>li {}
.wp_wrap #fuji .bot .bot_list>li .bot_box {
    position: relative;
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .img_box {
    border-radius: 15px;
    overflow: hidden;
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .img_box>img {
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .shadow_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.5s;
}
.wp_wrap #fuji .bot .bot_list>li:hover .bot_box .shadow_box {
    background: rgba(0, 0, 0, 0.5);
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .shadow_box .txt_box {
    height: 50px;
    overflow: hidden;
    transition: 0.5s;
}
.wp_wrap #fuji .bot .bot_list>li:hover .bot_box .shadow_box .txt_box {
    height: 300px;
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .shadow_box .txt_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 30px;
    text-align: center;
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .shadow_box .txt_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: center;
    opacity: 0;
    transition: 0.7s;
}
.wp_wrap #fuji .bot .bot_list>li:nth-child(1) .bot_box .shadow_box .txt_box .ex {
    margin-bottom: 80px;
}
.wp_wrap #fuji .bot .bot_list>li:hover .bot_box .shadow_box .txt_box .ex {
    opacity: 1;
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .shadow_box .txt_box>a {
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-family: 'Pretendard-Bold';
    padding: 7px 0;
    border-radius: 30px;
    background: #24408A;
    width: 112px;
    margin: 0 auto;
    transition: 0.3s;
    opacity: 0;
}
.wp_wrap #fuji .bot .bot_list>li:hover .bot_box .shadow_box .txt_box>a {
    opacity: 1;
}
.wp_wrap #fuji .bot .bot_list>li .bot_box .shadow_box .txt_box>a:hover {
    color: #24408A;
    background: #fff;
}




/* trinno */
.wp_wrap #trinno {
    padding: 100px 0 200px;
}
.wp_wrap #trinno .m_tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #trinno .top {
    display: flex;
    margin-bottom: 150px;
}
.wp_wrap #trinno .top .left {
    width: 75%;
}
.wp_wrap #trinno .top .left .tit {
    font-size: 36px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 25px;
    line-height: 1.5;
}
.wp_wrap #trinno .top .left .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    color: #4A4A4A;
    line-height: 1.5;
    margin-bottom: 50px;
}
.wp_wrap #trinno .top .left .ex.fir {
    margin-bottom: 40px;
}
.wp_wrap #trinno .top .left>a {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    padding-bottom: 3px;
    border-bottom: 2px solid #000;
}
.wp_wrap #trinno .top .left>a:hover {
    color: #000;
}
.wp_wrap #trinno .top .right {}
.wp_wrap #trinno .top .right .img_box {
    overflow: hidden;
    width: 555px;
    border-radius: 100%;
}
.wp_wrap #trinno .top .right .img_box>img {
    width: 100%;
    height: 555px;
    object-fit: cover;
}
.wp_wrap #trinno .bot {}
.wp_wrap #trinno .bot .b_tit {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #trinno .bot .bot_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 60px;
}
.wp_wrap #trinno .bot .bot_list>li {}
.wp_wrap #trinno .bot .bot_list>li .bot_box {
    position: relative;
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .img_box {
    border-radius: 15px;
    overflow: hidden;
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .img_box>img {
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .shadow_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.5s;
}
.wp_wrap #trinno .bot .bot_list>li:hover .bot_box .shadow_box {
    background: rgba(0, 0, 0, 0.5);
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .shadow_box .txt_box {
    height: 50px;
    overflow: hidden;
    transition: 0.5s;
}
.wp_wrap #trinno .bot .bot_list>li:hover .bot_box .shadow_box .txt_box {
    height: 300px;
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .shadow_box .txt_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 30px;
    text-align: center;
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .shadow_box .txt_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: center;
    opacity: 0;
    transition: 0.7s;
}
.wp_wrap #trinno .bot .bot_list>li:hover .bot_box .shadow_box .txt_box .ex {
    opacity: 1;
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .shadow_box .txt_box>a {
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-family: 'Pretendard-Bold';
    padding: 7px 0;
    border-radius: 30px;
    background: #24408A;
    width: 112px;
    margin: 0 auto;
    transition: 0.3s;
    opacity: 0;
}
.wp_wrap #trinno .bot .bot_list>li:hover .bot_box .shadow_box .txt_box>a {
    opacity: 1;
}
.wp_wrap #trinno .bot .bot_list>li .bot_box .shadow_box .txt_box>a:hover {
    color: #24408A;
    background: #fff;
}



/* semi */
.wp_wrap #semi {
    padding: 100px 0 200px;
}
.wp_wrap #semi .m_tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #semi .top {
    display: flex;
    margin-bottom: 150px;
}
.wp_wrap #semi .top .left {
    width: 75%;
}
.wp_wrap #semi .top .left .tit {
    font-size: 36px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 25px;
    line-height: 1.5;
}
.wp_wrap #semi .top .left .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    color: #4A4A4A;
    line-height: 1.5;
    margin-bottom: 50px;
}
.wp_wrap #semi .top .left .ex.fir {
    margin-bottom: 40px;
}
.wp_wrap #semi .top .left>a {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    padding-bottom: 3px;
    border-bottom: 2px solid #000;
}
.wp_wrap #semi .top .left>a:hover {
    color: #000;
}
.wp_wrap #semi .top .right {}
.wp_wrap #semi .top .right .img_box {
    overflow: hidden;
    width: 555px;
    border-radius: 100%;
}
.wp_wrap #semi .top .right .img_box>img {
    width: 100%;
    height: 555px;
    object-fit: cover;
}
.wp_wrap #semi .bot {}
.wp_wrap #semi .bot .b_tit {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #semi .bot .bot_list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    row-gap: 60px;
}
.wp_wrap #semi .bot .bot_list>li {}
.wp_wrap #semi .bot .bot_list>li .bot_box {
    position: relative;
}
.wp_wrap #semi .bot .bot_list>li .bot_box .img_box {
    border-radius: 15px;
    overflow: hidden;
}
.wp_wrap #semi .bot .bot_list>li .bot_box .img_box>img {
}
.wp_wrap #semi .bot .bot_list>li .bot_box .shadow_box {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: rgba(0, 0, 0, 0.2);
    border-radius: 15px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    color: #fff;
    transition: 0.5s;
}
.wp_wrap #semi .bot .bot_list>li:hover .bot_box .shadow_box {
    background: rgba(0, 0, 0, 0.5);
}
.wp_wrap #semi .bot .bot_list>li .bot_box .shadow_box .txt_box {
    height: 50px;
    overflow: hidden;
    transition: 0.5s;
}
.wp_wrap #semi .bot .bot_list>li:hover .bot_box .shadow_box .txt_box {
    height: 300px;
}
.wp_wrap #semi .bot .bot_list>li .bot_box .shadow_box .txt_box .tit {
    font-size: 40px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 30px;
    text-align: center;
}
.wp_wrap #semi .bot .bot_list>li .bot_box .shadow_box .txt_box .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
    margin-bottom: 50px;
    text-align: center;
    opacity: 0;
    transition: 0.7s;
}
.wp_wrap #semi .bot .bot_list>li:nth-child(1) .bot_box .shadow_box .txt_box .ex {
    margin-bottom: 105px;
}
.wp_wrap #semi .bot .bot_list>li:nth-child(2) .bot_box .shadow_box .txt_box .ex {
    margin-bottom: 80px;
}
.wp_wrap #semi .bot .bot_list>li:nth-child(3) .bot_box .shadow_box .txt_box .ex {
    margin-bottom: 80px;
}
.wp_wrap #semi .bot .bot_list>li:nth-child(6) .bot_box .shadow_box .txt_box .ex {
    margin-bottom: 80px;
}
.wp_wrap #semi .bot .bot_list>li:hover .bot_box .shadow_box .txt_box .ex {
    opacity: 1;
}
.wp_wrap #semi .bot .bot_list>li .bot_box .shadow_box .txt_box>a {
    color: #fff;
    display: flex;
    justify-content: center;
    font-size: 16px;
    font-family: 'Pretendard-Bold';
    padding: 7px 0;
    border-radius: 30px;
    background: #24408A;
    width: 112px;
    margin: 0 auto;
    transition: 0.3s;
    opacity: 0;
}
.wp_wrap #semi .bot .bot_list>li:hover .bot_box .shadow_box .txt_box>a {
    opacity: 1;
}
.wp_wrap #semi .bot .bot_list>li .bot_box .shadow_box .txt_box>a:hover {
    color: #24408A;
    background: #fff;
}





/* on */
.wp_wrap #on {
    padding: 100px 0 200px;
}
.wp_wrap #on .m_tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 100px;
    text-align: center;
}
.wp_wrap #on .top {
    display: flex;
    margin-bottom: 150px;
}
.wp_wrap #on .top .left {
    width: 75%;
}
.wp_wrap #on .top .left .tit {
    font-size: 36px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 25px;
    line-height: 1.5;
}
.wp_wrap #on .top .left .ex {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    color: #4A4A4A;
    line-height: 1.5;
    margin-bottom: 50px;
}
.wp_wrap #on .top .left .ex.fir {
    margin-bottom: 40px;
}
.wp_wrap #on .top .left>a {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    padding-bottom: 3px;
    border-bottom: 2px solid #000;
}
.wp_wrap #on .top .left>a:hover {
    color: #000;
}
.wp_wrap #on .top .right {}
.wp_wrap #on .top .right .img_box {
    overflow: hidden;
    width: 555px;
    border-radius: 100%;
}
.wp_wrap #on .top .right .img_box>img {
    width: 100%;
    height: 555px;
    object-fit: cover;
}
.wp_wrap #on .mid {
    margin-bottom: 150px;
}
.wp_wrap #on .mid .b_tit {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    text-align: center;
    margin-bottom: 100px;
}
 .container {
    display: flex;
    height: 400px;
    width: 100%;
    gap: 23px;
    margin: 50px auto;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 150px;
  }
  .box {
    flex: 0.7;
    background-color: #142850; /* 기본 남색 */
    color: white;
    position: relative;
    cursor: pointer;
    transition: flex 0.5s ease, background-color 0.5s ease;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    writing-mode: vertical-rl; /* 기본: 세로 제목 */
    text-orientation: mixed;
    border-radius: 10px;
  }

  /* 배경 이미지를 위한 가상 요소 (기본은 숨김) */
  .box::before {
    content: "";
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background-size: cover;
    background-position: center center;
    opacity: 0; /* 기본은 투명 */
    transition: opacity 0.5s ease;
    z-index: 0;
  }
  /* 각 박스별 배경 이미지 지정 */
  .box.automotive::before {
    background-image: url('../img/sub/on01.jpg');
  }
  .box.industrial::before {
    background-image: url('../img/sub/on02.jpg');
  }
  .box.computing::before {
    background-image: url('../img/sub/on03.jpg');
  }
  .box.medical::before {
    background-image: url('../img/sub/on04.jpg');
  }

  /* 활성화된 박스 스타일 (.active 클래스) */
  .box.active {
    flex: 4;
    writing-mode: horizontal-tb; /* 가로 텍스트 */
    text-orientation: initial;
    background-color: transparent; /* 배경색 투명 */
  }
  .box.active::before {
    opacity: 1; /* 배경 이미지 보이기 */
  }

  /* 텍스트 영역 (기본은 숨김) */
  .text-area {
    position: absolute; /* 박스 내에서 절대 위치 */
    top: 0;
    left: 0;
    bottom: 0;
    width: 100%; /* 박스의 왼쪽 절반을 차지하도록 설정 (필요 시 조절) */
    background-color: rgba(0, 0, 0, 0.4); /* 반투명 배경 */
    /* border-radius는 box 전체에만 적용 */
  }
  /* 활성화된 박스에서 텍스트 보이기 */
  .box.active .text-area {
    padding: 50px 60px;
  }
  .box.active .text-area .title {
    font-size: 35px;
    font-family: 'Pretendard-SemiBold';
    margin-bottom: 15px;
  }
  .box.active .text-area .s_title {
    font-size: 23px;
    font-family: 'Pretendard-Medium';
    margin-bottom: 160px;
  }
  .box.active .text-area .content {
    font-size: 20px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
  }

  /* 기본 상태에서 세로 제목만 보이게 */
  .box:not(.active) .text-area {
    display: none; /* 비활성화된 박스의 텍스트 영역은 숨김 */
  }
  .box:not(.active) .title-vertical {
    display: flex; /* 세로 제목만 보이게 */
  }
  .box.active .title-vertical {
    display: none; /* 활성화된 박스에서는 세로 제목 숨김 */
  }

  .inactive-content {
    display: flex;
    transform: rotate(360deg); /* 숫자가 위로 가도록 회전 */
    align-items: flex-end;
    justify-content: space-between;
    width: 80%;
    height: 90%;
  }
  .title-vertical {
    font-size: 25px;
    font-family: 'Pretendard-Medium';
  }
  .inactive-number {
    font-size: 20px;
    font-family: 'Pretendard-Bold';
    color: #43537D;
  }

  /* 활성화된 박스에서 비활성화 내용 숨기기 */
  .box.active .inactive-content {
    display: none;
  }
  /* 비활성화된 박스에서 텍스트 영역 숨기기 */
  .box:not(.active) .text-area {
    display: none;
  }

  /* 활성화된 박스 오른쪽 숫자 */
  .box-number {
    position: absolute;
    right: 20px; /* 오른쪽에서 20px 떨어진 위치 */
    top: 50%;
    transform: translateY(-50%); /* 세로 중앙 정렬 */
    font-size: 6rem; /* 큰 숫자 크기 */
    font-weight: 900;
    color: rgba(255, 255, 255, 0.2); /* 반투명 흰색 */
    z-index: 5; /* 텍스트 영역보다는 아래, 배경보다는 위 */
    opacity: 0; /* 기본은 숨김 */
    transition: opacity 0.3s ease;
  }
  /* 활성화된 박스에서 숫자 보이기 */
  .box.active .box-number {
    opacity: 1;
  }

  .wp_wrap #on .bot {}
  .wp_wrap #on .bot .m_tit {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    text-align: center;
    margin-bottom: 20px;
    letter-spacing: 0;
  }
  .wp_wrap #on .bot .s_tit {
    font-size: 25px;
    font-family: 'Pretendard-Medium';
    color: #868686;
    margin-bottom: 100px;
    text-align: center;
  }
  .wp_wrap #on .bot .en_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 75px;
    row-gap: 75px;
    margin-bottom: 150px;
  }
  .wp_wrap #on .bot .en_list>li {}
  .wp_wrap #on .bot .en_list>li .en_box {
    border-radius: 10px;
    border: 1px solid #E5E5E5;
    overflow: hidden;
  }
  .wp_wrap #on .bot .en_list>li .en_box .img_box {
    border-bottom: 1px solid #E5E5E5;
  }
  .wp_wrap #on .bot .en_list>li .en_box .img_box>img {}
  .wp_wrap #on .bot .en_list>li .en_box .txt_box {
    padding-top: 20px;
    padding-left: 20px;
    padding-bottom: 30px;
  }
  .wp_wrap #on .bot .en_list>li .en_box .txt_box .name {
    font-size: 23px;
    font-family: 'Pretendard-SemiBold';
  }
  .wp_wrap #on .last {}
  .wp_wrap #on .last .tit {
    font-size: 40px;
    font-family: 'Pretendard-Bold';
    text-align: center;
    margin-bottom: 100px;
  }
  .wp_wrap #on .last .gray_box {
    background: #F9F9F9;
    padding: 60px 0;
}
  .wp_wrap #on .last .gray_box .pr_list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 54px;
    row-gap: 45px;
  }
  .wp_wrap #on .last .gray_box .pr_list>li {}
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box {
    padding: 20px;
    background: #fff;
    border: 1px solid #E4E4E4;
    border-radius: 10px;
    height: 365px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .top {
    display: block;
    margin-bottom: 0;
  }
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .top .tit {
    margin-bottom: 0;
    display: flex;
    align-items: center;
    gap: 5px;
  }
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .top .tit .img_box {}
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .top .tit .img_box>img {}
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .top .tit .title {
    font-size: 30px;
    text-align: start;
  }
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .top .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    line-height: 1.5;
  }
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .bot {}
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .bot>a {
    font-size: 16px;
    font-family: 'Pretendard-Bold';
    color: #fff;
    padding: 7px 31px;
    background: #24408A;
    border-radius: 30px;
    transition: 0.3s;
    border: 1px solid #24408A;
  }
  .wp_wrap #on .last .gray_box .pr_list>li .pr_box .bot>a:hover {
    background: #fff;
    color: #24408A;
  }


  /* notice */
  .wp_wrap #notice {
    padding: 100px 0 200px;
  }
  .wp_wrap #notice .tit_box {
    margin-bottom: 100px;
    text-align: center;
  }
  .wp_wrap #notice .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
  }
  .wp_wrap #notice .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
  }


  /* inquiry */
  .wp_wrap #inquiry {
    padding: 100px 0 200px;
  }
  .wp_wrap #inquiry .tit_box {
    margin-bottom: 100px;
    text-align: center;
  }
  .wp_wrap #inquiry .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
  }
  .wp_wrap #inquiry .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
  }
  .wp_wrap #inquiry form {}
  .wp_wrap #inquiry form .top {
    display: flex;
    justify-content: flex-end;
    border-bottom: 1px solid #000;
    margin-bottom: 50px;
  }
  .wp_wrap #inquiry form .top .ex {
    font-size: 18px;
    font-family: 'Pretendard-Regular';
    padding-bottom: 10px;
  }
  .wp_wrap #inquiry form .top .ex>span {
    color: #24408A;
  }
  .wp_wrap #inquiry form .form_wrap {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
  .wp_wrap #inquiry form .form_wrap .form_line {}
  .wp_wrap #inquiry form .form_wrap .form_line.flex {
    display: flex;
    gap: 40px;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .left {
    width: 50%;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .form_tit {
    margin-bottom: 10px;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .form_tit .txt {
    font-size: 20px;
    font-family: 'Pretendard-SemiBold';
  }
  .wp_wrap #inquiry form .form_wrap .form_line .form_tit .txt>span {
    color: #24408A;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .right {
    width: 50%;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .form_inp {}
  .wp_wrap #inquiry form .form_wrap .form_line .form_inp>input {
    width: 100%;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    font-size: 18px;
    padding: 15px;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .form_inp>input:focus {
    outline: none;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .form_inp>select {
    width: 100%;
    border: 1px solid #CCCCCC;
    border-radius: 3px;
    font-size: 18px;
    padding: 15px;
  }
  .wp_wrap #inquiry form .form_wrap .form_line .form_inp>select:focus {
    outline: none;
  }
  .wp_wrap #inquiry form .form_wrap .form_line textarea {
    width: 100%;
    resize: none;
    border: 1px solid #CCCCCC;
    height: 255px;
    padding: 15px;
  }
  .wp_wrap #inquiry form .form_wrap .form_line textarea:focus {
    outline: none;
  }
  .form_wrap .form_last_line .agr_box{
    margin-bottom: 30px;
}
input[type="checkbox"]{
    display: none;
}
input[type="checkbox"] + label{
    font-size: 16px;
    font-family: var(--font-pre300);
    display: flex;
    align-items: center;
    justify-content: start;
    margin-bottom: 3px;
    color: #000;
    font-family: 'Pretendard-Regular';
}
input[type="checkbox"] + label .chk_cst{
    width: 19px;
    height: 19px;
    display: inline-block;
    margin-right: 5px;
    background: url(../img/icon/agr_chk_bf.png) no-repeat center center / cover;
}
input[type="checkbox"]:checked + label .chk_cst{
    background: url(../img/icon/agr_chk_at.png) no-repeat center center / cover;
}
input[type="checkbox"]:checked + label .chk_cst{}
input[type="checkbox"] + label .txt_deco{
    text-decoration: underline;
    text-underline-offset: 3px;
}
.wp_wrap #inquiry form .form_wrap .button {
    width: 180px;
    margin: 0 auto;
}
.wp_wrap #inquiry form .form_wrap .button>button {
    background: #24408A;
    border-radius: 10px;
    color: #fff;
    padding: 15px 0;
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    width: 100%;
    transition: 0.3s;
    border: 1px solid #24408A;
}
.wp_wrap #inquiry form .form_wrap .button>button:hover {
    color: #24408A;
    background: #fff;
}


/* contact */
  .wp_wrap #contact {
    padding: 100px 0 200px;
  }
  .wp_wrap #contact .tit_box {
    margin-bottom: 100px;
    text-align: center;
  }
  .wp_wrap #contact .tit_box .tit {
    font-size: 60px;
    font-family: 'Pretendard-Bold';
    margin-bottom: 20px;
  }
  .wp_wrap #contact .tit_box .s_tit {
    font-size: 20px;
    font-family: 'Pretendard-Medium';
    color: #B4B4B4;
  }
  .wp_wrap #contact .gray_box {
    background: #F9F9F9;
    padding: 120px 0;
  }
  .wp_wrap #contact .gray_box table {
    width: 100%;
    border-collapse: collapse;
    border-top: 3px solid #24408A;
  }
  .wp_wrap #contact .gray_box table thead tr {}
  .wp_wrap #contact .gray_box table thead tr th {
    font-size: 25px;
    font-family: 'Pretendard-SemiBold';
    padding: 15px 0;
    background: #fff;
    border-bottom: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
  }
  .wp_wrap #contact .gray_box table thead tr th:last-child {
    border-right: none;
  }
  .wp_wrap #contact .gray_box table tbody {}
  .wp_wrap #contact .gray_box table tbody tr {}
  .wp_wrap #contact .gray_box table tbody tr td {
    font-size: 22px;
    font-family: 'Pretendard-Regular';
    padding: 15px 0;
    text-align: center;
    border-bottom: 1px solid #E5E5E5;
    border-right: 1px solid #E5E5E5;
  }
  .wp_wrap #contact .gray_box table tbody tr td:last-child {
    border-right: none;
  }
/**********************************************************************************************************************/


/* 모달 */
/**********************************************************************************************************************/
.wp_wrap .com_md {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    display: none;
}
.wp_wrap .pv_md.on {
    display: block;
}
.wp_wrap .tou_md.on {
    display: block;
}
.wp_wrap .com_md .md_outer {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 15px;
    height: 100%;
}
.wp_wrap .com_md .md_outer .width_inner {
    position: relative;
    max-width: 1100px;
    width: 100%;
    height: 80vh;
    background: #fff;
    padding: 30px 40px 60px 40px;
}
.wp_wrap .com_md .md_outer .width_inner .icon_box {
    position: absolute;
    top: 25px;
    right: 25px;
    z-index: 1000;
    cursor: pointer;
}
.wp_wrap .com_md .md_outer .width_inner .icon_box i {
    border: 2px solid #999999;
    border-radius: 50%;
    padding: 6px;
    font-size: 18px;
    color: #999999;
    font-weight: 900;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    gap: 15px;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner p {
    font-size: 33px;
    font-family: var(--font-pre500);
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box {
    border: 1px solid #ddd;
    width: 100%;
    height: 100%;
    padding: 15px;
    overflow-y: auto;    
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box::-webkit-scrollbar { 
    width: 6px;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box::-webkit-scrollbar-thumb { 
    border-radius:10px; 
    background-color: #e0e0e0;
    cursor: pointer;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box::-webkit-scrollbar-track {  
    background-color: #fff; 
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box .txt_body pre {
    font-family: var(--font-pre400);
    font-weight: 400;
    font-size: 17px;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
    white-space: -o-pre-wrap;
    white-space: pre-wrap;
    word-wrap: break-word;
    line-height: 1.4;
}
.wp_wrap .com_md .md_outer .width_inner .md_inner .txt_box .txt_body pre .cicnum {
    position: relative;
    display: inline-block;
    top: -2px;
    font-size: 10px;
}
/**********************************************************************************************************************/


















































