/* 공통 */
.sec-heading {
	position: relative;
	max-width: 1200px;
	margin:0 auto;	
}
.sec-heading__title {
	font-size:36px;
	font-weight:400;
}
.sec-heading__title b {
	font-weight: 800;
}
.sec-heading__text {
	font-size: 20px;
	color:#444;
}

.sec-heading__btn {
  	width:auto;
}
.sec-heading__btn a {
	position: relative;
	font-size: 18px;
	font-weight:500;
	display:flex;
	align-items: center;
}
.sec-heading__btn a .text {
	line-height:1;
	padding:10 0;
	transition:all .3s ease;
}
.sec-heading__btn a .ico {
	width:8px;
	height:12px;
	margin-left:15px;
	display:flex;
	align-items:center;
	justify-content:center;
	transition:all .3s ease;
}
.sec-heading__btn a:hover .text {
	color:var(--main-color);
}
.sec-heading__btn a:hover .ico {
	color:var(--main-color);
}
.sec-heading__btn a:hover .ico img {
  animation: blink 0.5s ease;
}
/* 밑줄 효과 추가 */
.sec-heading__btn a::after {
	content: '';
	position: absolute;
	bottom: -5px;
	left: 0;
	width: 100%;
	height: 2px;
	background-color: var(--main-color);
	transform: scaleX(0);
	transform-origin: left;
	transition: transform .3s ease;
}
.sec-heading__btn a:hover .text {
	color: var(--main-color);
}
.sec-heading__btn a:hover .ico {
	color: var(--main-color);
	margin-left: 25px; 
}
.sec-heading__btn a:hover .ico img {
	animation: blink 0.5s ease;
}
.sec-heading__btn a:hover::after {
	transform: scaleX(1);
}

@media screen and (max-width:768px) {
	.sec-heading__title {
		font-size: 36px;
	}
	.sec-heading__text {
		font-size: 18px;
	}  
  .sec-heading__btn a {
    font-size: 16px;
  }
  .sec-heading__btn a .text {
    height:40px;
    line-height: 40px;
  }
}



/* ========== 메인 배너 ========== */
.main-sec--banner {
	position: relative;
	min-width: 1200px;
	width: 100%;
	height: 320px;
	overflow: hidden;
}
.main-sec--banner .background {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-size: cover;
	background-position: center;
	z-index: 1;
	background-repeat: no-repeat;
}
.main-sec--banner .background::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.2);
	z-index: 2;
}
.main-sec--banner .context {
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 3;
	color: #fff;
	width: 100%;
	max-width: 1200px;
	padding: 0 20px;
}
.main-sec--banner .context p {
	overflow: hidden;
	text-transform: uppercase;
	margin-bottom:10px;
}
.main-sec--banner .context p span {
	font-weight: normal;
	display: inline-block;
	width: 100%;
	transform: translateY(100%);
	opacity: 0;
	transition: transform 0.9s ease, opacity 0.9s ease;
}
.main-sec--banner .context .title-top span {	
	font-size: 22px;
	text-align: center;
	animation: slideUp 0.9s ease 0.3s forwards;
}
.main-sec--banner .context .title-bt span {
	font-size: 40px;	
	font-weight: bold;
	text-align: center;
	animation: slideUp 0.9s ease 0.6s forwards;
}

@keyframes slideUp {
	from {
		transform: translateY(100%);
		opacity: 0;
	}
	to {
		transform: translateY(0);
		opacity: 1;
	}
}
.banner-bg {
	background-image: url('../img/main/main_visual.jpg');
}


@media screen and (max-width: 768px) {
	.main-sec--banner {
		min-width: 100%;
		height: 50vh;
		margin-top: 70px;
	}
	.main-sec--banner .context {
		padding: 0 20px;
	}
	.main-sec--banner .context .title-top span {
		font-size: 22px;
	}
	.main-sec--banner .context .title-bt span {
		font-size: 30px;
	}
}



