@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

a {
  text-decoration: none;
  color: inherit;
  display: block;
}

ul li {list-style: none;}

html, body {
  margin: 0;
  padding: 0;
  width: 100%;
}

/* 기본 설정 끝 */


/* 전체 공용 CSS */

#wrap {
  max-width: 1200px;
  width: 100%;
  height: 50px;
  list-style: none;
  margin: 0 auto;
}

.chat {
  width: 100%;
  height: 100%;
  display: flex;
  border-bottom: 1px solid #eee;
}

.chat1 {
  width: 1000px;
  height: 50px;
  color: #666;
  opacity: 0.6;
  font-size: 13px;
  float: left;
}

.chat1 a{
  width: 200px;
  height: 50px;
  padding-top: 10px;
}

.chat1 span {
  color: #333;
  font-size: 18px;
}

header {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 150px;
  position: relative;
}

.logo-wrapper {
  width: 300px;
  height: 100px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.logo-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.menu-pc {
  max-width: 1200px;
  width: 100%;
  height: 120px;
  margin: 0 auto;
  padding-top: 50px;
  position: relative;
}

.menu-bg {
  position: absolute;
  top: 100px;
  left: 0;
  max-width: 1200px;
  width: 100%;
  height: 0;
  background-color: #f9f9f9;
  border-top: 1px solid #ddd;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  z-index: 9;
  overflow: hidden;
}

.menu {
  display: flex;
  max-width: 1200px;
  width: 100%;
  height: 50px;
  text-align: center;
  font-weight: bold;
  position: relative;
  z-index: 11;
}

.menu > li {
  width: 300px;
  height: 50px;
  line-height: 50px;
  position: relative;
  z-index: 12;
}

.submenu {
  max-width: 300px;
  width: 100%;
  position: absolute;
  top: 50px;
  left: 0;
  z-index: 10;
  display: none;
  background: none;
  border: none;
  box-shadow: none;
}

.submenu > li {width: 100%;}

.submenu > li > a {
  display: block;
  padding: 12px 16px;
  background: none;
  transition: background 0.3s ease;
}

.submenu > li > a:hover {
  background-color: #f0f4ff;
  font-weight: bold;
}


/* 컨테이너 스타일 */
#contents.tab-container {
  width: 100%;
  max-width: 1200px; 
  margin: 40px auto;
  padding: 20px;
  background-color: #ffffff;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05); 
  border: 1px solid #e0e0e0;
}

/* 탭 헤더 영역 스타일 */
.tab-header {
  display: flex;
  align-items: flex-end;
  border-bottom: 2px solid #eee;
  margin-bottom: 15px;
  position: relative;
}

/* 탭 버튼 스타일 */
.tab-button {
  background-color: transparent;
  border: none;
  padding: 10px 20px 35px 20px;
  cursor: pointer;
  font-size: 18px;
  font-weight: 500;
  color: #888;
  transition: all 0.3s;
  border-bottom: 3px solid transparent; 
}

.tab-button:hover {
  background-color: transparent !important;
  color: #555;
}

.tab-button.active:hover {
  color: #007bff;
  background-color: transparent !important;
}

/* 활성화된 탭 버튼 스타일 */
.tab-button.active {
  color: #007bff; 
  font-weight: 700;
  border-bottom: 3px solid #007bff; 
}

/* 더보기 링크 스타일 */
#more-link {
  position: absolute;
  right: 0;
  bottom: 5px;
  text-decoration: none;
  color: #555;
  font-size: 14px;
  padding-bottom: 5px;
}

/* 탭 콘텐츠 숨기기/보이기 */
.tab-content {
  display: none; 
  padding-top: 5px;
}

.tab-content.active {display: block; }

/* 리스트 스타일 */
.notice-list, .memo-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.notice-list li, .memo-list li {
  padding: 8px 0;
  border-bottom: 1px dashed #ddd; 
}

.notice-list li:last-child, .memo-list li:last-child {border-bottom: none; }

/* 리스트 항목 내부 링크 스타일 */
.notice-list li a, .memo-list li a {
  display: flex;
  justify-content: space-between; 
  text-decoration: none;
  color: #333;
  font-size: 15px;
}

.notice-list li a:hover, .memo-list li a:hover {color: #007bff; }

/* 날짜 스타일 */
.notice-date, .memo-date {
  color: #999;
  font-size: 14px;
  flex-shrink: 0;
  margin-left: 15px; 
}

/* 기본 푸터 스타일 */
footer {
  background-color: #666;
  color: #fff;
  padding: 30px 0 10px;
  font-size: 14px;
  margin-top: 100px;
}

.footer_inner {
  max-width: 1200px; 
  margin: 0 auto 25px;
  padding: 0 20px;
  display: flex;
  justify-content: space-between;
  gap: 30px; 
}

.footer_nav {
  display: flex;
  gap: 40px;
}

.footer_nav h3 {
  font-size: 14px;
  margin-bottom: 15px;
}

.footer_nav ul {
  list-style: none;
  padding: 0;
}

.footer_nav li {margin-bottom: 8px;}

.footer_nav a {
  color: #ccc;
  text-decoration: none;
  font-size: 12px;
}

.footer_nav a:hover {color: #fff;}

.logo-link img {
  width: 200px;
  height: auto;
  display: block;
  margin-bottom: 20px;
}

.footer_contact p {
  line-height: 1.8;
  font-size: 12px;
}

.footer_contact .policy_links a {
  color: #ccc;
  text-decoration: none;
  margin-right: 10px;
}

.footer_copyright {
  text-align: center;
  padding-top: 10px;
  margin-top: 20px;
  border-top: 1px solid #555; 
  color: #999;
  font-size: 12px;
}

.n {
  font-weight: bold;
  font-size: 13.5px;
}

#openModalBtn {font-size: 12px;}

#openModalBtn > a {
  width: 100px;
  font-weight: bold;
  padding-top: 5px;
  margin: 0 auto;
}

body.modal-open {overflow: hidden; }

.modal {
  display: none;
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  overflow-y: auto;
}

.modal h2 {padding: 10px;}

.modal-content {
  background-color: #fff;
  margin: 50px auto;
  padding: 20px;
  border-radius: 8px;
  width: 90%;
  max-width: 800px;
  user-select: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  font-family: 'Pretendard', sans-serif;
  position: relative;
}

.modal-body {
  margin-top: 10px;
  overflow: visible;
}

.modal-body p {
  font-size: 13px;
  padding: 10px;
}

.close {
  color: #aaa;
  font-size: 24px;
  font-weight: bold;
  cursor: pointer;
  position: absolute;
  right: 20px;
  top: 22px;
  z-index: 10;
}

.close:hover {color: #000;}

/* index.html CSS */
#slide {
  width: 100%;
  height: 600px;
  overflow: hidden;
  position: relative; 
}

#slide a {
  position: absolute;  
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;      
}

#slide a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#slide button {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,0.8);
  color: #333;
  font-size: 22px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s, transform 0.2s;
  z-index: 10;
}

#slide button:hover {
  background: rgba(255,255,255,1);
  transform: translateY(-50%) scale(1.1);
}

#slide .prev { left: 20px; }
#slide .next { right: 20px; }

