@charset "utf-8";

/* ==================================================
	공통사항
================================================== */
.cont_inner {
	width: 100%;
}

.cont_inner2 {
	width: 100%;
}

.img100 {
	width: 100%;
}

.block {
	display: block;
}

.blue {
	color: var(--brand-color-main);
}

.green {
	color: var(--brand-color-dmain);
}

/* 주석 */
.uc {
	margin-top: var(--rem-13);
	text-align: var(--text-ag-right);
}

.uc a {
	font-size: var(--rem-16);
	color: var(--color-black);
}

.ul_disc li {
	position: relative;
	padding-bottom: 0.7rem;
	padding-left: var(--rem-18);
	line-height: 1.4;
}

/* · 리스트 */
.ul_disc li {
	position: relative;
	padding-bottom: 0.7rem;
	padding-left: var(--rem-18);
	line-height: 1.4;
}

.ul_disc li::after {
	content: '';
	position: absolute;
	top: 11px;
	left: 8px;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background: var(--color-gray5);
}

/* - 리스트 */
.ul_dash li {
	position: relative;
	padding-bottom: 0.7rem;
	padding-left: var(--rem-18);
	line-height: 1.4;
}

.ul_dash li::after {
	content: '-';
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
}

/* 1,2,3 리스트 */
.ol_decimal {
	margin-top: var(--rem-13);
	padding-left: var(--rem-18);
	line-height: 1.4;
}

.ol_decimal li {
	position: relative;
	padding-bottom: 0.7rem;
	list-style: decimal;
}

/* 애니메이션 */
.cont_inner {
	opacity: 0;
	transform: translateY(50px)
}

.cont_inner.active {
	opacity: 1;
	transform: translateY(0);
	transition: all 0.7s 0.8s;
	-webkit-transition: all 0.7s 0.8s;
}


/* ① ② 리스트 */
ol.ol_list {
	list-style-type: none;
	counter-reset: item;
	padding-left: 0;
	margin: 5px 0 ;
}

ol.ol_list>li {
	counter-increment: item;
	padding-left: 2rem;
	padding-bottom: 0.8rem;
	line-height: 1.3;
}

ol.ol_list>li::before {
	content: counter(item);
	display: inline-flex;
	align-items: center;
	justify-content: center;
	font-size: 1.3rem;
	width: 1.5rem;
	height: 1.5rem;
	border-radius: 50%;
	border: 1px solid var(--color-gray5);
	margin-right: 0.5em;
	margin-left: -2rem;
}


.ul_disc ol.ol_list li::after {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	.cont_inner2 {
		margin-top: 3rem;
	}
}

@media screen and (max-width:800px) {
	.block {
		display: inline;
	}
}

/* ==================================================
	타이틀
================================================== */
p.b_tit {
	position: relative;
	font-weight: var(--font-sb);
	font-size: var(--rem-26);
}

p.b_tit::after {
	content: '';
	position: absolute;
	top: 6.5px;
	left: -2rem;
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background: #90B80D;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {
	p.b_tit {
		font-size: var(--rem-22);
	}

	p.b_tit::after {
		top: 4.5px;
		left: -2rem;
		width: 8px;
		height: 8px;
	}
}

/* ==================================================
	테이블
================================================== */
.chart01 {
	margin-top: var(--rem-20);
}

.chart01 table {
	width: 100%;
	border-bottom: 1px solid var(--color-gray2);
	text-align: center;
	margin-bottom: 1rem;
}

.chart01 th {
	color: var(--color-black);
}

.chart01 thead th {
	font-weight: var(--font-bd);
	color: var(--color-white);
	background: var(--gradient-02);
}

.chart01 tbody th {
	font-weight: var(--font-rg);
	background: var(--color-gray1);
}

.chart01 tr th:first-child {
	border-left: 0;
}

.chart01 tr th,
.chart01 tr td {
	line-height: 1.35;
	text-align: var(--text-ag-center);
	padding: 1.2rem 0.6rem;
	border-bottom: solid 1px var(--color-gray2);
	vertical-align: middle;
	border-left: solid 1px var(--color-gray2);
}

.chart01 ul {
	text-align: var(--text-ag-left);
	padding: 0.5rem 1.5rem;
}

.chart01 ol {
	text-align: var(--text-ag-left);
	line-height: 1.35;
}

/* 테이블 사이즈 */
.funds_width1 {
	width: 15%;
}

.funds_width2 {
	width: 20%;
}

.funds_width3 {
	width: 25%;
}

.funds_width4 {
	width: 40%;
}

.chart01 .right {
	text-align: right;
	color: var(--brand-color-main);
	font-size: var(--rem-16);
}

/* 모바일CSS */
@media screen and (max-width: 1023px) {
	.chart01 {
		font-size: var(--rem-16);
	}
}

@media screen and (max-width: 800px) {

	.chart01 tr th,
	.chart01 tr td {
		padding: 1.0rem 0.6rem;
	}

	.chart01 ul {
		padding: 0;
	}
}

