@charset "utf-8";
*{
    word-break: keep-all;
}
html{
    font-size: 62.5%;
    height: 100%;
}
body{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
    font-weight: 300;
    font-size: 1.5rem;
    color: var(--black-color-);
}
input, textarea{
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}
:root {
    --black-color-: #101820;
    --grey-color-: #898a8d;
    --blue-color-: #889bd4;
}
.eng{
    font-family: "Outfit", sans-serif;
}
.web{
    display: block;
}
.mobile{
    display: none;
}
img, picture{
    width: 100%;
    height: 100%;
    max-width: 100%;
    object-fit: cover;
}
p{word-break: keep-all;}
strong, b, dt, th{
    font-weight: 800;
}
.fixed-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    transition: all 0.5s ease;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 99;
}
#logo{
    padding: 1.8rem 0;
    height: 6rem;
    text-align: center;

}
#logo a{
    display: block;
    width: 100%;
    height: 100%;
}
#logo img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
#background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: -1;
}

#background video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.background-video{
    position: relative;
    z-index: 1;
}
.background-blur{
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 2;
}

.round{
    border-radius: 18px;
}
.round-hidden{
    border-radius: 18px;
    overflow: hidden;
}
#index{
    width: 100%;
    padding: 100px;
    max-width: 1280px;
    margin: 0 auto;
}
#subject{
    /*ackground: rgba(255, 255, 255, 0.95);*/
    display: flex;
}
#subject h1{
    font-size: 5rem;
    font-weight: 100;
    color: white;
}
#subject p{
    color: white;
    margin-top: 2rem;
    line-height: 1.4;
}
#subject .subject-title{
    margin-right: 5rem;
}
#subject .subject-logo{
    margin-left: auto;
    background-color: white;
    width: 22rem;
    height: 22rem;
    padding: 5rem;
    position: relative;
}
#subject .subject-logo img{
    height: 100%;
    width: 100%;
    object-fit: contain;
    animation: rotateLogo 2s infinite ease-in-out;
}
@keyframes rotateLogo {
    0%, 40%, 100% {
        transform: translateY(0);
    }
    20% {
        transform: translateY(-1rem);
    }
}
#subject .subject-logo::after{
    position: absolute;
    width: 110%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    content: "";
    filter: blur(50px);
    background: linear-gradient(90deg, rgba(111, 255, 255, 0.7) 0%, rgba(102,116,255,0.7) 50%, rgba(77,175,255,0.7) 100%);
}

#contents{
    margin-top: 8rem;
    display: flex;
    justify-content: space-between;
}
#contents .contents-title{
    width: calc(50% - 2rem);
}
#contents .sub-subject{
    background: linear-gradient(90deg, rgba(111, 255, 255, 0.7) 0%, rgba(102,116,255,0.7) 50%, rgba(77,175,255,0.7) 100%);
    padding: 5rem;
    color: white;
    position: relative;
}

#contents .sub-subject::after{
    position: absolute;
    width: 110%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    content: "";
    filter: blur(50px);
    background: linear-gradient(90deg, rgba(111, 255, 255, 0.3) 0%, rgba(102,116,255,0.3) 50%, rgba(77,175,255,0.3) 100%);
}
#contents .sub-subject h2{
    font-weight: 300;
    font-size: 2.8rem;
}
#contents .sub-subject p{
    margin-top: 1rem;
}
#contents .step{
    background-color: white;
    padding: 5rem;
    margin-top: 4rem;
    position: relative;
}
#contents .step::after{
    position: absolute;
    width: 110%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    content: "";
    filter: blur(50px);
    background: linear-gradient(90deg, rgba(111, 255, 255, 0.3) 0%, rgba(102,116,255,0.3) 50%, rgba(77,175,255,0.3) 100%);
}
#contents .step li{
    margin-bottom: 5rem;
    display: flex;
}
#contents .step li:last-child{
    margin-bottom: 0;
}
#contents .step li span{
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    width: 5rem;
    height: 5rem;
    background: linear-gradient(135deg, rgba(111, 255, 255, 0.8) 0%, rgba(102,116,255,0.8) 100%);
    color: white;
    border-radius: 100%;
}
#contents .step li .step-title{ 
    width: calc(100% - 8rem);
    margin-left: auto;
}
#contents .step h3{
    font-size: 2rem;
}
#contents .step p{
    color: var(--grey-color-);
    margin-top: 1rem;
}

