@charset "utf-8";

/* ==================================================
	공통사항
================================================== */
::-moz-selection {
	background: #454545;
	color: #fff;
}

::selection {
	background: #454545;
	color: #fff;
}

.cont_inner {
	width: 100%;
	margin-top: 5rem;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.cont_inner {
		margin-top: 4rem;
	}
}

/* ==================================================
	아이콘
================================================== */


/* ==================================================
	반응형 테이블 스크롤
================================================== */
.msg_touch_help {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width:720px) {
	.con_table_wrap {
		overflow-x: auto;
	}

	.con_table_wrap {
		position: relative;
	}

	.table_scroll {
		width: 200%;
	}

	.msg_touch_help {
		position: absolute;
		left: 50%;
		top: 50%;
		margin-left: -40px;
		margin-top: -40px;
		display: block;
	}

	.msg_touch_help img {
		width: 100px;
		height: 100px;
	}
}

/* ==================================================
	이미지 움직이는 효과
================================================== */
.over-cover {
	overflow: hidden;
	position: relative;
	display: inline-block;
	border: 1px solid #dbdbdb;
	line-height: 0;
}

.over-cover img {
	width: 100%;
	height: 100%;
	-webkit-transition: all 0.5s linear;
	transition: all 0.5s linear;
	-webkit-transform: scale3d(1, 1, 1);
	transform: scale3d(1, 1, 1);
}

.over-cover:hover img {
	-webkit-transform: scale3d(1.2, 1.2, 1);
	transform: scale3d(1.2, 1.2, 1);
}

/* ==================================================
	회사소개 - 회사개요
================================================== */
.overview_con {
	/*background: #dce4e465;*/
	text-align: center;
	border-radius: 20px;
}

.tit {
	text-align: center;
	line-height: 1.5;
	word-break: keep-all;
}

.tit>p {
	font-size: var(--rem-25);
}

.tit>p>em {
	font-size: var(--rem-45);
	font-weight: var(--font-eb);
}

.tit>p>span {
	display: block;
}

.over_info {
	position: relative;
	margin-top: 50px;
}

.over_info::before {
	position: absolute;
	width: 1920px;
	height: 600px;
	content: "";
	background: url(../images/about/overview_bg.jpg) 50% 50% no-repeat;
	top: 0;
	left: -250px;
	z-index: -99;
	background-size: cover;
	background-position: center;
	border-radius: 50px 50px 0 0;
}

.overview_txt {
	padding-top: 80px;
}

.overview_txt>P {
	color: var(--color-red);
	font-weight: var(--font-eb);
	font-size: var(--rem-20);
}

.over_info>ul {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 100px;
	text-align: center;
	max-width: 1200px;
	margin: 60px auto;
}

.over_info>ul>li>h5 {
	margin-top: 30px;
	font-size: var(--rem-25);
	font-weight: 700;
	padding-bottom: 15px;
	color: var(--color-white);
	text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.869);
}

.over_info>ul>li>p {
	font-size: var(--rem-20);
	word-break: keep-all;
	line-height: 1.5;
	color: var(--color-white);
	text-shadow: 2px 2px 5px rgb(0 0 0);
}

.over_info>ul>li>img {
	width: 100%;
}

.business {
	margin-top: 150px;
}

.business>h5 {
	text-align: left;
	font-weight: var(--font-eb);
	color: var(--color-red);
	font-size: var(--rem-20);
	margin-bottom: 10px;
}

.business>p {
	font-size: var(--rem-40);
	font-weight: var(--font-bd);
	text-align: left;
}

.business>ul {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 35px;
	margin-top: 35px;
}

.business>ul>li>img {
	width: 100%;
	border-radius: 10px;
}

/* 모바일CSS */
@media screen and (max-width:1400px) {
	.over_info>ul {
		gap: 60px;
	}
}

@media screen and (max-width:1200px) {
	.over_info>ul {
		gap: 40px;
	}

	.overview_txt {
		padding-top: 50px;
	}

	.over_info::before {
		height: 500px;
	}

	.business {
		margin-top: 80px;
	}

	.business>ul {
		gap: 25px;
	}
}

@media screen and (max-width:1000px) {
	.over_info::before {
		height: 480px;
	}

	.business>ul {
		gap: 15px;
		margin-top: 20px;
	}
}

