@charset "utf-8";
@import url(http://fonts.googleapis.com/earlyaccess/notosanskr.css);

html,
body {
	width: 100%;
	height: 100%;
	word-break: keep-all;
}

body {
	display: flex;
	flex-direction: column;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
form,
fieldset,
p,
button {
	margin: 0;
	padding: 0;
}

body,
h1,
h2,
h3,
h4,
input,
button {
	font-family: "Noto Sans KR", "Roboto", Helvetica, AppleGothic, sans-serif;
	font-size: 16px;
	line-height: 1.35em;
	color: #444;
}

@media (max-width: 767px) {

	html,
	body {
		overflow-x: hidden;
	}

	body,
	h1,
	h2,
	h3,
	h4,
	input,
	button {
		font-size: 13px;
	}
}

img,
fieldset,
iframe {
	border: 0 none;
}

li {
	list-style: none;
}

input,
select,
button {
	vertical-align: middle;
}

img {
	vertical-align: top;
}

i,
em,
address {
	font-style: normal;
}

label,
button {
	border: 0;
	cursor: pointer;
}

button {
	margin: 0;
	padding: 0;
}

a {
	color: inherit;
	text-decoration: none;
}

a:hover {
	text-decoration: none;
}

button * {
	position: relative;
}

button img {
	left: -3px;
}

html:first-child select {
	padding-right: 6px;
}

option {
	padding-right: 6px;
}

caption,
hr {
	display: none;
}

legend {
	width: 0;
}

table {
	border-collapse: collapse;
	border-spacing: 0;
}

input::-ms-clear {
	display: none;
}

img {
	max-width: 100%;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
	-webkit-appearance: none;
	margin: 0;
}

input[type="text"],
input[type="number"],
input[type="password"],
input[type="tel"] {
	-webkit-appearance: none;
	-webkit-border-radius: 0;
}

/* Header */
header {
	position: fixed;
	left: 0;
	top: 0;
	width: 100%;
	height: 130px;
	background: #fff;
	z-index: 11;
	transition: background 0.3s;
}

header a {
	transition: color 0.3s;
}

header .header_wrap {
	display: flex;
	flex-direction: column-reverse;
	position: relative;
	height: 100%;
}

header .header_wrap .toggle {
	display: none;
}

header .menu {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	margin-left: auto;
}

header nav ul {
	display: flex;
	gap: 60px;
	font-size: 22px;
	font-weight: 500;
	margin-bottom: 25px;
}

header .top_menu {
	display: flex;
	justify-content: flex-end;
	margin: 10px 0 auto 0;
	align-items: center;
}

header .top_menu .d_day {
	margin-right: 20px;
	font-size: 20px;
	line-height: 1.8em;
	padding: 0 20px;
	border-radius: 2em;
	background: #9b1f24;
	color: #fff;
	font-weight: 700;
}

header .top_menu ul {
	display: flex;
	font-size: 16px;
	color: #333;
	gap: 30px;
	/* margin-top: 20px; */
}

header .top_menu li {
	position: relative;
	line-height: 1em;
}

header .top_menu li:not(:last-child):after {
	content: "";
	position: absolute;
	right: -15px;
	top: 0;
	width: 1px;
	height: 100%;
	background: #a7e6ff;
}

@media (max-width: 1079px) {
	header {
		height: auto;
		background: #1873b2 !important;
	}

	header a {
		color: #fff;
	}

	header .header_wrap {
		flex-direction: column;
		padding: 15px 0;
		min-height: 50px;
	}

	header .header_wrap .toggle {
		display: block;
		position: absolute;
		width: 20px;
		height: 20px;
		top: 15px;
		left: 15px;
		background: transparent;
		border: 0;
	}

	header .header_wrap .toggle span {
		position: absolute;
		left: 0;
		width: 100%;
		height: 2px;
		background: #fff;
		transition: all 0.3s;
	}

	header .header_wrap .toggle span:nth-child(1) {
		top: 0;
	}

	header .header_wrap .toggle span:nth-child(2) {
		top: 50%;
		margin-top: -1px;
	}

	header .header_wrap .toggle span:nth-child(3) {
		bottom: 0;
	}

	header .header_wrap.on .toggle span {
		top: 50% !important;
		bottom: auto;
		margin-top: -1px;
	}

	header .header_wrap.on .toggle span:nth-child(1) {
		transform: rotate(45deg);
	}

	header .header_wrap.on .toggle span:nth-child(2) {
		opacity: 0;
	}

	header .header_wrap.on .toggle span:nth-child(3) {
		transform: rotate(-45deg);
	}

	header .menu {
		flex-direction: column;
		align-items: center;
		margin-left: 0;
	}

	header .menu img {
		height: 20px;
	}

	header nav {
		display: none;
		padding: 15px 0;
	}

	header .header_wrap.on nav {
		display: block;
	}

	header nav ul {
		gap: 0;
		flex-direction: column;
		font-size: 14px;
		text-align: center;
	}

	header nav a {
		line-height: 2em;
	}

	header .top_menu {
		display: none;
		margin: 0;
		flex-direction: column;
		justify-content: center;
	}

	header .header_wrap.on .top_menu {
		display: flex;
	}

	header .top_menu .d_day {
		margin: 15px 0;
		font-size: 12px;
	}

	header .top_menu ul {
		font-size: 12px;
		gap: 10px;
	}

	header .top_menu li:not(:last-child):after {
		right: -5px;
	}
}

@media (max-width: 767px) {}

/* #header {
	background-color: #fff;
	transition: all 0.3s
}

#header .wraparea {
	position: relative
}

#header .navbar-header {
	float: none;
	position: relative;
	z-index: 2;
	padding: 25px 0
}

#header .navbar-brand {
	position: relative;
	z-index: 10;
	height: 33px;
	padding: 0
}

#header .navbar-brand img {
	height: 100%
}

#header .navbar-nav>li>a:hover,
#header .navbar-nav>li>a:focus,
#header .navbar-nav>li>a:visited {
	background: none
}

#header .navbar {
	margin-bottom: 0
}

#header .general-nav {
	position: absolute;
	top: 30px;
	right: 0
}

#header .general-nav .link {
	position: relative;
	display: inline-block;
	padding: 1px 7px 1px 9px;
	height: 22px;
	font-size: 14px;
	color: #666
}

#header .general-nav .link:hover {
	color: #222
}

#header .general-nav .link:before {
	content: '';
	position: absolute;
	top: 4px;
	left: 0;
	height: 16px;
	width: 1px;
	background-color: #666
}

#header .general-nav .link:first-child:before {
	content: none
}

#header .navbar-toggle {
	position: absolute;
	z-index: 10;
	bottom: 30px;
	right: 0;
	width: 52px;
	height: 52px;
	padding: 0;
	margin: 0;
	border: none
}

#header .navbar-toggle:focus,
#header .navbar-toggle:active,
#header .navbar-toggle:visited,
#header .navbar-toggle:hover {
	background: None
}

#header .navbar-toggle .icon-bar {
	width: 100%;
	height: 6px;
	border-radius: 0;
	background-color: #363636;
	-webkit-transition: all 0.1s ease-in-out;
	-o-transition: all 0.1s ease-in-out;
	transition: all 0.1s ease-in-out
}

#header .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(2) {
	opacity: 0;
}

#header .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(1) {
	-webkit-transform: translateY(13px) rotate(45deg);
	-ms-transform: translateY(13px) rotate(45deg);
	-o-transform: translateY(13px) rotate(45deg);
	transform: translateY(13px) rotate(45deg);
}

#header .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
	-webkit-transform: translateY(-13px) rotate(-45deg);
	-ms-transform: translateY(-13px) rotate(-45deg);
	-o-transform: translateY(-13px) rotate(-45deg);
	transform: translateY(-13px) rotate(-45deg);
}

#header .navbar-toggle .icon-bar+.icon-bar {
	margin-top: 7px
}

#myNavbar .nav>li>a {
	color: #666
}

#myNavbar .nav>li>a:focus,
#myNavbar .nav>li>a:hover {
	color: #666
}

#myNavbar.affix {
	top: 0;
	width: 100%;
	left: 0;
	z-index: 9999 !important;
	background-color: rgba(53, 97, 170, 0.8)
}

#myNavbar.affix~.mainwrap,
#myNavbar.affix~.subwrap {
	padding-top: 52px
}

#myNavbar.affix .nav>li>a {
	color: #fff;
}

#myNavbar .navbar {
	line-height: 0;
	margin-bottom: 0
}

#myNavbar {
	background-color: #e0e5eb
}

#myNavbar .nav {
	float: none
}

#myNavbar .nav>li {
	position: relative;
	width: 16.5%
}

#myNavbar .nav>li:before {
	position: absolute;
	content: '';
	top: 50%;
	left: 0;
	width: 1px;
	height: 30px;
	margin-top: -15px;
	background-color: #B1B4B9
}

#myNavbar .nav>li:first-child:before {
	content: none
}

#myNavbar .nav>li>a {
	font-size: 18px;
	font-weight: 500;
	letter-spacing: -1px;
	color: #666;
	text-align: center
}

@media (min-width: 768px) {

	/* only PC */
#myNavbar .nav>li>a {
	position: relative;
}

#myNavbar .nav>li>a:after {
	content: "";
	position: absolute;
	bottom: 6px;
	left: 50%;
	-webkit-transform: translateX(-50%);
	transform: translateX(-50%);
	width: 0;
	height: 1px;
	background-color: #bfcfea;
	transition: all 0.4s;
}

