@charset "utf-8";

@import url("https://cdn.jsdelivr.net/gh/orioncactus/pretendard@v1.3.9/dist/web/static/pretendard.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@300;400;500;600;700;900&display=swap');
@font-face {
    font-family: 'HSSaemaul-Regular';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2108@1.1/HSSaemaul-Regular.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'GangwonEdu_OTFBoldA';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_2201-2@1.0/GangwonEdu_OTFBoldA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'BMJUA';
    src: url('https://fastly.jsdelivr.net/gh/projectnoonnu/noonfonts_one@1.0/BMJUA.woff') format('woff');
    font-weight: normal;
    font-style: normal;
}

/* css reset */
* {
	font-family: 'Pretendard', sans-serif;
	color: #000;
	word-break: keep-all;
}
html { font-size: 10px;}
@media (max-width:1200px) {
    html { font-size: 9px;}
}
@media (max-width:1080px) {
    html { font-size: 8px;}
}
@media (max-width:800px) {
    html { font-size: 7px;}
}

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 {
	margin: 0;
	padding: 0;
	border: 0;
	font-weight: inherit;
    font-family: inherit;
	vertical-align: baseline;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
ol, ul {
	list-style: none;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
a {
    text-decoration: none;
    color: inherit;
}

a:hover {
    text-decoration: none;
}



/* 텍스트 컬러 및 폰트 class  */
.ff_pretd {font-family: 'Pretendard';}
.ff_noto {font-family: 'Noto Sans KR';}
.ff_hss {font-family: 'HSSaemaul-Regular';}
.ff_gwon {font-family: 'GangwonEdu_OTFBoldA';}

.color_b1 {color: #003777;}
.color_b2 {color: #00b4d7;}


/*공통css*/
.flx1 {display: flex; flex-flow: row wrap;}
.flx2 {display: flex; flex-flow: column wrap;}
.inner {width: 100%; max-width:1200px; margin: 0 auto;}
.hide-800 {}
.show-800 {display: none;}
.fw_300 {font-weight: 300;}
.fw_500 {font-weight: 500;}
.fw_600 {font-weight: 600;}
.fw_700 {font-weight: 700;}

img {max-width: 100%;}

@media (max-width:1200px) {
	.inner {margin: 0 4%; width: 92%;}
}

@media (max-width:800px) {
	.hide-800 {display: none;}
	.show-800 {display: block;}
}



/* 헤더 */
header.on {transition: all 0.3s;}
.header {padding-inline:4%; height: max(80px,10rem); justify-content: space-between; align-items: center; position: fixed; width: 100%;left: 0; top:0; background: #fff; z-index: 999;}
.header .logo {width: 45%; max-width: 398px;}
.header .right {width: 55%; justify-content:flex-end; align-items: center;}
.header .date {font-size: 2.8rem; align-items: center;}
.header .date span {display: inline-block; width: 1px; height: 2rem; background: #000; margin: 0 1rem;}
.header .gnb_btn {cursor: pointer; position: relative; border: 1px solid #000; border-radius: 5rem; width: 10rem; height: 5.5rem; margin-left: 3rem;}
.header .gnb_btn span {display: block; width: 3.5rem; height: 2px; background: #000;  position: absolute; left:50%; transform: translate(-50%,-50%); transition: transform .3s;}
.header .gnb_btn span:nth-of-type(1) {top:calc(50% - 1rem); }
.header .gnb_btn span:nth-of-type(2) {top:50%;}
.header .gnb_btn span:nth-of-type(3) {top:calc(50% + 1rem);}

.header .gnb {position: absolute; z-index: 99; top: 100%; right: 0; padding:0 5rem; background: #fff; border-top: 1px solid #e1e1e1; height: 100vh; width: min(650px,100%); visibility: hidden; opacity: 0;transition: all 0.3s;}
.header .gnb .date {display: none;}
.header .gnb nav {position: relative;}
.header .gnb nav li {padding-block: 4rem 3rem; border-bottom: 1px solid #b8b8b8; transition: all .3s;}
.header .gnb nav li:hover {border-color: #000;}
.header .gnb nav a {font-size: 2.2rem; font-weight: 500; color: #787878;}
.header .gnb nav a b {font-size: 3.8rem;}

header .bg {position: fixed; top:0; left: 0; width: 100vw; height: 100vh; background: rgba(0,0,0,0.75); z-index: 98; visibility: hidden; opacity: 0; transition: all 0.3s;}

header.on .bg {visibility: visible; opacity: 1;}
header.on .gnb_btn {align-items: center; }
header.on .gnb_btn span:nth-of-type(1) {top: 50%; transform: translate(-50%,-50%) rotate(45deg);}
header.on .gnb_btn span:nth-of-type(2) {opacity: 0;transform: translate(-50%,-50%) rotate(45deg);}
header.on .gnb_btn span:nth-of-type(3) {top: 50%; transform: translate(-50%,-50%) rotate(-45deg);}
header.on .gnb {visibility: visible; opacity: 1; }

.header .gnb nav ul li.active, .header .gnb nav ul li.active span {color: #003777; font-weight: 400;}


@media (max-width:1200px) {
	.header {padding-inline: 4%;}
}

@media (max-width:1080px) {

}

@media (max-width:800px) {
    .header .logo {width: calc(100% - 12rem);}
    .header .right {width: 10rem;}
    .header .right .date {display: none;}
    .header .gnb_btn {width: 8rem; height: 4.5rem; margin-left: 2rem;}
    .header .gnb {width: 100%; padding-top: 5rem;}
    .header .gnb .date {display: block;}
}   

/* 푸터 */
.ft-top {background: #ededed; padding:6rem 15vw; }
.ft-top .ft-inner {justify-content: space-between; align-items: center;}
.ft-top .left {width: calc(100% - 22rem);}
.ft-top .left .txt {justify-content: space-between;align-items: flex-start; padding-right: 3%;}
.ft-top .left .txt h2 {font-size: 2.8rem; line-height: 1.4;}
.ft-top .left .txt h2 b {font-weight: 700;}
.ft-top .left .arr { border-radius: 5rem; border: 1px solid #000; margin-top: 2.5rem; position: relative;}
.ft-top .left .arr span {font-size: 2.2rem; font-weight: 700; padding: 1rem 5.8rem; display: block; position: relative; z-index: 2; }
.ft-top .left .arr::before {content:""; position: absolute; left:50%; top:50%; transform: translate(-50%,-50%); width: 5px; height: 5px; opacity: 0; background: #000; border-radius: 5rem;  transition: all .2s;}
.ft-top .left .arr:hover::before {width: 100%; height: 100%; opacity: 1;}
.ft-top .left .arr:hover span {color: #fff;}
.ft-top .right .webzine_list > li {position: relative; padding: 12px 3.5rem; background: #dadada;}
.ft-top .right .webzine_list h4 {font-size: 2.1rem; font-weight: 500; cursor: pointer;}
.ft-top .right .webzine_list h4 span {font-size: 1.5rem; display: inline-block; position: relative; top: -1px;}
.ft-top .right .webzine_list ul {position: absolute; top: 0; left: 0; width: 100%; background: #fff; transform: translateY(-100%); display: none;}
.ft-top .right .webzine_list h4.active span {transform: scale(1, -1);}
.ft-top .right .webzine_list ul li a {font-size: 1.8rem; padding-block:  10px; width: 100%; display: block; text-align: center;}
.ft-top .right .sns {justify-content: space-between; align-items: center; margin-top: 2.5rem;}
.ft-top .right .sns li {width: min(5rem, 32%);}

.top_btn {position: fixed; bottom: 10%; right: 4%; width: 7rem; height: 7rem; background: #fff; border-radius: 50%; border-radius: 50%;display:flex; flex-flow: column wrap; justify-content: center; align-items: center; font-size: 2.4rem; border: 1px solid #000; padding: 0.5rem; cursor: pointer; transition: all .2s; z-index: 90;}
.top_btn img {width: 1.8rem;}
.top_btn p {line-height: 1; margin-top: 0.2rem; color: inherit;}
.top_btn:hover {background: #000; color: #fff;}
.top_btn:hover img {filter: invert(100%) sepia(0%) saturate(0%) hue-rotate(159deg) brightness(105%) contrast(105%);}

.fl_menu {position: fixed; right:4%; bottom:10%;}
.fl_menu li {margin: 8px 0;}
.fl_menu li a {width: 60px; height: 60px; border-radius: 50%; background: #333; justify-content: center; align-items: center; transition: all .2s; color: #fff;}
.fl_menu li a:hover {background: #bbdf32;}

.footer {text-align: center; padding-block: 3rem 5rem;}
.footer * {color: #3d3d3d;  font-size: 1.7rem;}
.footer .info {justify-content: center; padding-block:3rem 1.5rem;}
.footer .info li {position: relative; padding: 0 1rem;}
.footer .info li:first-child {width: 100%;}
.footer .info li:not(:last-child)::before {content:""; position: absolute; top:7px; right: 0;width: 1px; height: 16px; background: #3d3d3d;}

@media (max-width:1720px) {
    .ft-top {padding-inline: 0;}
    .ft-top .ft-inner { max-width: 1200px; margin-inline: auto;}
}

@media (max-width:1200px) {
	.ft-top .ft-inner {padding-inline: 4%;}
}


@media (max-width:1080px) {
	.fl_menu {display: none;}
}

@media (max-width:800px) {
    .ft-top .right {width: 100%; order:1;  display: flex;flex-flow: row wrap; justify-content: space-between; align-items: center; margin-bottom: 3rem;}
    .ft-top .right .sns {margin-top: 0; width: min(150px,40%); gap: 5%;}
    .ft-top .right .sns li {width: 30%; }
    .ft-top .left {width: 100%; order:2; justify-content: space-between; align-items: flex-end;}
    .ft-top .left .img {width: min(178px,30%);}
    .ft-top .left .txt {width: 70%;}

	.footer {padding-inline: 4%;}
    .footer .info li:nth-of-type(2n+1)::before {display: none;}
}

@media (max-width:500px) {
    .footer .info li,.footer p {font-size: 14px;}
    .footer .info li::before {display: none;}
}