/* 인디케이터 영역 */
#slide .indicators {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
  z-index: 15;
}

#slide .indicators span {
  display: block;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255,255,255,0.6);
  cursor: pointer;
  transition: background 0.3s;
}

#slide .indicators span.active {background: #f0f0f0;}

/* partnership.html CSS */
.partner-form-container {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.inquiry-header {
  display: flex;
  align-items: center; 
  justify-content: space-between; 
  padding: 0 0 20px 0;
  border-bottom: 1px solid #ccc;
  max-width: 1200px;
  margin: 0 auto;
  height: 105px;
}

.inquiry-header h2 {
  margin: 0;
  font-size: 24px;
  font-weight: bold;
}

.inquiry-header p {
  margin: 0;
  color: #666;
  font-size: 14px;
  margin-top: 80px;  
}

.inquiry-header span {float: right;}

.partner-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

fieldset {
  border: none;
  padding: 0;
  margin-bottom: 100px;
}

.form-divider {
  border-top: 1px solid #ccc;
  width: 100%;
}

.form-label-box {
  display: flex;
  align-items: center;   
  height: 60px;        
  padding-left: 10px;   
}

.form-label-box p {font-weight: bold;}

.error-message {
  color: red;
  font-size: 12px;
  margin-top: 4px;
  display: block;
}

.form-row {
  display: flex;
  align-items: center; 
  padding: 20px 0;
  border-bottom: 1px dotted #ccc;
  max-width: 1200px;
  margin: 0 auto;
  gap: 10px;
}

.form-row label {
  width: 150px; 
  text-align: center; 
  padding-right: 10px; 
  font-size: 16px;
  font-weight: bold;
}

.form-row input[type="text"] {
  padding: 8px;
  border: 1px solid #ccc;
  outline: none;
  box-shadow: none;
  font-size: 14px;
}

.form-row input[type="text"] { width: 100%; max-width: 1050px; }

.textarea-wrapper {
  width: 1050px;
  max-height: 200px;
  overflow-y: auto;
  border: 1px dotted #ccc; 
  box-sizing: border-box;
  padding: 0;
}

textarea {
  width: 100%;
  height: 180px;
  resize: none;
  border: none;
  padding: 10px;
  line-height: 1.6;
  font-size: 14px;
  background: transparent;
  box-sizing: border-box;
}

.submit-wrap {
  text-align: center;
  margin-top: 30px;
}

button {
  height: 40px; 
  line-height: 40px; 
  padding: 0 20px; 
  font-size: 14px;
  border: 1px solid #999;
  background-color: #fff;
  color: #000;
  cursor: pointer;
  display: inline-block;
  text-align: center;
}

button:hover {background-color: rgba(0, 0, 0, 0.2);}

select {
  height: 40px; 
  padding: 8px;
  font-size: 14px;
}

#cookieModal {
  display: none;               
  position: fixed;
  inset: 0;                     
  background: rgba(0, 0, 0, 0.6);
  z-index: 9999;
  align-items: center;          
  justify-content: center;
}

#cookieModal .cookie-content {
  box-sizing: border-box;
  background: #fff;
  width: 100%;
  max-width: 500px;
  max-height: 250px;
  padding: 20px;
  border-radius: 12px;
  text-align: center;
}

#cookieModal h2,
#cookieModal p {
  color: #000;
  text-align: center;
  margin: 0;                    
}

.cookie-content > p {
  font-size: 14px;
  padding: 5px;
  margin-top: 10px;
  margin-bottom: 20px;
}

#cookieModal .notice {
  font-weight: 700;
  margin-bottom: 20px;           
}


#cookieModal .button-group {
  display: flex;
  justify-content: center;
  gap: 50px;                      
  margin-top: 15px;
}

.custom-alert-overlay {
  position: fixed;
  inset: 8;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-items: center;
}

.custom-alert-box {
  background: #fff;
  width: min(420px, 90vw);
  padding: 20px 22px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.custom-alert-text {
  margin: 0 0 16px 0;
  font-size: 14px;
  line-height: 1.5;
  color: #111;
}

.custom-alert-btn {
  padding: 6px 18px;
  border: 1px solid #bbb;
  border-radius: 8px;
  background: #fff;
  cursor: pointer;
  transition: background-color 0.2 ease;
}

.custom-alert-btn:hover {background-color: #f0f0f0;}

/* 01_partnership.html, 03_partnership.html CSS */
.complete-container {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
}

.complete-box {
  background-color: white;
  border: 1px solid #ddd;
  padding: 60px 40px;
  border-radius: 12px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(0,0,0,0.05);
  max-width: 500px;
  width: 90%;
}

.icon {
  font-size: 48px;
  margin-bottom: 20px;
}

.complete-box h1 {
  font-size: 22px;
  margin-bottom: 12px;
}

.complete-box p {
  font-size: 15px;
  color: #666;
  line-height: 1.6;
  margin-bottom: 30px;
}

.button-group {
  display: flex;
  justify-content: center;
  gap: 12px;
}

.btn {
  display: inline-block;
  padding: 12px 24px;
  font-size: 14px;
  background-color: #222;
  color: white;
  text-decoration: none;
  border-radius: 6px;
  transition: background-color 0.2s ease;
}

.btn:hover {background-color: #444;}

.btn.gray {
  background-color: #ddd;
  color: #333;
}

.btn.gray:hover {background-color: #bbb;}

/* download.html CSS */
#board {
  width: 100%;
  border-collapse: collapse; 
  text-align: center;
  border-top: 1px solid #bbb;
  table-layout: fixed;
}

#tr {background-color: rgba(0, 0, 0, 0.1);}

#board th, #board td {
  border-bottom: 1px solid #bbb;
  padding: 20px 8px;
  font-size: 14px;
  word-break: break-word;
}

.th {width: 10%;}
.th1 {width: 65%;}
.th2 {width: 15%;}
.th3 {width: 15%;}

/* about.html CSS */
.n_box {height: 1200px;}

.card { 
  max-width: 320px;
  height: 450px;
}

.card > h3 {
  font-size: 14.5px;
  padding-top: 25px;
}

.card > p {
  font-size: 13px;
  padding-top: 15px;
}

.card:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 16px rgba(0,0,0,0.15);
}

/* 03_about.html CSS */
.map {
  max-width: 1200px;
  width: 100%;
  display: flex;
  margin: 50px auto;
  gap: 50px;
}

/* 우측 텍스트 정보 전체 박스 */
.map1 {
  width: 550px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 10px;
}

/* 각 행 */
.map-1 {
  display: flex;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  font-family: 'Pretendard', sans-serif;
}

/* 왼쪽 라벨 박스 (회색 박스) */
.map-label {
  width: 130px;
  background-color: #f1f1f1;
  text-align: center;
  font-weight: bold;
  border: 1px solid #ddd;
  box-sizing: border-box;
}

/* 오른쪽 내용 박스 */
.map-content {
  flex: 1;
  padding-left: 10px;
  border: 1px solid #ddd;
  border-left: none;
  box-sizing: border-box;
}

/* 01, 02, 03_products.html 공용 CSS */
.nav {
  max-width: 1200px;
  width: 100%;
  display: flex;
  align-items: center;
  font-family: sans-serif;
  gap: 10px;
  padding: 20px;   
  margin: 0 auto;
  margin-top: 20px;
}

.nav select {
  padding: 5px 10px;
  font-size: 14px;
}

 .nav .separator {
  font-size: 16px;
  color: #888;
 }

.nav1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  margin-top: 20px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  padding-top: 5px;
  padding-bottom: 5px;
}

