/* ------------------------------ 메인 타이틀 시작 ------------------------------ */
#main_title_box {
	max-width: 1400px;
	padding-top: 60px;
}

#main_title_btn_box {
	width: 100%;
}

.title_btn {
	width: 100%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 6px;
}

.title_home_btn, .title_arrow_box, .title_text_btn {
	margin: 0;
}

.title_arrow_box {
	width: 24px;
	height: 24px;
}

.title_arrow_box {
	display: flex;
	align-items: center;
}

.title_home_btn {
	position: relative;
  	width: 24px;
  	height: 24px;
	margin-left: 7px;
}

.title_home_btn img {
	position: absolute;
	inset: 0;
	display: block;
}

.title_home_btn a {
	display: block;
	width: 100%;
	height: 100%;
}

.home_btn_mouse_leave {
	opacity: 1;
	transition: opacity .25s ease;
}

.home_btn_mouse_over {
	opacity: 0;
	transition: opacity .25s ease;
}

.title_home_btn:hover .home_btn_mouse_leave  {
  	opacity: 0;
}

.title_home_btn:hover .home_btn_mouse_over {
  	opacity: 1;
}

.title_arrow_btn {
	width: 5px;
    height: 5px;
    border-top: 1px solid #767676;
    border-right: 1px solid #767676;
    transform: rotate(45deg);
}

.title_text_btn p {
	color: #767676;
	transition: color .15s ease-out;
}

.title_btn > .title_text_btn:nth-of-type(3) {
	margin-right: 20px;
}

.title_text_btn p:hover {
	color: #f79a49;
}

#faq_title_box {
    width: 100%;
    height: 100%;
    box-shadow: 0 0 0 2px #F79A49 inset;
    border-radius: 25px;
    display: flex;
	margin-top: 20px;
}

#faq_title_left {
    width: 40%;
    height: 100%;
    margin-left: 160px;
    padding: 60px 0;
	display: flex;
	flex-direction: column;
	gap: 40px;
}

#faq_title_left > p {
    font-size: 32px;
    font-weight: 600;
    color: #F79A49;
	margin: 0;
}

.faq_left_question_box {
    width: 100%;
    height: 100%;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

.faq_left_question {
    width: 100%;
    display: flex;
    align-items: center;
	gap: 8px;
}

.faq_left_question > p:nth-of-type(1) {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #F79A49;
    padding: 2px 4.6px;
    text-align: center;
    box-shadow: 0 0 0 1px #dbdbdb inset;
    border-radius: 100%;
    letter-spacing: 0px;
}

.faq_left_question > p:nth-of-type(2) {
    font-size: 18px;
	margin: 0;
}

#faq_title_right {
    height: 100%;
    margin-right: 160px;
    padding: 60px 0;
}

.faq_right_title {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
	gap: 6px;
    margin-bottom: 20px;
}

.faq_right_title > span:nth-of-type(1) {
    font-size: 32px;
    font-weight: 500;
}

.faq_right_title > span:nth-of-type(2) {
    font-size: 32px;
    font-weight: 600;
    color: #F79A49;
}

#faq_title_right > p {
    color: #767676;
}

#faq_title_right > p:nth-of-type(2) {
    margin-top: 6px;
}

.faq_right_call, .faq_right_phone, .faq_right_email {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
	gap: 10px;
    margin-top: 16px;
}

.faq_right_call {
    margin-top: 57px;
}

.call_icon, .phone_icon, .email_icon {
    width: 24px;
    height: 24px;
    margin: 0;
}

.call_icon img, .phone_icon img, .email_icon img {
	display: block;
    width: 100%;
    height: 100%;
}

.faq_right_call span, .faq_right_phone span, .faq_right_email span {
    font-size: 18px;
	font-weight: 500;
	margin: 0;
}
/* ------------------------------ 메인 타이틀 끝 ------------------------------ */


/* --------------- 섹션01 시작 --------------- */
#faq_contents_box {
    max-width: 1400px;
    height: 100%;
    padding-top: 10px;
	padding-bottom: 200px;
}

#faq_menu_bar {
    width: 100%;
    height: 100%;
    box-shadow: 0 -1px 0 0 #dbdbdb inset;
    display: flex;
}

#faq_menu_bar li {
    width: calc(100%/6);
    font-size: 20px;
    padding: 20px 0;
    text-align: center;
    cursor: pointer;
    color: #767676;
}

#faq_menu_bar li:nth-of-type(1) {
    color: #F79A49;
    font-weight: 500;
}

#faq_all_box, #faq_type01_box, #faq_type02_box, #faq_type03_box, #faq_type04_box, #faq_type05_box {
    width: 100%;
    height: 100%;
}

.faq_panel {
	display: none;
}

#faq_all_box {
	display: block;
}

#faq_type01_box, #faq_type02_box, #faq_type03_box, #faq_type04_box, #faq_type05_box {
    display: none;
}

#faq_all_list_box_01, #faq_all_list_box_02, #faq_all_list_box_03, #faq_all_list_box_04, #faq_all_list_box_05 {
    width: 100%;
    height: 100%;
}

.faq_all_Q {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    box-shadow: 0 -1px 0 0 #dbdbdb inset;
    cursor: pointer;
}

.faq_all_Q > p {
    width: calc(100%/6);
    padding: 40px 0;
    font-size: 18px;
    text-align: center;
    margin: 0;
}

