@charset "utf-8";

/* reset */
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
	font-family: inherit;
	font-style: inherit;
	font-size: 100%;
	font-weight: inherit;
	color: inherit;
	line-height: inherit;
	vertical-align: baseline;
	list-style: none;
	padding: 0;
	margin: 0;
	border: 0;
	word-break: inherit;
	word-wrap: inherit;
	box-sizing: inherit;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
	display: block;
}
html {
	font-size: 10px !important;
	scroll-behavior: smooth;
}
body {
	word-break: keep-all;
	overflow-wrap: break-word;
	box-sizing: border-box;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
}
blockquote,
q {
	quotes: none;
}
blockquote::before,
blockquote::after,
q::before,
q::after {
	content: '';
	content: none;
}
table {
	border-spacing: 0;
	border-collapse: collapse;
}
table,
thead,
tbody,
tfoot,
tr,
th,
td {
	padding: 0;
	margin: 0;
	vertical-align: baseline;
	border: 0;
	background-color: transparent;
	outline: 0;
}
img {
	border: 0;
}
a {
	text-decoration: none; 
	outline: none;
}
a:link,
a:visited,
a:hover,
a:active,
a:focus {
	text-decoration: none;
}
button {
	overflow: hidden;
	background-color: transparent;
	cursor: pointer;
}
button:hover {
	text-decoration: none;
}
form,
fieldset,
iframe {
	display: block;
	border: 0;
}
hr,
caption,
legend {
	display: none;
}

/* form controls */
input,
select,
textarea,
button {
	vertical-align: middle;
	border: 0;
	box-sizing: border-box;
}
input,
button {
	overflow: visible; 
	vertical-align: middle; 
	padding: 0; 
	margin: 0; 
	border: 0 none; 
	border-radius: 0;
	background: none; 
	outline: 0;
}
select {
	-webkit-appearance: none;
	appearance: none;
}
select::-ms-expand {
	display: none;
}
textarea {
	overflow: auto; 
	resize: none;
}
input:focus,
select:focus,
textarea:focus {
	outline: none;
}
button::-moz-focus-inner {
	padding: 0;
	border: 0; 
}
input::placeholder,
textarea::placeholder,
input:focus::placeholder,
textarea:focus::placeholder {
	color: #ccc;
}
input[type="text"],
input[type="password"],
input[type="tel"],
input[type="email"],
input[type="search"],
input[type="submit"],
input[type="button"],
input[type="reset"],
input[type="url"],
textarea {
	box-sizing: border-box;
	border-radius: 0;
	-webkit-appearance: none; 
}
input::-webkit-search-decoration,
input::-webkit-search-cancel-button,
input::-webkit-search-results-button,
input::-webkit-search-results-decoration {
	display: none;
}
input::-ms-clear,
input::-ms-reveal {
	display: none;
}
input[readonly],
textarea[readonly],
input:disabled,
textarea:disabled {
	color: var(--c-gray) !important;
	border: 1px solid var(--c-dline_op1);
	background-color: #f1f2f3 !important;
	cursor: default;
}
input[readonly]:focus,
textarea[readonly]:focus,
input:disabled:focus,
textarea:disabled:focus {
	border: 1px solid var(--c-dline_op1);
}
input[readonly]::placeholder,
textarea[readonly]::placeholder,
input:disabled::placeholder,
textarea:disabled::placeholder {
	color: #ccc !important;
}

/* general */
#skip {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}
.blind {
	visibility: hidden;
	overflow: hidden;
	position: absolute;
	top: 0;
	left: 0;
	width: 1px;
	height: 1px;
	font-size: 0;
	line-height: 0;
	border: 0;
	clip: rect(0, 0, 0, 0);
	white-space: nowrap;
}
.hide {
	display: none !important;
}
.clearfix:before,
.clearfix:after {
	display: block;
	content: '';
	line-height: 0;
}
.clearfix:after {
	clear:both;
}
.en {
	letter-spacing: 0;
}

/* common */
:root {
	--c-wcf: #e7004c;
	--c-bg: #fff;
	--c-bg_light: #fafafa;
	--c-bg_lgray: #f5f6f7;
	--c-bg_dark: #17181a;
	--c-light: #fff;
	--c-lgray: #888;
	--c-gray: #666;
	--c-dgray: #444;
	--c-dark: #222;
	--c-dline_op1: rgb(0, 0, 0, 0.1);
	--c-dline_op2: rgb(0, 0, 0, 0.2);
	--c-wline_op1: rgb(255, 255, 255, 0.1);
	--c-wline_op2: rgb(255, 255, 255, 0.2);
	--c-wline_op5: rgb(255, 255, 255, 0.5);
	--c-lhover: #d52e65;
	--c-dhover: #a20035;
}

/* style */
body {
	font-size: 1.6rem;
	line-height: 1.5;
	background-color: var(--c-bg);
}
body[lang="ko"] {
	letter-spacing: -0.05rem;
}
body[lang="en"] {
	letter-spacing: 0;
}
body * {
	font-family: 'Roboto', 'Noto Sans KR', -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Apple SD Gothic Neo", Arial, sans-serif;
	box-sizing: border-box;
}
.noscroll {
	overflow: hidden;
	position: fixed;
	width: 100%;
}
input,
select,
textarea,
button {
	transition: 0.3s ease;
}

/* wrap */
#wrap {
	position: relative;
}

/* header */
#header {
	z-index: 100;
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	width: 100%;
	background-color: transparent;
	-webkit-transition: 0.7s ease;
	transition: 0.7s ease;
}
#header .header_inner {
	display: flex;
	align-items: center;
	justify-content: space-between;
	max-width: 1200px;
	padding: 35px 20px;
	margin: 0 auto;
	-webkit-transition: 0.7s ease;
	transition: 0.7s ease;
}
#header .logo a {
	display: inline-block;
	width: 92px;
	height: 80px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/l_wcf.svg) no-repeat;
}
.header-fixed #header {
	background-color: rgba(0, 0, 0, 0.1);
	-webkit-backdrop-filter: blur(15px);
	backdrop-filter: blur(15px);
}
.header-fixed #header .header_inner {
	padding: 10px 20px !important;
}
.header-fixed #header .logo a {
	width: 69px !important;
	height: 60px !important;
	background-size: auto 60px !important;
}
#header.alt-header {
	background-color: rgba(255, 255, 255, 0.6) !important;
}
#header.alt-header .logo a {
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
}
#header .head_gnb {
	display: flex;
	align-items: center;
	justify-content: center;
}

.gnb_wrap {
	margin-right: 40px;
}
.gnb_wrap.active {
	display: block;
}
.gnb_wrap .gnb_list {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 40px;
}
.gnb_wrap .gnb_list .gnb_item {
	position: relative;
}
.gnb_wrap .gnb_list .gnb_item > a {
	display: block;
	font-size: 16px;
	font-weight: 500;
	color: var(--c-light);
	line-height: 50px;
}
.gnb_wrap .gnb_list .gnb_item:hover .depth_wrap {
	display: block;
}
.gnb_wrap .depth_wrap {
	display: none;
}
.depth_wrap .depth_list {
	position: absolute;
	top: 50px;
	left: 0;
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
	padding: 10px 0;
	border-top: 4px solid var(--c-wcf);
	background-color: var(--c-light);
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.12);
}
.depth_wrap .depth_list .depth_item {
	width: 180px;
	border-top: 1px solid var(--c-dline_op1);
}
.depth_wrap .depth_list .depth_item:first-child {
	border-top: 0;
}
.depth_wrap .depth_list .depth_item a {
	display: block;
	font-size: 15px;
	font-weight: 400;
	color: var(--c-gray);
	text-align: left;
	padding: 14px 18px;
}
.depth_wrap .depth_list .depth_item.active a {
	color: var(--c-wcf);
}
.head_gnb .btn_lang {
	display: block;
	font-size: 14px;
	font-weight: 400;
	line-height: 24px;
	color: var(--c-light);
}
.gnb_wrap .gnb_list .gnb_item > a:hover, 
.depth_wrap .depth_list .depth_item a:hover,
.head_gnb .btn_lang:hover {
	color: var(--c-wcf);
}
.head_gnb .btn_nav, 
.head_gnb .btn_nav.active {
	position: relative;
	display: none;
	margin-left: 20px;
}
.head_gnb .btn_nav .btn_line, 
.head_gnb .btn_nav.active .btn_line {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	width: 24px;
	height: 24px;
}
.head_gnb .btn_nav .btn_line em, 
.head_gnb .btn_nav.active .btn_line em {
	width: 20px;
	height: 2px;
	background-color: var(--c-light);
	transition: 0.3s ease;
}
.head_gnb .btn_nav:hover .btn_line em, 
.head_gnb .btn_nav.active:hover .btn_line em {
	background-color: var(--c-wcf);
}
.head_gnb .btn_nav .btn_line em:nth-child(2) {
	margin: 6px 0;
}
.head_gnb .btn_nav.active .btn_line em:nth-child(1) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.head_gnb .btn_nav.active .btn_line em:nth-child(2) {
	display: none;
}
.head_gnb .btn_nav.active .btn_line em:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(45deg);
	margin-top: -2px;
}
#header.alt-header .gnb_wrap .gnb_list .gnb_item a {
	font-weight: 400;
	color: var(--c-dark);
	transition: 0.3s ease;
}
#header.alt-header .head_gnb .btn_lang {
	color: var(--c-dark);
}
#header.alt-header .head_gnb .btn_nav .btn_line em, 
#header.alt-header .head_gnb .btn_nav.active .btn_line em {
	background-color: var(--c-dark);
	transition: 0.3s ease;
}
#header.alt-header .gnb_wrap .gnb_list .gnb_item a:hover, 
#header.alt-header .head_gnb .btn_lang:hover {
	color: var(--c-wcf);
}
#header.alt-header .head_gnb .btn_nav:hover .btn_line em, 
#header.alt-header .head_gnb .btn_nav.active:hover .btn_line em {
	background-color: var(--c-wcf);
}

/* container */
#container {
	overflow: hidden;
	position: relative;
}

/* main */
.section_main_visual {}
.main_visual {}
.main_visual .swiper-slide {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 100vh;
}
.main_visual .bg_visual {
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.main_visual .bg_visual_01 {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_main_visual.jpg) center no-repeat;
	background-size: cover;
}
.main_visual .visual_title_wrap {
	z-index: 11;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 500px;
	text-align: center;
}
.main_visual .visual_title_wrap .visual_title {}
.main_visual .visual_title_wrap .tit_head {
	font-family: 'S-CoreDream-6Bold';
	font-size: 36px;
	color: var(--c-light);
}
.main_visual .visual_title_wrap .tit_body {
	font-family: 'S-CoreDream-8Heavy';
	font-size: 60px;
	color: var(--c-light);
	word-break: keep-all;
	overflow-wrap: break-word;
	margin-top: 40px;
}
.main_visual .visual_title_wrap .tit_foot {
	font-family: 'S-CoreDream-6Bold';
	font-size: 24px;
	color: var(--c-light);
	line-height: 170%;
	margin-top: 30px;
}
.main_visual .visual_title_wrap .visual_bottom {
	width: 320px;
	transition: all 0.7s ease 0.3s;
}
.main_visual .visual_title_wrap .btn_visual_tit {
	display: block;
	font-size: 17px;
	color: var(--c-light);
	line-height: 60px;
	text-align: center;
	margin-top: 50px;
	background-color: var(--c-wcf);
	box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.15);
	transition: 0.3s ease;
}
.main_visual .visual_title_wrap .btn_visual_tit span {
	display: inline-block;
	font-family: 'S-CoreDream-5Medium';
}
.main_visual .visual_title_wrap .btn_visual_tit span:after {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	width: 21px;
	height: 16px;
	vertical-align: middle;
	margin-left: 15px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arrow.svg) no-repeat;
}
.main_visual .visual_title_wrap .btn_visual_tit:hover {
	background-color: var(--c-dhover);
}

/* btn */
.btn_fill {
	display: block;
	font-size: 17px;
	color: var(--c-light);
	line-height: 60px;
	text-align: center;
	background-color: var(--c-wcf);
	transition: 0.3s ease;
}
.btn_stroke {
	display: block;
	font-size: 17px;
	color: var(--c-wcf);
	line-height: 60px;
	text-align: center;
	box-shadow: inset 0 0 0 4px var(--c-wcf);
	background-color: transparent;
	transition: 0.3s ease;
}
.btn_gray {
	display: block;
	font-size: 17px;
	color: var(--c-light);
	line-height: 60px;
	text-align: center;
	background-color: var(--c-gray);
	transition: 0.3s ease;
}
.btn_fill span,
.btn_stroke span,
.btn_gray span {
	display: inline-block;
	font-family: 'S-CoreDream-5Medium';
}
.btn_arr span:after {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	width: 21px;
	height: 16px;
	vertical-align: middle;
	margin-left: 15px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arrow.svg) no-repeat;
	transition: 0.3s ease;
}
.btn_stroke.btn_arr span:after {
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
	transition: 0.3s ease;
}
.btn_pls span:after {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-left: 15px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_plus.svg) no-repeat;
	transition: 0.3s ease;
}
.btn_stroke.btn_pls span:after {
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
	transition: 0.3s ease;
}
.btn_fill:hover {
	color: var(--c-wcf);
	box-shadow: inset 0 0 0 4px var(--c-wcf);
	background-color: transparent;
	transition: 0.3s ease;
}
.btn_stroke:hover {
	color: var(--c-light);
	background-color: var(--c-wcf);
	transition: 0.3s ease;
}
.btn_gray:hover {
	color: var(--c-gray);
	box-shadow: inset 0 0 0 4px var(--c-gray);
	background-color: transparent;
}
.btn_arr:hover span:after {
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
}
.btn_stroke.btn_arr:hover span:after {
	filter: none;
}
.btn_pls:hover span:after {
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
}
.btn_stroke.btn_pls:hover span:after {
	filter: none;
}

/* swiper */
.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-bullets.swiper-pagination-horizontal,
.swiper-pagination-custom,
.swiper-pagination-fraction {
	bottom: var(--swiper-pagination-bottom,30px);
}
.swiper-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet,
.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
	margin: 0 var(--swiper-pagination-bullet-horizontal-gap,2px)
}
.swiper-pagination-bullet,
.swiper-pagination-bullet-active {
	width: 40px;
	height: 5px;
	border-radius: 0;
}
.swiper-pagination-bullet {
	opacity: var(--swiper-pagination-bullet-inactive-opacity, .4);
}
.swiper-pagination-bullet-active {
	background: var(--c-wcf);
	opacity: 1;
}