/* ==================================================
	반응형 테이블 스크롤
================================================== */
.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;
	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);
}

/* ==================================================
	영상
================================================== */
.movie_con {
	text-align: center;
}

.movie_con video {
	width: 100%;
	max-width: 1400px;
	margin: 0 auto;
	border: 1px solid #d7d7d7;
}

.promovie_con {
	text-align: center;
}

.promovie_con video {
	width: 100%;
	max-width: 1000px;
}

/* ==================================================
	유튜브 영상
================================================== */
.youtubeWrap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 35px;
	height: 0;
	overflow: hidden
}

.youtubeWrap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 1
}

.youtubeWrap .btn_prev,
.youtubeWrap .btn_next {
	display: inline-block;
	position: absolute;
	top: 50%;
	margin-top: -45px;
	z-index: 100;
	background: rgba(0, 0, 0, 0.6);
	color: #fff
}

.youtubeWrap .btn_prev {
	left: 0
}

.youtubeWrap .btn_next {
	right: 0
}

.youtubeWrap .btn_prev>img {
	float: left
}

.youtubeWrap .btn_next>img {
	float: right
}

.youtubeWrap .btn_prev>span,
.youtubeWrap .btn_next>span {
	display: inline-block;
	float: left;
	height: 90px;
	padding: 0 15px;
	margin: 20px 0;
	max-height: 50px;
	max-width: 180px;
	font-size: 16px;
	display: block;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
	text-overflow: ellipsis;
	display: none;
}

.youtubeWrap .btn_prev:hover>span,
.youtubeWrap .btn_prev:focus>span,
.youtubeWrap .btn_next:hover>span,
.youtubeWrap .btn_next:focus>span {
	display: inline-block
}


/* ==================================================
	회사소개 - 인사말
================================================== */
.ceo_greeting:after {
	content: '';
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}

.ceo_greeting .ceotext .img_box {
	text-align: right;
	margin-top: 30px;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all .6s .4s cubic-bezier(.71, .29, .27, .94);
	-webkit-transition: all .6s .4s cubic-bezier(.71, .29, .27, .94);
}

