/******************** sec_banner */

#sec_banner {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    height: 380px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
}

.address_banner{
    background-image: url(/img/sub3/sub3_banner.jpg);
}

.recruit_banner{
    background-image: url(/img/sub3/sub3_banner2.jpg);
}

#sec_banner>div:nth-child(1) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
}

#sec_banner>p {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 50px;
    font-weight: 700;
    color: #fff;
    z-index: 1;
    opacity: 0;
    animation: intro 0.8s forwards;
}

@keyframes intro{
    0%{
        top: 100%;
        opacity: 0;
    }
    100%{
        top: 50%;
        opacity: 1;
    }
}

#banner_select {
    display: flex;
    align-items: center;
    margin-right: 188px;
    width: 214px;
    height: 50px;
    border: 2px solid #fff;
    border-radius: 25px;
    background-color: transparent;
    background-image: url(/img/select_guide.png);
    background-repeat: no-repeat;
    background-position: 90% 50%;
    z-index: 1;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    transition: 0.4s;
    position: relative;
    cursor: pointer;
}

#banner_select p{
    margin-left: 16px;
}

#banner_select:hover{
    color: #111111;
    background-color: #fff;
    background-image: url(/img/select_guide_b.png);
}

#banner_select option {
    color: #111111;
}

.banner_list{
    display: none;
    opacity: 0;
    width: 100%;
    position: absolute;
    top: 56px;
    left: -60px;
    background-color: #fff;
    border: 1px solid #cccccc;
    border-radius: 10px;
}

.banner_list.lang_active {
    display: block;
    animation: active_lang 0.4s forwards;
}

@keyframes active_lang {
    0% {
        opacity: 0;
        left: -60px;
    }

    100% {
        opacity: 1;
        left: 0px;
    }
}


.banner_list li{
    padding: 10px 16px;
    transition: 0.4s;
}

.banner_list li:nth-child(1){
    border-radius: 10px 10px 0 0;
}
  
.banner_list li:nth-child(2){
    border-radius: 0 0 10px 10px;
}

.banner_list li a{
    font-size: 16px;
    color: #111111;
}

.banner_list li:hover{
    background-color: #122a88;
}

.banner_list li:hover a{
    color: #fff;
}

/******************** sec_banner */


/******************** address */

#address_main{
    width: 100%;
    padding: 100px 188px;
    display: flex;
}

.address_box{
    width: 100%;
}

.address_box:first-child{
    margin-bottom: 60px;
}

.address_contents{
    width: 100%;
}

.address_title{
    width: 100%;
    display: flex;
}

.address_title > div:nth-child(1){
    width: 36%;
    padding: 10px 30px;
    border: 2px solid #111111;
    border-bottom: 0;
}

.address_title > div:nth-child(1) p{
    font-size: 22px;
    font-weight: 700;
}

.address_btn{
    width: 64%;
    padding: 0 20px;
    border-bottom: 2px solid #111111;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    cursor: pointer;
}

.address_btn p{
    font-size: 16px;
    font-weight: 500;
    color: #122a88;
}
  
.address_btn div{
    width: 24px;
    height: 24px;
    border-radius: 100%;
    background-color: #f6f6f6;
    margin-left: 10px;
    transition: 0.4s;
}

.address_btn div i{
    font-size: 24px;
    font-weight: bold;
    color: #122a88;
    transition: 0.4s;
}

.address_wrap{
    width: 100%;
    padding: 30px;
}

.address_wrap div{
    display: flex;
}

.address_wrap div p{
    font-size: 18px;
}

.address_wrap div p:nth-child(1){
    width: 10%;
    font-weight: 700;
}

.address_wrap div p:nth-child(2){
    width: 80%;
    font-weight: 400;
    color: #727272;
}

.address_wrap div p:not(:last-child){
    margin-bottom: 16px;
}

.address_map{
    width: 100%;
    height: auto;
    margin-left: 40px;
}

