
@charset "utf-8";

:root {
  --main-color : #92A8D1;
  --font-size72 : 72px;
  --font-size48 : 48px;
  --font-size32 : 32px;
  --font-size24 : 24px;
  --font-size20 : 20px;
  --font-size18 : 18px;
  --font-size16 : 16px;
  --font-size14 : 14px;
  --border-20:20px;
  --border-16:16px;
  --border-12:12px;
  --border-8:8px;
  --border-4:4px;

}
.w1620 {
  width: 1620px;
  position: relative;
  margin: 0 auto;
}

.popup {
  display: none;
  width: 500px;
  height: 500px;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  background-color: #fff;
  z-index: 2;
}

.backon {
  content: "";
  width: 100%;
  height: 100%;
  background: #00000054;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1;
}

.close {
  position: absolute;
  top: -25px;
  right: 0;
  cursor: pointer;
}

.openPopup {
  cursor: pointer;
  margin-bottom: 10px;
}

/*애니메이션*/
.txt_hidden {
  position: relative;
  overflow: hidden;
}
.off_bottom {
  position: relative;
  bottom: -50px;
  opacity: 0;
}
.on_bottom {
  position: relative;
  bottom: 0;
  opacity: 1;
  transition: all 0.3s ease;
}
.off_opacity {
  opacity: 0;
  transition: all 0.3s ease;
}
.on_opacity {
  opacity: 1;
  transition: all 0.3s ease;
}
.off_right {
  position: relative;
  right: -50px;
  opacity: 0;
}
.on_right {
  position: relative;
  right: 0;
  opacity: 1;
  transition: all 0.3s ease;
}

/*애니메이션끝*/

/*헤더*/
header {
  background-color: #fff;
  color: #111;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-bottom: 1px solid #eee;
}

header nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
  box-sizing: border-box;
  margin: 0 250px;
}
header nav h1 a {
  display: flex;
  align-items: center;
  width: 123px;
}
header nav h1 a img {
  width: 50px;
}
header .gnb {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
}

header .gnb > li {
  position: relative;
  display: inline-block;
  box-sizing: border-box;
  border-radius: 0;
  min-width: 96px;
}
header .gnb > li.sub_down:hover::before {
  display: block;
}
header .gnb > li.sub_down::before {
  display: none;
  content: '';
  width: 100%;
  height: 190px;
  background: var(--main-color);
  position: absolute;
  top: -32px;
  left: 0;
  border-radius: 0 0 var(--border-12) var(--border-12);
}
header .gnb > li.sub_down:hover > a {
  color:#fff;
  position: relative;
}
header .gnb > li:hover > a {
  font-weight: 700;
}
header .gnb > li > a {
  display: block;
  color: #111;
  padding: 8px 20px;
  transition: all 0.2s ease;
  font-size: 18px;
}

header .gnb > li > a.on {
  font-weight: 700;
  color: #fff;
}
header .gnb > li > a.page {
  font-weight: 700;
}
header .gnb > li.t_small > a {
  font-size: var(--font-size16);
  color:rgba(0, 0, 0, 0.5);
}

header .gnb > li .sub_menu {
  display: none;
  position: absolute;
  list-style: none;
  left: 0;
  margin: 0;
  z-index: 1000;
  width: 100%;
  box-sizing: border-box;
}

header .gnb > li .sub_menu > li {
  text-align: center;
}

header .gnb > li .sub_menu > li > a {
  font-size: var(--font-size14);
  display: block;
  padding: 12px 8px;
  box-sizing: border-box;
  color: rgba(255, 255, 255, 0.7);
}

header .gnb > li .sub_menu > li > a:hover {
  color: #fff;
  font-weight: 600;
}

