body {
  padding-top: 170px;
}

@media (max-width: 1024px) {
  body {
    padding-top: 90px;
  }
}
@media (max-width: 640px) {
  body {
    padding-top: 80px;
  }
}
.mobile-menu-outside {
  position: fixed;
  left: 0;
  top: 0;
  display: none;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 230;
}
.mobile-menu-outside.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  max-width: 400px;
  display: flex;
  flex-direction: column;
  background: white;
  transform: translateX(-100%);
  transition: 0.2s all ease-in-out;
  z-index: 250;
}
.mobile-menu.active {
  transform: translate(0);
}
.mobile-menu .m-top {
  width: 100%;
  height: 50px;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.mobile-menu .m-top > img {
  width: auto;
  height: 60%;
}
.mobile-menu .m-top .close-mobile-menu {
  width: 49px;
  height: 49px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  background: white;
  cursor: pointer;
}
.mobile-menu .m-top .close-mobile-menu > svg {
  width: 80%;
  height: 80%;
}
.mobile-menu .m-global-nav {
  width: 100%;
  padding: 16px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  grid-gap: 18px;
}
.mobile-menu .m-global-nav .global-nav-list {
  width: 100%;
  display: flex;
  flex-direction: column;
  grid-gap: 14px;
}
.mobile-menu .m-global-nav .global-nav-list .nav-item {
  width: 100%;
}
.mobile-menu .m-global-nav .global-nav-list .nav-item > a {
  display: block;
  width: 100%;
  height: auto;
  padding: 0 14px;
  font-size: 16px;
  line-height: 1;
  color: black;
  font-weight: 600;
}
.mobile-menu .m-global-nav .etc-nav-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.mobile-menu .m-global-nav .etc-nav-list > strong {
  padding: 0 14px;
  margin-bottom: 20px;
  font-size: 16px;
  line-height: 1;
  color: black;
  font-weight: 600;
}
.mobile-menu .m-global-nav .etc-nav-list .nav-item {
  width: 100%;
}
.mobile-menu .m-global-nav .etc-nav-list .nav-item > a {
  width: 100%;
  padding: 0 24px;
  display: inline-block;
  font-size: 14px;
  line-height: 1;
  color: black;
}
.mobile-menu .m-global-nav .etc-nav-list .nav-item:not(:last-of-type) {
  margin-bottom: 14px;
}
.mobile-menu .m-global-nav .horizontal-devide {
  display: inline-block;
  width: 90%;
  height: 1px;
  background: #f0f0f0;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  background: white;
  z-index: 200;
}
.header .h-top {
  width: 100%;
  height: 100px;
  border-bottom: 1px solid #ddd;
}
.header .h-top .container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .h-top .container .h-logo {
  width: auto;
  height: 50px;
  padding-left: 50px;
}
.header .h-top .container .h-logo > img {
  width: auto;
  height: 100%;
}
.header .h-top .container .h-tit {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.header .h-top .container .h-tit > strong {
  font-size: 50px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
.header .h-top .container .member-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 12px;
}
.header .h-top .container .member-nav > a {
  font-size: 16px;
  font-weight: 600;
  line-height: 1;
  color: black;
}
.header .h-top .container .member-nav .vertical-devide {
  display: block;
  width: 1px;
  height: 12px;
  background: #ccc;
}
.header .h-bot {
  width: 100%;
  height: 70px;
  border-bottom: 1px solid #ddd;
}
.header .h-bot .container {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 0 16px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.header .h-bot .container .open-mobile-menu {
  display: none;
}
.header .h-bot .container .h-global-nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 30px;
}
.header .h-bot .container .h-global-nav a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: 17px;
  font-weight: 400;
  line-height: 1;
  color: black;
}
.header .h-bot .container .h-global-nav a.emph {
  font-weight: 700;
}
.header .h-bot .container .h-global-nav .nav-shop-list {
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 25px;
}
.header .h-bot .container .h-global-nav .nav-etc-list {
  position: relative;
  height: 100%;
}
.header .h-bot .container .h-global-nav .nav-etc-list .etc-item {
  position: relative;
  height: 100%;
}
.header .h-bot .container .h-global-nav .nav-etc-list .etc-item > a {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 8px;
  font-size: 16px;
}
.header .h-bot .container .h-global-nav .nav-etc-list .etc-item .etc-depth-2 {
  position: absolute;
  top: calc(100% + 1px);
  left: 50%;
  transform: translateX(-50%);
  max-height: 0;
  display: flex;
  flex-direction: column;
  background: white;
  opacity: 0;
  border: 1px solid #818181;
  overflow: hidden;
  transition: 0.2s all ease-in-out;
}
.header .h-bot .container .h-global-nav .nav-etc-list .etc-item .etc-depth-2 .etc-depth2-item > a {
  padding: 10px 16px;
  white-space: nowrap;
  font-size: 15px;
  color: black;
  background-color: transparent;
  transition: 0.2s all ease-in-out;
}
.header .h-bot .container .h-global-nav .nav-etc-list .etc-item .etc-depth-2 .etc-depth2-item > a:hover {
  color: white;
  background-color: black;
}
.header .h-bot .container .h-global-nav .nav-etc-list .etc-item:hover .etc-depth-2 {
  max-height: 300px;
  opacity: 1;
}
.header .h-bot .container .h-global-nav .vertical-deivde {
  display: block;
  width: 1px;
  height: 20px;
  background: #ccc;
}
.header .h-bot .container .etc-wrap {
  height: 60%;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 40px;
}
.header .h-bot .container .etc-wrap .h-search-frm {
  position: relative;
  min-width: 50px;
  height: 100%;
  visibility: hidden;
}
.header .h-bot .container .etc-wrap .h-search-frm.active {
  visibility: visible;
}
.header .h-bot .container .etc-wrap .h-search-frm > label {
  width: 200px;
  height: 100%;
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 10px;
  background: #f0f0f0;
  border-radius: 500px;
}
.header .h-bot .container .etc-wrap .h-search-frm > label > svg {
  flex-shrink: 0;
  width: auto;
  height: 20px;
}
.header .h-bot .container .etc-wrap .h-search-frm > label > input {
  flex: 1 1 auto;
  min-width: 50px;
  background: transparent;
  border: none;
  outline: none;
  font-size: 16px;
  line-height: 1;
  color: #505050;
}
.header .h-bot .container .etc-wrap .cs-nav {
  height: 25px;
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 20px;
}
.header .h-bot .container .etc-wrap .cs-nav > a {
  display: inline-block;
  height: 100%;
}
.header .h-bot .container .etc-wrap .cs-nav > a > svg {
  width: auto;
  height: 100%;
}

@media (max-width: 1280px) {
  .header .h-bot .container {
    justify-content: space-between;
  }
  .header .h-bot .container .h-global-nav {
    position: relative;
    left: 0;
    transform: unset;
  }
}
@media (max-width: 1024px) {
  .header .h-top {
    height: 50px;
  }
  .header .h-top .container .h-logo {
    padding-left: 0;
    height: 60%;
  }
  .header .h-top .container .h-tit {
    position: relative;
    left: 0;
    top: 0;
    transform: translate(0, 0);
  }
  .header .h-top .container .h-tit > strong {
    font-size: 30px;
  }
  .header .h-top .container .member-nav {
    grid-gap: 8px;
  }
  .header .h-top .container .member-nav > a {
    font-size: 14px;
  }
  .header .h-top .container .member-nav .vertical-devide {
    height: 8px;
  }
  .header .h-bot {
    height: 40px;
  }
  .header .h-bot .container {
    justify-content: space-between;
  }
  .header .h-bot .container .open-mobile-menu {
    display: block;
    width: 39px;
    height: 39px;
    cursor: pointer;
  }
  .header .h-bot .container .open-mobile-menu > svg {
    width: 100%;
    height: 100%;
  }
  .header .h-bot .container .h-global-nav {
    display: none;
  }
  .header .h-bot .container .etc-wrap {
    grid-gap: 20px;
  }
  .header .h-bot .container .etc-wrap .h-search-frm > label {
    padding: 0 10px;
  }
  .header .h-bot .container .etc-wrap .h-search-frm > label > svg {
    height: 14px;
  }
  .header .h-bot .container .etc-wrap .h-search-frm > label > input {
    font-size: 14px;
  }
  .header .h-bot .container .etc-wrap .cs-nav {
    height: 20px;
    grid-gap: 12px;
  }
}
@media (max-width: 640px) {
  .header .h-top {
    height: 40px;
  }
  .header .h-top .container .h-tit > strong {
    font-size: 24px;
  }
  .header .h-top .container .member-nav > a {
    font-size: 12px;
  }
  .header .h-bot .container .h-global-nav {
    position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 40px;
    background: white;
    border-top: 1px solid #ccc;
    grid-gap: 0;
  }
  .header .h-bot .container .h-global-nav > a {
    flex: 1 1 20px;
    text-align: center;
    background: transparent;
    transition: 0.2s all ease-in-out;
  }
  .header .h-bot .container .h-global-nav > a:hover {
    color: white;
    background: #2B7FBB;
  }
  .header .h-bot .container .etc-wrap {
    width: 100%;
  }
  .header .h-bot .container .etc-wrap .h-search-frm {
    flex: 1 1 auto;
  }
  .header .h-bot .container .etc-wrap .h-search-frm > label {
    width: 100%;
  }
}
@media (max-width: 480px) {
  .header .h-top .container .h-logo {
    height: 50%;
  }
  .header .h-top .container .h-tit > strong {
    font-size: 18px;
  }
  .header .h-bot .container .etc-wrap {
    grid-gap: 14px;
  }
}
.footer {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: white;
  border-top: 1px solid #ddd;
  z-index: 5;
}
.footer .top {
  width: 100%;
  height: 100px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}
.footer .top .container {
  width: 100%;
  height: 50px;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
.footer .top .container .f-logo {
  width: auto;
  height: 100%;
}
.footer .top .container .f-logo > img {
  width: auto;
  height: 100%;
}
.footer .top .container .social-nav {
  display: flex;
  flex-direction: row;
  grid-gap: 12px;
}
.footer .top .container .social-nav > a {
  width: auto;
  height: 40px;
}
.footer .top .container .social-nav > a > img {
  width: auto;
  height: 100%;
}
.footer .mid {
  width: 100%;
  padding: 25px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  border-bottom: 1px solid #ddd;
}
.footer .mid .container {
  width: 100%;
  max-width: 1620px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.footer .mid .container .f-info-list {
  flex: 0 1 50%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  grid-gap: 8px 20px;
}
.footer .mid .container .f-info-list .f-info-item {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  grid-gap: 14px;
}
.footer .mid .container .f-info-list .f-info-item.full {
  flex: 1 1 100%;
}
.footer .mid .container .f-info-list .f-info-item > strong {
  font-size: 17px;
  font-weight: 600;
  line-height: 1.4;
  color: black;
}
.footer .mid .container .f-info-list .f-info-item span {
  font-size: 17px;
  line-height: 1.4;
  color: #505050;
}
.footer .mid .container .f-info-list .f-info-item .for-mobile {
  display: none;
}
.footer .mid .container .law-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  grid-gap: 20px;
}
.footer .mid .container .law-nav > a {
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #707070;
}
.footer .mid .container .law-nav .vertical-devide {
  display: inline-block;
  width: 1px;
  height: 14px;
  background: #aaa;
}
.footer .copy {
  width: 100%;
  padding: 14px 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
  color: #818181;
  text-align: center;
}

@media (max-width: 1620px) {
  .footer .top .container, .footer .mid .container {
    padding: 0 16px;
  }
}
@media (max-width: 1024px) {
  .footer .top {
    height: 50px;
  }
  .footer .top .container {
    height: 60%;
  }
  .footer .top .container .social-nav {
    height: 100%;
    grid-gap: 8px;
  }
  .footer .top .container .social-nav > a {
    height: 100%;
  }
  .footer .mid {
    padding: 16px 0;
  }
  .footer .mid .container {
    align-items: flex-start;
  }
  .footer .mid .container .f-info-list .f-info-item > strong {
    font-size: 14px;
  }
  .footer .mid .container .f-info-list .f-info-item span {
    font-size: 14px;
  }
  .footer .mid .container .law-nav {
    grid-gap: 10px;
  }
  .footer .mid .container .law-nav > a {
    font-size: 14px;
  }
  .footer .mid .container .law-nav .vertical-devide {
    height: 10px;
  }
  .footer .copy {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .footer .mid .container .f-info-list .f-info-item span.for-pc {
    display: none;
  }
  .footer .mid .container .f-info-list .f-info-item .for-mobile {
    display: inline-block;
  }
}
@media (max-width: 640px) {
  .footer {
    margin-bottom: 40px;
  }
  .footer .top {
    height: 40px;
  }
  .footer .mid .container {
    flex-direction: column;
    align-items: center;
    grid-gap: 24px;
  }
  .footer .mid .container .f-info-list {
    width: 100%;
    flex-wrap: nowrap;
    flex-direction: column;
  }
  .footer .copy {
    padding: 10px 0;
    font-size: 12px;
  }
}/*# sourceMappingURL=common.css.map */