.address_map #map1,
.address_map #map2{
    width: 100%;
    height: 100%;
}

.address_btn.add_active div{
    background-color: #122a88;
}

.address_btn.add_active div i{
    color: #fff;
}

.address_btn:hover div{
    background-color: #122a88;
}

.address_btn:hover div i{
    color: #fff;
}

.add_map.add_active{
    display: block;
}

#address_sec1{
    width: 100%;
    padding: 0 188px 160px;
}

.add_sec1_title{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.add_sec1_title div{
    width: 30px;
    height: 3px;
    margin-bottom: 10px;
    background-color: #111111;
}

.add_sec1_title p{
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 30px;
}

#address_sec1 form{
    width: 100%;
    padding: 50px 80px;
    background-color: #f3f4f9;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.add_form{
    width: 50%;
}

.add_form > div{
    display: flex;
    align-items: center;
}

.add_form > div p{
    width: 22%;
    font-size: 18px;
    font-weight: 700;
}

.add_form > div input{
    width: 70%;
    height: 45px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.add_form2 > div input{
    width: 100%;
}

.add_form2 > div:nth-child(2){
    align-items: flex-start;
}

.add_form2 > div textarea{
    width: 100%;
    height: 168px;
    border: 1px solid #cccccc;
    border-radius: 5px;
}

.add_form > div:not(:last-child){
    margin-bottom: 39px;
}

.add_form2 > div:not(:last-child){
    margin-bottom: 18px;
}

.add_form2 > div:first-child{
    margin-top: 4px;
}

.add_form_btn{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.add_form_btn button{
    width: 224px;
    height: 55px;
    color: #fff;
    background-color: #122a88;
    border-radius: 28px;
    font-size: 20px;
    font-weight: 700;
    cursor: pointer;
    margin-top: 50px
}

.form_wrap{
        display: grid;
        flex-direction: column;
        align-items: center;
        width: 100%;
        grid-template-columns: 4fr 1fr;
        gap: 10px;
}

.form_file input[type="file"] {
    position: absolute;
    width: 0;
    height: 0;
    padding: 0;
    overflow: hidden;
    border: 0;
}

.form_file label {
    width: 120px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    background-color: #122a88;
    cursor: pointer;
    border-radius: 5px;
    font-size: 18px;
}

.form_file .attachment_name {
    width: 100%;
    height: 45px;
    background-color: #fff;
    border: 1px solid #cccccc;
    color: #111111;
    text-overflow:ellipsis;
}

.add_form.add_form3{
    width: 100%;
    margin-top: 36px;
    flex-direction: column;
}

.privacy_wrap{
    width: 100%;
    border-radius: 5px;
    border: 1px solid #cccccc;
    padding: 40px;
    background-color: #fff;
    margin-bottom: 0 !important;
}

.privacy_wrap .privacy{
    width: 100%;
    font-size: 14px;
    height: 200px;
    overflow-y: scroll;
}

.check_wrap{
    margin-top: 15px;
    justify-content: flex-end !important;
}

#personal_check {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0
}

#personal_check+label {
    display: inline-block;
    position: relative;
    padding-left: 28px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

#personal_check+label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    line-height: 20px;
    text-align: center;
    background: #fff;
    border-radius: 100%;
    border: 1px solid #111111;
}

#personal_check:checked+label::before {
    content: '\2714';
    color: #fff;
    border: 1px solid #122a88;
    background-color: #122a88;;
}

#personal_check:checked+label {
    color: #122a88;
}

/******************** address */


/******************** recruit */

#recruit_main{
    width: 100%;
    padding: 100px 188px;
    display: flex;
    flex-direction: column;
}

.recruit_title{
    width: 100%;
    padding: 40px 0;
    border: 10px solid #f6f6f6;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin-bottom: 80px;
}

.recruit_title p{
    font-size: 30px;
}

.recruit_title p:nth-child(1){
    font-weight: 400;
}