header .right {
  display: flex;
  gap: 20px;
  position: relative;
}
header .right .market_btn {
  background: #B54D16;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: 2px;
  box-shadow: rgba(51, 51, 51, 0.2) 0px 1px 8px;
  transition: all 0.2s ease;
  min-width: 123px;
}
header .right .market_btn span {
  color:#fff;
  font-size: var(--font-size16);
  font-weight: 700;
  margin-left: 4px;
}
header .right .market_btn:hover {
  transform: translateY(-1px);
  box-shadow: rgba(51, 51, 51, 0.2) 0px 4px 12px;
}
header .right .language_open {
  font-size: var(--font-size16);
  display: flex;
  align-items: center;
  gap:4px;
  border-bottom: 1px solid #000;
  padding: 0 8px;
  box-sizing: border-box;
}
header .language {
  position: absolute;
  top: 30px;
  background: #3c3c3c;
  text-align: center;
  border-radius: 0 0 var(--border-8) var(--border-8);
  overflow: hidden;
  display: none;
}
header .language.open {
  display: block;
}
header .language li a {
  display: block;
  padding: 8px 14px;
  color:#fff;
}
header .language li a:hover {
  background: #5c7cb7;
}

header .hamburger_open, 
header .hamburger_menu {
  cursor: pointer;
  display: none;
}

header .hamburger_menu {
  position: fixed;
  top: 0;
  right: -110%;
  z-index: 5;
  background: #fff;
  width: 100%;
  height: 100dvh;
  padding: 20px;
  box-sizing: border-box;
  box-shadow: rgba(51, 51, 51, 0.2) 0px 8px 24px;
  transition: right 0.3s ease;
}

