@charset "UTF-8";

body {
	font-weight: 400;
}

.container_wrap {
	background-color: #fff;
	padding:0; 
}

.side_link_wrap .btn_link {
	color: #fff;
}

.side_link_wrap .order_link .btn_link:first-child:after {
	background-color: #fff;
}

.menu_open .side_link_wrap .btn_link {
	color: #000;
}

.menu_open .side_link_wrap .order_link .btn_link:first-child:after {
	background-color: #000;
}

.scrolled .side_link_wrap .btn_link {
	color: #000;
}

.scrolled .side_link_wrap .order_link .btn_link:first-child:after {
	background-color: #000;
}

/* visual */
.result_wrap {
	padding: 50px 0;
}

.contents_box {
	max-width:1400px;
}

.result_wrap .flex {
	padding: 50px var(--side) 0 var(--side);
	align-items: center;
	gap: 50px;
}


.result_wrap .schedule_area .side_title {
	color: #fff;
	font-size: var(--size-schedule);
	margin-bottom: 25px;
	font-weight: bold;
	display: flex;
	align-items: center;
	gap: 15px;
}


.result_wrap .schedule_area .schedule_list {
	height: 380px;
	overflow: auto;
	transition: all 0.3s ease-in-out;
}

.result_wrap .schedule_area .schedule_list ul li {
	padding: 8px 0;
}

.result_wrap .schedule_area .schedule_list ul li.this {
	color: var(--point-dark-color);
}

.result_wrap .schedule_area .schedule_list ul li.this .month {
	font-size: var(--size-small);
	background-color: var(--point-dark-color);
	border-color: var(--point-dark-color);
}

.result_wrap .schedule_area .schedule_list ul li.this .txt {
	color: #fff;font-weight:bold;
}

.result_wrap .schedule_area .schedule_list ul li .box,
.result_wrap .schedule_area .schedule_list ul li a {
	display: block;
	display: flex;
	gap: var(--gap-size);
}

.result_wrap .schedule_area .schedule_list ul li .month {
	display: inline-block;
	width: 85px;
	border: 1px solid rgba(255, 255, 255, 0.3);
	border-radius: 8px;
	color: #fff;
	text-align: center;
	padding: 5px;
}

.result_wrap .schedule_area .schedule_list ul li .txt {
	font-size: var(--size-base);
	color: #fff;
	font-weight: 400;
}

.result_wrap .gate_wrap {
	position: relative;
	width: 100%;
	order: 2;
}

.result_wrap .gate_wrap ul {
	display: flex;
	justify-content: center;
	width: 100%;
	max-width: var(--cont-width);
	gap: 10px;
	margin: 0 auto;
	padding: 0;
	flex-wrap: wrap;
}

.result_wrap .gate_wrap ul li {
	width: calc((100% - var(--gap-size) * 2) / 3);
	text-align: center;
	position: relative;
	text-align: center;
	padding: var(--gap-size) 10px;
	border-radius: 12px;
}

.result_wrap .gate_wrap ul li .gate_count {
	text-align: left;
    display: flex;
    align-items: center;
	gap:10px;
}
.result_wrap .gate_wrap ul li .gate_count .txt_result {line-height:1;;}
.result_wrap .gate_wrap ul li .gate_count .txt_result .re_num {
	font-size: 34px;
	font-weight: bold;
}

.result_wrap .gate_wrap ul li .gate_count .txt {
	font-size: var(--size-tit-exp);
	color: #125ed0;
	font-weight: bold;
	margin-top: 5px;
}

.result_wrap .gate_wrap ul li .gate_count .txt2 {
	font-size: var(--size-tit-exp);
	color: #000;
	font-weight: bold;
}

.result_wrap .gate_wrap ul li .gate_count .order {
	font-size: var(--size-subject);
	line-height: 60px;
	font-weight: bold;
	line-height: 54px;
}

.result_wrap .gate_wrap ul li .block .gate_tit {
	font-size: var(--size-base);
	color: #FFBB00;
	letter-spacing: -2px;
	word-break: keep-all;
	line-height: 1.2;
	margin-top: 12px;
}
/* 일정 영역 */
.result_wrap .schedule_area {
  background-color: #125ed0;
  padding: 20px;
  min-width: 360px;
  border-radius: 12px;
  z-index: 3;
}

/* 타이틀 */