#contents .contents-data{
    position: relative;
    width: calc(50% - 2rem);
    background: rgba(255, 255, 255, 0.2);
    padding: 5rem;
    color: white;
}
#contents .contents-data::after{
    position: absolute;
    width: 110%;
    height: 110%;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);
    z-index: -1;
    content: "";
    filter: blur(50px);
    background: linear-gradient(90deg, rgba(111, 255, 255, 0.2) 0%, rgba(102,116,255,0.2) 50%, rgba(77,175,255,0.2) 100%);
}
#contents .contents-data li.db_info{
    margin-top: 3rem;
}
#contents .contents-data li.db_info:first-child{
    margin-top: 0;
}
#contents .contents-data li .db_input{
    margin-top: 0.6rem;
    font-size: 1.4rem;
}
#contents .contents-data input[type="text"],
#contents .contents-data textarea[type="text"]{
    width: 100%;
    padding: 0.6rem;
    background: transparent;
    border: 0;
    border-bottom: 1px solid white;
    color: white;
}
#contents .contents-data textarea{
    height: 7rem;
}
#contents .contents-data input::placeholder,
#contents .contents-data textarea::placeholder {
    color: #ccc;
    font-family: -apple-system, BlinkMacSystemFont, "Apple SD Gothic Neo", "Pretendard Variable", Pretendard, Roboto, "Noto Sans KR", "Segoe UI", "Malgun Gothic", "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", sans-serif;
}

.db_input_radio{
    display: flex;
}
.db_input_radio .radio-container:last-child{
    margin-left: 3rem;
}
.radio-container{
    display: block;
    position: relative;
    padding-left: 3rem;
    cursor: pointer;
    user-select: none;
}

.radio-container input{
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark{
    position: absolute;
    top: 0;
    left: 0;
    height: 2rem;
    width: 2rem;
    background-color: #eee;
    border-radius: 50%;
}

.radio-container input:checked ~ .checkmark{
    background: linear-gradient(135deg, rgba(111, 255, 255, 0.8) 0%, rgba(102,116,255,0.8) 100%);

}

.checkmark:after{
    content: "";
    position: absolute;
    display: none;
}

.radio-container input:checked ~ .checkmark:after{
    display: block;
}

.radio-container .checkmark:after{
    top: 0.7rem;
    left: 0.7rem;
    width: 0.6rem;
    height: 0.6rem;
    border-radius: 50%;
    background: white;
}

#index .submit-btn{
    margin-top: 3rem;
}
#index .submit-btn .q_confirm{
    margin-top: 2rem;
}
#index .submit-btn .q_confirm input{
    background: linear-gradient(135deg, rgba(111, 255, 255, 0.8) 0%, rgba(102,116,255,0.8) 100%);
    border: none;
    color: white;
    width: 100%;
    padding: 1.6rem;
    cursor: pointer;
}
#privacy{
    margin-top: 4rem;
}
.privacy-policy {
    border: 1px solid white;
    padding: 5rem;
    max-width: 1280px;
    margin: auto;
    font-size: 1.3rem;
    color: white;
    line-height: 1.4;
    overflow-y: scroll;
    height: 100%;
    max-height: 40rem;
}
.privacy-policy h2 {
    border-bottom: 1px solid var(--grey-color-);
    padding-bottom: 1rem;
    margin-bottom: 2rem;
    font-size: 1.6rem;
}
.privacy-policy h3 {
    margin-top: 2rem;
    padding-bottom: 1rem;
    font-size: 1.4rem;
}
.privacy-policy  li{
    font-size: 1.2rem;
}
.privacy-policy::-webkit-scrollbar {
    width: 5px;
    margin-right: 10px;
}
.privacy-policy::-webkit-scrollbar-track {
    background: transparent;
    border-radius: 6px;
    margin: 10px;
}
.privacy-policy::-webkit-scrollbar-thumb {
    background: white;
    border-radius: 6px;
    border: 3px solid transparent;
}


input[type="text"]:focus,
input[type="tel"]:focus,
input[type="date"]:focus,
textarea:focus,
input[type="text"]:active,
input[type="tel"]:active,
input[type="date"]:active,
textarea:active {
    border: none;
    outline: none;
}

/* 모바일 터치 활성화 스타일 */
input[type="text"]:hover,
input[type="tel"]:hover,
input[type="date"]:hover,
textarea:hover {
    border: none;
    outline: none;
}





@media(max-width: 1280px){
    html{
        font-size: 56.25%;
        
        
    }
}


@media(max-width: 768px){
    html{
        font-size: 50%;
    }
    .web{
        display: none;
    }
    .mobile{
        display: block;
    }
    .round{
        border-radius: 10px;
    }
    #index{
        padding: 5rem;
    }
    #subject{
        flex-direction: column;
    }
    #subject .subject-title{
        margin-right: 0;
    }
    #subject h1{
        font-size: 4.3rem;
    }
    #subject .subject-logo{
        margin-left: 0;
        width: 100%;
        margin-top: 5rem;
    }
    #contents{
        flex-direction: column;
        margin-top: 5rem;
    }
    #contents .contents-title{
        width: 100%;
    }
    #contents .contents-data{
        margin-top: 5rem;
        width: 100%;
    }
    .privacy-policy {
        margin-top: 5rem;
    }
    #contents .sub-subject,
    #contents .step,
    #contents .contents-data,
    .privacy-policy{
        padding: 4rem;
    }
}