@charset "utf-8";


/* wrap inner*/
.wrap {
  width: 100%;
}

.wrap .inner {
  width: 1500px;
  margin: 0 auto;
}

.inner,
.inner * {
  font-family: 'Pretendard', sans-serif;
  line-height: 1.5;
  letter-spacing: -0.02rem;
}

h2 {
  font-family: 'Pretendard', sans-serif !important;
}

h3 {
  font-size: 30px !important;
}

/* header */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 100px;
  background: #fff;
  border-bottom: 1px solid #eee;
  z-index: 999;
  align-items: center;
  padding: 0 60px;
  width: 100%;
}

/* Full-width white background bar for submenu dropdown */
header::after {
  content: '';
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  height: 0;
  background: #fff;
  border-bottom: 0 solid #eee;
  z-index: 90;
  transition: height 0.3s ease, border-bottom-width 0.3s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
  pointer-events: none;
}

header.menu-open::after {
  height: 250px;
  border-bottom-width: 1px;
}

header .head_inner {
  display: flex;
  width: 1500px;
  margin: auto;
  padding-top: 23px;
  justify-content: space-between;
  position: relative;
  z-index: 100;
}

/* 로고 */
.logo {
  flex-shrink: 0;
}

.logo img {
  height: 57px;
  width: auto;
}

/* nav 영역 전체 */
.nav {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 100;
}

/* gnb 링크 */
.nav>ul {
  display: block;
  display: flex;
  gap: 54px;
  justify-content: center;
}

.nav>ul>li {
  position: relative;
}

.nav>ul>li>a {
  display: block;
  background: transparent;
  padding: 10px;
  text-align: center;
  font-size: 18px;
  font-weight: 400;
  /* size , weight 20, 400 고정 */
  color: #333;
  transition: color .2s;
  position: relative;
}

.nav>ul>li>a:hover {
  color: var(--main);
}

.nav>ul>li.active>a {
  font-weight: 400;
  color: #111;
}

.nav>ul>li.active>a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 3px;
  background-color: #C71D27;
}

/* header 서브메뉴 숨겨두기 */
.sub {
  display: none;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: transparent;
  border-radius: 0;
  min-width: 140px;
  padding: 35px 0;
  box-shadow: none;
  z-index: 1000;
}

.sub li a {
  display: block;
  background: transparent;
  color: #555;
  padding: 8px 12px;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  transition: color 0.2s;
}

.sub li a:hover {
  color: #C71D27;
  background: transparent;
}

/* sns 아이콘 */
.icon {
  display: flex;
  align-items: center;
}

.icon ul {
  display: flex;
  align-items: center;
  gap: 20px;
}


.icon ul li a img {
  width: 32px;
  height: 32px;
  object-fit: contain;
  transition: opacity .2s;
}

.icon ul li a:hover img {
  opacity: .65;
}


/* main content */
main.content {
  padding-top: var(--header-h);
}


/* hero */
.hero {
  width: 100%;
  height: 850px;
  overflow: hidden;
  background: #ccc;
  position: relative;
}

.hero .swiper-slide>img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* hero navigation custom centering (1500px inner 맞춤) */
.hero-nav-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1500px;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.hero-nav-container .swiper-button-prev,
.hero-nav-container .swiper-button-next {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.hero-nav-container .swiper-button-prev::after,
.hero-nav-container .swiper-button-next::after {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-nav-container .swiper-button-prev svg,
.hero-nav-container .swiper-button-next svg {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
}

.hero-nav-container .swiper-button-prev:hover,
.hero-nav-container .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.85);
  transform: scale(1.08);
}

.hero-nav-container .swiper-button-prev {
  left: 20px;
}

.hero-nav-container .swiper-button-next {
  right: 20px;
}


.swiper {
  width: 100%;
  height: 100%;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #444;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide>img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- hero text overlay ---------- */
.hero .swiper-slide {
  position: relative;
}

.hero_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
  box-sizing: border-box;
}

