<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";
/* 공통 */
button {
  cursor: pointer;
}

.show-default {
  display: block !important;
}

.hide-default {
  display: none !important;
}

.header-inner {
  width: 1520px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 90px;
}

.header {
  width: 100%;
  position: fixed;
  z-index: 99999;
  background: #fff;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header.fix {
  border-bottom: 1px solid #ddd;
  background: #fff;
}

.header.fix .header_logo {
  background: url("/image/common/samwon_main_logo_c.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.header.fix .header_gnb_dep01 {
  color: #000;
}

.header.fix .header_ham span {
  background: #000;
}

.header.active {
  background: #fff;
}

.header.active .gsnb_bg {
  border-top: 1px solid #ddd;
}

.header.active .header_logo {
  background: url("/image/common/samwon_main_logo_c.png");
  background-size: contain;
  background-repeat: no-repeat;
}

.header.active .header_gnb_dep01 {
  color: #000;
}

.header.active .header_gnb_item:hover .header_gnb_dep01 {
  color: #41b25d;
}

.header.active .header_ham span {
  background: #000;
}

.header .header_logo {
  width: 170px;
  height: 42px;
  background: url("/image/common/samwon_main_logo_c.png");
  background-repeat: no-repeat;
  background-size: contain;
}

.header .header_gnb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.header .header_gnb_item {
  position: relative;
  height: 100%;
}

.header .header_gnb_dep01 {
  padding: 0 40px;
  display: block;
  font-size: 18px;
  font-weight: 500;
  color: #000;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header .header_gnb_dep01.active::after,
.header .header_gnb_dep01:hover::after {
  width: 100%;
  -webkit-transition: width 0.5s ease;
  transition: width 0.5s ease;
}

.header .header_gnb_dep01::after {
  position: absolute;
  bottom: 0;
  left: 50%;
  content: '';
  display: block;
  width: 0;
  height: 3px;
  background: -webkit-gradient(linear, left top, right top, from(#41b25e), to(#0176b5));
  background: linear-gradient(to right, #41b25e, #0176b5);
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.header .header_gnb_dep02 {
  display: none;
  position: absolute;
  width: 100%;
  left: 50%;
  top: var(--headerHeight);
  padding-top: 15px;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  z-index: 99999;
  text-align: center;
  opacity: 0;
}

.header .header_gnb_dep02 a {
  display: block;
  font-size: 16px;
  color: #666;
  padding: 10px 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .header_gnb_dep02 a:hover {
  color: #056fac;
}

.header .header_ham {
  width: 28px;
  height: 19px;
  position: relative;
  cursor: pointer;
}

.header .header_ham span {
  display: block;
  background: #000;
  width: 100%;
  height: 2px;
  position: absolute;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.header .header_ham span:nth-child(1) {
  top: 0;
}

.header .header_ham span:nth-child(2) {
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.header .header_ham span:nth-child(3) {
  bottom: 0;
}

.header .header_ham.active span:nth-child(1) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(45deg);
  transform: translateY(-50%) rotate(45deg);
}

.header .header_ham.active span:nth-child(2) {
  opacity: 0;
}

.header .header_ham.active span:nth-child(3) {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-45deg);
  transform: translateY(-50%) rotate(-45deg);
}

.header .gsnb_bg {
  display: block;
  background: #fff;
  position: absolute;
  top: var(--headerHeight);
  left: 0;
  right: 0;
  height: 200px;
  display: none;
  border-bottom: 1px solid #ddd;
  opacity: 0;
}

.header_lang {
  display: flex;
  border: 1px solid #9b9b9b;
  border-radius: 2em;
  justify-content: center;
  align-items: center;
  height: 30px;
  width: 85px;
  margin-left: auto;
  margin-right: 32px;
  font-size: 16px;
  font-weight: 500;
}
.header_lang img {
  width: 19px;
  margin-right: 8px;
}

.footer {
  background: #f9f9f9;
  padding: 40px 0 40px;
  position: relative;
}

.footer_logo {
  margin-bottom: 30px;
}

.footer_info address {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-style: normal;
  margin-bottom: 8px;
}

.footer_info address span {
  display: block;
  margin-right: 20px;
  color: #666;
}

.footer_info p {
  color: #999;
  font-weight: lighter;
}

.footer_top_btn {
  position: absolute;
  top: 0px;
  right: 0;
}

@media all and (max-width: 1560px) {
  .header-inner {
    width: 100%;
    padding: 0 3%;
  }
  .header_gnb_item .header_gnb_dep01 {
    font-size: 16px;
    padding: 0px 30px;
    height: 80px;
  }
  .header .gsnb_bg {
    height: 180px;
  }
  .header .header_gnb_dep02 {
    top: 90px;
  }
}

@media all and (max-width: 1300px) {
  .header_gnb_item .header_gnb_dep01 {
    font-size: 15px;
    padding: 0px 20px;
  }
}

@media all and (max-width: 1024px) {
  .show-1024 {
    display: block !important;
  }
  .hide-1024 {
    display: none !important;
  }
  .header-inner {
    height: 70px;
  }
  
  .header{
    border-bottom: 1px solid #ddd;
    z-index: 9999999;
  }

  .header .header_gnb {
    position: absolute;
    left: auto;
    transform: none;
    top: calc(var(--headerHeight) + 20px);
    height: calc(100vh - var(--headerHeight));
    right: 0;
    width: 70%;
    align-self: flex-start;
    display: none;
    opacity: 0;
    overflow-y: scroll;
  }


  .header .gsnb_bg {
    width: 70%;
    left: auto;
    right: 0;
    height: calc(100vh - var(--headerHeight));
    top: var(--headerHeight);
    border-top: none;
  }

  .header.active .gsnb_bg {
    border-top: none;

  }
  .header .header_gnb_item {
    height: auto;
  }

  .header .header_gnb_dep01 {
    width: 100%;
    position: relative;
    padding: 20px;
    font-size: 18px;
    height: auto;
  }

  .header.active .header_gnb_item:hover .header_gnb_dep01{
    color: #000;
  }

  
  .header.active .header_gnb_item:hover .header_gnb_dep01.active{
    color: #41b25d;
  }

  .header .header_gnb_dep01:not(.active)::after {
    width: 0 !important;
  }

  .header .header_gnb_dep02 {
    display: none;
    position: inherit;
    opacity: 1; 
    top: auto;
    left: auto;
    transform: none;
    padding: 10px 0;
    background: #f8f8f8;
  }
  .header .header_gnb_dep02 li {
    width: 100%;
  }

  .header .header_gnb_dep02 li a {
    text-align: left;
    width: 100%;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    padding: 0 20px;
  }
  .header .header_gnb_dep02 a:active {
    color: #056fac;
  }
  .header .header_gnb_dep01 i {
    display: inline-block;
    background: #000;
    position: absolute;
    right: 20px;
    top: 50%;
    width: 15px;
    height: 2px;
    transform: translate(-50%, -50%);
    transition: all .3s ease;
  }
  .header .header_gnb_dep01 i:first-child {
    transform: translateX(-50%) rotate(90deg);
  }
  .header .header_gnb_dep01.active i:first-child {
    transform: translateX(-50%) rotate(0);
    background: #41b25d;
  }
  .header .header_gnb_dep01.active i:last-child {
    opacity: 0;
  }
  .main-page .main-cont .inner {
    display: block;
    text-align: center;
  }
  .main-cont .main-tit_box {
    width: 100%;
  }
}

@media all and (max-width: 768px) {
  .show-768 {
    display: block !important;
  }
  .hide-768 {
    display: none !important;
  }
  .footer_info address {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .footer_info .down {
    width: 100%;
  }
  .header_lang {
    height: 27px;
    width: 70px;
    margin-right: 20px;
    font-size: 14px;
  }
  .header_lang img {
    margin-right: 5px;
    scale: .8;
  }
}

@media all and (max-width: 640px) {
  .show-640 {
    display: block !important;
  }
  .hide-640 {
    display: none !important;
  }

  .header .gsnb_bg,
  .header .header_gnb{width: 100%;}
  .footer_info address{display: block;text-align: center;}
  .footer_logo {margin-bottom: 20px;}
  .footer_info p {font-size: 12px;display: block;text-align: center;}
}

@media all and (max-width: 568px) {
  .show-568 {
    display: block !important;
  }
  .hide-568 {
    display: none !important;
  }
  .header-inner {
    height: 50px;
  }
  .header .header_logo {
    margin-top: 4px;
    width: 120px;
    height: 30px;
  }
  .header_ham {
    width: 24px !important;
    height: 16px !important;
  }
}

@media all and (max-width: 425px) {
  .show-425 {
    display: block !important;
  }
  .hide-425 {
    display: none !important;
  }
  .footer_logo a img {
    width: 100px;
    height: auto;
  }
  .footer_top_btn {
    top: -12px;
  }
  .footer_top_btn img {
    width: 40px;
    height: 40px;
  }
  .header_lang {
    height: 25px;
    width: 66px;
    margin-right: 16px;
    font-size: 13px;
  }
  .header_lang img {
    margin-right: 3px;
  }
}

@media all and (max-width: 375px) {
  .show-375 {
    display: block !important;
  }
  .hide-375 {
    display: none !important;
  }
}

@media all and (max-width: 320px) {
  .show-320 {
    display: block !important;
  }
  .hide-320 {
    display: none !important;
  }
}
</pre></body></html>