.result_wrap .schedule_area .side_title:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 32px;
  background: url(/pmt_images/2025/main/ico_month.png) no-repeat center / contain;
}
.mCSB_container_wrapper > .mCSB_container {padding-right:0;}
/* 리스트 */
.result_wrap .schedule_area .schedule_list {
  max-height: 380px;
  overflow-y: auto;
}

.result_wrap .schedule_area .schedule_list ul li {
  display: flex;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}

.result_wrap .schedule_area .schedule_list ul li:last-child {
  border-bottom: none;
}

/* 날짜(month) */
.result_wrap .schedule_area .schedule_list .month {
  display: inline-block;
  width: 90px;
  padding: 6px 8px;
  text-align: center;

  font-size: 0.9rem;
  font-weight: 600;
  color: #fff;

  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 6px;
}

/* 텍스트 */
.result_wrap .schedule_area .schedule_list .txt {
  flex: 1;
  font-size: 1rem;
  font-weight: 400;
  color: #f1f1f1;
  line-height: 1.5;
}

/* 현재 항목 강조 */


/* hover 효과 */
.result_wrap .schedule_area .schedule_list ul li:hover {
  background: rgba(255,255,255,0.08);
}

/* 1520px 이하 */
@media screen and (max-width: 1520px) {
	.result_wrap .flex {
		flex-direction: row;
		padding: 40px var(--side);
		gap: 40px;
	}

	.result_wrap .schedule_area {
		min-width: 320px;
		padding: 20px;
	}

	.result_wrap .schedule_area .schedule_list {
		height: 320px;
	}
}

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
	.result_wrap .flex {
		flex-direction: column;
		align-items: stretch;
		gap: 30px;
	}

	.result_wrap .schedule_area {
		width: 100%;
		min-width: auto;
	}

	.result_wrap .gate_wrap ul li {
		width: calc((100% - var(--gap-size)) / 2);
		/* 2열 */
	}
}

/* 1024px 이하 */
@media screen and (max-width: 1024px) {
	.result_wrap .schedule_area .side_title {
		font-size: 18px;
		margin-bottom: 20px;
	}

	.result_wrap .schedule_area .schedule_list {
		height: 280px;
	}

	.result_wrap .gate_wrap ul li .gate_count .txt_result .re_num {
		font-size: 32px;
	}

	.result_wrap .gate_wrap ul li .gate_count .txt,
	.result_wrap .gate_wrap ul li .gate_count .txt2 {
		font-size: 16px;
	}
}

/* 768px 이하 */
@media screen and (max-width: 768px) {
	.result_wrap .flex {
		padding: 30px 15px;
		gap: 0;
	}

	.result_wrap .schedule_area {
		padding: 15px;
		border-radius: 10px;
	}

	.result_wrap .schedule_area .schedule_list {
		height: 200px;
	}

	.result_wrap .gate_wrap ul li {
		width: 100%;
		/* 1열 */
	}

	.result_wrap .gate_wrap ul li .gate_count .txt_result .re_num {
		font-size: 28px;
	}
}

/* 480px 이하 */
@media screen and (max-width: 480px) {
	.result_wrap .schedule_area .side_title {
		font-size: 16px;
		gap: 10px;
	}

	.result_wrap .schedule_area .side_title:before {
		width: 22px;
		height: 26px;
		background-size: contain;
	}

	.result_wrap .schedule_area .schedule_list ul li .month {
		width: 70px;
		font-size: 12px;
		padding: 4px;
	}

	.result_wrap .schedule_area .schedule_list ul li .txt {
		font-size: 14px;
	}

	.result_wrap .gate_wrap ul li {
		padding: 15px 10px;
	}

	.result_wrap .gate_wrap ul li .gate_count .txt_result .re_num {
		font-size: 24px;
	}
}

@media screen and (max-width: 1520px) {
	.result_wrap .schedule_area {
		top: 38%;
	}

	.result_wrap .schedule_area .schedule_list {
		height: 280px;
	}

	.result_wrap .schedule_area .schedule_list ul li {
		padding: 4px 0;
	}
}

@media screen and (max-width: 1024px) {
	.result_wrap .schedule_area {
		position: static;
		transform: none;
		min-width: auto;
	}

}

@media screen and (max-width: 768px) {
	.result_wrap .schedule_area .schedule_list {
		height: 180px;
	}

	.result_wrap .schedule_area .schedule_list ul li {
		padding: 4px 0;
	}
}