#myNavbar .nav>li>a:focus:after,
#myNavbar .nav>li>a:hover:after {
	width: 70%;
}

@media (max-width: 767px) {
	#header {
		position: relative;
		z-index: 10;
		box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	}

	#header .navbar-brand {
		float: none;
		width: auto;
		height: 45px;
		padding: 10px 15px;
		display: block;
	}

	#header .navbar-brand img {
		margin: 0 auto;
	}

	#header .navbar-header {
		position: static;
		padding: 45px 0 10px;
	}

	#header .navbar-header:before,
	#header .navbar-header:after {
		content: none;
	}

	#header .general-nav {
		top: 0;
		right: 20px;
	}

	#header .general-nav .link {
		font-size: 12px;
	}

	#myNavbar .nav {
		position: static;
		padding-bottom: 4px;
	}

	#myNavbar .nav>li {
		float: left;
		width: 50%;
	}

	#myNavbar .nav>li:before {
		display: none;
	}

	#myNavbar .nav>li>a {
		margin: 0 3px;
		padding-left: 15px;
		padding-right: 15px;
		border-bottom: 1px solid #e0e5eb;
	}

	#myNavbar .nav>li>a:focus,
	#myNavbar .nav>li>a:hover {
		color: #666;
	}

	#myNavbar {
		padding: 0;
		overflow: hidden;
		background-color: #e0e5eb;
		box-shadow: 0 0 10px rgb(0 0 0 / 20%);
	}

	#myNavbar .navbar-nav {
		margin: 0;
	}

	#myNavbar .navbar-nav>li>a {
		font-size: 14px;
	}

	#myNavbar.affix {
		position: fixed;
		top: 0;
		left: 0;
		right: 0;
		z-index: 10;
	}

	#myNavbar.affix~.mainwrap,
	#myNavbar.affix~.subwrap {
		padding-top: 125px;
	}

	#header .navbar-toggle {
		width: 40px;
		height: 40px;
		top: 10px;
		left: 10px;
	}

	#header .navbar-toggle .icon-bar {
		height: 2px;
	}

	#header .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(1) {
		-webkit-transform: translateY(9px) rotate(45deg);
		-ms-transform: translateY(9px) rotate(45deg);
		-o-transform: translateY(9px) rotate(45deg);
		transform: translateY(9px) rotate(45deg);
	}

	#header .navbar-toggle[aria-expanded="true"] .icon-bar:nth-child(3) {
		-webkit-transform: translateY(-9px) rotate(-45deg);
		-ms-transform: translateY(-9px) rotate(-45deg);
		-o-transform: translateY(-9px) rotate(-45deg);
		transform: translateY(-9px) rotate(-45deg);
	}
}

