@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+KR:wght@100;300;400;500;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Nanum+Myeongjo:wght@400;700;800&display=swap');

* { margin:0;padding:0; }

body {
    font-family: 'Noto Sans KR', sans-serif;
    font-size:16px; 
    background-color: #322016;
    color:#1d1d1d ; 
    font-weight: 300;
}
a, li { 
    text-decoration: none;
    list-style: none;
 }
.aligncenter {
    text-align: center;
    margin:0 auto;
}
.wrap {
    background-color: #fff;
}
.flexbox {
    display: flex;
    justify-content: space-between;
    gap:20px;
}
.wdflex {
    width:1200px;
    margin:0 auto;
    text-align: left;
}
header {
     height:120px;
     width:100%;
 }
.topmenu {
    max-width: 1200px;
    display:flex;
    justify-content: flex-end;
    margin:0 auto;
}
.topmenu li { 
    position: relative;
    padding:0 5px;
}
.topmenu li a { 
    padding:0 10px;font-size:0.85rem; 
    color:inherit;
}
header .nav_bar { 
    display: flex;
    justify-content: center;
    align-items: center;
    margin:0 auto;
    margin-top:20px;
    gap:60px;
}
header .nav_bar .nav_mbtn .mbtn, 
header .sidebar_menu .close_btn { 
    display:none; 
}

header .nav_bar .nav_menu  {
    display: flex;
    align-items: center;
    justify-content: right;
    padding:15px 0;
}
header .nav_bar .nav_menu  
.sidebar_menu {
    width:800px;
    display: flex;
    align-items: center;
    justify-content: right;
    padding-left:50px;
}
header .nav_bar .nav_menu 
.sidebar_menu > li > a {
    font-size: 1.3rem;
    padding:20px 30px;
    color:inherit;
    font-weight: 500;
}
header .nav_bar > ul > li > a:hover  {
    color:#7164ac;
    transition: 0.2s;
}

header .Fixedtop {
    background-color: #fff;
    position: fixed;
    display:flex;
    justify-content: center;
    align-items: center;
    width:100%;
    top:-20px;
    z-index: 10000;
    transition: all 0.8s;
    height:100px;
    box-shadow: 
    0px 8px 8px 0px
    rgba(75, 75, 75, 0.1);
}

header .nav_bar .nav_menu > ul > li { 
    position: relative;
}
header .nav_menu .sub_menu {
    visibility: hidden;
    opacity: 0;
    position: absolute;
    left:50%;
    transform: translateX(-50%);
    z-index: -1;
    border-radius: 5px;
    font-size:0.85rem;
    min-width: 170px;
    top:-10px;
}
header .nav_menu .sub_menu::after {
    content: ' ';
    position: absolute;
    width:10px;
    height:10px;
    background-color: #2c2c24;
    transform: rotate(45deg) translateX(-50%);
    left:50%;
    top:0;
    border-radius: 2px;
    z-index: -1;
}
header .nav_menu 
.sub_menu li:not(:last-child) {
    border-bottom:1px solid #616161;
}
header .nav_menu ul > li:hover 
.sub_menu  {
    position: absolute;
    display: block;
    background-color: #2c2c24;
    white-space: nowrap;
    top:45px;
    visibility: visible;
    opacity: 1;
    transition: opacity 0.3s linear;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 10000;
}
header .nav_bar .nav_menu 
.sub_menu a {
    display: block;
    padding:10px 0;
    color:#fff;
    background-color: #2c2c24;
    text-align: center;
    font-weight: 500;
}
header .nav_bar 
.sub_menu li a:hover {
    background-color:#473c3c;
}

/* index page */

#index_img {
    display:flex;
    justify-content: center;
    position: relative;
}
#index_img img {
    height:500px;
}
#index_img .cycle-slideshow {
    margin:0 auto;
    text-align:center;
    overflow: hidden;
}
section {
    min-height:500px;
    padding:40px 0;
    text-align: center;
}

.index_history,
.index_people,
.index_loc
{
    background-color: #efefef;
}
.index_history_sub {
    width:1200px;
    display: flex;
    justify-content: center;
    align-items: top;
    text-align: left;
    gap: 10px;
    margin:0 auto;
}
.index_history_sub > li {
    border-left: 1px solid #ccc;
    width:390px;
    padding:0 20px;
}

