header {
  width: 100%;
  height: 90px;
  background: #fff;
  font-family: "Pretendard Variable";
  border-bottom: 1px solid #eee;
  position: fixed;
  z-index: 1000;
}

header #head {
  width: 1200px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

header #head .logo {
  margin-right: 100px;
}
header #head .logo a img {
  width: 150px;
  object-fit: cover;
}

header #head ul {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 110px;
}

header #head ul li a {
  font-size: 20px;
  font-weight: bold;
  color: #000;
  font-family: "Pretendard Variable";
}

#head ul li a.active {
  color: #e70014;
}

.menu-bridge {
  position: absolute;
  top: 90px; /* 메뉴 아래쪽에 맞게 조정 */
  left: 0;
  width: 100%;
  height: 1px; /* 메뉴와 서브메뉴 사이 거리 만큼 */
  z-index: 99;
}

.sub_menu {
  width: 100%;
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: all 0.3s ease;
  position: absolute;
  top: 90px;
  left: 0;
  background: #fff;
  opacity: 0;
  font-family: "Pretendard Variable";
}
.sub_menu.active {
  height: 300px;
  visibility: visible;
  opacity: 1;
}


.sub_menu1,
.sub_menu2,
.sub_menu3,
.sub_menu4 {
  display: block;
  z-index: 9999;
  border-bottom: 1px solid #ccc;
  border-top: 1px solid #eee;
}

.sub_menu1 {
  padding-left: 100px;
}

.sub_menu1 .sub_wrap,
.sub_menu3 .sub_wrap {
  width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  gap: 30px;
}
.sub_text {
  display: flex;
  gap: 70px;
}
.sub_img {
  width: 300px;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.sub_img img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sub_menu1 .sub_wrap ul li a,
.sub_menu3 .sub_wrap ul li a {
  display: inline-block;
  font-size: 19px;
  padding-bottom: 22px;
  font-family: "Pretendard Variable";
}

.sub_menu1 .sub_wrap .sub_menu1_sub {
  display: none;
}
.sub_menu1 .sub_wrap .sub_menu1_sub.on {
  display: block;
}

.sub_menu1 ul li a.active,
.sub_menu1 ul li a:hover {
  color: #e70014;
}

/* 공통적으로 .active 상태일 때 꺾쇠 > 표시 */
.sub_menu1 ul li a.active::after,
.sub_menu1 ul li a:hover::after {
  content: " >";
  color: #000;
  font-weight: 500;
}

.sub_menu2 {
  padding-left: 90px;
}
.sub_menu2.active {
  height: 100px;
}
.sub_menu2 .sub_wrap {
  padding-top: 30px;
}
.sub_menu2 .sub_wrap ul {
  width: 790px;
  margin: 0 auto;
  display: flex;
  gap: 70px;
}
.sub_menu2 .sub_wrap ul li a {
  font-size: 19px;
  font-family: "Pretendard Variable";
}
.sub_menu2 .sub_wrap ul li a:hover,
.sub_menu3 .sub_wrap ul li a:hover,
.sub_menu4 .sub_wrap ul li a:hover {
  color: #e70014;
}

.sub_menu3 {
  padding-left: 100px;
}
.sub_menu3 .sub_text ul li:last-child a {
  display: flex;
  align-items: center;
}
.sub_menu3 .sub_text ul li:last-child a img {
  width: 19px;
  padding-right: 5px;
}

.sub_menu3 .map_container {
  width: 350px;
  position: relative;
  margin: 0 auto;
}
.sub_menu3 .map_container img {
  /* width: 150px; */
  display: block;
  margin: 0 auto;
}

.sub_menu3 .region-link {
  position: absolute;
  display: block;
  background-color: transparent;
}

.sub_menu3 .region-link:hover {
  cursor: pointer;
  border: 1px solid #e70014;
  box-sizing: border-box;
}

.sub_menu4 {
  padding-left: 60px;
}
.sub_menu4.active {
  height: 100px;
}
.sub_menu4 .sub_wrap {
  padding-top: 30px;
}
.sub_menu4 .sub_wrap ul {
  width: 760px;
  margin: 0 auto;
  display: flex;
  gap: 50px;
}
.sub_menu4 .sub_wrap ul li a {
  font-size: 19px;
  font-family: "Pretendard Variable";
}

/* .h_notice {
  height: 100px;
  position: fixed;
  bottom: 0px;
  left: 10px;
  border: 1px solid #ccc;
  padding: 5px 60px 16px 10px;
  background: url(../img/h_notice_bg.png) no-repeat center / cover;
  z-index: 999;
}
.h_notice strong {
  display: inline-block;
  padding-bottom: 5px;
}
.h_notice p {
  line-height: 20px;
}
.h_notice p span {
  color: #e70014;
} */

/* 사칭에 주의 팝업 */
.caution_notice{
  position: fixed;
  width: 200px;
  left: 10px;
  bottom: 10px;
  z-index: 999;
  transform:translateY(120%);
  transition:transform 0.5s ease;
}
.caution_notice.show{
  transform:translateY(0);
}
.caution_notice.hide{
  transform:translateY(120%);
}

.caution_notice .close_box{
  width: 100%;
  height: 25px;
  position: relative;
  background:#444547;
  border-radius:10px 10px 0 0;
}
.caution_notice .close_box p{
  height: 100%;
  font-size:10px;
  color:#ccc;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: "Pretendard Variable";
}
.caution_notice .close_box strong{
  position: absolute;
  right: 10px;
  bottom: 3px;
  color:#fff;
  cursor:pointer;
}

.caution_notice .notice_cont{
  width: 100%;
  padding-bottom:15px;
  text-align: center;
  border:1px solid #ccc;
  border-top:none;
  border-radius:0 0 10px 10px;
  background:#FBFBFB;
}
.caution_notice .notice_cont h3{
  font-size:14px;
  font-weight:bold;
  font-family: "Pretendard Variable";
  margin-bottom: 15px;
}
.caution_notice .notice_cont p{
  font-size:13px;
  line-height:18px;
  font-family: "Pretendard Variable";
}
.caution_notice .notice_cont p span{
  color:#E70014;
}


.lang_wrap {
  position: absolute;
  top: 25px;
  right: 260px;
  z-index: 9999;
}

.btn-lng {
  width: 92px;
  background: #fff;
  border: 1px solid #ccc;
  padding: 6px 0%;
  border-radius: 4px;
  cursor: pointer;
}

.lang-list-wrap {
  width: 92px;
  position: absolute;
  top: 26px;
  right: 0;
  margin-top: 5px;
  display: none;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.lang-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.lang-list li a {
  display: block;
  padding: 8px 0px;
  color: #000;
  text-align: center;
}

.lang-list li a:hover {
  background: #f0f0f0;
}