.hero_badge {
  background-color: #FFBE0B;
  border-radius: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 25px;
  gap: 14px;
  /* box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); */
}

.hero_badge .badge_logo {
  height: 20px;
  width: auto;
}



.hero_badge .badge_num {
  font-family: 'Pretendard', sans-serif;
  font-weight: 800;
  font-size: 24px;
  color: #C71D27;
  line-height: 1;
}

.hero_text {
  font-family: 'Pretendard', sans-serif;
  font-weight: 700;
  font-size: 48px;
  color: #fff;
  line-height: 1.45;
  letter-spacing: -0.02rem;
  /* text-shadow: 0 4px 15px rgba(0, 0, 0, 0.45); */
}


.hero_content p.hero_text .badge_logo2 {
  height: 50px;
  padding-bottom: 10px;
}

.swiper-horizontal>.swiper-pagination-bullets,
.swiper-pagination-horizontal.swiper-pagination-bullets {
  &.swiper-pagination-bullets-dynamic {
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    margin-bottom: 50px;
  }
}


/*------------------------------------------------------what we do--*/

.wedo {
  background: #F2F4F7;
  min-width: var(--inner-w);
}

.wedo .inner {
  padding: 160px 35px;
  width: 1500px;
  margin: 0 auto;
  text-align: center;
}

/* 섹션 타이틀 */
.wedo .inner>h2 {
  font-size: 50px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #111;
  margin-bottom: 12px;
}



.wedo .inner>p {
  font-size: 24px;
  font-weight: 600;
  color: #1a1a1a;
  line-height: 1.3;
  margin-bottom: 100px;
}

/* ---------- slide 공통 ---------- */
.img_slider ul {
  display: flex;
}


.slide01,
.slide02,
.slide03 {
  display: flex;
  align-items: stretch;
  gap: 40px;
  margin: 0 0 60px;
  text-align: left;
  height: 595px;
}

.slide03 {
  margin-bottom: 0;
}

/* ---------- article 카드 ---------- */
.card1,
.card2,
.card3 {
  flex: 0 0 450px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
}

/* icon_wrap */
.icon_wrap {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 55px;
}

.icon_wrap .icon {
  font-size: 32px;
}

.icon_wrap img {
  width: 28px;
  height: 28px;
}

/* textBox 타이틀 */
.textBox {
  border-bottom: 2px solid #C71D27;
  padding-bottom: 60px;
  margin-bottom: 10px;
}

.textBox h3 {
  font-size: 22px;
  font-weight: 700;
  color: #111;
  line-height: 1.4;
  margin-bottom: 35px;
  /* animation: rubberBand 1s .2s both; */
}

.textBox p {
  font-size: 22px;
  color: #666;
  line-height: 1.5;
}

/* item_list */
.item_list {
  display: flex;
  flex-direction: column;
  gap: 5px;
  margin-top: 30px;
}

.item_list li {
  display: flex;
  align-items: center;
  gap: 10px;
}

.item_list li span {
  display: none;

}

.item_list li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 20px;
  background-color: #02C30F;
  color: #fff;
  border-radius: 4px;
  font-size: 15px;
  font-weight: 800;
  flex-shrink: 0;
}

.item_list li p {
  font-size: 18px;
  color: #555;
  margin: 0;
}

/* ------------------------------ img_slider (Swiper 호환용) ---------- */
.img_slider {
  flex: 1;
  overflow: hidden;
  background-color: #fff;
  border-radius: 20px;
  padding: 0 60px;
  position: relative;
  /* box-shadow: inset 0 4px 10px rgba(0, 0, 0, 0.05); */
}

.img_slider .swiper-wrapper {
  transition-timing-function: linear !important;
}

.img_slider ul {
  display: flex;
  margin: 0;
  box-sizing: border-box;
  padding: 60px 20px;

}