.index_history_sub_list > li {
    padding-bottom: 10px;
    position: relative;
}
.index_history_sub_list > li > ul > li {
    padding-bottom: 5px;
    font-size: 0.9rem;
}
.index_history_sub_list h3::before {
  content: '';
  width:11px;height:11px;
  border-radius: 50%;
  transform: translateY(-50%);
  background-color:#efefef;
  border:4px solid orange;
  position: absolute;
  left:-30px;
  top:15px;
  z-index: 999;
}
.index_products {
  background-image: url(./image/index_products.png);
  background-size: cover;
  color:white;
}
.index_products .page_title_white {
    display: block;
    font-size: 2.2rem;
    font-weight: 500;
    color:#fff;
    margin: 50px 0;
}
.index_products ul {
    display: flex;
    justify-content: center;
    align-items: top;
    gap:20px;
}
.index_products li {
    border:1px solid #efefef;
    padding: 20px;
    width:200px;
    min-height:180px;
    position: relative;
    color: #dbdbdb;
    font-size: 0.9rem;
    overflow: hidden;
    line-height: 1.7;
}
.index_products h2 {
    padding-bottom: 15px;
    margin-bottom: 10px;
    border-bottom: 1px solid #ccc;
}
.index_products ul li::before {
    content: '';
    position: absolute;
    background-color: 
    rgba(255, 255, 255,0.1);
    width:100%;
    height:100%;
    left:155px;
    transform: 
    rotate(47.5deg) 
    scale(200%)
    translateY(30%)
    translateX(25%);
}

.index_loc > ul { 
    max-width: 1200px;
    margin:0 auto;
    display: flex;
    justify-content: space-between;
    text-align: left;
  }
.index_loc span { 
    font-size:2rem;
    font-weight: 500;
}
.index_loc .btn {
    padding:10px;
    font-size: 1rem;
    width:150px;
    text-align: center;
    transition: 0.2s;
    font-weight: 500;
    display: block;
}

.sub_img { 
    width:100%;
    height:200px;
    text-align:center;
    position: relative;
}
.sub_img .sub {
    height:200px;
    color:#000;
    font-size:35px; 
}
.sub_img .title,
.sub_img .s_title {
   position: absolute;
   z-index: 1;
   color: #fff;
   width:100%;
   height: 100%;
   display: flex;
   justify-content: center;
   align-items: center;
}

.sub_img .sub::after {
    content: '';
    background-color:rgba(0,0,0,0.4);
    width:100%;
    height:100%;
    position: absolute;
    top:0;
    left:0;
    overflow: hidden;
}
.page_title { 
    font-size: 2.2rem;font-weight: 500;
    color:#33312e;
    letter-spacing:-1px;margin:0 auto;
    text-align:center;padding:20px 0 50px 0;
    display: block; 
}
.title {
    font-weight:700 ;
}
.s_title { width:100%;  font-size:1rem; 
    color:#FFF;
    padding-top: 40px;
}
.smenu {
    border-bottom:1px solid #ccc;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
  }
  
  .smenu li { 
    position: relative;
    padding:0 15px;
    z-index: 1;
  }
  .smenu li:not(:last-child):after {
    content: '';
    position: absolute;
    height:15px;
    width:2px;
    background-color: #777777;
    top:40%;
    right:0;
  }
  .smenu li a {
  display: block;
  color:#6e6e6e;
  padding:20px 10px;
  font-size: 1rem;
  border-bottom:4px solid #fff;
  }
  .smenu li a:hover {
    color:#33312e;
    transition: 0.2s;
  }
.html01_01 #sub_menu01_01, 
.html01_02 #sub_menu01_02,
.html01_03 #sub_menu01_03, 
.html01_04 #sub_menu01_04, 
.html01_05 #sub_menu01_05, 
.html01_06 #sub_menu01_06, 
.html01_07 #sub_menu01_07, 
.html02_01 #sub_menu02_01,
.html02_02 #sub_menu02_02,
.html02_03 #sub_menu02_03,
.html02_04 #sub_menu02_04,
.html02_05 #sub_menu02_05,
.html02_06 #sub_menu02_06,
.html02_07 #sub_menu02_07,
.html02_08 #sub_menu02_08,
.html03_01 #sub_menu03_01,
.html03_02 #sub_menu03_02, 
.html03_03 #sub_menu03_03,
.html04_01 #sub_menu04_01,
.html04_02 #sub_menu04_02, 
.html04_03 #sub_menu04_03,
.html05_01 #sub_menu05_01,
.html05_02 #sub_menu05_02, 
.html05_03 #sub_menu05_03,
.html05_04 #sub_menu05_04, 
.html06_01 #sub_menu06_01,
.html06_02 #sub_menu06_02, 
.html06_03 #sub_menu06_03,
.html06_04 #sub_menu06_04 
{
    color:#33312e;
    font-weight: 700;
    border-bottom:4px solid #275d4f;
}
.page_title_sub { 
    font-size:1.2rem; 
    display: flex;
    justify-content: center;
    padding-top:50px;
    text-align: justify;
}
.page_title_sub li:last-child span {
    display: block;
    text-align: right;
  }