.nav1 li {
  list-style: none;
  padding-left: 17px;
  padding-top: 8px;
}

.nav1 select {
  padding: 5px 10px;
  font-size: 14px;
  margin-left: 1012.6px;
  opacity: 0.7;
}

 .contents01 {
  max-width: 1200px;
  width: 100%;
  height: 600px;
  margin: 0 auto;
 }

.cbox01 {
  display: flex;
  justify-content: center; 
  gap: 200px;
  padding-top: 100px;
}

.cbox01 > a {
  display: inline-block;
  position: relative;
  width: 300px;
  height: auto;
  text-align: center;
  padding: 0;
  margin: 0;
}

.cbox01 img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: block;
}

.cbox01 p {
  margin-top: 10px;
  font-size: 16px;
  color: #000;
  position: static;
}

.contents02 {
  max-width: 1200px;
  width: 100%;
  height: 600px;
  margin: 0 auto;
 }

.cbox02 {
  display: flex;
  justify-content: center; 
  gap: 200px;
  padding-top: 50px;
}

.cbox02 > a {
  display: inline-block;
  position: relative;
  width: 300px;
  height: auto;
  text-align: center;
  padding: 0;
  margin: 0;
}

.cbox02 img {
  width: 300px;
  height: 400px;
  object-fit: cover;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  display: block;
}

.cbox02 p {
  margin-top: 10px;
  font-size: 16px;
  color: #000;
  position: static;
}

/* 01,02,03_products.html, download.html, memo.html, notice.html, talk.html 공용 CSS */
.pagination-container {
  overflow-x: auto;
  white-space: nowrap;
  text-align: center;
  margin: 20px 0;
  scroll-snap-type: x mandatory;
  margin-bottom: 50px;
  margin-top: 50px;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  overflow: visible;
  height: auto;  
  padding: 10px 0; 
}

.pagination a {
  margin: 0 8px;
  padding: 6px 12px;
  text-decoration: none;
  border: 1px solid #ccc;
  color: #333;
  scroll-snap-align: center;
  border-radius: 50px;
}

.pagination a.active {
  font-weight: bold;
  background-color: #eee;
}

.pagination button {
  background: #f0f0f0;
  border: 1px solid #ccc;
  color: #333;
  padding: 4px 8px;
  margin: 0 2px;
  font-size: 14px;
  border-radius: 50%;      
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background-color .3s;
}

.pagination button.active {
  background: #999;
  color: white;
  font-weight: bold;
}

/* jaepum1.html, jaepum2.html, jaepum3.html 공용 CSS */
#j-contents {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  margin-bottom: 100px;
  padding: 40px 60px;
  display: flex;
  gap: 60px;
}

#jbox1 {
  position: relative;
  width: 510px;
  height: 510px;
  margin: 0 auto;
  border: 1px solid #999;
}

.slider-container {
  position: relative;
  overflow: hidden;
  height: 510px;
  display: flex;
  align-items: center;
}

.slider-wrapper {
  position: relative;
  width: 510px;
  height: 510px;
  overflow: hidden;
}

.slider-wrapper img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: opacity 0.5s ease;
}

.slider-wrapper img.active {opacity: 1;}

.prev-btn,
.next-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.4);
  border: none;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s;
}

.prev-btn { left: 10px; }
.next-btn { right: 10px; }

.prev-btn:hover,
.next-btn:hover {background: rgba(0, 0, 0, 0.8);}

/* 방향키 스타일 */
.prev-btn::before,
.next-btn::before {
  content: '';
  width: 0;
  height: 0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}

/* 이전(왼쪽) 화살표 */
.prev-btn::before {border-right: 8px solid white;}

/* 다음(오른쪽) 화살표 */
.next-btn::before {border-left: 8px solid white;}

.indicator-container {
  position: absolute;
  bottom: 10px;     
  left: 50%;
  transform: translateX(-50%); 
  display: flex;
  gap: 8px;
  z-index: 10;       
}

.indicator {
  width: 50px;
  height: 50px;
  overflow: hidden;
  cursor: pointer;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 5px;
}

.indicator img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.3; 
  transition: opacity 0.3s;
}

.indicator.active img {opacity: 1; }

#jbox2 {
  width: 510px;
  border: 1px solid #999;
  padding: 20px;              
  display: flex;              
  flex-direction: column;      
  min-height: 510px;           
  box-sizing: border-box;
  position: relative;
}

#jbox2 h3 {
  height: 100px;
  padding-top: 55px;
  padding-left: 25px;
}

/* 제품 설명 박스 */
.product-description {
  padding: 24px;
  border-radius: 4px;
}

.title {
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 20px;
}

/* 요약 텍스트 */
.product-description .summary {  
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 8px;
  line-height: 1.7;
  max-height: 8em;
  overflow: hidden;
  font-size: 14px;
}

.product-description .summary.expanded {max-height: none;}

/* 네뷸라이저 제품 css */
.summary-n {
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 8px;
  line-height: 1.7;
  max-height: 9.6em;
  overflow: hidden;
  font-size: 14px;
}

/* 옥시미터 제품 css */
.summary-p {
  border: 1px solid #ccc;
  padding: 8px 12px;
  border-radius: 4px;
  background-color: #fff;
  margin-bottom: 8px;
  line-height: 1.7;
  max-height: 17em;
  overflow: hidden;
  font-size: 14px;
}

.more-text {
  display: none;
  background-color: #fff;
  padding: 16px;
  border-radius: 4px;
  margin: 12px 0;
  line-height: 2;
  font-size: 12px;
  box-shadow: 0 0 5px rgba(0,0,0,0.1);
}

.toggle-btn {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: block;
  margin: 0 auto;
}

.toggle-btn .toggle-icon {
  width: 24px;
  height: 24px;
}

.toggle-btn {transform: rotate(0deg);}
.toggle-btn.rotated {transform: rotate(180deg);}
.toggle-btn:hover {background: transparent;}

.purchase-btn {
  align-self: center;  
  margin-top: auto;     
  width: 200px;        
  text-align: center;
  padding: 10px 0;
  background-color: #333;
  color: #fff;
  border-radius: 20px;
  text-decoration: none;
}

.page-box {
  width: 100%;
  max-width: 860px;
  height: auto;
  margin: 0 auto;
}

.page-box img {
  width: 100%; 
  height: auto;
  display: block;
}

.j-icon {
  width: 80px;
  height: auto;
  position: fixed;
  right: 20px;
  top: 350px;
}

.j-icon a {
  width: 100%;
  height: 80px;
  text-align: center;
}

.j-icon img {width: 40px;}

.side-icon-box {
  position: fixed;
  top: 350px;
  right: 40px;
  width: 150px;
  height: auto;
  border: 1px solid #e5e5e5;
  border-radius: 15px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  z-index: 1000;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}