/* main 행사소개 */
.section_main_inner {
	position: relative;
	max-width: 1200px;
	padding: 120px 20px;
	margin: 0 auto;
}
.ic_wcf:before {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	width: 21px;
	height: 40px;
	vertical-align: middle;
	margin-right: 15px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_wcf.svg) no-repeat;
}
.section_main_inner h3 {
	font-family: 'S-CoreDream-8Heavy';
	font-size: 46px;
	color: var(--c-dark);
}
.section_main_inner em {
	font-family: 'S-CoreDream-6Bold';
	font-size: 36px;
	color: var(--c-dark);
}

.section_main_info {
	position: relative;
	background-color: var(--c-bg_lgray);
}
.section_main_info:before {
	content: '';
	z-index: 12;
	position: absolute;
	top: -120px;
	right: -80px;
	display: block;
	width: 320px;
	height: 960px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_wcf_r.png) no-repeat;
}
.section_main_info:after {
	content: '';
	z-index: 12;
	position: absolute;
	bottom: -390px;
	left: -30px;
	display: block;
	width: 237px;
	height: 450px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_wcf_l.png) no-repeat;
}
.main_info_inner {
	display: flex;
	flex-wrap: wrap;
	flex-direction: column;
}
.main_info_inner .tit_main_info {}
.main_info_inner .tit_main_info h3 {
	margin-top: 24px;
}
.main_info_inner .tit_main_info .en {
	font-family: 'S-CoreDream-4Regular';
	font-size: 22px;
	color: var(--c-wcf);
	letter-spacing: 0;
}
.main_info_inner .con_main_info {
	font-size: 18px;
	font-weight: 400;
	color: var(--c-gray);
	line-height: 1.6;
	word-break: keep-all;
	overflow-wrap: break-word;
	margin-top: 30px;
}
.main_info_inner .con_main_info strong {
	font-family: 'S-CoreDream-6Bold';
	font-size: 24px;
	color: var(--c-dark);
}
.main_info_inner .btn_stroke {
	width: 320px;
	margin: 80px auto 0 auto;
}

/* main 주요연사 */
.section_main_speaker {
	position: relative;
	background-color: var(--c-light);
}
.main_speaker_inner {
	display: flex;
	align-items: center;
	flex-wrap: wrap;
	flex-direction: column;
}
.main_speaker_inner .tit_main_spker {}
.main_speaker_inner .tit_main_speaker h3 {
	text-align: center;
}
.main_speaker_inner .con_main_speaker {
	width: 100%;
	margin-top: 80px;
}
.main_speaker_list {
	display: grid;
	grid-template-columns: repeat(3, 1fr);
	gap: 20px;
}
.main_speaker_list .spk_item {
	display: flex;
	flex-direction: column;
}
.main_speaker_list .spk_item .spk_box {
	display: flex;
	flex-direction: column;
	word-break: keep-all;
	overflow-wrap: break-word;
	flex: 1;
	background-color: var(--c-bg_lgray);
	transition: 0.3s ease;
}
.main_speaker_list .spk_item:hover .spk_box {
	background-color: var(--c-lhover);
}
.main_speaker_list .spk_item .spk_box .spk_thumb {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
}
.main_speaker_list .spk_item .spk_box .spk_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.main_speaker_list .spk_item .spk_box:hover .spk_thumb img {
	transform: scale(1.05);
}
.main_speaker_list .spk_item .spk_box .spk_name {
	font-family: 'S-CoreDream-6Bold';
	font-size: 20px;
	color: var(--c-dark);
	padding: 20px;
	transition: 0.3s ease;
}
.main_speaker_list .spk_item:hover .spk_box .spk_name {
	color: var(--c-light);
}
.main_speaker_list .spk_item .spk_box .spk_info {
	padding: 0 20px 20px 20px;
	margin-top: auto;
}
.main_speaker_list .spk_item .spk_box .spk_info .organization {
	display: block;
	font-size: 15px;
	color: var(--c-gray);
	transition: 0.3s ease;
}
.main_speaker_list .spk_item .spk_box .spk_info .position {
	display: block;
	font-size: 15px;
	color: var(--c-gray);
	transition: 0.3s ease;
}
.main_speaker_list .spk_item:hover .spk_box .spk_info .organization,
.main_speaker_list .spk_item:hover .spk_box .spk_info .position {
	color: var(--c-light);
}
.main_speaker_list .spk_item .spk_ready .spk_thumb {
	background-color: #84465a;
}
.main_speaker_list .spk_item .spk_ready .spk_thumb:before {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/l_wcf.svg) center no-repeat;
}
.main_speaker_list .spk_item .spk_box:hover.spk_ready .spk_thumb img {
	transform: none;
}
.main_speaker_inner .btn_speaker {
	width: 320px;
	margin-top: 120px;
}

/* main 공지사항 */
.section_main_notice {
	z-index: 0;
	position: relative;
	background-color: #212529;
}
.section_main_notice:before {
	content: '';
	z-index: -1;
	position: absolute;
	inset: 0;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_main_notice.png) center no-repeat;
	background-size: cover;
	opacity: 0.12;
}
.main_notice_inner .tit_main_notice {
	position: relative;
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}
.main_notice_inner .tit_main_notice h3 {
	color: var(--c-light);
}
.main_notice_inner .tit_main_notice .btn_pls {
	font-size: 17px;
	font-weight: 500;
	color: var(--c-wcf);
	transition: 0.3s ease;
}
.main_notice_inner .tit_main_notice .btn_pls span:after {
	margin-left: 10px;
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
	transition: 0.3s ease;
}
.main_notice_inner .tit_main_notice .btn_pls:hover {
	color: var(--c-light);
}
.main_notice_inner .tit_main_notice .btn_pls:hover span:after {
	filter: none;
}
.main_notice_inner .con_main_notice {
	margin-top: 80px;
}
.main_notice_list {
	border-top: 2px solid var(--c-wcf);
}
.main_notice_list .ntc_item {
	border-bottom: 1px solid var(--c-wline_op1);
	transition: 0.3s ease;
}
.main_notice_list .ntc_item:hover {
	border-bottom: 1px solid var(--c-wline_op5);
}
.main_notice_list .ntc_item a {
	display: flex;
	align-items: center;
	justify-content: space-between;
	color: var(--c-light);
	padding: 25px 40px;
	transition: 0.3s ease;
}
.main_notice_list .ntc_item:hover a {
	opacity: 0.6;
}
.main_notice_list .ntc_item .tit {
	display: inline-block;
	font-family: 'S-CoreDream-5Medium';
	font-size: 19px;
	font-weight: 400;
	color: var(--c-light);
}
.main_notice_list .ntc_item .date {
	display: inline-block;
	font-size: 14px;
	font-weight: 300;
	color: var(--c-light);
	letter-spacing: 0;
	margin-left: 15px;
	opacity: 0.6;
}

/* footer */
#footer {
	overflow: hidden;
	position: relative;
	background-color: var(--c-bg_dark);
}
.footer_inner {
	position: relative;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	max-width: 1200px;
	padding: 100px 20px;
	margin: 0 auto;
}
.footer_left {
	flex: 1;
}
.footer_logo {}
.footer_logo .l_mk {
	display: inline-block;
	width: 141px;
	height: 23px;
	vertical-align: middle;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/l_foot_mk.svg) no-repeat;
	background-size: 141px 23px;
}
.footer_logo .l_mbn {
	display: inline-block;
	width: 112px;
	height: 28px;
	vertical-align: middle;
	margin-left: 20px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/l_foot_mbn.svg) no-repeat;
	background-size: 112px 28px;
}
.footer_info {
	display: flex;
	flex-wrap: wrap;
	gap: 80px;
	margin-top: 60px;
}
.footer_info_left p,
.footer_info_right p {
	display: flex;
	align-items: flex-start;
	font-size: 15px;
	color: #747476;
	margin-top: 8px;
}
.footer_info_left p:first-child,
.footer_info_right p:first-child {
	margin-top: 0;
}
.footer_info_left strong,
.footer_info_right strong {
	flex: 0 0 90px;
	color: var(--c-light);
}
.footer_info_left span,
.footer_info_right span {
	flex: 1 1 calc(100% - 90px);
}
.footer_right {
	display: flex;
	align-items: flex-end;
	flex-direction: column;
	gap: 20px;
	margin-top: 97px;
}
.footer_family {
	position: relative;
	width: 230px;
}
.footer_family .btn_family {
	position: relative;
	width: 100%;
	font-size: 14px;
	color: #747476;
	text-align: left;
	padding: 18px 20px;
	border: 1px solid var(--c-wline_op2);
	background-color: transparent;
}
.footer_family .btn_family:after {
	content: '';
	position: absolute;
	top: 50%;
	right: 20px;
	display: inline-block;
	width: 6px;
	height: 6px;
	border-top: 2px solid var(--c-light);
	border-right: 2px solid var(--c-light);
	transform: translate(-50%, -50%) rotate(-45deg);
}
.footer_family .btn_family:hover,
.footer_family.active .btn_family {
	color: #e9eaeb;
	border: 1px solid var(--c-wline_op5);
}
.footer_family.active .btn_family:after {
	margin-top: -2px;
	transform: translate(-50%, -50%) rotate(135deg);
}
.footer_family .family_list {
	overflow-y: auto;
	position: absolute;
	right: 0;
	bottom: 54px;
	left: 0;
	display: none;
	width: 100%;
	max-height: 161px;
}
.footer_family .family_list li {
	border-top: 1px solid var(--c-dline_op1);
	background-color: var(--c-light);
}
.footer_family .family_list li:first-child {
	border-top: 0;
}
.footer_family .family_list li a {
	display: block;
	font-size: 13px;
	padding: 10px 20px;
}
.footer_family .family_list li:hover {
	background-color: var(--c-bg_lgray);
}
.footer_family.active .family_list {
	display: block;
}
.footer_sns {}
.footer_sns a {
	display: inline-block;
	width: 36px;
	height: 36px;
	margin-left: 5px;
	border-radius: 50%;
	background-color: #b7babd;
	transition: 0.3s ease;
}
.footer_sns a:hover {
	background-color: #e9eaeb;
}
.footer_sns a:first-child {
	margin-left: 0;
}
.footer_sns a:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
}
.footer_sns a[aria-label^="email"]:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_f_email.svg) center no-repeat;
	background-size: 16px auto;
}
.footer_sns a[aria-label^="youtube"]:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_f_youtube.svg) center no-repeat;
	background-size: 17px auto;
}
.footer_sns a[aria-label^="tiktok"]:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_f_tiktok.svg) center no-repeat;
	background-size: 16px auto;
}
.footer_sns a[aria-label^="linkedin"]:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_f_linkedin.svg) center no-repeat;
	background-size: auto 16px;
}
.footer_sns a[aria-label^="instagram"]:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_f_instagram.svg) center no-repeat;
	background-size: auto 16px;
}
.footer_sns a[aria-label^="channel"]:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_f_channel.svg) center no-repeat;
	background-size: auto 19px;
}
.footer_copyright {
	padding: 20px 0;
	border-top: 1px solid var(--c-wline_op1);
}
.footer_copyright p {
	font-size: 13px;
	color: #5c5d5e;
	text-align: center;
	letter-spacing: 0;
}

/* quick */
.quick_fixed {
	z-index: 200;
	position: fixed;
	right: 50px;
	bottom: 50px;
	display: none;
	transition: 0.3s ease;
}
.quick_fixed .btn_quick_top {
	position: relative;
	display: block;
	width: 60px;
	height: 60px;
	border-radius: 50%;
	background-color: var(--c-gray);
	box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
	transition: 0.3s ease;
	opacity: 0.9;
}
.quick_fixed .btn_quick_top:hover {
	opacity: 0.6;
}
.quick_fixed .btn_quick_top:before {
	content: '';
	position: absolute;
	top: 50%;
	left: 50%;
	display: block;
	width: 21px;
	height: 16px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arrow.svg) no-repeat;
	transform: translate(-50%, -50%) rotate(-90deg);
}
.quick_fixed.active {
	display: block;
}

/* layer */
.layer_overlay {
	z-index: 9999;
	position: fixed;
	top: 0;
	left: 0;
	display: none;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	background-color: rgba(0, 0, 0, 0.5);
}
.layer_overlay.active {
	display: flex;
}
.layer_pop {
	overflow: hidden;
	position: relative;
	display: none;
	flex-direction: column;
	max-width: 1000px;
	max-height: 90%;
	min-height: 400px;
	width: 90%;
	height: auto;
	border-radius: 10px;
	background-color: var(--c-bg);
	box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}