header .hamburger_menu .top {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .hamburger_menu .top h1 {
  margin-left: 8px;
}
header .hamburger_menu .top h1 a img {
  width: 50px;
}
header .hamburger_menu .menu {
  margin-top: 50px;
}

header .hamburger_menu .menu .hamburger_gnb > li {
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid #eee;
  display: flex;
  gap: 24px;
}

header .hamburger_menu .menu .hamburger_gnb > li > a {
  font-size: var(--font-size18);
  padding: 4px 12px;
  border-radius: var(--border-20);
  box-sizing: border-box;
  transition: all 0.2s ease;
}

header .hamburger_menu .menu .hamburger_gnb > li > a:hover,
header .hamburger_menu .menu .hamburger_gnb > li > a.on {
  background: var(--main-color);
  color: #fff;
}

header .hamburger_menu .menu .ham_sub_menu {
  display: flex;
  opacity: 0; 
  visibility: hidden;
  gap: 24px;
  transform: translateX(30px);
  transition: transform 0.2s ease, opacity 0.2s ease, visibility 0.2s ease;
}

header .hamburger_menu .menu .ham_sub_menu a {
  font-size: var(--font-size14);
  display: inline-block;
  padding: 4px 0;
}
header .hamburger_menu .menu .ham_sub_menu a:hover {
  font-weight: 700;
}
header .hamburger_menu .menu .ham_sub_menu.open {
  transform: translateX(0);
  opacity: 1;
  visibility: visible; 
}
header .hamburger_menu.open {
  right: 0;  
}
header .hamburger_menu .market_btn {
  background: #B54D16;
  padding: 8px 16px;
  box-sizing: border-box;
  border-radius: 2px;
  box-shadow: rgba(51, 51, 51, 0.2) 0px 1px 8px;
  transition: all 0.2s ease;
}
header .hamburger_menu .market_btn span {
  color:#fff;
  font-size: var(--font-size16);
  font-weight: 700;
  margin-left: 4px;
}
header .hamburger_menut .market_btn:hover {
  transform: translateY(-1px);
  box-shadow: rgba(51, 51, 51, 0.2) 0px 4px 12px;
}
header .hamburger_menu .menu .m_language {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 60px 0 20px 0;
  box-sizing: border-box;
  border: 1px solid #eee;
}
header .hamburger_menu .menu .m_language > div {
  width: calc(100% / 3);
  padding: 8px;
  box-sizing: border-box;
  border-right: 1px solid #eee;
  text-align: center;
}
header .hamburger_menu .menu .m_language > div:last-child {
  border: none;
}
header .hamburger_menu .menu .m_language > div a {
  font-size: var(--font-size16);
  color:#585858;
}
header .hamburger_menu .menu p.copyright {
  position: absolute;
  bottom: 20px;
  font-size: var(--font-size14);
  color:#cdcdcd;
}
/*header*/


/*공용스타일*/
.scroll_line {
  position: fixed;
  top: 100px;
  left: 20px;
  z-index: 10;
  color:#5a5a5a;
}
.scroll_line span.text {
  writing-mode: vertical-rl;
}
.scroll_line .container_mouse .mouse-btn {
  margin: 10px auto;
  width: 1px;
  height: 100dvh;
  border-left: 1px solid #8e8e8e;
  display: flex;
}
.scroll_line .container_mouse .mouse-scroll {
  display: block;
  width: 9px;
  height: 9px;
  background: #5a5a5a;
  border-radius: 50%;
  animation: main_scroll 5s linear infinite;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}
@keyframes main_scroll {
  0% {
    opacity: 0;
    top: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 1;
    top: 100%;
  }
}

.lns_button {
  display: inline-block;
  background: var(--main-color);
  text-align: center;
  padding: 12px 24px;
  box-sizing: border-box;
  transition: all 0.3s ease;
  border-radius: var(--border-4);
}
.lns_button:hover {
  background: #5c7cb7;
  box-shadow: rgba(51, 51, 51, 0.2) 0px 4px 12px;
  border-radius: var(--border-12);
}
.lns_button span {
  color:#fff;
  font-weight: 700;
  margin-right: 8px;
  transition: all 0.3s ease;
  font-size: var(--font-size14);
}
.lns_button:hover span {
  margin-right: 16px;
}
.product_btn {
    display: flex;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 20px;
}
.product_btn_c {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
}
.naver_button,
.coupang_button {
    display: flex;
    gap: 8px;
    background: #baf5c4;
    text-align: center;
    align-self: center;
    height: 40px;
    padding: 12px 24px;
    box-sizing: border-box;
    transition: all 0.3s ease;
    border-radius: var(--border-4);
}
.coupang_button {
    background: #ffb9b9;
}
.naver_button:hover {
    background: #4cc761;
    box-shadow: rgba(51, 51, 51, 0.2) 0px 4px 12px;
}
.coupang_button:hover {
    background: #ff4c4c;
    box-shadow: rgba(51, 51, 51, 0.2) 0px 4px 12px;
}
.naver_button:hover span,
.coupang_button:hover span {
    color:#fff;
}
/* .naver_button:hover img,
.coupang_button:hover img {
    filter: brightness(0) invert(1);
} */
.naver_button span,
.coupang_button span {
    color:#212121;
    font-weight: 700;
    transition: all 0.3s ease;
    font-size: var(--font-size14);
}


b.Playfair {
  font-family: "Playfair Display", serif;
  font-size: var(--font-size48);
  color:#2C2F24;
  font-weight: 500;
}

.custom-dots {
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translate(-50%, 0);
  display: flex;
  gap: 8px;
}
.custom-dots li {
  display: none;
}
.custom-dots li.slick-active {
  display: block;
}
.custom-dots li button {
  font-family: "Playfair Display", serif;
  font-size: var(--font-size32);
}
.custom-dots li button span.text {
  font-size: var(--font-size20);
  color: #A4A4A4;
}
.custom-dots li button span.line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #D7E4FE;
  position: relative;
  top: -8px;
  margin-left: 20px;
}


/*메인*/
.main_content01 {
  background: url(../images/main_centent01.png) no-repeat center/cover;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100dvh;
  text-align: center;
  position: relative;
}

.main_content01::before {
  content: '';
  display: block;
  width: 740px;
  height: 720px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.8) 40%, rgba(255, 255, 255, 0) 60%);
  border-radius: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.main_content01 b {
  position: relative;
}
.main_content01 h2 {
  color: #333;
  font-size: var(--font-size72);
  font-weight: 500;
  padding: 32px 0;
  box-sizing: border-box;
  position: relative;
}
.main_content01 p {
  font-size: var(--font-size18);
  color: #747474;
  position: relative;
}
.main_content01 .btn_wrap {
  margin-top: 40px;
  position: relative;
}