.img_slider ul li {
  background: #FEFDFD;
  overflow: hidden;
  border: none;
  border-radius: 16px;
  box-sizing: border-box;
  /* box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  transition: transform .35s ease, box-shadow .35s ease; */
}

.img_slider ul li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  box-sizing: border-box;
  padding: 20px;
  transition: transform .35s ease;
}

/* Swiper Custom Navigation Buttons */
.img_slider .swiper-button-prev,
.img_slider .swiper-button-next {
  width: 50px;
  height: 50px;
  margin-top: -25px;
  background-color: rgba(0, 0, 0, 0.45);
  color: #fff !important;
  border-radius: 50%;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.3s ease;
}

.img_slider .swiper-button-prev::after,
.img_slider .swiper-button-next::after {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img_slider .swiper-button-prev svg,
.img_slider .swiper-button-next svg {
  width: 16px !important;
  height: 16px !important;
  object-fit: contain;
}

.img_slider .swiper-button-prev:hover,
.img_slider .swiper-button-next:hover {
  background-color: rgba(0, 0, 0, 0.85);
  transform: scale(1.08);
}

.img_slider .swiper-button-prev {
  left: 15px;
}

.img_slider .swiper-button-next {
  right: 15px;
}

/*---------------------------------------실시간 문의 sec_inquiry--*/

.sec_inquiry {
  background: #E4DFDF;
  padding: 100px 0;
}

.sec_inquiry .inner {
  width: 1500px;
  padding: 0px 35px;
  margin: 0 auto;
  display: flex;
  align-items: stretch;
  /* 양쪽 영역 높이를 일치 */
  gap: 80px;
  position: relative;;
}

/* 왼쪽 안내 */
.inquiry_left {
  flex: 1;
  /* 50% 영역 분할 */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* 세로 가운데 정렬 */
  align-items: center;
  /* 가로 가운데 정렬 */
  text-align: center;
  /* 텍스트 가운데 정렬 */
  gap: 60px;
}

.inquiry_left .logo-wrap img {
  width: 170px;
  height: auto;
}

.inquiry_left p {
  font-size: 18px;
  font-weight: 500;
  color: #111;
  line-height: 1.5;

}

.inquiry_left p span {
  font-weight: 700;
  color: #C71D27;
}

.btn-inquiry {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: var(--main);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 4px;
  letter-spacing: -.01em;
  transition: background .2s;
  align-self: center;
  /* 버튼 정중앙 배치 */
  cursor: pointer;
  border: none;
}

.btn-inquiry:hover {
  background: #a01520;
}

/* 오른쪽 폼 */
.inquiry-form {
  flex: 1;
}

/* Reorder elements inside the form */
.inquiry-form form {
  display: flex;
  flex-direction: column;
  gap: 0px;
}

.inquiry-form form .consult_cont {
  order: 1;
  margin: 0 !important;
  border-top: none !important;
}

.inquiry-form form table.AWbbs_input_table {
  order: 2;
  margin-top: 10px !important;
}

.inquiry-form form .AW-mem-btn {
  order: 3;
}

/* Remove borders and align AWbbs_input_table with inputs above */
.inquiry-form table.AWbbs_input_table {
  border: none;
  background: transparent;
  width: 100%;
  box-sizing: border-box;
  border-collapse: collapse;
}

.inquiry-form table.AWbbs_input_table tr {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-bottom: 24px;
}

.inquiry-form table.AWbbs_input_table th {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #111;
  height: auto;
  padding: 0;
  text-align: left;
  border: none;
  background: transparent;
  box-sizing: border-box;
  word-break: keep-all;
  display: block;
}

.inquiry-form table.AWbbs_input_table th span.required {
  color: #C71D27;
  font-weight: 700;
}

.inquiry-form table.AWbbs_input_table td {
  border: none;
  background: transparent;
  padding: 0;
  text-align: left;
  box-sizing: border-box;
  resize: none;
  width: 100%;
  display: block;
}

/* Textarea inside terms agreement */
.inquiry-form table.AWbbs_input_table textarea.textarea {
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 4px;
  padding: 12px 14px;
  font-size: 12px;
  color: #666;
  line-height: 1.8;
  height: 100px;
  box-sizing: border-box;
  resize: none;
}

/* Styles for inputs in form_body_table */
.inquiry-form form table.form_body_table tr {
  border-bottom: none;
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
  margin-bottom: 24px;
}

.inquiry-form form table.form_body_table th {
  width: 100%;
  font-size: 18px;
  font-weight: 600;
  color: #111;
  height: auto;
  padding: 0;
  text-align: left;
  display: block;
}

.inquiry-form form table.form_body_table th span {
  color: #C71D27;
  font-weight: 700;
}

.inquiry-form form table.form_body_table td {
  padding: 0;
  text-align: left;
  width: 100%;
  display: block;
}

.inquiry-form form table.form_body_table td input[type='text'],
.inquiry-form form table.form_body_table td input[type='password'],
.inquiry-form form table.form_body_table td input[type='email'],
.inquiry-form form table.form_body_table td select,
.inquiry-form form table.form_body_table td textarea {
  width: 100%;
  height: 38px;
  padding: 10px 12px;
  border: 1px solid #ddd;
  background: #fff;
  font-size: 14px;
  color: #111;
  border-radius: 4px;
  outline: none;
  box-sizing: border-box;
  transition: border-color 0.2s;
}

.inquiry-form form table.form_body_table td textarea {
  height: 120px;
  padding: 12px;
  line-height: 1.6;
  resize: none;
}

.inquiry-form form table.form_body_table td input[type='text']:focus,
.inquiry-form form table.form_body_table td input[type='password']:focus,
.inquiry-form form table.form_body_table td input[type='email']:focus,
.inquiry-form form table.form_body_table td textarea:focus {
  border-color: var(--main);
}

/* Contact input specific width */
.inquiry-form form table.form_body_table td input[name="fname[2][]"],
.inquiry-form form table.form_body_table td input[placeholder*="제외"] {
  width: 50%;
}

/* Specific widths for inline inputs */
.inquiry-form form table.form_body_table td select.phone_0,
.inquiry-form form table.form_body_table td input.phone_1,
.inquiry-form form table.form_body_table td input.phone_2 {
  width: 80px;
  display: inline-block;
  vertical-align: middle;
}

.inquiry-form form table.form_body_table td input.email_1,
.inquiry-form form table.form_body_table td input.email_2 {
  width: 120px;
  display: inline-block;
  vertical-align: middle;
}

.inquiry-form form table.form_body_table td select.email_3 {
  width: 130px;
  display: inline-block ;
  vertical-align: middle ;
}

.inquiry-form form table.form_body_table td input.address_0 {
  width: 80px ;
  display: inline-block ;
  vertical-align: middle ;
  cursor: pointer;
}

.inquiry-form form table.form_body_table td button.address_btn {
  height: 38px ;
  line-height: 38px;
  background: #777;
  color: #fff ;
  border: none ;
  border-radius: 4px;
  padding: 0 16px;
  font-size: 13px;
  vertical-align: middle;
  cursor: pointer;
  margin-left: 6px;
  display: inline-block;
}

.inquiry-form form table.form_body_table td input.address_1,
.inquiry-form form table.form_body_table td input.address_2 {
  width: 100%;
  margin-top: 6px;
  display: block;
}

/* Custom checkbox alignment in agreement text */
.inquiry-form table.AWbbs_input_table .only_chk.font input[type=checkbox]+label {
  font-size: 13px;
  color: #333;
  cursor: pointer;
  font-weight: 500;
  user-select: none;
  position: relative !important;
}

.inquiry-form table.AWbbs_input_table .only_chk.font input[type=checkbox]+label::before {
  background: #fff !important;
  border: 1px solid #ddd !important;
}

.inquiry-form table.AWbbs_input_table .only_chk.font input[type=checkbox]:checked+label::before {
  background: var(--main) !important;
  border-color: var(--main) !important;
}

.inquiry-form table.AWbbs_input_table .only_chk.font input[type=checkbox]+label::after {
  content: '';
  position: absolute;
  left: 6px;
  top: 50%;
  width: 5px;
  height: 9px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: translateY(-60%) rotate(45deg);
  display: none;
}

.inquiry-form table.AWbbs_input_table .only_chk.font input[type=checkbox]:checked+label::after {
  display: block;
}



/* Confirm and Cancel buttons at the bottom */
.inquiry-form form .AW-mem-btn {
  margin-top: 20px;
  display: flex;
  justify-content: center !important;
}

/* 버튼 볼륨감 통일 */
.inquiry-form form .AW-mem-btn button.btn-inquiry,
.inquiry_left button.btn-inquiry {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  background: var(--main);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  letter-spacing: -.01em;
  transition: background .2s;
  border: none;
  cursor: pointer;
  width: auto;
  height: auto;
  line-height: 1.167;
  float: none;
}

.inquiry-form form .AW-mem-btn button.btn-inquiry:hover,
.inquiry_left button.btn-inquiry:hover {
  background: #a01520;
}



/* ================================form스킨 ver2 */
.inquiry-form .AWbbs_input_table{
  border: none !important;
}

/* 취소 숨기기 */
.inquiry-form form .AW-mem-btn a {
  display: none;
} 
/* inner 에 position : relative */

.inquiry-form form .AW-mem-btn button {
  position: absolute;
  display: flex;
  left: 291px;
  bottom: 225px;
  width: auto;
  height: 47px;
  background: var(--main);
  color: #fff;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  letter-spacing: -.01em;
  line-height: 1.167;
  transition: background .2s;
  border: none;
  cursor: pointer;
}

.inquiry-form form .AW-mem-btn img {
  width: auto;
  height: 20px;
  margin-left: 8px;
}

.inquiry-form table.AWbbs_input_table tr {
  margin-bottom: 0px !important;
}



/*------------------------------------------------------제품더보기--*/
.sec_more {
  padding: 140px 0;
  background: #fff;
  min-width: var(--inner-w);
}

.more_inner {
  width: 1500px;
  padding: 0px 35px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* 왼쪽 텍스트 */
.product_text {
  flex: 0 0 440px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  white-space: nowrap;
}

.product_text h2 {
  font-family: 'Pretendard', sans-serif !important;
  font-size: 35px;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: -0.02rem;
  color: #111;
  word-break: keep-all;
}

.product_text p {
  font-size: 18px;
  color: #111;
  line-height: 1.7;

}

.product_text .sub_info {
  font-size: 14px;
  color: #aaa;
  line-height: 1.3;
}

.btn_more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--main);
  color: #fff;
  font-family: 'Pretendard', sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  letter-spacing: -.01em;
  transition: background .2s;
  border: none;
  cursor: pointer;
  width: auto;
  height: auto;
  line-height: inherit;
  align-self: flex-start;
}