.layer_pop.active {
	display: flex;
}
.btn_layer_close {
	position: absolute;
	top: 2px;
	right: 2px;
	display: flex;
	align-items: center;
	justify-content: center;
}
.btn_layer_close .btn_line {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	width: 30px;
	height: 30px;
}
.btn_layer_close .btn_line em {
	width: 24px;
	height: 2px;
	background-color: var(--c-dark);
}
.btn_layer_close .btn_line em:nth-child(1) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(-45deg);
}
.btn_layer_close .btn_line em:nth-child(2) {
	-webkit-transform: rotate(-45deg);
	transform: rotate(45deg);
	margin-top: -2px;
}
.layer_pop .pop_container {
	overflow: hidden;
	flex: 1;
	display: flex;
	flex-direction: row;
}
.layer_pop .content_fixed {
	overflow: hidden;
	width: 30%;
	padding: 30px;
	border-right: 1px solid var(--c-dline_op1);
	background-color: var(--c-bg_light);
}
.layer_pop .content_scrollable {
	overflow: hidden;
	flex: 1;
	display: flex;
	flex-direction: column;
	padding: 30px;
}
.layer_pop .content_scroll {
	flex: 1;
	overflow-y: auto;
	font-size: 16px;
	color: var(--c-gray);
	padding-right: 8px;
}
.layer_pop .content_scroll::-webkit-scrollbar {
	width: 6px;
}
.layer_pop .content_scroll::-webkit-scrollbar-track {
	background: #f5f5f5;
	border-radius: 3px;
}
.layer_pop .content_scroll::-webkit-scrollbar-thumb {
	background: #c5c5c5;
	border-radius: 3px;
}
.layer_pop .content_scroll::-webkit-scrollbar-thumb:hover {
	background: #a5a5a5;
}
.layer_pop .content_scroll p {
	font-size: 16px;
	color: var(--c-gray);
	padding: 15px;
	margin-bottom: 15px;
	border-radius: 5px;
	background-color: var(--c-bg_lgray);
}
.layer_pop .speaker_area {
	display: flex;
	flex-direction: column;
}
.layer_pop .speaker_area .speaker_thumb {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
	border-radius: 5px;
}
.layer_pop .speaker_area .speaker_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.layer_pop .speaker_area .speaker_info {
	margin-top: 20px;
}
.layer_pop .speaker_area .speaker_name {
	display: block;
	font-family: 'S-CoreDream-6Bold';
	font-size: 20px;
	font-weight: 500;
	color: var(--c-dark);
}
.layer_pop .speaker_area .organization,
.layer_pop .speaker_area .position {
	display: block;
	font-size: 15px;
	color: var(--c-gray);
	margin-top: 3px;
}
.layer_pop .session_area {
	margin-bottom: 20px;
}
.layer_pop .content_fixed .session_area .tit_area {
	font-size: 20px;
}
.layer_pop .session_area .tit_area {
	font-family: 'S-CoreDream-6Bold';
	font-size: 18px;
	color: var(--c-wcf);
}
.layer_pop .session_area .tit_session {
	position: relative;
	padding-left: 10px;
	margin-top: 3px;
}
.layer_pop .session_area .tit_session:before {
	content: '';
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 0;
	width: 3px;
	height: 3px;
	background-color: var(--c-dhover);
}
.layer_pop .session_area .tit_session a {
	display: inline-block;
	font-size: 16px;
	font-weight: 500;
	color: var(--c-dhover);
	transition: 0.3s ease;
}
.layer_pop .session_area .tit_session a:hover {
	color: var(--c-lhover);
}
.layer_pop .content_fixed .session_area {
	margin-bottom: 0;
}
.layer_pop .content_fixed .session_area .tit_session a {
	font-size: 18px;
}
.layer_pop .session_info_list {
	margin-bottom: 20px;
}
.layer_pop .session_info_list .session_info_item {
	position: relative;
	/* padding-left: 10px; */
	margin-top: 10px;
}
.layer_pop .session_info_list .session_info_item:first-child {
	margin-top: 0;
}
.layer_pop .session_info_list .session_info_item:before {
	/* content: '';
	display: inline-block;
	position: absolute;
	top: 10px;
	left: 0;
	width: 4px;
	height: 4px;
	background-color: var(--c-wcf); */
}
.layer_pop .session_info_list .session_info_item .tit_info {
	display: block;
	font-family: 'S-CoreDream-6Bold';
	font-size: 16px;
	color: var(--c-dark);
}
.layer_pop .session_info_list .session_info_item .con_info {
	position: relative;
	font-size: 16px;
	color: var(--c-dgray);
	padding-left: 8px;
	margin-top: 3px;
}
.layer_pop .session_info_list .session_info_item .con_info a {
	display: inline-block;
	font-size: 16px;
	color: var(--c-dhover);
	transition: 0.3s ease;
}
.layer_pop .session_info_list .session_info_item .con_info a:hover {
	color: var(--c-lhover);
}
.layer_pop .session_info_list .session_info_item .con_info:before {
	content: '·';
	display: inline-block;
	position: absolute;
	top: 0;
	left: 0;
}

/* sub */
.section_sub_visual {}
.sub_visual {
	overflow: hidden;
	position: relative;
	width: 100%;
	height: 360px;
}
.sub_visual .bg_visual {
	z-index: 10;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.sub_visual .bg_visual_01 {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_sub_visual_01.jpg) center no-repeat;
	background-size: cover;
}
.sub_visual .bg_visual_02 {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_sub_visual_02.jpg) center no-repeat;
	background-size: cover;
}
.sub_visual .bg_visual_03 {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_sub_visual_03.jpg) center no-repeat;
	background-size: cover;
}
.sub_visual .bg_visual_04 {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_sub_visual_04.jpg) center no-repeat;
	background-size: cover;
}
.sub_visual .bg_visual_05 {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/bg_sub_visual_05.jpg) center no-repeat;
	background-size: cover;
}
.sub_visual .visual_title_wrap {
	z-index: 11;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: wrap;
	flex-direction: column;
	width: 100%;
	height: 100%;
	min-height: 360px;
	text-align: center;
}
.sub_visual .visual_title_wrap .page_title {
	font-family: 'S-CoreDream-8Heavy';
	font-size: 50px;
	color: var(--c-light);
	padding-top: 60px;
}
.sub_visual .visual_title_wrap .page_depth {
	display: flex;
	align-items: center;
	justify-content: flex-start;
	padding-top: 20px;
}
.sub_visual .visual_title_wrap .page_depth li {
	position: relative;
	font-size: 17px;
	color: var(--c-light);
}
.sub_visual .visual_title_wrap .page_depth li:first-child:before {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_home.svg) center no-repeat;
}
.sub_visual .visual_title_wrap .page_depth li:not(:last-child):after {
	content: '';
	display: inline-block;
	width: 3px;
	height: 3px;
	vertical-align: middle;
	margin: 0 10px;
	border-radius: 50%;
	background: var(--c-light) center no-repeat;
}

.section_sub_inner {
	position: relative;
	max-width: 1200px;
	padding: 120px 20px;
	margin: 0 auto;
}

/* 월드크립토포럼 행사 소개 */
.wcf_info_wrap {}
.tit_wcf_info {}
.tit_wcf_info p {
	font-size: 36px;
	font-weight: 700;
	color: var(--c-dark);
	text-align: center;
}
.tit_wcf_info p strong {
	color: var(--c-wcf);
}
.con_wcf_info {
	display: flex;
	justify-content: space-between;
	gap: 60px;
	margin-top: 80px;
}
.con_wcf_info .img_info {
	flex: 1;
}
.con_wcf_info .img_info img {
	max-width: 550px;
	width: 100%;
	height: auto;
}
.con_wcf_info .txt_info {
	flex: 1;
}
.con_wcf_info .txt_info p {
	font-size: 18px;
	color: var(--c-dgray);
	line-height: 1.6;
	word-break: keep-all;
	overflow-wrap: break-word;
	margin-top: 30px;
}
.con_wcf_info .txt_info p:first-child {
	margin-top: 0;
}

/* 월드크립토포럼 인사말 */
.ceo_box {
	display: flex;
	gap: 60px;
	width: 100%;
}
.ceo_box .ceo_image {
	flex: 0 0 33.333%;
	max-width: 380px;
}
.ceo_box .ceo_image .ceo_img {}
.ceo_box .ceo_image .ceo_img .ceo_photo {
	width: 100%;
	height: auto;
}
.ceo_box .ceo_image .ceo_info {
	display: flex;
	align-items: center;
	flex-direction: column;
}
.ceo_box .ceo_image .ceo_info .ceo_name {
	font-size: 19px;
	font-weight: 500;
	color: var(--c-dark);
	text-align: center;
	margin-top: 20px;
}
.ceo_box .ceo_image .ceo_info .ceo_sign {
	width: 75%;
	margin-top: 20px;
}
.ceo_box .ceo_cont {
	flex: 1 1 66.6667%;
}
.ceo_box .ceo_cont .ceo_intro {}
.ceo_box .ceo_cont .ceo_intro p {
	font-size: 36px;
	font-weight: 700;
	color: var(--c-dark);
}
.ceo_box .ceo_cont .ceo_intro p strong {
	color: var(--c-wcf);
}
.ceo_box .ceo_cont .ceo_txt {
	margin-top: 60px;
}
.ceo_box .ceo_cont .ceo_txt p {
	font-size: 18px;
	font-weight: 400;
	color: var(--c-dgray);
	line-height: 1.6;
	margin-top: 30px;
}

/* 월드크립토포럼 행사장 안내 */
.wcf_map_wrap {}
.tit_wcf_map {}
.tit_wcf_map h1 {
	font-size: 36px;
	font-weight: 700;
	color: var(--c-dark);
	text-align: center;
}
.wcf_map_addr {
	display: flex;
	align-items: center;
	justify-content: center;
}
.wcf_map_addr .map_addr_list {
	display: flex;
	flex-direction: column;
}
.wcf_map_addr .map_addr_item {
	display: flex;
	margin-top: 20px;
}
.wcf_map_addr .map_addr_item:first-child {
	margin-top: 0;
}
.wcf_map_addr .map_addr_item .tit_addr {
	flex-shrink: 0;
	width: 130px;
	font-weight: 600;
	font-size: 18px;
	color: var(--c-dark);
}
.wcf_map_addr .map_addr_item .con_addr {}
.wcf_map_addr .map_addr_item .con_addr span {
	display: inline-block;
	font-size: 18px;
	color: var(--c-dgray);
}
.wcf_map_addr .map_addr_item .con_addr span em {
	color: var(--c-wcf);
}
.wcf_map_addr .map_addr_item .con_addr span + span:before {
	content: '';
	display: inline-block;
	width: 1px;
	height: 20px;
	vertical-align: middle;
	margin: 0 15px;
	background-color: var(--c-dline_op1);
}
.wcf_map_addr .map_addr_item .ic_map:before {
	content: '';
	display: inline-block;
}
.wcf_map_addr .map_addr_item .ic_line:before {
	position: relative;
	top: -1px;
	display: inline-block;
	width: 24px;
	height: 24px;
	font-weight: 500;
	font-size: 15px;
	color: var(--c-light);
	line-height: 24px;
	text-align: center;
	vertical-align: middle;
	border-radius: 50%;
	margin-right: 5px;
}
.wcf_map_addr .map_addr_item .ic_line1:before {
	content: '1';
	background-color: #263c96;
}
.wcf_map_addr .map_addr_item .ic_line2:before {
	content: '2';
	background-color: #3cb44a;
}
.wcf_map_addr .map_addr_item .ic_line3:before {
	content: '3';
	background-color: #f06e00;
}
.wcf_map_addr .map_addr_item .ic_line4:before {
	content: '4';
	background-color: #2c9ede;
}
.wcf_map_addr .map_addr_item .ic_line5:before {
	content: '5';
	background-color: #8936e0;
}
.wcf_map_addr .map_addr_item .ic_line6:before {
	content: '6';
	background-color: #b5500b;
}
.wcf_map_addr .map_addr_item .ic_line7:before {
	content: '7';
	background-color: #697215;
}
.wcf_map_addr .map_addr_item .ic_line8:before {
	content: '8';
	background-color: #e51e6e;
}
.wcf_map_addr .map_addr_item .ic_line9:before {
	content: '9';
	background-color: #d1a62c;
}
.wcf_map_area {
	width: 100%;
	height: 500px;
	margin-top: 80px;
}
.wcf_map_area iframe {
	width: 100%;
	height: 100%;
}

/* 월드크립토포럼 매경미디어그룹 */
.mkgroup_wrap {}
.mkgroup_list {
	border-top: 1px solid var(--c-dline_op1);
}
.mkgroup_list .mkgroup_item {
	display: flex;
	align-items: stretch;
	padding: 30px 0;
	border-bottom: 1px solid var(--c-dline_op1);
}
.mkgroup_list .mkgroup_item .mkgroup_logo {
	overflow: hidden;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 300px;
	width: 30%;
	min-height: 140px;
	background-color: var(--c-bg_light);
}
.mkgroup_list .mkgroup_item .mkgroup_logo img {
	max-width: 100%;
	max-height: 100%;
	object-fit: contain;
}
.mkgroup_list .mkgroup_item .mkgroup_cont {
	display: flex;
	justify-content: center;
	flex-direction: column;
	width: 100%;
	margin-left: 30px;
}
.mkgroup_list .mkgroup_item .mkgroup_cont .tit {
	font-family: 'S-CoreDream-6Bold';
	font-size: 20px;
	color: var(--c-dark);
}
.mkgroup_list .mkgroup_item .mkgroup_cont .con {
	font-size: 16px;
	color: var(--c-gray);
	line-height: 1.6;
	word-break: keep-all;
	overflow-wrap: break-word;
	margin-top: 10px;
}

/* 월드크립토포럼 파트너 */
.partner_grouping {
	margin-top: 60px;
}
.partner_grouping:first-child {
	margin-top: 0;
}
.partner_grouping .partner_head {
	overflow: hidden;
	position: relative;
	font-family: 'S-CoreDream-6Bold';
	font-size: 26px;
	color: var(--c-dark);
	padding-left: 25px;
}
.partner_grouping .partner_head::before {
	content: '';
	position: absolute;
	top: 50%;
	left: 0;
	display: inline-block;
	width: 16px;
	height: 30px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_wcf.svg) no-repeat;
	background-size: 16px 30px;
	transform: translateY(-50%);
}
.partner_grouping .partner_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
	margin-top: 20px;
}
.partner_grouping .partner_item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	height: 200px;
	padding: 40px;
	border: 1px solid var(--c-dline_op1);
}
.partner_grouping .partner_item img {
	max-width: 100%;
	max-height: 100%;
}

/* filter */
.filter_wrap {
	padding: 40px 20px;
	background-color: var(--c-bg_lgray);
}
.filter_wrap .filter_box {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	width: 100%;
	max-width: 800px;
	margin: 0 auto;
}
.filter_wrap .filter_box .sel,
.filter_wrap .filter_box .inp_search {
	overflow: hidden;
	position: relative;
	border: 1px solid var(--c-dline_op1);
	border-radius: 5px;
	background-color: var(--c-bg);
}
.filter_wrap .filter_box .sel {
	margin-left: 10px;
}
.filter_wrap .filter_box .sel:first-child {
	margin-left: 0;
}
.filter_wrap .filter_box .sel:after {
	content: '';
	position: absolute;
	top: 17px;
	right: 15px;
	width: 8px;
	height: 8px;
	border: solid var(--c-dark);
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}
.filter_wrap .filter_box .sel select,
.filter_wrap .filter_box .inp input {
	width: 100%;
	font-size: 15px;
	color: var(--c-dark);
	line-height: 50px;
	padding: 0 15px;
}
.filter_wrap .filter_box .sel select {
	background-color: var(--c-light);
	cursor: pointer;
}
.filter_wrap .filter_box .inp_search {
	display: flex;
	align-items: center;
	margin-left: 10px;
}
.filter_wrap .filter_box .inp_search .inp {
	width: calc(100% - 50px);
}
.filter_wrap .filter_box .inp_search .btn_search {
	width: 50px;
	height: 48px;
	border-left: 1px solid var(--c-dline_op1);
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_search.svg) center no-repeat;
}
.filter_wrap .filter_box.option .sel,
.filter_wrap .filter_box.option2 .sel {
	width: 25%;
}
.filter_wrap .filter_box.option .inp_search {
	width: 75%;
}
.filter_wrap .filter_box.option2 .inp_search {
	width: 50%;
}

/* 프로그램 세션 */
/*.session_wrap {
	margin-top: 80px;
}*/
.session_tabs {
	display: flex;
	gap: 1px;
	width: 100%;
}
.session_tabs .tab_btn {
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	height: 100px;
	color: var(--c-lgray);
	background-color: #F5F6F7;
}
.session_tabs .tab_btn strong {
	font-family: 'S-CoreDream-6Bold';
	font-size: 24px;
}
.session_tabs .tab_btn span {
	font-family: 'S-CoreDream-4Regular';
	font-size: 18px;
	margin-top: 5px;
}
.session_tabs .tab_btn:hover {
	color: var(--c-wcf);
}
.session_tabs .tab_btn.active {
	color: var(--c-light);
	background-color: var(--c-wcf);
}