.ceo_greeting .ceotext.active .img_box {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.ceo_greeting .ceoImg {
	float: left;
	width: 38%;
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all .6s cubic-bezier(.71, .29, .27, .94);
	-webkit-transition: all .6s cubic-bezier(.71, .29, .27, .94);
}

.ceo_greeting .ceoImg.active {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.ceo_greeting .ceoImg .img_box {
	position: relative;
}

.ceo_greeting .ceoImg .img_box img {
	max-width: 100%;
	/*	box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);
	-webkit-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);
	-moz-box-shadow: 8px 8px 8px rgba(0, 0, 0, 0.2);*/
}

.ceo_greeting .ceotext {
	float: left;
	width: 60%;
	margin-left: 2%;
	padding-left: 40px;
	position: relative;
	line-height: 1.7;
}

.ceo_greeting .ceotext .ceotxt1 {
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all .6s .4s cubic-bezier(.71, .29, .27, .94);
	-webkit-transition: all .6s .4s cubic-bezier(.71, .29, .27, .94);
}

.ceo_greeting .ceotext .ceotxt2 {
	opacity: 0;
	transform: translateY(20px);
	-webkit-transform: translateY(20px);
	transition: all .6s .8s cubic-bezier(.71, .29, .27, .94);
	-webkit-transition: all .6s .8s cubic-bezier(.71, .29, .27, .94);
}

.ceo_greeting .ceotext.active .ceotxt1 {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.ceo_greeting .ceotext.active .ceotxt2 {
	opacity: 1;
	transform: translateY(0);
	-webkit-transform: translateY(0);
}

.ceo_greeting .ceotext .ceotxt1 {
	font-size: var(--rem-22);
	font-weight: var(--font-sb);
	letter-spacing: -0.3px;
	line-height: 1.4;
}

.ceo_greeting .ceotext .ceotxt1 p {
	font-size: var(--rem-30);
	font-weight: var(--font-rg);
}

.ceo_greeting .ceotext .ceotxt1 span {
	font-size: var(--rem-30);
	font-weight: var(--font-sb);
}

.ceo_greeting .ceotext .pceotxt {
	text-align: justify;
	line-height: 160%;
	margin-top: var(--rem-30);
	word-break: keep-all;
}

.ceo_greeting .ceotext p.sign {
	position: relative;
	margin-top: var(--rem-30);
	text-align: right;
	font-weight: var(--font-md);
	color: #333;
	font-size: var(--rem-20);
	line-height: 1;
}

.ceo_greeting .ceotext p.sign .day {
	position: absolute;
	bottom: 1px;
	left: 0;
	font-weight: var(--font-rg);
	font-size: var(--rem-18);
}

.ceo_greeting .ceotext p.sign img {
	vertical-align: bottom;
	font-size: 2.3rem;
	font-weight: 600;
	margin-left: 6px;
}

/* 모바일CSS */
@media screen and (max-width:800px) {
	.ceo_greeting .ceoImg {
		float: none;
		width: 100%;
	}

	.ceo_greeting .ceotext {
		float: none;
		width: 100%;
		margin-left: 0;
		padding-left: 0;
		margin-top: 30px;
	}

	.ceo_greeting .ceotext .ceotxt1 {
		font-size: 2rem;
	}

	.ceo_greeting .ceotext .pceotxt {
		font-size: 1.6rem;
	}
}

@media screen and (max-width:450px) {
	.ceo_greeting .ceotext .ceotxt1 {
		font-size: 1.9rem;
	}

	.ceo_greeting .ceotext p.sign {
		font-size: 1.6rem;
	}

	.ceo_greeting .ceotext p.sign img {
		width: 7rem;
	}
}



/* ==================================================
	농협소개 - 연혁
================================================== */
.history .box {
	position: relative;
	padding-left: 670px
}

.history .box .dep1 {
	position: relative;
	line-height: 1.5;
}

.history .box .dep1>dt {
	position: absolute;
	left: -670px;
	width: 670px;
	padding-right: 7rem;
	text-align: right;
	font-size: var(--rem-50);
	font-weight: var(--font-bd);
	color: var(--brand-color-main);
	transition: color .3s;
}

.history .box .dep1>dt .hisimg {
	position: relative;
}

.history .box .dep1>dt .hisimg>li {
	margin-top: var(--rem-20);
	transform: translateX(-15px);
	transition: .8s;
	opacity: 0
}

.active .history .box .dep1>dt .hisimg>li {
	transform: translateX(0px);
	opacity: 1;
}

.active .history .box .dep1>dt .hisimg>li:nth-child(1) {
	transition-delay: .3s;
}

.active .history .box .dep1>dt .hisimg>li:nth-child(2) {
	transition-delay: .4s;
}

.history .box .dep1>dt .hisimg>li img {
	display: block;
	width: 100%;
	border-radius: var(--rem-15);
}

.history .box .dep1>dd {
	position: relative;
}

.history .box .dep1>dd:first-of-type {
	padding-top: 8rem;
}

.history .box .dep1>dd:first-of-type .dep2 {
	padding-top: 12px;
}

.history .box .dep1>dd:first-of-type .dep2 dt {
	top: 5px;
}

.history .box .dep1>dd:last-of-type .dep2 {
	padding-bottom: 0;
	border-bottom: 0
}

.history .box .dep1>dd .dep2 {
	position: relative;
	padding: 24px 0 30px 11.5rem;
	border-bottom: 1px dashed var(--color-gray2);
}

.history .box .dep1>dd .dep2 dt {
	position: absolute;
	left: 0;
	top: 15px;
	font-weight: var(--font-sb);
	font-size: var(--rem-26);
	color: var(--brand-color-sub);
}

.history .box .dep1>dd .dep2 dd~dd {
	margin-top: 12px
}

.history .box .dep1>dd .dep2 dd {
	display: flex;
}

.history .box .dep1>dd .dep2 dd em {
	flex-basis: 8rem;
	font-weight: var(--font-sb);
	font-style: normal;
	vertical-align: top
}

.history .box .dep1>dd .dep2 dd span {
	flex-basis: calc(100% - 8rem);
}

/* 모바일CSS */
@media screen and (max-width:1100px) {

	.history .box {
		padding-left: 0
	}

	.history .box .dep1>dt {
		position: relative;
		left: 0;
		width: auto;
		padding-left: 5rem;
		margin-top: 3rem;
		font-size: var(--rem-40);
		text-align: left;
	}

	.history .box .dep1>dt:nth-child(1) {
		top: -5px;
		margin-top: 0
	}

	.history .box .dep1>dd {
		padding-left: 5rem;
	}

	.history .box .dep1>dd:first-of-type {
		padding-top: var(--rem-30);
	}

	.history .box .dep1>dd .dep2 {
		padding: var(--rem-30) 0;
	}

	.history .box .dep1>dd .dep2 dt {
		position: relative;
		top: 0;
		font-size: var(--rem-24);
		line-height: 1.2;
	}

	.history .box .dep1>dd:first-of-type .dep2 dt {
		top: 0;
	}

	.history .box .dep1>dd .dep2 dd {
		margin-top: 1.0rem;
	}

	.history .box .dep1>dd .dep2 dd~dd {
		margin-top: 0.6rem;
	}
}

@media screen and (max-width:800px) {
	.history .box .dep1>dt {
		padding-left: 30px;
		font-size: 3.4rem;
	}

	.history .box .dep1>dd {
		padding-left: 30px;
	}

	.history .box .dep1>dt:nth-child(1) {
		padding: 0 3rem;
	}

	.history .box .dep1>dd:first-of-type {
		padding-top: var(--rem-20);
	}
}

@media screen and (max-width:480px) {
	.history .box .dep1>dt {
		padding-left: 30px;
	}

	.history .box .dep1>dt:nth-child(1) {
		padding: 0;
	}

	.history .box .dep1>dt {
		padding-left: 2.4rem;
		font-size: 3rem;
	}

	.history .box .dep1>dd {
		padding-left: 0;
	}
}

/* ==================================================
	농협소개 - 오시는길
================================================== */
.location {
	margin-bottom: 3rem;
}

.location .tit {
	font-weight: var(--font-sb);
	font-size: 3.5rem;
}

.location .lo_box {
	display: flex;
	margin-top: var(--rem-13);
	gap: var(--rem-50);
}

.location .lo_box p {
	position: relative;
}

.location .lo_box p::after {
	content: '';
	position: absolute;
	top: 0;
	left: calc(100% + 2.5rem);
	width: 1px;
	height: 1.8rem;
	background: var(--color-gray2);
}

.location .lo_box p:last-child:after {
	display: none;
}

.cont_inner>.map+.location {
	margin-top: var(--rem-60)
}


/* 지도 */
.cont_inner>.map {
	height: 500px;
	border: solid 1px var(--color-gray2);
	border-radius: var(--rem-20);
	overflow: hidden;
}

.cont_inner>.map .root_daum_roughmap_landing {
	overflow: visible;
}

.wrap_controllers {
	display: none;
}

.root_daum_roughmap_landing .map_border {
	display: none;
}

.root_daum_roughmap {
	width: 100% !important;
}

/* 모바일CSS */
@media screen and (max-width:1023px) {

	.location .tit {
		font-size: 3rem;
	}

	.location .lo_box {
		gap: var(--rem-40);
	}

	.location .lo_box p::after {
		left: calc(100% + 1rem);
		height: 1.7rem;
	}

	/* 지도 */
	.cont_inner>.map {
		height: 340px;
	}

}

@media screen and (max-width:800px) {

	.location .tit {
		font-size: 2.6rem;
	}

	.location .lo_box {
		margin-top: 2rem;
		flex-direction: column;
		gap: 1rem;
	}

	.cont_inner>.map+.location {
		margin-top: var(--rem-50);
	}

	/* 지도 */
	.cont_inner>.map {
		width: 100%;
		height: 260px;
	}

	.root_daum_roughmap {
		height: 260px !important;
	}
}

/* ==================================================
	금융상품
================================================== */
/* 주의 사항 */
.check {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: var(--rem-25);
	margin-bottom: var(--rem-50);
}

.check .mark {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 8rem;
	height: 8rem;
	font-weight: 900;
	font-size: var(--rem-50);
	color: #E53535;
	border: solid 1px #E53535;
	border-radius: 50%;
}

.check .text {
	max-width: 64rem;
	width: 100%;
	line-height: 1.4;
	font-size: var(--rem-20);
}

.check .r_point {
	font-weight: var(--font-sb);
	color: #E53535;
}

/* 궁금 사항 */
.curiosity_check .check {
	margin-bottom: var(--rem-14);
}

.curiosity_check .check .text {
	width: unset;
	font-weight: var(--font-bd);
	font-size: var(--rem-50);
}

.curiosity_check .check .mark {
	width: var(--rem-60);
	height: var(--rem-60);
	font-weight: 900;
	font-size: var(--rem-50);
	color: var(--color-white);
	background: #FFC20C;
	border: solid 1px #FFC20C;
}

.curiosity_check p {
	margin-bottom: var(--rem-50);
	text-align: var(--text-ag-center);
}


/* 상품 리스트 */
.pro_list {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	gap: var(--rem-20);
}

.pro_list .pro_box a {
	display: flex;
	height: 100%;
	padding: 3rem 6rem 3rem 2rem;
	border: solid 1px var(--color-gray2);
	border-radius: var(--rem-15)
}

.pro_box .number {
	width: 70px;
}

.pro_box .number p {
	width: var(--rem-50);
	height: var(--rem-50);
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: var(--font-sb);
	font-size: var(--rem-15);
	color: var(--color-white);
	background: var(--brand-color-main);
	border-radius: 50%;
}

.pro_box .pro_t {
	width: calc(100% - 70px);
}

.pro_box .pro_t .pro_title {
	font-weight: var(--font-sb);
	font-size: var(--rem-26);
}

.pro_box .pro_t .pro_text {
	padding-top: var(--rem-15);
	line-height: 1.4;
}

.pro_box .pro_t .category {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 4rem;
	padding-top: var(--rem-20);
	font-size: var(--rem-15);
}

.pro_box .pro_t .category li {
	position: relative;
	display: inline-block;
	line-height: 1.4;
}

.pro_box .pro_t .category li:after {
	content: "";
	display: block;
	position: absolute;
	top: 8%;
	right: -2rem;
	width: 1px;
	height: 80%;
	background: var(--color-gray2);
}

.pro_box .pro_t .category li:last-child:after {
	display: none;
}

/* 모바일CSS */
@media screen and (max-width: 900px) {

	/* 궁금 사항 */
	.curiosity_check .check .text {
		font-size: var(--rem-40);
	}

	.curiosity_check .check .mark {
		width: var(--rem-50);
		height: var(--rem-50);
		font-size: var(--rem-40);
	}
}

@media screen and (max-width: 800px) {

	/* 주의 사항 */
	.check {
		flex-wrap: wrap;
		gap: var(--rem-18);
		margin-bottom: var(--rem-50);
	}

	.check .mark {
		width: 6rem;
		height: 6rem;
		font-size: var(--rem-40);
	}

	.check .text {
		max-width: 53rem;
		font-size: var(--rem-18);
	}

	/* 상품 리스트 */
	.pro_list {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		gap: var(--rem-16);
	}

	.pro_list .pro_box a {
		padding: 3rem 4rem 3rem 2.4rem;
	}

	.pro_box .number {
		width: var(--rem-60);
	}

	.pro_box .number p {
		width: 4.2rem;
		height: 4.2rem;
	}

	.pro_box .pro_t {
		width: calc(100% - 6rem);
	}
}

@media screen and (max-width: 640px) {

	/* 궁금 사항 */
	.curiosity_check .check .text {
		font-size: var(--rem-30);
	}

	.curiosity_check .check .mark {
		width: var(--rem-40);
		height: var(--rem-40);
		font-size: var(--rem-30);
	}
}

@media screen and (max-width: 450px) {

	/* 주의 사항 */
	.check {
		gap: 1rem;
		margin-bottom: var(--rem-40);
	}

	.check .mark {
		width: 5rem;
		height: 5rem;
		font-size: var(--rem-30);
	}

	.check .text {
		font-size: var(--rem-16);
	}

	/* 궁금 사항 */
	.curiosity_check .check {
		flex-wrap: nowrap;
	}

	.curiosity_check .check .text {
		font-size: var(--rem-22);
	}

	.curiosity_check .check .mark {
		width: var(--rem-30);
		height: var(--rem-30);
		font-size: var(--rem-22);
	}

	/* 상품 리스트 */
	.pro_list .pro_box a {
		position: relative;
		display: block;
		padding: 3rem 2.5rem 2.2rem;
	}

	.pro_box .number {
		position: absolute;
		top: 2rem;
		left: 2rem;
		width: var(--rem-60);
	}

    .pro_box .pro_t {
        width: 100%;
    }

	.pro_box .pro_t .pro_title {
		font-size: var(--rem-22);
		padding-left: 4.5rem;
	}

	.pro_box .pro_t .pro_text {
		padding-top: var(--rem-20);
	}

	.pro_box .pro_t .category li::after {
		display: none;
	}

	.pro_box .pro_t .category li:first-child:after {
		display: block;
	}
	
}


/* ==================================================
	금융상품 - 상세페이지
================================================== */
.viewCon .category {
    padding: 14px 24px;
    background: #f2f2f2;
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	gap: 0.5rem 4rem;
	margin-top: var(--rem-20);
	font-size: var(--rem-15);
}

.viewCon .category li {
	position: relative;
	display: inline-block;
	line-height: 1.4;
}

.viewCon .category li:after {
	content: "";
	display: block;
	position: absolute;
	top: 8%;
	right: -2rem;
	width: 1px;
	height: 80%;
	background: var(--color-gray2);
}
.viewCon .category li:last-child:after {display: none;}

.editContentView{}
.editContentView div{line-height: 26px}
.editContentView table{ border-top:2px solid #7d7d7d !important;width: 100%;margin:10px 0;}
.editContentView table td{vertical-align: middle; padding: 6px;text-align: center;border-bottom:1px solid #ddd}
.editContentView table td + td{border-left:1px solid #ddd}
.editContentView table th+ th{border-left:1px solid #ddd}
.editContentView table th{text-align: center;background-color: #f3f3f3;padding: 6px;border-bottom:1px solid #ddd}

.editContentView ul{margin-bottom: 16px}
.editContentView ul li{line-height: 26px;padding-left:12px}
.editContentView p{line-height: 26px;}
.editContentView .objHeading_h3{font-size: var(--rem-20);/*color:#3561AB;*/padding-left:var(--rem-18);position:relative;margin: 3.8rem 0 1.2rem 0;font-weight:var(--font-sb);line-height: 1;}
.editContentView .objHeading_h3:after{content:'';position:absolute;width:8px;height:8px;background-color:var(--brand-color-main);top:0.5rem;left: 4px;}
.editContentView h6{font-size: 14px;color:var(--brand-color-main);padding-left:20px;position:relative;margin-bottom: 8px;}
.editContentView h6:after{content:'';position:absolute;width:12px;height:12px;background-color: var(--brand-color-main);top:4px;left: 0;}

.finance-title-04{padding: 15px 0 6px 0;font-size: 17px;line-height: .9;color: #000000; letter-spacing: -1px;font-weight: var(--font-sb);}

/* 모바일CSS */
@media screen and (max-width: 640px) {
	.view .viewCon {
		padding: 3rem 1rem !important;
	}

	.editContentView .objHeading_h3:after {
		width: 6px;		height: 6px;
		top: 0.5rem;		left: 1px;
	}

	.editContentView .con-table-wrap{
		overflow: auto;
	}
	.editContentView .con-table-wrap table{
		min-width: 800px;
	}
}




/* ==================================================
	금융상품 - 보험상품
================================================== */
.insurance {
	max-width: 880px;
	margin: 0 auto;
}

.insurance .insurance_link {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	gap: var(--rem-20);
}

.insurance .insurance_link div {
	padding: 10px;
	border-radius: 15px;
}

.insurance .insurance_link div.blue {
	padding: 10px;
	border-radius: 15px;
}

.insurance .insurance_link div.bg_blue {
	background-color: var(--brand-color-main);
}

.insurance .insurance_link div.bg_green {
	background-color: var(--brand-color-dmain);
}

.insurance .insurance_link a {
	display: flex;
	flex-direction: column;
	align-items: center;
	gap: 2rem;
	height: 100%;
	padding: 5rem 4rem 3rem;
	color: var(--color-white);
	border: solid 1px var(--color-white);
	border-radius: 10px;
}

.insurance .insurance_link div img.logo {
	max-width: 80%;
}

.insurance .insurance_link div p {
	width: 205px;
	text-align: center;
	line-height: 1.4;
}

.insurance .insurance_link div p+p {
	margin-top: var(--rem-13);
}

.finance .tbox {
	margin-top: var(--rem-60);
	padding-left: var(--rem-20);
}

.finance .tbox_con {
	margin-top: var(--rem-20);
	padding: 3rem 4rem;
	line-height: 1.4;
	background: var(--color-gray1);
	border: solid 1px var(--color-gray2);
	border-radius: 15px;
}

.finance .tbox_con p+p {
	padding-top: var(--rem-20);
}

.finance .tbox_con .tit {
	font-weight: var(--font-md);
	font-size: var(--rem-20);
}

.download {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: var(--rem-20);
	padding-top: var(--rem-20);
	font-size: var(--rem-16);
}

.download a {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: var(--rem-15);
	padding: 1.3rem 2rem;
	border: solid 1px var(--color-gray2);
	border-radius: 20px;
}

/* 모바일CSS */
@media screen and (max-width: 900px) {
	.insurance .insurance_link a {
		padding: 4rem 3rem 2rem;
		gap: 1.5rem;
	}

	.insurance .insurance_link div img.logo {
		height: var(--rem-30);
	}
}

@media screen and (max-width: 640px) {

	.insurance .insurance_link {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
	}

	.download {
		flex-direction: column;
	}
}

/* ==================================================
	금융상품 - 농협카드
================================================== */
.nh_card {
	max-width: 770px;
	margin: 0 auto;
}

.finance.nh_card .tbox {
	margin-top: 0;
	padding-left: var(--rem-20);
}

.nh_card .curiosity_check {
	margin-top: var(--rem-60);
}

.nh_card .curiosity_check .check {
	justify-content: flex-start;
}

.nh_card .curiosity_check p {
	text-align: var(--text-ag-left);
}

.nh_card_link {
	position: relative;
	padding-bottom: 20rem;
}

.nh_card_link .logo {
	position: relative;
	width: 34rem;
}

.nh_card_link a {
	display: block;
	max-width: 220px;
	margin-top: var(--rem-26);
	margin-left: 5rem;
	padding: 1rem 1.5rem;
	text-align: center;
	line-height: 1.4;
	color: var(--color-white);
	border-radius: 3rem;
	background: #90B80D;
}

.nh_card_link .bg {
	position: absolute;
	top: 0;
	right: 0;
	width: 70%;
	height: 100%;
	background: url('../images/finance/card_pic.jpg') bottom right no-repeat;
	background-size: contain;
	z-index: -1;
}

/* 모바일CSS */
@media screen and (max-width: 640px) {

	.nh_card .curiosity_check {
		margin-top: var(--rem-50);
	}

	.nh_card_link {
		padding-bottom: 14rem;
	}

	.nh_card_link .logo {
		width: 28rem;
	}

	.nh_card_link a {
		max-width: 22rem;
		margin-left: 5rem;
	}
}

@media screen and (max-width: 450px) {

	.nh_card .curiosity_check {
		margin-top: var(--rem-50);
	}

	.nh_card_link {
		padding-bottom: 14rem;
	}

	.nh_card_link .logo {
		max-width: 24rem;
		width: 70%;
	}

	.nh_card_link a {
		max-width: 21rem;
		margin-left: 3rem;
	}

}

/* ==================================================
	금융상품 - 농업자금
================================================== */
.funds .menutit {
	padding-bottom: 4.5rem;
	font-weight: var(--font-bd);
	font-size: 3.5rem;
	color: var(--brand-color-main);
}

.funds .tbox_con {
	padding-left: var(--rem-22);
}

.funds .tbox_con+.tbox_con {
	margin-top: 6rem;
}

.funds .tbox_con p.b_tit {
	font-size: var(--rem-24);
}

.funds .tbox_con p.b_tit::after {
	top: 5px;
}

.funds .tbox_con p:not(.b_tit) {
	margin-top: var(--rem-13);
	line-height: 1.4;
}

.funds .tbox_con ul,
.funds .tbox_con ol  {
	margin-top: var(--rem-13);
}

/*당구장표시 p*/
.alert{
	font-weight: bold;
	color: var(--brand-color-dmain);
	font-size: 80%;
	margin-top: 0 !important;
}

/* 심사절차 */
.fund_order {
	display: flex;
	flex-direction: column;
	gap: 4rem;
}

.fund_order>li {
	display: grid;
	grid-template-columns: 30% 70%;
	position: relative;
}

.fund_order>li::after {
	display: block;
	position: absolute;
	content: '\25BC';
	color: var(--brand-color-sub);
	font-size: 2rem;
	bottom: -3rem;
	left: calc(50% - 2rem);
}

.fund_order>li:last-child::after {
	display: none;
}

.fund_order>li>div {
	display: flex;
	text-align: center;
	justify-content: center;
	align-items: center;
	background: var(--color-gray1);
	border: 1px solid var(--color-gray2);
	border-radius: 5px 0 0 5px;
	-moz-border-radius: 5px 0 0 5px;
}

.fund_order>li>ul {
	display: flex;
	flex-direction: column;
	border: 1px solid var(--color-gray2);
	border-left: 0;
	border-radius: 0 5px 5px 0;
	-moz-border-radius: 0 5px 5px 0;
	padding: 20px;
}

.funds .tbox_con .fund_order ul {
	margin-top: 0;
}

@media screen and (max-width: 450px) {

	.fund_order>li {
		display: flex;
		flex-direction: column;
	}

	.fund_order>li>div {
		border-radius: 5px 5px 0 0;
		-moz-border-radius: 5px 5px 0 0;
		padding: 20px;
	}

	.fund_order>li>ul {
		border-radius: 0 0 5px 5px;
		-moz-border-radius: 0 0 5px 5px;
		border-left: 1px solid var(--color-gray2);
		border-top: 0;
	}
}



/* ==================================================
	경제사업안내 - 공통
================================================== */
.business img {
	border-radius: var(--rem-25);
}

.business .bus_top {
	margin-top: var(--rem-50);
	text-align: var(--text-ag-center);
}

.business .bus_top p {
	font-size: var(--rem-24);
}

.business .bus_top p.b {
	font-size: var(--rem-40);
	font-weight: var(--font-md);
	line-height: 2;
	border-bottom: solid 1px #7D7D7D;
	display: inline-block;
}

.business .bus_top p.b span {
	font-weight: var(--font-bd);
}

.business .tbox {
	position: relative;
	margin-top: var(--rem-60);
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	gap: 10rem;
}

.business .tbox::after {
	content: '';
	width: 1px;
	height: 100%;
	position: absolute;
	top: 0;
	left: 49%;
	border-left: 1px dashed #b1b1b1;
}

.business .tbox .tbox_con {
	padding-left: var(--rem-22);
}

.business .tbox .tbox_con+.tbox_con {
	margin-top: var(--rem-50);
}

.business .tbox p.b_txt {
	margin-top: var(--rem-25);
	font-weight: var(--font-sb);
}

.business .tbox ul {
	margin-top: var(--rem-13);
}

/* 모바일CSS */
@media screen and (max-width: 1023px) {

	.business .bus_top p {
		font-size: var(--rem-20);
	}

	.business .bus_top p.b {
		font-size: var(--rem-30);
	}

	.business .tbox {
		margin-top: var(--rem-40);
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		gap: var(--rem-40);
	}

	.business .tbox::after {
		display: none;
	}

	.business .tbox p.b_txt {
		margin-top: var(--rem-20);
	}
}

@media screen and (max-width: 450px) {
	.business .bus_top {
		margin-top: var(--rem-40);
	}

	.business .bus_top p.b {
		font-size: var(--rem-25);
	}
}

/* ==================================================
	특산물소개 - 공통
================================================== */
.specialty {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [2];
	grid-template-columns: repeat(2, 1fr);
	line-height: 1.5;
}

.spcl_pic {
	display: flex;
	position: relative;
	padding-right: 7rem;
}

.spcl_pic img {
	border-radius: 20px;
}

.spcl_pic .pro {
	position: absolute;
	top: var(--rem-40);
	left: 30%;
	width: 50%;
}

.spcl_tbox img {
	display: block;
	margin-top: var(--rem-50);
	margin-bottom: var(--rem-30);
}

.spcl_tbox .pc {
	display: block;
	width: 80%;
}

.spcl_tbox .mo {
	display: none;
}

.spcl_tbox p+p {
	margin-top: var(--rem-30);
}

.spcl_tbox p+ul {
	margin-top: var(--rem-50);
}

/* 모바일CSS */
@media screen and (max-width: 1023px) {
	.specialty {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		gap: var(--rem-20);
	}

	.spcl_pic {
		max-width: 86rem;
		padding-right: 0;
	}

	.spcl_pic .pro {
		top: var(--rem-40);
		left: 42%;
		width: 45%;
		max-width: 409px;
	}

	.spcl_tbox img {
		margin-top: var(--rem-40);
		margin-bottom: var(--rem-20);
	}

	.spcl_tbox .pc {
		display: none;
	}

	.spcl_tbox .mo {
		display: block;
		width: 80%;
		max-width: 353px;
	}
}

@media screen and (max-width: 450px) {
	.spcl_tbox img {
		margin-top: var(--rem-30);
		margin-bottom: var(--rem-16);
	}
}

/* ==================================================
	우리고장 볼거리 - 공통
================================================== */
.plc_top_pic {
	width: 100%;
	display: -ms-grid;
	display: grid;
	-ms-grid-columns: (1fr) [3];
	grid-template-columns: repeat(3, 1fr);
	gap: 1rem;
}

.plc_top_pic img {
	display: block;
	width: 100%;
}

.plc_con {
	margin-top: var(--rem-30);
	line-height: 1.5;
}

.plc_con .plc_tit {
	font-weight: var(--font-bd);
	font-size: 3.5rem;
}

.plc_con .plc_col {
	width: 100%;
	display: flex;
	/*gap: 8rem;*/
}

.plc_con .plc_col .ul_disc {
	margin-top: var(--rem-30);
	/*	flex-basis: calc(100% - 8rem);*/
	width: 440px;
}

.plc_con .plc_tbox {
	margin-top: var(--rem-30);
}

.plc_con .plc_tbox p+p {
	margin-top: var(--rem-30);
}

.plc_con .plc_col .plc_tbox {
	width: calc(100% - 440px);
}

/* 모바일CSS */
@media screen and (max-width: 1023px) {

	.plc_con .plc_col {
		margin-top: var(--rem-20);
		gap: 2rem;
		flex-direction: column;
	}

	.plc_con .plc_tit {
		font-size: var(--rem-30);
	}

	.plc_con .plc_col {
		gap: 2rem;
		flex-direction: column;
	}

	.plc_con .plc_col .ul_disc {
		flex-basis: unset;
		width: 100%;
	}

	.plc_con .plc_tbox {
		margin-top: var(--rem-20);
		width: 100% !important;
	}

	.plc_con .plc_tbox p+p {
		margin-top: var(--rem-20);
	}
}

@media screen and (max-width: 450px) {

	.plc_top_pic {
		-ms-grid-columns: (1fr) [1];
		grid-template-columns: repeat(1, 1fr);
		gap: 5px;
	}
}


/* ==================================================
	개인정보처리방침 & 이메일무단수집거부
================================================== */
.util_box {
	padding: var(--rem-30);
	border: 1px solid #dcdcdc;
	border-top-color: var(--brand-color-main);
	background: #fff;
	font-size: 1.7rem;
	line-height: 1.5;
}

.util_box ul,
.util_box ol {
	padding-left: var(--rem-13);
}

.terms_txt p {
	margin-bottom: 16px;
}

.util_box .list-tit {
	font-size: var(--rem-22);
	margin: 4rem 0 1rem;
}

.util_box .list-tit:first-child {
	margin: 0 0 10px;
}

h5.t_tit {
	margin: 15px 0 6px;
}

.list-etc li {
	margin-bottom: 10px;
}

.list-etc2>li {
	margin-bottom: 25px;
}

.list-etc.num li {
	position: relative;
	padding-left: 25px;
}

.list-etc.num li i {
	position: absolute;
	left: 0;
	top: 3px;
}

.list-etc.num li li {
	padding-left: 0;
}

.width_line_list li {
	padding-left: 12px !important;
}

/* 모바일CSS */
@media all and (max-width:640px) {
	.util_box {
		padding: 20px;
		font-size: 1.7rem;
	}
}

/* ==================================================
	PDF
================================================== */
.pdf_con {
	position: relative;
	width: 100%;
	max-width: 1400px;
	height: 0;
	padding-bottom: 72%;
	padding-bottom: 70vh;
	margin: 0 auto;
}

.pdf_iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}

.pdf_con .pdf_input{ 
	display: inline-block;
	margin-top: 1.5rem;
}

.pdf_con #pdfSelect{
    display: inline-block;
    float: left;
    margin: 0;
    width: 20rem;
    padding: 5px 5px;
    border: 1px solid var(--color-gray2);
    font-size: var(--rem-17);
    font-family: var(--font-Pretendard);
    color: var(--color-gray4);
    outline: none;
    /* -webkit-appearance: none; */
}

.pdf_con #goButton{
    display: inline-block;
    float: left;
    width: 6rem;
    padding: 5px 5px;
    font-size: var(--rem-18);
/*    border-radius: 5px;*/
    color: var(--color-white);
    background: var(--brand-color-main);
    border: 1px solid var(--brand-color-main);
}

/* 모바일CSS */
@media all and (max-width:1100px) {
	.pdf_con {
		padding-bottom: 92%;
	}
}