b, i {
  font-weight: 400;
  font-style: normal;
}

.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: 52px;
  padding: 0 12px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
  border-bottom: 1px solid #ddd;
}
.m-menu .m-menu-head .m-menu-close {
  width: 36px;
  height: 36px;
  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;
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  overflow: auto;
}
.m-menu .m-menu-body .m-member-nav {
  width: 100%;
  padding: 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
.m-menu .m-menu-body .m-member-nav .inner {
  width: 100%;
  height: auto;
  padding: 12px;
  display: flex;
  flex-direction: row;
  gap: 12px;
  background: #fafafa;
  border-radius: 8px;
}
.m-menu .m-menu-body .m-member-nav .inner > a {
  flex: 1 1 30%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.m-menu .m-menu-body .m-member-nav .inner > a > img {
  width: 100%;
  height: auto;
  max-width: 48px;
}
.m-menu .m-menu-body .m-member-nav .inner > a > span {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.1;
  color: black;
  word-break: keep-all;
  text-align: center;
}
.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: #555;
  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: #555;
}
.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 !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  background: white;
  z-index: 500;
}
@media (max-width: 768px) {
  #header {
    display: none;
  }
}
#header .top {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
@media (max-width: 1280px) {
  #header .top {
    gap: 16px;
  }
}
#header .top .top-bar {
  width: 100%;
  height: 28px;
  background: #1A2C65;
}
@media (max-width: 1280px) {
  #header .top .top-bar {
    height: 12px;
  }
}
#header .top #h-logo {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
#header .top #h-logo > h1 {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
#header .top #h-logo > h1 > em {
  color: #ff9900;
}
@media (max-width: 1280px) {
  #header .top #h-logo > h1 {
    font-size: 32px;
  }
}
@media (max-width: 768px) {
  #header .top #h-logo > h1 {
    font-size: 24px;
  }
}
#header .top #h-logo > span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #333;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  #header .top #h-logo > span {
    font-size: 16px;
  }
}
#header .bottom {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: row;
  justify-content: center;
  padding-bottom: 28px;
}
@media (max-width: 1280px) {
  #header .bottom {
    padding-bottom: 20px;
  }
}
#header .bottom .container {
  position: relative;
  width: 95%;
  height: auto;
  max-width: 1720px;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
@media (max-width: 1280px) {
  #header .bottom .container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 16px;
  }
}
@media (max-width: 480px) {
  #header .bottom .container {
    grid-template-columns: 1fr;
    gap: 16px;
  }
}
#header .bottom .container .meet {
  position: absolute;
  left: 0;
  top: 0;
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  gap: 8px;
}
@media (max-width: 1280px) {
  #header .bottom .container .meet {
    position: relative;
    left: unset;
    top: unset;
    width: 100%;
    height: auto;
    order: 1;
  }
}
@media (max-width: 480px) {
  #header .bottom .container .meet {
    justify-content: center;
  }
}
#header .bottom .container .meet > img {
  flex: 0 1 auto;
  width: 100px;
  height: auto;
}
@media (max-width: 1280px) {
  #header .bottom .container .meet > img {
    width: 80px;
    height: auto;
  }
}
@media (max-width: 480px) {
  #header .bottom .container .meet > img {
    width: 60px;
    height: auto;
  }
}
#header .bottom .container .meet > div {
  padding: 0 36px;
  background: #F2F4F9;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 1280px) {
  #header .bottom .container .meet > div {
    padding: 0 16px;
  }
}
@media (max-width: 480px) {
  #header .bottom .container .meet > div {
    flex: 1 1 auto;
  }
}
#header .bottom .container .meet > div > p {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.4;
  word-break: keep-all;
  color: black;
  text-align: center;
}
@media (max-width: 1280px) {
  #header .bottom .container .meet > div > p {
    font-size: 14px;
  }
}
@media (max-width: 480px) {
  #header .bottom .container .meet > div > p br {
    display: none;
  }
}
#header .bottom .container .meet > div > p > b {
  font-weight: 800;
}
#header .bottom .container .mid {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}
@media (max-width: 1400px) {
  #header .bottom .container .mid {
    gap: 20px;
  }
}
@media (max-width: 1280px) {
  #header .bottom .container .mid {
    width: 100%;
    height: auto;
    grid-column: span 2;
    gap: 16px;
    order: 3;
  }
}
@media (max-width: 768px) {
  #header .bottom .container .mid {
    flex-direction: row;
    gap: 12px;
  }
}
@media (max-width: 480px) {
  #header .bottom .container .mid {
    grid-column: auto;
  }
}
#header .bottom .container .mid .total-search {
  width: 700px;
  height: 60px;
  border: 4px solid #1A2C65;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
