/* common class */
:root 
{
    --content-title: 42px;
    --main: #E76203;
    --black: #111;
    --gray:#767676;
}

.body_bottom_text_wrap 
{
	display: flex;
	flex-direction: column;
	align-items: start;
	gap:12px 0;
	justify-content: center;
	margin: 100px 0 40px;
}

.bbt_title
{
	font-size:var(--content-title);
}

.bbt_sub_title
{
	font-size:var(--content-sub-title);
}

.product_list_wrap 
{
	display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 40px;	
    grid-auto-rows: 1fr; /* 세로비율을 알아서 자동 조정해줌 */
}

.product_list 
{
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px 0;
}

.product_image 
{
	padding: 40px;
    border: 1px solid #e5e5ec;
    border-radius: 13px;
    width: 100%;
    height: 250px;
}

.product_image img 
{
	width: 100%;
	height: 100%;
}

.product_logo 
{
	width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;	
}

.product_logo img 
{
	width: 200px;
}

.process_wrap 
{
	display: flex;
    flex-direction: column;
    gap: 40px 0;
}

.process_tab_wrap, .process_company_wrap 
{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(3, 1fr);
    gap: 0 40px;
}

.process_tab 
{
	height: 48px;
	background: var(--main);
	width: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
	color: #fff;
	border-radius: 13px;
}

.process_image_wrap 
{
	width: 100%;
}

.process_image_wrap img, .process_company img  
{
	width: 100%;
	height: 100%;
}

.process_company 
{
    display: flex;
    justify-content: center;
    border-radius: 13px;
    border: 1px solid #e5e5ec;
    padding: 40px;
    width: 100%;
    height: 400px;
}

.cell_item_list_wrap 
{
    display: flex;
    flex-direction: column;
    gap: 150px 0;	
    margin-top: 100px;
}

.cell_item 
{
	display: flex;
    width: 100%;
    justify-content: space-between;
    gap:0 40px;
}

.cell_item .left 
{
	width: 30%;
	font-size: 28px;
	font-weight: 600;
}

.cell_item .right 
{
	width: 70%;
}

.cell_item .right table 
{
	width: 100%;
	border-collapse: collapse; 
	border-top: 2px solid #111;
}

.cell_item .right table thead 
{
	background: #f7f7fb;
}

th,td 
{
	padding: 12px;
	border:1px solid #e5e5ec;
	border-left: 0;
	
}

td.num, th.num
{
	border-right:0;
}

td.num 
{
	text-align: right;
}

td.no 
{
	text-align: center;
}

.sell_wrap
{
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    gap: 0 40px;
}

.sell
{
	width: 100%;
	height: 250px;
}

.sell img  
{
	width: 100%;
	height: 100%;
	object-fit: cover;
	border-radius: 13px;
}


/* .busienss-introduce-section.distribution .con-wrapper.img
{
	display: flex;
    flex-direction: column;
    align-items: center;
    gap: 40px;
} */

.left-wrapper.text-wrapper {
    padding-left: 10.9375%;
    padding-right: calc(10.9375% / 4);
}
.right-wrapper.text-wrapper {
    padding-right: calc(10.9375% / 4);
}

.busienss-introduce-section.distribution .sub_title 
{
    font-weight: 300;
    line-height: 1;
    letter-spacing: -1;
    font-size: var(--sub-title);
    display: flex;
    flex-direction: column;
}

ul.step_div 
{
	display: flex;
	flex-direction:column;
	gap:24px;
	margin-top: 40px;
}
li.step_wrapper 
{
	display: flex;
    gap: 0 12px;
    align-items: center;
    cursor:pointer;
    font-size: var(--sub-title);
}
.step
{
	border: 1px solid #e5e5ec;
    border-radius: 6px;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;	
    font-size: var(--top-title);
    
}

.step.on 
{
	border: 1px solid var(--main);
	background-color: var(--main);
	color: #fff;
}

.con-wrapper.description { position: relative;}

