body {
  background: #F5F4F2;
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: transparent;
  transition: 0.2s ease-in-out;
  z-index: 500;
}
.header:hover, .header.on {
  background: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
}
.header .container {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container .h-logo-2 {
  display: flex;
  width: auto;
  height: 70%;
}
@media (max-width: 768px) {
  .header .container .h-logo-2 {
    height: 50px;
    flex: 1 1 100%;
    justify-content: center;
  }
}
@media (max-width: 480px) {
  .header .container .h-logo-2 {
    flex: unset;
    height: 36px;
  }
}
.header .container .h-logo-2 > img {
  width: auto;
  height: 100%;
}
.header .container .h-global-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: row;
}
.header .container .h-global-nav > a {
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.header .container .family-site {
  padding: 12px 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border: 1px solid #aaa;
  border-radius: 500rem;
  background: transparent;
  transition: 0.2s all ease-in-out;
}
.header .container .family-site:hover {
  border: 1px solid black;
  background: black;
}
.header .container .family-site:hover > span {
  color: white;
}
.header .container .family-site:hover > img:nth-of-type(1) {
  display: none;
}
.header .container .family-site:hover > img:nth-of-type(2) {
  display: block;
}
.header .container .family-site > span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
  color: black;
}
.header .container .family-site > img {
  width: auto;
  height: 20px;
  fill: black;
}
.header .container .family-site > img:nth-of-type(1) {
  display: block;
}
.header .container .family-site > img:nth-of-type(2) {
  display: none;
}

@media (max-width: 1620px) {
  .header .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .header {
    height: 50px;
  }
  .header .container .h-global-nav {
    position: relative;
    left: 0;
    transform: unset;
  }
  .header .container .h-global-nav > a {
    font-size: 14px;
  }
  .header .container .family-site {
    padding: 6px 12px;
    gap: 6px;
  }
  .header .container .family-site > span {
    font-size: 13px;
  }
  .header .container .family-site > img {
    height: 16px;
  }
}
@media (max-width: 768px) {
  .header {
    height: auto;
  }
  .header .container {
    height: auto;
    padding: 16px;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
  }
  .header .container .h-global-nav {
    height: auto;
  }
  .header .container .h-global-nav > a {
    padding: 0 12px;
    font-size: 12px;
  }
}
@media (max-width: 480px) {
  .header .container {
    flex-wrap: nowrap;
    flex-direction: column;
    align-items: center;
    gap: 0px;
  }
  .header .container #h-logo {
    margin-bottom: 22px;
  }
  .header .container .h-global-nav {
    margin-bottom: 14px;
  }
}
.footer {
  position: relative;
  width: 100%;
  height: 300px;
  padding-top: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
.footer .container {
  width: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: column;
}
.footer .container .top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  padding-bottom: 36px;
  margin-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}
.footer .container .top #f-logo {
  width: auto;
  height: 70px;
  display: flex;
}
.footer .container .top #f-logo > img {
  width: auto;
  height: 100%;
}
.footer .container .top .social-nav {
  display: flex;
  flex-direction: row;
  gap: 14px;
}
.footer .container .top .social-nav > a {
  display: block;
}
.footer .container .top .social-nav > a > img {
  width: 36px;
  height: auto;
}
.footer .container .bottom {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .container .bottom .copyright {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
  color: #707070;
}
.footer .container .bottom .back-to-up {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  cursor: pointer;
}
.footer .container .bottom .back-to-up > span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .container .bottom .back-to-up > svg {
  width: auto;
  height: 20px;
  fill: white;
}
.footer .container .bottom .f-login {
  font-size: 14px;
  font-weight: 500;
  color: white;
}
.footer .container .bottom .bottom-etc {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
}
.footer .container .bottom .bottom-etc > a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .container .bottom .bottom-etc .devide {
  width: 1px;
  height: 12px;
  background: white;
  opacity: 0.3;
}
.footer .container .bottom .bottom-etc .lang-select {
  position: relative;
}
.footer .container .bottom .bottom-etc .lang-select > p {
  padding: 5px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
.footer .container .bottom .bottom-etc .lang-select > p > span {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: white;
}
.footer .container .bottom .bottom-etc .lang-select > p > svg {
  width: auto;
  height: 20px;
  fill: white;
}
.footer .container .bottom .bottom-etc .lang-select .lang-list {
  position: absolute;
  left: 50%;
  bottom: 100%;
  max-height: 0;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  border: 1px solid white;
  background: black;
  visibility: 0;
  opacity: 0;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.footer .container .bottom .bottom-etc .lang-select .lang-list > a {
  padding: 8px 16px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: white;
  text-align: center;
  transition: 0.2s all ease-in-out;
}
.footer .container .bottom .bottom-etc .lang-select .lang-list > a:not(:last-of-type) {
  border-bottom: 1px solid white;
}
.footer .container .bottom .bottom-etc .lang-select .lang-list > a:hover {
  background: white;
  color: black;
}
.footer .container .bottom .bottom-etc .lang-select:hover .lang-list {
  max-height: 200px;
  visibility: visible;
  opacity: 1;
}

@media (max-width: 1620px) {
  .footer .container {
    padding: 0 16px;
  }
}
@media (max-width: 1280px) {
  .footer {
    height: auto;
    padding: 50px 0 30px;
  }
  .footer .container .top {
    padding-bottom: 20px;
    margin-bottom: 20px;
  }
  .footer .container .top #f-logo {
    height: 50px;
  }
  .footer .container .top .social-nav > a > img {
    width: 30px;
  }
}
@media (max-width: 1024px) {
  .footer .container .bottom {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer .container .bottom .copyright {
    flex: 1 1 100%;
    text-align: center;
  }
  .footer .container .bottom .back-to-up {
    position: relative;
    left: unset;
    top: unset;
    transform: unset;
  }
}
@media (max-width: 768px) {
  .footer {
    padding: 30px 0 16px;
  }
  .footer .container .bottom .copyright {
    order: 3;
  }
}/*# sourceMappingURL=common.css.map */