@media screen and (max-width: 1520px) {
	.result_wrap .gate_wrap ul {
		flex-wrap: wrap;
		margin-top: 24px;
	}

	.result_wrap .gate_wrap ul li {
		width: calc((100% - var(--gap-size) * 2) / 3);
		padding: var(--gap-size) var(--gap-size) var(--gap-size) 100px;
		text-align: left;
		height: 100%;
	}

	.result_wrap .gate_wrap ul li .gate_count {
		height: auto;
		line-height: 1;
		margin-bottom: 5px;
	}

	.result_wrap .gate_wrap ul li .gate_count .order {
		line-height: 1.2;
	}
}

@media screen and (max-width: 1024px) {
	.result_wrap .gate_wrap ul li {
		padding: var(--gap-size);
		text-align: center;
		height: 100%;
	}

	.result_wrap .gate_wrap ul li .gate_count {
		height: auto;
	}
}

@media screen and (max-width: 768px) {
	.result_wrap .gate_wrap ul li {
		width: calc((100% - var(--gap-size)) / 2);
	}
}

@media screen and (min-width: 1025px) {
	.result_wrap .gate_wrap ul li .gate_count::before {
		content: "";
		display: block;
		width: 50px;
		height: 50px;
		background-repeat: no-repeat;
		background-position: center;
	}

	.result_wrap .gate_wrap ul li .gate_count.gate1::before {
		background-image: url("/pmt_images/2025/main/icon_gate_01.png");
	}

	.result_wrap .gate_wrap ul li .gate_count.gate2::before {
		background-image: url("/pmt_images/2025/main/icon_gate_02.png");
	}

	.result_wrap .gate_wrap ul li .gate_count.gate3::before {
		background-image: url("/pmt_images/2025/main/icon_gate_03.png");
	}

	.result_wrap .gate_wrap ul li .gate_count.gate4::before {
		background-image: url("/pmt_images/2025/main/icon_gate_04.png");
	}

	.result_wrap .gate_wrap ul li .gate_count.gate5::before {
		background-image: url("/pmt_images/2025/main/icon_gate_05.png");
	}

	.result_wrap .gate_wrap ul li .gate_count.gate6::before {
		background-image: url("/pmt_images/2025/main/icon_gate_06.png");
	}
}

.top_exp {display: flex;align-items: end;gap:20px;flex-wrap:wrap;}

@media screen and (min-width: 1025px) and (max-width: 1520px) {
	.result_wrap .gate_wrap ul li .gate_count::before {
		position: absolute;
		left: 30px;
		top: 50%;
		transform: translateY(-50%);
	}
}

.support_wrap {
	position: relative;
	padding: 140px var(--side) 50px var(--side);
	/* background-color: #ecf3f5; */
}
.support_wrap .contents_box {
	position: relative;
}

.support_wrap .btn {
/* 	position: absolute;
	right: 0;
	top: 0; */
	height: auto;
}

.support_wrap .btn i:before {
	float: right;
	margin-left: 10px;
}

.support_wrap .top_exp {
	margin-bottom: var(--size-big-title);
}

.support_wrap h3.title {
	margin-bottom: 16px;
	font-size: 28px;
	text-align: left;
	justify-content: start;
}

.support_wrap .support_flex {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
	background: #ecf3f5;
	padding: 50px;
	border-radius: 20px;
}

.support_wrap .support_flex .box_board {
	/* border: 1px solid #ddd; */
	/* padding: var(--gap-size); */
	width: calc((100% - 80px) / 2);
	/* border-radius: var(--border-radius); */
}

.support_wrap .support_flex .box_board .list_info_area {
	border-radius: var(--border-radius);
	/* padding: 48px 36px; */
	background: #ecf3f5;
}

.support_wrap .support_flex .box_board .list_info_area ul { 
	display: flex;
	flex-wrap: wrap;
	gap:10px 20px;
}

.support_wrap .support_flex .box_board .list_info_area ul li {
	width: calc((100% - 40px ) / 3);
	display: block;;
	text-align: center;
}

.support_wrap .support_flex .box_board .list_info_area ul li + li {
	/* margin-top: 10px; */
}

.support_wrap .support_flex .box_board .list_info_area ul li img {
	max-width: 100%;
}

