/* ------------------------------ 메인 타이틀 시작 ------------------------------ */
#main_title_box {
	width: 100%;
	padding-top: 160px;
}

#terms_title {
    max-width: 1400px;
    height: 100%;
    display: flex;
	flex-direction: column;
	gap: 160px;
}

#terms_title p {
    font-size: 64px;
    font-weight: 600;
}

.terms_line {
    width: 100%;
    height: 2px;
    background-color: #aeaeae;
}
/* ------------------------------ 메인 타이틀 끝 ------------------------------ */


/* --------------- 섹션01 시작 --------------- */
#section01 {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 200px;
}

#terms_contents {
    max-width: 1400px;
    height: 100%;
    display: flex;
	gap: 100px;
}

#menu_box {
    width: 20%;
    height: 100%;
    margin-left: 0;
	display: flex;
	flex-direction: column;
	gap: 20px;
}

#terms_btn, #privacy_btn {
    width: 100%;
    height: 100%;
    display: flex;
	gap: 4px;
    cursor: pointer;
    align-items: center;
}

.menu_click_btn {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    margin: 0;
}

.menu_click_icon {
    width: 8px;
    height: 8px;
    border-radius: 100%;
    background-color: #f79a49;
}

#privacy_btn .menu_click_icon {
    background-color: rgba(0, 0, 0, 0);
}

#terms_btn > p {
    font-size: 32px;
    font-weight: 600;
	margin-left: 0px;
}

#privacy_btn > p {
    font-size: 32px;
    color: #767676;
    margin-left: 0px;
}

#terms_contents_text_box {
    width: 80%;
    height: 100%;
    margin-right: 0;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

#terms_text_01, #terms_text_02, #terms_text_03, #terms_text_04 {
    width: 100%;
    height: 100%;
}

#terms_text_01 > p, #terms_text_02 > p, #terms_text_03 > p, #terms_text_04 > p{
    color: #505050;
}

#terms_text_01 > p:nth-of-type(1), #terms_text_02 > p:nth-of-type(1), #terms_text_03 > p:nth-of-type(1), #terms_text_04 > p:nth-of-type(1) {
    font-size: 24px;
    font-weight: 600;
    color: #333;
}

#terms_text_01 > p:nth-of-type(2), #terms_text_01 > p:nth-of-type(4), #terms_text_01 > p:nth-of-type(7), #terms_text_01 > p:nth-of-type(9), #terms_text_01 > p:nth-of-type(12), #terms_text_01 > p:nth-of-type(17) {
    font-weight: 500;
    color: #333;
    margin-top: 40px;
}

#terms_text_01 > p:nth-of-type(3), #terms_text_01 > p:nth-of-type(5), #terms_text_01 > p:nth-of-type(8), #terms_text_01 > p:nth-of-type(10), #terms_text_01 > p:nth-of-type(13), #terms_text_01 > p:nth-of-type(18) {
    margin-top: 20px;
}

#terms_text_02 > p:nth-of-type(2), #terms_text_02 > p:nth-of-type(5) {
    font-weight: 500;
    color: #333;
    margin-top: 40px;
}

#terms_text_02 > p:nth-of-type(3), #terms_text_02 > p:nth-of-type(6) {
    margin-top: 20px;
}

#terms_text_03 > p:nth-of-type(2), #terms_text_03 > p:nth-of-type(6), #terms_text_03 > p:nth-of-type(9), #terms_text_03 > p:nth-of-type(12) {
    font-weight: 500;
    color: #333;
    margin-top: 40px;
}

#terms_text_03 > p:nth-of-type(3), #terms_text_03 > p:nth-of-type(7), #terms_text_03 > p:nth-of-type(10), #terms_text_03 > p:nth-of-type(13) {
    margin-top: 20px;
}

#terms_text_03 > p:nth-of-type(4) {
    margin-top: 12px;
}

#terms_text_04 > p:nth-of-type(2), #terms_text_04 > p:nth-of-type(4), #terms_text_04 > p:nth-of-type(9) {
    font-weight: 500;
    color: #333;
    margin-top: 40px;
}

#terms_text_04 > p:nth-of-type(3), #terms_text_04 > p:nth-of-type(5), #terms_text_04 > p:nth-of-type(10) {
    margin-top: 20px;
}

#terms_text_04 > p:nth-of-type(11) {
    margin-top: 60px;
    color: #333;
    font-weight: 500;
}
/* --------------- 섹션01 끝 --------------- */


/* -------------------------------- 모바일 -------------------------------- */
@media (max-width: 480px){
/*---------- 메인타이틀 ----------*/
	#main_title_box {
		width: 100%;
		padding-top: 60px;
	}

	#terms_title {
		width: calc(100% - 40px);
		gap: 60px;
	}
	
	#terms_title p {
        font-size: 32px;
    }
/*---------- 메인타이틀 ----------*/


/*-------------------- 섹션01 --------------------*/
	#section01 {
		width: 100%;
		padding-top: 20px;
		padding-bottom: 140px;
	}
    
    #terms_contents {
		width: calc(100% - 40px);
        flex-direction: column;
		gap: 60px;
    }

    #menu_box {
        width: 100%;
        display: flex;
        justify-content: center;
		flex-direction: row;
		gap: 34px;
    }

    .menu_click_btn {
        width: 24px;
        height: 24px;
    }

    .menu_click_icon {
        width: 6px;
        height: 6px;
    }

    #terms_btn, #privacy_btn {
        width: auto;
        margin: 0;
		gap: 2px;
    }

	#privacy_btn > .menu_click_btn {
		display: none;
	}

    #terms_btn > p, #privacy_btn > p {
        font-size: 20px;
        margin: 0;
    }

    #terms_contents_text_box {
        width: 100%;
		gap: 60px;
    }

	#terms_text_01 > p:nth-of-type(1), #terms_text_02 > p:nth-of-type(1), 
	#terms_text_03 > p:nth-of-type(1), #terms_text_04 > p:nth-of-type(1) {
		font-size: 20px;
	}

	#terms_text_01 > p, #terms_text_02 > p, #terms_text_03 > p, #terms_text_04 > p {
		font-size: 14px;
	}
/*-------------------- 섹션01 --------------------*/

}