.recruit_title p:nth-child(2){
    color: #122a88;
    font-weight: 700;
}

.recruit_caption{
    width: 100%;
    padding: 0 100px;
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.recruit_caption img:nth-child(2){
    display: none;
}

.caption_list_wrap{
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.caption_list p{
    font-size: 22px;
    font-weight: 700;
}

.caption_list ul li{
    font-size: 16px;
    font-weight: 300;
    color: #727272;
}

#recruit_list_box{
    width: 100%;
    padding: 0px 188px 160px;
    display: flex;
    flex-direction: column;
}

.recruit_list_wrap{
    border-top: 2px solid #111111;
}

.recruit_list a{
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 30px 100px;
    border-bottom: 1px solid #cccccc;
}

.recruit_list_title{
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.recruit_list_title p:nth-child(1){
    font-size: 20px;
    font-weight: 700;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.recruit_list_title p:nth-child(2){
    font-size: 16px;
    font-weight: 500;
    color: #aaaaaa;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}

.recruit_list a > div:nth-child(2){
    display: flex;
    align-items: center;
}

.recruit_list a > div:nth-child(2) p{
    font-size: 26px;
    font-weight: 500;
    color: #122a88;
    margin-right: 30px;
}

.recruit_list a > div:nth-child(2) div{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 30px;
    background-color: #122a88;
    border-radius: 5px;
    color: #fff;
    font-size: 14px;
}

.recruit_list a > div:nth-child(2) div.deadline{
    background-color: #aaaaaa;
}

.recruit_list_pager{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 30px;
    gap: 14px;
}

.pager_wrap{
    display: flex;
    justify-content: center;
    align-items: center;
}

.pager_wrap button{
    font-size: 16px;
}

.pager_wrap ul{
    /* width: 54%; */
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.pager_wrap ul li{
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pager_wrap ul li a{
    font-family: 'Montserrat', sans-serif;
    color: #aaaaaa;
}

.pager_nav{
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid #cccccc;
}

.pager_nav i{
    font-weight: bold;
    font-size: 24px;
}

.pager_wrap ul li.current_page{
    border: 1px solid #122a88;
}

.pager_wrap ul li.current_page a{
    color: #122a88;
    font-weight: 500;
}


/******************** recruit */

@media screen and (max-width: 1860px){

    .recruit_caption{
        padding: 0 100px;
    }

}

@media screen and (max-width: 1730px){

    .recruit_caption{
        padding: 0;
    }
    
}

@media screen and (max-width: 1440px){

    #banner_select  {
        margin-right: 100px;
        width: 190px;
        height: 50px;
    }

    /* address */

    #address_main{
        padding: 100px;
    }

    #address_sec1{
        padding: 100px 100px 200px;
    }
    
    /* recruit */

    #recruit_main{
        padding: 100px 100px 80px;
    }

    #recruit_list_box{
        padding: 0px 100px 200px;
    }

    .recruit_list a{
        padding: 30px 30px;
    }

}

@media screen and (max-width: 1260px){

    /* address */

    .address_title > div:nth-child(1) p{
        font-size: 20px;
    }

    .address_wrap div p{
        font-size: 16px;
    }
    
    .form_file .attachment_name {
        width: 100%;
    }

    /* recruit */

    .recruit_caption img{
        width: 80%;
    }

    .recruit_caption{
        height: 400px;
    }

    .recruit_caption > div:nth-child(1){
        display: flex;
        align-items: center;
    }

    .caption_list p{
        font-size: 16px;
    }

    .caption_list ul li{
        font-size: 14px;
    }

    .recruit_title p{
        font-size: 26px;
    }
    
}


@media screen and (max-width: 1024px) {

    #sec_banner {
        height: 300px;
    }

    #sec_banner>p {
        font-size: 36px;
    }

    #banner_select  {
        display: none;
    }

    /* address */

    #address_main{
        padding: 80px 100px 0px;
        flex-direction: column-reverse;
    }

    #address_sec1{
        padding: 60px 100px 200px;
    }

    .address_map{
        height: 400px;
        margin-left: 0;
        margin-bottom: 60px;
    }

    .address_box:first-child{
        margin-bottom: 20px;
    }

    #address_sec1 form{
        flex-direction: column;
    }

    .address_btn{
        padding: 0;
    }

    .add_form{
        width: 100%;
    }

    .add_form:not(:last-child){
        margin-bottom: 26px;
    }

    .add_form > div{
        justify-content: space-between;
    }

    .add_form > div input{
        width: 80%;
    }

    .add_form2 > div textarea{
        width: 80%;
    }

    .add_form > div p{
        width: 22%;
    }

    .add_form2 > div:not(:last-child){
        margin-bottom: 26px;
    }

    .form_file{
        width: 100%;
    }

    .form_wrap{
        width: 80%;
    }

    .add_form > div:not(:last-child){
        margin-bottom: 26px;
    }

    .add_form.add_form2{
        margin-bottom: 0;
    }

    .add_form.add_form3{
        margin-bottom: 0;
        margin-top: 26px;
    }
    
    /* recruit */

    .recruit_title{
        margin-bottom: 60px;
    }

    .recruit_caption{
        height: auto;
        flex-direction: column;
        align-items: center;
        margin-bottom: 30px;
    }

    .recruit_caption img{
        width: auto;
    }

    .recruit_caption img:nth-child(1){
        display: none;
    }
    
    .recruit_caption img:nth-child(2){
        display: block;
        margin-bottom: 30px;
    }

    .caption_list p{
        font-size: 22px;
    }

    .caption_list ul li{
        font-size: 16px;
    }

    .recruit_title p{
        font-size: 26px;
    }

    .caption_list_wrap div:not(:last-child){
        margin-bottom: 26px;
    }

    .recruit_list_title p:nth-child(1){
        font-size: 18px;
    }

    .recruit_list a > div:nth-child(2) p{
        font-size: 20px;
    }

    .pager_wrap{
        width: 30%;
    }
}