.step_description_div 
{
    position: absolute;
    bottom: 0;
    z-index: 99;	
    right: 0;
    width: 80%;   
    background: #fff;
    padding: 40px 40px 0;
}
.step_description_wrapper 
{    
    display: none;
    flex-direction: column;
    font-size: 24px;
    font-weight:600;
    gap: 24px;
}

.step_description_wrapper p 
{
	font-size: 16px;
	font-weight: 300;
}

.step_description_wrapper.on 
{
	display: flex;	
}
/* 반응형 구간 */

/* 노트북 & 테블릿 가로 (해상도 1024px ~ 1279px)*/ 
@media all and (max-width:1279px) 
{ 
	.product_logo img { width: 100%; }
} 

/* 테블릿 가로 (해상도 768px ~ 1023px)*/ 
@media all and (max-width:1023px) 
{ 
	:root 
	{
	    --alarm: 20px;
	    --icon-title:20px;
	    --icon-subtitle:16px;
	}
	.product_image, .process_company { padding: 12px; height: 200px; }	
	.content_body { gap: 40px 0 !important; }
	.body_bottom_icon_wrap { grid-template-columns: repeat(2, 1fr); gap: 40px; }	
	.sell { height: 140px; }
	
	.bbt_sub_title { text-align:center; }
	.busienss-introduce-section.distribution .business-wrapper:nth-child(2){ margin-top: 100px; }
	.busienss-introduce-section.distribution .business-wrapper:last-child{ margin-bottom: 150px!important; }
	.busienss-introduce-section.distribution .title2, .busienss-introduce-section.distribution .sub_title { text-align: center; }
	.con-wrapper.img > img { height: 450px; }	
	.busienss-introduce-section.distribution.process .top_title { text-align:center; }
	
	ul.step_div { flex-direction: row; justify-content: space-between; }	
	.step_description_div 
	{
		position: initial;
	    padding: 0;
	    margin-top: 40px;
	    width: 100%;
    }
    
    .busienss-introduce-section.distribution.process .business-wrapper:last-child{ margin-bottom: 0!important; }
    .section.list .body_bottom_text_wrap { margin-top:150px!important; }
    .busienss-introduce-section.distribution .sub_title { line-height: 1.5;}
} 

/* 모바일 가로 & 테블릿 세로 (해상도 480px ~ 767px)*/ 
@media all and (max-width:767px)
{
	:root 
	{
	    --content-title: 28px;
	    --content-sub-title:16px!important;
	    --slider-title:24px;
	    --slider-sub-title:16px;
	    --section-title2:28px!important;
	    --sub-title:16px!important;
	}
	.busienss-introduce-section.distribution .title2 img { width: 160px!important; }
	.con-wrapper.img > img { height: 250px; }	
	.body_bottom_text_wrap { margin-top: 60px !important; }
	.product_list_wrap { grid-template-columns: repeat(1, 1fr); gap: 40px; }
	.product_logo img { width: 160px; }
	.product_list { gap: 12px 0; }
	.process_tab_wrap, .process_image_wrap{ display: none; }
	.process_company { position:relative; margin-bottom: 40px; }
	.process_company_wrap, .sell_wrap { grid-template-columns: repeat(1, 1fr); gap: 40px; }
	.process_company::after
	{
		position: absolute;
		bottom: -40px; 
		color: var(--main);
		font-size: 20px;
		font-weight: 400;
	}
	.process_company:nth-child(1)::after 
	{
		content:"EK Global";

	}
	.process_company:nth-child(2)::after
	{
		content:"도매상";
	}
	.process_company:nth-child(3)::after
	{
		content:"납품";
	}
	
	.cell_item { flex-direction: column; gap: 24px; }
	.cell_item .left { font-size: 20px; }
	.cell_item .left, .cell_item .right { width: 100%; }
	.cell_item_list_wrap { gap: 60px; }
	.sell { height: 200px; }
	.cell_item_list_wrap { margin-top: 40px; }
	ul.step_div { flex-direction: column; justify-content: space-between; }
}
/* 모바일 세로 (해상도 ~ 479px)*/ 
@media all and (max-width:479px) 
{   
	.sub_menu_text { letter-spacing: -1.5px; }
}

