@charset "UTF-8";
a {
  text-decoration: none;
  color: inherit;
}

/* 헤더 전체 스타일 */
.main-header {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 600;
  width: 100%;
  height: 100px;
  background-color: #ffffff;
  border-bottom: 1px solid #f0f0f0;
}
.main-header .header-container {
  width: 95%;
  max-width: 1680px;
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-header .logo-area {
  height: 90%;
  display: flex;
}
.main-header .logo-area img {
  height: 100%;
  display: block;
}
.main-header .nav-menu {
  height: 100%;
}
.main-header .nav-menu .gnb {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-header .nav-menu .gnb-item {
  display: flex;
  align-items: center;
  height: 100%;
}
.main-header .nav-menu .gnb-item > a {
  font-size: 20px;
  font-weight: 700;
  color: #111111;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  transition: color 0.2s ease;
}
.main-header .nav-menu .gnb-item > a:hover {
  color: #ff6b6b;
}
.main-header .nav-menu .gnb-item:not(:last-child)::after {
  content: "";
  display: block;
  width: 1px;
  height: 20px;
  background-color: #cacaca;
}
.main-header .nav-menu .gnb-item:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.main-header .nav-menu .mega-menu {
  position: absolute;
  top: 100px;
  left: 0;
  width: 100%;
  background-color: #f9f9f9;
  border-bottom: 1px solid #cacaca;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: all 0.3s ease;
  z-index: 999;
}
.main-header .nav-menu .mega-menu .mega-menu-inner {
  width: 95%;
  max-width: 1680px;
  margin: 0 auto;
  padding: 20px 0 24px;
}
.main-header .nav-menu .mega-menu .sub-list {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 24px;
}
.main-header .nav-menu .mega-menu .sub-list li a {
  font-size: 16px;
  font-weight: 500;
  color: #666666;
  transition: color 0.2s ease;
}
.main-header .nav-menu .mega-menu .sub-list li a:hover {
  color: #ff6b6b;
  font-weight: 500;
}
.main-header .right-utility {
  display: flex;
  align-items: center;
  gap: 36px;
}
.main-header .right-utility .phone-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: #ff6b6b;
  color: #ffffff;
  padding: 6px;
  padding-right: 24px;
  border-radius: 50px;
  font-size: 16px;
  font-weight: bold;
  transition: background-color 0.2s ease;
}
.main-header .right-utility .phone-btn .icon {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  border-radius: 100000rem;
}
.main-header .right-utility .phone-btn .icon i {
  font-size: 24px;
  line-height: 1;
  color: #ff6b6b;
  font-variation-settings: "FILL" 1;
}
.main-header .right-utility .phone-btn:hover {
  background-color: #e55a5a;
}
.main-header .right-utility .hamburger-btn {
  flex: 0 0 auto;
  width: 30px;
  height: 30px;
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: space-evenly;
  padding: 0;
}
.main-header .right-utility .hamburger-btn span {
  display: block;
  width: 100%;
  height: 2px;
  background-color: #111111;
  border-radius: 2px;
}
.main-header .right-utility .hamburger-btn span:nth-child(2) {
  width: 80%;
}

#footer {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  background: black;
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1680px;
  margin: 0 auto;
  padding: 40px 0 36px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 40px;
}
#footer .container .left, #footer .container .right {
  flex: 1 1 20%;
  padding-top: 60px;
}
#footer .container .mid {
  flex: 1 1 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
#footer .container .mid > a {
  width: 290px;
  height: auto;
  display: flex;
}
#footer .container .mid > a > img {
  width: 100%;
  height: auto;
}
#footer .container .mid .f-infos {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
#footer .container .mid .f-infos span {
  font-size: 18px;
  font-weight: 300;
  line-height: 1.2;
  color: #aaa;
  word-break: keep-all;
  text-align: center;
}
#footer .container .left .policy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .left .policy-nav > a {
  flex: 0 0 auto;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #818181;
}
#footer .container .left .policy-nav > a:not(:last-of-type) {
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid #3D3D3D;
}
#footer .container .right .social-nav {
  margin-left: auto;
  display: flex;
  flex-direction: row;
  gap: 12px;
}
#footer .container .right .social-nav > a {
  flex: 0 0 auto;
  width: 40px;
  height: auto;
  display: flex;
}
#footer .container .right .social-nav > a > img {
  width: 100%;
  height: auto;
  opacity: 0.8;
}
#footer .copyright {
  width: 100%;
  height: auto;
  padding: 14px 4%;
  border-top: 1px solid #464646;
}
#footer .copyright p {
  font-size: 15px;
  line-height: 1.3;
  word-break: keep-all;
  color: #818181;
  text-align: center;
}/*# sourceMappingURL=common.css.map */