body {
  background: unset;
}

.m-menu-background {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
  z-index: 950;
}
.m-menu-background.active {
  opacity: 1;
  visibility: visible;
}

.m-menu {
  position: fixed;
  top: 0;
  right: 0;
  transform: translateX(calc(100% + 12px));
  width: 100%;
  height: 100dvh;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  border-radius: 16px 0 0 16px;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.2);
  transition: all 0.2s ease-in-out;
  z-index: 951;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-menu-head {
  flex: 0 0 auto;
  width: 100%;
  height: 70px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}
.m-menu .m-menu-head > a {
  flex: 0 0 auto;
  width: auto;
  height: 50%;
}
.m-menu .m-menu-head > a > img {
  width: auto;
  height: 100%;
}
.m-menu .m-menu-head .m-menu-close {
  width: 40px;
  height: 40px;
  padding: 4px;
  background: transparent;
  border: 1px solid #ddd;
  border-radius: 8px;
  cursor: pointer;
}
.m-menu .m-menu-head .m-menu-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
}
.m-menu .m-menu-body {
  flex: 1 1 auto;
  overflow: auto;
}
.m-menu .m-menu-body .m-global-nav {
  width: 100%;
  height: auto;
}
.m-menu .m-menu-body .m-global-nav .depth-1 {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li > a {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 1rem;
  line-height: 1.3;
  font-weight: 500;
  color: black;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 {
  width: 100%;
  height: auto;
  max-height: 0;
  padding-left: 24px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > li {
  width: 100%;
  height: 48px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 14px;
  line-height: 1.3;
  font-weight: 500;
  color: #3D3D3D;
  border-left: 1px solid #ddd;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li .depth-2 > li:hover {
  color: #0F4196;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li:hover > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li:hover > a, .m-menu .m-menu-body .m-global-nav .depth-1 > li.active > span, .m-menu .m-menu-body .m-global-nav .depth-1 > li.active > a {
  color: white;
  background: #0F4196;
}
.m-menu .m-menu-body .m-global-nav .depth-1 > li.active .depth-2 {
  max-height: 240px;
}
.m-menu .m-menu-bottom {
  flex: 0 0 auto;
  width: 100%;
  height: 70px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #ddd;
}
.m-menu .m-menu-bottom > a {
  flex: 1 1 40%;
  height: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 12px;
}
.m-menu .m-menu-bottom > a .icon-box {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  padding: 6px;
  background: black;
  border-radius: 8px;
  cursor: pointer;
}
.m-menu .m-menu-bottom > a .icon-box > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
.m-menu .m-menu-bottom > a > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  word-break: keep-all;
  color: #3D3D3D;
}
.m-menu .m-menu-bottom > a.mypage .icon-box {
  background: white;
  border: 2px solid #01d95a;
}
.m-menu .m-menu-bottom > a.mypage .icon-box > svg {
  fill: #01d95a;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  padding-bottom: 24px;
  display: flex;
  flex-direction: column;
  background: white;
  box-shadow: 0 0 12px -4px rgba(0, 0, 0, 0.4);
  z-index: 600;
}
@media (max-width: 1280px) {
  #header {
    padding-bottom: 12px;
  }
}
#header .grad-bar {
  width: 100%;
  height: 20px;
  background: linear-gradient(to right, #211C26, #2C275E, #6B3074, #C4297B, #CE2F43, #E25D1C, #FFC845);
}
@media (max-width: 1280px) {
  #header .grad-bar {
    height: 16px;
  }
}
#header .top {
  width: 100%;
  height: auto;
  margin-top: 28px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
@media (max-width: 1280px) {
  #header .top {
    margin-top: 12px;
  }
}
#header .top .container {
  width: 95%;
  height: auto;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
}
#header .top .container .top-menu-list {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 60px;
}
@media (max-width: 1280px) {
  #header .top .container .top-menu-list {
    gap: 40px;
  }
}
#header .top .container .top-menu-list > li {
  flex: 0 0 auto;
}
#header .top .container .top-menu-list > li > a {
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
}
#header .top .container .top-menu-list > li .search-btn {
  position: relative;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