@media (max-width: 1400px) {
  #header .bottom .container .mid .total-search {
    width: 100%;
    height: 40px;
    max-width: 480px;
    border-width: 2px;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  #header .bottom .container .mid .total-search {
    flex: 1 1 auto;
    width: auto;
    max-width: unset;
  }
}
#header .bottom .container .mid .total-search > input {
  flex: 1 1 auto;
  height: 100%;
  min-width: 40px;
  padding: 0 4%;
  font-size: 20px;
  font-weight: 300;
  line-height: 1.2;
  color: black;
}
@media (max-width: 1280px) {
  #header .bottom .container .mid .total-search > input {
    font-size: 16px;
  }
}
@media (max-width: 640px) {
  #header .bottom .container .mid .total-search > input {
    font-size: 14px;
  }
}
#header .bottom .container .mid .total-search > input::-moz-placeholder {
  color: #777;
}
#header .bottom .container .mid .total-search > input::placeholder {
  color: #777;
}
#header .bottom .container .mid .total-search > button {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border: none;
  background: transparent;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
@media (max-width: 1280px) {
  #header .bottom .container .mid .total-search > button {
    width: 48px;
    height: 40px;
  }
}
#header .bottom .container .mid .total-search > button > svg {
  width: 80%;
  height: 80%;
  fill: #1A2C65;
}
#header .bottom .container .mid .h-global-nav {
  width: auto;
  height: auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 40px;
}
@media (max-width: 1280px) {
  #header .bottom .container .mid .h-global-nav {
    width: 100%;
    justify-content: space-evenly;
    gap: 12px;
  }
}
@media (max-width: 768px) {
  #header .bottom .container .mid .h-global-nav {
    display: none;
  }
}
#header .bottom .container .mid .h-global-nav > a {
  font-size: 20px;
  line-height: 1.2;
  color: black;
  font-weight: 700;
  word-break: keep-all;
}
@media (max-width: 1280px) {
  #header .bottom .container .mid .h-global-nav > a {
    font-size: 16px;
  }
}
#header .bottom .container .mid .m-menu-open {
  display: none;
}
@media (max-width: 768px) {
  #header .bottom .container .mid .m-menu-open {
    display: flex;
    width: 40px;
    height: 40px;
    padding: 4px;
    background: white;
    border: 2px solid #1A2C65;
    border-radius: 4px;
    cursor: pointer;
  }
}
#header .bottom .container .mid .m-menu-open > svg {
  width: 100%;
  height: 100%;
  fill: #1A2C65;
}
#header .bottom .container .h-member-nav {
  position: absolute;
  top: 0;
  right: 0;
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  gap: 28px;
}
@media (max-width: 1280px) {
  #header .bottom .container .h-member-nav {
    position: relative;
    top: unset;
    right: unset;
    width: 100%;
    height: auto;
    justify-content: flex-end;
    order: 2;
    gap: 16px;
  }
}
@media (max-width: 768px) {
  #header .bottom .container .h-member-nav {
    gap: 12px;
  }
}
@media (max-width: 480px) {
  #header .bottom .container .h-member-nav {
    justify-content: center;
  }
}
#header .bottom .container .h-member-nav > a {
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}
@media (max-width: 768px) {
  #header .bottom .container .h-member-nav > a {
    gap: 10px;
  }
}
#header .bottom .container .h-member-nav > a > img {
  width: 44px;
  height: auto;
}
@media (max-width: 768px) {
  #header .bottom .container .h-member-nav > a > img {
    width: 36px;
  }
}
#header .bottom .container .h-member-nav > a > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: #333;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 768px) {
  #header .bottom .container .h-member-nav > a > span {
    font-size: 14px;
  }
}

#m-header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  display: none;
  z-index: 600;
}
@media (max-width: 768px) {
  #m-header {
    display: block;
  }
}
#m-header .phone-row {
  width: 100%;
  height: auto;
  padding: 10px 0;
  background: #1A2C65;
  display: flex;
  flex-direction: row;
  justify-content: center;
}
#m-header .phone-row .inner {
  width: 95%;
  height: auto;
  padding: 4px 12px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 20px;
  background: #2d4699;
  border-radius: 4px;
}
#m-header .phone-row .inner > a {
  flex: 0 1 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 4px;
}
#m-header .phone-row .inner > a > svg {
  flex: 0 0 auto;
  width: 18px;
  height: auto;
  fill: white;
}
@media (max-width: 375px) {
  #m-header .phone-row .inner > a > svg {
    width: 16px;
  }
}
#m-header .phone-row .inner > a > span {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  color: white;
  word-break: break-all;
}
@media (max-width: 375px) {
  #m-header .phone-row .inner > a > span {
    font-size: 14px;
  }
}
#m-header .mid-row {
  width: 100%;
  height: auto;
  padding: 12px 0;
  background: white;
}
#m-header .mid-row .inner {
  width: 95%;
  height: auto;
  max-width: 768px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
}
#m-header .mid-row .inner #m-h-logo {
  flex: 0 0 auto;
  width: auto;
  height: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