/* 적립하고! */
.main-sec--save {
	padding: 60px 0;
	background-image: url(../img/main/save_bg.jpg);
	background-size:cover;
}
.main-sec--save .sec-heading {
	display: flex;
	justify-content: space-between;
	align-items: center;	
	margin-bottom:30px;
}
.main-sec--save .sec-heading h2 {
	text-transform: uppercase;
}
.logo-slider-container {
	max-width: 1200px;
	margin: 0 auto;
}
.swiper-logo {
	padding: 0;
	position: relative;
}
.logo-slide-grid {
	display: grid;
	grid-template-columns: repeat(5, 1fr);
	grid-template-rows: repeat(2, 1fr);
	gap: 24px;
	padding: 0 0 30px 0;
}
.logo-card {
	display: flex;
	align-items: center;
	justify-content: center;
	border: 1px solid #e2e2e2;
	border-radius: 10px;
	background-color: #fff;
	transition: all 0.3s ease;
	cursor: pointer;
	padding:10px 0;
	width: 210px;
	height: 80px;
}
.logo-card a {
	width: 100%;
	height: 100%;
	display: flex;
	align-items: center;
	justify-content: center;
}
.logo-card img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.logo-card:hover {
	border-color: var(--main-color);
}
.swiper-logo .swiper-pagination {
	position: relative;
	bottom: 0;
	display: flex;
	justify-content: center;
}

