@charset "UTF-8";
/*inner size*/
.inner {
  max-width: 1440px;
  margin: 0 auto;
}
main {
  overflow: hidden;
}
/*********fixed_left***********/
.fixed_left {
  position: fixed;
  top: 250px;
  left: 5%;
}
.fixed_left a {
  display: block;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 10px;
}
.fixed_left a img {
  width: 65px;
}
.quick_bar {
  position: fixed;
  right: 5%;
  bottom: 100px;
  display: grid;
  place-items: center;
  z-index: 9999;
}
.quick_bar a {
  display: grid;
  place-items: center;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 0px 5px rgb(0,0,0,0.2);
  width: 70px;
  padding: 10px 0;
  font-size: 12px;
  margin-bottom: 8px;
}
.quick_bar a img {
  width: 40%;
}
.quick_bar a:nth-of-type(1) {
  background: #ffe812;
}
.topbtn {
  position: relative;
  width: 60px;
  height: 60px;
  display: grid;
  place-items: center;
  color: #fff;
  background: var(--main-color);
  text-align: center;
  cursor: pointer;  
  font-weight: 600;
  border-radius: 50%;
}
.topbtn img {
  width: 30px;
}
/*********header***********/
header {
  width: 100%;
  background: #fff;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
  border-bottom: 3px solid var(--main-color);
}
header .header_top {
  background: #e5e5e5;
}
header .header_top .inner {
  display: flex;
  justify-content: end;
  align-items: center;
}
header .header_top .inner > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 17px;
}
header .header_top .inner > ul > li {
  position: relative;
}
header .header_top .inner > ul > li > a {
  color: #333;
  font-size: 13px;
  display: block;
  padding: 10px 0;
}
header .header_mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 30px 0;
}
header .header_mid .header_logo img {
  width: 190px;
}
header .header_mid .header_search {
  width: 500px;
  position: relative;
}
header .header_mid .header_search input[name="searchkey"] {
  width: 100%;
  height: 50px;
  border: 3px solid var(--main-color);
  border-radius: 30px;
  font-size: 20px;
  padding-left: 30px;
  font-weight: 600;
}
header .header_mid .header_search .search_btn {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  height: inherit;
  font-size: 20px;
  width: inherit;
  border: none;
  color: #666;
}
header .header_mid .header_call {
  display: flex;
  align-items: center;
  background: var(--main-color);
  color: #fff;
  padding: 10px;
  border-radius: 100px;
  gap: 3px;
}
header .header_mid .header_call img {
  width: 37px;
}
header .header_mid .header_call h2 small {
  display: block;
  font-size: 15px;
  letter-spacing: 10px;
  line-height: 1em;
  text-align: center;
}
header .header_mid .header_call h2 {
  font-size: 30px;
  font-weight: 600;
  line-height: 1em;
}
.menu_wrap {
  display: flex;
  justify-content: space-between;
  position: relative;  
}
.menu_wrap::before {
  position: absolute;
  content: '';
  width: 300%;
  left: 50%;
  transform: translateX(-50%);
  top: 0;
  height: 1px;
  background: #ddd;
}
.menu_cate {
  width: 6%;
  background: var(--main-color);
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  border-left: 1px solid var(--main-color);
  border-right: 1px solid var(--main-color);
  gap: 10px;
}
.menu_cate h3 {
  font-size: 24px;
  font-weight: 700;
}
.menu_cate .menubtn {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  width: 26px;
  height: 21px;
}
.menu_cate .menubtn div {
  width: 100%;
  height: 3px;
  background: #fff;
}
.menu {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 75%;
  position: relative;
  gap: 50px;
  white-space: nowrap;
}
.menu .side_item {
  position: relative;
}
.menu .side_item > a {
  color: #333;
  font-weight: 700;
  font-size: 20px;
  line-height: 80px;
  position: relative;
  display: block;
}
.menu .side_item > a:before {
  position: absolute;
  content: "";
  width: 0;
  height: 2px;
  background: #28277f;
  left: 0;
  bottom: 15px;
  transition: 0.3s;
}
.menu .side_item:hover > a:before {
  width: 100%;
}
.menu .side_item .dropdown {
  position: absolute;
  width: 240px;
  left: 50%;
  transform: translateX(-50%);
  top: 75px;
  background: #fff;
  padding: 10px;
  display: none;
  border-radius: 0 0 5px 5px;
  box-shadow: 10px 10px 15px rgba(0,0,0,0.025);
}
.menu .side_item .dropdown li a {
  font-size: 16px;
  padding: 15px 0;
  text-align: center;
  display: block;
}
.menu .side_item .dropdown li a:hover {
  color: #28277f;
}
.header_mid_btns {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
  width: 200px;
}
.header_mid_btns li a {
  display: block;
  text-align: center;
  transition: .3s;
}
.header_mid_btns li a img {
  width: 30px;
}
.header_mid_btns li a:hover {
  transform: translateY(-3px);
  background: #ddd;
}
.container {
  max-width: 1440px;
  margin: 253px auto 0;
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.container nav {
  width: 20%;
}
.container main,
.container .sub {
  width: 77%;
}
nav {
  border: 1px solid #ccc;
  border-top: none;
}
.callcenter .tit {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 15px;
}
.callcenter .tit img {
  width: 50px;
}
.callcenter .tit span h2 {
  color: #333;
  font-weight: 700;
  line-height: 1.1em;
}
.callcenter .item {
  padding: 10px;
}
.callcenter .item h3 {
  display: flex;
  justify-content: space-between;  
  align-items: center;
}
.callcenter .item h3 span {
  color: chocolate;
  font-weight: 700;
  font-size: 18px;
}
.callcenter .item h3 strong {
  font-size: 24px;
  color: var(--main-color);
  font-weight: 700;
}
.callcenter .item h3:last-of-type strong {
  font-size: 17px;
}
.callcenter .time {
  padding: 10px;
}
.callcenter .time > span {
  background: #ccc;
  border-radius: 10px;
  padding: 7px;
  display: block;
  text-align: center;
  font-weight: 700;
  font-size: 17px;
}
.callcenter .time p {
  font-size: 20px;
  display: flex;
  justify-content: center;
  margin: 7px 0;
  gap: 20px;
}
.callcenter .time p span {
  font-weight: 700;
  color: #666;
}
.callcenter .time p:last-of-type span {
  color: red;
}
nav .sidemenu {
  margin-top: -1px;
}
nav .sidemenu p {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #f4f4f4;
  padding: 20px 25px;
  font-size: 17px;
  font-weight: 700;
  color: #222;
  border-top: 1px solid #ccc;
  border-bottom: 1px solid #ccc;
  position: relative;
  cursor: pointer;
}
nav .sidemenu p::before {
  position: absolute;
  content: '';
  top: 50%;
  right: 25px;
  transform: translateY(-75%) rotate(-45deg);
  width: 9px;
  height: 9px;
  border-right: 2px solid #222;
  border-top: 2px solid #222;
  transition: all .3s;
}
nav .sidemenu p.active::before {
  transform: translateY(-75%) rotate(135deg);
}
nav .sidemenu p img {
  width: 25px;
  opacity: 0.6;
}
nav .sidemenu ul {
  padding: 20px 30px;
}
nav .sidemenu ul li a {
  font-size: 15px;
  color: #666;
  padding: 2px 0;
  margin: 3px 0;
  display: inline-block;
  transition: all .3s;
  border-bottom: 1px solid transparent;
}
nav .sidemenu ul li a:hover {
  color: var(--main-color);
  border-bottom: 1px solid var(--main-color);
}

/*********header end***********/

/***************footer***************/
footer {
  background: #f0ede9;
  padding: 70px 0;
}
footer .footer_logo {
  margin-right: 100px;
}
footer .footer_logo img {
  width: 200px;
}
footer > .inner {
  display: flex;
  justify-content: start;
  align-items: start;
}
footer .inner .footer_content ul {
  display: flex;
  justify-content: start;
  gap: 5px;
  margin-bottom: 15px;
}
footer .inner .footer_content ul li a {
  font-size: 13px;
}
footer .inner .footer_content ul li:first-of-type a {
  color: dodgerblue;
}
footer .inner .footer_content ul li span {
  font-size: 8px;
  vertical-align: middle;
}
footer .inner .footer_content p {
  font-size: 14px;
  color: #333;
  line-height: 1.5em;
}
footer .inner .footer_content p small {
  color: #666;
  display: block;
  margin-top: 15px;
  font-size: 12px;
}
/*.main common*/
.title {
  margin-bottom: 50px;
  position: relative;
  text-align: center;
}
.title h2 {
  font-size: 38px;
  font-weight: 700;
  color: #222;
  text-transform: uppercase;
}
.title h3 {
  margin: 10px 0;
  font-weight: 500;
  font-size: 14px;
}
.more {
  margin-top: 30px;
  display: inline-block;
  font-size: 16px;
  padding: 10px 40px;
  border: 1px solid #999;
  border-radius: 3px;
  text-align: center;
  color: #333;
  transition: 0.3s;
  font-weight: 500;
}
.more:hover {
  background: var(--main-color);
  color: #fff;
  border: 1px solid var(--main-color);
}
/*.main visual*/
.visual {
  width: 100%;
  position: relative;
  z-index: 2;
  background: #f4f4f4;
  overflow: hidden;
  height: 600px;
}
.visual .visual_slide {
  position: relative;
  height: 100%;
}
.visual .visual_slide .swiper-slide > img {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(1);
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 5s;
}
.visual .visual_slide .swiper-slide-active > img {
  transform: translate(-50%, -50%) scale(1.05);
}
.visual .visual_slide .swiper-slide {
  overflow: hidden;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  position: relative;
}
.visual .visual_txt {
  position: relative;
  width: 900px;
  color: #fff;
  z-index: 999;
}
.visual .visual_slide .swiper-slide-active .visual_txt {
  animation: visual_txt 1.5s 1 normal;
}
@keyframes visual_txt {
  0% {
    opacity: 0;
    transform: translateY(50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0px);
  }
}
.visual .visual_txt h2 {
  font-size: 70px;
  font-weight: 700;
  line-height: 1.3;
}
.visual .visual_txt h3 {
  font-size: 34px;
}
.visual .visual_txt p {
  font-size: 16px;
  font-weight: 300;
  margin: 10px 0 50px;
}
.visual .visual_txt a {
  background: var(--main-color);
  color: #fff;
  padding: 10px 50px;
  border-radius: 100px;
  font-size: 20px;
}
.visual .visual_slide .swiper-btn-box {
  width: 95vw;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  z-index: 99;
}
.visual .visual_slide .swiper-button-prev,
.visual .visual_slide .swiper-button-next {
  background: #00000050;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-image: none;
}
.visual .visual_slide .swiper-button-prev:before,
.visual .visual_slide .swiper-button-next:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 15px;
  height: 15px;
}
.visual .visual_slide .swiper-button-prev:after,
.visual .visual_slide .swiper-button-next:after {
  display: none;
} 
.visual .visual_slide .swiper-button-prev:before {
  border-top: 3px solid #fff;
  border-left: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.visual .visual_slide .swiper-button-next:before {
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
/****배너****/
.banner_cont {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  width: 1300px;
}
.banner_cont a {
  width: 630px;
  position: relative;
  padding: 50px;
  height: 250px;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 25px;
  color: #fff;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner_cont a:nth-of-type(odd) {
  clip-path: polygon(0 0, 100% 0%, 70% 100%, 0% 100%);
}
.banner_cont a:nth-of-type(even) {
  clip-path: polygon(30% 0, 100% 0%, 100% 100%, 0% 100%);
  transform: translateX(-195px);
  padding-left: 200px;
}
.banner_cont a::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: #05b39c67;
  z-index: -1;
  opacity: 0;
  transition: all .5s;
}
.banner_cont a h2 {
  font-size: 32px;
  font-weight: 700;
}
.banner_cont a h3 {
  font-size: 17px;
  margin-top: 10px;
}
.banner_cont a p {
  gap: 5px;
  font-size: 15px;
  transition: all .5s;
  opacity: 0;
  margin-top: -20px;
}
.banner_cont a p .plus {
  width: 28px;
  height: 28px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  display: inline-block;
  vertical-align: middle;
  margin-left: 10px;
}
.banner_cont a p .plus::before {
  position: absolute;
  content: '';
  width: 8px;
  height: 8px;
  border-top: 1px solid #000;
  border-right: 1px solid #000;
  left: 45%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.banner_cont a img {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: -2;
}
.banner_cont a:hover p {
  margin-top: 25px;
  opacity: 1;
}
.banner_cont a:hover::before {
  opacity: 1;
}
/*메인네비게이션*/
.main_nav {
  margin-top: -65px;
  position: relative;
  z-index: 9;
}
.main_nav .inner {
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
  box-shadow: 5px 5px 10px #00000010;
}
.main_nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 30px 50px;
}
.main_nav ul li {
  width: 14%;
}
.main_nav ul li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.main_nav ul li a span {
  display: flex;
  text-align: center;
  width: 60px;
  height: 60px;
  justify-content: center;
  align-items: center;
  background: #f4f4f4;
  border-radius: 50%;
}
.main_nav ul li a span img {
  height: 80%;
  display: inline;
  transition: .3s;
}
.main_nav ul li a p {
  font-size: 13px;
  margin-top: 8px;
  transition: .3s;
}
.main_nav ul li a p {
  color: #333;
}
.main_nav ul li a:hover span img {
  transform: translateY(-5px);
}
.main_nav .main_nav_call {  
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: var(--main-color);
  padding: 8px 0;
}
.main_nav .main_nav_call img {
  width: 80px;
}
.main_nav .main_nav_call h3 {  
  font-size: 18px;
  color: #fff;
  display: flex;
  align-items: center;
}
.main_nav .main_nav_call h3 span {
  display: inline-block;
  padding: 5px 10px;
  border-radius: 30px;
  background: #fb9500;
  color: #fff;
  text-align: center;
  font-size: 14px;
  margin-right: 10px;
}
.main_nav .main_nav_call h3 strong {
  color: #fff;
  font-size: 32px;
}
/*메인상품진열*/
.main_prd {
  padding: 50px 0;
}
.main_prd .main_product_cont {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
}
.main_prd .main_product_cont li {
  width: 18%;
  text-align: center;
  margin-right: 2.5%;
  margin-bottom: 20px;
}
.main_prd .main_product_cont li:nth-of-type(5n) {
  margin-right: 0;
}
.main_prd .main_product_cont li a .thumb img {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  transition: .5s;
}
.main_prd .main_product_cont li a .thumb {
  position: relative;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  border-radius: 5px;
  border: 1px solid #ddd;
}
.main_prd .main_product_cont li a:hover .thumb img {
  width: 110%;
  height: 110%;
}
.main_prd .main_product_cont li a strong {
  font-size: 17px;
  font-weight: 700;
  display: block;
  color: #222;
  margin-top: 8px;
}
.main_prd .main_product_cont li a p {
  font-size: 14px;
  color: var(--main-color);
  font-weight: 700;
} 
/*띠배너*/
.banner .banner_slide {
  overflow: hidden;
  position: relative;
}
.banner .banner_slide .swiper-pagination {
  left: auto;
  right: 10px;
  bottom: 10px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #00000070;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 500;
  color: #fff;
  gap: 2px;
}
.banner .banner_slide .swiper-btn-box {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.banner .banner_slide .swiper-button-prev,
.banner .banner_slide .swiper-button-next {
  background: #00000030;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-image: none;
}
.banner .banner_slide .swiper-button-prev:before,
.banner .banner_slide .swiper-button-next:before {
  content: '';
  position: absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
}
.banner .banner_slide .swiper-button-prev:after,
.banner .banner_slide .swiper-button-next:after {
  display: none;
} 
.banner .banner_slide .swiper-button-prev:before {
  border-top: 2px solid #fff;
  border-left: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(-45deg);
}
.banner .banner_slide .swiper-button-next:before {
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: translate(-50%, -50%) rotate(45deg);
}
/*메인게시물*/
.bbsmain {
  display: flex;
  justify-content: space-between;
  align-items: start;
}
.bbsmain .bbsmain_box {
  width: 48%;
}
.bbsmain .bbsmain_box > h2 {
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: end;
  border-bottom: 1px solid #ddd;
}
.bbsmain .bbsmain_box > h2 span {
  font-size: 24px;
  font-weight: 600;
}
.bbsmain .bbsmain_box > h2 a {
  font-size: 12px;
  color: #666;
  transition: linear .3s;
}
.bbsmain .bbsmain_box > h2 a:hover {
  transform: translateY(-5px);
}
.bbsmain .bbsmain_box .notice li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #ddd;
  font-size: 14px;
  color: #666;
  transition: linear .3s;
}
.bbsmain .bbsmain_box .notice li a:hover {
  background: #f4f4f4;
}
.bbsmain .bbsmain_box .notice li a .date {
  font-size: 12px;
}
.bbsmain .review {
  display: flex;
  justify-content: space-between;
  align-items: start;
  flex-wrap: wrap;
}
.bbsmain .review li {
  width: 45%;
}
.bbsmain .review li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 27px;
}
.bbsmain .review li a img {
  width: 30%;
  height: 100px;
  object-fit: cover;
  border-radius: 5px;
}
.bbsmain .review li a > div {
  width: 65%;
}
.bbsmain .review li a > div p {
  font-size: 13px;
  color: #666;
  text-overflow: ellipsis;
  width: 100%;
}
.bbsmain .review li a > div .review_sub {
  margin-bottom: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bbsmain .review li a > div .review_sub .date {
  font-size: 12px;
}
/* 메인회사소개 */
.main_about {
  background: url(/img/main_aboutbg.jpg) no-repeat center / cover;
  padding: 100px 0;
}
.main_about .txt {
  text-align: center;
  color: #fff;
}
.main_about .txt h2 {
  font-size: 70px;
}
.main_about .txt h3 {
  margin: 5px 0 10px;
  font-size: 40px;
}
.main_about .txt .more {
  color: #fff;
}
/*서브회사소개*/
.sub_about .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/*서브회사소개*/
.sub_about .txt {
  width: 50%;
}
.sub_about .txt h2 {
  font-size: 50px;
  margin-bottom: 25px;
}
.sub_about .txt h3 {
  text-align: right;
  font-weight: 700;
  font-size: 24px;
}
.sub_about .txt p {
  font-size: 20px;
  margin-bottom: 25px;
}
.sub_about img {
  width: 40%;
  border-radius: 10px;
}