@media screen and (max-width:800px) {
	.over_info::before {
		height: 400px;
	}

	.over_info>ul {
		margin: 35px auto;
	}

	.over_info {
		margin-top: 35px;
	}

	.over_info>ul>li>h5 {
		margin-top: 25px;
	}
}

@media screen and (max-width:640px) {
	.over_info>ul {
		gap: 15px;
	}

	.tit>p>em {
		font-size: var(--rem-30);
	}
}

@media screen and (max-width:540px) {
	.tit>p>em {
		font-size: var(--rem-25);
	}

	.tit {
		line-height: 1.5;
	}

	.over_info>ul {
		grid-template-columns: repeat(2, 1fr);
		gap: 35px 35px;
	}

	.over_info::before {
		height: 800px;
	}

	.overview_txt {
		padding-top: 35px;
	}

	.overview_txt>p {
		color: var(--color-red);
	}

	.tit>p {
		font-size: var(--rem-19);
	}

	.business>ul {
		grid-template-columns: repeat(1, 1fr);
		margin-top: 20px;
	}
}

@media screen and (max-width:500px) {
	.over_info::before {
		height: 755px;
	}
}

@media screen and (max-width:450px) {
	.over_info::before {
		height: 650px;
	}
}

/* ==================================================
	회사소개 - 인사말
================================================== */



/* ==================================================
	회사소개 - 미션&비전
================================================== */
/* 상단 */
.mission {
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 7rem 1rem 16rem;
	color: var(--color-white);
	background: url('../images/about/qt-img-01.png');
	text-align: center;
}

.mission h4 {
	font-size: var(--rem-45);
	font-weight: var(--font-eb);
}

.mission p {
	margin-bottom: 2rem;
	font-size: 3.2rem;
	font-weight: var(--font-md);
	word-break: keep-all;
}

/* 비전 */
.vision_tit {
	position: relative;
	width: calc(100% - 120px);
	margin: -90px auto 0;
	padding: 80px 0;
	background-color: #fff;
	border-radius: 20px 20px;
}

.vision_tit:before {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	left: 80px;
	width: 29px;
	height: 103px;
	background: url('../images/about/mission_title_symbol1.png') no-repeat center/contain;
	vertical-align: middle;
	transform: translateY(-50%);
}

.vision_tit:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 80px;
	width: 29px;
	height: 103px;
	background: url('../images/about/mission_title_symbol2.png') no-repeat center/contain;
	vertical-align: middle;
	transform: translateY(-50%);
}

.vision_tit p {
	margin: 0 auto;
	max-width: 880px;
	text-align: center;
	font-weight: 600;
	font-size: 3.4rem;
	line-height: 1.5;
}

.vision_tit h4 {
	margin-top: 0;
	font-size: 6rem;
	color: var(--color-red);
	text-align: center;
	margin-bottom: 15px;
}

/* 핵심가치 */
.value {
	position: relative;
	padding-top: 50px;
}

.value::before {
	position: absolute;
    width: 3500px;
    height: 650px;
    content: "";
    background: url(../images/about/value_bg.png) no-repeat;
    top: 0;
    left: -580px;
    z-index: -99;
    background-size: cover;
    background-position: right;
}

.value>h5 {
	text-align: center;
	font-weight: var(--font-eb);
	color: var(--color-red);
	font-size: var(--rem-20);
	margin-bottom: 10px;
}

.value>p {
	font-size: var(--rem-40);
	font-weight: var(--font-bd);
	text-align: center;
	margin-bottom: 35px;
}

.value .col-lg-3 {
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-right: -15px;
	margin-left: -15px;
}

.value .col-lg-3 li {
	-ms-flex: 0 0 25%;
	flex: 0 0 33.3333333%;
	max-width: 33.3333333%;
	padding: 0 15px;
}

.value .col-lg-3 li div {
	border: 0;
}

.value .col-lg-3 li img {
	width: 100%;
}

.value .col-lg-3 li p {
	position: relative;
	padding-top: 60px;
	font-size: var(--rem-30);
	font-weight: 700;
	text-align: center;
}

