body {
  height: auto;
  padding-top: 145px;
}
@media (max-width: 1280px) {
  body {
    padding-top: 117px;
  }
}
@media (max-width: 768px) {
  body {
    padding-top: 109px;
  }
}

.header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: white;
  border-bottom: 1px solid #aaa;
  z-index: 500;
}
.header .container {
  width: 95%;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (max-width: 1280px) {
  .header .container {
    gap: 16px;
  }
}
.header .container .h-top {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.header .container .h-top .h-logo > h1 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1;
  color: black;
}
@media (max-width: 1280px) {
  .header .container .h-top .h-logo > h1 {
    font-size: 28px;
  }
}
@media (max-width: 768px) {
  .header .container .h-top .h-logo > h1 {
    font-size: 20px;
  }
}
.header .container .h-top .h-img-logo {
  display: block;
  width: auto;
  height: 40px;
}
@media (max-width: 1280px) {
  .header .container .h-top .h-img-logo {
    height: 28px;
  }
}
@media (max-width: 768px) {
  .header .container .h-top .h-img-logo {
    height: 20px;
  }
}
.header .container .h-top .h-img-logo > img {
  width: auto;
  height: 100%;
}
.header .container .h-top .member-nav {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .container .h-top .member-nav > a {
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: black;
  word-break: keep-all;
}
.header .container .h-top .member-nav > a:not(:last-of-type) {
  padding-right: 16px;
  margin-right: 16px;
  border-right: 1px solid #aaa;
}
@media (max-width: 768px) {
  .header .container .h-top .member-nav > a:not(:last-of-type) {
    padding-right: 12px;
    margin-right: 12px;
  }
}
.header .container .h-bottom {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: flex-end;
}
@media (max-width: 1280px) {
  .header .container .h-bottom .h-global-nav {
    display: none;
  }
}
.header .container .h-bottom .h-global-nav .depth-1 {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.header .container .h-bottom .h-global-nav .depth-1 > li {
  position: relative;
}
.header .container .h-bottom .h-global-nav .depth-1 > li > a {
  padding: 4px 24px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1;
  color: #2D2D2D;
  transition: all 0.2s ease-in-out;
}
@media (max-width: 1440px) {
  .header .container .h-bottom .h-global-nav .depth-1 > li > a {
    padding: 4px 20px;
    font-size: 16px;
  }
}
.header .container .h-bottom .h-global-nav .depth-1 > li:hover > a {
  background: black;
  color: white;
}
.header .container .h-bottom .h-right-group {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
}
@media (max-width: 1280px) {
  .header .container .h-bottom .h-right-group {
    width: 100%;
    justify-content: space-between;
  }
}
.header .container .h-bottom .h-right-group .h-common-search {
  width: 300px;
  height: 40px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  border-bottom: 1px solid #aaa;
}
@media (max-width: 1280px) {
  .header .container .h-bottom .h-right-group .h-common-search {
    width: 280px;
    height: 32px;
  }
}
.header .container .h-bottom .h-right-group .h-common-search > input {
  height: 100%;
  padding: 0 8px;
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 1;
  border: none;
}
@media (max-width: 1280px) {
  .header .container .h-bottom .h-right-group .h-common-search > input {
    font-size: 14px;
  }
}
.header .container .h-bottom .h-right-group .h-common-search > button {
  flex: 0 0 auto;
  width: auto;
  height: 100%;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: none;
  background: transparent;
}
.header .container .h-bottom .h-right-group .h-common-search > button > svg {
  width: 80%;
  height: 80%;
  fill: black;
}
.header .container .h-bottom .h-right-group .m-menu-open {
  width: 32px;
  height: 32px;
  display: none;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  border: 1px solid #aaa;
  background: white;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}
@media (max-width: 1280px) {
  .header .container .h-bottom .h-right-group .m-menu-open {
    display: flex;
  }
}
.header .container .h-bottom .h-right-group .m-menu-open > svg {
  width: 80%;
  height: 80%;
  fill: black;
  transition: all 0.2s ease-in-out;
}
.header .container .h-bottom .h-right-group .m-menu-open:hover {
  border: 1px solid black;
  background: black;
}
.header .container .h-bottom .h-right-group .m-menu-open:hover > svg {
  fill: white;
}

.m-menu-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 800;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease-in-out;
}
.m-menu-bg.active {
  opacity: 1;
  visibility: visible;
}

.m-menu {
  position: fixed;
  right: 0;
  top: 0;
  transform: translateX(100%);
  width: 100%;
  height: 100%;
  max-width: 480px;
  display: flex;
  flex-direction: column;
  background: white;
  border-left: 1px solid black;
  z-index: 801;
  transition: all 0.2s ease-in-out;
}
.m-menu.active {
  transform: translateX(0);
}
.m-menu .m-top {
  flex: 0 0 auto;
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid black;
}
.m-menu .m-top .m-logo {
  font-size: 18px;
  font-weight: 700;
  color: black;
}
.m-menu .m-top .m-close {
  width: 32px;
  height: 32px;
  padding: 4px;
  background: white;
  border: 1px solid black;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-top .m-close > svg {
  width: 100%;
  height: 100%;
  fill: black;
  transition: all 0.2s ease-in-out;
}
.m-menu .m-top .m-close:hover {
  background: black;
}
.m-menu .m-top .m-close:hover > svg {
  fill: white;
}
.m-menu .m-body {
  width: 100%;
  flex: 1 1 auto;
  overflow-y: auto;
}
.m-menu .m-body .m-global-nav {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.m-menu .m-body .m-global-nav .depth-1 {
  position: relative;
  width: 100%;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid black;
}
.m-menu .m-body .m-global-nav .depth-1 > a {
  width: 100%;
  padding: 12px;
  display: block;
  transition: all 0.2s ease-in-out;
}

.footer {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: black;
}
.footer .container {
  width: 100%;
  height: auto;
  padding: 32px;
}
.footer .container .f-grid {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
}
@media (max-width: 1280px) {
  .footer .container .f-grid {
    grid-template-columns: 1fr 1fr auto;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid {
    grid-template-columns: 1fr auto;
    gap: 36px;
  }
}
@media (max-width: 640px) {
  .footer .container .f-grid {
    gap: 24px 16px;
  }
}
.footer .container .f-grid .cell {
  width: 100%;
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell:nth-of-type(n+4) {
    grid-column: 1/-1;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell.empty {
    display: none;
  }
}
.footer .container .f-grid .cell.logo {
  text-align: right;
}
.footer .container .f-grid .cell .register-info {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 8px;
}
.footer .container .f-grid .cell .register-info span {
  font-size: 20px;
  line-height: 1.2;
  color: white;
}
@media (max-width: 1280px) {
  .footer .container .f-grid .cell .register-info span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell .register-info span {
    font-size: 14px;
  }
}
.footer .container .f-grid .cell > p {
  font-size: 40px;
  font-weight: 600;
  line-height: 1.3;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .footer .container .f-grid .cell > p {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell > p {
    font-size: 24px;
  }
}
.footer .container .f-grid .cell .f-logo {
  display: inline-block;
  width: 80px;
  height: auto;
}
@media (max-width: 1280px) {
  .footer .container .f-grid .cell .f-logo {
    width: 52px;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell .f-logo {
    width: 48px;
  }
}
.footer .container .f-grid .cell .f-logo > img {
  width: 100%;
  height: auto;
}
.footer .container .f-grid .cell.sub {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.footer .container .f-grid .cell.sub > span {
  font-size: 24px;
  font-weight: 300;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .footer .container .f-grid .cell.sub > span {
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell.sub > span {
    font-size: 16px;
  }
}
.footer .container .f-grid .cell .copyright-box {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell .copyright-box {
    align-items: center;
  }
}
.footer .container .f-grid .cell .copyright-box > a {
  width: 48px;
  height: auto;
  margin-bottom: 16px;
  display: flex;
}
@media (max-width: 1280px) {
  .footer .container .f-grid .cell .copyright-box > a {
    width: 40px;
    margin-bottom: 12px;
  }
}
.footer .container .f-grid .cell .copyright-box > a > svg {
  width: 100%;
  height: auto;
  fill: white;
}
.footer .container .f-grid .cell .copyright-box > p {
  font-size: 20px;
  margin-bottom: 24px;
  line-height: 1.2;
  color: white;
}
@media (max-width: 1280px) {
  .footer .container .f-grid .cell .copyright-box > p {
    font-size: 16px;
    margin-bottom: 20px;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell .copyright-box > p {
    font-size: 14px;
    margin-bottom: 16px;
  }
}
.footer .container .f-grid .cell .copyright-box > span {
  font-size: 20px;
  line-height: 1.2;
  color: white;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  .footer .container .f-grid .cell .copyright-box > span {
    font-size: 16px;
  }
}
@media (max-width: 768px) {
  .footer .container .f-grid .cell .copyright-box > span {
    font-size: 14px;
    text-align: center;
  }
}/*# sourceMappingURL=common.css.map */