.session_content {
	display: none;
}
.session_content.active {
	display: block;
}
.venue_select_area {
	display: none;
}
.venue_select_area label {
	display: none;
}
.venue_select_area .sel_venue {
	overflow: hidden;
	position: relative;
	margin-top: 15px;
	border: 1px solid var(--c-wcf);
	border-radius: 5px;
	background-color: var(--c-bg);
}
.venue_select_area .sel_venue select {
	overflow: hidden;
	width: 100%;
	font-family: 'S-CoreDream-6Bold';
	font-size: 15px;
	color: var(--c-wcf);
	line-height: 40px;
	padding: 0 30px 0 15px;
	white-space: nowrap;
	text-overflow: ellipsis;
	cursor: pointer;
}
.venue_select_area .sel_venue::after {
	content: '';
	position: absolute;
	top: 15px;
	right: 12px;
	width: 6px;
	height: 6px;
	border: solid var(--c-wcf);
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}

.schedule_area {
	overflow: hidden;
	width: 100%;
	margin-top: 30px;
}
.schedule_area .schedule_venue {
	display: flex;
	align-items: center;
}
.schedule_venue .tab_btn {
	position: relative;
	flex: 1;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 60px;
	font-family: 'S-CoreDream-6Bold';
	font-size: 16px;
	color: var(--c-lgray);
	text-align: center;
	padding: 0 20px;
	border-top: 1px solid var(--c-dline_op1);
	border-right: 1px solid var(--c-dline_op1);
	border-bottom: 1px solid var(--c-dline_op1);
	background-color: var(--c-bg_lgray);
}
.schedule_venue .tab_btn:first-child {
	border-left: 1px solid var(--c-dline_op1);
}
.schedule_venue .tab_btn:hover {
	color: var(--c-wcf);
}
.schedule_venue .tab_btn.active {
	color: var(--c-wcf);
	background-color: var(--c-bg);
}
.schedule_venue .tab_btn.active::after {
	content: '';
	position: absolute;
	right: 0;
	bottom: -1px;
	left: 0;
	display: block;
	width: 100%;
	height: 3px;
	background-color: var(--c-wcf);
}
.schedule_box {
	display: none;
}
.schedule_box.active {
	display: block;
}
.schedule_area .schedule_row {
	display: flex;
	align-items: stretch;
	width: 100%;
}
.schedule_area .schedule_cell {
	flex: 1 1 0;
	padding: 20px;
	border-right: 1px solid var(--c-dline_op1);
	border-bottom: 1px solid var(--c-dline_op1);
}
.schedule_area .schedule_cell:first-child {
	border-left: 1px solid var(--c-dline_op1);
}
.schedule_area .schedule_cell a {
	display: block;
}
.schedule_area .schedule_cell a:hover {
	color: var(--c-wcf);
}
.schedule_area .session_time {
	flex: 0 0 200px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	font-weight: 500;
	color: #84465A;
	background-color: var(--c-bg_light);
}
.schedule_area .session_subj {
	display: flex;
	align-items: center;
}
.schedule_area .session_subj .subj_tit {
	font-family: 'S-CoreDream-5Medium';
	font-size: 17px;
	color: var(--c-dark);
}
.schedule_area .session_subj a .subj_tit::after {
	content: '';
	position: relative;
	top: -2px;
	display: inline-block;
	width: 7px;
	height: 7px;
	margin-left: 5px;
	border: solid var(--c-wcf);
	border-width: 0 2px 2px 0;
	transform: rotate(-45deg);
}
.schedule_area .session_spkr {
	display: flex;
	justify-content: center;
	flex-direction: column;
	background-color: #fcfcfc;
}
.schedule_area .session_spkr .spkr_name {
	display: inline-block;
	font-family: 'S-CoreDream-5Medium';
	font-size: 14px;
	color: var(--c-dgray);
}
.schedule_area .session_spkr .spkr_name + .spkr_name {
	display: block;
}
.schedule_area .session_spkr .spkr_info {
	display: inline-block;
	font-size: 14px;
	font-weight: 400;
	color: var(--c-gray);
	margin-left: 3px;
}
.schedule_area .schedule_cell a:hover span {
	color: var(--c-wcf);
}
.schedule_area .session_lunch {
	font-family: 'S-CoreDream-5Medium';
	font-size: 18px;
	color: #84465A;
	text-align: center;
	background-color: #FEF7F9;
}

/* 연사소개 연사 리스트 */
.speaker_list_wrap {
	margin-top: 80px;
}
.speaker_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.speaker_list .speaker_item {
	display: flex;
	flex-direction: column;
}
.speaker_list .speaker_item .speaker_box {
	display: flex;
	flex-direction: column;
	word-break: keep-all;
	overflow-wrap: break-word;
	flex: 1;
	background-color: var(--c-bg_lgray);
}
.speaker_list .speaker_item:hover .speaker_box {
	background-color: var(--c-lhover);
}
.speaker_list .speaker_item .speaker_box .speaker_thumb {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
}
.speaker_list .speaker_item .speaker_box .speaker_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.speaker_list .speaker_item .speaker_box:hover .speaker_thumb img {
	transform: scale(1.05);
}
.speaker_list .speaker_item .speaker_box .speaker_name {
	font-family: 'S-CoreDream-6Bold';
	font-size: 20px;
	color: var(--c-dark);
	padding: 15px;
	transition: 0.3s ease;
}
.speaker_list .speaker_item:hover .speaker_box .speaker_name {
	color: var(--c-light);
}
.speaker_list .speaker_item .speaker_box .speaker_info {
	padding: 0 15px 15px 15px;
	margin-top: auto;
}
.speaker_list .speaker_item .speaker_box .speaker_info .organization {
	display: block;
	font-size: 14px;
	color: var(--c-lgray);
	transition: 0.3s ease;
}
.speaker_list .speaker_item .speaker_box .speaker_info .position {
	display: block;
	font-size: 14px;
	color: var(--c-lgray);
	margin-top: 5px;
	transition: 0.3s ease;
}
.speaker_list .speaker_item:hover .speaker_box .speaker_info .organization,
.speaker_list .speaker_item:hover .speaker_box .speaker_info .position {
	color: var(--c-light);
}
.speaker_list .speaker_item .speaker_ready .speaker_thumb {
	background-color: #84465a;
}
.speaker_list .speaker_item .speaker_ready .speaker_thumb:before {
	content: '';
	display: inline-block;
	width: 100%;
	height: 100%;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/l_wcf.svg) center no-repeat;
	background-size: 30% 30%;
}
.speaker_list .speaker_item .speaker_box:hover.speaker_ready .speaker_thumb img {
	transform: none;
}

/* 참가신청 안내 */
.form_inbox {
	padding: 20px 40px 40px 40px;
	background-color: var(--c-bg);
}
.inbox_btn_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
	margin-top: 40px;
}
.inbox_btn_area a {
	width: 100%;
	max-width: 200px;
}
.price_con_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.price_con_area .price_con_box {
	width: 100%;
	max-width: 400px;
	text-align: center;
	padding: 30px;
	margin-top: 20px;
	border: 1px solid var(--c-dline_op1);
	background-color: var(--c-bg_light);
}
.price_con_area .price_con_box span {
	display: block;
	font-size: 18px;
	font-weight: 500;
	color: #84465a;
}
.price_con_area .price_con_box em {
	font-size: 15px;
	font-weight: 400;
	color: var(--c-lgray);
	letter-spacing: 0;
	margin-top: 8px;
}
.price_con_area .price_con_box strong {
	display: block;
	font-size: 22px;
	font-weight: 500;
	color: var(--c-wcf);
	letter-spacing: 0;
	margin-top: 10px;
}

/* 참가신청 등록, 등록확인 */
.section_form {
	background-color: var(--c-bg_lgray);
}
.section_form .form_inner {
	position: relative;
	max-width: 800px;
	margin: 0 auto;
}
.section_form .form_box {
	margin-top: 80px;
}
.section_form .form_box:first-child {
	margin-top: 0;
}
.section_form .tit_form {
	overflow: hidden;
	position: relative;
	font-family: 'S-CoreDream-6Bold';
	font-size: 22px;
	color: var(--c-dark);
	padding: 0 0 20px 25px;
	border-bottom: 1px solid var(--c-wcf);
}
.section_form .tit_form:before {
	content: '';
	position: absolute;
	top: 2px;
	left: 0;
	display: inline-block;
	width: 16px;
	height: 30px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_wcf.svg) no-repeat;
	background-size: 16px 30px;
}
.section_form .stit_form {
	position: relative;
	font-size: 18px;
	font-weight: 600;
	color: #84465a;
	padding-left: 30px;
	margin-top: 20px;
}
.section_form .stit_form:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_circle_arr.svg) no-repeat;
}
.section_form .dot_list {
	margin-top: 20px;
}
.section_form .dot_list li {
	position: relative;
	font-size: 15px;
	font-weight: 400;
	color: var(--c-lgray);
	padding-left: 12px;
	margin-top: 6px;
}
.section_form .dot_list li em {
	color: var(--c-wcf);
}
.section_form .dot_list li:first-child {
	margin-top: 0;
}
.section_form .dot_list li:before {
	content: '';
	position: absolute;
	top: 8px;
	left: 0;
	display: inline-block;
	width: 3px;
	height: 3px;
	border-radius: 50%;
	background-color: var(--c-wcf);
}
.section_form .dot_con_list {
	margin-top: 20px;
}
.section_form .dot_con_list li {
	position: relative;
	font-size: 16px;
	font-weight: 400;
	color: var(--c-dark);
	padding-left: 12px;
	margin-top: 8px;
}
.section_form .dot_con_list li em {
	color: var(--c-wcf);
}
.section_form .dot_con_list li:first-child {
	margin-top: 0;
}
.section_form .dot_con_list li:before {
	content: '';
	position: absolute;
	top: 9px;
	left: 0;
	display: inline-block;
	width: 4px;
	height: 4px;
	border-radius: 50%;
	background-color: var(--c-wcf);
}
.section_form .bang_list {
	margin-top: 20px;
}
.section_form .bang_list li {
	position: relative;
	font-size: 15px;
	font-weight: 400;
	color: var(--c-lgray);
	padding-left: 30px;
	margin-top: 6px;
}
.section_form .bang_list li:first-child {
	margin-top: 0;
}
.section_form .bang_list li:before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_bang.svg) no-repeat;
}
.section_form .bang_list li .es {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: var(--c-wcf);
	margin-right: 5px;
}
.section_form .privacy_check {
	display: inline-flex;
	align-items: center;
	font-size: 18px;
	font-weight: 500;
	color: var(--c-dark);
	margin-top: 20px;
	cursor: pointer;
	user-select: none;
}
.section_form .privacy_check em {
	font-size: 15px;
	font-weight: 400;
	color: var(--c-wcf);
	margin-right: 5px;
}
.section_form .privacy_check input[type="checkbox"] {
	display: none;
}
.section_form .privacy_check .checkbox_mark {
	position: relative;
	width: 24px;
	height: 24px;
	border-radius: 3px;
	margin-right: 15px;
	border: 1px solid var(--c-dline_op2);
	background-color: #fff;
	box-sizing: border-box;
	transition: 0.2s;
}
.section_form .privacy_check input[type="checkbox"]:checked + .checkbox_mark:after {
	content: '';
	position: absolute;
	top: 2px;
	left: 7px;
	width: 6px;
	height: 12px;
	border: solid #fff;
	border-width: 0 2px 2px 0;
	transform: rotate(45deg);
}
.section_form .privacy_check input[type="checkbox"]:checked + .checkbox_mark {
	border: 1px solid var(--c-wcf);
	background-color: var(--c-wcf);
}
.section_form .privacy_check_con {
	overflow-y: auto;
	max-height: 150px;
	font-size: 14px;
	font-weight: 400;
	color: var(--c-lgray);
	padding: 20px;
	margin-top: 15px;
	border: 1px solid var(--c-dline_op1);
	background-color: var(--c-bg);
	box-sizing: border-box;
}
.section_form .tbl_privacy {
	width: 100%;
}
.section_form .tbl_privacy .tr_privacy_top,
.section_form .tbl_privacy .tr_privacy {
	display: flex;
	align-items: center;
	justify-self: space-between;
	width: 100%;
}
.section_form .tbl_privacy .tr_privacy_top {
	border-top: 1px solid var(--c-dark);
	border-bottom: 1px solid var(--c-dline_op1);
	background-color: var(--c-bg_light);
}
.section_form .tbl_privacy .tr_privacy {
	border-bottom: 1px solid var(--c-dline_op1);
}
.section_form .tbl_privacy .tr_privacy_top .th,
.section_form .tbl_privacy .tr_privacy .td {
	flex: 0 0 33.3333%;
	font-size: 14px;
	font-weight: 400;
	color: var(--c-lgray);
	text-align: center;
	padding: 12px 0;
}