.side-icon-box.show {
  opacity: 1;
  pointer-events: auto;
}

.side-icon-box a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 22px;
  text-decoration: none;
  color: #333;
  font-size: 14px;
  border-bottom: 1px solid #eee;
  height: 70px;
}

.side-icon-box a:last-child {border-bottom: none;}

.side-icon-box > a > span {font-size: 12px;}

.side-icon-box i {
  font-size: 22px;
  color: #444;
}

.side-icon-box a:hover {background: #f7f7f7;}

/* about.html, jaepum1.html, jaepum2.html, jaepum3.html 공용 CSS */
.n_contents1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.qna-header1 > h2 {
  padding: 20px 0 40px 0;
  border-bottom: 1px solid #000;
}

/* memo.html, notice.html, talk.html 공용 CSS */
.n_contents {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.n_contents h2 {padding: 20px 0 40px 0;}

.board {
  width: 100%;
  border-collapse: collapse; 
  text-align: center;
  border-top: 1px solid #bbb;
}

.board th, .board td {
  border-bottom: 1px solid #bbb;
  padding: 20px 8px;
  font-size: 14px;
}

.content-wrapper {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

.board thead th {
  background-color: #f0f0f0;
  color: #333;
  font-weight: bold;
  padding: 12px;
  border-bottom: 1px solid #ccc;
  height: 70px;
}

/* 고정글용 아이콘 스타일 */
td.pin-icon {
  font-size: 14px;         
  text-align: center;
  color: #e74c3c;         
  line-height: 1;
  vertical-align: middle;
  padding: 6px 0;
}

/* talk.html CSS */
.qna-header {
  max-width: 1200px;
  width: 100%;
  position: relative;
}

.m_span a {
  display: inline-block;
  background-color: #007bff;
  color: white;
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  border-radius: 30px;
  box-shadow: 0 4px 8px rgba(0, 123, 255, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
  position: absolute;
  top: 25px;
  right: 5px;
  text-decoration: none;
}

.m_span a:hover {
  background-color: #0056b3;
  transform: scale(1.05);
}

#wrap-community {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

#wrap-community footer {margin-top: auto;}

/* talk_1.html CSS */
.write-container1 {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  background: #fff;
  padding: 40px;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  box-sizing: border-box;
  margin-bottom: 150px;
}

.heading1 {
  margin-bottom: 30px;
  font-size: 24px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}

.form-group1 {margin-bottom: 25px;}

#name1, #email1 {
  width: 100%;
  height: 40px;
  padding: 5px 10px;
  border: 1px solid #ccc;
  font-size: 16px;
  box-sizing: border-box;
  margin-top: 5px;
}

#title1,
#content1 {
  width: 100%;
  padding: 10px;
  font-size: 16px;
  box-sizing: border-box;
  border: 1px solid #ccc;
  margin-top: 5px;
}

#content1 {
  height: 200px;
  resize: vertical;
}

.form-group2 {
  display: flex;
  justify-content: center;
  margin-top: 80px;
}

.submit-btn1 {
  width: 120px;
  height: 45px;
  background-color: #333;
  color: #fff;
  border: none;
  border-radius: 6px;
  font-size: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}

.submit-btn1:hover {background-color: #0056b3;}

.file-item1{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:8px 12px;
  border:1px solid #e5e7eb;
  border-radius:8px;
  background:#fff;
  margin-top:8px;
}

.file-name1{
  flex:1;
  overflow:hidden;
  text-overflow:ellipsis;
  white-space:nowrap;
}

.delete-btn1{
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: auto;
  width: 32px;
  height: 32px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #f9fafb;
  cursor: pointer;
}

.delete-btn1:hover{ background:#eef2f7; }

.small {
  color: #666;
  font-size: 12px;
}

.small-1 {
  color: #666;
  font-size: 12px;
}

.content1-small {
  color: #666;
  font-size: 12px;
  display: flex;
  padding-top: 2px;
}

#small-span {
  padding: 0 2px 5px 2px;
  font-size: 13px;
  font-weight: bold;
}

/* download.html, veiw.html, notice_view.html, memo_view.html 공용 CSS */
#n_contents {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

#n_contents h2 {padding: 20px 0 40px 0;}

#qna-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* download1.html, download2.html, download3.html, memo_view.html, notice_view.html, view.html 공용 CSS */
.dboxbtn {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding: 10px 0;
  margin: 60px 0 ;
}

.dboxbtn > a {
  width: 50px;
  height: 30px;
  background-color: #fff;
  padding: 5px 10px;
  text-align: center;
  color: #333;
  font-weight: bold;
  text-decoration: none;
  border: 1px solid #999;
  font-size: 12px;
}

.dboxbtn>a:hover {
  border: 1px solid #000;
  color: #000;
}

#download-view {
  width: 100%;
  max-width: 1200px;
  margin: 30px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

#download-view h2 {margin-bottom: 10px;}

.download-name {
  font-size: 14px;
  color: #555;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
  margin-bottom: 10px;
}

.download-file {
  margin-bottom: 10px;
  display: flex;
}

.download-text {
  line-height: 1.8;
  padding: 10px 0;
}

.mobile-download-text {display: none;}

/* view.html, notice_view.html, memo_view.html 공용 CSS */
.dbox {
  width: 100%;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.dbox1 {
  width: 100%;
  height: 50px;
  border-top: 1px solid #000;
  background-color: rgba(0, 0, 0, 0.1);
}

.dbox1>p {
  padding: 12px 10px;
  font-weight: bold;
  font-size: 16px;
}

.dbox2 {
  width: 100%;
  height: 40px;
  border-top: 1px solid rgba(0, 0, 0, 0.17);
  border-bottom: 1px solid rgba(0, 0, 0, 0.17);
}

.dbox2>p {
  padding: 9px 10px;
  font-size: 14px;
}

.dbox3 {
  padding: 5px 0;
  background-color: #fff;
  border-radius: 4px;
  font-size: 0.9rem;
  color: #333;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.dbox3 .file-name {font-weight: bold;}

.dbox3 .download-btn {
  margin-left: auto;
  padding: 0.2rem 0.5rem;
  text-decoration: none;
  font-size: 1.2rem;
  color: #333;
  cursor: pointer;
  transition: color 0.3s;
}

.dbox3 .download-btn:hover {color: #007BFF;}

.date-wrap {
  font-size: 14px;
  padding: 9px 10px;
}

#contentArea {
  min-height: 500px;  
  padding: 20px;
  border: 1px solid #ddd;
  white-space: pre-wrap;
  box-shadow: 0 8px 8px rgba(0, 0, 0, 0.1);
}

/* view.html CSS */
#emailArea {
  max-width: 1200px;
  width: 100%;
  height: 40px;
  font-size: 14px;
  border-bottom: 1px solid #ccc;
  padding: 9px 10px;
}

/* download1,2,3.html 공용 css */
.d-btn {
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
}

span.s {
  font-weight: bold;
  color: #666;
}

.mobile_p {
  display: none;
  padding: 10px;
}

.card-1 { display: none; }
#mobile-map {display: none;}
.mobile-map {display: none;}
.mobile-nav {display: none;}
#mobile-jbox {display: none;}

.qna_h2 {
  font-size: 20px;
  padding-left: 15px;
  margin: 150px 0 30px 0;
  position: relative;
  line-height: 1.2;
}

.qna_h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1em;
  border-radius: 2px;
  background: #0a5c9f;
}

.qna-h2 {
  display: none;
  position: relative;
  line-height: 1.2;
}

.qna-h2::before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 1em;
  border-radius: 2px;
  background: #0a5c9f;
}

#download-view-mobile {display: none;}
.d-btn-mobile {display: none;}

#mobile-slide {
  display: none;
  position: relative;
  overflow: hidden;
}