.support_wrap .support_flex .box_board .list_info_area ul li .img_inner {
	/* margin-top: 8px; */
	flex: 0 0 auto;
	background:#fff;text-align: center;border-radius:15px;
	margin-bottom:10px;
}
.support_wrap .support_flex .box_board .list_info_area ul li .img_inner video {
	max-width:95%;
}

.support_wrap .support_flex .box_board .list_info_area ul li .img_inner .bg {
	background-size: cover;
	display: block;
	background-position: center;
	border-radius: 8px;
	overflow: hidden;
}

.support_wrap .support_flex .box_board .list_info_area ul li .txt_inner .tit {
	font-size: var(--size-subject);
	font-weight: bold;
}

.support_wrap .support_flex .box_board .list_info_area ul li .txt_inner .txt {
	color: var(--color-gray-600);
	line-height: 1.3;
	font-size: 16px;;
	padding: 0 10px;
}

@media screen and (max-width: 1024px) {
	.support_wrap .btn {
		top: 40px;
		right: 24px;
	}
	.support_wrap .support_flex {
	flex-direction : column;
	}
	.support_wrap .support_flex .box_board {
		width:100% !important;;
		justify-content: center;
	} 
	.support_wrap .support_flex .box_board .list_info_area ul {}
}

@media screen and (max-width: 960px) {
	.support_wrap .btn {
		right: 12px;
		top: 50px;
	}
}

@media screen and (max-width: 960px) {
	.support_wrap h2.title {
		flex-direction: column;
		gap: 0;
		align-items: start;
		font-size: 27px;
	}

	.support_wrap h2.title .exp {
		line-height: 1.4;
		margin-top: 10px;
		font-size: 16px;
	}
}

@media screen and (max-width: 820px) {
	.support_wrap h3.title {
		font-size:24px;
	}
	.support_wrap .support_flex {padding:40px 20px;}
	.support_wrap .support_flex .box_board .list_info_area {
		overflow-x: auto;
	}
	.support_wrap .support_flex video {max-width:100%;}
}

@media screen and (max-width: 820px) {
	.support_wrap .support_flex .box_board .list_info_area ul li {
		width:calc((100% - 40px ) / 3);
	}

	/* .support_wrap .support_flex .box_board .list_info_area ul li img {
		width: 95px;
	} */
}

@media screen and (max-width: 460px) {
	.support_wrap .support_flex .box_board .list_info_area ul li {
		width: calc((100% - 20px) / 2);
	}
}

.slick-slide {
	padding: 0 12px;
	/* 좌우 여백 10px */
}

.slick-list {
	/* margin: 0 -10px; */
	/* 슬라이더 전체 여백 제거 보정 */
}

.support_wrap .support_flex .box_board .list_info_area .dots ul {
	display: block;
	text-align: center;
	margin-top: 10px;
}

.support_wrap .support_flex .box_board .list_info_area .dots ul li {
	display: inline-block;
	width: auto;
	margin: 0 4px;
}

.support_wrap .support_flex .box_board .list_info_area .dots ul li button {
	text-indent: -9999px;
	width: 8px;
	height: 8px;
	background: var(--color-gray-500);
	border-radius: 6px;
	transition: all 0.3s ease-in-out;
}

.support_wrap .support_flex .box_board .list_info_area .dots ul li.slick-active button {
	background: var(--point-dark-color);
	width: 16px;
}

.dots_wrap .slick-dots li {
	display: none;
}

.dots_wrap .slick-dots li.slick-active {
	display: block;
}

@media screen and (max-width: 1520px) {
	.support_wrap .support_flex {
		gap: var(--gap-list);
	}

	.support_wrap .support_flex .box_board {
		width: calc((100% - var(--gap-list)) / 2);
		margin-bottom:20px;
	}
}

@media screen and (max-width: 820px) {
	.support_wrap .support_flex {
		flex-direction: column;
	}

	.support_wrap .support_flex .box_board {
		width: 100%;
	}

	.slick-slide {
		padding: 0;
	}
}

/* 기본 공통 */
.support_wrap .support_flex [class^="support"] .title {
	display: flex;
	align-items: center;
	gap: 10px;
}

.support_wrap .support_flex [class^="support"] .title:before {
	content: "";
	display: inline-block;
	width: 40px;
	height: 40px;
	background-repeat: no-repeat;
	background-position: center;
	background-size: contain;
}

