@charset "UTF-8";
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 105px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  background-color: #fff;
}
header > .navbar_main {
  width: 100%;
  max-width: 1720px;
  height: 105px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 70px;
  z-index: 999;
  animation: navbarBottom 1s forwards;
}
header.subpage {
  background-color: #fff;
}
header.subpage > .navbar_main {
  height: auto;
  margin-top: 0;
}

.language-dropdown {
  position: relative;
}
.language-dropdown .language-toggle {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  transition: 0.3s;
  display: flex;
  align-items: center;
}
.language-dropdown .language-toggle > span {
  display: flex;
  align-items: center;
  gap: 10px;
}
.language-dropdown .language-toggle:after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #52330F;
}
.language-dropdown .language-menu {
  position: absolute;
  top: 100%;
  right: 0;
  background-color: white;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  border-radius: 4px;
  width: 100px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  z-index: 1000;
}
.language-dropdown .language-menu a {
  display: block;
  padding: 8px 16px;
  color: #000;
  text-align: center;
}
.language-dropdown .language-menu a:hover {
  background-color: #f5f5f5;
}
.language-dropdown:hover .language-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.navbar_links {
  width: 100%;
  max-width: 880px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 54px;
}
.navbar_links .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-toggle > img {
  width: 30%;
}
.navbar_links .dropdown .dropdown-toggle::after {
  content: "";
  display: inline-block;
  margin-left: 8px;
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #52330F;
  vertical-align: middle;
}
.navbar_links .dropdown .dropdown-toggle::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}
.navbar_links .dropdown .dropdown-toggle:hover::before {
  width: 100%;
  left: 0;
  transition: 0.3s;
}
.navbar_links .dropdown .dropdown-menu {
  position: absolute;
  top: 120%;
  left: -10%;
  background-color: white;
  min-width: 180px;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(0px);
  transition: all 0.3s ease;
  z-index: 1000;
}
.navbar_links .dropdown .dropdown-menu a {
  display: block;
  padding: 10px 16px;
  color: #000;
  font-size: 16px;
  transition: background-color 0.2s;
}
.navbar_links .dropdown .dropdown-menu a:hover {
  background-color: #f5f5f5;
}
.navbar_links .dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  padding-top: 40px;
  transform: translateY(0px);
}
.navbar_links .dropdown:hover {
  transition: 0.3s;
  transform: translateY(0px);
}
.navbar_links > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links > a:last-child {
  margin-right: 0;
}
.navbar_links > a::before {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 50%;
  width: 0;
  height: 3px;
  transition: width 0.2s ease-in-out, left 0.2s ease-in-out;
}
.navbar_links > a:hover::before {
  width: 100%;
  left: 0;
  transition: 0.3s;
}
.navbar_links > a:hover {
  transition: 0.3s;
}

.navbar_links_en {
  max-width: 1070px;
  gap: 20px;
  justify-content: flex-start;
}
.navbar_links_en .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links_en .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links_en > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar_links_jp {
  max-width: 1070px;
  gap: 20px;
}
.navbar_links_jp .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links_jp .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links_jp > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar_links_cn {
  max-width: 1070px;
  gap: 20px;
}
.navbar_links_cn .dropdown {
  position: relative;
  transition: 0.3s;
}
.navbar_links_cn .dropdown .dropdown-toggle {
  text-decoration: none;
  color: #000;
  font-size: 18px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}
.navbar_links_cn > a {
  text-decoration: none;
  color: #000;
  font-size: 20px;
  font-weight: 500;
  position: relative;
  transition: 0.3s;
}

.navbar_scroll {
  background-color: #fff;
  z-index: 5;
  border-bottom: 1px solid gray;
}
.navbar_scroll div a,
.navbar_scroll a {
  color: black;
}

