@charset "utf-8";

body {
	color: #fff;
	font-family: "Noto Sans KR", sans-serif;
	letter-spacing: 0;
}

#wrap {
	overflow: hidden;
	color: #fff;
}

img {
	display: block;
	max-width: 100%;
}

.inner{
    max-width: 700px;
    margin: 0 auto;
}

/* -------------------------------------------------------------------------------- */

/* 박스 틀 */

.land_bg{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #000;
    z-index: -10;
}

.land_con{
    max-width: 800px;
    margin: 0 auto;
    overflow: hidden;
    z-index: 100;
}

.land_con img{
    width: 100%;
}

/* 박스 틀 */

/* 섹션04 */

.land_con .sec04{
    width: 100%;
    height: auto;
    background: var(--main-bg);
    overflow: hidden;
    padding-bottom: 6rem;
}

.sec04 .pre_re_subjebt p{
    margin-top: 6rem;
    margin-bottom: 2rem;
    font-size: 2.7rem;
    color: var(--main-color);
    font-weight: 600;
}

.sec04 .pre_re_subjebt::after{
    content: "";
    display: block;
    height: 1px;
    background: #009999;
    margin-bottom: 1.8rem;
}

.sec04 .pre_re_infor .pre_re_infor_tit{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.sec04 .pre_re_infor .pre_re_infor_tit p{
    font-size: 2.2rem;
    color: #fff;
    margin-bottom: 1.8rem;
}

.sec04 .pre_re_infor .pre_re_infor_tit h6{
    font-size: 1.6rem;
    color: var(--main-color);
    font-weight: 300;
}

.sec04 .form::after{
    content: "";
    display: block;
    height: 1px;
    background: #fff;
    margin: 2.5rem 0;
}

.sec04 .form div span{
    color: var(--main-color);
    font-size: 1.5rem;
}

.sec04 .form div{
    display: inline-block;
    width: 11.6rem;
    height: 4rem;
    border: 1px solid #2e2e54;
    background: #070735;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 4rem;
    padding-left: 2rem;
    margin-bottom: 1.2rem;
}

.sec04 .form .input{
    display: inline-block;
    width: 57.1rem;
    height: 4rem;
    border: 1px solid #2e2e54;
    background: #070735;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 4rem;
    padding-left: 2rem;
    margin-left: 1.2rem;
}

.sec04 .form .phone,
.sec04 .form .email,
.sec04 .form .of_name{
    width: 100%;
    margin-bottom: 0.5rem;
}

.sec04 .form .email,
.sec04 .form .of_name{
    margin-top: 1rem;
}

.sec04 .form .info_msg{
    font-size: 1.4rem;
    font-weight: 300;
    display: flex;
    gap:0.5rem;
}

.sec04 .pre_re_infor02 .pre_re_infor_tit p{
    font-family: "Mark Pro Bold", sans-serif;
    font-size: 2rem;
    margin-bottom: 1.8rem;
}

.sec04 .form fieldset{
    display: inline-block;
    width: 100%;
    height: 4rem;
    border: 1px solid #2e2e54;
    background: #070735;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 4rem;
    padding-left: 2rem;
}

.sec04 .form fieldset select{
    width: 95%;
    background: transparent;
    color: #fff;
    font-size: 1.5rem;
}

.sec04 .form02 fieldset select:invalid {
    font-size: 1.5rem;
    font-weight: 300;
}

.sec04 .form fieldset option{
    width: 100%;
    background: transparent;
    color: #070735;
    font-size: 1.5rem;
}

.sec04 .pre_re_infor .add_btn{
    width: 100%;
    height: 5rem;
    background: #009999;
    display: flex;
    gap: 0.3rem;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.sec04 .pre_re_infor .add_btn p{
    font-size: 1.5rem;
    font-weight: 600;
    color: #fff;
}

.sec04 .pre_re_infor .add_btn span{
    color: #fff;
    font-size: 1.8rem;
}

.sec04 .form .ko_adress,
.sec04 .form .en_adress{
    display: inline-block;
    width: 33rem;
    height: 4rem;
    border: 1px solid #2e2e54;
    background: #070735;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 4rem;
    padding-left: 2rem;
    margin-left: 1.2rem;
}

.sec04 .form .ko_adress{
    margin-top: 1.5rem;
}


.sec04 .form .field {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.sec04 .form .field-label {
    width: 48%;
    font-family: "Siemens Sans" , sans-serif;
    font-size: 1.5rem;
    margin-left: 1rem;
    margin-bottom: 2rem;
    position: relative;
    padding-left: 30px; /* 체크박스 크기 + 간격 */
    color: #fff;
    cursor: pointer;
    display: inline-block;
    line-height: 22px;
}

/* 빈 체크박스 그리기 (Before) */
.sec04 .form .field-label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 20px;
    height: 20px;
    background: #000028; /* 기존 폼 배경색 */
    border: 1px solid #fff; /* 기존 폼 테두리색 */
    border-radius: 0px;
}

/* 체크되었을 때 박스 배경색 변경 */
.sec04 .form .field:checked + .field-label::before {
    background-color: #fff; /* 포인트 컬러 */
    border-color: #000028;
}

/* 체크되었을 때 'V'자 표시 나타내기 (After) */
.sec04 .form .field-label::after {
    content: "";
    position: absolute;
    left: 0.7rem;
    top: 0.3rem;
    width: 0.6rem;
    height: 1rem;
    border: solid #000028; /* 체크박스 안의 V자 색상 */
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
    display: none; /* 평소엔 숨김 */
}

.sec04 .form .field:checked + .field-label::after {
    display: block; /* 체크되면 보임 */
}

.sec04 .form .p{
    display: inline-block;
    width: 90%;
    height: 4rem;
    border: 1px solid #2e2e54;
    background: #070735;
    font-size: 1.5rem;
    font-weight: 300;
    line-height: 4rem;
    padding-left: 2rem;
    margin-left: 4.5rem;
    margin-top: -2.8rem;
}

.sec04 .form .field-label:last-child(2)::before{
    top: 1rem;
}

.sec04 .form .field-label:last-child(2)::after{
    top: 1.2rem;
}


.sec04 .pre_re_infor .pre_re_infor_tit span{
    color: #fff;
    font-size: 3rem;
    position: relative;
    top: -0.5rem;
    left: -40rem;
    cursor: pointer;
}

.sec04 .tos_desc{
    width: 100%;
    height: 43rem;
    background: #070735;
    padding: 2rem;
    margin-bottom: 2rem;
    display: none;
}

.sec04 .tos_desc ul p{
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.3rem;
}

.sec04 .tos_desc ul li{
    font-size: 1.2rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 2rem;
}

.sec04 .form02  .field-label{
    font-weight: 300;
    font-size: 1.7rem;
}

.sec04 .form02 .field-label span{
    color: var(--main-color);
    font-size: 1.7rem;
}

.sec04 .pre_re_infor .pre_btn{
    width: 16rem;
    height: 6rem;
    background: var(--main-gradient);
    margin-bottom: 1rem;
    display: block;
    margin: 0 auto;
    margin-top: 3rem;
    margin-bottom: 4rem;
}

.sec04 .pre_re_infor .pre_btn p{
    font-size: 2rem;
    font-weight: 600;
    color: #000;
}

/* 섹션04 */

/* 푸터 */

.ft_list{
    display: flex;
    font-family: "Siemens Sans" , sans-serif;
    margin-top: 5rem;
    gap: 6rem;
}

.ft_list > ul > p{
    font-size: 1.5rem;
    font-weight: 700;
}

.ft_list > ul > li{
    display: flex;
    line-height: 2;
    font-size: 1.6rem;
    align-items: center;
}

.ft_desc{
    position: relative;
    top: 0rem;
    left: 40rem;
}

.ft_desc p{
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
}


.ft_desc .about b{
    font-size: 1.5rem;
    font-weight: 800;
}

.ft_desc .contact{
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.ft_desc .contact::before{
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.2rem;
    background: url('../img/email_ico.png') no-repeat;
}

.ft_desc .sns_list{
    display: flex;
    gap: 2rem;
}

.ft_desc .sns_list a{
    color: #fff;
}

.ft_desc .link::before{
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.4rem;
    background: url('../img/linkedin.png') no-repeat;
    margin-right: 0.3rem;
}

.ft_desc .facebook::before{
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.4rem;
    background: url('../img/facebook.png') no-repeat;
    margin-right: 0.3rem;
}

.ft_desc .Kakao::before{
    content: "";
    display: inline-block;
    width: 1.5rem;
    height: 1.4rem;
    background: url('../img/Kakao.png') no-repeat;
    margin-right: 0.3rem;
}

footer .copy {
    display: flex;
    justify-content: space-between;
    margin-top: 5rem;
}

footer .copy span{
    font-size: 1.3rem;
    color: #009999;
}

footer .copy p{
    font-size: 1.3rem;
}

/* 푸터 */


/* 모바일 반응형 작업 */

@media screen and (max-width: 780px) {
    html {
        /* PC 비율을 유지하기 위해 폰트 기준점을 키움 */
        font-size: 1.5vw !important; 
    }


    /* 배경 이미지가 있는 섹션의 경우 여백 때문에 배경이 잘려 보일 수 있으므로 
       배경은 꽉 차게, 내용은 안으로 모이게 하고 싶다면 아래처럼 적용하세요 */
    .sec04 {
        height: auto !important;
        padding: 6rem 4rem !important; /* rem 단위를 사용해 여백 부여 */
        box-sizing: border-box !important;
    }

    /* 고정 너비(rem)가 지정된 입력창들이 화면 밖으로 나가지 않게 조절 */
    .sec04 .form .input, 
    .sec04 .form .p {
        width: 77.7% !important;
        margin-left: 1rem !important;
        margin-right: 0 !important;
    }

    .sec04 .form .ko_adress, 
    .sec04 .form .en_adress{
        width: 47.5% !important;
        margin-left: 1rem !important;
        margin-right: 0 !important;
    }

    .sec04 .form .p {
        margin-left: 4.5rem !important;
    }

    .sec04 .form02 .field-label{
        width: 100%;
    }

    .sec04 .pre_re_infor .pre_re_infor_tit span{
        left: -27rem;
    }

    .sec04 .tos_desc{
        height: auto;
    }

    .ft_desc{
        top: 2rem;
        left: 0;
    }
}

/* 모바일 반응형 작업 */