/* 모바일 메뉴 구분선 */
.mobile-menu-divider {
  border: none;
  border-top: 1.5px solid #333;
  margin: 0.2em 0 0.2em 0;
  width: 100%;
  opacity: 0.25;
}
/* 문의 완료 TOP 버튼 통일 디자인 */
.contact-complete-top-btn {
  padding: 0.7em 2em;
  font-size: 1.1em;
  border-radius: 8px;
  background: var(--mint);
  color: #fff;
  border: none;
  cursor: pointer;
  margin-top: 2rem;
  transition: background 0.2s, color 0.2s;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  font-family: 'Noto Sans JP', 'Segoe UI', Arial, sans-serif;
}
.contact-complete-top-btn:hover {
  background: #4bbd99;
  color: #fff;
}
.slick-arrow {
  background: none;
  border: none;
  color: var(--mint, #66d1b7);
  width: 32px;
  height: 32px;
  font-size: 0 !important;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  box-shadow: none;
  cursor: pointer;
  transition: color 0.2s;
}
.slick-arrow.slick-prev {
  left: -36px;
}
.slick-arrow.slick-next {
  right: -10px;
}
.slick-arrow.slick-prev::before {
  content: '\25C0'; /* ◀ */
  font-size: 1.6rem;
  color: var(--mint, #66d1b7);
  display: block;
}
.slick-arrow.slick-next::before {
  content: '\25B6'; /* ▶ */
  font-size: 1.6rem;
  color: var(--mint, #66d1b7);
  display: block;
}
.slick-arrow:hover::before {
  color: #3bb89f;
}

/* slick 도트(인디케이터) 커스텀 */
.slick-dots {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: -30px;
  display: flex !important;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
  z-index: 10;
}
.slick-dots li {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #e0f7f3;
  transition: background 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.slick-dots li.slick-active {
  background: var(--mint, #66d1b7);
}
.slick-dots button {
  opacity: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}
.news-nav-btn {
  text-decoration: none !important;
  box-shadow: none;
}
.news-nav-btn:visited,
.news-nav-btn:active,
.news-nav-btn:focus {
  text-decoration: none !important;
  box-shadow: none;
}
.news-list div a {
  margin-left: 1.2em;
}
.news-list div {
  margin-bottom: 0.7em;  
}
/* 뉴스 상세(single) 페이지 디자인 */
.news-detail-section {
  background: #fff;
  border-radius: 8px;
  margin: 2rem auto;
  padding: 2.5rem 2rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  max-width: 800px;
}
.news-detail-title {
  font-size: 2rem;
  color: var(--mint);
  text-align: center;
  margin-bottom: 2rem;
}
.news-detail-meta {
  font-size: 1.15rem;
  color: var(--navy);
  margin-bottom: 1.5rem;
  text-align: left;
}
.news-detail-date {
  font-weight: bold;
  font-size: 1.2rem;
}
.news-detail-post-title {
  font-size: 1.15rem;
  font-weight: bold;
  margin-top: 0.5em;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.news-detail-hr {
  border: none;
  border-top: 2px solid var(--navy);
  margin: 2rem 0;
}
.news-detail-content {
  font-size: 1.08rem;
  color: #222;
  min-height: 180px;
  margin-bottom: 2rem;
}
.news-detail-nav {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
}
.news-detail-nav-btn {
  flex: 0 0 220px;
}

@media (max-width: 600px) {
  .news-detail-nav {
    gap: 1rem;
  }
  .news-detail-nav-btn {
    flex: 0 0 48%;
    min-width: 120px;
    max-width: 160px;
  }
  .news-nav-btn {
    font-size: 1rem;
    padding: 0.7em 0.2em;
    border-radius: 6px;
  }
}

.news-nav-btn {
  display: block;
  width: 100%;
  padding: 1rem 0;
  border: 2px solid var(--navy);
  border-radius: 8px;
  background: #fff;
  color: var(--navy);
  font-size: 1.1rem;
  text-align: center;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.news-nav-btn:hover {
  background: var(--mint);
  color: #fff;
}
/* 뉴스 페이지 테이블 및 페이징 디자인 */
.news-title {
  text-align: left;
}
.news-section {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 2rem 1.5rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  text-align: center;
}
.news-table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem auto 1.5rem auto;
}
.news-table td {
  padding: 0.7em 0.6em;
  border-bottom: 1px solid #e0e0e0;
  font-size: 1.05rem;
}
.news-table tr:last-child td {
  border-bottom: none;
}
.news-date {
  color: var(--navy);
  width: 110px;
  text-align: left;
  font-weight: bold;
}
.news-title a {
  color: #222;
  text-decoration: underline;
  transition: color 0.2s;
}
.news-title a:hover {
  color: var(--mint);
}
.news-pagination {
  margin: 2rem 0 0 0;
  text-align: center;
  font-size: 1.2rem;
}
.news-pagination .page-numbers {
  display: inline-block;
  margin: 0 0.3em;
  padding: 0.3em 0.8em;
  border-radius: 4px;
  background: #f8f8f8;
  color: var(--navy);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.news-pagination .current {
  background: var(--mint);
  color: #fff;
  font-weight: bold;
}
.news-pagination .page-numbers:hover {
  background: var(--mint);
  color: #fff;
}
/* policy 섹션 가운데 정렬 */
.policy {
  text-align: center;
}
/* recruit-link: 클릭/방문/포커스 시에도 색상 유지 */
.page-link {
  color: var(--navy);
  text-decoration: underline;
  transition: none;
}
.page-link:visited,
.page-link:active,
.page-link:focus {
  color: var(--navy);
  text-decoration: underline;
}
.recruit-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1.5rem 0;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  border: 2px solid var(--mint);
}
.recruit-table th {
  background: #f8f8f8;
  color: var(--navy);
  font-weight: bold;
  text-align: left;
  padding: 0.7em 1em;
  width: 160px;
  min-width: 90px;
  max-width: 160px;
  vertical-align: top;
  border-bottom: 1px solid #e0e0e0;
}
.recruit-table td {
  padding: 0.7em 1em;
  vertical-align: top;
  border-bottom: 1px solid #e0e0e0;
}

@media (max-width: 600px) {
  .recruit-table th {
    width: 28vw;
    min-width: 70px;
    max-width: 32vw;
    font-size: 0.98rem;
    padding-left: 0.5em;
    padding-right: 0.3em;
  }
  .recruit-table td {
    width: 72vw;
    font-size: 1rem;
    padding-left: 0.5em;
    padding-right: 0.5em;
    word-break: break-word;
  }
}

.recruit-table tr:last-child th,
.recruit-table tr:last-child td {
  border-bottom: none;
}
:root {
      --mint: #6fd6b6; /* 로고 민트컬러 */
      --navy: #23424a; /* 포인트용 딥컬러(선택) */
}
body {
  background: #fff;
  color: #222;
  font-family: 'Noto Sans JP', sans-serif;
  margin: 0;
  padding: 0;
}
header {
  background: #fff;
  border-bottom: 2px solid var(--mint);
  position: sticky;
  top: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.3rem 2rem; /* 높이 줄임 */
  min-height: 56px;
}
.logo {
  display: flex;
  align-items: center;
  padding: 0.2rem 0; /* 높이 줄임 */
}
.logo img {
  height: 28px; /* 로고 크기 더 축소 */
  margin-right: 1rem;
}
nav {
  display: flex;
  gap: 2rem;
  background: #fff;
  padding: 0.5rem 2rem;
  border-radius: 6px;
}
nav a {
  color: var(--mint);
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  transition: background 0.2s, color 0.2s;
}
main {
  max-width: 900px;
  margin: 2rem auto;
  padding: 0 1rem;
}
section {
  margin-bottom: 2.5rem;
  scroll-margin-top: 150px;
}
.section-title {
  font-size: 1.5rem;
  color: var(--mint);
  border-left: 6px solid var(--mint);
  padding-left: 0.5rem;
  margin-bottom: 1rem;
}
.news-list, .goods-list, .recruit-list {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1rem;
}
.goods-list {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
}
.goods-item {
  min-width: 80px;  
  /* ...기존 스타일... */
}
.goods-item:hover {
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
.company-info, .contact, .policy {
  background: #f8f8f8;
  border-radius: 8px;
  padding: 1rem;
}
.contact-form-btn {
  display: block;
  width: 100%;
  background: var(--mint);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.1rem;
  margin-top: 1rem;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-form-btn:hover {
  background: #4bbd99;
}
.to-top {
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  background: var(--mint);
  color: #fff;
  border: none;
  border-radius: 50%;
  width: 48px;
  height: 48px;
  font-size: 2rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}
footer {
  text-align: center;
  padding: 1rem 0;
  color: #888;
  font-size: 0.95rem;
}


/* 회사 소개 */
.intro-content {
  display: flex;
  flex-direction: column;
  align-items: center;
    gap: 1.2rem;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}
.intro-logo-box {
  width: 100%;
  display: flex;
  justify-content: center;
    margin-bottom: 0.8rem;
}
.intro-logo {
  width: 640px;
  max-width: 90vw;
  height: auto;
  display: block;
}
.intro-title-box {
  width: 100%;
  display: flex;
  justify-content: flex-start;
  margin-bottom: -2rem;
  margin-left: 0;
  padding-left: 0;
  text-align: left;
}
.intro-text-box {
  width: 100%;
  max-width: none;
  margin: 0;
  text-align: left;
  padding-left: 0;
    margin-bottom: 0.5rem;
}


@media (max-width: 600px) {
  .intro-content {
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
    text-align: center;
  }
  .intro-logo-box {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 0.5em;
    text-align: center;
  }
  .intro-logo {
    width: 160px;
    height: auto;
    margin: 0 auto;
    display: block;
  }
  .intro-text-box {
    width: 100%;
    text-align: left;
    margin: 0 auto;
  }
}
.intro-logo {
    width: 480px; /* 원하는 크기로 조정 */
    height: auto;
}
.intro-text {
    flex: 1;
}

/* 문의 폼 페이지 스타일 */
@media (max-width: 600px) {
  .intro-content {
    flex-direction: column;
    align-items: stretch;
    gap: 1.2rem;
    text-align: left;
  }
  .intro-title-box {
    order: 2;
    width: 100%;
    display: flex;
    justify-content: flex-start;
    margin-bottom: -2rem;
    text-align: left;
  }
  .intro-logo {
    width: 220px;
    max-width: 90vw;
    height: auto;
    display: block;
  }
  .intro-logo-box {
    order: 1;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 1.2rem;
  }
  .intro-logo {
    width: 220px;
    max-width: 90vw;
    height: auto;
    display: block;
  }
  .intro-text-box {
    order: 3;
    width: 100%;
    max-width: 98vw;
    margin: 0 auto;
    text-align: left;
  }
}
.contact-title {
  font-size: 2rem;
  color: var(--mint);
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-form {
  background: #f8f8f8;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  max-width: 500px;
  margin: 0 auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.form-group {
  margin-bottom: 1.2rem;
}

.form-group label {
  display: block;
  font-weight: bold;
  margin-bottom: 0.2rem;
  color: var(--navy);
}

.form-group .required {
  color: #d00;
  font-size: 0.95em;
  margin-left: 0.3em;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.7em;
  border: 1px solid #ccc;
  border-radius: 6px;
  font-size: 1rem;
  box-sizing: border-box;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--mint);
  background: #eafaf6;
}

.contact-confirm-btn {
  background: var(--mint);
  color: #fff;
  border: none;
  border-radius: 8px;
  padding: 1rem;
  font-size: 1.1rem;
  width: 100%;
  cursor: pointer;
  transition: background 0.2s;
}
.contact-confirm-btn:hover {
  background: #4bbd99;
}

/* 회사정보 테이블 스타일 */
.company-table {
	width: 100%;
	border-collapse: collapse;
	margin: 0.5rem 0;
}
.company-table th {
	text-align: left;
	padding: 0.5em 0.5em 0.5em 0;
	font-weight: bold;
	color: var(--navy);
	width: 120px;
	vertical-align: top;
}
.company-table td {
	padding: 0.5em 0 0.5em 2em;
	vertical-align: top;
}
.company-table .company-deleted {
	color: #888;
}
.company-table .deleted {
	color: #d00;
	font-weight: bold;
	margin-right: 0.5em;
}
.company-table .company-notice {
	font-size: 0.95em;
	color: #888;
	margin-left: 0.5em;
}
.company-table tr {
	border-bottom: 1px solid #e0e0e0;
}
.company-table tr:last-child {
	border-bottom: none;
}

/* 채용 정보 섹션 스타일 */
.recruit-section h2 {
  font-size: 1.2rem;
  color: var(--navy);
  margin-bottom: 0.7rem;
}
.recruit-section ul {
  margin: 1rem 0;
  padding-left: 1.2em;
  line-height: 2;
}
.recruit-section li {
  margin-bottom: 0.3em;
}
.recruit-section strong {
  color: var(--navy);
}
.recruit-section span {
  color: var(--navy);
  font-weight: bold;
}
.recruit-section[style*="border:2px solid"] {
  border: 2px solid #d00 !important;
  background: #fff;
}
.recruit-section {
  background: #fff;
  border-radius: 8px;
  margin-bottom: 2rem;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
  scroll-margin-top: 150px;
}
.recruit-section:target { padding-top: 0; }
.contact-form-btn.recruit {
  background: #f8e3d6;
  color: var(--navy);
  border: 1px solid var(--navy);
  margin-top: 1.5rem;
}

/* 모바일 메뉴 햄버거 버튼 */
.mobile-menu-btn {
  display: none;
  position: fixed;
  top: 12px;
  right: 24px;
  z-index: 1001;
  background: #fff;
  border: none;
  border-radius: 8px;
  width: 48px;
  height: 48px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}
.menu-icon {
  font-size: 2.2rem;
  color: var(--navy);
}

/* 모바일 오버레이 메뉴 */
.mobile-menu-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: rgba(0,0,0,0.95);
  z-index: 2000;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
  opacity: 0;
  pointer-events: none;
}
.mobile-menu-overlay.open {
  display: flex;
  opacity: 1;
  pointer-events: auto;
}
.mobile-menu-close {
  position: absolute;
  top: 32px;
  right: 32px;
  background: none;
  border: none;
  font-size: 3rem;
  color: #fff;
  cursor: pointer;
}
.mobile-menu-nav {
  display: flex;
  flex-direction: column;
  gap: 2.2rem;
  align-items: center;
}
.mobile-menu-nav a {
    color: var(--mint);
  font-size: 2.3rem;
  font-weight: 900;
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
  background: none !important;
  text-align: center;
  text-shadow: none;
}
.mobile-menu-nav a:hover {
    color: var(--mint);
}

/* 문의 완료 페이지 스타일 (contact complete) */
.contact-complete-container {
  max-width: 760px;
  margin: 40px auto;
  padding: 40px 36px 36px 36px;
  font-family: 'Noto Sans JP', 'Segoe UI', Arial, sans-serif;
  position: relative;
}
.contact-complete-header {
  background: var(--navy);
  color: #fff;
  border-radius: 6px;
  padding: 14px 0;
  text-align: center;
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 28px;
}
.contact-complete-title {
  text-align: center;
  font-size: 1.9rem;
  margin-bottom: 18px;
  font-weight: 500;
  color: var(--navy);
}
.contact-complete-message {
  text-align: left;
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.8;
  color: #222;
}
.contact-complete-footer {
  border-top: 2px solid var(--mint);
  text-align: center;
  padding-top: 14px;
  color: #222;
  font-size: 0.95rem;
  margin-top: 20px;
}

@media (max-width: 900px) {
  header nav {
    display: none;
  }
  .mobile-menu-btn {
    display: flex;
  }
  /* 모바일 메뉴 오버레이 내비게이션 글자 크기 조정 */
  .mobile-menu-nav a {
    font-size: 1.15rem;
    font-weight: 700;
    padding: 0.7em 0;
  }
  .mobile-menu-nav {
    gap: 1.2rem;
  }
  /* 모바일 메뉴 닫기 버튼 하단 중앙 배치 */
  .mobile-menu-close-bottom {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    background: #222;
    color: #fff;
    border: none;
    border-radius: 50px;
    font-size: 0.98rem;
    padding: 0.35em 1em;
    cursor: pointer;
    box-shadow: 0 2px 8px rgba(0,0,0,0.12);
    display: flex;
    align-items: center;
    gap: 0.5em;
    font-family: 'Noto Sans JP', 'Segoe UI', Arial, sans-serif;
    z-index: 2100;
  }
  .mobile-menu-close-bottom:hover {
    background: var(--mint);
    color: #fff;
  }
}