@charset "utf-8";

@import url('https://fonts.googleapis.com/css2?family=Nanum+Gothic&display=swap');

* {
    padding: 0;
    margin: 0;
    border: 0;
    outline: 0;
}

ul,
ol {
    list-style: none;
}

a {
    text-decoration: none;
    color: #000;
}

body {
    font-family: "Nanum Gothic", sans-serif;
}

.clear::after {
    display: block;
    content: "";
    clear: both;
}


header {
    position: relative;
    z-index: 100px;
}

#header_top {
    background-color: #000;
}

#header_right {
    max-width: 1720px;
    width: 100%;
    margin: 0 auto;
    height: 40px;
}


#header_right>ul {
    float: right;
}

#header_right>ul>li {
    float: left;
    line-height: 40px;
}

#header_right>ul>li.yellow {
    background-color: #ffea00;
    width: 156px;
    font-size: 14px;
    padding-left: 20px;
    box-sizing: border-box;
    position: relative;
}

#header_right>ul>li.yellow a {
    font-weight: bold;
}

#header_right>ul>li.yellow::before {
    display: block;
    content: "";
    position: absolute;
    right: 10px;
    background: url('../img/링크\ 임티.svg');
    width: 13px;
    height: 13px;
    top: 50%;
    transform: translateY(-50%);
}


#header_right>ul>li.yellow:first-child::after {
    display: block;
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 1px;
    height: 20px;
    background-color: #000;
}

#header_right>ul>li.black {
    width: 74px;
    text-align: center;
}

#header_right>ul>li.black a {
    font-weight: bold;
    font-size: 14px;
    color: #fff;
}

/* #header_bottom */

#header_bottom #header_center {
    width: 100%;
    max-width: 1720px;
    height: 90px;
    margin: 0 auto;
}

#header_bottom #header_center .header_logo a {
    float: left;
    padding-top: 25px;
    padding-bottom: 25px;
}

#header_bottom #header_center .header_logo a img {
    width: 172px;
    height: 33px;
    padding-right: 15px;
}

/* 메뉴 */

#header_center .header_nav {
    float: left;
}

#header_bottom #header_center .header_nav ul {
    float: left;
    text-align: center;
}

.menu-toggle {
    display: none;
    /* 체크박스 숨김 */
}

/* 햄버거버튼 */
.hamburger {
    display: none;
    font-size: 30px;
    color: #ffea00;
    margin: 10px;
    position: absolute;
    top: 1.7em;
    left: 10.5em;
    z-index: 2;
    cursor: pointer;
}

/* 기본 햄버거 메뉴 아이콘 */
.hamburger::before {
    content: '☰';
    color: #000;
}

/* 체크박스가 체크되었을 때 햄버거 버튼을 X로 변경*/
.menu-toggle:checked+.hamburger::before {
    content: '✖';
    color: #000;
    float: left;
}

/* 메인메뉴 */
#header_bottom #header_center .header_nav ul li {
    float: left;
    line-height: 70px;
    width: auto;
    height: 70px;
    padding-left: 5em;
    box-sizing: border-box;
    position: relative;
    top: 10px;
    margin: 0 auto;
}

#header_bottom #header_center .header_nav ul li a {
    width: auto;
    height: 70px;
    display: block;
    font-weight: bold;
    font-size: 18px;
}

/* 서브메뉴 */
#header_bottom #header_center .header_nav ul li ul {
    position: absolute;
    top: 70px;
    left: 0;
    z-index: 100;
    display: none;
}

#header_bottom #header_center .header_nav ul li:hover ul {
    display: block;
    background-color: #fff;
}

#header_bottom #header_center .header_nav ul li ul li {
    padding: 0 2px;
}

#header_bottom #header_center .header_nav ul li ul li a {
    font-size: 13px;
}

#header_bottom #header_center #header_lang {
    float: left;
    margin: 33px 0 0 20px;
}

#header_bottom #header_center #header_lang .lang {
    width: 40px;
    height: 25px;
    line-height: 25px;
    background-color: black;
    border-radius: 50px;
    color: #fff;
    font-size: 14px;
    text-align: center;
    box-sizing: border-box;
    font-weight: 700;
    cursor: pointer;
}

