@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/variable/pretendardvariable.min.css");

:root 
{
    --main-color: #003D8F;
    --subtitle-color: #767676;
    --background-gray1 : #F7F7FB;
    --background-deppgray: #f1f1f5;
    --banner-title : 85px;
    --title : 36px;
    --subtitle : 18px;
    --list-subtitle : 16px;
    --btn-font: 14px;
    --menu-font: 16px;
    --font-24:24px;
}
body 
{
    display: flex;
    justify-content: center;
    font-family: "Pretendard Variable";
}


.letterSpcing{
	letter-spacing: 0px !important;
}
.container 
{
    width: 100%;
}

/* ===== section  ===== */

section
{    
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: calc((1200 / 1920)* 100%);
    margin: 0 auto;
    align-items: center;
    padding: 120px 0 250px;
    gap: 24px 0;
}

section .textWrap
{
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    gap: 24px 0;
}

section .textWrap .title
{
    font-size:var(--title);
    color: #111;
}

section .textWrap .subTitle
{
    font-size:var(--subtitle);
    color: var(--subtitle-color);
    line-height:1.5;
    font-weight: 400;
    letter-spacing: -1.5px;
}

form#request
{
    width: 100%;
}

.request_wrap
{
    border-top: 4px solid var(--main-color);
    display: flex;
    flex-direction: column;
}

.request_input_wrap 
{
    padding: 12px;
    display: flex;
    align-items: center;
    border-bottom: 1px solid #e5e5ec;
}

.input_title  
{
    width: 200px;
}
.input_title .title 
{
    font-size: 16px;
    color: #111;
    font-weight: 500;
}

.input_title .title:after 
{
    content: '*';
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #B00020;
    margin-left: 5px;
}

.input_user 
{
    width: calc(100% - 200px);
}

.input_user.tel 
{
    display: flex;
    gap:0 12px;
    align-items: center;
} 

.input_user select, .input_user input
{
    width: 100%;
    height: 42px;
    background: #f7f7fb;
    border: 1px solid #e5e5ec;
    padding-left: 12px;
    font-size: var(--btn-font);
    color: #999;
}

.input_user input::placeholder,
textarea::placeholder 
{
    color: #999;
}

textarea 
{
    width: 100%;
    height: 202px;
    resize: none;
    padding: 20px;
    border: 1px solid #e5e5ec!important;
    font-size: var(--btn-font);
    background: #f7f7fb;
}

.agree 
{
    display: flex;
    align-items: center;
    justify-content: end;
    padding:40px 0;
    gap:0 8px;
    font-size: var(--btn-font);
}

.agree input[type=checkbox] 
{
    width:20px;
    height: 20px;
    border: 1px solid #e5e5ec!important;
    cursor: pointer;
}

span.highlight 
{
    color:var(--main-color);
    font-weight: 600;
    cursor: pointer;
}

span.highlight:first-child 
{
    text-decoration: underline;
}

.btn_wrap 
{
    display: flex;
    justify-content: center;
}

#send_button, #Eng_send_button
{
    width: 200px;
    height: 56px;
    border: 1px solid #e5e5ec;
    font-size: 14px;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: color 0.4s;
    background:transparent;
}

#send_button:hover , #Eng_send_button:hover
{
    color: #fff;
}
  
button::before 
{
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: var(--main-color);
    transition: width 0.4s ease-in-out;
    z-index: -1;
}
  
button:hover::before 
{
    width: 100%;
}