.section_form .input_area {
	margin-top: 20px;
}
.section_form .input_area .input_row {
	display: flex;
	align-items: center;
	flex-direction: row;
	width: 100%;
	min-height: 80px;
	padding: 15px 0;
	border-bottom: 1px solid var(--c-dline_op1);
}
.section_form .input_area .input_row:first-child {
	border-top: 1px solid var(--c-dline_op1);
}
.section_form .input_area .input_row .inp_tit {
	flex: 0 0 33.3333%;
	font-size: 16px;
	font-weight: 500;
	color: var(--c-dgray);
}
.section_form .input_area .input_row .inp_tit .brk {
	display: block;
	font-size: 15px;
	font-weight: 400;
	color: var(--c-gray);
}
.section_form .input_area .input_row .inp_tit .en {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	margin-left: 5px;
}
.section_form .input_area .input_row .inp_tit.es:after {
	content: '*';
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: var(--c-wcf);
	margin-left: 5px;
}
.section_form .input_area .input_row .inp_con {
	flex: 1;
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.section_form .input_area .input_row .inp_con .inp_box {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 10px;
	font-size: 15px;
	color: var(--c-dgray);
}
.section_form .input_area .input_row .inp_con .inp,
.section_form .input_area .input_row .inp_con .sel {
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 420px;
}
.section_form .input_area .input_row .inp_con .sel:after {
	content: '';
	position: absolute;
	top: 17px;
	right: 15px;
	width: 8px;
	height: 8px;
	border: solid var(--c-dark);
	border-width: 0 1px 1px 0;
	transform: rotate(45deg);
}
.section_form .input_area .input_row .inp_con .inp input,
.section_form .input_area .input_row .inp_con .sel select {
	width: 100%;
	font-size: 15px;
	color: var(--c-dark);
	line-height: 50px;
	padding: 0 15px;
	border: 1px solid var(--c-dline_op1);
	border-radius: 5px;
	background-color: var(--c-bg);
}
.section_form .input_area .input_row .inp_con .inp input:focus:not([readonly]),
.section_form .input_area .input_row .inp_con .sel select:focus {
	border: 1px solid var(--c-wcf);
}
.section_form .input_area .input_row .inp_con .inp input[readonly]:focus {
	border: 1px solid var(--c-dline_op1);
}
.section_form .input_area .input_row .inp_con .sel select {
	background-color: var(--c-light);
	cursor: pointer;
}
.section_form .input_area .input_row .inp_con .inp_col2,
.section_form .input_area .input_row .inp_con .sel_col2 {
	max-width: 205px !important;
}
.section_form .input_area .input_row .inp_con .inp_col3,
.section_form .input_area .input_row .inp_con .sel_col3 {
	max-width: 133px !important;
}
.section_form .input_area .input_price .inp_tit {
	flex: 0 0 60%;
}
.section_form .input_area .input_price .inp_con {
	justify-content: space-between;
	gap: 20px;
}
.section_form .input_area .input_price .inp_con .txt_price {
	flex: 0 0 50%;
}
.section_form .input_area .input_row .inp_con .class_radio_group {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	gap: 10px;
}
.section_form .input_area .input_row .inp_con .class_radio_group input[type="radio"] {
	display: none;
}
.section_form .input_area .input_row .inp_con .class_radio_group label {
	display: inline-block;
	font-size: 15px;
	font-weight: 400;
	color: var(--c-gray);
	text-align: center;
	padding: 8px 30px 7px 30px;
	border: 2px solid #ccc;
	border-radius: 50px;
	background-color: #fff;
	cursor: pointer;
	transition: all 0.2s ease;
	user-select: none;
}
.section_form .input_area .input_row .inp_con .class_radio_group input[type="radio"]:checked + label {
	font-weight: 500;
	color: var(--c-wcf);
	border-color: var(--c-wcf);
	background-color: #fef2f6;
}
.section_form .input_area .input_row .inp_con .info {
	display: block;
	font-size: 14px;
	font-weight: 400;
	color: var(--c-lgray);
	margin-top: 10px;
}
.section_form .input_area .input_row .inp_con .txt_price {
	font-size: 20px;
	font-weight: 500;
	color: var(--c-wcf);
	letter-spacing: 0;
}
.section_form .input_area .input_row .inp_con .tit_question_etc {
	font-size: 16px;
	font-weight: 500;
	color: var(--c-dgray);
	margin-bottom: 20px;
}
.section_form .input_area .input_row .inp_con .lbl_radio_group {
	display: flex;
}
.section_form .input_area .input_row .inp_con .radio_box {}
.section_form .input_area .input_row .inp_con .radio_box .lbl_radio {
	position: relative;
	display: inline-block;
	align-items: center;
	font-size: 15px;
	font-weight: 400;
	color: var(--c-dgray);
	padding-left: 35px;
	cursor: pointer;
	user-select: none;
}
.section_form .input_area .input_row .inp_con .radio_box .lbl_radio input[type="radio"] {
	display: none;
}
.section_form .input_area .input_row .inp_con .radio_box .lbl_radio .radio_mark {
	position: absolute;
	left: 0;
	top: 50%;
	height: 24px;
	width: 24px;
	border: 1px solid var(--c-dline_op1);
	border-radius: 50%;
	background-color: var(--c-light);
	transform: translateY(-50%);
	transition: all 0.3s;
}
.section_form .input_area .input_row .inp_con .radio_box .lbl_radio input[type="radio"]:checked + .radio_mark {
	border-color: var(--c-wcf);
	background-color: var(--c-wcf);
}
.section_form .input_area .input_row .inp_con .radio_box .lbl_radio input[type="radio"]:checked + .radio_mark:after {
	content: '';
	position: absolute;
	left: 6px;
	top: 6px;
	width: 10px;
	height: 10px;
	border-radius: 50%;
	background-color: var(--c-light);
}
.section_form .input_area .input_row .inp_con .col2_radio_group .radio_box,
.section_form .input_area .input_row .inp_con .payment_radio_group .radio_box,
.section_form .input_area .input_row .inp_con .taxbill_radio_group .radio_box,
.section_form .input_area .input_row .inp_con .gender_radio_group .radio_box {
	width: 50%;
}

.section_form .payment_credit_card,
.section_form .payment_bank_transfer {}
.section_form .bank_account_info {
	margin-top: 20px;
}
.section_form .bank_account_info p {
	display: block;
	font-size: 18px;
	color: var(--c-wcf);
	word-break: break-all;
}
.section_form .payment_bank_transfer .frommonth,
.section_form .payment_bank_transfer .fromday {
	max-width: 140px !important;
}
.section_form .taxbill_info .input_area {
	margin-top: 0;
}
.section_form .taxbill_info .input_area .input_row:first-child {
	border-top: none;
}
.section_form .tax_zipcode {
	max-width: 200px !important;
}
.section_form .btn_sch_zipcode {
	font-size: 15px;
	color: var(--c-light);
	line-height: 50px;
	padding: 0 15px;
	background: var(--c-gray);
	white-space: nowrap;
}

.section_form .input_area .input_row .inp_con .etc_radio_group {
	flex-wrap: wrap;
	gap: 20px;
}
.section_form .input_area .input_row .inp_con .etc_radio_group .radio_box {
	width: 100%;
}
.section_form .input_area .input_row .inp_con .etc_radio_group .radio_box .inp {
	display: inline-block;
	width: 50%;
	max-width: 200px;
	vertical-align: middle;
	margin-left: 10px;
}
.section_form .input_area .input_row .inp_con .etc_radio_group .radio_box .inp input[type="text"] {
	line-height: 40px;
}

.section_btn_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 20px;
	margin-top: 80px;
}
.section_btn_area a {
	width: 100%;
	max-width: 200px;
}


/* 참가코드 입력 */
.section_form .inp_code{
	max-width: 320px !important;
}
.section_form .btn_code_chk {
	font-size: 15px;
	color: var(--c-light);
	line-height: 50px;
	padding: 0 30px;
	background: var(--c-wcf);
	white-space: nowrap;
}

/* 프레스 신청 */

/* 파트너 등록신청 */
.section_form .button_area {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	margin-top: 40px;
}
.section_form .button_area .btn_form_add {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 15px;
	color: var(--c-light);
	line-height: 40px;
	padding: 0 15px;
	background-color: var(--c-wcf);
}
.section_form .button_area .btn_form_add span::before {
	content: '';
	position: relative;
	top: -1px;
	display: inline-block;
	width: 15px;
	height: 15px;
	vertical-align: middle;
	margin-right: 8px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_plus.svg) no-repeat;
	background-size: 15px 15px;
}
.section_form .unit {
	display: inline-block;
	font-size: 20px;
}
.section_form .file_box {
	overflow: hidden;
	position: relative;
	width: 100%;
	max-width: 420px;
	height: 52px;
	border: 1px solid var(--c-dline_op1);
	border-radius: 5px;
	background-color: var(--c-bg);
} 
.section_form .file_box label {
	position: relative;
	display: flex;
	align-items: center;
	padding: 5px;
}
.section_form .file_box label input[type=file] {
	position: absolute;
	top: 0;
	left: 0;
	width: 0;
	height: 0;
	opacity: 0;
} 
.section_form .file_box label em {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100px;
	height: 40px;
	font-size: 15px;
	color: var(--c-light);
	background: var(--c-wcf);
	cursor: pointer;
} 
.section_form .file_box label span {
	font-size: 15px;
	color: var(--c-dark);
	margin-left: 20px;
}

/* 신청 결과 */
.result_con_area,
.confirm_con_area {
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 10px;
}
.result_con_area .result_con_box,
.confirm_con_area .confirm_con_box {
	text-align: center;
	padding: 20px 0 0 0;
}
.result_con_area .result_con_box::before,
.confirm_con_area .confirm_con_box::before {
	content: '';
	display: block;
	height: 50px;
	margin-bottom: 15px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_result.svg) top center no-repeat;
}
.result_con_area .result_con_box p,
.confirm_con_area .confirm_con_box p {
	display: block;
	font-family: 'S-CoreDream-6Bold';
	font-size: 26px;
	color: var(--c-dark);
}
.result_con_area .result_con_box span,
.confirm_con_area .confirm_con_box span {
	display: inline-block;
	font-size: 16px;
	font-weight: 400;
	color: var(--c-gray);
	letter-spacing: 0;
	margin-top: 8px;
}

/* 등록 확인 목록 */
.btn_other_confirm {
	float: right;
	display: inline-block;
	font-size: 14px;
	font-weight: 500;
	color: var(--c-wcf);
	padding: 6px 10px 5px 10px;
	border: 2px solid var(--c-wcf);
}
.tbl_confirm_wrap {
	overflow: hidden;
}
.tbl_confirm {
	display: grid;
}
.tbl_confirm.tbl_col2 {
	grid-template-columns: repeat(2, 1fr);
}
.tbl_confirm.tbl_col3 {
	grid-template-columns: repeat(3, 1fr);
}
.tbl_confirm.tbl_col4 {
	grid-template-columns: repeat(4, 1fr);
}
.tbl_confirm.tbl_col5 {
	grid-template-columns: repeat(5, 1fr);
}
.tbl_confirm.tbl_col6 {
	grid-template-columns: repeat(6, 1fr);
}
.tbl_confirm .tbl_header_row {
	display: contents;
}
.tbl_confirm .tbl_row {
	display: contents;
}
.tbl_confirm .tbl_cell {
	display: flex;
	align-items: center;
	justify-content: center;
	text-align: center;
	padding: 12px 15px;
	border-bottom: 1px solid var(--c-dline_op1);
	background-color: var(--c-bg);
}
.tbl_confirm .tbl_header {
	font-size: 16px;
	font-weight: 600;
	color: var(--c-dgray);
	background-color: var(--c-bg_light);
}
.tbl_confirm .tbl_cell .txt {
	display: inline-block;
	font-size: 16px;
	color: var(--c-dark);
}
.tbl_confirm .tbl_cell .txt_completed {
	color: var(--c-wcf);
}
.tbl_confirm .btn_confirm_detail {
	display: inline-block;
	font-size: 15px;
	color: var(--c-light);
	line-height: 40px;
	padding: 0 30px;
	background: var(--c-wcf);
}

/* 등록 확인 상세 */
.tbl_regist_wrap {
	overflow: hidden;
}
.tbl_regist {
	display: grid;
	margin-top: 20px;
	border-top: 1px solid var(--c-wcf);
}
.tbl_regist.tbl_col2 {
	grid-template-columns: repeat(2, 1fr);
}
.tbl_regist.tbl_col3 {
	grid-template-columns: repeat(3, 1fr);
}
.tbl_regist.tbl_col4 {
	grid-template-columns: repeat(4, 1fr);
}
.tbl_regist.tbl_col5 {
	grid-template-columns: repeat(5, 1fr);
}
.tbl_regist.tbl_col6 {
	grid-template-columns: repeat(6, 1fr);
}
.tbl_regist .tbl_header_row {
	display: contents;
}
.tbl_regist .tbl_row {
	display: contents;
}
.tbl_regist .tbl_cell {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 16px;
	color: var(--c-dark);
	text-align: center;
	padding: 15px;
	border-bottom: 1px solid var(--c-dline_op1);
	background-color: var(--c-bg);
}
.tbl_regist .tbl_header {
	font-size: 16px;
	font-weight: 600;
	color: var(--c-dgray);
	background-color: var(--c-bg_light);
}

/* 참가신청 FAQ */
.faq_wrap {
	margin-top: 80px;
}
.faq_item {
	border-bottom: 1px solid var(--c-dline_op1);
}
.faq_item:first-child {
	border-top: 1px solid var(--c-dline_op1);
}
.faq_item.active {
	border-bottom: 1px solid var(--c-wcf);
}
.faq_question {
	position: relative;
	display: block;
	font-family: 'S-CoreDream-6Bold';
	font-size: 20px;
	color: var(--c-dark);
	padding: 30px 30px 30px 35px;
}
.faq_question:before {
	content: 'Q.';
	display: inline-block;
	position: absolute;
	top: 24px;
	left: 0;
	font-family: 'S-CoreDream-8Heavy';
	font-size: 26px;
	color: var(--c-dark);
}
.faq_item .faq_question:after {
	content: '';
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 0;
	width: 20px;
	height: 20px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_plus.svg) no-repeat;
	transform: translateY(-50%);
	filter: brightness(0) saturate(100%) invert(0%) sepia(94%) saturate(25%) hue-rotate(79deg) brightness(96%) contrast(106%);
}
.faq_item.active .faq_question:after {
	content: '';
	margin-top: 8px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_minus.svg) no-repeat;
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
}
.faq_answer {
	overflow-y: auto;
	position: relative;
	display: none;
	font-size: 16px;
	color: var(--c-gray);
	padding: 0 30px 30px 80px;
}
.faq_answer:before {
	content: 'A.';
	display: inline-block;
	position: absolute;
	top: -5px;
	left: 40px;
	font-family: 'S-CoreDream-8Heavy';
	font-size: 26px;
	color: var(--c-wcf);
}
.faq_item.active .faq_answer {
	display: block;
}

/* 미디어 관련 뉴스 */
.news_list_wrap {
	margin-top: 80px;
}
.news_list {
	border-top: 1px solid var(--c-dline_op1);
}
.news_list .news_item {
	border-bottom: 1px solid var(--c-dline_op1);
}
.news_list .news_item .news_box {
	display: flex;
	align-items: center;
	justify-content: space-between;
	flex-wrap: nowrap;
	flex-direction: row;
	height: 252px;
	padding: 30px 0;
}
.news_list .news_item .news_thumb {
	overflow: hidden;
	flex-shrink: 0;
	width: 300px;
	height: 100%;
}
.news_list .news_item .news_thumb img {
	display: inline-block;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.news_list .news_item:hover .news_thumb img {
	transform: scale(1.05);
}
.news_list .news_item .news_cont {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
	flex-direction: column;
	width: 100%;
	height: 100%;
	margin-left: 30px;
}
.news_list .news_item .news_cont .tit {
	overflow: hidden;
	display: -webkit-box;
	font-family: 'S-CoreDream-6Bold';
	font-size: 22px;
	color: var(--c-dark);
	text-align: left;
	text-overflow: ellipsis;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	transition: 0.3s ease;
}
.news_list .news_item:hover .news_cont .tit {
	opacity: 0.6;
}
.news_list .news_item .news_cont .info {
	padding: 15px 0;
}
.news_list .news_item .news_cont .info .date {
	display: inline-block;
	font-size: 14px;
	color: var(--c-lgray);
}
.news_list .news_item .news_cont .con {
	overflow: hidden;
	display: -webkit-box;
	font-size: 16px;
	color: var(--c-gray);
	text-align: left;
	text-overflow: ellipsis;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
}

/* pagination */
.pagination {
	display: flex;
	align-items: center;
	justify-content: center;
	flex-wrap: nowrap;
	gap: 15px;
	margin-top: 80px;
}
.pagination button {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 30px;
	height: 30px;
	font-size: 16px;
	font-weight: 500;
	color: var(--c-dgray);
	text-align: center;
}
.pagination button:hover {
	color: var(--c-wcf);
}
.pagination button.active {
	color: var(--c-light);
	background-color: var(--c-wcf);
}
.pagination .btn_prev {
	margin-right: 15px;
}
.pagination .btn_next {
	margin-left: 15px;
}
.pagination .btn_first:before,
.pagination .btn_prev:before,
.pagination .btn_next:before,
.pagination .btn_last:before {
	content: '';
	display: block;
	width: 100%;
	height: 100%;
	transition: 0.3s ease;
}
.pagination .btn_first:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arr_first.svg) center no-repeat;
}
.pagination .btn_prev:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arr_prev.svg) center no-repeat;
}
.pagination .btn_next:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arr_next.svg) center no-repeat;
}
.pagination .btn_last:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arr_last.svg) center no-repeat;
}
.pagination .btn_first:hover:before,
.pagination .btn_prev:hover:before,
.pagination .btn_next:hover:before,
.pagination .btn_last:hover:before {
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
}
.pagination .btn_first.active:before,
.pagination .btn_prev.active:before,
.pagination .btn_next.active:before,
.pagination .btn_last.active:before {
	filter: brightness(1000%) grayscale(100%);
}
.pagination button:disabled {
	opacity: 0.5;
	cursor: default;
	pointer-events: none;
}