.value .col-lg-3 li p:before {
	content: "";
	width: 1px;
	height: 60px;
	background-color: #c30d23;
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	top: -30px;
}

.value .col-lg-3 li small {
	display: block;
	margin-top: 5px;
	font-size: 2rem;
	font-weight: 400;
	line-height: 1.5;
}

/* 전략방향, 전략과제 */
.strategy {
	margin-top: 120px;
	text-align: center;
}

.strategy>h5 {
	font-weight: var(--font-eb);
	color: var(--color-red);
	font-size: var(--rem-20);
	margin-bottom: 10px;
}

.strategy>p {
	font-size: var(--rem-40);
	font-weight: var(--font-bd);
}

.strategy>ul {
	grid-template-columns: repeat(2,1fr);
	gap: 25px;
	margin-top: 50px;
	display: inline-grid;
    gap: 0 35px;
}

.strategy>ul>li {
	background: #F4F8FD;
	padding: 35px 80px;
	border-radius: 20px;
}

.strategy>ul>li>img {
	width: 30%;
}

.strategy>ul>li>h5 {
	color: var(--color-red);
	font-size: var(--rem-30);
	padding-bottom: 8px;
}

.strategy>ul>li>p {
	font-size: var(--rem-20);
	font-weight: var(--font-eb);
	padding-bottom: 25px;
}

.strategy>ul>li>ul {
	display: grid;
	grid-template-columns: repeat(2,1fr);
	text-align: left;
	align-items: center;
	margin-top: 15px;
	text-align: left;
}

.strategy>ul>li>ul>li {
	padding-bottom: 15px;
	position: relative;
	padding-left: 15px;
}

.strategy>ul>li>ul>li::before {
	position: absolute;
	content: "";
	top: 5px;
	left: 0;
	background: var(--color-red);
	width: 5px;
	height: 5px;
	border-radius: 50px;
}


/* 모바일CSS */
@media screen and (max-width:1400px) {
	.value::before {
		height: 600px;
	}

	.strategy {
		margin-top: 100px;
	}
}

@media screen and (max-width:1200px) {

	/*미션*/
	.mission {
		padding: 8rem 1rem 16rem;
	}

	.mission h4 {
		font-size: 4rem;
	}

	.mission p {
		margin-top: 15px;
		font-size: 2.8rem;
	}

	/* 비전 */
	.vision_tit {
		margin: -70px auto 0;
		padding: 70px 0;
	}

	.vision_tit h4 {
		font-size: 5rem;
	}

	.vision_tit p {
		font-size: 2.8rem;
	}

	.value::before {
		height: 550px;
	}
}

@media screen and (max-width:1023px) {

	/*미션*/
	.mission {
		padding: 6rem 1rem 14rem;
	}

	/* 비전 */
	.vision_tit {
		margin: -70px auto 0;
		width: calc(100% - 60px);
		padding: 70px 0;
	}

	.vision_tit:before {
		left: 30px;
		width: 20px;
		height: 80px;
	}

	.vision_tit:after {
		right: 30px;
		width: 20px;
		height: 80px;
	}

	.vision_tit h4 {
		margin-top: 0;
		font-size: 4rem;
	}

	.vision_tit p {
		font-size: 2.3rem;
	}

	.value::before {
		height: 500px;
	}

	.value .col-lg-3 li {
		padding: 0 10px;
	}

	.value .col-lg-3 li p {
		padding-top: 40px;
	}

	.strategy {
		margin-top: 80px;
	}

	.strategy>ul {
		display: grid;
		gap: 0 15px;
	}

	.strategy>ul>li {
		padding: 35px 30px;
	}
}

@media screen and (max-width:1023px)  {
	.value::before {
		height: 460px;
	}
}

@media screen and (max-width:768px) {

	/*미션*/
	.mission {
		padding: 6rem 1rem;
	}

	.mission h4 {
		font-size: 3rem;
	}

	.mission p {
		font-size: 2rem;
		line-height: 1.4;
	}

	.vision_tit {
		margin: 0px auto 0;
		padding: 30px 0;
	}

	.value {
		padding-top: 25px;
	}

	.value::before {
		content: none;
	}

	.strategy {
		margin-top: 50px;
	}

	.strategy>ul {
		margin-top: 35px;
		display: block;
	}

	.strategy>ul>li {
		margin-bottom: 20px;
	}

	.value .col-lg-3 li p {
		font-size: var(--rem-24);
	}
}