.main_content02 {
  display: flex;
  justify-content:center;
  align-items: center;
  gap: 40px;
  margin-top: 160px;
  margin-bottom: 230px;
}
.main_content02 .autoplay {
  width: 64%;
  /* display: flex; */
}
.main_content02 .autoplay .slider .slick-list {
  margin: 0 -12.5px;
}
.main_content02 .autoplay .slick-slide {
  margin: 0 12.5px 0 0;
  background: white;
}
.main_content02 .autoplay .slide_item {
  position: relative;
  overflow: hidden;
  background: #e8e8e8;
  height: 440px;
}
.main_content02 .autoplay .slide_item > a {
  display: block;
  width: 100%;
  height: 100%;
}
.main_content02 .autoplay .slide_item .text_box {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.main_content02 .autoplay .slide_item .text_box img {
  width: 60px;
  max-width: 60px;
  min-width: 60px;
  margin: 0 auto;
}
.main_content02 .autoplay .slide_item .text_box p {
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size32);
  font-weight: 700;
}
.main_content02 .autoplay .slide_item > a img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_content02 .autoplay .slide_item.product_none a img,
.main_content02 .autoplay .slide_item:hover a img {
  transform: scale(1.1);
  opacity: 0.8;
}
.main_content02 .autoplay .slide_item.product_none .text_box,
.main_content02 .autoplay .slide_item:hover .text_box {
  display: block;
}

.main_content02 .text_box h2 {
  font-size: var(--font-size24);
  color: #333;
  font-weight: 500;
  padding: 30px 0 20px 0;
}
.main_content02 .text_box p {
  font-size: var(--font-size16);
  color: #747474;
}
.main_content02 .text_box ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 30px 0 50px 0;
}
.main_content02 .text_box ul li {
  display: flex;
  gap: 20px;
  align-items: center;
}
.main_content02 .text_box ul li .icon_box {
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #748097;
  border-radius: 50%;
}
.main_content02 .text_box ul li p {
  font-size: var(--font-size18);
  color: #222;
  font-weight: 600;
}