#header .top .container .top-menu-list > li .search-btn > svg {
  width: 100%;
  height: 100%;
  fill: #464646;
}
#header .top .container .top-menu-list > li .search-btn .search-box {
  position: absolute;
  right: 0;
  top: 100%;
  transform: translateY(16px);
  width: 640px;
  height: auto;
  max-width: 640px;
  padding: 16px;
  background: #0F4196;
  z-index: 50;
  visibility: hidden;
  opacity: 0;
  transition: all 0.2s ease-in-out;
  cursor: default;
}
@media (max-width: 768px) {
  #header .top .container .top-menu-list > li .search-btn .search-box {
    width: 540px;
  }
}
@media (max-width: 640px) {
  #header .top .container .top-menu-list > li .search-btn .search-box {
    position: fixed;
    width: 100%;
    right: 50%;
    top: 120px;
    transform: translateX(50%);
  }
}
#header .top .container .top-menu-list > li .search-btn .search-box::before {
  content: "";
  position: absolute;
  right: 2px;
  top: 0;
  transform: translateY(-16px);
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 16px solid #0F4196;
}
@media (max-width: 640px) {
  #header .top .container .top-menu-list > li .search-btn .search-box::before {
    display: none;
  }
}
#header .top .container .top-menu-list > li .search-btn .search-box.on {
  visibility: visible;
  opacity: 1;
}
#header .top .container .top-menu-list > li .search-btn .search-box .search-close {
  position: absolute;
  top: 6px;
  right: 6px;
  width: 32px;
  height: 32px;
  cursor: pointer;
}
#header .top .container .top-menu-list > li .search-btn .search-box .search-close > svg {
  width: 100%;
  height: 100%;
  fill: white;
}
#header .top .container .top-menu-list > li .search-btn .search-box .common-search-form {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}
#header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .form-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
  text-align: center;
}
#header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}
@media (max-width: 480px) {
  #header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field {
    flex-direction: column;
  }
}
#header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field > select {
  flex: 0 0 100px;
  height: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #3D3D3D;
  border: none;
  border-radius: 3px;
  outline: none;
  background: white;
}
@media (max-width: 480px) {
  #header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field > select {
    flex: unset;
    width: 100%;
    font-size: 13px;
  }
}
#header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field > input {
  flex: 1 1 auto;
  height: 32px;
  padding: 0 10px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #3D3D3D;
  border: none;
  border-radius: 3px;
  outline: none;
}
@media (max-width: 480px) {
  #header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field > input {
    flex: unset;
    width: 100%;
    font-size: 13px;
  }
}
#header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field > button {
  flex: 0 0 60px;
  height: 32px;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  border: none;
  border-radius: 3px;
  outline: none;
  background: #049D6C;
}
@media (max-width: 480px) {
  #header .top .container .top-menu-list > li .search-btn .search-box .common-search-form .input-field > button {
    flex: unset;
    width: 100%;
    font-size: 13px;
  }
}
#header .bottom {
  margin-top: 12px;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#header .bottom .container {
  width: 95%;
  height: auto;
  max-width: 1280px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
#header .bottom .container #h-icon {
  display: flex;
}
@media (max-width: 1280px) {
  #header .bottom .container #h-icon {
    height: 32px;
  }
}
#header .bottom .container #h-icon > img {
  max-width: 100%;
}
#header .bottom .container .h-right-wrap {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 64px;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-right-wrap {
    gap: 32px;
  }
}
#header .bottom .container .h-right-wrap .h-global-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 72px;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-right-wrap .h-global-nav {
    display: none;
  }
}
#header .bottom .container .h-right-wrap .h-global-nav .depth-1 {
  position: relative;
}
#header .bottom .container .h-right-wrap .h-global-nav .depth-1 > a {
  display: inline-block;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 800;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
  transition: all 0.2s ease-in-out;
}
#header .bottom .container .h-right-wrap .h-global-nav .depth-1 .depth-2 {
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 180px;
  height: auto;
  background: #0D6FB8;
  display: flex;
  flex-direction: column;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
#header .bottom .container .h-right-wrap .h-global-nav .depth-1 .depth-2 > li {
  width: 100%;
  height: auto;
}
#header .bottom .container .h-right-wrap .h-global-nav .depth-1 .depth-2 > li > a {
  display: inline-block;
  width: 100%;
  height: auto;
  padding: 12px;
  font-size: 16px;
  line-height: 1.2;
  text-align: center;
  word-break: keep-all;
  font-weight: 500;
  color: white;
}
#header .bottom .container .h-right-wrap .h-global-nav .depth-1:hover > a {
  color: #0D6FB8;
}
#header .bottom .container .h-right-wrap .h-global-nav .depth-1:hover .depth-2 {
  opacity: 1;
  visibility: visible;
}
#header .bottom .container .h-right-wrap .m-menu-open {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  cursor: pointer;
}
#header .bottom .container .h-right-wrap .m-menu-open > img {
  width: 100%;
  height: auto;
}

