@charset "UTF-8";

@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic:wght@400;700;800&display=swap');

/* reset CSS START */
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-size: 100%;
	font: inherit;
    font-family: "Nanum Gothic", sans-serif;
	vertical-align: baseline;
    text-decoration: none;
    box-sizing: border-box;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, 
footer, header, hgroup, menu, nav, section {
	display: block;
}
html{
    min-height: 100%;
    overscroll-behavior: none;  /* ios 오버스크롤 방지 */
}
body {
    height: 100%;
	line-height: 1;
    color: #333;
}
ol, ul {
	list-style: none;
}
a{
    color: #333;
}
button{
    cursor: pointer;
}
input, button, select, textarea{
    margin: 0;
    padding: 0;
    font-family: "Nanum Gothic", sans-serif;
    border: none;
    background: transparent;
}
input:focus, button:focus, select:focus{
    outline: none;
}
input:focus::placeholder{
    opacity: 0;
    transition: .2s;
}
blockquote, q {
	quotes: none;
}
blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}
/* reset CSS END */

:root{
    --search-bdrs: 5px;
}

.wrap{}

.flex-box{
    display: flex;
}

header{}
.header-top-wrap{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: #fff;
    z-index: 9;
}
.header-top-box{
    max-width: 1024px;
    margin: 0 auto;
}
.logo-box{
    padding: 20px 0 0;
    text-align: center;
}
.logo-box h1{}
.logo-box h1 img{}
.gnb-box{
    padding: 20px 0;
}
.gnb-box .gnb{
    display: flex;
    justify-content: center;
    gap: 10px;
}
.gnb-box .gnb > li{}
.gnb-box .gnb > li > a{
    display: block;
    padding: 8px 16px;
    font-weight: 500;
}
.gnb-box .gnb > li > a > span{}
.header-bottom-wrap{
    padding: 60px 0 0;
}
.header-bottom-box{
    max-width: 1024px;
    margin: 0 auto;
    padding: 20px 0;
}
.calendar-box{
    position: relative;
}
.calendar-box .calendar-search{
    display: flex;
    gap: 10px;
    height: 40px;
}
.calendar-box .calendar-search .calendar-input{
    display: flex;
    width: 190px;
    padding: 12px 15px;
    background-color: #F2F6F9;
    border-radius: var(--search-bdrs);
}
.calendar-box .calendar-search .calendar-input > button{
    width: 20px;
    height: 20px;
    margin: 0 8px 0 0;
}
.calendar-box .calendar-search .calendar-input > button img{
    width: 16px;
    height: 16px;
    vertical-align: middle;
}
.calendar-box .calendar-search select{
    width: 100px;
    padding: 0 15px;
    font-size: 13px;
    border: 1px solid #ccc;
    border-radius: var(--search-bdrs);
    background: url(./images/ico-arrow-down.png) no-repeat center right 10px / 12px 7px;
    appearance: none;
}
.calendar-box .calendar-search input{
    line-height: 19px;
}
.calendar-box .calendar-search input::-webkit-calendar-picker-indicator{
    display: none;
}
.calendar-box .calendar-search .search{
    width: 80px;
    font-weight: 700;
    color: #fff;
    background: #E2001A;
    border-radius: var(--search-bdrs);
}
.calendar-box .calendar-select{
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    padding: 20px 10px;
    background: #fff;
    border-radius: var(--search-bdrs);
    box-shadow: 0 1px 3px rgba(0,0,0,.3);
    display: none;
}
.calendar-box .calendar-select.on{
    display: block;
}
.calendar-header{
    display: flex;
    padding: 0 10px;
    align-items: center;
    justify-content: space-between;
}
.calendar-header button{
    width: 20px;
    height: 20px;
}
.calendar-header button img{
    width: 8px;
    height: auto;
    vertical-align: middle;
}
.calendar-header div{
    cursor: default;
}
.calendar-header div span{
    font-weight: 700;
}
.calendar{
    width: 280px;
    padding: 10px 0 15px;
}
.calendar .days-wrap{
    display: flex;
}
.calendar .day-wrap{
    display: flex;
    flex-wrap: wrap;
}
.calendar span{
    width: 40px;
    height: 40px;
    text-align: center;
    align-content: center;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
}
.calendar span:nth-of-type(7n+1){
    color: #E2001A !important;
}
.calendar span.red{
    color: #E2001A !important;
}
.calendar span.selected{
    position: relative;
    color: #fff !important;
    z-index: 1;
}
.calendar span.selected::after{
    content: "";
    position: absolute;
    top: calc(50% + 1px);
    left: 50%;
    transform: translate(-50%,-50%);
    width: 28px;
    height: 28px;
    background: #E2001A;
    border-radius: 50%;
    z-index: -1;
}
.calendar .days-wrap span{
    color: #9c9c9c;
    cursor: default;
}
.calendar-footer{
    text-align: center;
}
.calendar-footer button{
    width: 120px;
    padding: 8px 10px;
    color: #fff;
    background: #121212;
    font-size: 13px;
    border-radius: 3px;
}

header + section{}
.main-contents-wrap{
    background: #F5F7F8;
}
.main-contents-box{
    max-width: 1024px;
    margin: 0 auto;
    padding: 50px 0 60px;
}
.main-contents-box .flex-box{
    flex-wrap: wrap;
    gap: 50px 70px;
}
.main-contents{
    width: calc(50% - 35px);
}
.main-contents h2{
    padding: 0 0 20px;
    font-size: 18px;
    font-weight: 700;
}
.content-box{
    height: 240px;
    background: #fff;
    border-radius: 8px;
}

footer{}
.footer-wrap{
    background: #121212;
}
.footer-box{
    max-width: 1024px;
    margin: 0 auto;
    padding: 50px 0;
    color: #fff;
}
.footer-title{}
.footer-title h3{
    text-align: center;
    font-size: 24px;
    font-weight: 700;
}
.footer-address{
    padding: 20px 0 0;
}
.footer-address > p{
    text-align: center;
    font-size: 14px;
    line-height: 20px;
}