@media screen and (max-width:640px) {
	.vision_tit:before {
		content: none;
	}

	.vision_tit:after {
		content: none;
	}

	.mission {
		padding: 5rem 1rem;
	}

	.mission p {
		margin-top: 0px;
		margin-bottom: 15px;
	}
}

@media screen and (max-width:540px)  {
	.value {
		padding-top: 0;
	}

	.strategy>p {
		font-size: var(--rem-30);
	}

	.value>p {
		font-size: var(--rem-30);
	}

	.value .col-lg-3 li {
		padding: 0 5px;
	}

	.value .col-lg-3 li p {
		font-size: var(--rem-19);
	}

	.mission h4 {
		font-size: 2.5rem;
	}
}

/* ==================================================
	회사소개 - CI
================================================== */
.c-ctit01 {
	font-size: 3rem;
	font-weight: 700;
	color: var(--color-red);
	display: block;
	margin-bottom: 60px;
	line-height: 1
}

.c-ctit01:after {
	content: "";
	display: block;
	vertical-align: top;
	width: 233px;
	height: 5px;
	background: var(--color-red);
	margin-top: 15px;
	box-shadow: 0 15px 7px -1px rgba(0, 0, 0, 0.21)
}

.c-ctit01 .e-tit {
	display: block;
	font-size: 2.4rem;
	color: #c6c6c6;
	font-weight: 600;
	letter-spacing: -0.03em;
	text-transform: uppercase;
	margin-top: 10px;
}

.ui-box {
	border: 1px solid #ccc;
	background: url('../images/about/ui_box_pattern.gif') repeat;
	text-align: center;
	padding: 50px 0;
	margin-bottom: 30px;
	font-size: 1.8rem;
}

.ui-box.ci>img:nth-child(2) {
	margin-top: 30px;
}

.ui-box.ci>img {
	width: 100%;
	max-width: 650px;
}

.ui-list-wr {
	line-height: 1.6;
}

.ui-list-wr .ui-list {
	position: relative;
	padding-left: 350px;
	margin-bottom: 35px;
}

.ui-list-wr .ui-list:last-child {
	margin-bottom: 0;
}

.ui-list-wr .ui-list .c-ctit01 {
	position: absolute;
	top: 0;
	left: 0;
}

.ui-txt {
	font-size: 1.8rem;
	font-weight: 300;
	line-height: 1.65;
}

.ui-txt>P {
	font-size: 2rem;
}

.ui-txt>p>span {
	display: block;
}

.ui-txt>p>em {
	font-weight: var(--font-bd);
}

.color-list {
	margin-top: 20px;
	background: #f7f7f7;
}

.color-list>ul {
	padding: 35px 35px;
}

.color-list>ul:after {
	display: block;
	content: '';
	clear: both;
}

.color-list>ul>li {
	display: table;
	table-layout: fixed;
	float: left;
	width: 49%;
	margin-left: 2%;
	box-shadow: 14px 14px 20px 0px rgba(0, 0, 0, 0.1);
}

.color-list>ul>li:nth-child(2n+1) {
	clear: both;
}

.color-list>ul>li:nth-child(3) {
	margin-left: 0;
	margin-top: 20px;
}

.color-list>ul>li:nth-child(4) {
	margin-top: 20px;
}

.color-list>ul>li:nth-child(5) {
	margin-left: 0;
	margin-top: 20px;
}

.color-list>ul>li:nth-child(6) {
	margin-top: 20px;
}

.color-list>ul>li:first-child {
	margin-left: 0;
}

.color-list>ul>li:first-child {
	margin: 0;
}

.color-list>ul>li .info-box {
	display: table-cell;
	vertical-align: middle;
	width: 50%;
	padding: 30px 20px;
	background: #ffffff;
}

.color-list>ul>li .info-box .code {
	font-size: 2.3rem;
	font-weight: 700;
	color: #000;
}

.color-list>ul>li .info-box .detail-info {}

.color-list>ul>li .info-box .detail-info ul {
	margin: 25px 0 0;
}

