/* -----------------------------------------------
Reset
-------------------------------------------------- */
html {
  font-family: sans-serif;
  overflow-x: auto;
  overflow-y: scroll;
}
body {
  background-color: #ffffff;
  margin: 0;
  padding: 0;
  -webkit-text-size-adjust: none;
  overflow-x: hidden;
}
a {
  background: transparent;
  outline: 0 !important;
}
a:focus {
  outline: thin dotted;
}
a:active,
a:hover {
  outline: 0;
}
html,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
code,
del,
em,
img,
strong,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  vertical-align: baseline;
}
article,
aside,
footer,
header,
small,
nav,
section,
figure,
figcaption,
main {
  margin: 0;
  padding: 0;
  display: block;
  vertical-align: baseline;
  list-style: none;
  background-color: transparent;
  outline: none;
}
audio,
canvas,
video {
  display: inline-block;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
img {
  line-height: 1;
  vertical-align: middle;
}
a img {
  border: none;
}
img[usemap],
map area {
  border: none !important;
  outline: none !important;
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
hr {
  box-sizing: content-box;
  height: 0;
}
dt,
dd,
li,
th,
td,
input,
textarea {
  text-align: left;
  vertical-align: top;
}
button,
label {
  background-color: transparent;
  cursor: pointer;
  border: 0;
}
button,
select {
  text-transform: none;
}
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer;
}
button[disabled],
html input[disabled] {
  cursor: default;
}
input[type="checkbox"],
input[type="radio"] {
  box-sizing: content-box;
  padding: 0;
}
input[type="search"] {
  -webkit-appearance: textfield;
  box-sizing: content-box;
}
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
textarea {
  overflow: auto;
  vertical-align: top;
}
.hidden {
  display: none !important;
}
.show_sp {
  display: none !important;
}
.show_pc {
  display: block !important;
}
@media (max-width: 991px) {
  .show_sp {
    display: block !important;
  }
  .show_pc {
    display: none !important;
  }
  .nav_pc {
    display: none;
  }
}
.w25 {
  width: 25%;
}
.w30 {
  width: 30%;
}
.w50 {
  width: 50%;
}
.w100 {
  width: 100%;
}
.list_disc {
  list-style-type: disc;
  padding-left: 32px;
}
@media (max-width: 991px) {
  .list_disc {
    list-style-type: disc;
    padding-left: 28px;
  }
}
figure.media iframe {
  width: 100%;
  height: 100%;
  aspect-ratio: 16 / 9;
}
.error,
.error_message {
  color: #f00;
  font-size: 14px;
  font-weight: 500;
  margin-top: 6px;
  display: block;
  text-align: left;
}
.error:empty {
  margin: 0;
}
@media (max-width: 991px) {
  .error,
  .error_message {
    font-size: 12px;
  }
}
/* -----------------------------------------------
Base
-------------------------------------------------- */
header,
body,
footer {
  font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto,
    Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", sans-serif;
  font-size: 16px;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  /* sp */
}

h1,
h2,
h3,
h4,
h5,
h6,
th,
td {
  line-height: 1.4;
  font-size: 100%;
}
p,
li,
input,
textarea,
figcaption {
  line-height: 1.4;
}
input,
textarea,
button,
select {
  font-size: 100%;
  outline: none;
}
strong {
  font-weight: bold;
}
em {
  font-weight: bold;
}
a {
  text-decoration: none;
}
a:hover,
a:active {
  text-decoration: none;
}
a,
input,
label {
  -webkit-tap-highlight-color: transparent;
}
img {
  max-width: 100%;
  height: auto;
}
* {
  box-sizing: border-box;
}

@keyframes rotateDots {
  0% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
    transform: translate(-50%, -50%) rotate(0deg);
  }

  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes scrollMotion {
  0% {
    bottom: 95px;
  }

  30% {
    bottom: 0px;
  }

  100% {
    -webkit-transform: translateX(-50%) scale(10);
    transform: translateX(-50%) scale(10);
    opacity: 0;
    bottom: 0px;
  }
}
@keyframes introduction {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }

  100% {
    -webkit-transform: translateY(0px);
    transform: translateY(0px);
    opacity: 1;
  }
}