.page_title_sub li {  padding:0 30px; }
.page_title_sub img { padding-top:10px;}
.page_title_sub li h2 {
    font-size:1.9rem;
    font-family: 'Nanum Myeongjo', serif;
    font-weight: 900;
    padding:10px 0 30px 0;
    line-height: 20px;
}
.out_box { overflow: hidden;margin:0 auto;
    width:1100px;padding:50px 0; 
}
#lightBox ul {
    padding:20px 0;
}
#lightBox ul li { padding-top:10px;
    margin:0 auto;display:inline-block;
    text-align:center;height:243px;
}
#lightBox ul li a:hover img { 
    opacity: 0.7;
}
#lightBox a img {
    width:364px;
}

.container {
    padding:30px 0;
    min-height:700px;
    margin:0 auto;
}
.container_bbs {
    padding:30px 0;
    text-align: justify;
    width: 1200px;
    margin:0 auto;
}

/* ÅÇ¸Þ´º */
.tabs {
    width:1200px;
    margin:0 auto;
}
.tabnavs {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 0;
    flex-wrap: wrap;
    gap: 10px 5px;
}
.tabnavs li a {
   background-color: #fff;
   color:#666;
   padding: 10px 30px;
   border:1px solid #ccc;
   font-size: 1rem;
   font-weight: 500;
   display: block;
}
.tabnavs li a:hover,
.tabnavs li a.active{
    background:#616161; 
    color:#ffffff; 
}
.tabcontent {
    padding-top:100px;
}
.performance {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width:1300px;
    flex-wrap: wrap;
    margin:0 auto;
}
.performance li {
    padding: 10px;
    text-align: center;
}
.performance li span {
    font-weight: 700;
    font-size: 1.2rem;
}
.performance img {
    margin:20px 0 10px 0;
    box-shadow: 0 0 30px 10px rgba(0,0,0,0.2);
}
.html01_01 img {
    border-radius: 5px;
    box-shadow: 0 0 30px 10px rgba(0,0,0,0.2);
}
.html01_01 span {
    display: block;
    text-align: right;
}
.html01_01 .flexbox {
    gap:50px;
    text-align: justify;
}
.html01_06 .index_loc {
    background-color: #fff;
    padding-bottom: 5rem;
}
.html01_06 img {
    box-shadow: 0 0 30px 10px rgba(0,0,0,0.2);
}
.html01_05 img {
    box-shadow: 0 0 30px 10px rgba(0,0,0,0.2);
    padding:20px 50px;
}

.html02_01 img,
.html02_02 img,
.html02_03 img,
.html02_04 img
{
    width:800px;
    border: 1px solid #ccc;
    padding:30px;
}
.html02_01 .t07 {
    display: flex;
    justify-content: center;
    align-items: top;
    gap:20px;
}
.html02_01 .t07 img {
    width: 700px;
}
.html02_04 #tab02 .t02,
.html02_04 #tab04 .t04 {
    display: flex;
    justify-content: center;
    align-items: top;   
    gap:20px;
}
.html02_04 #tab02 .t02 img,
.html02_04 #tab04 .t04 img 
{
    width:700px;
}
.html02_05 img {
    width:500px;
    border: 1px solid #ccc;
    padding:30px;
    vertical-align: top;
}
.html02_06 img {
    width:500px;
    border: 1px solid #ccc;
    padding:30px;
    vertical-align: top;
}
.html02_03 #tab04 {
    text-align: left;
    width:1200px;
}

.html02_03 #tab04 h2 {
    text-align: center;
}

.html03_01 {
    display: flex;
    justify-content: center;
    align-items: top;
    width:1000px;
}
.html03_01 li:last-child {
    padding-left: 20px;
    text-align: left;
}