#m-header .mid-row .inner #m-h-logo > h1 {
  font-size: 24px;
  font-weight: 900;
  line-height: 1.2;
  color: black;
  word-break: keep-all;
  text-align: center;
}
#m-header .mid-row .inner #m-h-logo > h1 > em {
  color: #ff9900;
}
@media (max-width: 480px) {
  #m-header .mid-row .inner #m-h-logo > h1 {
    font-size: 20px;
  }
}
#m-header .mid-row .inner #m-h-logo > span {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.1;
  color: #333;
  word-break: keep-all;
  text-align: center;
}
@media (max-width: 480px) {
  #m-header .mid-row .inner #m-h-logo > span {
    font-size: 13px;
  }
}
#m-header .mid-row .inner .m-search {
  flex: 1 1 auto;
  min-width: 0px;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 2px solid #1A2C65;
  background-color: white;
}
#m-header .mid-row .inner .m-search > input {
  flex: 1 1 auto;
  min-width: 0px;
  width: auto;
  height: 40px;
  padding: 0 10px;
  font-size: 15px;
  line-height: 1.1;
  color: black;
}
@media (max-width: 480px) {
  #m-header .mid-row .inner .m-search > input {
    height: 32px;
    font-size: 14px;
  }
}
#m-header .mid-row .inner .m-search > input::-moz-placeholder {
  color: #777;
}
#m-header .mid-row .inner .m-search > input::placeholder {
  color: #777;
}
#m-header .mid-row .inner .m-search > button {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  fill: #1A2C65;
}
@media (max-width: 480px) {
  #m-header .mid-row .inner .m-search > button {
    width: 32px;
    height: 32px;
  }
}
#m-header .mid-row .inner .m-search > button > svg {
  width: 70%;
  height: auto;
}
#m-header .nav-row {
  position: relative;
  border-top: 1px solid #ddd;
  width: 100%;
  height: 52px;
  background: white;
}
#m-header .nav-row nav {
  width: 100%;
  height: 100%;
}
#m-header .nav-row nav > ul {
  width: 100%;
  height: 100%;
  padding: 0 70px 0 16px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  overflow: auto;
}
#m-header .nav-row nav > ul > li {
  flex: 0 0 auto;
}
#m-header .nav-row nav > ul > li > a {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.1;
  color: #1A2C65;
  word-break: keep-all;
}
@media (max-width: 480px) {
  #m-header .nav-row nav > ul > li > a {
    font-size: 14px;
  }
}
#m-header .nav-row .menu-wrap {
  position: absolute;
  top: 0;
  right: 0;
  width: 70px;
  height: 100%;
  padding: 8px 0;
  display: flex;
  flex-direction: row;
  justify-content: center;
  background: linear-gradient(to right, transparent 5%, white 15%);
}
#m-header .nav-row .menu-wrap .m-menu-open {
  display: flex;
  width: auto;
  height: 100%;
  padding: 4px;
  background: white;
  border: 2px solid #1A2C65;
  border-radius: 4px;
  cursor: pointer;
  aspect-ratio: 1/1;
}
#m-header .nav-row .menu-wrap > svg {
  width: 100%;
  height: 100%;
  fill: #1A2C65;
}