#mobile-slide a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: none;
}

#mobile-slide a:first-child {display: block;}

#mobile-slide img {
  width: 100%;
  display: block;
  height: auto;
}

.menu-icon {display: none;}
.menu-mobile {display: none;}
.mobile-small {display: none;}

/* index.html 미디어쿼리 */
@media (max-width: 480px) {

  #wrap {display: none;}
  .menu-pc {display: none;}
  #slide {display: none;}
  #slide button {display: none;}

  header {
    display: flex;
    flex-direction: row; 
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1rem;  
  }

  .logo-wrapper {
    width: 100%;   
    max-width: 12.5rem;
    margin: 0 auto;
  }

  .logo-wrapper img {
    width: 100%;
    height: auto;
  }

  #mobile-slide {
    display: block;
    width: 100%;
    max-width: 90%;
    height: 120vw;
    overflow: hidden;
    margin: 0 auto;
  }

  #mobile-slide a {
    width: 100%;
    height: 100%;
  }

  #mobile-slide a img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  #contents {
    flex-direction: column; 
    align-items: stretch;
    min-height: auto; 
    height: auto;
    border-top: none;
    padding: 1rem 0;   
  }

  .tab-container {
    width: 90% !important;
    padding: 1rem !important;
    margin: 0 auto;
  }

  .tab-button, .tab-button.active {font-size: 1rem;}
  #more-link {font-size: 0.75rem;}

  .notice-card,
  .memo-card {
    width: 100%;
    max-width: 27.5rem;
    margin: 0.625rem auto;     
    padding: 0;
    background: none;
    border: none;
    box-shadow: none;
  }

  .notice-card-header,
  .memo-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.25rem;    
    border-bottom: none;
    padding-bottom: 2px;
  }

  .notice-card-header > h3 > a {font-size: 1rem;}
  .memo-card-header > h3 > a {font-size: 1rem;}
  .notice-list li, .memo-list li {border: none;}

  .notice-list li a,
  .memo-list li a {
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem; 
    padding: 0.5rem 0;   
    border-bottom: 1px solid #eee;
  }

  .notice-list li:last-child a,
  .memo-list li:last-child a {border-bottom: none;}
  .notice-date, .memo-date {font-size: 0.75rem;}
  footer {width: 100%;}

  .footer_inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.5rem;
    margin-bottom: 1.25rem;
    padding: 0 1rem;
  }

  .footer_nav {display: none;}

  .flogo_info {
    order: -1;
    width: 100%;
    text-align: center;
  }

  .flogo {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    width: 100%;
  }

  .flogo .logo-link img {
    max-width: 10rem;
    height: auto;
    margin: 0;
  }

  .flogo img {max-width: 5rem;}

  .footer_contact {
    width: 100%;
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid #777;
  }

  .footer_contact p {
    font-size: 0.75rem;
    line-height: 1.6;
  }

  .footer_contact p .n {font-size: 0.75rem}
  .footer_contact .policy_links {margin-top: 0.5rem;}
  .footer_contact .policy_links a {font-size: 0.75rem;}

  .footer_copyright {
    font-size: 0.625rem;
    padding-bottom: 1rem;
  }

  #openModalBtn {font-size: 0.75rem;}

  .menu-icon{
    display: block;
    width: 3.125rem;
    height: 3.125rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: 3.75rem;
    left: 0.625rem;
  }

  .menu-icon i {font-size: 1.5rem}

  .menu-mobile {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    background-color: #dce9f1;
    color: #0f3d56;
    z-index: 999;
  }

  #menu-close-btn {
    position: absolute;
    right: 0.625rem;
    top: 0.625rem;
    border: none;
    background: none;
    font-size: 2.25rem;
    color: #666;
  }

  .m-menu {
    width: 100%;
    text-align: center;
    margin-top: 12.5rem;
  }

  /* 점선 제거 + 간격 추가 */
  .m-menu li {
    padding: 0.375rem 0;          
    border: none;            
  }

  /* 메뉴 글자 */
  .m-menu li a {
    text-align: center;
    display: block;
    font-size: 1rem;
    padding: 0.875rem 0;
  }

  /* 서브메뉴 */
  .m-submenu {
    max-height: 0;
    overflow: hidden;
    transition: max-height .3s ease;
    background: #e9f2f7;
  }

  /* 열릴 때 */
  .m-submenu.open {max-height: 20rem;}

  /* 화살표 있는 메뉴 (제품소개 / COMMUNITY) */
  .m-menu li.has-sub > a {
    position: relative;
    text-align: center;
    display: inline-block;
    width: 100%;
  }

  /* 화살표 아이콘 */
  .m-menu .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin-left: 0.375rem;
    font-size: 1rem;
    color: #555;
  }

  /* 열릴 때 화살표 회전 */
  .has-sub.open .arrow {transform: translateY(-50%) rotate(180deg);}

  .modal-content {
    width: 90%;
    max-width: 27.5rem;
    margin: 400px auto;
  }

  .modal-content h2 {font-size: 0.875rem;}
  .modal-body p {font-size: 0.75rem;}
}