/* 미디어 공지사항 */
.notice_list_wrap {
	margin-top: 80px;
}
.notice_list {
	border-top: 1px solid var(--c-dline_op1);
}
.notice_list .notice_item {
	border-bottom: 1px solid var(--c-dline_op1);
}
.notice_list .notice_item .notice_box {
	display: block;
	padding: 30px 30px 30px 0;
}
.notice_list .notice_item .notice_cont {
	display: flex;
	align-items: center;
	flex-wrap: nowrap;
	flex-direction: row;
	width: 100%;
}
.notice_list .notice_item .notice_cont .num {
	flex: 0 0 100px;
	text-align: center;
}
.notice_list .notice_item .notice_cont .num .no {
	display: inline-block;
	font-size: 16px;
	color: var(--c-gray);
}
.notice_list .notice_item .notice_cont .tit {
	/* overflow: hidden; */
	font-family: 'S-CoreDream-6Bold';
	font-size: 20px;
	color: var(--c-dark);
	text-align: left;
	/* text-overflow: ellipsis;
	white-space: nowrap; */
	transition: 0.3s ease;
}
.notice_list .notice_item:hover .notice_cont .tit {
	opacity: 0.6;
}
.notice_list .notice_item .notice_cont .info {
	padding-left: 20px;
	margin-left: auto;
}
.notice_list .notice_item .notice_cont .info .date {
	display: inline-block;
	font-size: 14px;
	color: var(--c-lgray);
}

/* 미디어 행사 사진 */
.photo_list_wrap {
	margin-top: 80px;
}
.photo_list {
	display: grid;
	grid-template-columns: repeat(4, 1fr);
	gap: 20px;
}
.photo_list .photo_item {
	display: flex;
	flex-direction: column;
}
.photo_list .photo_item .photo_box {
	display: flex;
	flex-direction: column;
	word-break: keep-all;
	overflow-wrap: break-word;
	flex: 1;
	background-color: var(--c-bg_lgray);
}
.photo_list .photo_item .photo_box .photo_thumb {
	overflow: hidden;
	width: 100%;
	aspect-ratio: 1 / 1;
}
.photo_list .photo_item .photo_box .photo_thumb img {
	width: 100%;
	height: 100%;
	object-fit: cover;
	transition: transform 0.3s ease;
}
.photo_list .photo_item .photo_box:hover .photo_thumb img {
	transform: scale(1.05);
}
.photo_list .photo_item .photo_box .photo_tit {
	font-family: 'S-CoreDream-6Bold';
	font-size: 17px;
	color: var(--c-dark);
	padding: 15px;
	transition: 0.3s ease;
}
.photo_list .photo_item:hover .photo_box .photo_tit {
	opacity: 0.6;
}
.photo_list .photo_item .photo_box .photo_info {
	padding: 0 15px 15px 15px;
	margin-top: auto;
}
.photo_list .photo_item .photo_box .photo_info .date {
	display: inline-block;
	font-size: 14px;
	color: var(--c-lgray);
}

/* 미디어 뷰 */
.media_view_wrap {}
.media_view_wrap .view_head {
	padding: 30px 0;
	border-top: 2px solid var(--c-wcf);
	border-bottom: 1px solid var(--c-dline_op1);
}
.media_view_wrap .view_head .head_tit {
	font-family: 'S-CoreDream-6Bold';
	font-size: 26px;
	color: var(--c-dark);
}
.media_view_wrap .view_head .head_info {
	margin-top: 20px;
}
.media_view_wrap .view_head .head_info .date {
	display: inline-block;
	font-size: 14px;
	color: var(--c-lgray);
}
.media_view_wrap .view_body {}
.media_view_wrap .view_body .mid_tit_area {
	position: relative;
}
.media_view_wrap .view_body .mid_tit_area:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 2px;
	height: 100%;
	background-color: var(--c-lgray);
}
.media_view_wrap .view_body .mid_tit {
	font-size: 18px;
	font-weight: 500;
	color: var(--c-dgray);
	padding-left: 20px;
	margin-top: 30px;
}
.media_view_wrap .view_body p {
	font-size: 17px;
	font-weight: 400;
	color: var(--c-dark);
	margin-top: 30px;
}
.media_view_wrap .view_body .thumb_area {
	position: relative;
	float: none;
	max-width: 1160px;
	text-align: center;
	margin-top: 30px;
}
.media_view_wrap .view_body figure {
	/* display: inline-block; */
}
.media_view_wrap .view_body .thumb {
	overflow: hidden;
	position: relative;
	display: inline-block;
}
.media_view_wrap .view_body .thumb:before {
	content: '';
	display: block;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	border: 1px solid var(--c-dline_op1);
	opacity: 0.5;
}
.media_view_wrap .view_body .thumb img {
	display: inline-block;
	max-width: 100%;
	min-height: 100%;
	vertical-align: middle;
	object-fit: cover;
}
.media_view_wrap .view_body figcaption {
	/* text-align: left; */
	padding-top: 5px;
}
.media_view_wrap .view_body .thumb_txt {
	display: block;
	font-size: 14px;
	color: #888;
}
.media_view_wrap .view_body .download_area {
	margin-top: 80px;
}
.media_view_wrap .view_body .btn_download {
	display: inline-block;
	font-size: 15px;
	color: var(--c-wcf);
	letter-spacing: 0;
	line-height: 40px;
	padding: 0 20px;
	margin: 5px 5px 0 0;
	border: 1px solid var(--c-wcf);
	border-radius: 50px;
	background-color: #fdf7f9;
}
.media_view_wrap .view_body .btn_download:before {
	content: '';
	display: inline-block;
	width: 20px;
	height: 20px;
	vertical-align: middle;
	margin-right: 5px;
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_file.svg) no-repeat;
}
.media_view_wrap .view_body .btn_download:first-child {
	margin-left: 0;
}
.media_view_wrap .view_foot {}
.media_view_wrap .view_foot .view_nav_area {
	margin-top: 80px;
	border-top: 1px solid var(--c-dline_op1);
}
.media_view_wrap .view_foot .nav_prev,
.media_view_wrap .view_foot .nav_next {
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
	flex-wrap: nowrap;
	width: 100%;
	padding: 20px 0;
	border-bottom: 1px solid var(--c-dline_op1);
}
.media_view_wrap .view_foot .nav_prev span,
.media_view_wrap .view_foot .nav_next span {
	display: inline-block;
	flex: 0 0 120px;
	font-size: 16px;
	font-weight: 500;
	color: var(--c-wcf);
}
.media_view_wrap .view_foot .nav_prev span:before,
.media_view_wrap .view_foot .nav_next span:before {
	content: '';
	display: inline-block;
	position: relative;
	top: -2px;
	width: 8px;
	height: 13px;
	vertical-align: middle;
	margin-right: 20px;
	filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
}
.media_view_wrap .view_foot .nav_prev span:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arr_prev.svg) no-repeat;
}
.media_view_wrap .view_foot .nav_next span:before {
	background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_arr_next.svg) no-repeat;
}
.media_view_wrap .view_foot .nav_prev a,
.media_view_wrap .view_foot .nav_next a {
	flex: 1;
	font-family: 'S-CoreDream-5Medium';
	font-size: 16px;
	color: var(--c-dgray);
	transition: 0.3s ease;
}
.media_view_wrap .view_foot .nav_prev a:hover,
.media_view_wrap .view_foot .nav_next a:hover {
	opacity: 0.6;
}

/* media query */
@media screen and (max-width:1440px) {
	.main_visual .visual_title_wrap .tit_head {
		font-size: 30px;
	}
	.main_visual .visual_title_wrap .tit_body {
		font-size: 50px;
	}
	.main_visual .visual_title_wrap .tit_foot {
		font-size: 20px;
	}

	.section_main_inner h3 {
		font-size: 40px;
	}
	.section_main_inner em {
		font-size: 30px;
	}

	.section_main_info:before {
		top: -80px;
		width: 263px;
		height: 742px;
		background-size: 263px 742px;
	}
	.section_main_info:after {
		bottom: -277px;
		width: 178px;
		height: 338px;
		background-size: 178px 338px;
	}
	.main_info_inner .tit_main_info h3 {
		margin-top: 20px;
	}
}

@media (max-width:1240px) {
	.gnb_wrap .gnb_list .gnb_item:last-child .depth_list {
		left: auto;
		right: 0;
	}

	.section_main_info:before {
		width: 175px;
		height: 495px;
		background-size: 175px 495px;
	}
	.section_main_info:after {
		bottom: -165px;
		width: 119px;
		height: 225px;
		background-size: 119px 225px;
	}
	
	.main_notice_list .ntc_item a {
		padding: 25px 20px;
	}

	.footer_inner {
		align-items: flex-start;
		flex-direction: column;
	}
	.footer_left {
		width: 100%;
	}
	.footer_right {
		display: block;
		width: 100%;
		margin-top: 60px;
	}
	.footer_sns {
		margin-top: 20px;
	}
}

@media (max-width:1024px) {
	#header .header_inner {
		padding: 20px 15px;
	}
	.header-fixed #header .header_inner {
		padding: 10px 15px !important;
	}
	#header .logo a {
		width: 69px;
		height: 60px;
		background-size: auto 60px;
	}
	.gnb_wrap {
		display: none;
		margin-right: 0;
	}
	.head_gnb .btn_nav,
	.head_gnb .btn_nav.active {
		display: block;
	}
	#header.m_header {
		background-color: var(--c-light);
	}
	#header.m_header .logo a {
		filter: brightness(0) saturate(100%) invert(14%) sepia(91%) saturate(6218%) hue-rotate(332deg) brightness(85%) contrast(115%);
		background-size: auto 50px;
	}
	.m_header .gnb_wrap {
		overflow-y: scroll;
		position: absolute;
		top: 92px;
		right: 0;
		left: 0;
		width: 100%;
		height: calc(100vh - 93px);
		background-color: var(--c-light);
	}
	.m_header .gnb_wrap .gnb_list {
		align-items: flex-start;
		flex-wrap: wrap;
		flex-direction: column;
		gap: 0;
		padding: 15px 0;
		border-top: 1px solid var(--c-dline_op1);
	}
	.m_header .gnb_wrap .gnb_list .gnb_item {
		width: 100%;
	}
	.m_header .gnb_wrap .gnb_list .gnb_item > a:before {
		content: '';
		position: relative;
		top: -1px;
		display: inline-block;
		width: 8px;
		height: 16px;
		vertical-align: middle;
		margin-right: 8px;
		background: url(https://bimg.mk.co.kr/2025/wcf/assets/images/ic_wcf.svg) no-repeat;
		background-size: 8px 16px;
	}
	.m_header .gnb_wrap .gnb_list .gnb_item > a {
		font-size: 18px;
		font-weight: 500;
		color: var(--c-dark);
		line-height: normal;
		padding: 15px 20px;
	}
	.m_header .gnb_wrap .gnb_list .gnb_item.active > a {
		color: var(--c-wcf);
	}
	.m_header .gnb_wrap .gnb_list .gnb_item:hover .depth_wrap {
		display: none;
	}
	.m_header .gnb_wrap .depth_wrap {
		display: none;
	}
	.m_header .gnb_wrap .gnb_list .gnb_item.active .depth_wrap {
		display: block;
	}
	.m_header .depth_wrap .depth_list {
		position: relative;
		top: 0;
		padding: 0;
		border-top: 0;
		box-shadow: none;
	}
	.m_header .depth_wrap .depth_list .depth_item {
		width: 100%;
		border-top: 0;
	}
	.m_header .depth_wrap .depth_list .depth_item a {
		padding: 8px 45px;
	}
	.m_header .head_gnb .btn_lang {
		color: var(--c-dark);
	}
	.m_header .head_gnb .btn_nav .btn_line em, 
	.m_header .head_gnb .btn_nav.active .btn_line em {
		background-color: var(--c-dark);
	}

	.main_info_inner .con_main_info {
		font-size: 17px;
	}

	.main_notice_list .ntc_item a {
		padding: 25px 0;
	}
	.main_notice_list .ntc_item .tit {
		font-size: 18px;
	}

	.footer_info {
		display: block;
		margin-top: 40px;
	}
	.footer_info_right p:first-child {
		margin-top: 8px;
	}
	.footer_right {
		margin-top: 40px;
	}

	.quick_fixed {
		right: 30px;
		bottom: 40px;
	}
	.quick_fixed .btn_quick_top {
		width: 50px;
		height: 50px;
	}

	.sub_visual {
		height: 300px;
	}
	.sub_visual .visual_title_wrap {
		min-height: 300px;
	}
	.sub_visual .visual_title_wrap .page_title {
		font-size: 42px;
		padding-top: 40px;
	}
	.sub_visual .visual_title_wrap .page_depth {
		padding-top: 15px;
	}
	.sub_visual .visual_title_wrap .page_depth li {
		font-size: 16px;
	}
}