.swiper-logo .swiper-pagination-bullet {
	width: 10px !important;
	height: 10px !important;
	background-color: #DAE0E5 !important;
	opacity: 1 !important;
	margin: 0 6px !important;
}
.swiper-logo .swiper-pagination-bullet-active {
	width:40px !important;
	height: 10px;
	border-radius: 20px;
	background-color: var(--main-color) !important;
}
@media screen and (max-width: 768px) {
	.main-sec--save {
		padding: 40px 0;
	}
	.logo-slider-container {
		max-width: 100%;
	}

	.logo-slide-grid {
		grid-template-columns: repeat(3, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 16px;
	}

	.logo-card {
		width: 100%;
		height: 55px;
	}
}

@media screen and (max-width: 576px) {
	.logo-slider-container {
		max-width: 100%;
	}
	.logo-slide-grid {
		grid-template-columns: repeat(2, 1fr);
		grid-template-rows: repeat(2, 1fr);
		gap: 12px;
	}
}


.main-sec--use .sec-heading {
	margin-bottom:30px;
}
.main-sec--use .sec-area {
    width: 100%;
}

.main-sec--use .use-bn {
    height: 300px;	
	min-width: 1200px;
	background-size: contain;
    display: flex;
    align-items: center;
    overflow: hidden;
}
.main-sec--use .use-bn1 {
    background: url('../img/main/img-use1.jpg') center center no-repeat;
}
.main-sec--use .use-bn2 {
    background: url('../img/main/img-use2.jpg') center center no-repeat;
}
.main-sec--use .use-bn3 {
    background: url('../img/main/img-use3.jpg') center center no-repeat;
}
.main-sec--use .use-bn4 {
    background: url('../img/main/img-use4.jpg') center center no-repeat;
}
.main-sec--use .use-bn5 {
    background: url('../img/main/img-use5.jpg') center center no-repeat;
}
.main-sec--use .use-bn > div {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}
.main-sec--use .use-bn .right {
    justify-content: center;
}
.main-sec--use .use-bn .right .context {
    transform: translateX(50%);
	padding-left: 120px;
    text-align: left;
}
.main-sec--use .use-bn .left {
    justify-content: start;
}
.main-sec--use .use-bn .left .context {
    text-align: left;
}

.main-sec--use .context {
    color: #333;
    text-align: left;
}
.main-sec--use .context h3 {
    font-size: 28px;
    font-weight: 800;
    margin: 0 0 10px 0;
    line-height: 1.4;
}
.main-sec--use .context p {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.4;
    margin: 0 0 30px 0;
    color: #444;
}
.main-sec--use .context a {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}
.main-sec--use .context a .text {
    font-size: 16px;
    font-weight: 600;
    color: #444;
    transition: color 0.3s ease;
}
.main-sec--use .context a .ico {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
}
.main-sec--use .context a .ico img {
    width: 20px;
    height: 20px;
    display: block;
}
.main-sec--use .context a:hover .text {
    color: var(--main-color);
}
.main-sec--use .context a:hover .ico {
    transform: translateX(4px);
}
.main-sec--use .use-bn5 .context h3, 
.main-sec--use .use-bn5 .context p,
.main-sec--use .use-bn5 .context a .text {
	color: #fff;
}


@media (max-width: 768px) {
	.main-sec--use {
		padding-bottom:0;
	}
    .main-sec--use .use-bn {
        height: 400px;
		min-width: 100%;
        flex-direction: column;
    }
    .main-sec--use .use-bn > div {
        width: 100%;
		max-width: 100%;
        display: flex;
        justify-content: center;
        order: -1;
		padding:40px 20px 0;
    }
	.main-sec--use .use-bn .right {
		justify-content: left;
	}
	.main-sec--use .use-bn .right .context {
		transform: translateX(0);
		padding-left: 0;
		text-align: left;
	}
    .main-sec--use .use-bn .right .context,
    .main-sec--use .use-bn .left .context {
        transform: none;
    }
    .main-sec--use .context {
        text-align: left !important;
        max-width: 100%;
    }
    .main-sec--use .context h3 {
        font-size: 30px;
    }
    .main-sec--use .context p {
        font-size: 16px;
    }
    .main-sec--use .use-bn1 {
        background: #FFE460 url('../img/main/img-use1-m.jpg') center bottom no-repeat;		
		background-size: cover;
    }
    .main-sec--use .use-bn2 {
        background: #EEF7CC url('../img/main/img-use2-m.jpg') center bottom no-repeat;		
		background-size: contain;
    }
	.main-sec--use .use-bn3 {
        background:#F2D3A2 url('../img/main/img-use3-m.jpg') center bottom no-repeat;		
		background-size: contain;
    }
	.main-sec--use .use-bn4 {
        background:#EEEFF2 url('../img/main/img-use4-m.jpg') center bottom no-repeat;		
		background-size: cover;
    }
	.main-sec--use .use-bn5 {
        background:#49C2CE url('../img/main/img-use5-m.jpg') center bottom no-repeat;		
		background-size: cover;
    }	
}
@media screen and (max-width: 576px) {
	.main-sec--use .use-bn {
        height: 350px;
	}
}

/* 공지사항 */
.main-sec--notice {
	background: #F4F7FA;
	padding: 90px 0;	
}
.main-sec--notice .din {
	position:relative;
	display:flex;
	justify-content: space-between;
}
.main-sec--notice .sec-heading {
	position:relative;
	width:32%;
}
.main-sec--notice .sec-heading .sec-heading__title {
	padding-bottom: 10px;
}
.main-sec--notice .sec-heading .sec-heading__btn {
  padding-top: 40px;
  width:100px;
}
.main-sec--notice .sec-area {
	position:relative;
	width:68%;
}
.main-sec--notice .sec-area .list li a {
  position: relative;
  width:100%;
  padding:23px 40px;
  margin-bottom:12px;
  border-radius: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  transition: all .3s ease;
}

.main-sec--notice .sec-area .list li a:hover {
  background-color: var(--main-color);  
  box-shadow: 0 4px 10px rgba(0,79,195,0.2);
}
.main-sec--notice .sec-area .list li a:hover h6, .main-sec--notice .sec-area .list li a:hover p {
  color:#fff;
}
.main-sec--notice .sec-area .list li a h6 {
	width:80%;  
	font-size: 20px;
	line-height: 1.2;
	font-weight: 600;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
}
.main-sec--notice .sec-area .list li a p {
	width:15%;
	text-align: right;
	font-size: 16px;
	color:#999;
}

@media screen and (max-width:768px) {
	.main-sec--notice {
		padding: 60px 0;
	}
	.main-sec--notice .din {
		display: block;
	}
	.main-sec--notice .sec-heading {
		width: 100%;
		padding-bottom: 30px;
	}
	.main-sec--notice .sec-heading .sec-heading__title {
		padding-bottom: 15px;
	}
	.main-sec--notice .sec-heading__text br {
		display: none;
	}
	.main-sec--notice .sec-heading .sec-heading__btn {
		width:auto;
		padding-top:0;
		position: absolute;
		right:0;
		top: 5px;
	}
	.main-sec--notice .sec-area {
		width: 100%;
		flex-direction:column;
	}
	.main-sec--notice .sec-heading .sec-heading__text {
		font-size: 18px;
	}
	.main-sec--notice .sec-area .list li a {
		padding:15px 20px;
	}
	.main-sec--notice .sec-area .list li a h6 {
		width:70%;
		font-size: 18px;
	}
	.main-sec--notice .sec-area .list li a p {
		width:25%;
		font-size: 14px;
	}
}


/* 바로가기 */
.main-sec--link {
	padding:90px 0;
	background-color: transparent;
}
.link-inner {
	display: flex;
	gap: 20px;
	align-items: stretch;
}
.link-left {
	display: flex;
	flex-direction: column;
	gap: 20px;
	flex: 1.8;
}
.link-box {
	position: relative;
	border-radius: 20px;
	min-height: 170px;
	transition: all 0.3s ease;
}
.link-box__cs {
	display: flex;
	justify-content: space-between;
	align-items: center;
	background-color: #F5F5F7;
	width: 100%;	
	padding:50px;
}
.link-box__cs .box-num p {
	align-items: center;
	gap: 8px;
	font-size: 24px;
	color: #222;
	font-weight: 600;
	margin-bottom: 10px;
}
.link-box__cs .box-num p img {
	width: 24px;
	height: 24px;
}
.link-box__cs .box-num h4 {
	font-size: 40px;
	font-weight: 700;
	color: #191919;
	margin-bottom: 15px;
}
.link-box__cs .box-info p {
	font-size: 18px;
	color: #666;
	line-height: 1.8;
}
.link-boxes-wrapper {
	display: flex;
	gap: 20px;
	width: 100%;
}
.link-box__faq {
	padding: 40px;
	background-color: #DEF2E3;
	flex: 1;
}
.link-box__qna {
	padding: 40px;
	background-color: #DBEDF9;
	flex: 1;
}
.link-box .box-content {
	flex: 1;
}
.link-box h6 {
	font-size: 24px;
	font-weight: 700;
	color: #191919;
	margin-bottom: 12px;
}
.link-box p {
	font-size: 18px;
	color: #666;
	line-height: 1.6;
	margin: 0;
}
.link-box .box-btn {
	position: absolute;
	bottom: 20px;
	right: 20px;
}
.link-box .box-btn a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background-color: rgba(255, 255, 255, 1);
	border-radius: 50%;
	transition: all 0.3s ease;
}