@keyframes navbarBottom {
  0% {
    transform: translateY(-70%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}
.navbar_overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-backdrop-filter: blur(2px);
          backdrop-filter: blur(2px);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.1s ease;
}
.navbar_overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.navbar_burger {
  position: fixed;
  top: 1rem;
  right: 1rem;
  cursor: pointer;
  color: #2e69c2 !important;
  z-index: 999;
  background-color: rgba(255, 255, 255, 0.342);
  border-radius: 5px;
}
.navbar_burger > svg {
  color: #2e69c2 !important;
}
.navbar_burger > svg > path {
  color: #2e69c2 !important;
}

.navbar_burger_back {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  cursor: pointer;
  color: #fff;
}
.navbar_burger_back > svg {
  color: white;
}
.navbar_burger_back > svg > path {
  color: white;
}

.navbar_menu {
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: #83b4fb;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  transform: translateX(100%);
  z-index: 99999;
  overflow-y: auto;
  transition: transform 0.3s ease;
}
.navbar_menu .mobile-dropdown {
  width: 100%;
  margin-bottom: 1rem;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle {
  position: relative;
  color: #ffffff;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 0.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle .dropdown-icon {
  font-size: 20px;
  transition: transform 0.3s ease;
  color: white;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-toggle.active .dropdown-icon {
  transform: rotate(45deg);
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 16px;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu.active {
  max-height: 500px;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu a {
  color: rgba(255, 255, 255, 0.8);
  font-size: 13px;
  padding: 8px 0;
  display: block;
  word-break: keep-all;
}
.navbar_menu .mobile-dropdown .mobile-dropdown-menu a:hover {
  color: white;
}
.navbar_menu > a {
  color: #ffffff;
  font-size: 18px;
  padding: 10px 0;
  margin-bottom: 1rem;
  text-decoration: none;
}
.navbar_menu > a > img {
  width: 100%;
}
.navbar_menu .mobile-language {
  display: flex;
  margin-top: 2rem;
}
.navbar_menu .mobile-language a {
  color: rgba(255, 255, 255, 0.7);
  margin-right: 1rem;
  padding: 5px 10px;
  border-radius: 4px;
  transition: 0.2s;
}
.navbar_menu .mobile-language a.active {
  background-color: rgba(255, 255, 255, 0.2);
  color: white;
}
.navbar_menu .mobile-language a:hover {
  color: white;
}
.navbar_menu.active {
  transform: translateX(0);
}

.navbar_menu_en {
  width: 100%;
  justify-content: flex-start;
}

@media (min-width: 992px) {
  /* PC 버전 CSS 입력*/
  .navbar_overlay {
    display: none;
  }
  .navbar_burger {
    display: none;
  }
  .navbar_menu {
    display: none;
  }
}
@media (max-width: 991.98px) {
  /* 모바일 버전 CSS 입력*/
  header {
    display: none;
  }
}
#footer {
  width: 100%;
  height: 360px;
  padding: 50px 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  background: #061430;
}
@media (max-width: 1024px) {
  #footer {
    height: auto;
    padding: 40px;
  }
}
#footer .container {
  position: relative;
  width: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (max-width: 1024px) {
  #footer .container {
    flex-direction: column;
    gap: 20px;
  }
}
#footer .container .left {
  padding-top: 30px;
}
#footer .container .left .f-policy-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
#footer .container .left .f-policy-nav > a {
  position: relative;
  font-size: 16px;
  font-weight: 300;
  color: #fafafa;
}
#footer .container .left .f-policy-nav > a:not(:last-child) {
  padding-right: 15px;
  margin-right: 15px;
}
#footer .container .left .f-policy-nav > a:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1px;
  height: 12px;
  background: #3D3D3D;
}
#footer .container .center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 36px;
}
@media (max-width: 1024px) {
  #footer .container .center {
    align-items: flex-start;
    position: relative;
  }
}
#footer .container .center #f-logo {
  width: auto;
  height: 100px;
}
#footer .container .center #f-logo > img {
  width: auto;
  height: 100%;
}
#footer .container .center .f-info-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
@media (max-width: 1024px) {
  #footer .container .center .f-info-list {
    align-items: flex-start;
  }
}
#footer .container .center .f-info-list > li {
  display: flex;
  flex-direction: row;
  gap: 10px;
  font-size: 17px;
  line-height: 1.4;
  color: white;
}
@media (max-width: 1024px) {
  #footer .container .center .f-info-list > li {
    font-size: 14px;
    flex-direction: column;
  }
}
#footer .container .center .f-info-list > li > em {
  font-weight: 600;
  color: #CFCFCF;
}
@media (max-width: 1024px) {
  #footer .container .center .f-info-list > li > em {
    width: 50px;
  }
}
#footer .container .center .f-info-list > li > span {
  color: #CFCFCF;
}
@media (max-width: 1024px) {
  #footer .container .center .f-info-list > li > span {
    word-break: keep-all;
  }
}
@media (max-width: 1024px) {
  #footer .container .center .f-info-list > li:nth-of-type(3) {
    flex-direction: column;
  }
}
@media (max-width: 1024px) {
  #footer .container .center .f-info-list > li:nth-of-type(2) {
    flex-direction: column;
  }
}
#footer .container .right {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1024px) {
  #footer .container .right {
    align-items: flex-start;
    gap: 20px;
  }
}
#footer .container .right .f-social-nav {
  display: flex;
  flex-direction: row;
  gap: 12px;
}
#footer .container .right .f-social-nav > a {
  display: block;
  width: 32px;
  height: 32px;
}
#footer .container .right .f-social-nav > a > img {
  width: 100%;
  height: 100%;
}
#footer > .copy {
  font-size: 16px;
  line-height: 1;
  color: #818181;
}
@media (max-width: 1024px) {
  #footer > .copy {
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}/*# sourceMappingURL=common.css.map */