.color-list>ul>li .info-box .detail-info ul li {
	font-size: 2rem;
	line-height: 3rem;
	letter-spacing: -0.2px;
	color: #777777;
}

.color-list>ul>li .color-view {
	display: table-cell;
	vertical-align: middle;
	position: relative;
}

.color-list>ul>li .color-view.bred {
	background: var(--color-red);
}

.color-list>ul>li .color-view.bgray {
	background: #3f3a39;
}

.color-list>ul>li .color-view .title {
	display: inline-block;
	position: absolute;
	top: 49px;
	right: 0px;
	font-size: 2.1rem;
	line-height: 1.3;
	color: var(--color-white);
	transform: rotate(90deg);
}

.ci_btn {
	text-align: right;
}

.btn_wrap {
	background: #DA1719;
	padding: 15px 50px;
	display: inline-block;
	border-radius: 50px;
}

.btn_wrap:last-child {
	margin-left: 20px;
}

.btn_wrap>a {
	color: #fff;
	font-size: 2rem;
}

/* 모바일CSS */
@media screen and (max-width:1100px) {
	.color-list>ul>li {
		width: 100%;
		margin-left: 0;
		margin-top: 20px;
	}

	.color-list>ul>li:first-child {
		margin-top: 0;
	}

	.ci_btn {
		text-align: center;
	}

	.ui-txt>p>span {
		display: none;
	}
}

@media screen and (max-width:1023px) {
	.ui-list-wr .ui-list {
		padding-left: 260px
	}

	.ui-box {
		padding: 40px 30px;
	}

	.ui-box img {
		width: 100%
	}

	.color-list>ul {
		padding: 25px 25px;
	}
}

@media screen and (max-width:768px) {
	.ui-list-wr .ui-list {
		padding-left: 0;
		margin-bottom: 40px
	}

	.ui-list-wr .ui-list .c-ctit01,
	.ui-list-wr .ui-list:nth-child(2) .c-ctit01 {
		position: relative;
		top: auto;
		left: auto;
		margin-bottom: 15px
	}

	.c-ctit01 .e-tit {
		display: inline;
		padding-left: 6px;
	}

	.color-list>ul>li .color-view .title {
		top: 38px;
		font-size: 2rem;
	}

	.color-list>ul>li .info-box .code {
		font-size: 2.3rem;
	}

}

@media screen and (max-width:640px) {
	.ui-box {
		margin-bottom: 25px
	}

	.ui-list-wr .ui-list {
		margin-bottom: 30px;
	}

	.ui-txt {
		font-size: 1.7rem;
	}

	.c-ctit01 {
		font-size: 2.3rem;
	}

	.color-list>ul {
		padding: 20px 20px;
	}

	.color-list>ul>li .info-box {
		padding: 25px 15px;
	}

	.color-list>ul>li .info-box .code {
		font-size: 2rem;
	}

	.color-list>ul>li .info-box .detail-info ul li {
		font-size: 1.5rem;
		line-height: 1.3;
	}

	.btn_wrap:last-child {
		margin-left: 10px;
	}
}

@media screen and (max-width:450px) {
	.color-list>ul>li .color-view .title {
		font-size: 14px;
	}

	.color-list>ul>li .info-box .detail-info ul li {
		font-size: 14px;
	}
}

/* ==================================================
	회사소개 - 파트너사
================================================== */
.content_topcon {
	position: relative;
	margin-bottom: 4rem;
}

.customer_bg {
	background: url('../images/about/customer_bg.jpg') no-repeat 50% 50%;
	background-size: cover;
	border-radius: 10px;
}

.content_topcon p {
	color: #fff;
	text-align: center;
	font-size: 3.4rem;
	letter-spacing: -0.3px;
	font-weight: 400;
	line-height: 1.5;
	padding: 8rem 0;
	word-break: keep-all;
}

.content_topcon p b {
	font-weight: var(--font-bd);
}

.customer_logo {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 25px;
}

.customer_logo>li>img {
	width: 100%;
}

.customer_logo>li {
	border: 1px solid #c7c7c7;
	border-radius: 20px 20px 0 0;
}

.customer_logo>li>p {
	text-align: center;
	padding: 20px;
	font-size: var(--rem-19);
	background: #3f3a39;
	color: var(--color-white);
}