@media screen and (max-width: 768px) {

    #sec_banner {
        height: 240px;
    }

    /* address */

    #address_main{
        padding: 80px 54px 0px;
        flex-direction: column-reverse;
    }

    #address_sec1{
        padding: 60px 54px 160px;
    }

    #address_sec1 form{
        padding: 50px 50px;
    }

    .address_map{
        height: 340px;
    }

    .add_form_btn button {
        width: 200px;
        height: 50px;
        margin-top: 30px;
        font-size: 18px;
    }

    .form_file{
        width: 100%;
    }

    .form_file .attachment_name{
        width: 96%;
    }

    .privacy_wrap{
        padding: 30px;
    }

    /* recruit */

    #recruit_main{
        padding: 80px 54px 80px;
    }

    #recruit_list_box{
        padding: 0px 54px 160px;
    }

    .recruit_title{
        padding: 30px 0;
    }

    .recruit_title p{
        font-size: 22px;
    }

    .recruit_list a > div:nth-child(2) p{
        margin-right: 10px;
    }

    .recruit_list_title p:nth-child(1){
        font-size: 16px;
    }

    .recruit_caption img:nth-child(2){
        margin-bottom: 40px;
    }

    .recruit_list a{
        padding: 30px 16px;
    }

    .caption_list p{
        font-size: 18px;
        margin-bottom: 10px;
    }

    .caption_list ul li{
        font-size: 14px;
    }

    .caption_list ul li:not(:last-child){
        margin-bottom: 4px;
    }

}