.btn_more:hover {
  background: #a01520;
}

/* 오른쪽 이미지 */
.product_img {
  flex: 1;
  border-radius: 6px;
  overflow: hidden;
  max-width: 625px;
  display: flex;
  justify-content: flex-end;
}

.product_img img {
  width: 460px;
  height: auto;
  object-fit: cover;
}


/*------------------------------------------------------이벤트 섹션--*/

.sec_event {
  padding: 140px 0;
  background: #F2F4F7;
  min-width: var(--inner-w);
}

.even_inner {
  width: 1500px;
  padding: 0px 35px;
  box-sizing: border-box;
  margin: 0 auto;
}

.sec_event h2 {
  font-size: 45px;
  font-weight: 800;
  letter-spacing: .06em;
  color: #111;
  text-align: center;
  margin-bottom: 100px;
}

/* ul : 카드 3개 가로 배치 */
.even_inner .board ul {
  display: flex;
  gap: 28px;
  list-style: none;
  margin-bottom: 48px;
  padding: 0 100px;
}

/* 이벤트 카드 li */
.even_inner .board ul li {
  flex: 1;
  background: #fff;
  border: 1px solid #eee;
  border-radius: 16px;
  overflow: hidden;
  transition: box-shadow .2s;
}

.even_inner .board ul li:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, .08);
}