@media (max-width:768px) {
	#header .logo a {
		width: 58px;
		height: 50px;
		background-size: auto 50px;
	}
	.header-fixed #header .logo a {
		width: 58px !important;
		height: 50px !important;
		background-size: auto 50px !important;
	}
	.head_gnb .btn_lang {
		font-size: 13px;
	}
	.head_gnb .btn_nav .btn_line em, 
	.head_gnb .btn_nav.active .btn_line em {
		width: 18px;
	}
	.head_gnb .btn_nav .btn_line em:nth-child(2) {
		margin: 4px 0;
	}

	.main_speaker_inner .con_main_speaker .main_speaker_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.main_notice_list .ntc_item a {
		padding: 20px 0;
	}

	.layer_pop {
		width: 95%;
		max-height: 95%;
		margin: 20px;
	}	
	.layer_pop .pop_container {
		flex-direction: column;
	}
	.layer_pop .content_fixed {
		width: 100%;
		padding: 15px;
		border-right: 0;
		border-bottom: 1px solid var(--c-dline_op1);
		background: #fafafa;
		flex-shrink: 0;
	}
	.layer_pop .content_scrollable {
		padding: 15px;
	}
	.layer_pop .content_scroll {
		padding-right: 4px;
	}
	.layer_pop .content_scroll::-webkit-scrollbar {
		width: 4px;
	}
	.layer_pop .content_scroll::-webkit-scrollbar-track {
		border-radius: 2px;
	}
	.layer_pop .content_scroll::-webkit-scrollbar-thumb {
		border-radius: 2px;
	}
	.layer_pop .content_scroll p {
		font-size: 14px;
		padding: 12px;
		margin-bottom: 12px;
	}
	.layer_pop .speaker_area {
		flex-direction: row;
		align-items: center;
	}
	.layer_pop .speaker_area .speaker_thumb {
		max-width: 120px;
		height: auto;
	}
	.layer_pop .speaker_area .speaker_name {
		font-size: 18px;
	}
	.layer_pop .speaker_area .speaker_info {
		margin: 0 0 0 15px;
	}
	.layer_pop .speaker_area .organization,
	.layer_pop .speaker_area .position {
		font-size: 13px;
	}
	.layer_pop .speaker_area .session_area {
		margin-top: 15px;
	}
	.layer_pop .content_fixed .session_area .tit_area {
		font-size: 18px;
	}
	.layer_pop .session_area .tit_area {
		font-size: 16px;
	}
	.layer_pop .session_area .tit_session a {
		font-size: 14px;
	}
	.layer_pop .content_fixed .session_area .tit_session a {
		font-size: 16px;
	}
	.layer_pop .session_info_list {
		margin-bottom: 15px;
	}
	.layer_pop .session_info_list .session_info_item .tit_info {
		font-size: 14px;
	}
	.layer_pop .session_info_list .session_info_item .con_info {
		font-size: 14px;
	}
	.layer_pop .session_info_list .session_info_item .con_info a {
		font-size: 14px;
	}

	.tit_wcf_info p {
		font-size: 30px;
	}
	.con_wcf_info {
		gap: 40px;
		margin-top: 60px;
	}
	.con_wcf_info .txt_info p {
		font-size: 16px;
	}

	.ceo_box {
		gap: 40px;
	}
	.ceo_box .ceo_image .ceo_info .ceo_name {
		font-size: 16px;
		margin-top: 15px;
	}
	.ceo_box .ceo_image .ceo_info .ceo_sign {
		margin-top: 15px;
	}
	.ceo_box .ceo_cont .ceo_intro {}
	.ceo_box .ceo_cont .ceo_intro p {
		font-size: 30px;
	}
	.ceo_box .ceo_cont .ceo_txt {
		margin-top: 40px;
	}
	.ceo_box .ceo_cont .ceo_txt p {
		font-size: 16px;
		margin-top: 20px;
	}

	.tit_wcf_map h1 {
		font-size: 30px;
	}
	.wcf_map_addr .map_addr_item .tit_addr {
		width: 120px;
		font-size: 16px;
	}
	.wcf_map_addr .map_addr_item .con_addr span {
		display: block;
		font-size: 16px;
		margin-top: 10px;
	}
	.wcf_map_addr .map_addr_item .con_addr span:first-child {
		margin-top: 0;
	}
	.wcf_map_addr .map_addr_item .con_addr span + span:before {
		display: none;
	}
	.wcf_map_addr .map_addr_item .ic_line:before {
		width: 20px;
		height: 20px;
		font-size: 12px;
		line-height: 20px;
	}
	.wcf_map_area {
		height: 400px;
		margin-top: 60px;
	}

	.partner_grouping .partner_list {
		grid-template-columns: repeat(3, 1fr);
		gap: 15px;
		margin-top: 15px;
	}
	.partner_grouping .partner_item {
		height: 170px;
		padding: 35px;
	}

	/*.session_wrap {
		margin-top: 60px;
	}*/
	.session_tabs .tab_btn {
		height: 80px;
	}
	.session_tabs .tab_btn strong {
		font-size: 16px;
	}
	.session_tabs .tab_btn span {
		font-size: 14px;
		margin-top: 3px;
	}
	.venue_select_area {
		display: block;
	}

	.schedule_area {
		overflow-x: auto;
		-webkit-overflow-scrolling: touch;
		display: block;
		margin-top: 0;
	}
	.schedule_area .schedule_venue {
		display: none;
	}
	.schedule_area .schedule_row {
		display: block;
		margin-top: 20px;
	}
	.schedule_area .schedule_cell {
		padding: 12px 15px;
		border-left: 1px solid var(--c-dline_op1);
	}
	.schedule_area .schedule_cell:first-child {
		border-top: 1px solid var(--c-dline_op1);
		border-radius: 5px 5px 0 0;
	}
	.schedule_area .session_time {
		font-size: 15px;
	}
	.schedule_area .session_subj {
		display: block;
	}
	.schedule_area .session_subj .subj_tit {
		font-size: 16px;
	}
	.schedule_area .session_subj .subj_tit::after {
		width: 6px;
		height: 6px;
		margin-left: 4px;
	}
	.schedule_area .session_spkr .spkr_name {
		font-size: 13px;
	}
	.schedule_area .session_spkr .spkr_info {
		font-size: 13px;
	}
	.schedule_area .session_lunch {
		font-size: 16px;
	}
	.schedule_area .session_subj::before {
		content: attr(data-label);
		display: block;
		font-family: 'S-CoreDream-4Regular';
		font-size: 13px;
		color: #84465A;
		letter-spacing: 0.5px;
		margin-bottom: 5px;
	}

	.speaker_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}

	.photo_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
	}
}