/* 개별 아이콘 */
.support_wrap .support_flex .support01 .title:before {
	background-image: url(/pmt_images/2025/main/ico_suport_01.png);
}

.support_wrap .support_flex .support02 .title:before {
	background-image: url(/pmt_images/2025/main/ico_suport_02.png);
}

.support_wrap .support_flex .support03 .title:before {
	background-image: url(/pmt_images/2025/main/ico_suport_03.png);
}

.support_wrap .support_flex .support04 .title:before {
	background-image: url(/pmt_images/2025/main/ico_suport_04.png);
}

/* 반응형 */

/* 1024px 이하 */
@media screen and (max-width: 1024px) {
	.support_wrap .support_flex [class^="support"] .title {
		gap: 8px;
	}

	.support_wrap .support_flex [class^="support"] .title:before {
		width: 32px;
		height: 32px;
	}

	.support_wrap .support_flex [class^="support"] .title {
		font-size: 16px;
	}
}

/* 768px 이하 */
@media screen and (max-width: 768px) {
	.support_wrap .support_flex [class^="support"] .title {
		gap: 6px;
	}

	.support_wrap .support_flex [class^="support"] .title:before {
		width: 28px;
		height: 28px;
	}

	.support_wrap .support_flex [class^="support"] .title {
		font-size: 15px;
	}
}

/* 480px 이하 */
@media screen and (max-width: 480px) {
	.support_wrap .support_flex [class^="support"] .title {
		gap: 5px;
	}

	.support_wrap .support_flex [class^="support"] .title:before {
		width: 24px;
		height: 24px;
	}

	.support_wrap .support_flex [class^="support"] .title {
		font-size: 14px;
	}
}

.impact-section {background:#f2f4f6;padding:80px 20px;}

.impact-section ul {
            list-style: none;
        }

        /* 2. 레이아웃 클래스 */
        .impact-section .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        /* 3. 헤더 영역 */
        .impact-section .section-header {
            margin-bottom: 50px;
            text-align: left;
        }

        .impact-section .section-header h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 16px;
            color: #111;
        }

        .impact-section .section-header p {
            font-size: 18px;
            color: #555;
            word-break: keep-all;
            max-width: 800px;
        }

        /* 4. 그리드 레이아웃 */
        .impact-section .stats-grid {
        	margin-top:30px;
            display: flex;
            flex-wrap:wrap;
            gap: 24px;
        }

        /* 5. 카드 아이템 스타일 */
        .impact-section .stat-item { 
            background-color: #fff;
			width: calc((100% - 48px) / 3);
            padding: 20px 20px;
            border-radius: 16px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(0, 89, 255, 0.05);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
        }

        /* 호버 효과 */
        .impact-section .stat-item:hover {
            transform: translateY(-5px);
            box-shadow: 0 8px 25px rgba(0, 89, 255, 0.12);
        }

        /* 아이콘 박스 */
        .impact-section .icon-box {
            font-size: 40px;
            color: #0066FF;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
        }
        .impact-section .icon-box video {max-width:90%;}
        /* 아이콘 이미지(img 태그)를 쓸 경우를 대비한 스타일 */
        .impact-section .icon-box img {
            max-height: 100%;
            width: auto;
        }
		.fp-overflow {}
        /* 텍스트 스타일 */
        .impact-section .stat-label {
            font-size: 18px;
            font-weight: 500;
            color: #666;
            margin-bottom: 8px;
            display: block;
        }

        .impact-section .stat-value { 
            font-size: 35px;
            font-weight: 700;
            color: #083891;
            display: block;
            line-height: 1.2;
        }

        .impact-section .stat-caption {
            font-size: 16px;
            color: #999;
            margin-top: 5px;
            display: block;
        } 

        /* 6. 반응형 처리 */
        @media (max-width: 1024px) {
            .impact-section .stats-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
        	.impact-section .stats-grid {gap:12px;}
        	.impact-section .stat-item {width: calc((100% - 12px) / 2);}
        	.impact-section .icon-box {margin-bottom:0;}
        	.impact-section .stat-value {font-size:25px;}
            .impact-section .section-header { text-align: center; }
            .impact-section .section-header p { margin: 0 auto; }
            
            .impact-section .stats-grid {
                /* grid-template-columns: 1fr; */ 
            }
            .impact-section {padding:40px 15px;}
            .impact-section .section-header h2 { font-size: 24px; }
            .impact-section .section-header p { font-size: 15px; }
            
            /* 모바일에서 br 태그 숨기기 (선택사항) */
            .impact-section .pc-only { display: none; }
        }
        @media (max-width: 375px) {
        .impact-section .stat-item {padding:15px 15px;}
        }
        
        