.even_inner .board ul li>a {
  display: block;
}

/* 썸네일 */
.even_inner .board ul li img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  display: block;
  transition: transform .35s ease;
}




/* 카드 텍스트 */
.even_inner .board .tit {
  padding: 20px 25px;
  min-height: 140px;
  text-align: left;
  box-sizing: border-box;
  display: block;
  line-height: 1.65;
  font-size: 18px;
  font-weight: 600;
  color: #111;
}

.even_inner .board .tit p {
  font-size: 18px;
  font-weight: 600;
  text-align: left;
  margin: 0;
  color: #111;
  line-height: 1.65;
}

.even_inner .board .tit span,
.even_inner .board .tit .date {
  display: block;
  margin-top: 15px;
  font-size: 14px;
  font-weight: 400;
  color: #888888;
  text-align: left;
}





/* 더보기 버튼 */
.even_inner>a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  background: var(--main);
  color: #fff;
  font-family: 'Pretendard', sans-serif !important;
  font-size: 18px;
  font-weight: 600;
  padding: 13px 26px;
  border-radius: 12px;
  letter-spacing: -.01em;
  transition: background .2s;
  border: none;
  cursor: pointer;
  width: fit-content;
  height: auto;
  line-height: inherit;
  margin: 0 auto;
}

.even_inner>a:hover {
  background: #a01520;
  color: #fff;
}