#header_bottom #header_center #header_lang .lang:hover {
    background-color: #ffea00;
    color: #000;
}

#header_bottom #header_center #header_search {
    width: auto;
    float: right;
    position: relative;
    top: 25px;
}

#header_bottom #header_center #header_search input {
    height: 40px;
    width: auto;
    line-height: 90px;
    font-size: 14px;
    color: #666;
}

#header_bottom #header_center #header_search input:hover {
    border: 2px solid #000;
    box-sizing: border-box;
}

#header_bottom #header_center #header_search::after {
    display: block;
    content: "";
    background: url(../img/돋보기.svg) no-repeat;
    position: relative;
    top: 20px;
    width: 23px;
    height: 23px;
    float: right;
    transform: translateY(-50%);
    cursor: pointer;
}

/* 배너 */

#banner {
    width: 100%;
    height: 606px;
    background: #e9e9e9;
    overflow-x: hidden;
}

#banner>#center {
    max-width: 1720px;
    height: 606px;
    margin: 0 auto;
    position: relative; 
}

#banner>#center>aside {
    float: left;
    position: absolute;
    top: 30%;
    text-align: center;
}

#banner>#center>aside>div {
    font-size: 24px;
    font-weight: 600;
    line-height: 40px;
    color: #666;
}

#banner>#center>aside>span {
    display: block;
    margin-bottom: 25px;
    font-size: 36px;
    font-weight: bold;
}

#banner>#center>aside .more {
    width: 170px;
    height: 45px;
    border: 2px solid #000;
    text-align: center;
    line-height: 45px;
    margin: 7px;
    font-weight: bold;
    font-size: 16px;
}

#poster{
    float: right;
}

#poster input[id*="slide"]{
    display: none;
}

#poster .slidewrap {
    min-width: 1500px;
    width: 1500px;
    box-sizing: border-box;
    height: 606px;
    display: flex;
    justify-content: center;
    align-items: center;
    overflow: hidden;
}

#poster .slidelist{
    white-space: nowrap;
    font-size: 0;
}

#poster .slidelist > li{
    display: inline-block;
    vertical-align: middle;
    width: 100%;
    transition: all .5s;
}

#poster .slidelist li > a{
    display: block;
    position: relative;
}

#poster .slidelist > li > a img{
    width: 100%;
    object-fit:cover;
}

#poster .slidelist label{
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    padding: 50px;
    cursor: pointer;
}

#poster .slidelist .left{
    left: 30px;
    background: url(../img/left.svg) center center / 25px no-repeat;
    filter: invert(80%) sepia(64%) saturate(1052%) hue-rotate(359deg) brightness(107%) contrast(106%);
}

#poster .slidelist .right{
    right: 30px;
    background: url(../img/right.svg) center center / 25px no-repeat; 
    filter: invert(80%) sepia(64%) saturate(1052%) hue-rotate(359deg) brightness(107%) contrast(106%);
}

#poster [id="slide01"]:checked ~ .slidewrap .slidelist > li{transform: translateX(0%);}
#poster [id="slide02"]:checked ~ .slidewrap .slidelist > li{transform: translateX(-100%);}
#poster [id="slide03"]:checked ~ .slidewrap .slidelist > li{transform: translateX(-200%);}


#banner>#center>#poster>.slidewrap>ul>li>div {
    margin-top: 5px;
    font-size: 20px;
    line-height: 30px;
    font-weight: bold;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

#banner>#center>#poster>ul>li>div>span {
    font-size: 17px;
    font-weight: 600;
    color: #666;
}

/* 섹션2 캘린더 부분 */
#calendar {
    width: 100%;
    height: 1080px;
}

#calendar>#C-top {
    max-width: 1720px;
    height: 320px;
    margin: 0 auto;
}

#calendar>#C-top>aside {
    width: 155px;
    height: 135px;
    text-align: center;
    position: relative;
    top: 25%;
    float: left;
}

#calendar>#C-top>aside>.month {
    font-size: 100px;
    font-weight: bold;
    letter-spacing: -20px;
    text-align: center;
}