.main_content03 {
  background: #F6F6F6;
  padding: 100px 0 170px 0;
  box-sizing: border-box;
}
.main_content03 .Playfair span {
  font-family: 'Pretendard Variable', sans-serif;
  font-size: var(--font-size18);
  margin-left: 30px;
  font-weight: 400;
}
.main_content03 .multiple-items {
  margin-top: 32px;
}
.main_content03 .multiple-items .slick-track {
  margin: 0 !important;
}
.main_content03 .multiple-items .slider .slick-list {
  margin: 0 -12.5px;
}
.main_content03 .multiple-items .slick-slide {
  margin: 0 12.5px 0 0;
  background: white;
  border-radius: var(--border-8);
  min-height: 592px;
  box-sizing: border-box;
}
.main_content03 .multiple-items .slick-slide:hover img {
  transform: scale(1.1);
}
.main_content03 .multiple-items .img_box {
  width: 100%;
  height: 416px;
  overflow: hidden;
}
.main_content03 .multiple-items .img_box img {
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.main_content03 .multiple-items .txt_box {
  padding: 30px;
  box-sizing: border-box;
}
.main_content03 .multiple-items .txt_box span {
  font-size: var(--font-size14);
  color: #BDBDBD;
  font-weight: 300;
}
.main_content03 .multiple-items .txt_box h4 {
  font-size: var(--font-size18);
  padding: 14px 0;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  -webkit-line-clamp: 1;
  line-height: 1.6;
  max-height: 1em;
  text-overflow: ellipsis;
}
.main_content03 .multiple-items .txt_box p {
  font-size: var(--font-size16);
  color: #747474;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  -webkit-line-clamp: 2;
  line-height: 1.5;
  max-height: 3em;
  text-overflow: ellipsis;
}


.main_content04 {
  background: url(../images/customer_bg.jpg) no-repeat center right 40%/cover;
  padding: 100px 0;
  box-sizing: border-box;
}
.main_content04 b {
  color: #fff;
}
.main_content04 p {
  color: #BDBDBD;
  padding: 20px 0 40px 0;
}
.main_content04 .lns_button {
  background: #fff;
}
.main_content04 .lns_button span {
  color: #000;

}


footer {
  background: #222;
  padding: 30px 0;
  box-sizing: border-box;
}
footer .w1620 {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
footer .logo {
  display: flex;
  align-items: center;
  gap: 30px;
}
footer .logo img {
  width: 50px;
  opacity: 0.8;
}
footer .logo span {
  color: #DBDBDB;
  font-weight: 500;
  font-size: var(--font-size16);
}
footer .info {
  display: flex;
  gap: 24px;
}
footer .info li {
  color: #A6A6A6;
  font-size: var(--font-size14);
}
footer .link_btn {
  display: flex;
  gap: 12px;
}
footer .link_btn li a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  background: #4B4B4B;
  border-radius: 50%;
}
footer .link_btn li a:hover {
  background: #000000;
}
footer p.copyright {
  font-size: var(--font-size14);
  color: #6b6b6b;
  padding-top: 8px;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translate(-50%,0%);
}



/*서브페이지*/
.sub_wrap {
  margin-top:97px
}
.sub_title {
  padding: 70px 0;
  box-sizing: border-box;
  text-align: center;
  border-bottom: 1px solid #eee;
}
.sub_title span.Playfair {
  font-family: "Playfair Display", serif;
  font-size: var(--font-size14);
  color: #777777;
}
.sub_title h2 {
  font-size: var(--font-size48);
}
.sub_tab ul {
  display: flex;
  justify-content: center;
  padding: 20px 0;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
}
.sub_tab ul li a {
  display: block;
  padding: 0 34px;
  box-sizing: border-box;
  color: #A3A3A3;
  font-weight: 500;
  font-size: var(--font-size16);
  border-right: 1px solid #eee;
}
.sub_tab ul li a.on,
.sub_tab ul li a:hover {
  color: #000;
  font-weight: 700;
}
.sub_tab ul li:last-child a {
  border: none;
}
.company01 {
  background: url(../images/company01_bg.png) no-repeat center/cover;
  padding: 40px 0;
  box-sizing: border-box;
}
.company01 .txt_box {
  background: rgba(255, 255, 255, 0.8);
  border-radius: var(--border-4);
  backdrop-filter: blur(12px);
  padding: 40px 100px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 1070px;
  margin: 0 auto;
}
.company01 .txt_box i.Playfair {
  font-family: "Playfair Display", serif;
  font-size: var(--font-size48);
  color: #121212;
  font-style: normal;
  font-weight: 500;
}
.company01 .txt_box p {
  font-size: var(--font-size16);
  color: #333;
  line-height: 1.5;
  padding: 28px 0 16px 0;
}
.company01 .txt_box b {
  font-size: var(--font-size20);
  font-weight: 400;
  color: #414536;
  align-self: flex-end;
}
.company01 .txt_box b span {
  font-family: 'KCC-eunyoung';
  font-size: var(--font-size48);
  color: #121212;
  margin-left: 12px;
}

.company02 {
  margin: 100px auto 140px auto;
}
.company02 > h3 {
  font-size: var(--font-size32);
  font-weight: 300;
  margin-bottom: 60px;
}
.company02 > h3 span {
  font-weight: 500;
}
.company02 .cards {
  display: flex;
  justify-content: space-between;
}
.company02 .cards .card {
  width: calc(100% / 4 - 12.5px);
  padding: 40px;
  box-sizing: border-box;
  height: 594px;
  border-radius: var(--border-16);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}
.company02 .cards .card::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  position: absolute;
  top: 0;
  left: 0;
}
.company02 .cards .card:nth-child(1) {
  background: url(../images/company02_bg.png) no-repeat center left -12.5px;
}
.company02 .cards .card:nth-child(2) {
  background: url(../images/company02_bg.png) no-repeat center left calc(25% - 102.5px);
}
.company02 .cards .card:nth-child(3) {
  background: url(../images/company02_bg.png) no-repeat center left calc(50% - 202.5px);
}
.company02 .cards .card:nth-child(4) {
  background: url(../images/company02_bg.png) no-repeat center left calc(75% - 302.5px);
}
.company02 .cards .card .hidden {
  opacity: 0;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
  padding-bottom: 20px;
}
.company02 .cards .card .hidden p {
  font-size: var(--font-size16);
  color: #fff;
  line-height: 1.6;
}
.company02 .cards .card:hover .hidden {
  opacity: 1;
}
.company02 .cards .card:hover .title h4 {
  color: #fff;
}
.company02 .cards .card .title {
  position: absolute;
  z-index: 1;
  bottom: 40px;
}
.company02 .cards .card .title span {
  font-family: "Playfair Display", serif;
  font-size: var(--font-size14);
  color: #aeaeae;
}
.company02 .cards .card .title h4 {
  font-size: var(--font-size24);
  font-weight: 700;
}
.company02 .cards .card:hover {
  animation: cards_hover 1s forwards;
}
@keyframes cards_hover {
  0% {
    transform: scale(0.9);
  }
  100% {
    transform: scale(1);
  }
}
.company02 .cards:hover > .card:not(:hover) {
  filter: blur(4px);
  transform: scale(0.9);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}