/* abuout.html 미디어쿼리 */
@media (max-width: 480px) {

  .pc_p {display: none;}

  .qna-header1 {
    width: 100%;
    padding: 15px;
  }
  
  .mobile_p {
    display: block;
    margin-top: 1.5rem;
    font-size: 0.75rem;
    padding: 0 1rem;
    line-height: 1.5;
  }

  .n_box {
    width: 100%;
    height: auto; 
    margin: 0 auto;
    padding: 0 1rem;
    box-sizing: border-box;
  }
  
  .about-section {font-size: 0.85rem;}

  .about-section h2 {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 1.1rem;
    font-weight: 700;
    margin: 2.5rem 0 0 0;
    line-height: 1.2;
    padding: 0 1rem;
  }

  .card {display: none;}

  .card-1 {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background-color: #f9f9f9;
    border-radius: 10px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
    text-align: center;
    width: calc(50% - 0.6rem);
    margin: 0;
    padding: 1rem;
    box-sizing: border-box;
    min-height: 200px;
  }

  .n_box section > div {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2rem;
    margin-top: 1.5rem;
  }

  .n_box section > div::after {
    display: none;
  }

  .n_box .card-1 img {
    width: 100%;
    height: auto;  
    max-height: 120px;    
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 0.5rem;
    align-self: center;
  }

  .n_box .card-1 h3 {font-size: 0.6rem;}

  .n_box .card-1 p {
    font-size: 0.6rem;
    line-height: 1.4;
    margin-top: 0.5rem;
  }

  .n_box section > div .card-1:nth-child(3) {
    grid-column:  unset;
    width: 100%;
    max-width: 190px;
    min-height: 200px;
    margin-left: auto;
    margin-right: auto;
  }

  .b_p {
    margin-top: 1.5rem;
    font-size: 10.5px;
    padding: 1rem;
    line-height: 1.6;
    margin-left: 0.5rem;
    box-sizing: border-box;
    margin: 1.5rem auto 0;
    width: calc(100% - 2rem);
    max-width: 440px;
  }

  #mobile-map {display: block;}

  .mobile-map {
    display: block !important;  
    width: 100%;
  }

  .mobile-map-container {
    width: 100%;
    margin-bottom: 1rem;      
    position: relative;
    padding: 0 1rem;
    box-sizing: border-box;
  }

  .custom-map-overlay {
    position: absolute;
    top: 0.5rem;
    left: 1.5rem;
    background: #fff;
    padding: 0.75rem 1rem;
    border-radius: 6px;
    font-size: 0.75rem;
    line-height: 1.6;
    z-index: 10;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.15);
    width: 80%;
    max-width: 245px;
  }

  .mobile-map-info {
    display: block;   
    width: 100%;    
    margin-top: 1rem;  
    padding: 0 1rem; 
    box-sizing: border-box;
  }

  .mobile-map-row {
    display: flex;             
    margin-bottom: 0.5rem;
    font-size: 0.66rem;
  }

  .mobile-map-row .label {
    width: 4rem;
    font-weight: bold;
    background: #f1f1f1;
    text-align: center;
    padding: 0.4rem;
    border: 1px solid #ddd;
    box-sizing: border-box;
  }

  .mobile-map-row .content {
    flex: 1;
    border: 1px solid #ddd;
    border-left: none;
    padding: 0.4rem;
    word-break: break-all;
  }

  .n_box .qna-h2 {
    margin: 3rem 0 0;
    padding: 0 0 0 15px;
  }
}

/* product.html 미디어쿼리 */
@media (max-width: 480px) {

  .nav {display: none;}
  .nav1 {display: none;}

  .mobile-nav {
    width: 90%;
    margin: 20px auto;
    padding: 25px 0;
    display: block;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
  }

  .mobile-nav h2 {font-size: 18px;}

  .contents01 {
    width: 100%;
    height: 350px;
    display: flex;
    justify-content: center; 
  }

  .cbox01 {
    width: 100%;
    max-width: 430px;     
    height: 100%;  
    min-height: 300px;
    display: flex;
    justify-content: space-between; 
    gap: 10px;            
    box-sizing: border-box;
    padding: 0 15px;
    margin-top: 50px;
  }

  .cbox01 a {
    height: 280px;
    flex: 1;              
    text-align: center;
  }

  .cbox01 img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: contain;     
  }

  .cbox01 p {font-size: 12px;}

  .contents02 {
    width: 100%;
    height: 300px;
    display: flex;
    justify-content: center;
  }

  .cbox02 {
    width: 100%;
    max-width: 450px;
    height: 100%;
    display: flex;
    justify-content: space-between;
    gap: 10px;
    box-sizing: border-box;
    padding: 0 15px;
    margin-top: 30px;
  }

  .cbox02 a {
    height: 280px;
    flex: 1;
    text-align: center;
  }

  .cbox02 img {
    width: 100%;
    height: 100%;
    max-height: 250px;
    object-fit: contain;
  }

  .cbox02 p {font-size: 12px;}
}

/* jaepum.html 미디어 쿼리 */
@media (max-width: 480px) {
  
  .n_contents1 {
    width: 100%;
    height: auto;
  }

  .qna-header1 > h2 {
    font-size: 18px;
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    display: block;
    margin-top: 20px;
    margin-bottom: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.2);
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    padding-top: 25px;
    padding-bottom: 25px;
  }

  #j-contents {
    flex-direction: column; 
    padding: 10px;
    gap: 20px;
  }

  #jbox1, 
  #jbox2 {
    width: 100%;             
    max-width: 100%;
    aspect-ratio: 1 / 1;
    height: auto;            
    position: relative;     
    border: 1px solid #ddd;    
  }
  
  .slider-container {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
  }

  .slider-wrapper {
    width: 100%;
    height: 100%;
    position: relative;
  }

  .slider-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;    
    position: absolute;       
    top: 0;
    left: 0;
    opacity: 0;
    transition: opacity 0.5s ease;
  }

  .slider-wrapper img.active {opacity: 1;}

  /* indicator 크기 축소 */
  .indicator {
    width: 30px;
    height: 30px;
  }

  #jbox2 {display: none;}

  #mobile-jbox {
    width: 100%;     
    border: 1px solid #ddd;
    padding: 15px;
    min-height: auto;
    box-sizing: border-box;
    display: block;
  }

  #mobile-jbox h3 {
    font-size: 16px;
    text-align: center;
    padding-top: 20px;
    margin-bottom: 15px;
  }

  .mobile-description {padding: 10px;}

  .mobile-title {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 5px 15px;
  }

  .mobile-summary {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    padding: 15px;
  }

  .mobile-text {
    font-size: 10.5px;
    line-height: 1.6;
    border: 1px solid #ddd;
    padding: 15px;
  }

  .mobile-feature-box h4 {
    font-size: 12px;
    padding: 2px 0;
  }

  .mobile-feature-box:last-child {
    font-size: 10px;
    padding: 2px 0;
  }  

  .purchase-btn {
    width: 100%;
    max-width: 200px;
    margin: 20px auto 0;
    font-size: 14px;
    padding: 12px 0;
    border-radius: 8px;
  }

  .page-box {width: 95%;}

  .side-icon-box {
    top: 400px;           
    right: 10px;     
    width: 50px;      
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .side-icon-box a {
    padding: 0 14px;
    font-size: 12px;      
    height: 50px;         
    gap: 8px;
  }

  .side-icon-box i {font-size: 18px;}
  .side-icon-box > a > span {display: none;}
}

/* partnership.html 미디어쿼리 */
@media (max-width:480px) {

  .partner-form-container {
    width: 90%;
    box-sizing: border-box;
  }

  .inquiry-header {
    width: 100%;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    border-bottom: none;
    border-top: 1px solid #ddd;
    padding: 0;
    margin-top: 20px;
  }

  .inquiry-header h2 {
    font-size: 18px;
    margin: 0;
  }

  .inquiry-header p {
    font-size: 10px;
    margin: 0;
    line-height: 1;
    text-align: right;
    max-width: 75%;
  }

  .inquiry-header span {
    display: block;
    margin-top: 5px;
  }

  .form-label-box {
    width: 100%;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    padding: 0;
  }

  .form-divider {border: none;}

  .form-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 5px;
    padding: 12px 0;
    max-width: 440px;
  }

  .form-row label {
    width: 100%;
    text-align: left;
    font-size: 12px;
  }

  .form-row input [type="text"] {
    width: 100% !important;
    max-width: 100% !important;
    font-size: 14px;
    padding: 10px;
    box-sizing: border-box;
  }

  .form-label-box {font-size: 14px;}
  .textarea-wrapper {
    width: 100% !important;
    max-width: 100% !important;
    border: 1px solid #ccc;
  }

  textarea {
    height: 150px;
    font-size: 13px;
    line-height: 1.5;
  }

  .submit-wrap button {font-size: 12px;}
  #cookieModal{width: 100%;}
  .cookie-content {width: 90% !important;}
  .cookie-content h2 {font-size: 16px;}
  .cookie-content p {font-size: 10px;}


  #cookieAgree, #cookieDecline {
    font-size: 10px;
    width: 100%;
    max-width: 60px;
    padding: 0 5px 5px;
    border-radius: 4px;
  }

  .custom-alert-box {width: 85%;}
  .custom-alert-btn {font-size: 12px !important;}
}