/* Footer */
#footer {
	margin-top: auto;
	clear: both;
	background-color: #0d244e;
	text-align: left;
	font-size: 14px;
	color: #99acce;
	padding: 30px 0;
}

#footer .row {
	display: flex;
	justify-content: space-between;
}

#footer .row:before,
#footer .row:after {
	display: none;
}

#footer .sponsor {
	display: flex;
	gap: 30px;
	align-items: center;
}

#footer .col a {
	transition: all 0.3s;
	color: #a6e5ff;
}

#footer .tit {
	margin-bottom: 1.5em;
	font-size: 1.15em;
	font-weight: 500;
}

#footer .info {
	display: flex;
	align-items: flex-end;
	justify-content: space-between;
}

#footer .info address {
	margin: 0;
}

@media (max-width: 1079px) {
	#footer {
		padding: 15px 0;
		font-size: 12px;
		text-align: center;
	}

	#footer .info {
		flex-direction: column;
		align-items: center;
	}

	#footer .row {
		flex-direction: column;
		gap: 15px;
	}

	#footer .sponsor {
		flex-direction: column;
		gap: 15px;
	}

	#footer .sponsor img {
		height: 57px;
	}
}

/* layout */
.wraparea {
	width: 100%;
	max-width: 1260px;
	margin: 0 auto;
	padding: 0 30px;
}

