body {
  font-family: "Roboto", system-ui, -apple-system, "Segoe UI", Roboto,
    sans-serif;
  margin: 0;
  padding: 0;
}
#apDiv1 {
  position: absolute;
  width: 200px;
  height: 115px;
  z-index: 1;
  left: 0px;
  top: 109px;
}
#apDiv2 {
  position: absolute;
  width: 200px;
  height: 115px;
  z-index: 1;
  left: 288px;
  top: 71px;
}

/* ===== Header Wrap ===== */
/* ===== Header Wrap ===== */
/* 헤더 전체 */
.headerWrap {
  position: absolute;
  width: 860px;
  height: 45px;
  z-index: 10;
  top: 40px;
  left: 190px;
}

/* 메인 메뉴 */
/* 메인 메뉴 */
.nawoo {
  position: relative;
  width: 660px;
  height: 50px;
  margin: 0 auto;
}
.nawoo > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0;
  padding: 0;
  list-style: none;
}
.nawoo > ul > li {
  position: relative;
}
.nawoo > ul > li > a {
  position: relative;
  display: block;
  padding: 12px 20px;
  font: 600 16px/1.4 "Roboto", sans-serif;
  color: #000;
  text-decoration: none;
  transition: color 0.3s ease;
}
.nawoo > ul > li > a::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: linear-gradient(90deg, #001f3f 0%, #00ff80 100%);
  transition: width 0.2s ease;
}
.nawoo > ul > li:hover > a::before {
  width: 100%;
}
.nawoo > ul > li:hover > a {
  color: #d62828;
}

/* 드롭다운 껍데기 */
.dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 200px;
  z-index: 20;

  opacity: 0; /* ✅ 기본 숨김 */
  pointer-events: none; /* ✅ 기본 차단 */
}

/* 애니메이션 전용 박스 */
.dropdown-anim {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25), 0 4px 12px rgba(0, 0, 0, 0.15);
  opacity: 0;
  pointer-events: none;

  will-change: transform, opacity;
  backface-visibility: hidden;
}

/* 실제 내용 (글자 전용) */
.dropdown-inner {
  position: relative;
  padding: 8px 0;
  background: transparent;
  border-radius: 12px;

  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
.dropdown-inner ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.dropdown-inner ul li a {
  display: block;
  padding: 10px 16px;
  font: 500 14px/1.5 "Roboto", sans-serif;
  color: #111;
  text-decoration: none;
  border-radius: 6px;
  transition: background 0.4s ease, color 0.25s ease;
  background: #fff;
}
.dropdown-inner ul li a:hover {
  background: linear-gradient(90deg, #007bff 0%, #00ff80 100%);
  color: #fff;
}

.content {
  background: url(img/66.jpg) no-repeat 20px 30px;
  font: 400 13px "Roboto", sans-serif;
  color: #333;
}
.content p {
  margin-left: 180px;
  word-spacing: 2px;
}