/* Q&A 미디어 쿼리 */
@media (max-width:480px) {
  .n_contents {
    width: 100%;
    padding: 0 15px;
  }

  .qna-header {
    width: 100%;
    margin: 20px auto;
    padding: 25px 0 10px;
    border-top: 1px solid #ccc;
  }

  .qna-header > h2 {
    width: 100%;  
    height: auto;
    padding: 0;
    font-size: 18px;
  }

  .m_span > a {font-size: 11px;}

  .board {
    width: 100%;
    max-width: 440px;
    margin: 0 auto;
    font-size: 12px;
  }

  .board colgroup col:nth-child(1) {width: 15% !important;}
  .board colgroup col:nth-child(2) {width: 45% !important;}
  .board colgroup col:nth-child(3),
  .board colgroup col:nth-child(4) {width: 20% !important;}

  .board th,
  .board td {
    padding: 15px 8px;
    font-size: 10px;
  }

  .pagination a,
  .pagination span,
  .pagination button {
    font-size: 11px !important;
    width: 25px;
    height: 25px;
  }
}

/* Q&A view  미디어 쿼리 */
@media (max-width:480px) {
  #n_contents  {
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }
  
  #qna-header {
    width: 100%;
    max-width: 440px;
    margin: 20px auto;
    padding: 25px 0 10px;
    border-top: 1px solid #ccc;
  }

  #qna-header h2 {
    width: 100%;
    height: auto;
    padding: 0;
    font-size: 18px;
  }

  #titleArea {
    font-size: 14px;
    padding: 13px 10px;
  }

  #authorArea {
    font-size: 12px;
    padding: 9px 8px;
  }

  .date-wrap {
    font-size: 12px;
    padding: 9px 8px;
  }

  .file-item {
    font-size: 12px;
  }

  #contentArea {
    min-height: 250px;
    font-size: 12px;
  }

  .dboxbtn {margin: 30px 0;}
  .dboxbtn > a {
    width: 40px;
    height: 30px;
    font-size: 9.5px;
    padding: 7px 10px;
    opacity: 0.7;
  }
}

/* 다운로드 페이지 미디어쿼리 */
@media (max-width: 480px) {
  body.download-page {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
  }

  body.download-page .main-wrap {flex: 1;}
  #download-view {display: none;}
  .d-btn{display: none;}

  #download-view-mobile {
    display: block;
    width: 100%;
    margin: 0 auto;
    padding: 0 15px;
  }

  #download-header {
    margin: 20px 0;
    padding: 25px 0 25px 0;
    border-top: 1px solid #bbb;
    border-bottom: 1px solid #bbb;
  }

  #download-header h2 {font-size: 18px;}

  .download-file-mobile {
    display: flex;
    font-size: 12px;
    padding-bottom: 5px;
    border: 1px solid #bbb;
    border-bottom: none;
    padding: 8px 10px 0;
  }

  .download-text-mobile {
    font-size: 11.5px;
    line-height: 1.5;
    border: 1px solid #bbb;
    border-top: none;
    padding: 5px 10px;
  }

  .d-btn-mobile {
    display: flex;
    justify-content: flex-end;
    border: 1px solid #bbb;
    margin: 30px 20px 30px auto;
    width: 40px;
    height: 30px;
    font-size: 9.5px;
    padding: 7px 10px;
  }
}

/* talk_1 미디어쿼리 */
@media (max-width:480px) {
  .write-container1 {
    width: 100%;
    max-width: 440px;
  }

  .heading1 {
    font-size: 18px;
    margin: 0 0 15px;
    padding: 0 0 10px;
  }

  .form-group1 {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.3rem 0.5rem;
  }

  .form-group1 .small-1 {
    width: 100%;
    margin-top: 0.3rem;
    font-size: 8.5px;
    color: #666;
    line-height: 1.4;
  }

  .form-group1 label {font-size: 14px;}

  #name1, #email1 {
    font-size: 12px;
    width: 100%;
    max-width: 360px;
    height: 30px;
  }

  .small {font-size: 8.5px;}

  #title1 {
    font-size: 12px;
    width: 100%;
    height: 30px;
  }

  #content1 {
    font-size: 12px;
    width: 100%;
    height: 90px;
  }

  .content1-small {display: none;}

  .mobile-small {
    display: block;
    font-size: 8.5px;
    color: #666;
  }

  .submit-btn1 {
    width: 100%;
    max-width: 90px;
    height: 40px;
    font-size: 12px;
  }

  .form-group1 .form-gong {font-size: 12px;}
  .form-group1 input {width: 8px; height: 8px;}
  .form-group2 {margin-top: 40px;}
}

/* 480px  안내메세지용 미디어쿼리 */
@media (max-width: 480px) {
  .custom-alert-text {font-size: 12px !important;}
  .custom-alert-button {font-size: 10px !important;}
  .icon {font-size: 32px;}
  .complete-box h1 {font-size: 16px;}
  .complete-box p {font-size: 12px;}
  .btn{font-size: 12px;}
  .lock {font-size: 16px;}
  #confirmBtn {font-size: 12px;}
  #cancelBtn {font-size: 12px;}
}