#quick-menu {
  position: fixed;
  top: 200px;
  right: 16px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  z-index: 100;
}
@media (max-width: 1280px) {
  #quick-menu {
    right: 0;
    transform: translateX(174px);
    transition: all 0.2s ease-in-out;
  }
  #quick-menu.on {
    transform: translateX(0);
  }
}
#quick-menu .qm-toggle {
  position: relative;
  width: 32px;
  height: auto;
  padding: 12px 0;
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  cursor: pointer;
  background: white;
  border: 1px solid #aaa;
  border-right-color: transparent;
  border-radius: 8px 0 0 8px;
  backdrop-filter: blur(3px);
  -webkit-backdrop-filter: blur(3px);
  z-index: 2;
}
@media (max-width: 1280px) {
  #quick-menu .qm-toggle {
    display: flex;
    margin-right: -1px;
  }
}
#quick-menu .qm-toggle > span {
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  color: #3D3D3D;
}
#quick-menu .qm-body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 1;
}
@media (max-width: 1280px) {
  #quick-menu .qm-body {
    padding: 12px;
    background: white;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    border: 1px solid #aaa;
    border-radius: 0 0 0 12px;
  }
}
#quick-menu .qm-body > a, #quick-menu .qm-body > div {
  width: 148px;
  height: 64px;
  padding: 0 8%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
}
#quick-menu .qm-body > a.blue, #quick-menu .qm-body > div.blue {
  background: #0D6FB8;
}
#quick-menu .qm-body > a.purple, #quick-menu .qm-body > div.purple {
  background: #2C275E;
}
#quick-menu .qm-body > a.to-top, #quick-menu .qm-body > div.to-top {
  background: #E25D1C;
  cursor: pointer;
}
#quick-menu .qm-body > a > img, #quick-menu .qm-body > div > img {
  flex: 0 0 25%;
  height: auto;
}
#quick-menu .qm-body > a > span, #quick-menu .qm-body > div > span {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.4;
  word-break: keep-all;
  color: white;
}

#footer {
  width: 100%;
  height: auto;
  background: black;
  padding: 44px 0;
}
@media (max-width: 1280px) {
  #footer {
    padding: 24px 0;
  }
}
#footer .container {
  width: 95%;
  height: auto;
  max-width: 1520px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-start;
  gap: 32px;
}
@media (max-width: 1280px) {
  #footer .container {
    gap: 24px;
  }
}
@media (max-width: 768px) {
  #footer .container {
    flex-direction: column;
    align-items: center;
  }
}
#footer .container .policy-nav, #footer .container .social-nav {
  flex: 0 0 25%;
  display: flex;
  flex-direction: row;
  align-items: center;
}
@media (max-width: 1280px) {
  #footer .container .policy-nav, #footer .container .social-nav {
    flex: 0 0 220px;
  }
}
@media (max-width: 768px) {
  #footer .container .policy-nav, #footer .container .social-nav {
    flex: unset;
    width: 100%;
    height: auto;
    justify-content: center;
  }
}
#footer .container .policy-nav > a {
  flex: 0 0 auto;
  font-size: 15px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
#footer .container .policy-nav > a:not(:last-of-type) {
  padding-right: 12px;
  margin-right: 12px;
  border-right: 1px solid white;
}
#footer .container .social-nav {
  justify-content: flex-end;
  gap: 12px;
}
@media (max-width: 768px) {
  #footer .container .social-nav {
    justify-content: center;
  }
}
#footer .container .f-middle {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container .f-middle #f-logo {
  margin-bottom: 28px;
  display: flex;
}
@media (max-width: 1280px) {
  #footer .container .f-middle #f-logo {
    margin-bottom: 24px;
  }
}
#footer .container .f-middle #f-logo > img {
  width: auto;
  height: 60px;
}
@media (max-width: 1280px) {
  #footer .container .f-middle #f-logo > img {
    height: 48px;
  }
}
#footer .container .f-middle .middle-center {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  #footer .container .f-middle .middle-center {
    margin-bottom: 24px;
  }
}
#footer .container .f-middle .middle-center > b {
  font-size: 18px;
  font-weight: 700;
  color: white;
  word-break: keep-all;
  text-align: center;
}
#footer .container .f-middle .middle-center > p {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#footer .container .f-middle .middle-center > p > span {
  font-size: 15px;
  line-height: 1.4;
  word-break: keep-all;
  color: #f0f0f0;
  text-align: center;
}
@media (max-width: 1280px) {
  #footer .container .f-middle .middle-center > p > span {
    font-size: 13px;
  }
}
#footer .container .f-middle .copyright {
  font-size: 13px;
  line-height: 1.2;
  color: #aaa;
}
#footer .container .f-middle .copyright > span {
  cursor: pointer;
}/*# sourceMappingURL=common.css.map */