@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');
/* 초기화부분시작 */
*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    word-break: keep-all;
    font-family: 'Roboto', sans-serif;
}
ol,ul,li{
    list-style: none;
}
a{
    text-decoration: none;
    color: #000;
}

/* 초기화부분 끝*/
body{
    overflow-x: hidden; /* 가로 스크롤 제거 */
}




/* 헤더부분 시작*/
header{
    width: 100%;
    height: 80px;
    position: fixed;
    z-index: 99;
    display: flex;
    flex-direction: column;
    transition: 0.3s;
    background-color: #000000bd;
}
.header_interaction{
    width:100%;
    height: 5px;
}
.header_interaction_item{
    width: 0%;
    height: 100%;
    background-color: #DB383F;
}
.header_contents{
    padding: 0 7.29%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: calc(100% - 5px);

}

.hamburger_button{
    width: 36px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: flex-end;
    cursor: pointer;
    position: relative;
    z-index: 99;
}
.hamburger_button:hover .hamburger_button_item{
    width: 100%;
}
.hamburger_button_item{
    height: 3px;
    border-radius: 15px;
    background: #FFF;
    transition: 0.3s;
}
.hamburger_button_item:nth-child(1){
    width: 100%;
}
.hamburger_button_item:nth-child(2){
    width: 78%;
}
.hamburger_button_item:nth-child(3){
    width: 55%;
}

.hamburger_button.active .hamburger_button_item:nth-child(1){
    width: 100%;
    transform:rotate(45deg) translateY(12px) ;
}
.hamburger_button.active .hamburger_button_item:nth-child(2){
    width: 100%;
    opacity: 0;
}
.hamburger_button.active .hamburger_button_item:nth-child(3){
    width: 100%;
    transform:rotate(-45deg) translateY(-12px) ;
}
.sub_bk{
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.70);
    position: fixed;
    visibility: hidden;
    opacity: 0;
    transition: 0.3s;
    padding: 0 100px;
    display: flex;
    justify-content: flex-end;
}
.sub_bk.active{
    visibility: visible;
    opacity: 1;
    z-index: 9;
}
.sub_manu{
    width: 450px;
    height: 100%;
    background: rgba(17, 19, 21, 0.90);
    display: flex;
    align-items: center;
    padding: 0 60px;
}
.sub_manu_item{
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 50px;
}
.sub_manu_item_box{
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.sub_manu_item_h1{
    color: #FFF;
    font-size: 24px;
    font-style: normal;
    font-weight: 600;
    line-height: normal;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: fit-content;
}
.sub_manu_item_h2{
    color: #DBDBDB;
    font-size: 17px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: fit-content;
    margin-left: 5px;
    text-align: center;
}
.sub_manu_item_li{
    color: #DBDBDB;
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    width: fit-content;
    text-align: center;
    margin: 0 0 2px 16px;
}
.sub_manu_item_li_title{
    color: #DBDBDB;
    font-size: 17px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    position: relative;
    overflow: hidden;
    width: fit-content;
    margin-left: 5px;
    text-align: center;
    margin-bottom: 4px;
}
.sub_manu_item_h2::after {
    content: ""; /* 의사 요소는 내용이 있어야 보임 */
    position: absolute; /* h1 요소에 대해 절대 위치 지정 */
    left: 0; /* 왼쪽에서 시작 */
    bottom: 0; /* 밑줄이 h1 요소의 하단에 위치하도록 */
    width: 0; /* 초기에는 보이지 않음 */
    height: 1px; /* 밑줄 두께 */
    background: #ffffff; /* 밑줄 색상 */
    transition: width 0.3s linear; /* 밑줄이 서서히 나타나게 */
}
.sub_manu_item_li::after {
    content: ""; /* 의사 요소는 내용이 있어야 보임 */
    position: absolute; /* h1 요소에 대해 절대 위치 지정 */
    left: 0; /* 왼쪽에서 시작 */
    bottom: 0; /* 밑줄이 h1 요소의 하단에 위치하도록 */
    width: 0; /* 초기에는 보이지 않음 */
    height: 1px; /* 밑줄 두께 */
    background: #ffffff; /* 밑줄 색상 */
    transition: width 0.3s linear; /* 밑줄이 서서히 나타나게 */
}

.sub_manu_item_h1::after {
    content: ""; /* 의사 요소는 내용이 있어야 보임 */
    position: absolute; /* h1 요소에 대해 절대 위치 지정 */
    left: 0; /* 왼쪽에서 시작 */
    bottom: 0; /* 밑줄이 h1 요소의 하단에 위치하도록 */
    width: 0; /* 초기에는 보이지 않음 */
    height: 2px; /* 밑줄 두께 */
    background: #ffffff; /* 밑줄 색상 */
    transition: width 0.3s linear; /* 밑줄이 서서히 나타나게 */
}
.sub_manu_item_li:hover::after {
    width: 100%; /* 마우스를 올리면 밑줄이 전체 너비로 확장 */
}
.sub_manu_item_h1:hover::after {
    width: 100%; /* 마우스를 올리면 밑줄이 전체 너비로 확장 */
}
.sub_manu_item_h2:hover{
    color: #fff;
}
.sub_manu_item_h2:hover::after {
    width: 100%; /* 마우스를 올리면 밑줄이 전체 너비로 확장 */
}

/* 헤더부분 끝*/





/* 푸터부분 시작 */
footer{
    width: 100%;
    padding: 40px 0px;
    background: rgba(22, 22, 22, 0.70);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}
.footer_contents{
    width: 66.67%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_content{
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 49.22%;
}
.footer_content_item{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer_content_item h1{
    color: rgba(255, 255, 255, 0.40);
    font-size: 14px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    letter-spacing: -0.9px;
}
.footer_copyright_p{
    color: #FFF;
    font-size: 12px;
    font-style: normal;
    font-weight:100;
    line-height: normal;
    letter-spacing: -0.8px;
}
.footer_content_bottom{
    display: flex;
    gap: 20px;
}
.footer_copyright{
    display: flex;
    width: 66.67%;
    justify-content: flex-end;
    padding: 20px 0;
    border-top: 1px solid #FFF;
}
.footer_copyright_p{
    color: rgba(255, 255, 255, 0.40);
    font-size: 12px;
    font-style: normal;
    font-weight: 100;
    line-height: normal;
    letter-spacing: -0.7px;
}
.footer_copyright_p br{
    display: none;
}
.footer_copyright_en{
    font-size: 13px;
}
/* 푸터부분 끝 */