footer {
    padding:50px 0;
    color:#fff;

}
footer a {
    color: #fff;
}
footer .copy {
    width:1200px;
    margin:0 auto;
    text-align: right;
    padding-top:30px;
}
footer .logo {
    width:1200px;
    margin:0 auto;
}
footer h1 {
    font-size: 3rem;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 2rem;
}
footer ul {
    display: flex;
    justify-content: center;
    align-items: top;
    gap:1rem;
    border-top: 1px solid #585656;
    border-bottom: 1px solid #585656;
}
footer ul li {
    padding:3rem;
    border-right: 1px solid #585656;
}
footer ul li:last-child {
    border-right: 0;
}

/* °Ô½ÃÆÇºÎºÐ */
.late_notice {
    display: flex;
    justify-content: center;
    align-items: top;
    gap:30px;
}
.late_notice > li {
    border: 1px solid #ccc;
    padding:20px;
    min-height:220px;
    text-align: left;
}
.late_notice li > div:first-child {
    margin-bottom: 10px;
}
.late_notice li > div:first-child a {
    font-size: 1.3rem;
    font-weight: 500;
    color: #000;
}
.late_notice li > div:nth-child(2) {
    padding-bottom: 15px;
    height:120px;
    color:#5a5a5a;
    font-size: 0.9rem;
}
.eng {
    font-size: 0.7rem;
    color:#536e68;
}
.board_list_head {
    display: flex;
    justify-content: space-between;
    padding-bottom: 5px;
}
.board_table {
    border-top:1px solid #95b1aa;
    border-bottom:1px solid #95b1aa;
}
.board_table .board_contents {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.board_contents .board_contents_li {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.board_table .board_contents a {
    color:#1d1d1d;
}
.board_table .board_contents:hover {
    background-color:#eeeeee ;
    color:#275d4f;
}
.board_table .board_contents_sub li {
    white-space: nowrap;
    padding:10px 20px;
}
.board_table .board_contents > li:first-child{
    width:45px;
    text-align: center;
}
.board_table .board_contents > li:last-child{
    width:100%;
}
.board_table .board_contents_sub {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.board_table .board_contents_sub .comment {
    width:100%;
}
.board_contents .board_contents_sub2 {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.board_contents .board_contents_sub2 li {
    padding:0 10px;
}
.board_contents .board_contents_sub2 li:last-child {
    width:20px;
    text-align: center;
}
.board_line {
    height:1px;
    width:100%;
    background-color: #e7e7e7;
}
.board_paging {
    display: flex;
    justify-content: center;
    padding-top:20px;
}
.board_button {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.btn {
    background-color: #1d4e41;
    color:#fff;
    padding:10px 20px;
    cursor: pointer;
    border:0;
    margin:0;
    font-size:0.8rem;
}
.btn_w {
    background-color: #1d4e41;
    color:#fff;
    padding:10px 20px;
    border:0;
    cursor: pointer;
    font-size:0.85rem;
}
.btn:hover, input[type=submit]:hover {
    background-color: #448071;
}
.board_view_contents {
    min-height:200px;
    text-align: left;
    padding:20px;
}
.board_view_comment {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top:solid 1px #ccc;
    padding:5px;
}
.board_view_comment li:nth-child(1) {
    min-width:120px;
}
.board_view_comment li:nth-child(2) {
    width:100%;
    text-align: left;
    position: relative;
}
.board_view_comment li:nth-child(2) div {
    padding-left:15px;
}
.board_view_comment li:nth-child(2)::before {
    position: absolute;
    content: '';
    width:2px;
    top:2px;
    height:95%;
    background-color: #ccc;
}
.board_view_comment li:last-child {
    width:200px;
}
.board_view_comment_write {
    padding:10px;
    background-color:#efefef;
    border-top:1px solid #ccc;
}
.board_view_comment_next {
    text-align: left;
    border-top:1px solid #ccc;
    border-bottom: 1px solid #ccc;
    padding:3px;
    margin-bottom: 20px;
}

.board_write {
    text-align:left;
    border-bottom:solid #ccc 1px;
    margin-bottom: 20px;
}
.board_write div {
    border-top:solid #ccc 1px;
    padding:5px;
}
.board_write div span {
    display: inline-block;
    width:90%;
}
.board_write div span:first-child {
    width:100px;
    font-weight: 500;
}
.board_write div .text_side {
    vertical-align: top;
}