.link-box .box-btn a:hover {
	background-color: rgba(255, 255, 255, 0.6);
	transform: translateX(5px);
}
.link-box .box-btn .ico {
	display: flex;
	align-items: center;
	justify-content: center;
}
.link-box .box-btn img {
	width: 15px;
	height: 15px;
}
.link-right {
	flex: 1;
	min-height: 100%;
}
.link-box__schedule {
	background: var(--main-color) url('../../asset/img/main/info_bg.png') right bottom no-repeat;
	color:#222;
	width: 100%;
	height: 100%;
	min-height: 400px;
	padding: 60px 10px;
}

.link-box__schedule .box-header {
	margin-bottom: 75px;
	text-align: center;
}
.link-box__schedule h6 {
	font-size: 24px;
	color: #fff;
	font-weight: 500;
	margin-bottom: 30px;
	line-height: 1.3;
}
.link-box__schedule h6 span {
	display: block;
	font-size: 40px;
	color: #fff;
	font-weight: 700;
}
.link-box__schedule .box-header p {
	font-size: 18px;
	color: #fff;
	line-height: 1.5;
	margin: 0;
}
.link-box__schedule .box-footer {
	width:160px;
	margin:0 auto;
	
}
.link-box__schedule .btn-more {
	display: inline-flex;
	align-items: center;
	gap:15px;
	padding: 13px 25px;
	background-color: #fff;
	color: var(--main-color);
	font-size: 18px;
	font-weight: 600;
	border-radius: 30px;
	transition: all 0.3s ease;
}
.link-box__schedule .btn-more:hover {
	transform: translateY(-2px);
	box-shadow: 0 4px 12px rgba(34, 127, 196, 0.3);
}
.link-box__schedule .btn-more .ico {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 15px;
	height: 15px;
}
.link-box__schedule .btn-more img {
	width: 100%;
	height: 100%;
}

@media screen and (max-width: 768px) {
	.main-sec--link {
		padding: 60px 0;
	}

	.link-inner {
		flex-direction: column;
		gap: 20px;
	}

	.link-left {
		gap: 20px;
	}

	.link-boxes-wrapper {
		flex-direction: column;
		gap: 20px;
	}
	.link-box__cs {
		display: block;
	}

	.link-box__faq,
	.link-box__qna {
		flex: 1;
	}

	.link-box {
		min-height: auto;
		padding: 25px;
	}

	.link-box h6 {
		font-size: 20px;
	}
	.link-box p {
		font-size: 16px;
	}
	.link-box__cs .box-num p {
		font-size: 18px;
	}
	.link-box__cs .box-num h4 {
		font-size: 24px;
	}
	.link-box__cs .box-info p {font-size:16px;}

	.link-box__schedule {
		min-height: 250px;
		padding: 40px;
	}
	.link-box__schedule .box-header {
		margin-bottom:30px;
	}
	.link-box__schedule h6 {
		font-size: 18px;
	}
	.link-box__schedule h6 span {
		font-size: 30px;
	}

	.link-box__schedule .btn-more {
		font-size: 16px;
		padding: 10px 20px;
	}
}

@media screen and (max-width: 576px) {

}