/* ------------------------------ 메인 타이틀 시작 ------------------------------ */
#main_title_box {
	max-width: 1400px;
	padding: 60px 0;
}

#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(5) {
	margin-right: 20px;
}

.title_text_btn p:hover {
	color: #f79a49;
}

#title_BG_box {
    width: 100%;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.title_BG_mask {
	width: 800px;
    height: 320px;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: titleBGExpand 1.8s ease-out forwards;
}

.title_BG_mask img {
	width: 1400px;
    max-width: none;
    flex-shrink: 0;
}

@keyframes titleBGExpand {
    0% {
        width: 800px;
    }
    100% {
        width: 1400px;
    }
}

#title_BG_box > p {
    font-size: 48px;
    font-weight: 700;
    color: #f3f3f3;
    padding-bottom: 10px;
    position: absolute;
}

#title_BG_box > p::after {
    content: "";
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0px;
    width: 50%;
    height: 3px;
    background: #f3f3f3;
}

#mobile_title_box {
	display: none;
}
/* ------------------------------ 메인 타이틀 끝 ------------------------------ */


/* --------------- 섹션01 시작 --------------- */
#section01 {
	width: 100%;
	padding-top: 60px;
	padding-bottom: 200px;
}

#section01_contents_box {
	max-width: 1400px;
	display: flex;
	flex-direction: column;
	gap: 80px;
}

.section01_oem_box {
	width: 100%;
	display: grid;
	grid-template-columns: repeat(3, minmax(0, 1fr));
	gap: 40px;
}

.oem_img_box {
	width: 100%;
	border-radius: 60px 30px 60px 30px;
	overflow: hidden;
	background-color: #FFF5ED;
}

.oem_img_box a {
	display: flex;
	flex-direction: column;
	width: 100%;
	height: 100%;
}

.oem_img_box > a > img {
	display: block;
	width: 100%;
	height: auto;
	border-radius: 0 0 60px 0;
}

.oem_img_text_box {
	display: flex;
	flex-direction: column;
	gap: 20px;
	padding: 25px;
	padding-top: 20px;
	margin: 0;
}

.oem_text {
	width: 100%;
	display: flex;
	flex-direction: column;
	gap: 12px;
}

.oem_text > p {
	font-size: 20px;
	color: #505050;
	margin-left: 0;
}

.oem_title {
	display: flex;
	flex-direction: column;
	gap: 8px;
	margin-left: 0;
}

.oem_title img {
	display: block;
	width: auto;
	height: 28px;
	margin-left: 0;
}

.oem_title p {
	font-size: 24px;
	font-weight: 500;
	color: #333;
	position: relative;
	display: inline-block;
	z-index: 1;
}

.oem_title p::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 15px;
    background-color: rgba(247, 154, 73, 70%);
    transition: width .35s ease;
	z-index: -1;
}

.oem_img_box a:hover .oem_title p::after {
    width: 100%;
}

.oem_text02 {
	display: flex;
	flex-direction: column;
	gap: 2px;
	margin-left: 0;
}

.oem_text02 > p{
	font-size: 18px;
	color: #767676;
	margin: 0;
}

.oem_btn {
	border: none;
	background-color: #f79a49;
	padding: 14px 50px;
	border-radius: 15px;
	margin-left: 0;
	margin-top: 4px;
}

.oem_btn p {
	font-size: 18px;
	font-weight: 500;
	color: #f3f3f3;
}

.oem_list_btn {
	background-color: rgba(0, 0, 0, 0);
	border: 1px solid #f79a49;
	box-sizing: border-box;
	border-radius: 100px;
	cursor: pointer;
	transition: background-color .6s ease, border-color .6s ease;
}

.oem_list_btn p {
	padding: 18px 69px;
	font-size: 18px;
	font-weight: 500;
	color: #f79a49;
	transition: color .5s ease;
}

.oem_list_btn:hover {
	background-color: rgba(247, 154, 73, 70%);
	border: 1px solid rgba(247, 154, 73, 15%);
}

.oem_list_btn:hover p {
	color: #f3f3f3;
}
/* --------------- 섹션01 끝 --------------- */


/* -------------------------------- 모바일 -------------------------------- */
@media (max-width: 480px){
/*---------- 메인타이틀 ----------*/
	#main_title_box {
		width: 100%;
		padding-top: 40px;
		padding-bottom: 10px;
	}

	#main_title_btn_box {
		display: none;
	}

	#title_BG_box {
		display: none;
	}

	#mobile_title_box {
		width: calc(100% - 40px);
		display: flex;
		flex-direction: column;
		gap: 40px;
	}

	#mobile_title_box p {
		font-size: 32px;
		font-weight: 500;
	}

	.mobile_title_line {
		width: 60px;
		height: 3px;
		background-color: #f79a49;
	}
/*---------- 메인타이틀 ----------*/


/*-------------------- 섹션01 --------------------*/
	#section01 {
		width: 100%;
		padding-top: 50px;
		padding-bottom: 140px;
	}

	#section01_contents_box {
		width: 100%;
	}

	.section01_oem_box {
		gap: 0;
	}

	.oem_img_text_box {
		padding: 20px;
		gap: 16px;
	}

	.oem_text {
		gap: 8px;
	}

	.oem_title {
		gap: 6px;
	}

	.oem_title img {
		width: auto;
		height: 20px;
	}

	.oem_title p {
		font-size: 16px;
	}

	.oem_text > p {
		font-size: 15px;
	}

	.oem_text02 > p {
		font-size: 14px;
	}

	.oem_btn {
		padding: 14px 52.5px;
	}

	.oem_btn p {
		font-size: 16px;
	}
	
	.section01_swiper .swiper-slide{
		width: 335px;
	}
/*-------------------- 섹션01 --------------------*/

}