/* === pc-menu.css - 헤더 이미지 시작 div ==== */

/* 전체적으로 #333 만 고치면 됨 */

.subTitleImg{
	background: #FAF0E6; /* #333 -> #FAF0E6 (배경색 변경) */
	text-align:center;
}

.subTitleImg img{
	vertical-align: bottom;
}

.subImg{
	width: 1167px;
    margin-left: auto;
    margin-right: auto;
}


/* --- */

/* === img_titlegradient.css - 헤더 이미지 좌우 그라데이션 ==== */

.ImgLeftRightGradient {
	/*width: 1167px;*/
	margin: 0 auto;
	position: relative;
}

.ImgLeftRightGradient::after {
	position: absolute;
	display: block;
	content: "";
	top: 00;
	left: 0;
	width: 100%;
	height: 100%;

    /* 그라데이션 끝 색상: 투명(0)에서 #FAF0E6으로 변경 */
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%) ,linear-gradient(to left, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%);
	background: -moz-linear-gradient(to right, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%) ,-moz-linear-gradient(to left, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%);
	background: -ms-linear-gradient(to right, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%) ,-ms-linear-gradient(to left, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%);
	background: -o-linear-gradient(to right, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%) ,-o-linear-gradient(to left, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%);
	background: -webkit-linear-gradient(to right, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%) ,-webkit-linear-gradient(to left, rgba(255, 255, 255, 0) 80%, #FAF0E6 100%);
}