/*  footer */
footer {
  background: var(--footer-bg);
  min-width: var(--inner-w);
}

/* ---------------------------------------- footer 상단 bar ---------- */
.footer_top {
  background: var(--footer-top-bg);
  padding: 16px 60px;
  border-bottom: 0px solid rgba(255, 255, 255, .1);
}

.footer_top .inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer_policy {
  display: flex;
  gap: 32px;
}

.footer_policy a {
  font-size: 13px;
  color: #ccc;
  font-weight: 500;
  transition: color .2s;
}

.footer_policy a:hover {
  color: #fff;
}

.footer_sns_wrap {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footer_sns_wrap span {
  font-size: 13px;
  color: #ccc;
  margin-right: 4px;
}

.footer_sns_wrap a img {
  width: 28px;
  height: 28px;
  filter: brightness(0) invert(1);
  opacity: .65;
  transition: opacity .2s;
}

.footer_sns_wrap a:hover img {
  opacity: 1;
}

/* ----------------------------------------  footer 메인 ---------- */
.footer_brand {
  display: flex;
  flex-direction: column;
  gap: 20px;
  text-align: left;
}

.footer_brand address {
  font-size: 15px;
  color: #ccc;
  line-height: 1.8;
  letter-spacing: -.01em;
}

.footer_brand .copyright {
  font-size: 12px;
  color: #888;
  margin-top: 10px;
}

.footer_brand .f_logo img {
  height: 48px;
}

.footer_info {
  display: flex;
  justify-content: space-between;
  width: 460px;
  text-align: left;
}

.footer-nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 0;
  padding: 52px 0px;
}

.footer-nav-col {
  flex: 0 0 auto;
  min-width: 100px;
}

.footer-nav-col+.footer-nav-col {
  margin-left: 0;
}

.footer-nav-col h5 {
  font-size: 13px;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}

.footer-nav-col ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-nav-col ul li a {
  font-size: 12px;
  color: #aaa;
  transition: color .2s;
}

.footer-nav-col ul li a:hover {
  color: #fff;
}