.m_gnbwrap {
  position: fixed;
  left: 100%;
  top: 0;
  z-index: 999999;
  width: 100%;
  height: 100%;
  transition: 0.5s;
}
.m_gnbwrap .wrap {
  position: relative;
  width: 80%;
  height: 100%;
  margin-left: auto;
  background: #fff;
  padding: 24px 20px;
}
.m_gnbwrap .wrap .close_btn {
  width: 30px;
  height: 50px;
  background: url("/img/close.png") no-repeat center;
  background-size: contain;
  margin-left: auto;
}
.m_gnbwrap .wrap .m_sign {
  margin-bottom: 30px;
}
.m_gnbwrap .wrap .m_sign ul {
  display: flex;
  justify-content: space-between;
}
.m_gnbwrap .wrap .m_sign ul li {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ff9900;
  height: 40px;
  color: #fff;
  font-size: 0.875rem;
}
.m_gnbwrap .wrap .m_gnb li {
  font-size: 1.2em;
  margin-bottom: 15px;
  padding: 10px 0;
  border-bottom: 1px solid #eee;
  position: relative;
}
.m_gnbwrap .wrap .m_gnb li:after {
  content: "";
  display: block;
  transform: rotate(180deg) translateY(50%);
  border-top: 10px solid none;
  border-bottom: 10px solid #ff9900;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  position: absolute;
  top: 50%;
  right: 0;
}
.m_gnbwrap .wrap .m_gnb li a {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 768px) {
  #header {
    height: 80px;
  }
  #header h1 {
    width: 120px;
  }
  #header nav {
    display: none;
  }
  #header .hamBtn {
    display: block;
  }
}
#footer {
  background: #474747;
  padding-top: 3rem;
  padding-bottom: 15px;
  color: #fff;
}
#footer .footer_top {
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media (max-width: 768px) {
  #footer .footer_top h2 {
    width: 130px;
  }
}
#footer .footer_top .footer_nav {
  padding-bottom: 30px;
  display: flex;
  font-size: 1.25em;
  position: relative;
}
#footer .footer_top .footer_nav li {
  border-right: 1px solid #fff;
  padding: 0 40px;
}
#footer .footer_top .footer_nav li:last-child {
  border-right: none;
}
#footer .footer_bottom {
  border: 1px solid #fff;
  padding: 20px 30px;
  margin-bottom: 18px;
}
#footer .footer_bottom .terms ul {
  display: flex;
  justify-content: flex-end;
}
#footer .footer_bottom .terms ul li {
  font-size: 0.875em;
  margin-left: 18px;
}
#footer .footer_bottom .company_info ol {
  display: flex;
  align-items: center;
  font-size: 0.875em;
  margin-bottom: 14px;
}
@media (max-width: 768px) {
  #footer .footer_bottom .company_info ol:nth-child(1) li:last-child {
    width: 100%;
  }
}
@media (max-width: 768px) {
  #footer .footer_bottom .company_info ol:nth-child(1) li:last-child span {
    margin-left: 10px;
  }
}
#footer .footer_bottom .company_info ol:nth-child(2) li span {
  margin-left: 5px;
}
#footer .footer_bottom .company_info ol li {
  border-right: 1px solid #fff;
  margin-right: 10px;
}
#footer .footer_bottom .company_info ol li:last-child {
  border-right: none;
}
#footer .footer_bottom .company_info ol li span {
  font-weight: 800;
  display: inline-block;
  padding: 0 10px;
}
#footer .copy {
  text-align: center;
  font-size: 0.875em;
  font-weight: 800;
}
@media (max-width: 768px) {
  #footer .copy {
    font-size: 0.5em;
  }
}

@media (max-width: 768px) {
  #footer {
    padding-top: 2rem;
  }
  #footer .footer_top {
    flex-direction: column;
    display: none;
  }
  #footer .footer_top .footer_nav {
    font-size: 0.875rem;
    display: none;
  }
  #footer .footer_top .footer_nav li {
    padding: 0 5px;
  }
  #footer .footer_bottom {
    border: none;
    padding: 0;
  }
  #footer .footer_bottom .terms ul {
    justify-content: center;
    margin-bottom: 10px;
  }
  #footer .footer_bottom .company_info ol {
    align-items: center;
    justify-content: center;
    font-size: 0.875rem;
    margin-bottom: 0;
    flex-wrap: wrap;
  }
  #footer .footer_bottom .company_info ol li {
    border-right: none;
    margin-right: 0;
    margin: 5px 10px;
    font-size: 0.5rem;
    width: auto;
    line-height: 1.5;
  }
  #footer .footer_bottom .company_info ol li:last-child {
    border-right: none;
    display: flex;
    align-items: flex-start;
    justify-content: center;
  }
  #footer .footer_bottom .company_info ol li:last-child span {
    text-align: center;
  }
  #footer .footer_bottom .company_info ol li span {
    font-weight: 800;
    display: inline-block;
    padding: 0;
  }
}
.m-fixed-qm {
  display: none;
}
@media (max-width: 768px) {
  .m-fixed-qm {
    position: fixed;
    right: 10px;
    bottom: 5%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 300;
  }
  .m-fixed-qm > a {
    position: relative;
    width: 60px;
    height: auto;
    aspect-ratio: 1/1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 4px;
    border-radius: 100000rem;
    overflow: hidden;
  }
  .m-fixed-qm > a.for-phone {
    background-image: linear-gradient(to top, #1e3c72 0%, #1e3c72 1%, #2a5298 100%);
  }
  .m-fixed-qm > a.for-phone > span {
    color: white;
  }
  .m-fixed-qm > a.for-kkt {
    background: #FAE100;
  }
  .m-fixed-qm > a.for-kkt > span {
    color: #371C1D;
  }
  .m-fixed-qm > a > img {
    width: auto;
    height: 40%;
  }
  .m-fixed-qm > a > span {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.1;
    word-break: keep-all;
    text-align: center;
  }
}/*# sourceMappingURL=nav.css.map */