.wraparea:after {
	display: block;
	content: "";
	clear: both;
}

@media (max-width: 1079px) {
	.wraparea {
		padding: 0 15px;
	}
}

@media (max-width: 767px) {
	.wraparea {
		padding: 0 12px;
	}
}

/* sub layout */
.subtop {
	position: relative;
}

.subtop .sub_visual {
	width: 100%;
	height: 290px;
	background-image: url(/html/img/bg/bg_sub_visual.jpg) !important;
	background-position: center;
	background-size: auto 100%;
	background-repeat: no-repeat;
}

.subwrap {
	padding-top: 130px;
}

.subwrap .contents {
	padding-top: 53px;
	padding-bottom: 90px;
	min-height: 700px;
	/* text-align: justify; */
	line-height: 1.5;
}

.subwrap h2 {
	position: relative;
	font-weight: 700;
	font-size: 3.5em;
	text-align: center;
	margin-bottom: 50px;
	padding-bottom: 30px;
}

.subwrap h2:before {
	content: "";
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1.5em;
	height: 5px;
	margin-left: -0.75em;
	background-color: #a30109;
}

@media (max-width: 1079px) {
	.subtop .sub_visual {
		height: 0;
		padding-top: 23%;
	}

	.subwrap {
		padding-top: 50px;
	}

	.subwrap .contents {
		padding-top: 20px;
		padding-bottom: 40px;
	}

	.subwrap h2 {
		padding-bottom: 15px;
		margin-bottom: 15px;
		font-size: 26px;
	}
}

@media (max-width: 640px) {
	.subwrap h2 {
		font-size: 20px;
	}
}

/* Main */
.mainwrap {
	padding-top: 130px;
}

.mainwrap .visual {
	position: relative;
}

.mainwrap .visual .slide {
	background-position: center;
	background-size: cover;
}

.mainwrap .visual_wrap {
	position: relative;
	height: 520px;
}

.mainwrap .visual_wrap img {
	position: absolute;
}

.mainwrap .visual_wrap .logo {
	left: 0;
	top: 50px;
}

.mainwrap .visual_wrap .txt {
	right: 40px;
	bottom: 90px;
}

/* .mainwrap .visual {
	background: url("/html/img/bg/bg_main_visual_2025.jpg");
	background-size: cover;
	background-position: center;
}
 */

.mainwrap .main_menu {
	display: flex;
	justify-content: space-between;
	margin-top: 40px;
	gap: 30px;
}