.company03 {
  background: #F9F9F9;
  padding: 100px 0;
  box-sizing: border-box;
  min-height: 50vh;
}
.company03 .wrap {
  width: 1320px;
  margin: 0 auto 40px auto;
}
.company03 .wrap > ul {
  margin: 20px 0 40px 0;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.company03 .wrap > ul li {
  font-size: var(--font-size16);
}
.company03 .wrap > ul li span {
  font-weight: 700;
}


.product_title {
  background: url(../images/product_bg.png) no-repeat center/cover;
}
.product_title span,
.product_title h2 {
  color:#fff !important;
}
.product {
  margin: 120px auto;
}
.product .product_box {
  display: flex;
  gap: 25px;
  flex-wrap: wrap;
}
.product .product_box li {
  width: calc(100% / 3 - 17px);
  position: relative;
  overflow: hidden;
}
.product .product_box li .hidden {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(51, 51, 51, 0.4);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 12px;
  z-index: 5;
  transition: all 0.3s ease;
}
.product .product_box li .hidden img {
  width: 62px;
}
.product .product_box li .hidden p {
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size32);
  font-weight: 700;
}
.product .product_box li > a {
  display: block;
  height: 100%;
}
.product .product_box li .product_img {
  overflow: hidden;
  position: relative;
  height: 100%;
}
.product .product_box li .product_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.product .product_box li:hover .hidden {
  display: flex;
}
.product .product_box li:hover .product_img img {
  transform: scale(1.1);
}
.product01 {
  background: #FBFBFB;
  padding: 100px 0 60px 0;
  box-sizing: border-box;
}
.product01 .product_item {
  width: 1320px;
  margin: 0 auto;
  position: relative;
  background: #fff;
  border-radius: var(--border-8);
  padding: 20px;
  box-sizing: border-box;
  display: flex;
  align-items: flex-start;
  gap: 20px;
}
.product01 .product_item .img_box {
  width: 640px;
  position: relative;
}
.product01 .product_item .img_box span.info {
  font-size: 12px;
  color: #ababab;
  position: absolute;
  left: 20px;
  bottom: 150px;
}
.product01 .product_item .txt_box {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.product01 .product_item .txt_box h3 {
  font-size: var(--font-size32);
  color: #222;
  margin-bottom: 26px;
  padding: 0 12px;
}
.product01 .product_item .txt_box ul li {
  width: 100%;
  padding: 20px 12px;
  box-sizing: border-box;
  border-bottom: 1px solid #eee;
  display: flex;
  align-items: center;
}
.product01 .product_item .txt_box ul li b {
  display: inline-block;
  min-width: 120px;
  color: #404040;
  font-weight: 400;
}
.product01 .product_item .txt_box .btn_wrap {
  text-align: right;
  margin-top: 60px;
}
.product01 .slider-for .fot_item {
  width: 100%;
  height: 450px;
}
.product01 .slider-for .fot_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-8);
}
.product01 .slider-nav {
  margin-top: 8px;
  width: 100%;
  pointer-events: auto;
}
.product01 .slider-nav .slick-slide {
  margin-right: 8px;
}
.product01 .slider-nav .nav_item {
  width: calc(100% / 4 - 5px) !important;
  height: 120px;
  max-width: 120px;
}
.product01 .slider-nav .nav_item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: var(--border-8);
}
.product01 .slider-nav .nav_item:last-child {
  margin-right: 0;
}
.product01 .slider-nav .slick-track {
  transform: translate3d(0, 0, 0) !important;
  margin: 0;
  min-width: 100%;
}
.edit_box {
  width: 1320px;
  position: relative;
  margin: 60px auto 120px auto;
  text-align: center;
}
.edit_box h4 {
  font-size: var(--font-size24);
  font-weight: 500;
}
.edit_box .edit_text {
  margin: 60px 0 40px;
}
.edit_box .edit_text p {
  font-size: var(--font-size16);
}
.edit_box .edit_img {
  margin-bottom: 100px;
}


