@charset "UTF-8";
body {
  background-color: #fff;
}

.sound_only {
  display: none;
}

.all_header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  z-index: 99;
}
@media (max-width: 1024px) {
  .all_header {
    position: fixed;
    top: 0;
  }
}
.all_header > .head_top {
  width: 100%;
  display: flex;
  justify-content: center;
  border-bottom: 0.5px solid rgba(204, 204, 204, 0.2745098039);
  padding: 25px 0;
  margin-bottom: 20px;
  transition: height 0.6s ease;
}
@media (max-width: 1024px) {
  .all_header > .head_top {
    margin-bottom: 10px;
    padding: 5px 0;
    transition: max-height 0.6s ease;
    max-height: 170px;
    overflow: hidden;
  }
}
.all_header > .head_top > .top_wrap {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap {
    flex-direction: column-reverse;
    justify-content: flex-start;
    align-items: flex-start;
    padding: 0 20px;
    gap: 20px;
  }
}
.all_header > .head_top > .top_wrap > .top_left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap > .top_left {
    align-items: flex-start;
    margin-bottom: 20px;
  }
}
.all_header > .head_top > .top_wrap > .top_left > .left {
  display: flex;
  align-items: center;
  gap: 20px;
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap > .top_left > .left > img {
    width: 90%;
  }
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap > .top_left > .left {
    flex-wrap: wrap;
  }
}
.all_header > .head_top > .top_wrap > .top_left > .c_right {
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap > .top_left > .c_right {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    place-items: center;
  }
}
.all_header > .head_top > .top_wrap > .top_left > .c_right > .head_count {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 125px;
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap > .top_left > .c_right > .head_count {
    width: 85px;
  }
}
.all_header > .head_top > .top_wrap > .top_left > .c_right > .head_count > h2 {
  font-size: 16px;
  color: #747474;
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap > .top_left > .c_right > .head_count > h2 {
    font-size: 10px;
  }
}
.all_header > .head_top > .top_wrap > .top_left > .c_right > .head_count > h3 {
  color: #A7A7A7;
}
@media (max-width: 1024px) {
  .all_header > .head_top > .top_wrap > .top_left > .c_right > .head_count > h3 {
    font-size: 9px;
  }
}
.all_header > .head_top > .top_wrap > .right {
  display: flex;
  align-items: center;
  gap: 25px;
  font-size: 17px;
  font-weight: 300;
  color: #959595;
}
.all_header > .head_top > .top_wrap > .right > .active {
  color: white;
  font-weight: 500;
}
.all_header > nav {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media (max-width: 1024px) {
  .all_header > nav {
    flex-direction: column;
    padding: 0 20px;
  }
}
.all_header > nav > .log {
  margin-right: 25px;
  padding-bottom: 50px;
}
@media (max-width: 1024px) {
  .all_header > nav > .log {
    margin-right: 0;
    padding-bottom: 0;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media (max-width: 1024px) {
  .all_header > nav > .log > img {
    width: 60%;
  }
}
.all_header > nav > .menu {
  margin-right: 30px;
}
@media (max-width: 768px) {
  .all_header > nav > .menu {
    display: none;
  }
}
.all_header > nav > .menu > .sub_menu {
  display: flex;
  align-items: center;
  gap: 35px;
  position: relative;
}
@media (max-width: 1024px) {
  .all_header > nav > .menu > .sub_menu {
    display: flex;
    overflow-x: auto;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;
    padding: 0 0 5px 0px;
  }
}
.all_header > nav > .menu > .sub_menu > li {
  position: relative;
}
.all_header > nav > .menu > .sub_menu > li:hover .drop_menu {
  max-height: 500px;
  opacity: 1;
  visibility: visible;
  transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
}
.all_header > nav > .menu > .sub_menu > li a {
  display: block;
  text-decoration: none;
  color: #333;
  font-size: 18px;
  font-weight: 700;
  padding-bottom: 10px;
}
.all_header > nav > .menu > .sub_menu > li a:hover {
  color: #333;
}
@media (max-width: 1024px) {
  .all_header > nav > .menu > .sub_menu > li a {
    font-size: 14px;
  }
}
.all_header > nav > .menu > .sub_menu > li .drop_menu {
  position: absolute;
  top: auto;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FF5B67;
  width: 150px;
  padding: 0;
  margin: 0;
  list-style: none;
  max-height: 0;
  opacity: 0;
  visibility: hidden;
  overflow: hidden;
  z-index: 100;
}
@media (max-width: 1024px) {
  .all_header > nav > .menu > .sub_menu > li .drop_menu {
    position: fixed;
    width: 100%;
  }
}
.all_header > nav > .menu > .sub_menu > li .drop_menu li a {
  position: relative;
  padding: 15px 10px;
  display: block;
  text-decoration: none;
  color: #fff;
  font-size: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  transition: 0.3s;
}
.all_header > nav > .menu > .sub_menu > li .drop_menu li a:hover {
  background-color: #ff3e4b;
  color: #fff;
  transition: 0.3s;
}
.all_header > nav > .menu > .sub_menu > li .drop_menu li a:after {
  content: "";
  display: inline-block;
  width: 0%;
  transition: 0.3s;
  height: 2px;
  background-color: rgba(255, 255, 255, 0.5137254902);
  position: absolute;
  left: 0;
  bottom: 0;
}
.all_header > nav > .menu > .sub_menu > li .drop_menu li a:hover:after {
  width: 100%;
  transition: 0.3s;
}
.all_header > nav > .search_box {
  width: 100%;
  max-width: 365px;
  display: flex;
  align-items: center;
  background-color: #F6F6F6;
  padding: 10px 15px;
  justify-content: space-between;
  border-radius: 3px;
  gap: 10px;
}
@media (max-width: 1024px) {
  .all_header > nav > .search_box {
    margin-bottom: 10px;
    padding: 0px 10px;
  }
}
.all_header > nav > .search_box > form {
  width: 100%;
  max-width: 365px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.all_header > nav > .search_box > form > input {
  background-color: transparent;
  border: 0;
  width: 100%;
  color: white;
  padding: 5px;
}
.all_header > nav > .search_box > form > .search_btn {
  background-color: transparent;
  border: 0;
  padding: 5px;
}

.hamburger {
  display: none;
  cursor: pointer;
  flex-direction: column;
  justify-content: space-between;
  height: 24px;
  width: 30px;
  transition: 0.3s ease-in-out;
  position: absolute;
  top: 0;
  right: 5%;
}
.hamburger span {
  display: block;
  width: 100%;
  height: 3px;
  background-color: #FF5B67;
  margin: 3px 0;
  transition: 0.3s ease-in-out;
}
.hamburger.active span:nth-child(1) {
  transform: rotate(45deg);
  position: relative;
  top: 8px;
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg);
  position: relative;
  top: -8px;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background-color: #fff;
  transition: right 0.3s ease-in-out;
  z-index: 999;
  box-shadow: -2px 0 5px rgba(0, 0, 0, 0.3);
}
.mobile-menu.show {
  right: 0;
}
.mobile-menu .mobile-logo {
  display: block;
  padding: 20px;
  cursor: pointer;
}
.mobile-menu .mobile-logo > img {
  width: 40%;
}
.mobile-menu .mobile-nav {
  list-style: none;
  padding: 0;
  margin: 0;
}
.mobile-menu .mobile-nav li {
  padding: 7px 20px;
}
.mobile-menu .mobile-nav li > a {
  text-decoration: none;
  color: #000;
  font-size: 15px;
  display: block;
  font-weight: 700;
}
.mobile-menu .mobile-nav li > ul > li > a {
  font-size: 13px;
  color: #fff;
}
.mobile-menu .close-btn {
  position: absolute;
  bottom: 10%;
  left: 20px;
  background: none;
  border: none;
  font-size: 24px;
  cursor: pointer;
  color: #FF5B67;
}

.mobile-sub-menu {
  transition: max-height 1.6s ease-out; /* 높이 변경에 애니메이션 추가 */
  overflow: hidden; /* 넘치는 부분 숨기기 */
  max-height: 0; /* 기본 최대 높이 설정 */
}

.mobile-sub-menu.show {
  max-height: 560px; /* 적절한 최대 높이 설정 (필요에 따라 조정 가능) */
  overflow-y: scroll; /* 스크롤바 추가 */
  background-color: #FF5B67;
  color: white;
  border-radius: 5px;
  margin-top: 10px;
}

/* 모바일에서 햄버거 메뉴 및 모바일 네비게이션 표시 */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }
  .h-global-nav {
    display: none;
  }
}
footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
footer > .info_box {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
  border-top: 0.5px solid rgba(204, 204, 204, 0.1725490196);
  border-bottom: 0.5px solid rgba(204, 204, 204, 0.137254902);
  display: none;
}
@media (max-width: 1024px) {
  footer > .info_box {
    padding: 20px;
  }
}
footer > .info_box > ul {
  width: 100%;
  max-width: 1520px;
  display: flex;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1024px) {
  footer > .info_box > ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
}
footer > .info_box > ul > li > a {
  font-size: 15px;
  font-weight: 300;
  color: white;
}
footer > .info_box > ul > li .custom-select {
  position: relative;
  width: 150px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
footer > .info_box > ul > li .custom-select .selected-option {
  padding: 5px 10px;
  border-radius: 4px;
  font-size: 15px;
  color: white;
  display: flex;
  align-items: center;
  gap: 10px;
}
@media (max-width: 1024px) {
  footer > .info_box > ul > li .custom-select .selected-option {
    padding: 0;
  }
}
footer > .info_box > ul > li .custom-select .options {
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 4px;
  margin-top: 5px;
  list-style: none;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.3s ease-in-out;
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer > .info_box > ul > li .custom-select .options li {
  padding: 10px;
  width: 100%;
  cursor: pointer;
}
footer > .info_box > ul > li .custom-select .options li:hover {
  background-color: rgba(200, 200, 200, 0.5);
}
footer > .info_box > ul > li .custom-select .options li > a {
  width: 100%;
}
footer > .info_box > ul > li .custom-select.active .options {
  max-height: 200px;
}
footer > .bot_footer {
  width: 100%;
  max-width: 1520px;
  height: 155px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  footer > .bot_footer {
    padding: 0 20px;
  }
}
footer > .bot_footer > .left > h2 {
  font-size: 10px;
  font-weight: 300;
  color: #A7A7A7;
}/*# sourceMappingURL=common.css.map */