/* 모바일CSS */
@media screen and (max-width:1200px) {
	.customer_logo {
		gap: 15px;
	}
}

@media screen and (max-width:800px) {
	.customer_logo {
		grid-template-columns: repeat(2, 1fr);
		gap: 25px;
	}
}

@media screen and (max-width:640px) {
	.customer_logo {
		grid-template-columns: repeat(2, 1fr);
		gap: 15px;
	}

	.customer_logo>li>p {
		padding: 15px;
	}

	.content_topcon p {
		font-size: var(--rem-25);
	}
}

@media screen and (max-width:450px) {
	.customer_logo {
		grid-template-columns: repeat(1, 1fr);
	}

	.content_topcon p {
		font-size: var(--rem-22);
	}
}

/* ==================================================
	회사소개 - 오시는 길
================================================== */
.loc_detail {
	width: 100%;
	max-width: var(--px-base);
	margin-right: auto;
	margin-left: auto;
	margin-top: 2rem;
}

.location_infor {
	display: flex;
	flex-wrap: wrap;
	margin-top: 50px;
}

.location_infor>dl {
	display: inline;
	margin-right: 50px;
	margin-bottom: 20px;
	line-height: 1.5;
}

.location_infor>dl:first-child {
	flex-basis: 100%;
}

.location_infor>dl>dt {
	position: relative;
	font-weight: 700;
	color: #4d4d4d;
	padding: 0 10px 0 30px;
	margin-right: 10px;
	display: inline;
}

.location_infor>dl>dt::after {
	position: absolute;
	content: '';
	background: var(--color-gray01);
	width: 1px;
	height: 16px;
	top: 5px;
	right: 0;
}

.location_infor>dl>dt.add_icon {
	background: url('../images/about/address.png') center left no-repeat;
	background-size: 20px;
}

.location_infor>dl>dt.call_icon {
	background: url('../images/about/call.png') center left no-repeat;
	background-size: 20px;
}

.location_infor>dl>dt.fax_icon {
	background: url('../images/about/fax.png') center left no-repeat;
	background-size: 20px;
}

.location_infor>dl>dt.mail_icon {
	background: url('../images/about/mail.png') center left no-repeat;
	background-size: 20px;
}

.location_infor>dl>dd {
	display: inline;
}

.location_infor>dl>dd>strong {
	color: #999;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.location_infor {
		margin-top: 40px;
	}

	.location_infor>dl {
		display: block;
	}

	.location_infor>dl>dt::after {
		background: transparent
	}

	.location_infor>dl>dd {
		display: block;
		margin-top: 10px;
	}
}

@media screen and (max-width:640px) {
	.map_con {
		height: 400px;
	}

	.location_infor {
		margin-top: 30px;
	}

	.location_infor>dl {
		font-size: var(--rem-20);
	}

	.location_infor>dl>dt.call_icon {
		background-size: 15px;
	}
}

/* ==================================================
	제품소개 - 직구동모터
================================================== */
.pro_img {}

.pro_img>img {
	width: 100%;
}

.pro_flex {
	display: flex;
	align-items: center;
}

.pro_txt {
	width: 50%;
	padding-left: 70px;
}

.pro_tit {
	display: flex;
	align-items: center;
}

.pro_tit>h5 {
	font-size: var(--rem-40);
	padding-right: 20px;
	font-weight: var(--font-sb);
}

.pro_tit>p {
	font-size: var(--rem-30);
	color: #C5C5C5;
	font-weight: var(--font-rg);
}

/*제품설명*/
.pro_contxt>p {
	line-height: 1.5;
	padding-top: 25px;
	word-break: keep-all;
}

/*제품사양*/
.pro_table>p {
	color: var(--color-red);
	font-weight: var(--font-bd);
	font-size: var(--rem-24);
	margin-top: 45px;
}

.pro_table>ul {
	display: grid;
	grid-template-columns: repeat(2, 1fr);
	border-top: 2px solid #292929;
	border-bottom: 1px solid #c3c3c3;
	margin-top: 15px;
	padding-top: 30px;
	padding-bottom: 30px;
}

.pro_table>ul>li {
	display: flex;
	padding-bottom: 25px;
}

.pro_table>ul>li:last-child {
	padding-bottom: 0px;
}