.community {
  margin: 100px auto 120px auto;
}
.community ul.list {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.community ul.list li {
  width: calc(100% / 3 - 34px);
  box-sizing: border-box;
}
.community ul.list li .img_box {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative;
}
/* .community ul.list li .img_box::after {
  content: '블로그방문';
  display: none;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.8);
  font-size: var(--font-size32);
  font-weight: 700;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(51, 51, 51, 0.6);
} */
.community ul.list li .img_box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.3s ease;
}
.community ul.list li .txt_box {
  margin-top: 24px;
}
.community ul.list li .txt_box h3 {
  font-size: var(--font-size18);
  color: #121212;
  font-weight: 600;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  -webkit-line-clamp: 1;
  line-height: 1.2;
  max-height: 1em;
  text-overflow: ellipsis;
}
.community ul.list li .txt_box p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden; 
  -webkit-line-clamp: 2;
  line-height: 1.5;
  height: 42px;
  max-height: 3em;
  text-overflow: ellipsis;
  font-size: var(--font-size14);
  color: #747474;
  margin: 12px 0 24px 0;
}
.community ul.list li .txt_box span {
  font-size: var(--font-size14);
  color: #BDBDBD;
  font-weight: 300;
}
.community ul.list li:hover .img_box img {
  transform: scale(1.1);
}
/* .community ul.list li:hover .img_box::after {
  display: flex;
} */

.pagination {
  display: flex;
  gap: 20px;
  align-items: baseline;
  justify-content: center;
  margin-top: 100px;
}
.pagination .pagination-pager {
  display: none;
}
.pagination .pagination-pager.active {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: var(--font-size32);
  color: #000;
  font-weight: 500;
}
.pagination .pagination-pager.active span.text {
  font-size: var(--font-size20);
  color: #A4A4A4;
  position: relative;
  top: 8px;
}
.pagination .pagination-pager.active span.line {
  display: inline-block;
  width: 24px;
  height: 1px;
  background: #D7E4FE;
  position: relative;
  top: -4px;
  margin-left: 20px;
}
.pagination .pagination-pager.prev,
.pagination .pagination-pager.next {
  display: block;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  background: #BBC9E4 url(../images/arrow2.svg) no-repeat center;
}
.pagination .pagination-pager.next {
  background: #BBC9E4 url(../images/arrow3.svg) no-repeat center;
}
.pagination .pagination-pager.prev:hover,
.pagination .pagination-pager.next:hover {
  background-color: #5c7cb7;
}


.contact_title {
  background: url(../images/contact_bg.png) no-repeat center/cover;
  height: 580px;
  margin-bottom: 550px;
}