.news_wrap {
	display: flex;
	flex-wrap: wrap;
	gap: 40px 80px;
	padding: 140px 0 50px 0;
} 

.news_wrap > div {
	position: relative;
	width: calc((100% - 80px) / 2);
}

.news_wrap > div .btn {
	 position: absolute;
     right: 0;
     top: 0; 
	height: auto;
	line-height: 40px;
	font-size: var(--size-base);
}

.news_wrap > div .btn i:before {
	float: right;
	margin-left: 10px;
}
 
.news_wrap .aside_wrap.notice_list_wrap .title {
	margin-bottom: var(--gap-size-s);
	justify-content: space-between;
}

.news_wrap .aside_wrap.notice_list_wrap .category_tab {
	margin-bottom: var(--gap-size);
}

.news_wrap .aside_wrap.notice_list_wrap .category_tab ul {
	display: flex;
	gap: 8px;
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul {
	display: flex;
	flex-direction: column;
	gap: 23px;
}

.news_wrap .aside_wrap.notice_list_wrap .category_tab ul li .teg {
	background-color: #fff;
	font-size: var(--size-base);
	border: 1px solid #ddd;
}

.news_wrap .aside_wrap.notice_list_wrap .category_tab ul li.on .teg {
	background-color: var(--point-dark-color);
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li:focus .block,
.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li:hover .block {
	border-color: var(--point-dark-color);
	box-shadow: 0 6px 24px rgba(0, 157, 255, 0.2);
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li:focus .block .title,
.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li:hover .block .title {
	color: var(--point-dark-color);
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block {
	display: block;
	background-color: #fff;
	border-radius: var(--border-radius);
	padding: 15px 27px;
	border: 1px solid #ddd;
	transition: all 0.3s ease-in-out;
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .category_list {
	display: flex;
	gap: 8px;
	margin-bottom: 8px;
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .title {
	font-size: 20px;
	font-weight: bold;
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .order_info {
	margin-top: 10px;
	display: flex;
	gap: 40px;
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .order_info dl {
	display: flex;
	gap: 12px;
	align-items: center;
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .order_info dl dt {
	font-weight: 400;
	color: var(--color-gray-600);
	font-size: var(--size-small);
}

.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .order_info dl dd {
	font-weight: 400;
	color: var(--base-dark);
	font-size: var(--size-small);
}

.news_wrap .aside_wrap.news_list_wrap .title {
	margin-bottom: 10px;
	justify-content: space-between;
}

.news_wrap .aside_wrap.news_list_wrap .mesg {
	/* line-height: 40px; */
	margin-bottom: var(--gap-size);
	font-size: var(--size-tit-exp);
	height: 47px;
	display: flex;
	align-items: center;
}

.news_wrap .aside_wrap.news_list_wrap .mesg .point_dream {
	color: var(--point-dark-color);
	font-weight: bold;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul {
	display: flex;
	gap: var(--gap-size);
	flex-wrap: wrap;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li {
	width: calc((100% - var(--gap-size)) / 2);
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a {
	position: relative;
	display: block;

	border: 1px solid #ddd;
	border-radius: var(--border-radius);
	overflow: hidden;
	transition: all 0.3s ease-in-out;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .teg {
	position: absolute;
	top: 0;
	left: 0;
	background-color: #000;
	color: #fff;
	border-radius: 7px;
	padding: 5px 15px;
	line-height: 1.6;
	border: 0;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a:hover,
.news_wrap .aside_wrap.news_list_wrap .news_list ul li a:focus {
	border-color: var(--point-dark-color);
	box-shadow: 0 6px 24px rgba(41, 49, 54, 0.2);
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .img_inner {
	display: block;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .img_inner img {
	opacity: 0;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .txt_inner {
	padding: 12px;
	display: flex;
	align-items: center;
	gap: 20px;
	font-size: 16px;
	line-height: 1.2;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .txt_inner dl {
	display: flex;
	gap: 12px;
	align-items: center;
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .txt_inner dl dt {
	font-weight: 400;
	color: var(--color-gray-600);
	font-size: var(--size-small);
}

.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .txt_inner dl dd {
	font-weight: 400;
	color: var(--base-dark);
	font-size: var(--size-small);
}

/* 1520px 이하 */
@media screen and (max-width: 1520px) {
	.news_wrap {
		gap: 30px 60px;
	}

	.news_wrap > div {
		width: calc((100% - 60px) / 2);
	}
}

/* 1280px 이하 */
@media screen and (max-width: 1280px) {
	.news_wrap {
		/* 		flex-direction: column;
		gap: 40px;
		 */
		padding: 0 40px;
	}

	.news_wrap > div {
		width: 100%;
	}

	.news_wrap .aside_wrap.news_list_wrap .news_list ul li {
		width: calc((100% - var(--gap-size)) / 2);
		/* 2열 유지 */
	}
}

/* 1024px 이하 */
@media screen and (max-width: 1024px) {
	.news_wrap {
		padding: 0 20px;
		gap: 30px;
	}

	.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .title {
		font-size: 18px;
	}

	.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .txt_inner {
		font-size: 14px;
		gap: 10px;
	}

	.news_wrap .aside_wrap.news_list_wrap .mesg {
		margin-bottom: var(--gap-size);
		font-size: var(--size-tit-exp);
		height: 47px;
		display: flex;
		align-items: center;
	}

	.news_wrap .aside_wrap.news_list_wrap .mesg .point_dream {
		color: var(--point-dark-color);
		font-weight: bold;
	}

}

/* 768px 이하 (태블릿 세로, 모바일 가로) */
@media screen and (max-width: 768px) {
	.news_wrap > div .btn {
		font-size: 16px;
		padding: 0 15px;
	}

	.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .teg {
		font-size: 14px;
	}

	.news_wrap {
		padding: 20px 15px;
	}

	.news_wrap .aside_wrap.news_list_wrap .news_list ul {

		gap: 15px;
	}

	.news_wrap .aside_wrap.news_list_wrap .news_list ul li {
		width: calc((100% - 15px) / 2);
	}

	.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block {
		padding: 12px 18px;
	}

	.news_wrap .aside_wrap.news_list_wrap .mesg {
		font-size: 16px;
		padding: 6px 0;
		text-align: left;
		flex-wrap: wrap;
	}
}

/* 480px 이하 (모바일) */
@media screen and (max-width: 480px) {
	.news_wrap {
		gap: 20px;
	}

	.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .title {
		font-size: 16px;
	}

	.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block .order_info {
		flex-direction: column;
		gap: 8px;
	}

	.news_wrap .aside_wrap.news_list_wrap .news_list ul li a .txt_inner {
		flex-direction: column;
		align-items: flex-start;
		gap: 5px;
		font-size: 14px;
	}
}

@media screen and (max-width: 1520px) {
	.news_wrap {
		gap: var(--gap-list);
	}
}

@media screen and (max-width: 820px) {
	.news_wrap {
		flex-direction: column;
		gap: 70px;
	}
}

@media screen and (max-width: 1520px) {
	.news_wrap > div {
		width: calc((100% - var(--gap-list)) / 2);
	}
}

@media screen and (max-width: 820px) {
	.news_wrap > div {
		width: 100%;
	}
}

@media screen and (max-width: 820px) {
	.news_wrap > div .btn {
		line-height: 34px;
	}
}

@media screen and (max-width: 1024px) {
	.news_wrap .aside_wrap.notice_list_wrap .notice_list ul li .block {
		padding: var(--gap-list);
	}

	.news_wrap .aside_wrap.notice_list_wrap .title {
		margin-bottom: 12px;
		line-height: 1.3;
	}
}

@media screen and (max-width: 768px) {
	.news_wrap .aside_wrap.notice_list_wrap .category_tab {
		margin-bottom: 15px;
	}

	.news_wrap .aside_wrap.notice_list_wrap .category_tab ul {
		justify-content: center;
	}

	.news_wrap .aside_wrap.notice_list_wrap .category_tab ul li .teg {
		padding: 0 15px;
		line-height: 40px;
	}
}

@media screen and (max-width: 768px) {
	.news_wrap .aside_wrap.news_list_wrap .title {
		margin-bottom: 15px;
	}
}

@keyframes gateFadeUp {
	to {
		opacity: 1;
		transform: translateY(0);
	}
}