.mainwrap .main_menu li {
	flex: 1;
}

.mainwrap .main_menu a {
	display: flex;
	flex-direction: column;
	align-items: center;
	height: 100%;
	padding: 30px 15px;
	background: #ececec;
	border: 1px solid #ccc;
	border-radius: 15px;
	transition: all 0.3s;
}

.mainwrap .main_menu a:hover {
	background: #0d244e;
	border-color: #0d244e;
	color: #fff;
}

.mainwrap .main_menu img {
	width: 120px;
	height: 120px;
}

.mainwrap .main_menu img:nth-child(2) {
	display: none;
}

.mainwrap .main_menu a:hover img:nth-child(1) {
	display: none;
}

.mainwrap .main_menu a:hover img:nth-child(2) {
	display: block;
}

.mainwrap .main_menu .tit {
	font-size: 1.25em;
	color: #0e3058;
	margin-top: 15px;
	font-weight: 700;
}

.mainwrap .main_menu a:hover .tit {
	color: #fff;
}

.mainwrap .article {
	display: flex;
	margin: 50px 0 80px;
	gap: 40px;
}

.mainwrap .article_col {
	position: relative;
	max-width: calc(50% - 20px);
	width: 100%;
}

.mainwrap .article_col .cont:not(:first-child) {
	margin-top: 30px;
}

.mainwrap .article_col h2 {
	font-size: 1.5em;
	font-weight: 700;
	margin-bottom: 15px;
}

.mainwrap .notice li {
	display: inline-flex;
	width: 100%;
	justify-content: space-between;
	align-items: center;
}

.mainwrap .notice li a {
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 1.1em;
	line-height: 2em;
}

.mainwrap .notice li span {
	margin-left: 5px;
	flex-shrink: 0;
}

.mainwrap .article_col .more {
	position: absolute;
	right: 0;
	top: 2px;
	background: #464646;
	color: #fff;
	border-radius: 2em;
	padding: 0.25em 1em;
}

.mainwrap .date_list {
	display: flex;
	flex-direction: column;
	gap: 5px;
	line-height: 1.5;
}

.mainwrap .date_list li {
	border-radius: 5px;
	padding: 20px 30px;
	align-items: center;
	color: #fff;
}

.mainwrap .date_list li:nth-child(1) {
	background: #a30109;
}

/* .mainwrap .date_list li:nth-child(2) {
	background: #434343;
} */

.mainwrap .date_list li:nth-child(2) {
	background: #007c36;
}

.mainwrap .date_list li:nth-child(3) {
	background: #e6c132;
}

.mainwrap .date_list li .info {
	display: flex;
	width: 100%;
	gap: 5px;
	align-items: center;
	color: #fff;
}

.mainwrap .date_list .tit {
	font-size: 1.5em;
	font-weight: 700;
}

.mainwrap .date_list .date {
	font-size: 1.5em;
}

.mainwrap .date_list .d_day {
	font-size: 1.8em;
	font-weight: 700;
	margin-left: auto;
}

.mainwrap .date_list .gauge {
	width: 100%;
	height: 10px;
	background: #fff;
	border-radius: 5px;
	margin-top: 5px;
	overflow: hidden;
	font-size: 0;
}

.mainwrap .date_list .percent {
	display: block;
	height: 10px;
}

.mainwrap .date_list li:nth-child(1) .percent {
	background: #f26522;
}

/* .mainwrap .date_list li:nth-child(2) .percent {
	background: #a09c9c;
} */

.mainwrap .date_list li:nth-child(2) .percent {
	background: #acd373;
}

.mainwrap .date_list li:nth-child(3) .percent {
	background: #ffff00;
}

.mainwrap .article_col .news_letter {
	display: flex;
	border: 1px solid #ccc;
	padding: 15px;
	border-radius: 5px;
	align-items: center;
	justify-content: space-between;
	gap: 15px;
}

.mainwrap .article_col .news_letter .tit {
	display: flex;
	gap: 5px;
	align-items: center;
	flex-shrink: 0;
	font-weight: 700;
}