@media (max-width:640px) {
	.main_visual .swiper-slide {
		height: 700px;
	}
	.main_visual .visual_title_wrap {
		padding: 0 20px;
	}
	.main_visual .visual_title_wrap .tit_head {
		font-size: 22px;
	}
	.main_visual .visual_title_wrap .tit_body {
		font-size: 32px;
		line-height: 1.5;
		margin-top: 15px;
	}
	.main_visual .visual_title_wrap .tit_foot {
		font-size: 16px;
		margin-top: 15px;
	}

	.main_visual .visual_title_wrap .visual_bottom,
	.btn_fill,
	.btn_stroke,
	.btn_gray {
		width: 75%;
		max-width: 300px;
	}
	.main_visual .visual_title_wrap .btn_visual_tit,
	.btn_fill,
	.btn_stroke,
	.btn_gray {
		font-size: 14px;
		line-height: 50px;
		margin-top: 40px;
	}
	.btn_stroke {
		box-shadow: inset 0 0 0 3px var(--c-wcf);
	}
	.btn_arr span:after {
		width: 18px;
		height: 14px;
		margin-left: 12px;
		background-size: 18px 14px;
	}
	.btn_pls span:after {
		top: -1px;
		width: 14px;
		height: 14px;
		margin-left: 12px;
		background-size: 14px 14px;
	}
	.btn_fill:hover {
		box-shadow: inset 0 0 0 3px var(--c-wcf);
	}
	.btn_gray:hover {
		box-shadow: inset 0 0 0 3px var(--c-gray);
	}
	
	.swiper-pagination-bullet,
	.swiper-pagination-bullet-active {
		width: 30px;
		height: 4px;
	}

	.section_main_inner {
		padding: 80px 15px;
	}
	.ic_wcf:before {
		width: 11px;
		height: 20px;
		margin-right: 10px;
		background-size: 11px 20px;
	}
	.section_main_inner h3 {
		font-size: 28px;
	}
	.section_main_inner h3 em {
		font-size: 22px;
	}

	.section_main_info:before {
		top: -60px;
		right: -40px;
		width: 88px;
		height: 247px;
		background-size: 88px 247px;
	}
	.section_main_info:after {
		bottom: -73px;
		left: -20px;
		width: 59px;
		height: 113px;
		background-size: 59px 113px;
	}
	.main_info_inner .tit_main_info h3 {
		margin-top: 15px;
	}
	.main_info_inner .tit_main_info .en {
		font-size: 17px;
	}
	.main_info_inner .con_main_info {
		font-size: 15px;
		margin-top: 20px;
	}
	.main_info_inner .con_main_info strong {
		font-size: 18px;
	}
	.main_info_inner .btn_stroke {
		width: 100%;
		margin: 60px auto 0 auto;
	}

	.main_speaker_inner .con_main_speaker {
		margin-top: 60px;
	}
	.main_speaker_list .spk_item .spk_ready .spk_thumb:before {
		background-size: 30% 30%;
	}
	.main_speaker_list .spk_item .spk_box .spk_name {
		font-size: 16px;
		padding: 15px;
	}
	.main_speaker_list .spk_item .spk_box .spk_info {
		padding: 0 15px 15px 15px;
	}
	.main_speaker_list .spk_item .spk_box .spk_info .organization {
		font-size: 13px;
	}
	.main_speaker_list .spk_item .spk_box .spk_info .position {
		font-size: 13px;
	}
	.main_speaker_inner .btn_speaker {
		width: 100%;
		margin-top: 60px;
	}

	.main_notice_inner .tit_main_notice .btn_pls {
		font-size: 13px;
	}
	.main_notice_list .ntc_item a {
		padding: 15px 0;
	}
	.main_notice_list .ntc_item .tit {
		font-size: 14px;
	}
	.main_notice_list .ntc_item .date {
		font-size: 12px;
	}
	.main_notice_inner .con_main_notice {
		margin-top: 60px;
	}

	.footer_inner {
		padding: 80px 15px;
	}
	.footer_logo .l_mk {
		width: 111px;
		height: 19px;
		background-size: 111px 19px;
	}
	.footer_logo .l_mbn {
		width: 88px;
		height: 22px;
		margin-left: 15px;
		background-size: 88px 22px;
	}
	.footer_info_left p, .footer_info_right p {
		font-size: 13px;
		margin-top: 6px;
	}
	.footer_family {
		width: 100%;
	}
	.footer_family .btn_family {
		font-size: 13px;
		padding: 12px 15px;
	}
	.footer_family .family_list {
		bottom: 41px;
		max-height: 139px;
	}
	.footer_family .family_list li a {
		font-size: 12px;
		padding: 8px 15px;
	}
	.footer_family .btn_family:after {
		right: 15px;
		width: 5px;
		height: 5px;
	}
	.footer_sns a {
		width: 30px;
		height: 30px;
		margin-left: 4px;
	}
	.footer_sns a[aria-label^="email"]:before {
		background-size: 15px auto;
	}
	.footer_sns a[aria-label^="youtube"]:before {
		background-size: 15px auto;
	}
	.footer_sns a[aria-label^="tiktok"]:before {
		background-size: 14px auto;
	}
	.footer_sns a[aria-label^="linkedin"]:before {
		background-size: auto 14px;
	}
	.footer_sns a[aria-label^="instagram"]:before {
		background-size: auto 14px;
	}
	.footer_sns a[aria-label^="channel"]:before {
		background-size: auto 17px;
	}
	.footer_copyright p {
		font-size: 11px;
	}

	.quick_fixed {
		right: 15px;
		bottom: 40px;
	}
	.quick_fixed .btn_quick_top {
		width: 40px;
		height: 40px;
	}
	.quick_fixed .btn_quick_top:before {
		width: 19px;
		height: 14px;
		background-size: 19px 14px;
	}

	.sub_visual {
		height: 260px;
	}
	.sub_visual .visual_title_wrap {
		min-height: 260px;
	}
	.sub_visual .visual_title_wrap .page_title {
		font-size: 36px;
		padding-top: 30px;
	}
	.sub_visual .visual_title_wrap .page_depth {
		padding-top: 12px;
	}
	.sub_visual .visual_title_wrap .page_depth li {
		font-size: 15px;
	}
	.sub_visual .visual_title_wrap .page_depth li:first-child:before {
		top: -1px;
		width: 16px;
		height: 16px;
		background-size: 16px 16px
	}
	.sub_visual .visual_title_wrap .page_depth li:not(:last-child):after {
		width: 2px;
		height: 2px;
		margin: 0 8px;
	}

	.section_sub_inner {
		padding: 80px 15px;
	}

	.tit_wcf_info p {
		font-size: 22px;
	}
	.con_wcf_info {
		flex-direction: column;
		gap: 30px;
		margin-top: 40px;
	}
	.con_wcf_info .img_info {
		order: 1;
	}
	.con_wcf_info .txt_info {
		order: 0;
	}
	.con_wcf_info .txt_info p {
		font-size: 15px;
	}

	.ceo_box {
		flex-direction: column;
		gap: 60px;
	}
	.ceo_box .ceo_image {
		flex: none;
		max-width: none;
	}
	.ceo_box .ceo_image .ceo_info .ceo_name {
		font-size: 16px;
	}
	.ceo_box .ceo_image .ceo_info .ceo_sign {
		width: 50%;
	}
	.ceo_box .ceo_cont .ceo_intro p {
		font-size: 22px;
	}
	.ceo_box .ceo_cont .ceo_txt p {
		font-size: 15px;
	}
	
	.tit_wcf_map h1 {
		font-size: 22px;
	}
	.wcf_map_addr .map_addr_item .tit_addr {
		width: 100px;
		font-size: 15px;
	}
	.wcf_map_addr .map_addr_item .con_addr span {
		font-size: 15px;
	}
	.wcf_map_area {
		height: 300px;
		margin-top: 40px;
	}

	.mkgroup_list .mkgroup_item {
		align-items: center;
		flex-direction: column;
		padding: 15px 0;
	}
	.mkgroup_list .mkgroup_item .mkgroup_logo {
		max-width: none;
		min-height: 100px;
		width: 100%;
	}
	.mkgroup_list .mkgroup_item .mkgroup_cont {
		margin-left: 0;
	}
	.mkgroup_list .mkgroup_item .mkgroup_cont .tit {
		font-size: 18px;
		margin-top: 15px;
	}
	.mkgroup_list .mkgroup_item .mkgroup_cont .con {
		font-size: 14px;
	}

	.partner_grouping {
		margin-top: 40px;
	}
	.partner_grouping .partner_head {
		font-size: 20px;
		padding-left: 20px;
	}
	.partner_grouping .partner_head::before {
		width: 13px;
		height: 24px;
		background-size: 13px 24px;
	}
	.partner_grouping .partner_list {
		grid-template-columns: repeat(2, 1fr);
		gap: 10px;
		margin-top: 10px;
	}
	.partner_grouping .partner_item {
		height: 150px;
		padding: 30px;
	}

	.filter_wrap {
		padding: 20px 15px;
	}
	.filter_wrap .filter_box {
		flex-wrap: wrap;
	}
	.filter_wrap .filter_box .sel {
		margin: 0 0 10px 10px;
	}	
	.filter_wrap .filter_box .sel:first-child {
		margin: 0 0 10px 0;
	}
	.filter_wrap .filter_box .sel:after {
		top: 15px;
		right: 12px;
		width: 6px;
		height: 6px;
	}
	.filter_wrap .filter_box .sel select,
	.filter_wrap .filter_box .inp input {
		font-size: 14px;
		line-height: 40px;
		padding: 0 12px;
	}
	.filter_wrap .filter_box .inp_search {
		width: 100%;
		margin-left: 0;
	}
	.filter_wrap .filter_box .inp_search .inp {
		width: calc(100% - 39px);
	}
	.filter_wrap .filter_box .inp_search .btn_search {
		width: 41px;
		height: 39px;
		background-size: 16px 16px;
	}
	.filter_wrap .filter_box.option .sel {
		width: 100%;
	}
	.filter_wrap .filter_box.option2 .sel {
		width: calc(50% - 5px);
	}
	.filter_wrap .filter_box.option .inp_search,
	.filter_wrap .filter_box.option2 .inp_search {
		width: 100%;
	}

	.speaker_list_wrap {
		margin-top: 60px;
	}
	
	.speaker_list .speaker_item .speaker_box .speaker_name {
		font-size: 16px;
		padding: 12px;
	}
	.speaker_list .speaker_item .speaker_box .speaker_info {
		padding: 0 12px 12px 12px;
	}
	.speaker_list .speaker_item .speaker_box .speaker_info .organization {
		font-size: 13px;
	}
	.speaker_list .speaker_item .speaker_box .speaker_info .position {
		font-size: 13px;
		margin-top: 3px;
	}

	.form_inbox {
		padding: 10px 20px 30px 20px;
	}
	.inbox_btn_area {
		margin-top: 0;
	}
	.inbox_btn_area a {
		margin-top: 20px;
	}
	.price_con_area .price_con_box {
		padding: 30px 20px;
	}
	.price_con_area .price_con_box span {
		font-size: 16px;
	}
	.price_con_area .price_con_box em {
		font-size: 14px;
	}
	.price_con_area .price_con_box strong {
		font-size: 20px;
	}

	.section_form .form_box {
		margin-top: 60px;
	}
	.section_form .tit_form {
		font-size: 20px;
		padding: 0 0 10px 20px;
	}
	.section_form .tit_form:before {
		top: 4px;
		width: 13px;
		height: 24px;
		background-size: 13px 24px;
	}
	.section_form .stit_form {
		font-size: 16px;
		padding-left: 25px;
		margin-top: 15px;
	}
	.section_form .stit_form:before {
		top: 4px;
		width: 16px;
		height: 16px;
		background-size: 16px 16px;
	}
	.section_form .dot_list {
		margin-top: 15px;
	}
	.section_form .dot_list li {
		font-size: 14px;
		padding-left: 10px;
		margin-top: 4px;
	}
	.section_form .dot_con_list {
		margin-top: 15px;
	}
	.section_form .dot_con_list li {
		font-size: 15px;
		padding-left: 10px;
		margin-top: 4px;
	}
	.section_form .bang_list {
		margin-top: 15px;
	}
	.section_form .bang_list li {
		font-size: 14px;
		padding-left: 25px;
		margin-top: 4px;
	}
	.section_form .bang_list li:before {
		top: 2px;
		width: 16px;
		height: 16px;
		background-size: 16px 16px;
	}
	.section_form .bang_list li .es {
		font-size: 14px;
	}
	.section_form .privacy_check {
		font-size: 16px;
		margin-top: 15px;
	}
	.section_form .privacy_check em {
		font-size: 13px;
	}
	.section_form .privacy_check .checkbox_mark {
		margin-right: 12px;
	}
	.section_form .privacy_check_con {
		max-height: 110px;
		font-size: 12px;
		padding: 15px;
		margin-top: 10px;
	}
	.section_form .tbl_privacy .tr_privacy_top .th,
	.section_form .tbl_privacy .tr_privacy .td {
		font-size: 12px;
		padding: 10px 0;
	}

	.section_form .input_area {
		margin-top: 15px;
	}
	.section_form .input_area .input_row {
		align-items: flex-start;
		flex-direction: column;
		min-height: 70px;
		padding: 12px 0;
	}
	.section_form .input_area .input_row .inp_tit {
		width: 100%;
		font-size: 15px;
	}
	.section_form .input_area .input_row .inp_tit .brk {
		font-size: 14px;
	}
	.section_form .input_area .input_row .inp_tit .en {
		font-size: 14px;
	}
	.section_form .input_area .input_row .inp_tit .es {
		font-size: 14px;
	}
	.section_form .input_area .input_row .inp_con {
		width: 100%;
		margin-top: 10px;
	}
	.section_form .input_area .input_row .inp_con .inp_box {
		font-size: 14px;
	}
	.section_form .input_area .input_row .inp_con .inp {
		max-width: none;
	}
	.section_form .input_area .input_row .inp_con .sel:after {
		top: 15px;
		right: 12px;
		width: 6px;
		height: 6px;
	}
	.section_form .input_area .input_row .inp_con .inp input,
	.section_form .input_area .input_row .inp_con .sel select {
		line-height: 40px;
		padding: 0 12px;
	}
	.section_form .input_area .input_row .inp_con .inp_col2,
	.section_form .input_area .input_row .inp_con .sel_col2 {
		max-width: 50% !important;
	}
	.section_form .input_area .input_row .inp_con .inp_col3,
	.section_form .input_area .input_row .inp_con .sel_col3 {
		max-width: 33.3333% !important;
	}
	.section_form .input_area .input_price .inp_con {
		gap: 10px;
	}
	.section_form .input_area .input_price .inp_con .txt_price {
		flex: 0;
	}
	.section_form .input_area .input_price .inp_con .sel {
		max-width: 180px;
		margin-left: auto;
	}
	.section_form .input_area .input_row .inp_con .class_radio_group label {
		font-size: 14px;
	}
	.section_form .input_area .input_row .inp_con .info {
		font-size: 13px;
	}
	.section_form .input_area .input_row .inp_con .tit_question_etc {
		font-size: 15px;
		margin-bottom: 15px;
	}
	.section_form .input_area .input_row .inp_con .radio_box .lbl_radio {
		font-size: 14px;
	}
	.section_form .bank_account_info p {
		font-size: 16px;
	}
	.section_form .taxbill_info .btn_sch_zipcode {
		font-size: 13px;
		line-height: 40px;
		padding: 0 10px;
	}
	.section_form .input_area .input_row .inp_con .etc_radio_group {
		gap: 18px;
	}
	.section_form .input_area .input_row .inp_con .etc_radio_group .radio_box .inp input[type="text"] {
		line-height: 30px;
	}

	.section_btn_area {
		gap: 10px;
		margin-top: 20px;
	}

	.section_form .inp_code{
		max-width: none !important;
	}
	.section_form .btn_code_chk {
		font-size: 13px;
		line-height: 40px;
	}

	.section_form .button_area {
		margin-top: 20px;
	}
	.section_form .button_area .btn_form_add {
		font-size: 13px;
		line-height: 32px;
	}
	.section_form .button_area .btn_form_add span::before {
		width: 11px;
		height: 11px;
		background-size: 11px 11px;
	}

	.section_form .unit {
		font-size: 18px;
	}
	.section_form .file_box {
		max-width: none;
		height: 44px;
	} 
	.section_form .file_box label em {
		height: 32px;
		font-size: 13px;
	} 
	.section_form .file_box label span {
		margin-left: 15px;
	}

	.result_con_area .result_con_box,
	.confirm_con_area .confirm_con_box {
		padding: 15px 0 0 0;
	}
	.result_con_area .result_con_box::before,
	.confirm_con_area .confirm_con_box::before {
		height: 40px;
		margin-bottom: 10px;
		background-size: 40px 40px;
	}
	.result_con_area .result_con_box p,
	.confirm_con_area .confirm_con_box p {
		font-size: 22px;
	}
	.result_con_area .result_con_box span,
	.confirm_con_area .confirm_con_box span {
		font-size: 15px;
		margin-top: 6px;
	}

	.btn_other_confirm {
		font-size: 13px;
		padding: 5px 8px 4px 8px;
		margin-top: 20px;
	}
	.tbl_confirm {
		display: block;
	}
	.tbl_confirm .tbl_header_row {
		display: none;
	}
	.tbl_confirm .tbl_header {
		font-size: 14px;
	}
	.tbl_confirm .tbl_row {
		display: flex;
		flex-direction: column;
		margin-top: 20px;
		border-top: 1px solid var(--c-wcf);
	}
	.tbl_confirm .tbl_header_row + .tbl_row {
		margin-top: 0;
		border-top: none;
	}
	.tbl_confirm .tbl_cell {
		flex-direction: row;
		gap: 15px;
		min-height: auto;
		text-align: left;
		padding: 10px 15px;
	}
	.tbl_confirm .tbl_cell:last-child {
		text-align: right;
		margin-left: auto;
		padding: 12px 0;
		border-bottom: none;
		background-color: transparent;
	}
	.tbl_confirm .tbl_cell::before {
		content: attr(data-header);
		flex: 0 0 35%;
		display: flex;
		align-items: center;
		font-size: 14px;
		font-weight: 600;
	}
	.tbl_confirm .tbl_cell:last-child::before {
		display: none;
	}
	.tbl_confirm .tbl_cell .txt {
		flex: 1;
		font-size: 14px;
	}
	.tbl_confirm .btn_confirm_detail {
		font-size: 13px;
	}

	.tbl_regist {
		margin-top: 15px;
	}
	.tbl_regist .tbl_cell {
		font-size: 14px;
		padding: 10px 15px;
	}
	.tbl_regist .tbl_header {
		font-size: 14px;
	}

	.faq_wrap {
		margin-top: 60px;
	}
	.faq_question {
		font-size: 16px;
		padding: 25px;
	}
	.faq_question:before {
		top: 22px;
		font-size: 20px;
	}
	.faq_item .faq_question:after {
		width: 14px;
		height: 14px;
		background-size: 14px 14px;
	}
	.faq_item.active .faq_question:after {
		margin-top: 4px;
	}
	.faq_answer {
		font-size: 14px;
		padding: 0 25px 20px 25px;
	}
	.faq_answer:before {
		top: -3px;
		left: 0;
		font-size: 20px;
	}

	.news_list_wrap {
		margin-top: 60px;
	}
	.news_list .news_item .news_box {
		flex-direction: column;
		height: auto;
	}
	.news_list .news_item .news_thumb {
		width: 100%;
	}
	.news_list .news_item .news_cont {
		margin-top: 15px;
		margin-left: 0;
	}
	.news_list .news_item .news_cont .tit {
		font-size: 18px;
	}
	.news_list .news_item .news_cont .info {
		padding: 10px 0;
	}
	.news_list .news_item .news_cont .info .date {
		font-size: 13px;
	}
	.news_list .news_item .news_cont .con {
		font-size: 14px;
	}

	.pagination {
		gap: 5px;
		margin-top: 60px;
	}
	.pagination button {
		width: 24px;
		height: 24px;
		font-size: 14px;
	}
	.pagination .btn_prev {
		margin-right: 0;
	}
	.pagination .btn_next {
		margin-left: 0;
	}

	.notice_list_wrap {
		margin-top: 60px;
	}
	.notice_list .notice_item .notice_box {
		padding: 25px 0;
	}
	.notice_list .notice_item .notice_cont .num {
		display: none;
		/* flex: 0 0 30px; */
	}
	/* .notice_list .notice_item .notice_cont .num .no {
		font-size: 14px;
	} */
	.notice_list .notice_item .notice_cont .tit {
		font-size: 16px;
	}
	.notice_list .notice_item .notice_cont .info {
		padding-left: 15px;
	}
	.notice_list .notice_item .notice_cont .info .date {
		font-size: 13px;
	}

	.photo_list_wrap {
		margin-top: 60px;
	}
	.photo_list {
		grid-template-columns: repeat(1, 1fr);
	}
	.photo_list .photo_item .photo_box .photo_tit {
		font-size: 16px;
		padding: 12px;
	}
	.photo_list .photo_item .photo_box .photo_info {
		padding: 0 12px 12px 12px;
	}
	.photo_list .photo_item .photo_box .photo_info .date {
		font-size: 13px;
	}

	.media_view_wrap .view_head .head_tit {
		font-size: 20px;
	}
	.media_view_wrap .view_head .head_info {
		margin-top: 15px;
	}
	.media_view_wrap .view_head .head_info .date {
		font-size: 13px;
	}
	.media_view_wrap .view_body .mid_tit {
		font-size: 16px;
		padding-left: 15px;
	}
	.media_view_wrap .view_body p {
		font-size: 15px;
	}
	.media_view_wrap .view_body figcaption {
		padding-top: 3px;
	}
	.media_view_wrap .view_body .thumb_txt {
		font-size: 12px;
	}
	.media_view_wrap .view_body .download_area {
		margin-top: 50px;
	}
	.media_view_wrap .view_body .btn_download {
		font-size: 13px;
		line-height: 35px;
	}
	.media_view_wrap .view_body .btn_download:before {
		width: 16px;
		height: 16px;
		background-size: 16px 16px;
	}
	.media_view_wrap .view_foot .view_nav_area {
		margin-top: 60px;
	}
	.media_view_wrap .view_foot .nav_prev,
	.media_view_wrap .view_foot .nav_next {
		padding: 15px 0;
	}
	.media_view_wrap .view_foot .nav_prev span,
	.media_view_wrap .view_foot .nav_next span {
		flex: 0 0 90px;
		font-size: 14px;
	}
	.media_view_wrap .view_foot .nav_prev span:before,
	.media_view_wrap .view_foot .nav_next span:before {
		margin-right: 15px;
		width: 6px;
		height: 10px;
		background-size: 6px 10px;
	}
	.media_view_wrap .view_foot .nav_prev a,
	.media_view_wrap .view_foot .nav_next a {
		font-size: 14px;
	}
}

@media (max-width:360px) {
	.main_speaker_inner .con_main_speaker .main_speaker_list {
		grid-template-columns: repeat(1, 1fr);
	}

	.speaker_list {
		grid-template-columns: repeat(1, 1fr);
	}
}