@-webkit-keyframes graphAnim {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes graphAnim {
  0% {
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
  }
}

@keyframes fadeInUp {
  0% {
    -webkit-transform: translateY(20px);
    transform: translateY(20px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fadeInRight {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fadeInLeft {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
.anime {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.anime.animated {
  -webkit-animation: fadeInUp 0.8s forwards;
  animation: fadeInUp 0.8s forwards;
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.anime_right {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.anime_left {
  display: block;
  opacity: 0;
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
}

.anime_right.animated {
  -webkit-animation: fadeInRight 0.8s forwards;
  animation: fadeInRight 0.8s forwards;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

.anime_left.animated {
  -webkit-animation: fadeInLeft 0.8s forwards;
  animation: fadeInLeft 0.8s forwards;
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s;
}

/* -----------------------------------------------
Slick Slider
-------------------------------------------------- */
.slick-dots {
  bottom: -38px;
}
.slick-dots li {
  width: 8px;
  height: 8px;
  margin: 0 6px;
}
.slick-dots li.slick-active {
  width: 15px;
  border-radius: 4px;
}
.slick-dots li button {
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #627280;
  padding: 0;
}
.slick-dots li.slick-active button {
  width: 15px;
  border-radius: 4px;
  background-color: #1e70da;
}
.slick-dots li button:before {
  content: none;
}
@media (max-width: 991px) {
  .slick-dots li {
    margin: 0 4px;
  }
  .slick-dots li.slick-active {
    width: 14px;
  }
  .slick-dots li.slick-active button {
    width: 14px;
  }
}

/* -----------------------------------------------
Header
-------------------------------------------------- */

header {
  width: 100%;
  height: 60px;
  position: fixed;
  left: 0;
  top: 0;
  text-align: left;
  background: #fff;
  z-index: 1005;
  padding: 0 200px;
  border-bottom: 1px solid #d5d5d5;
}
header .header_box {
  width: 100%;
  height: 100%;
}
header .gnb {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  position: relative;
  box-sizing: border-box;
}
header .logo {
  width: 156px;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 0;
  margin-top: 0;
  margin-bottom: 0;
  margin-left: -80px;
  z-index: 101;
}
header .logo a {
  width: 100%;
  height: 100%;
  display: block;
  padding: 0;
  font-size: 0;
  line-height: 0;
  background: url("../images/common/logo.svg") no-repeat center center;
}
header .top_menu {
  width: 210px;
  height: 100%;
  position: relative;
  display: table;
  box-sizing: border-box;
  padding: 0 0 5px;
  margin: 0;
}
header .top_menu li {
  height: 100%;
  position: relative;
  display: table-cell;
  vertical-align: middle;
}
header .top_menu li a {
  display: inline-block;
  text-align: left;
  font-size: 16px;
  line-height: 24px;
  font-weight: 600;
  color: #696969;
  position: relative;
}
header .top_menu li a:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 10px;
  height: 2px;
  background: #c4c4c4;
  transition: all 0.8s ease;
}
header .top_menu li a:hover {
  color: #000;
}
header .top_menu li a:hover:after {
  width: 100%;
  background: #000;
}

.language {
  width: fit-content;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -12px;
  z-index: 9999;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  gap: 10px;
}
.language > span {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 17px;
  line-height: 24px;
  color: #696969;
  font-family: "MontserratSB";
  position: relative;
}

.language a {
  font-size: 16px;
  font-weight: 600;
  padding: 6px 10px;
  text-align: center;
  width: 120px;
  display: inline-block;
}

.language .login_btn {
  border: 1px solid #013198;
  color: #0052ff;
}

.language .join_btn {
  color: #696969;
}

.language_mb {
  width: fit-content;
  position: absolute;
  left: 0;
  top: 50%;
  margin-top: -12px;
  z-index: 9999;
  box-sizing: border-box;
}
.language_mb > span {
  text-align: left;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 17px;
  line-height: 24px;
  color: #696969;
  font-family: "MontserratSB";
  position: relative;
}

.language .dropdown_btn {
  width: 15px;
  height: 17px;
  position: relative;
  padding: 0;
  margin-left: 10px;
}

.language .partner_btn {
  width: 18px;
  height: 19px;
  position: relative;
  padding: 0;
  margin-left: 10px;
}

.language .dropdown_btn img,
.language .partner_btn img {
  width: 100%;
  height: auto;
  margin-bottom: 4px;
}

.language .dropdown_btn:hover .dropdown_hover {
  display: block;
}

.language .dropdown_hover {
  position: absolute;
  left: -50px;
  top: 18px;
  display: none;
  padding-top: 22px;
}

.language .dropdown_hover a {
  font-size: 14px;
  color: #696969;
  padding: 6px 14px;
  background-color: #fff;
}

.language .dropdown_hover a:hover {
  background-color: #f1f1f1;
}

header .nav_display {
  width: 26px;
  height: 26px;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -13px;
  background: url("../images/common/nav_display_button.svg") no-repeat center
    center;
  transition: all 0.2s ease;
}

header .nav_display.on {
  background: url("../images/common/nav_close_button.svg") no-repeat center
    center;
}

@media (max-width: 1366px) {
  header {
    padding: 0 100px;
  }
}

@media (max-width: 991px) {
  header {
    padding: 0 20px;
  }
  header .logo {
    margin-left: -78px;
  }

  header .top_menu {
    display: none;
  }
}

/* -----------------------------------------------
Menu mobile
-------------------------------------------------- */

.mobile_menu {
  position: fixed;
  height: calc(100vh - 60px);
  width: 100vw;
  top: 60px;
  left: 0;
  padding: 20px 0;
  background-color: #f5f5f7;
  transition: all 0.5s ease;
  transform: translateX(100%);
}

.mobile_menu.on {
  transform: translateX(0);
}

.mobile_menu .login_menu {
  padding: 0 20px;
  margin-bottom: 20px;
}

.mobile_menu .login_menu .grid_box {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.mobile_menu .login_menu a {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
}

.mobile_menu .login_menu .login_btn {
  background: linear-gradient(356.29deg, #000068 -40.39%, #0052ff 96.95%);
  color: #fff;
}

.mobile_menu .login_menu .join_btn {
  color: #696969;
  border: 1px solid #c0c0c0;
}

.mobile_menu .logout_btn {
  font-size: 16px;
  font-weight: 600;
  padding: 10px 0;
  text-align: center;
  width: calc(100% - 40px);
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #696969;
  border: 1px solid #c0c0c0;
}

.accordion {
  height: calc(100% - 58px);
  overflow-y: auto;
}

.accordion_header {
  width: 100%;
  background-color: #f5f5f5;
  border: none;
  color: #696969;
  text-align: left;
  padding: 18px 20px;
  font-size: 16px;
  font-weight: 600;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  border-bottom: 1px solid #d5d5d5;
}
.accordion_header.active {
  border-radius: 5px 5px 0 0;
}
.accordion_content {
  display: none;
  flex-direction: column;
  border-bottom: 1px solid #d5d5d5;
}
.accordion_content ul {
  list-style-type: none;
  margin: 0;
}
.accordion_content a {
  display: block;
  padding: 13px 0;
  font-size: 14px;
  color: #222222;
  font-weight: 600;
}
.accordion_header a {
  font-size: 14px;
  color: #222222;
  font-weight: 600;
}
.accordion_header.accordion_icon {
  transition: transform 0.3s ease;
}
.accordion_header.accordion_icon:after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 8px;
  background-image: url(../images/common/arrow_down_black.svg);
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.accordion_header.accordion_icon.accordion_not_show:after {
  width: 0;
  height: 0;
}
.accordion_header.accordion_icon.active:after {
  transform: rotate(180deg);
}

.profile_menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 10px;
}
.profile_menu .profile_menu_item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px;
  color: #222;
  font-weight: 600;
}
.profile_menu .profile_menu_item a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #222;
  font-weight: 600;
}

.mobile_menu_bottom {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
}

.mobile_menu_bottom .menu_box {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  background-color: #fff;
  border-radius: 10px 10px 0 0;
  box-shadow: -7px -4px 19.1px 0px #00000025;
}
.mobile_menu_bottom .menu_box .item {
  padding: 15px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 10px;
  line-height: 10px;
  color: #696969;
}

.mobile_menu_bottom .menu_box .item img {
  width: 22px;
  height: 22px;
  margin-bottom: 5px;
}

/* -----------------------------------------------
Footer
-------------------------------------------------- */
.footer {
  background: #f4f4f4;
}
.footer .inner {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 30px;
  display: flex;
  justify-content: space-between;
}
.footer .logo_footer {
  width: 191px;
}
.footer ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.footer .term span,
.footer .term li,
.footer .term a {
  font-size: 14px;
  color: #000;
  text-align: left;
  text-wrap: nowrap;
}

.footer .term {
  margin-top: 20px;
}

.footer .list {
  margin-top: 20px;
}

.footer .term .line {
  margin: 0 10px;
}

.footer_content {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.footer_content .nav_footer {
  margin: 0 30px;
}
.footer_content .nav_footer h3 {
  font-size: 16px;
  color: #ffffff;
  font-weight: 600;
  margin-bottom: 30px;
}

.footer_content .nav_footer ul li {
  font-size: 14px;
  color: #000;
  text-align: left;
  text-align: right;
}
.footer_content .nav_footer ul li.num {
  font-weight: 600;
  font-size: 18px;
}
.footer .copyright {
  padding: 10px 30px;
  background: #7a7a7a;
}
.footer .copyright p {
  max-width: 1600px;
  width: 100%;
  margin: 0 auto;
  color: #cbd1d6;
  font-size: 14px;
  text-align: left;
}
@media (max-width: 991px) {
  .footer .inner {
    max-width: 100%;
    width: 100%;
    margin: 0 auto;
    padding: 30px 20px 140px 20px;
    flex-direction: column;
  }
  .footer .logo_footer {
    width: 100%;
    margin-bottom: 30px;
  }
  .footer_content {
    flex-direction: column;
    align-items: start;
  }
  .footer_content .nav_footer ul li {
    text-align: left;
  }
  .footer_content .nav_footer {
    margin: 0px;
  }
  .footer_content .nav_footer h3 {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .footer_content .nav_footer ul li {
    font-size: 12px;
  }
  .footer .copyright p {
    font-size: 11px;
    text-align: center;
  }
}

.header_submenu-bg {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-height: 190px;
  background: #ffffff;
  z-index: 998;
  opacity: 1;
  pointer-events: none;
  transition: opacity 0.3s;
}

.header_submenu-bg.hide {
  opacity: 0;
  pointer-events: none;
}

@media (max-width: 991px) {
  .header_submenu-bg {
    display: none;
  }
  #chat-widget-container {
    bottom: 67px !important;
  }
}

/* -----------------------------------------------
Menu cmm
-------------------------------------------------- */

.menu_cmm_box {
  width: 100%;
  padding: 0 10%;
  margin-bottom: -100px;
  box-sizing: border-box;
  z-index: 100;
  height: 50px;
  position: relative;
}

.menu_cmm {
  width: 100%;
  height: 50px;
}
.menu_cmm > ul {
  width: 100%;
  display: flex;
  justify-content: center;
  position: relative;
  margin: 0;
  padding: 0;
  height: 50px;
}
.menu_cmm_box:hover{
  background-color: #fff;
}
.menu_cmm_box .menu_cmm > ul:hover > li {
  width: 12.85%;
}
.menu_cmm > ul > li {
  width: 11%;
  display: table-cell;
  vertical-align: top;
  text-align: center;
  z-index: 999;
  position: relative;
  transition: all 0.8s ease;
}
.menu_cmm > ul > li.is-hover > a{
  color: #1e70da !important;
}
.menu_cmm > ul > li > span {
  display: block;
  width: 100%;
  height: 50px;
  background: #fff;
  position: relative;
  z-index: 100;
}
.menu_cmm > ul > li > a {
  display: block;
  width: 100%;
  height: 50px;
  box-sizing: border-box;
  font-family: "NotokrB";
  line-height: 50px;
  position: relative;
  z-index: 101;
  font-weight: 600;
}
.menu_cmm_box:hover .menu_cmm > ul > li > a{
  color: #000;
}
.menu_cmm > ul > li > ul {
  width: 100%;
  position: absolute;
  z-index: 999;
  left: 0;
  top: 50px;
  box-sizing: border-box;
  padding-left: 0;
  text-align: center;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-10px);
  transition: transform 0.6s ease-in-out;
  pointer-events: none;
  padding: 20px 0;
}

.menu_cmm > ul > li > a {
  color: #fff;
}
.menu_cmm > ul > li > a:hover{
  color: #1e70da !important;
}
.menu_cmm > ul > li > ul > li {
  width: 100%;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  position: relative;
}
.menu_cmm > ul > li > ul > li + li {
  margin-left: -5px;
}
.menu_cmm > ul > li > ul > li a {
  display: block;
  height: 50px;
  line-height: 50px;
  padding: 0 15px;
  box-sizing: border-box;
  color: #000;
  font-weight: 500;
}
.menu_cmm > ul > li > span {
  opacity: 0;
  transition: all 0.35s ease;
}
.menu_cmm > ul > li > ul li a {
  transition: all 0.2s ease;
}
.header_submenu-bg {
  position: absolute;
  left: 0;
  top: 100%;
  width: 100%;
  min-height: 190px;
  background: #ffffff;
  z-index: 900;
  pointer-events: none;
  transition: all 0.6s ease;
  border-top: 1px solid #d8d8d8;
}
.header_submenu-bg.hide {
  min-height: 0;
  height: 0;
  pointer-events: none;
}
@media (max-width: 991px) {
  .menu_cmm {
    display: none;
  }
}

/* -----------------------------------------------
Main
-------------------------------------------------- */

.main {
  margin-top: 60px;
}

/* nodata */

.td-nodata {
  text-align: center !important;
}

.td-nodata img {
  max-width: 180px;
}

.text-nodata {
  font-size: 14px;
  line-height: 22px;
}

@media (max-width: 1280px) {
  .td-nodata img {
    max-width: 120px;
  }
  .text-nodata {
    font-size: 12px;
    line-height: 18px;
  }
}