.pro_table>ul>li>h5 {
	font-weight: var(--font-md);
	font-size: var(--rem-20);
	border-right: 1px solid #c3c3c3;
	width: 145px;
}

.pro_table>ul>li>p {
	font-weight: var(--font-md);
	font-size: var(--rem-20);
	padding-left: 30px;
	width: 200px;
}

.pro_etc {
	margin-top: 25px;
}

.pro_etc>p {
	padding-bottom: 15px;
}

/*모바일CSS*/
@media screen and (max-width:1400px) {
	.pro_txt {
		padding-left: 50px;
	}

	.pro_table>ul {
		padding-bottom: 25px;
	}

	.pro_table>ul>li>h5 {
		width: 128px;
	}

	.pro_table>ul>li>p {
		width: 180px;
	}
}

@media screen and (max-width:1200px) {
	.pro_txt {
		padding-left: 35px;
	}

	.pro_contxt>p {
		padding-top: 20px;
	}

	.pro_table>p {
		margin-top: 35px;
	}

	.pro_table>ul>li>p {
		padding-left: 15px;
	}

	.pro_table>ul>li>h5 {
		width: 110px;
	}
}

@media screen and (max-width:1100px) {
	.pro_table>ul {
		grid-template-columns: repeat(1, 1fr);
	}

	.pro_txt {
		width: 70%;
	}
}

@media screen and (max-width:1000px) {
	.pro_tit {
		justify-content: center;
	}

	.pro_flex {
		display: block;
	}

	.pro_img {
		width: 80%;
		margin: auto;
	}

	.pro_txt {
		padding-left: 0;
		width: 100%;
		margin-top: 35px;
	}

	.pro_table>ul {
		grid-template-columns: repeat(2, 1fr);
	}

	.pro_table>p {
		margin-top: 25px;
	}
}

@media screen and (max-width:640px) {
	.pro_img {
		width: 100%;
	}

	.pro_etc {
		margin-top: 20px;
	}

	.pro_etc>p {
		padding-bottom: 10px;
	}

	.pro_table>ul {
		padding-top: 20px;
	}

	.pro_table>ul>li {
		padding-bottom: 20px;
	}

	.pro_table>ul>li>p {
		width: 130px;
	}

	.pro_table>ul>li>h5 {
		width: 100px;
	}
}

@media screen and (max-width:450px) {
	.pro_tit {
		justify-content: left;
	}

	.pro_tit>h5 {
		font-size: var(--rem-30);
		padding-right: 15px;
	}

	.pro_tit>p {
		font-size: var(--rem-25);
	}

	.pro_contxt>p {
		padding-top: 15px;
	}

	.pro_table>p {
		margin-top: 23px;
	}

	.pro_table>ul {
		grid-template-columns: repeat(1, 1fr);
		padding-top: 20px;
	}
}

/* ==================================================
	연구개발 - 연구분야
================================================== */
.field_list {
	display: flex;
	background: var(--color-white);
	padding: 35px 80px;
	align-items: center;
	justify-content: center;
	margin-bottom: 35px;
}

.field_con>.field_list:nth-child(2),
.field_con>.field_list:last-child {
	flex-direction: row-reverse;
}

.field_con>.field_list:nth-child(2)>.field_txt,
.field_con>.field_list:last-child>.field_txt {
	padding-right: 80px;
	padding-left: 0;
} 

.field_img {
	width: 40%;
}

.field_img>img {
	width: 100%;
	border-radius: 15px;
}

.field_txt {
	padding-left: 80px;
	width: 70%;
}

.field_txt>h5 {
	font-weight: var(--font-eb);
	color: var(--color-red);
	font-size: var(--rem-20);
	margin-bottom: 10px;
}

.field_txt>h4 {
	font-size: var(--rem-35);
	font-weight: var(--font-bd);
	padding-bottom: 35px;
}

.field_txt>.txt {
	border-top: 2px solid #e4e4e4;
	padding-top: 35px;
}

.field_txt>.txt>p {
	padding-bottom: 15px;
	font-size: var(--rem-19);
	position: relative;
	padding-left: 15px;
}

