/*공통*/
.wrap {
    margin-bottom: 200px;min-height:500px;
}

@media screen and (max-width:600px) {
    .wrap {
        margin-bottom: 100px;
    }
}

.mg_b_none {
    margin-bottom: 0;
}

.route {
    display: flex;
    align-items: center;
    color: #fff;
    padding-top: 54px;
}

.route_home {
    display: block;
    width: 14px; height: 15px;
    background: url(/images/icon/home.svg);
}

.route_line {
    width: 1px;
    height: 13px;
    border-left: 1px solid #fff;
    margin: 0 10px;
}

/*경로_셀렉트박스_커스텀*/
.select_cus {position: relative; width: 100%; max-width: 145px;}
.select_cus .trigger {display: flex;align-items: center;position: relative; cursor: pointer;}
.select_cus .trigger:after {content:'';position: absolute;top: 4px;right: 50px;width: 15px;height: 11px;background:url('/images/icon/down_arrow.svg') center center no-repeat;background-size: contain;transform:scaleY(-1);}
.select_cus.active .trigger:after {transform:scaleY(1);}
.select_cus .trigger_txt {overflow: hidden;font-size: 16px;font-weight: 700;white-space: nowrap; text-overflow: ellipsis;}
.select_cus .option {display: none;position: absolute;top: calc(100% + 11px); padding:20px 0 0 0; width: 100%; box-sizing: border-box; background: #fff; border-radius: 10px; box-shadow: 3px 4px 3px 0px rgba(0, 0, 0, 0.15);}
.select_cus .option > li a {display: block; padding:0px 20px 20px 20px; font-size: 16px;color: #333;cursor: pointer;}
.select_cus .option > li a:hover {color: #EEC550; font-weight: 600;}


/*회사소개*/
.about_banner {
    width: 100%;
    padding: 0 0 110px 0;
    background: url(/images/about_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.about_banner_vedio_txt_box {
    display: flex;
    align-items: center;
    margin: 95px 0 0 60px;
}

.about_banner_txt_box {
    margin-top: 150px;
    margin-left: 15px;
    color: #fff;
}

.about_banner_txt_png img {
    width: 100%;
}

.about_banner_title_txt_box {
    margin: 50px 0 0 95px;
}

.about_banner_title {
    font-size: 32px;
    font-weight: 700;
    line-height: 41px;
    margin-bottom: 20px;
}

.about_banner_title .yellow {
    color: #EEC550;
}

.about_banner_txt {
    font-size: 18px;
}

@media screen and (max-width:1280px) {
    .about_banner_vedio_txt_box {
        flex-wrap: wrap;
        justify-content: center;
        margin: 80px 0 0 0;
    }

    .about_vedio {
        width: 100%; height: 500px;
    }

    .about_banner_txt_box {
        margin-top: 50px;
        margin-left: 0;
    }

    .about_banner_title_txt_box {
        margin: 50px 0 0 0;
        text-align: center;
    }
}

@media screen and (max-width:600px) {
    .about_banner {
        padding: 0 0 50px 0;
    }
    .about_vedio {
        width: 100%; height: 300px;
    }
}

/*우리는 맞춤형 행사를 진행합니다.*/
.about_event {
    padding: 150px 0;
}

.sub_title {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}

.sub_title_txt {
    position: relative;
    z-index: 99;
    text-align: center;
    color: #111;
    font-size: 32px;
    font-weight: 600;
}

.sub_title_yellow_box {
    position: absolute;
    top: -11px; left: -23px;
    width: 34px;
    height: 34px;
    background: #EEC550;
    z-index: 9;
}

.sub_service_ex {
    color: #111;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin: 30px 0 60px 0;
}

@media screen and (max-width:600px) {
    .about_event {
        padding: 50px 0;
    }

    .sub_title_txt {
        font-size: 28px;
    }

    .sub_title_yellow_box {
        left: -8px;
    }

    .sub_service_ex {
        font-size: 16px;
        line-height: 22px;
        margin: 30px 0 40px 0;
    }
}

.about_event_list_box {
    display: grid;
    grid-template-columns: repeat(3, calc(33.3% - 13.3px));
    grid-column-gap: 20px;
    grid-row-gap: 30px;
}

.about_event_list{
    position: relative; /*부모한테 좌표주고*/
    overflow: hidden;
    height: 239px;
    cursor: pointer;
}

.about_event_img_box {
    position: relative;
}

.about_event_list .about_event_img {
    margin: 0;
    border: none;
}
.about_event_img{
	width:100%;
	height:239px;
}

.about_event_img img{
	width:100%;	height:100%; object-fit:cover
}

.about_event_txt {
    position: absolute;
    top: 25px; left: 20px;
    color: #FFF;
    font-size: 22px;
    font-weight: 600;
}

.about_event_list .about_event_box {
    width: 100%; height: 100%;
    padding: 25px 20px;
    box-sizing: border-box;
    margin: 0;
    border: none;
    background-color: rgba(238, 197, 80, 0.80);
    font-size: 22px;
    font-weight: 700;
    color: #000;
    position: absolute;
    left: 0; bottom: -239px;
    transition: all 0.3s;
}
.about_event_list:hover .about_event_box {
    bottom: 0;
}

@media screen and (max-width:768px) {
    .about_event_list_box {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
}

@media screen and (max-width:600px) {
    .about_event_list_box {
        display: block;
    }

    .about_event_list {
        margin-bottom: 20px;
    }
}

/*one-stop 서비스를 제공합니다.*/
.about_one_stop_bg {
    padding: 150px 0;
    background: #F2F2F2;
}

.about_one_stop_list_box {
    display: grid;
    grid-template-columns: repeat(2, calc(50% - 10px));
    grid-column-gap: 20px;
    grid-row-gap: 25px;
}

.about_one_stop_list {
    display: flex;
    padding: 30px; box-sizing: border-box;
    border: 1px solid #CCC;
    background: #FFF;
}

.about_one_stop_list_img_box {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 15px;
    background: #F3F3F3;
    margin-right: 28px;
}

.about_one_stop_list_img {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}

.about_one_stop_ex_box {
    width: calc(100% - 120px - 28px);
}

.about_one_stop_title {
    color: #111;
    font-size: 26px;
    font-weight: 600;
    margin-bottom: 17px;
}

.about_one_stop_txt {
    color: #333;
    font-size: 17px;
    font-weight: 400;
    line-height: 28px;
}

@media screen and (max-width:900px) {
    .about_one_stop_list {
        display: block;
    }

    .about_one_stop_list_img_box {
        margin: 0 auto;
    }

    .about_one_stop_ex_box {
        width: 100%;
        text-align: center;
    }

    .about_one_stop_title {
        margin-top: 10px;
    }
}

@media screen and (max-width:600px) {
    .about_one_stop_bg {
        padding: 50px 0;
    }
    .about_one_stop_list_box {
        display: block;
    }

    .about_one_stop_list {
        margin-bottom: 20px;
    }
}

/*즉각적인 고객요구 응대*/
.customer_needs {
    padding: 150px 0;
}

.customer_needs_list_box {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 18px));
    grid-column-gap: 24px;
}

.customer_needs_list_img_box {
    position: relative;
    overflow: hidden;
}

.customer_needs_list_img {
    height: 313px;
}

.customer_needs_list_img img {
    width: 100%; height: 100%;
    object-fit: cover;
}

.customer_needs_list_img_txt {
    width: calc(100% - 30px);
    position: absolute;
    left: 50%;
    top: 83px;
    transform: translate(-50%, 0);
    text-align: center;
}

.customer_needs_list_circle {
    width: 70px; height: 70px;
    margin: 0 auto;
    margin-bottom: 12px;
    border-radius: 50%;
    background: #EEC550;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #222;
    font-size: 16px;
    font-weight: 700;
}

.customer_needs_list_img_ex {
    color: #FFF;
    font-size: 24px;
    font-weight: 700;
}

.customer_needs_list_txt {
    padding: 0 15px;
    color: #333;
    text-align: center;
    font-size: 17px;
    font-weight: 400;
    line-height: 24px;
    margin-top: 15px;
}

@media screen and (max-width:768px) {
    .customer_needs_list_box {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-column-gap: 20px;
    }
}

@media screen and (max-width:600px) {
    .customer_needs {
        padding: 50px 0;
    }

    .customer_needs_list_box {
        display: block;
    }

    .customer_needs_list {
        margin-bottom: 20px;
    }
}

/*차별화된 서비스 제공*/
.different_service_bg {
    padding: 150px 0;
    background: url(/images/different_service_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
}

.different_service_contents .sub_title_txt {
    color: #fff;
}

.different_service_contents .sub_service_ex {
    color: #fff;
}

.different_service_list_box {
    display: grid;
    grid-template-columns: repeat(4, calc(25% - 30px));
    grid-column-gap: 40px;
}

.different_service_list {
    padding: 28px 32px 28px 32px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.15);
    color: #FFF;
    font-size: 18px;
    font-weight: 600;
    line-height: 26px;
	display:flex;
	justify-content:center;
	align-items:center;
	text-align:center;
	height:160px;
}

@media screen and (max-width:768px) {
    .different_service_list_box {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
}

@media screen and (max-width:600px) {
    .different_service_bg {
        padding: 50px 0;
    }

    .different_service_list_box {
        display: block;
    }

    .different_service_list {
        margin-bottom: 20px;
    }
}

/*회사소개_사업소개*/
.about_common_banner {
    width: 100%;
    padding: 0 0 95px 0;
    color: #FFF;
}

.business_banner {
    background: url(/images/business_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.about_common_banner_txt_box {
    margin: 95px 0 0px 0px;
}

.about_common_banner_title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

.about_common_banner_txt {
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
}

@media screen and (max-width:600px) {
    .about_common_banner {
        padding: 0 0 50px 0;
    }

    .about_common_banner_txt_box {
        margin: 50px 0 0px 0px;
    }

    .about_common_banner_title {
        font-size: 28px;
    }
}

.business_event {
    padding: 150px 0;
}

.business_event_img {
    width: fit-content;
    margin: 0 auto;
    margin-top: 65px;
}

.business_event_img img {
    width: 100%;
}

@media screen and (max-width:600px) {
    .business_event {
        padding: 50px 0;
    }
}

.business_custom_bg {
    padding: 150px 0;
    background: #F2F2F2;
}

.business_custom_list_box {
    display: grid;
        grid-template-columns: repeat(3, calc(33.3% - 12px));
        grid-column-gap: 18px;
        grid-row-gap: 20px;
}

.business_custom_list {
    position: relative;
    padding: 20px; box-sizing: border-box;
    height: 161px;
    border: 1px solid #BEBEBE;
    background: #FFF;
}

.business_custom_list_txt_box {
    width: calc(100% - 30px);
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.business_custom_list_title {
    color: #333;
    text-align: center;
    font-size: 21px;
    font-weight: 700;
    line-height: 27px;
}

.business_custom_list_ex {
    color: #333;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    line-height: 27px;
    margin-top: 6px;
}

.business_custom_list_number {
    position: absolute;
    top: 20px; left: 20px;
    width: 33px;
    height: 33px;
    border-radius: 16.5px;
    background: #2A507E;
    text-align: center;
    font-size: 17px;
    font-weight: 700;
    line-height: 33px;
    color: #fff;
}

@media screen and (max-width:768px) {
    .business_custom_list_box {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-column-gap: 20px;
        grid-row-gap: 20px;
    }
}

@media screen and (max-width:600px) {
    .business_custom_bg {
        padding: 50px 0;
    }

    .business_custom_list_box {
        display: block;
    }

    .business_custom_list {
        margin-bottom: 20px;
    }

    .business_custom_list_title {
        font-size: 18px;
    }

    .business_custom_list_ex {
        font-size: 16px;
    }
}

.business_plan {
    padding: 150px 0;
}

.business_plan_list_box {
    display: grid;
    grid-template-columns: repeat(3, calc(33.3% - 26.6px));
    grid-column-gap: 40px;
}

.business_plan_list_img img{
    width: 100%;
}

.business_plan_list_title {
    padding: 28px 0;
    margin-bottom: 28px;
    border-bottom: 1px solid #aaa;
    color: #222;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}

.business_plan_list_ex_list {
    display: flex;
    align-items: top;
    margin-bottom: 10px;
}

.business_plan_list_ex_list .dot {
    width: 3px; height: 3px;
    border-radius: 50%;
    background: #333;
    margin-top: 10px;
    margin-right: 10px;
}

.business_plan_list_ex_list .business_plan_list_ex {
    width: calc(100% - 3px - 10px);
    color: #333;
    font-size: 17px;
    font-weight: 400;
    line-height: 26px;
}

@media screen and (max-width:600px) {
    .business_plan {
        padding: 50px 0;
    }

    .business_plan_list_box {
        display: 
        block;
    }

    .business_plan_list {
        margin-bottom: 50px;
    }

    .business_plan_list_title {
        font-size: 20px;
        padding: 20px 0;
        margin-bottom: 20px;
    }
}

/*조직도/연혁*/
.organization_banner {
    background: url(/images/organization_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.sub_title_left {
    position: relative;
    margin-left: 23px;
}

.sub_title_left .sub_title_txt {
    text-align: left;
}

.organization_chart {
    padding: 150px 0;
}
.organization_chart_contents_box {
    display: flex;
    justify-content: center;
    margin-top: 70px;
}

.organization_chart_contents {
    width: 100%;
}

.ceo_circle {
    width: 340px; height: 100px;
    border-radius: 100px;
    background: #EEC550;
    color: #222;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 100px;
    margin: 0 auto;
    margin-bottom: 30px;
}

.organization_chart_contents_line {
    max-width: 100%;
    width: 1060px;
    height: 1px;
    background: #CCC;
    margin: 0 auto;
}

.under_group_box {
    display: grid;
    grid-template-columns: repeat(3, calc(33.3% - 126.6px));
    grid-column-gap: 190px;
}

.under_group_sub_list {
    position: relative;
}

.ceo_circle_box {
    position: relative;
}

.ceo_circle_line {
    position: absolute;
    bottom: -30px; left: 50%;
    margin-left: -0.5px;
    width: 1px; height: 30px;
    background: #ccc;
}

.organization_line {
    position: absolute;
    top: -30px; left: 50%;
    margin-right: -0.5px;
    width: 1px; height: 30px;
    background: #ccc;
}

.under_group_circle {
    height: 100px;
    border-radius: 100px;
    border: 1px solid #EEC550;
    color: #EEC550;
    font-size: 24px;
    font-weight: 600;
    text-align: center;
    line-height: 100px;
    margin: 0 auto;
    margin-top: 30px;
}

.under_group_square {
    padding: 40px; box-sizing: border-box;
    border-radius: 20px;
    border: 1px solid #C3C3C3;
    background: #F5F5F5;
    margin-top: 30px;
    text-align: center;
    color: #444;
    font-size: 15px;
}

.under_group_square_line {
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 1px solid #C3C3C3;
    color: #333;
    text-align: center;
    font-size: 18px;
    font-weight: 700;
}

.under_group_square_yellow {
    color: #946D00;
    font-size: 16px;
    font-weight: 600;
    margin: 15px 0 10px 0;
}

@media screen and (max-width:1024px) {
    .under_group_box {
        display: grid;
        grid-template-columns: repeat(3, calc(33.3% - 20px));
        grid-column-gap: 30px;
    }
}

@media screen and (max-width:600px) {
    .under_group_box {
        display: block;
    }

    .organization_chart_contents_line {
        display: none;
    }

    .ceo_circle {
        width: 100%;
    }
}


.organization_chart_img {
    margin-top: 50px;
}

.organization_chart_img img {
    width: 100%;
}

@media screen and (max-width:600px) {
    .organization_chart {
        padding: 50px 0;
    }
}

.history_chart_list_box {
    border-top: 1px solid #ccc;
    margin-top: 70px;
}

.history_chart_list {
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}

.history_chart_list_year_drop {
    padding: 0 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.history_chart_list_year {
    color: #222;
    font-size: 21px;
    font-weight: 600;
}

.history_chart_list_year_now {
    text-decoration: underline;
}

.history_chart_list_img_year_detail {
    display: flex;
    padding-top: 50px;
}

.history_chart_list_drop {
    display: flex;
    align-items: center;
    color: #333;
    font-size: 15px;
    font-weight: 400;
    cursor: pointer;
}

.history_chart_list_up_icon {
    width: 13px; height: 9px;
    background: url(/images/icon/history_chart_list_up_icon.svg);
    margin-left: 5px;
}

.history_chart_list_img {
    width: 436px;
    height: 268px;
    margin-right: 90px;
}

.history_chart_list_img img {
    width: 100%;
}

.history_chart_list_year_detail_list_box {
    width: calc(100% - 436px - 90px);
}

.history_chart_list_year_detail_list {
    display: flex;
    color: #222;
    line-height: 32px;
}

.history_chart_list_year_detail_list_title {
    color: #222;
    font-weight: 600;
    margin-right: 25px;
}

.history_chart_list_drop_icon {
    width: 13px; height: 9px;
    background: url(/images/icon/history_chart_list_drop_icon.svg);
    margin-left: 5px;
}

@media screen and (max-width:1024px) {
    .history_chart_list_img {
        width: 300px;
        height: 185px;
        margin-right: 50px;
    }

    .history_chart_list_year_detail_list_box {
        width: calc(100% - 300px - 50px);
    }
}

@media screen and (max-width:768px) {
    .history_chart_list_img_year_detail {
        flex-wrap: wrap;
    }

    .history_chart_list_year_detail_list_box {
        width: 100%;
        margin-top: 20px;
    }
}

@media screen and (max-width:600px) {
    .history_chart_list_box {
        margin-top: 50px;
    }

    .history_chart_list_img_year_detail {
        padding-top: 30px;
    }
}

@media screen and (max-width:430px) {
    .history_chart_list_img {
        width: 100%; height: auto;
        margin-right: 0;
    }
}

/*수상/인증*/
.award_banner {
    background: url(/images/premier_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.award_certification {
    padding: 150px 0;
}

.award_contents {
    margin-top: 60px;
}

.award_list_box {
    display: grid;
    grid-template-columns: repeat(5, calc(20% - 40px));
    grid-column-gap: 50px;
    grid-row-gap: 60px;
}

.award_list_img {
    width: 100%;
    overflow: hidden;
}

.award_list_img img {
    display: block;
    width: 100%;
}

.award_list_type {
    color: #666;
    text-align: center;
    margin: 20px 0 7px 0;
}

.award_list_name {
    text-align: center;
    font-size: 18px;
    font-weight: 500;
}

@media screen and (max-width:1024px) {
    .award_list_box {
        display: grid;
        grid-template-columns: repeat(3, calc(33.3% - 20px));
        grid-column-gap: 30px;
        grid-row-gap: 50px;
    }
}

@media screen and (max-width:768px) {
    .award_list_box {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-column-gap: 20px;
        grid-row-gap: 40px;
    }
}

@media screen and (max-width:430px) {
    .award_list_box {
        display: block;
    }

    .award_list {
        margin-bottom: 50px;
    }
}

/*오시는길*/
.way_banner {
    background: url(/images/way_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.way {
    padding: 150px 0;
}

.way_contents {
    display: flex;
    justify-content: space-between;
    margin-top: 50px;
}

.map {
    width: 910px;
}

.map img {
    display: block;
    width: 100%; height: 100%;
    object-fit: cover;
}

.way_info {
    width: 425px;
    margin-top: 94px;
    margin-left: 20px;
}

.logo_yellow {
    width: 173px;
    height: 27px;
    background: url(/images/logo_yellow.png);
    margin-bottom: 38px;
}

.way_info_pd {
    padding-left: 10px;
}

.way_info_list {
    display: flex;
    color: #333;
    line-height: 32px;
    margin-bottom: 10px;
}

.way_info_list_title {
    width: 32px;
    color: #E0A600;
    font-weight: 700;
    margin-right: 15px;
}

.way_info_list_ex {
    width: calc(100% - 32px - 15px);
}

.way_contact_us {
    margin-top: 38px;
    padding-top: 32px;
    border-top: 1px solid #ccc;
}

.way_contact_pen {
    display: flex;
    align-items: top;
    color: #333;
    font-weight: 600;
}

.pen {
    width: 19px; height: 19px;
    background: url(/images/icon/pen.svg);
    margin-right: 6px;
}

.pen_ex {
    width: calc(100% - 19px - 6px);
}

.contact_us_btn {
    margin-top: 20px;
    padding: 16px 0;
    border: 1px solid #CCC;
    background: #FFF;
    color: #333;
    font-weight: 400;
    text-align: center;
}

@media screen and (max-width:768px) {
    .way_contents {
        flex-wrap: wrap;
    }

    .map {
        width: 100%;
        height: 300px;
    }

    .way_info {
        width: 100%;
        margin-top: 30px;
        margin-left: 0px;
    }
}

@media screen and (max-width:600px) {
    .way {
        padding: 50px 0;
    }
}

/*프로그램*/
.common_banner {
    width: 100%;
    padding: 0 0 80px 0;
    color: #FFF;
}

.program_banner {
    background: url(/images/program_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.common_banner_txt_box {
    margin: 50px 0 0px 0px;
}

.route_long .select_cus {
    position: relative;
    width: 100%;
    max-width: 175px;
}

.route_long .select_cus .trigger:after {
    right: 20px;
}

.program_contents {
    margin-top: 100px;
}

.number_search {
    display: flex;
    justify-content: space-between;
    align-items: end;
    margin-bottom: 35px;
}

.all_number {
    color: #444;
}

.search_box {
    width: 282px;
    height: 30px;
    padding: 0px 10px 0px 6px;
    box-sizing: border-box;
    border-bottom: 1px solid #666;
}

.search_txt {
    width: calc(100% - 18px);
    float: left;
    background: none;
    border: none;
    outline: none;
    font-family: Pretendard;
    color: #888;
    font-size: 15px;
}

.search_btn {
    float: right;
    width: 18px;
    height: 18px;
    border: none;
    background: url(/images/icon/search_btn.svg);
    cursor: pointer;
}

.program_list_box {
    display: grid;
    grid-template-columns: repeat(3, calc(33.3% - 20px));
    grid-column-gap: 30px;
    grid-row-gap: 60px;
}

.program_list {
    border: 1px solid #CCC;
    background: #FFF;
}

.program_list_img {
    width: 100%;
}

.program_list_img img {
    display: block;
    width: 100%;
}

.program_list_title {
    margin: 30px;
    color: #333;
    font-size: 21px;
    font-weight: 600;
}

.more_btn_box {
    display: flex;
    align-items: center;
    width: fit-content;
    margin: 0 auto;
    margin-top: 60px;
    cursor: pointer;
}

.more_icon {
    width: 15px;
    height: 14px;
    background: url(/images/icon/more_icon.svg);
    margin-right: 8px;
}

.performance_banner {
    background: url(/images/performance_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.flightaware_banner {
    background: url(/images/flightaware_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

@media screen and (max-width:768px) {
    .program_list_box {
        display: grid;
        grid-template-columns: repeat(2, calc(50% - 10px));
        grid-column-gap: 20px;
        grid-row-gap: 50px;
    }
}

@media screen and (max-width:600px) {
    .program_contents {
        margin-top: 50px;
    }

    .program_list_box {
        display: block;
    }

    .program_list {
        margin-bottom: 20px;
    }
}

@media screen and (max-width:425px) {
    .number_search {
        flex-wrap: wrap;
    }

    .search_box {
        width: 100%;
        margin-top: 20px;
    }
}

/*상품 디테일*/
.program_detail {
    margin-top: 125px;
}

.program_detail_title {
    padding-bottom: 20px;
    border-bottom: 1px solid #000;
    color: #222;
    font-size: 26px;
    font-weight: 600;
}

.program_detail_img_box {
    padding: 115px 250px 0px 250px;
}

.program_detail_img {
    margin-bottom: 80px;
}

.program_detail_img img {
    width: 100%;
}

.list_btn {
    width: 150px;
    height: 60px;
    margin: 0 auto;
    border: 1px solid #666;
    background: #FFF;
    color: #222;
    font-size: 17px;
    font-weight: 600;
    text-align: center;
    line-height: 60px;
}

.list_btn:hover {
    cursor: pointer;
    text-decoration: underline;
}

@media screen and (max-width:1024px) {
    .program_detail_img_box {
        padding: 115px 50px 0px 50px;
    }
}

@media screen and (max-width:768px) {
    .program_detail_img_box {
        padding: 50px 0px 0px 0px;
    }
}

@media screen and (max-width:600px) {
    .program_detail {
        margin-top: 50px;
    }

    .program_detail_img {
        margin-bottom: 50px;
    }
}

/*제휴 및 상담문의*/
.product_inquiry_banner {
    background: url(/images/product_inquiry_banner.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center center;
}

.product_inquiry_contents {
    margin-top: 126px;
}
.product_inquiry_contents2 {
    margin-top: 30px;
}

.product_inquiry_title_kakao_box {
    display: flex;
    justify-content: space-between;
}

.product_inquiry_title {
    color: #222;
    font-size: 32px;
    font-weight: 600;
    line-height: 41px;
    margin-bottom: 60px;
}

.product_inquiry_ex {
    color: #444;
    font-size: 18px;
}

.kakao_inquiry_box {
    width: 452px;
    height: 180px;
    padding: 38px 25px 20px 25px; box-sizing: border-box;
    border-radius: 15px;
    background: #F9E000;
    text-align: center;
    color: #444;
    font-weight: 600;
    margin-left: 20px;
}

.kakao_inquiry_title {
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 38px;
    border-bottom: 1px solid #A19522;
    margin-bottom: 10px;
    font-size: 18px;
}

.kakao_inquiry_icon {
    width: 43px; height: 44px;
    background: url(/images/icon/kakao.svg);
    margin-right: 10px
}

.product_inquiry_form_box {
    margin-top: 137px;
    padding-top: 65px;
    border-top: 1px solid #222;
}

.product_inquiry_form {
    display: flex;
    justify-content: space-between;
    margin-bottom: 50px;
}

.product_inquiry_form_list {
    width: calc(50% - 50px);
}
.product_inquiry_form_list2{width:100%}
.product_inquiry_form_title {
    color: #222;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
}

.product_inquiry_form_input {
    width: 100%; height: 50px;
    padding: 12px 20px; box-sizing: border-box;
    border: 1px solid #CCC;
    background: #F9F9F9;
    color: #666;
    font-family: Pretendard;
}

.product_inquiry_form_flex {
    display: flex;
    justify-content: space-between;
}

.product_inquiry_form_flex_list {
    display: flex;
    align-items: center;
}

.product_inquiry_form_flex_title {
    color: #222;
    font-weight: 600;
}

.product_inquiry_form_flex_ex {
    color: #666;
}

.product_inquiry_form_flex_input {
    width: 119px;
    height: 50px;
    padding: 12px 20px; box-sizing: border-box;
    border: 1px solid #CCC;
    background: #F9F9F9;
    margin: 0 8px 0 15px;
}

.product_inquiry_form_day {
    display: flex;
    align-items: center;
}

.product_inquiry_form_day_input_box {
    width: calc(50% - 6px - 8px);
    height: 50px;
    background: #F9F9F9;
}

.product_inquiry_form_day_ex {
    margin: 0 8px;
}

.product_inquiry_form_day_input[type="date"]::-webkit-calendar-picker-indicator,
.product_inquiry_form_day_input[type="date"]::-webkit-inner-spin-button {
    display: none;
    appearance: none;
}

.product_inquiry_form_day_input[type='date'] {
    position: relative;
    padding: 12px 20px;
    border: 1px solid #CCC;
    box-sizing: border-box;
    width: 100%; height: 100%;
    background: url('/images/icon/calendar.svg') no-repeat right 20px center;
    color: #666;
    font-family: Pretendard;
    font-size: 16px;
    font-weight: 400;
}

.product_inquiry_textarea {
    width: 100%; height: 168px;
    border: 1px solid #CCC;
    background: #F9F9F9;
    resize: none;
    padding: 12px 20px;
    box-sizing: border-box;
    color: #666;
    font-family: Pretendard;
    font-size: 16px;
}

.product_inquiry_btn {
    width: 206px;
    height: 60px;
    background: #222;
    color: #FFF;
    text-align: center;
    font-family: Pretendard;
    font-size: 17px;
    font-style: normal;
    font-weight: 600;
    line-height: 60px;
    margin: 0 auto;
    margin-top: 65px;
	display:block;
	border:none;
}

.product_inquiry_btn:hover {
    cursor: pointer;
    border: 1px solid #222;
    box-sizing: border-box;
    background: #ECECEC;
    color: #222;
    text-decoration: underline;
}

@media screen and (max-width:1280px) {
    .product_inquiry_form_flex_input {
        margin: 0 5px 0 5px;
    }
}

@media screen and (max-width:1220px) {
    .product_inquiry_form_list {
        width: calc(50% - 15px);
    }

    .product_inquiry_form_flex {
        flex-wrap: wrap;
    }
    .product_inquiry_form_flex_list {
        width: 100%;
        margin-bottom: 10px;
    }

    .product_inquiry_form_flex_title {
        width: 42px;
    }

    .product_inquiry_form_flex_input {
        width: 260px;
    }
}

@media screen and (max-width:768px) {
    .product_inquiry_form_day {
        flex-wrap: wrap;
    }

    .product_inquiry_form_day_input_box {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .product_inquiry_contents {
        margin-top: 50px;
    }

    .product_inquiry_title_kakao_box {
        flex-wrap: wrap;
    }

    .product_inquiry_form_box {
        margin-top: 50px;
        padding-top: 50px;
    }

    .kakao_inquiry_box {
        width: 100%;
        margin-left: 0;
        margin-top: 20px;
    }

    .product_inquiry_form {
        flex-wrap: wrap;
        margin-bottom: 0;
    }

    .product_inquiry_form_list {
        width: 100%;
        margin-bottom: 20px;
    }
}

.product_inquiry_ok_contents {
    margin-top: 170px;
}

.product_inquiry_ok_title {
    color: #222;
    text-align: center;
    font-size: 32px;
    font-weight: 600;
}

.product_inquiry_ok_ex {
    color: #444;
    text-align: center;
    font-size: 18px;
    font-weight: 400;
    margin: 30px 0 70px 0;
}

.main_back_btn {
    width: 150px;
    height: 60px;
    color: #222;
    font-size: 17px;
    font-weight: 600;
    line-height: 60px;
    text-align: center;
    margin: 0 auto;
    border: 1px solid #666;
    background: #FFF;
    margin-bottom: 140px;
}

.main_back_btn:hover {
    cursor: pointer;
    text-decoration: underline;
}

.kakao_inquiry_ok_box {
    width: 805px;
    margin-left: 0px;
    margin: 0 auto;
}

@media screen and (max-width:820px) {
    .kakao_inquiry_ok_box {
        width: 100%;
    }
}

@media screen and (max-width:600px) {
    .product_inquiry_ok_contents {
        margin-top: 50px;
    }

    .main_back_btn {
        margin-bottom: 50px;
    }
}

/*개인정보처리방침, 이용약관*/
.terms_wrap {
    margin-top: 50px;
    margin-bottom: 100px;
}

.terms_title {
    color: #333;
    text-align: center;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 100px;
}

.terms_sub_title {
    color: #222;
    font-size: 18px;
    font-weight: 500;
    line-height: 24px;
}

.terms_txt {
    color: #222;
    font-size: 16px;
    font-weight: 400;
    line-height: 24px;
}

.terms_list {
    margin-bottom: 30px;
}

@media screen and (max-width:600px) {
    .terms_wrap {
        margin-top: 40px;
        margin-bottom: 60px;
    }

    .terms_title {
        text-align: left;
        font-size: 20px;
        font-weight: 600;
        margin-bottom: 40px;
    }

    .terms_sub_title {
        font-size: 16px;
    }

    .terms_txt {
        font-size: 14px;
        line-height: 20px;
    }
}

.at-container{margin-top:120px}