@charset "utf-8";

* {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}


@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/NotoSansKR-Regular.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/NotoSansKR-Bold.ttf") format("truetype");
  font-weight: 700;
}
@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/NotoSansKR-Light.ttf") format("truetype");
  font-weight: 300;
}

@font-face {
  font-family: "Noto Sans KR";
  src: url("fonts/NotoSansKR-Black.ttf") format("truetype");
  font-weight: 900;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans KR", sans-serif;
  min-width: 1440px;
}

/* Reset */
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
body {
  font-family: "Noto Sans KR", sans-serif;
  background: #fff;
  color: #222;
}
a {
  text-decoration: none;
  color: inherit;
}

/* Header Container */

.header {
  position: sticky;
  top: 0;
  z-index: 999; /* 다른 요소 위에 뜨도록 */
  background: #fff; /* 배경색 지정해서 내용 가려지지 않게 */
}

.nav-dropdown-box {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  width: 100%;
  background: #fff;
  border-top: 1px solid #ddd;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  padding: 20px 40px;
  z-index: 999;
  display: flex;              /* FLEX로 변경 */
  gap: 60px;                  /* 컬럼 간격 */
  justify-content: flex-start;/* 왼쪽부터 */
  align-items: flex-start;
  padding-left: 180px;        /* 시작점 맞춤 */
}




/* 각 컬럼 */
.nav-dropdown-box > ul {
  display: flex;
  flex-direction: column;
  gap: 0px;                  /* 항목 간 간격 */

}



.nav-dropdown-box > ul > li {
  margin-bottom: -10px;
}

/* 리스트 항목 */
.nav-dropdown-box > ul > li > a {
  font-size: 14px !important;
  font-weight: 500 !important;
  color: #555 !important;
    position: relative;
     display: inline;
  transition: color 0.2s ease;
  padding: 2px 0;
  line-height: 1.2;
}


.nav-dropdown-box > ul > li > a:hover {
  color: #000;
  font-weight: 700;
}

.nav-dropdown-box > ul > li > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 3px;
  background: #FF8B00;
  width: 0;
  transition: width 0.3s ease;
}
.nav-dropdown-box > ul > li > a:hover::after {
  width: 100%;
}




.nav-dropdown-box > ul:first-child {
    margin-left: 100px;
    
}

.nav-dropdown-box > ul:nth-child(2) {
    margin-left: -30px;
    
}

.nav-dropdown-box > ul:nth-child(3) {
    margin-left: -3px;
    
}


.nav-dropdown-box > ul:last-child {
    margin-left: 0px;
    
}




.nav-container {
  max-width: 1920px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  border-bottom: 1px solid #ddd;
}

/* Hamburger */
.menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: #000;
}

.main-nav {
  display: flex;
  justify-content: flex-start;
}

.main-menu {
    position: relative;
    left: -100px;
}


/* Center Menu */
.main-nav ul {
  display: flex;
  list-style: none;
  gap: 50px;
}
.main-nav ul li a {
  font-size: 16px;
  font-weight: 700;
}

/* Right Section */
.nav-right {
  display: flex;
  align-items: center;
  gap: 30px;
}


/* Search */
.search {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #000;
  padding-bottom: 2px;
}
.search input {
  border: none;
  outline: none;
  width: 140px; /* 더 넓게 */
  font-size: 14px;
  padding: 4px;
}
.search .search-icon {
  background: none;
  border: none;
  cursor: pointer;
  font-size: 15px;
  margin-left: 4px;
}

/* User Links */
.user-links {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 13px;
}
.user-links span {
  color: #888;
}
.user-links img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

/* Logo */
.logo a {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  font-weight: bold;
  font-size: 16px;
  line-height: 1.2;
}
.logo span {
  font-size: 11px;
  color: #666;
}


/* footer */

.footer {
  background: #4a4038; /* 어두운 배경 */
  color: #ccc;
  font-size: 14px;
  padding: 20px 20px;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}

.footer-menu {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
 gap: 12px;
}

.footer-menu li {
  list-style: none;
  position: relative;
  padding: 0 26px;           /* 좌우 여백 */
  border-right: 1px solid #aaa; /* 구분선 */
}

/* 첫 번째 li 왼쪽 여백 제거 */
.footer-menu li:first-child {
  padding-left: 0;
}

/* 마지막 li 구분선 제거 */
.footer-menu li:last-child {
  border-right: none;
}


.footer-menu a {
  color: #ccc;
  text-decoration: none;
  font-size: 16px;
}

.footer-menu a strong {
  font-weight: 700;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 40px;
}

.footer-info {
  flex: 1;
  min-width: 300px;
  position: relative;
  top: -20px;
}

.footer-info p {
  margin: 5px 0;
  line-height: 1.6;
}

.footer-info a {
  color: #ccc;
  text-decoration: underline;
}

.footer-contact {
  text-align: right;
  min-width: 250px;
}

.sns-icons {
  display: flex;
  gap: 3px;
}

.sns-icons img {
  width: 100px;
  height: 100px;
}

.contact-info .tel {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 5px;
  color: #fff;
}

/* 위로가기 버튼 */
.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  background: #eee;
  font-size: 24px;
  cursor: pointer;
  box-shadow: 0 0 5px rgba(0,0,0,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

/* 카카오톡 버튼 */
/* 카카오톡 버튼 */
.kakao-btn {
  position: fixed;
  bottom: 70px;  /* 스크롤 버튼 위로 띄우기 */
  right: 5px;   /* 스크롤 버튼과 같은 right 값 */
  width: 100px;
  height: 100px;
  display: block;
  z-index: 999;
}


/* 카카오톡 이미지 크기 동일하게 */
.kakao-btn img {
  width: 100%;
  height: 100%;
  display: block;
}

/* 스크롤 시*/
.fade-target {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.7s ease;
}

.fade-target.in-view {
  opacity: 1;
  transform: translateY(0);
}

/* breadcrumb 전체 영역 */
.breadcrumb-wrap {
  max-width: 1200px;
  margin: 40px auto;
  padding: 0 20px;
  display: flex;
  justify-content: flex-end;
}

/* breadcrumb 내부 */
.breadcrumb {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: #999;
  gap: 10px;
}

/* breadcrumb 링크 스타일 */
.breadcrumb a {
  color: #999;
  text-decoration: none;
  transition: color 0.2s ease;
}

.breadcrumb a:last-child {
  color: #222;       /* 검정 글씨 */
  font-weight: 700;  /* 진하게 */
}

.breadcrumb a:hover {
  color: #333;
}

/* breadcrumb 구분 기호 */
.breadcrumb span {
  color: #ccc;
  font-size: 13px;
  user-select: none;
}


.page-title {
  text-align: center;
  margin-bottom: 40px;
}

.page-title h1 {
  font-size: 32px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
}

.page-title .date {
  font-size: 16px;
  color: #444;
}

.campaign-image {
  max-width: 1200px;
  margin: 0 auto 80px;
  padding: 0 20px;
  position: relative;
  top: -40px;
  margin-top: 100px;
}

.campaign-image img {
  width: 100%;
  display: block;
}