.contact {
  background: #fff;
  border-radius: var(--border-4);
  padding: 40px;
  box-sizing: border-box;
  width: 800px;
  margin: 0 auto;
  box-shadow: rgba(51, 51, 51, 0.1) 0 4px 16px;
  position: absolute;
  top: 32%;
  left: 50%;
  transform: translate(-50%, 0%);
}
.contact .contact_form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact .contact_form li {
  display: flex;
  gap: 24px;
}
.contact .contact_form li .input_box {
  width: 100%;
}
.contact .contact_form li .input_box label {
  display: block;
  color: #121212;
  font-weight: 600;
  margin-bottom: 8px;
  font-size: var(--font-size16);
}
.contact .contact_form li .input_box input {
  width: 100%;
  border: 1px solid #DBDFD0;
  border-radius: var(--border-4);
  padding: 14px 24px;
  box-sizing: border-box;
}
.contact .contact_form li .input_box input::placeholder,
.contact .contact_form li .input_box textarea::placeholder {
  font-weight: 400;
  color:#a3a3a3;
}
.contact .contact_form li .input_box input:focus,
.contact .contact_form li .input_box textarea:focus {
  outline: 1px solid var(--main-color);
}
.contact .contact_form li .input_box textarea {
  width: 100%;
  border: 1px solid #DBDFD0;
  border-radius: var(--border-4);
  padding: 14px 24px;
  box-sizing: border-box;
  resize: none;
  height: 120px;
}
.contact .contact_btn {
  font-size: var(--font-size18);
  background: var(--main-color);
  color: white;
  width: 100%;
  padding: 16px 28px;
  border-radius: var(--border-4);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.2s;
}
.contact .contact_btn span {
  display: block;
  transition: all 0.3s ease-in-out;
  position: relative;
  left: -10px;
}
.contact .contact_btn svg {
  opacity: 0;
  display: block;
  transform-origin: center center;
  transition: transform 0.3s ease-in-out;
}
.contact .contact_btn:hover {
  background: #5c7cb7;
  border-radius: var(--border-20);
}
.contact .contact_btn:hover .svg-wrapper {
  animation: fly-1 0.6s ease-in-out infinite alternate;
}
.contact .contact_btn:hover svg {
  opacity: 1;
  transform: translateX(0) rotate(45deg);
}
.contact .contact_btn:hover span {
  transform: translateX(1em);
}

@keyframes fly-1 {
  from {
    transform: translateY(0.1em);
  }

  to {
    transform: translateY(-0.1em);
  }
}

.checkbox_wrap {
  margin: 40px 0;
  display: flex;
  justify-content: space-between;
}
.checkbox_wrap a {
  font-size: var(--font-size14);
  color:#005df0;
  text-decoration: underline;
}
.checkbox_wrap a:hover {
  font-weight: 600;
}
.custom-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  font-size: var(--font-size16);
}
.custom-checkbox input {
  display: none;
}
.custom-checkbox .checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid #909090;
  border-radius: 2px; 
  position: relative;
  margin-right: 10px; 
  background-color: white;
  transition: background-color 0.2s ease;
}
.custom-checkbox input:checked + .checkmark {
  background-color: #272727;
  border-color: #272727;
}
.custom-checkbox input:checked + .checkmark::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px; 
  width: 4px; 
  height: 8px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.privacy {
  width: 80%;
  padding: 40px;
  box-sizing: border-box;
  overflow: auto;
}
.close_wrap {
  position: absolute;
  top: -25px;
  right: 0;
  cursor: pointer;
  width: 15px;
  height: 15px;
}
.close_wrap .close {
  position: static;
}
.privacy h4 {
  font-size: var(--font-size32);
  font-weight: 400;
  margin-bottom: 60px;
}
.privacy b {
  font-size: var(--font-size18);
  display: inline-block;
  margin-bottom: 20px;
}
.privacy p {
  font-size: var(--border-16);
  margin-bottom: 40px;
}

/*탑버튼*/
.top_btn .scroll-up {
  position: fixed;
  right: 50px;
  bottom: 50px;
  z-index: 10;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: bottom .4s, transform .4s;
}
  
.top_btn .scroll-up:hover {
  transform: translateY(-.25rem);
}
  

.top_btn ._show-scroll {
  bottom: 3rem;
}
/*서브페이지끝*/
.item_none img {
  width: 100%;
  object-fit: cover;
}
.item_none span {
  display: block;
  font-size: 14px;
  padding-top: 16px;
  font-weight: 600;

}


.edit_box img {
  max-width: 100%;
}