.mainwrap .article_col .news_letter select {
	width: 100%;
}

.mainwrap .btns {
	display: flex;
	gap: 15px;
}

.mainwrap .btns a {
	background: #1873b2;
	color: #fff;
	padding: 15px;
	flex: 1;
	border-radius: 5px;
	font-weight: 700;
	font-size: 1.2em;
	text-decoration: none;
}

.mainwrap .btns span {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

.mainwrap .btns span img {
	width: 24px;
	height: 24px;
	margin-left: 15px;
}

@media (max-width: 1079px) {
	.mainwrap {
		margin-top: 50px;
		padding-top: 0;
	}

	.mainwrap .visual_wrap {
		height: 300px;
	}

	.mainwrap .visual_wrap .logo {
		width: 125px;
		left: 15px;
		top: 15px;
	}

	.mainwrap .visual_wrap .txt {
		width: 320px;
		right: 50%;
		top: 100px;
		transform: translateX(50%);
	}

	.mainwrap .visual_wrap .organ {
		width: 135px;
		right: 50%;
		transform: translateX(50%);
		bottom: 15px;
	}

	.mainwrap .abstract .box {
		height: auto;
		width: calc(100% + 30px);
		padding: 15px;
		margin: 0;
		margin-left: -15px;
		justify-content: center;
		flex-direction: column;
	}

	.mainwrap .abstract .box:before,
	.mainwrap .abstract .box:after {
		display: none;
	}

	.mainwrap .abstract .box .txt_wrap {
		text-align: center;
	}

	.mainwrap .abstract .box .txt_wrap h2 {
		font-size: 1.2em;
	}

	.mainwrap .abstract .box a {
		height: auto;
		margin: 0;
		margin-top: 15px;
		padding: 5px 15px;
		font-size: 1em;
	}

	.mainwrap .main_menu {
		margin-top: 30px;
		padding: 0;
		justify-content: center;
		gap: 30px;
	}

	.mainwrap .main_menu a {
		flex-direction: column;
	}

	.mainwrap .main_menu .img_wrap {
		width: 70px;
		height: 70px;
	}

	.mainwrap .main_menu img {
		width: 40px;
		height: 40px;
	}

	.mainwrap .main_menu .tit {
		font-size: 1em;
		margin: 0;
		margin-top: 5px;
	}

	.mainwrap .article {
		margin: 30px 0;
		flex-direction: column;
		gap: 30px;
	}

	.mainwrap .article_col {
		max-width: 100%;
	}

	.mainwrap .article_col h2 {
		font-size: 1.2em;
		text-align: center;
	}

	.mainwrap .article_col .more {
		display: block;
		position: static;
		margin: 15px auto 0;
		text-align: center;
		padding: 5px 15px;
		border-radius: 5px;
	}

	.mainwrap .notice li {
		font-size: 0.9em;
	}

	.mainwrap .date_list li {
		height: auto;
		padding: 15px;
	}

	.mainwrap .date_list .tit {
		font-size: 1.2em;
	}

	.mainwrap .date_list .date {
		font-size: 1em;
	}

	.mainwrap .date_list .d_day {
		font-size: 1.5em;
	}
}

/* .maintop {
	position: relative;
	height: 400px;
	max-width: 1920px;
	margin: 0 auto;
}

.maintop .main_visual {
	width: 100%;
	height: 100%;
	background-position: center top;
	background-size: auto 100%;
	background-repeat: no-repeat;
	background-color: #fff
}

.maintop .main_left {
	position: absolute;
	top: 0;
	left: 0;
	width: 20%;
}

.maintop .main_right {
	position: absolute;
	top: 139px;
	right: 0;
}

.mainwrap {
	background-color: #fff
}

.mainwrap .box__main {
	margin: 100px 0 60px;
}

.mainwrap .title {
	position: absolute;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	z-index: 3;
	padding: 20px 5px;
}

.mainwrap .box__calendar .col-xs-6 a {
	display: block;
	height: 300px;
	text-align: center;
	background-size: cover
}

.mainwrap .box__calendar .col-xs-12 a {
	display: block;
	height: 300px;
	text-align: center;
	background-size: cover
}

.mainwrap .box__calendar .col-xs-6+.col-xs-6 a {}

.mainwrap .box__calendar .col-xs-6 a span.date {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	width: 270px;
	height: 300px;
}

.mainwrap .box__calendar .col-xs-6 a em {
	display: inline-block;
	font-size: 24px;
	color: #fff
}

.mainwrap .box__calendar .col-xs-6 a em b {
	margin-right: 4px;
	font-size: 40px;
	font-weight: bold
}

.mainwrap .box__calendar .col-xs-6 a em.big {
	font-size: 60px;
	font-weight: bold;
}

.mainwrap .box__calendar .col-xs-6 a span {
	display: block;
	font-size: 26px;
	line-height: 1.1em;
	font-weight: 500;
	color: #fff;
	margin-top: 15px;
}

.mainwrap .box__calendar .col-xs-12 a span.date {
	display: table-cell;
	text-align: center;
	vertical-align: middle;
	margin: 0 auto;
	height: 300px;
}

.mainwrap .box__calendar .col-xs-12 a em {
	display: inline-block;
	font-size: 24px;
	color: #fff
}

.mainwrap .box__calendar .col-xs-12 a em b {
	margin-right: 4px;
	font-size: 40px;
	font-weight: bold
}

.mainwrap .box__calendar .col-xs-12 a em.big {
	font-size: 30px;
	font-weight: bold;
}

.mainwrap .box__calendar .col-xs-12 a span {
	display: block;
	font-size: 26px;
	line-height: 1.1em;
	font-weight: 500;
	color: #fff;
	margin-top: 15px;
}

.mainwrap .box__score .col-xs-6 {
	height: 150px;
	text-align: center
}

.mainwrap .box__score .col-xs-6 img {}

.mainwrap .box__score .score {
	display: table-cell;
	width: 100vw;
	height: 150px;
	padding-top: 20px;
	font-size: 20px;
	font-weight: 600;
	color: #fff;
	vertical-align: middle;
	text-align: center;
}

.mainwrap .box__score .score span.small {
	display: block;
	font-weight: 400;
	font-size: 18px;
	margin-top: 5px;
}

.mainwrap .notice_list {
	width: 540px;
	height: 150px;
	border: 1px solid #ccc;
	margin-left: -15px;
	padding: 45px 20px 0px 20px;
}

.mainwrap .notice_list li {
	position: relative;
	padding: 6px 100px 6px 0;
	border-bottom: 1px solid #ccc
}

.mainwrap .notice_list li a {
	display: block;
	width: 100%;
	white-space: nowrap;
	text-overflow: ellipsis;
	overflow: hidden;
	font-size: 15px;
	color: #666;
	font-weight: 400
}

.mainwrap .notice_list li span {
	position: absolute;
	top: 6px;
	right: 0;
	font-size: 15px;
	color: #666;
	font-weight: 400
}

.mainwrap .notice_list li a:hover {
	text-decoration: underline;
	color: #333
}

@media (max-width: 1080px) {
	.maintop {
		height: 240px
	}

	.maintop .main_left {
		display: none;
	}

	.maintop .main_right {
		display: none;
	}

	.mainwrap .box__main {
		padding: 40px 0;
		margin: 0;
	}

	.mainwrap .notice_list {
		width: 108.5%
	}

	.mainwrap .notice_list li {
		padding: 8px 0 6px
	}

	.mainwrap .notice_list li a {
		font-size: 13px
	}
}

@media (max-width: 640px) {
	.maintop {
		height: 140px
	}

	.maintop .main_left {
		display: none;
	}

	.maintop .main_right {
		display: none;
	}

	.maintop .main_visual {
		background-position: 40% top
	}

	.mainwrap .title {
		font-size: 16px
	}

	.mainwrap .box__calendar .col-xs-6 a {
		height: 20vh;
	}

	.mainwrap .box__calendar .col-xs-6 a span.date {
		width: 100vw;
		height: 22vh;
	}

	.mainwrap .box__calendar .col-xs-6 a em {
		font-size: 16px
	}

	.mainwrap .box__calendar .col-xs-6 a em b {
		margin-right: 2px;
		font-size: 29px
	}

	.mainwrap .box__calendar .col-xs-6 a span {
		font-size: 14px
	}

	.mainwrap .box__score .score {
		font-size: 19px
	}
} */

/* 초대의 글 */
.welcome .msg {
	font-size: 1.1em;
	margin-bottom: 30px;
}

.welcome .msg .main_msg {
	font-size: 1.5em;
	font-weight: 500;
}

.welcome .msg p+p {
	margin-top: 1.5em;
}

.welcome .speaker {
	display: flex;
	gap: 15px;
}

.welcome .speaker li {
	display: flex;
	align-items: flex-end;
	flex: 1;
}

.welcome .speaker .txt_wrap {
	margin-left: 20px;
	margin-bottom: 20px;
}

.welcome .speaker span {
	font-weight: 500;
	font-size: 1.5em;
}

@media (max-width: 1079px) {
	.welcome .msg {
		font-size: 1em;
	}

	.welcome .msg .main_msg {
		font-size: 1.2em;
	}

	.welcome .speaker {
		flex-direction: column;
	}

	.welcome .speaker li {
		align-items: center;
	}

	.welcome .speaker li img {
		width: 80px;
	}

	.welcome .speaker .txt_wrap {
		margin: 0;
		margin-left: 15px;
	}

	.welcome .speaker span {
		font-size: 1.1em;
	}
}

/* 모달 */
[data-modal] {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	position: fixed;
	visibility: hidden;
	inset: 0;
	z-index: 100;
	width: 100%;
	height: 100%;
	margin: 0 !important;
	background: rgba(0, 0, 0, 0.75);
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 0;
}

[data-modal].on {
	visibility: visible;
	z-index: 101;
	opacity: 1;
}

[data-modal] .modal_box {
	overflow-y: auto;
	position: relative;
	width: var(--container-width);
	max-width: calc(100vw - 30px);
	max-height: calc(100vh - 30px);
	max-height: calc(100dvh - 30px);
	padding: 0;
	background: #fff;
	font-size: 16px;
	-webkit-box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
	box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.05);
	border-radius: 10px;
}