.faq_all_list_text {
    width: calc(100% - 100% / 6);
    margin: 0;
    display: flex;
    align-items: center;
	justify-content: space-between;
	gap: 8px;
}

.faq_all_list_text > p:nth-of-type(1) {
    margin: 0;
    font-size: 12px;
    font-weight: 500;
    color: #F79A49;
    padding: 2px 4.6px;
    text-align: center;
    box-shadow: 0 0 0 1px #dbdbdb inset;
    border-radius: 100%;
    letter-spacing: 0px;
}

.faq_all_list_text > p:nth-of-type(2) {
    font-size: 18px;
	margin-left: 0;
}

.list_btn_box {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    margin-right: 40px;
}

.list_btn {
    width: 7px;
    height: 7px;
    border-top: 1px solid #222;
    border-right: 1px solid #222;
    transform: rotate(-225deg);
    margin-top: -4px;
}

.faq_all_A {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 40px 0;
    background-color: #F6F7FA;
    display: none;
}

.faq_all_A > p {
    width: calc(100%/6);
    padding: 1px 0;
    font-size: 20px;
    text-align: center;
    margin: 0;
    float: left;
}

.faq_all_A > .faq_all_list_text {
    width: calc(100% - 100%/6 - 40px);
    align-items: flex-start;
}

.faq_all_A > .faq_all_list_text > p:nth-of-type(1) {
    margin-top: 5px;
	box-shadow: 0 0 0 1px #F79A49 inset;
}

.faq_all_A > .faq_all_list_text > p:nth-of-type(2) {
    line-height: 28px;
}

.mobile_faq_menu_bar {
    margin-top: 40px;
    margin-bottom: 20px;
    display: none;
}
/* --------------- 섹션01 끝 --------------- */


/* -------------------------------- 모바일 -------------------------------- */
@media (max-width: 480px){
/*---------- 메인타이틀 ----------*/
	#main_title_box {
		width: 100%;
		padding-top: 60px;
		padding-bottom: 40px;
	}

	#main_title_btn_box {
		display: none;
	}

	#faq_title_box {
		width: calc(100% - 40px);
		margin-top: 0;
        flex-direction: column;
		border-radius: 20px;
		gap: 40px;
    }

    #faq_title_left {
		padding: 0;
		padding-top: 30px;
		padding-left: 25px;
		gap: 20px;
        width: auto;
        margin: 0;
    }

    #faq_title_left > p {
        font-size: 24px;
    }

	.faq_left_question_box {
		gap: 12px;
	}
    
    .faq_left_question > p:nth-of-type(2) {
        font-size: 16px;
    }

    #faq_title_right {
        width: auto;
        padding: 0;
        padding-bottom: 30px;
		padding-left: 25px;
		margin: 0;
    }

    .faq_right_title > span {
        margin: 0;
    }

    .faq_right_title > span:nth-of-type(1), .faq_right_title > span:nth-of-type(2) {
        font-size: 24px;
    }

    .faq_right_title {
        width: auto;
        margin-bottom: 10px;
    }

	#faq_title_right > p {
		font-size: 15px;
	}

	#faq_title_right > p:nth-of-type(2) {
		margin-top: 2px;
	}

    .faq_right_call{
        margin-top: 20px;
    }

    .faq_right_phone, .faq_right_email {
        margin-top: 8px;
    }

    .faq_right_call span, .faq_right_phone span, .faq_right_email span {
        font-size: 16px;
    }

    .faq_all_Q {
        flex-direction: column;
        align-items: flex-start;
    }

    .faq_all_Q > p {
        width: auto;
        padding: 10px 0;
        font-size: 16px;
    }

    .faq_all_list_text {
        width: 100%;
        padding-bottom: 10px;
    }

    .faq_all_list_text > p:nth-of-type(2) {
        font-size: 16px;
    }

    .list_btn_box {
        margin: 0;
        margin-left: 8px;
    }

    .faq_all_A {
        width: auto;
        padding: 20px;
    }

    .faq_all_A > p {
        display: none;
    }

    .faq_all_A > .faq_all_list_text {
        width: 100%;
        padding: 0;
    }
/*---------- 메인타이틀 ----------*/


/*-------------------- 섹션01 --------------------*/
    #faq_contents_box {
        width: 100%;
		padding-top: 0;
		padding-bottom: 140px;
    }

    #faq_menu_bar {
        display: none;
    }

    .mobile_faq_menu_bar {
		margin: 0;
        display: block;
    }

	.target {
		align-items: center;
	}

    .snbSwiper {
        display: block;
    }

    .mobile_product {
        width: 100%;
        margin-top: 20px;
        display: block;
    }

    .swiper-slide {
        width: calc(100% / 2) !important;
        cursor: pointer;
    }

    .swiper-slide a {
        display: block;
        text-align: center;
    }

    .swiper-slide .text {
        text-align: center;
        padding: 20px 0;
        display: inline-block;
        font-size: 20px;
        color: #808080;
        font-weight: 300;
        width: 100% !important;
    }

    .on .text {
        color: #f79a49;
        font-weight: 500;
        box-shadow: 0 0 0 1.5px #f79a49 inset;
        border-radius: 100px;
        padding: 3.5vh 0;
        font-size: 20px;
        width: 100% !important;
    }

	#faq_all_box, #faq_type01_box, #faq_type02_box, #faq_type03_box, 
	#faq_type04_box, #faq_type05_box {
		width: calc(100% - 40px);
		padding-top: 20px;
	}
/*-------------------- 섹션01 --------------------*/
}