@media screen and (max-width: 540px) {

    #sec_banner {
        height: 200px;
    }

    /* address */

    #address_main{
        padding: 60px 30px 0px;
        flex-direction: column-reverse;
    }

    #address_sec1{
        padding: 60px 30px 100px;
    }

    .address_map{
        height: 280px;
    }

    .address_title > div:nth-child(1){
        width: 40%;
        padding: 8px 16px;
    }

    .address_title > div:nth-child(2){
        width: 60%;
    }

    .address_title > div:nth-child(1) p{
        font-size: 16px;
    }

    .address_wrap{
        padding: 16px;
    }

    .address_wrap div p{
        font-size: 14px;
    }

    .address_btn p{
        font-size: 14px;
    }

    .address_wrap div p:nth-child(1){
        width: 20%;
    }

    #address_sec1 form{
        padding: 30px;
    }

    .add_form > div{
        flex-direction: column;
        justify-content: flex-start;
        align-items: flex-start;
    }

    .add_form > div p{
        width: auto;
        font-size: 14px;
        margin-bottom: 8px;
    }

    .add_form > div input{
        width: 100%;
        height: 40px;
    }

    .add_form2 > div textarea{
        width: 100%;
    }

    .add_sec1_title p{
        font-size: 20px;
    }

    .add_form > div:not(:last-child){
        margin-bottom: 16px;
    }

    .form_file label{
        width: 80px;
        height: 48px;
        font-size: 14px;
        margin-left: 0px;
    }

    .form_file .attachment_name{
        width: 100%;
        font-size: 14px;
    }

    .form_wrap{
        width: 100%;
    }
    .privacy_wrap .privacy{
        font-size: 12px;
        height: 160px;
    }

    .privacy_wrap{
        padding: 26px 15px;
    }

    #personal_check+label{
        font-size: 14px;
    }

    .check_wrap{
        align-items: flex-end !important;
    }

    /* recruit */

    #recruit_main{
        padding: 60px 30px 80px;
    }

    #recruit_list_box{
        padding: 0px 30px 100px;
    }

    .recruit_title{
        margin-bottom: 40px;
        border: 6px solid #f6f6f6;
        padding: 30px 16px;
    }

    .recruit_title p{
        word-break: keep-all;
        font-size: 16px;
        text-align: center;
    }

    .recruit_list_title p:nth-child(1){
        font-size: 14px;
    }

    .recruit_list_title p:nth-child(2){
        font-size: 12px;
    }

    .recruit_list_title p{
        margin-right: 16px
    }

    .recruit_list a > div:nth-child(2) div{
        width: 60px;
        height: 26px;
        font-size: 12px;
    }

    .recruit_list a > div:nth-child(2) p{
        font-size: 20px;
        margin-right: 0;
    }

    .recruit_list a{
        padding: 20px 0;
    }

    .recruit_list a > div:nth-child(2){
        flex-direction: column;
    }

    .pager_wrap{
        width: 100%;
    }

    .pager_wrap ul{
        width: 60%;
    }

    .recruit_caption div{
        justify-content: center;
    }

    .recruit_caption img:nth-child(2){
        width: 80%;
    }

    .pager_wrap button{
        font-size: 14px;
    }

}

@media screen and (max-width: 414px) {

    #sec_banner {
        height: 160px;
    }

    #sec_banner>p {
        font-size: 24px;
    }

    /* address */

    .address_map{
        height: 220px;
    }

    .address_title > div:nth-child(1){
        width: 40%;
        padding: 8px;
    }

    .address_wrap{
        padding: 16px 8px;
    }

    #address_sec1 form{
        padding: 20px;
    }

    .add_form_btn button {
        width: 160px;
        margin-top: 20px;
        font-size: 16px;
    }

    .pager_wrap{
        width: 100%;
    }

    .pager_wrap ul{
        width: 60%;
    }

    .hidden_br{
        display: none;
    }

}

@media screen and (min-width: 5000px) {

    #address_main{
        padding: 140px 32%;
    }

    #address_sec1{
        padding: 0 32% 256px;
    }

    #recruit_main{
        padding: 140px 32%;
    }

    #recruit_list_box{
        padding: 0px 32% 230px;
    }

}