#calendar>#C-top>aside>p {
    font-size: 24px;
    text-align: center;
}

#calendar>#C-top>aside>p>span {
    font-weight: bold;
}

#calendar>#C-top>.day {
    position: relative;
    left: 90px;
    top: 20px;
    float: left;
}

#calendar>#C-top>.day>ul {
    width: 1200px;
    height: 20px;
    position: absolute;
    top: 90px;
    left: 35px;
    float: left;
}

#calendar>#C-top>.day>ul>li {
    width: 40px;
    margin-right: 50px;
    font-size: 24px;
    font-weight: bold;
    float: left;
    text-align: center;
    line-height: 50px;
}

#calendar>#C-top>.day>ul>.sat {
    color: blue;
}

#calendar>#C-top>.day>ul>.sun {
    color: red;
}

#calendar>#C-top>.day>ul>li:hover {
    border-radius: 50px;
    background-color: #000;
    color: #ffea00;
}

#calendar>#C-top>.more {
    float: right;
    position: relative;
    top: 125px;
    width: 170px;
    height: 45px;
    border: 2px solid #000;
    text-align: center;
    line-height: 45px;
    margin: 7px;
    font-weight: bold;
    font-size: 16px;
}

#calendar>#C-bottom {
    max-width: 1720px;
    height: 760px;
    margin: 0 auto;
    position: relative;
}

#calendar>#C-bottom>img {
    width: 480px;
    height: 680px;
    object-fit: cover;
    float: left;
}

#calendar>#C-bottom>h1 {
    float: left;
    font-size: 3em;
    position: relative;
    left: 40px;
}

#calendar>#C-bottom>h2 {
    float: right;
    margin-right: 15px;
    font-size: 32px;
}

#calendar>#C-bottom>h2.text:hover {
    color: red;
}

#calendar>#C-bottom>#today {
    width: 1200px;
    height: 580px;
    float: left;
    margin-top: 53px;
    margin-left: 40px;
}

#calendar>#C-bottom>#today>div {
    width: 100%;
    height: 150px;
    border-bottom: 3px solid #666;
    margin-bottom: 53px;
    box-sizing: border-box;
}

#calendar>#C-bottom>#today>div>.performance {
    width: 115px;
    height: 115px;
    background-color: #ffea00;
    text-align: center;
    line-height: 115px;
    font-size: 24px;
    font-weight: bold;
    float: left;
    margin-right: 20px;
}

#calendar>#C-bottom>#today>div>.type {
    width: 110px;
    height: 40px;
    border: 1px solid #666;
    float: left;
    text-align: center;
    line-height: 40px;
    font-weight: bold;
    color: #666;
    font-size: 18px;
}

#calendar>#C-bottom>#today>div>.title {
    display: block;
    position: relative;
    top: 55px;
    left: -112px;
    font-size: 24px;
    color: #444;
    font-weight: bold;
}

#calendar>#C-bottom>#today>div>.day-place {
    display: block;
    position: relative;
    top: 65px;
    left: -112px;
    font-weight: 600;
    color: #666;
}

#calendar>#C-bottom>#today>.black>.performance {
    background-color: #000;
    color: #fff;
}

#footer_top {
    width: 100%;
    height: 75px;
    background-color: #000;
}

#footer_top>.infor {
    max-width: 1720px;
    margin: 0 auto;
}

#footer_top>.infor>ul {
    line-height: 75px;
    color: #ffea00;
}

#footer_top>.infor>ul>li {
    float: left;
    margin-right: 45px;
    font-weight: bold
}

#footer_top>.sns {
    max-width: 1720px;
    margin: 0 auto;
}

#footer_top>.sns>a>img {
    float: right;
    width: 35px;
    height: 35px;
    margin-left: 45px;
    object-fit: cover;
    margin-top: 15px;
    position: relative;
    top: 5px;
    filter: invert(80%) sepia(64%) saturate(1052%) hue-rotate(359deg) brightness(107%) contrast(106%);
}

#footer_bottom {
    max-width: 1720px;
    margin: 0 auto;
}

#footer_bottom>p {
    float: left;
    line-height: 27px;
    padding: 20px 0;
}