[data-modal] .modal_box.banner {
	width: auto;
}

[data-modal] :is(.modal.banner, .modal.video) {
	padding: 0;
}

[data-modal] .modal_box.banner a img {
	display: block;
}

[data-modal] .modal_box.video .video_wrap {
	position: relative;
	height: 0;
	padding-top: 56.25%;
	background: rgba(0, 0, 0, 0.5);
}

[data-modal] .modal_box.video .video_wrap:before {
	content: "Loading...";
	position: absolute;
	color: #fff;
	left: 50%;
	top: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

[data-modal] .modal_box.video .video_wrap :is(iframe, video) {
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
}

[data-modal] .modal_box h1 {
	margin-bottom: 15px;
	font-size: 1.35em;
	font-weight: 700;
	color: var(--primary-color);
}

[data-modal] .modal_box .close {
	display: -webkit-inline-box;
	display: -ms-inline-flexbox;
	display: inline-flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	position: absolute;
	top: 10px;
	right: 10px;
	width: 40px;
	height: 40px;
	background: var(--primary-color);
	color: #fff;
	border-radius: 50%;
	opacity: 1;
}

@media (max-width: 1024px) {
	[data-modal] .modal_box {
		max-height: calc(100vh - 60px);
		max-height: calc(100dvh - 60px);
		/* padding: 30px; */
		font-size: 14px;
	}

	[data-modal] .modal_box .close {
		width: 30px;
		height: 30px;
	}
}

@media (max-width: 599px) {
	[data-modal] .modal_box {
		max-height: calc(100vh - 120px);
		max-height: calc(100dvh - 120px);
		/* padding: 15px;
		padding-top: 30px; */
		font-size: 12px;
	}
}