/* 360px 용 미디어쿼리 */
@media (max-width: 360px) {
  .qna-header1 {width: 100%;}

  .qna-header1 h2 {
    width: 90%;
    font-size: 14px;
  }

  .n_box {
    width: 100%;
    padding: 0 15px;
    box-sizing: border-box;
  }

  .about-section h2 {
    font-size: 12px;
    padding: 0 0.3rem;
  }

  .n_box .card-1 h3 {font-size: 7.5px;}

  .n_box .qna_h2 {
    margin: 50px 0 30px 0;
    padding-left: 10px;
  }

  .n_box .qna-h2 {
    margin: 50px 0 30px 0;
    padding-left: 10px;
  }

  .mobile_p {font-size: 10px;}
  .n_box .card-1 p {font-size: 7.5px;}

  .n_box section > div .card-1:nth-child(3) {
    width: 100%;
    max-width: 155.39px;
    margin: 0 auto;
    min-height: 11.25rem;
  }

  .mobile-map-row {
    display: flex;
    align-items: stretch;
  }

  .mobile-map-row .label {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0.5rem;
    line-height: 1.2;
  }

  .notice-card, 
  .memo-card {
    width: 100%;
    max-width: 330px;
  }

  .notice-card-header > h3 > a {font-size: 14px;}
  .memo-card-header > h3 > a {font-size: 14px;}
  .notice-title, .notice-date, .memo-title, .memo-date {font-size: 11px;}
  .b_p {font-size: 9px;}
  
  .mobile-nav {
    width: 100%;
    max-width: 330px;
  }

  .cbox01 {  
    height: 100%;
    max-height: 230px;
    padding: 0 15px;
    margin-top: 30px;
  }

  .cbox01 > a {
    width: 100%;
    max-width: 160px;
    height: 200px;
  }

  .cbox01  p {font-size: 10px;}
  
  .cbox02 {
    height: 100%;
    max-height: 230px;
    padding: 0 15px;
    margin-top: 30px;
  }

  .cbox02 > a {
    width: 100%;
    max-width: 160px;
    height: 200px;
  }

  .cbox02 p {font-size: 10px;}

  .inquiry-header {
    width: 100%;
    max-width: 330px;
  }

  .inquiry-header h2 {font-size: 14px;}
  .inquiry-header span {display: none;}

  .form-label-box {
    margin: 0;
    width: 100%;
    max-width: 330px;
  }

  .form-label-box p {font-size: 12px;}
  .form-row label {font-size: 10px;}

  #company, #name, #phone {
    width: 100%;
    height: 20px;
    padding: 0;
  }

  #message {
    width: 100%;
    height: 100px;
  }

  .submit-wrap button {
    font-size: 10px;
    width: 80px;
    padding: 0;
  }

  fieldset {
    width: 100%;
    max-width: 330px;
    margin: 0 15px;
  }

  .notice-card {position: relative;}

  .notice-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px;
    width: 100%;
    height: 1px;
    background-color: #000;
    opacity: 0.8;
  }

  .memo-card {position: relative;}

  .memo-card::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 12px; 
    width: 100%;
    height: 1px; 
    background-color: #000; 
    opacity: 0.8; 
  }

  .qna-header {
    width: 100%;
    max-width: 330px;
  }

  .qna-header h2 {font-size: 14px;}

  .board {
    width: 100%;
    max-width: 330px;
  }

  .board colgroup col:nth-child(1) {width: 15% !important;}
  .board colgroup col:nth-child(2) {width: 45% !important;}
  .board colgroup col:nth-child(3),
  .board colgroup col:nth-child(4) {width: 20% !important;}

  .board th,
  .board td {font-size: 9.7px;}
  .mobile-map-row .label {font-size: 8px;}
  .mobile-map-row .content {font-size: 8px;}
  .mobile-nav h2 {font-size: 1rem;}

  #n_contents {
    width: 100%;
    max-width: 330px;
  }

  #qna-header h2 {font-size: 14px;}
  #mobile-jbox h3 {font-size: 12px;}
  .mobile-title, .mobile-summary, .mobile-text {font-size: 10px;}

  .purchase-btn {
    width: 100%;
    max-width: 90px;
    font-size: 10px;
  }

  .dbox1, .dbox2, .dbox3 {height: 40px;}
  #titleArea {font-size: 12px; padding: 11px 10px;}
  #authorArea, #contentArea {font-size: 10px; padding: 11px 10px;}
  #dateArea {font-size: 10px;}

  #contentArea {
    min-height: 150px;
    height: auto;
    padding: 15px;
  }

  .heading1 {font-size: 14px;}
  .form-group1 > label {font-size: 12px;}

  #name1, #email1, #title1 {
    height: 25px;
    font-size: 10px;
  }

  #content1 {font-size: 10px;}
  .form-group1  .small-1,  .small {font-size: 8px;}
  .mobile-small {font-size: 7.3px;}
  .submit-btn1 {font-size: 10px;}

  #download-header {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }

  #download-header h2 {font-size: 14px;}

  .download-file-mobile {
    width: 100%;
    max-width: 330px;
    margin: 20px auto 0;
    font-size: 10px;
  }

  .download-text-mobile {
    width: 100%;
    max-width: 330px;
    margin: 0 auto;
  }

  .download-text-mobile p {font-size: 10px;}
  .d-btn-mobile {margin: 20px 20px 20px 305px;}

  .cookie-content {
    width: 100%;
    max-width: 330px !important;
  }

  .cookie-content br {display: none;}
  .cookie-content h2 {font-size: 14px;}

  .cookie-content p {
    font-size: 10px;
    padding: 5px 12px;
  }

  #cookieAgree, #cookieDecline {
    font-size: 10px;
    width: 50px;
    padding: 0;
  }

  .custom-alert-box {
    width: 96%;
    padding: 14px 16px;
  }

  .custom-alert-text {font-size: 12px !important;}

  .custom-alert-btn {
    font-size: 12px;
    padding: 0 14px !important;
  }

  .custom-alert-button {font-size: 10px;}
  .icon {font-size: 24px;}
  .complete-box h1 { font-size: 12px; }
  .complete-box p { font-size: 10px; }
  .btn {font-size: 10px;}

  .lock-box {
    width: 100%;
    max-width: 330px !important;
  }

  .lock {font-size: 14px;}
  #modalName {font-size: 9px;}
  #modalEmail {font-size: 9px;}
  #confirmBtn {font-size: 10px;}
  #cancelBtn {font-size: 10px;}

  #mobile-slide {
    width: 100%;
    max-width: 330px;
    height: 400px;
  }

  .tab-container {
    width: 100%;
    max-width: 330px !important;
    padding: 15px !important;
  }

  .tab-button, .tab-button.active {font-size: 12px;}
  #more-link {font-size: 10px;}
  .notice-list li, .memo-list li {border: none;}
  .notice-title, .memo-title {font-size: 10px;}

  .notice-list li a, .memo-list li a {
    font-size: 12px;
    padding: 8px 0;
  }

  .notice-date, .memo-date {font-size: 10px;}
  footer {padding: 15px 0 5px;}

  .footer_inner {
    gap: 10px;
    margin-bottom: 10px;
    padding: 0 10px;
  }

  .flogo .logo-link img {max-width: 150px;}
  .flogo_info {padding-bottom: 0;}
  .flogo {gap: 10px;}
  .footer_contact {padding-top: 8px;}

  .footer_contact p {
    font-size: 10px;
    line-height: 1.3;
  }

  .footer_contact p .n {font-size: 10px;}
  .footer_contact .policy_links {margin-top: 3px;}
  .footer_contact .policy_links a {font-size: 10px;}
  #openModalBtn {font-size: 10px;}

  .footer_copyright {
    font-size: 10px;
    padding-bottom: 10px;
  }
  
  .logo-wrapper {
    width: 100%;
    max-width: 150px;
  }

  .logo-wrapper img {
    width: 100%;
    height: auto;
  }

  .page-box {
    width: 100%;
    max-width: 340px;
  }

  .side-icon-box {
    top: 400px;           
    right: 10px;     
    width: 50px;      
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.5);
  }

  .side-icon-box a {
    padding: 0 14px;
    font-size: 12px;      
    height: 50px;         
    gap: 8px;
  }

  .side-icon-box i {font-size: 18px;}
  .side-icon-box > a > span {display: none;}

  .modal-content {
    width: 100%;
    max-width: 330px;
  }

  .modal-content h2 {font-size: 12px;}
  .modal-body p {font-size: 10px;}

  .custom-map-overlay {
    width: 100%;
    max-width: 170px;
    font-size: 8px;
    min-height: 65px;
    padding: 20px 16px;
  }
}