.field_txt>.txt>p::before {
	position: absolute;
	top: 5px;
	left: 0;
	width: 5px;
	height: 5px;
	background: var(--color-red);
	border-radius: 50px;
	content: "";
}

/*모바일CSS*/
@media screen and (max-width:1200px) {
	.field_list {
		padding: 35px 50px;
	}

	.field_txt {
		padding-left: 50px;
	}

	.field_txt>h4 {
		padding-bottom: 25px;
	}

	.field_txt>.txt {
		padding-top: 25px;
	}

	.field_con>.field_list:nth-child(2)>.field_txt, .field_con>.field_list:last-child>.field_txt {
		padding-right: 50px;
	}
}

@media screen and (max-width:1023px) {
	.field_list {
		padding: 35px 35px;
	}

	.field_txt {
		padding-left: 35px;
	}

	.field_con>.field_list:nth-child(2)>.field_txt, .field_con>.field_list:last-child>.field_txt {
		padding-right: 35px;
	}

	.field_txt>h4 {
		font-size: var(--rem-30);
	}
}

@media screen and (max-width:640px) {
	.field_list {
		display: block;
	}

	.field_img {
		width: 100%;
	}

	.field_txt {
		padding-left: 0px;
		padding-top: 35px;
	}

	.field_con>.field_list:nth-child(2)>.field_txt, .field_con>.field_list:last-child>.field_txt {
		padding-right: 0px;
	}

	.field_txt {
		width: 100%;
	}

	.field_txt>.txt>p:last-child {
		padding-bottom: 0;
	}

	.field_txt>h4 {
		padding-bottom: 15px;
	}

	.field_txt>.txt {
		padding-top: 15px;
	}
}

/* ==================================================
	연구개발 - 연구목표
================================================== */




/* ==================================================
	연구개발 - 추진전략
================================================== */

/* ==================================================
	커뮤니티 - 문의하기
================================================== */
.contact_image {
	width: 100%;
	margin-top: 50px;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all .6s cubic-bezier(0.42, 0.0, 0.58, 1.0);
	-webkit-transition: all .6s cubic-bezier(0.42, 0.0, 0.58, 1.0);
}

.contact_image .contact_img_box {
	position: relative;
}

.contact_image.active .contact_img_box:after {
	left: -10px;
	top: -10px;
}

.contact {
	width: 100%;
	margin-top: 30px;
	background: url('../images/community/contact_bg01.jpg') 0 center no-repeat;
}

.contact .txt {
	padding: 5% 3% 5% 46%;
}

.contact h2 {
	font-size: var(--rem-30);
	color: #000;
}

.contact .txt1 {
	width: 100%;
	font-size: var(--rem-19);
	line-height: 32px;
	color: #333;
	padding: 10px 0;
	border-bottom: 1px solid #808080;
}

.contact .txt2 {
	margin: 2% 0;
}

.contact .txt2 li {
	font-size: var(--rem-19);
	color: #333;
	line-height: 48px;
	padding-left: 46px;
}

.contact .txt2 li.tel {
	background: url('../images/community/ic_tel2.png') 0 50% no-repeat;
}

.contact .txt2 li.fax {
	background: url('../images/community/ic_fax2.png') 0 50% no-repeat;
}

.contact .txt2 li.email {
	background: url('../images/community/email_ic.png') 0 50% no-repeat;
}

.contact .txt2 li.email a {
	color: #333;
}

/*** 모바일CSS ***/
@media all and (max-width:1023px) {
	.contact_image .contact_img_box:after {
		display: none;
	}
}

@media screen and (max-width:800px) {
	.contact_image {
		margin-top: 0;
	}

	.contact {
		height: auto;
		background: none;
	}

	.contact .txt {
		padding: 0;
	}

	.contact h2 {
		font-size: var(--rem-30);
		line-height: 20px;
	}

	.contact .txt1 {
		max-width: 100%;
		font-size: var(--rem-19);
		line-height: 22px;
		padding: 8px 0 10px 0;
		background: none;
		border-bottom: 1px solid #aaaaac;
	}

	.contact .txt2 {
		margin: 10px 0;
	}

	.contact .txt2 li {
		font-size: 14px;
		line-height: 38px;
		padding-left: 43px;
	}

	.contact .txt3 {
		font-size: var(--rem-19);
	}
}
