@charset "UTF-8";
/*============================================================
Color
===========================================================*/
/*------------------------------------------------------------
    Reset
------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
nav,
section,
time,
mark,
audio,
video {
  border: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin: 0;
  outline: 0;
  padding: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
main {
  display: block;
}

html {
  font-size: 62.5%;
}

body,
table,
input,
textarea,
select,
option,
h1,
h2,
h3,
h4,
h5,
h6 {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

input,
textarea,
button,
select,
option {
  font-family: "Mona Sans", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: bold;
  font-size: inherit;
}

blockquote,
q {
  quotes: none;
}

:focus {
  outline: 0;
}

ins {
  text-decoration: none;
}

del {
  text-decoration: line-through;
}

img {
  vertical-align: top;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Layout .l-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/* Header
------------------------------------------------------------*/
.c-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 0 32px;
  z-index: 999;
}
@media only screen and (max-width: 767px) {
  .c-header {
    padding: 0 16px;
  }
}
.c-header__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 12px 24px;
  background: rgba(245, 238, 255, 0.05);
  border: 1px solid rgba(245, 238, 255, 0.15);
  -webkit-backdrop-filter: blur(17px);
          backdrop-filter: blur(17px);
  border-radius: 12px;
  max-width: 1140px;
  margin: 32px auto 0;
}
@media only screen and (max-width: 1140px) {
  .c-header__wrap {
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .c-header__wrap {
    margin: 16px auto 0;
  }
}
.c-header__logo {
  max-width: 184px;
}
@media only screen and (max-width: 1140px) {
  .c-header__logo {
    max-width: 160px;
  }
}
@media only screen and (max-width: 1140px) {
  .c-header__logo {
    position: relative;
    z-index: 1000;
  }
}
@media only screen and (max-width: 767px) {
  .c-header__logo {
    max-width: 148px;
  }
}
.c-header__toggle {
  display: none;
}
@media only screen and (min-width: 1141px) {
  .c-header__toggle {
    display: none !important;
  }
}
@media only screen and (max-width: 1140px) {
  .c-header__toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 40px;
    height: 40px;
    position: relative;
    z-index: 1000;
  }
  .c-header__toggle .on {
    display: none;
  }
  .c-header__toggle.is-active .on {
    display: block;
  }
  .c-header__toggle.is-active .off {
    display: none;
  }
}
.c-header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 1140px) {
  .c-header__nav {
    gap: 24px;
  }
}
@media only screen and (max-width: 1140px) {
  .c-header__nav {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: -32px;
    left: -32px;
    opacity: 0;
    pointer-events: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    background: #000000;
    z-index: 999;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    padding: 120px 56px 32px;
  }
  .c-header__nav.is-active {
    opacity: 1;
    pointer-events: initial;
  }
}
.c-header__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
@media only screen and (max-width: 1140px) {
  .c-header__list {
    gap: 7px;
  }
}
@media only screen and (max-width: 1140px) {
  .c-header__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.c-header__link {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
@media only screen and (max-width: 1140px) {
  .c-header__link {
    font-size: 1.4rem;
  }
}
@media only screen and (min-width: 768px) {
  .c-header__link:hover {
    color: #0370CB;
  }
}
.c-header__link.is-active {
  color: #0370CB;
}
.c-header .c-btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media only screen and (max-width: 1140px) {
  .c-header .c-btn {
    width: 100%;
    max-width: 100%;
  }
}

/*------------------------------------------------------------
footer
------------------------------------------------------------*/
.c-footer {
  padding: 80px 0 40px;
}
@media only screen and (max-width: 1140px) {
  .c-footer {
    padding: 48px 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer {
    padding: 32px 0;
  }
}
.c-footer__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  color: #F5EEFF;
}
@media only screen and (max-width: 1140px) {
  .c-footer__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 48px 30px;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__wrap {
    gap: 0;
  }
}
.c-footer__col {
  width: 33.3333333333%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
@media only screen and (max-width: 1140px) {
  .c-footer__col {
    width: calc(50% - 15px);
    margin: 0 !important;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__col {
    width: 100%;
  }
}
.c-footer__col:first-child {
  gap: 24px;
}
@media only screen and (max-width: 1140px) {
  .c-footer__col:first-child {
    width: 100%;
  }
}
.c-footer__col:nth-child(2) {
  margin: 0 30px 0 48px;
}
@media only screen and (max-width: 767px) {
  .c-footer__col:nth-child(2) {
    margin: 48px 0 24px !important;
  }
}
.c-footer .c-des {
  text-align: left;
  max-width: 100%;
  margin: 0;
}
.c-footer__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.c-footer__info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-footer__info li svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-footer__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 22px;
}
.c-footer__label {
  margin-bottom: 12px;
}
.c-footer__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 12px;
  margin-bottom: 50px;
}
@media only screen and (max-width: 1140px) {
  .c-footer__social {
    margin-bottom: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__social {
    margin-bottom: 24px;
  }
}
.c-footer__social li a {
  width: 32px;
  height: 32px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #EDF0F2;
  border-radius: 8px;
}
.c-footer__social li a svg {
  width: 18px;
  height: 18px;
}
.c-footer__news {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 1px 2px rgba(2, 44, 34, 0.08), 0px 0px 0px 1px rgba(2, 44, 34, 0.13);
          box-shadow: 0px 1px 2px rgba(2, 44, 34, 0.08), 0px 0px 0px 1px rgba(2, 44, 34, 0.13);
  border-radius: 10px;
  padding: 8px 8px 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-footer__news svg {
  width: 20px;
  height: 20px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-footer__news input {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  border: none;
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-size: 1.6rem;
  line-height: 24px;
  padding: 0;
  border: 0;
  vertical-align: middle;
  margin: 0;
}
.c-footer__news input::-webkit-input-placeholder {
  color: #878787;
}
.c-footer__news input::-moz-placeholder {
  color: #878787;
}
.c-footer__news input:-ms-input-placeholder {
  color: #878787;
}
.c-footer__news input::-ms-input-placeholder {
  color: #878787;
}
.c-footer__news input::placeholder {
  color: #878787;
}
.c-footer__news button {
  width: 109px;
  height: 37px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: #101010;
  color: #FFFFFF;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  font-weight: 500;
  border-radius: 5px;
  border: none;
}
.c-footer__bottom {
  margin-top: 48px;
  padding-top: 20px;
  border-top: 1px dashed rgba(245, 238, 255, 0.15);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 20px;
}
@media only screen and (max-width: 1140px) {
  .c-footer__bottom {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .c-footer__bottom {
    margin-top: 24px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 24px;
  }
}
.c-footer__gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}

/*------------------------------------------------------------
sidebar
------------------------------------------------------------*/
/* Breadcrumb
------------------------------------------------------------*/
/* layout
------------------------------------------------------------*/
.sp-only {
  display: none;
}

@media only screen and (max-width: 767px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
}
body {
  background: #000000;
  font-family: "Mona Sans", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.l-container {
  max-width: 1440px;
  padding: 0 32px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .l-container {
    padding: 0 16px;
  }
}

main {
  position: relative;
  overflow: hidden;
}
main:not(.p-top) {
  padding-top: 160px;
}
@media only screen and (max-width: 767px) {
  main:not(.p-top) {
    padding-top: 120px;
  }
}

.c-section {
  padding: 80px 0;
}
@media only screen and (max-width: 1140px) {
  .c-section {
    padding: 50px 0;
  }
}
@media only screen and (max-width: 767px) {
  .c-section {
    padding: 32px 0;
  }
}
.c-section__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media only screen and (max-width: 1140px) {
  .c-section__wrap {
    gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .c-section__wrap {
    gap: 24px;
  }
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Component .c-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
btn
------------------------------------------------------------*/
.c-btn {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  margin: 0 auto;
}
.c-btn a,
.c-btn button {
  height: 48px;
  display: block;
  padding: 12px 24px;
  font-weight: bold;
  background: linear-gradient(108.43deg, #02369E 0.76%, #0370CB 99.23%);
  -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
          box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 32px;
  text-align: center;
  border: none;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #FFFFFF;
  cursor: pointer;
  font-size: 16px;
}
.c-btn.is-white a,
.c-btn.is-white button {
  background: #F5EEFF;
  color: #005DAB;
  -webkit-box-shadow: none;
          box-shadow: none;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
title
------------------------------------------------------------*/
.c-titleMain {
  font-weight: 400;
  font-size: 48px;
  line-height: 56px;
  color: #DEF0FF;
  text-align: center;
}
@media only screen and (max-width: 1140px) {
  .c-titleMain {
    font-size: 3.2rem;
    line-height: 44px;
  }
}
@media only screen and (max-width: 767px) {
  .c-titleMain {
    font-size: 2.4rem;
    line-height: 32px;
    letter-spacing: -2px;
  }
  .c-titleMain br {
    display: none;
  }
}
.c-titleMain span {
  color: #0370CB;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
icon
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
form
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
text
------------------------------------------------------------*/
.c-tag {
  padding: 10px 15px;
  background: -webkit-gradient(linear, left top, left bottom, from(#000A12), color-stop(50.96%, rgba(1, 32, 59, 0.5)), to(rgba(3, 112, 203, 0.2)));
  background: linear-gradient(180deg, #000A12 0%, rgba(1, 32, 59, 0.5) 50.96%, rgba(3, 112, 203, 0.2) 100%);
  border: 1px solid #0370CB;
  -webkit-backdrop-filter: blur(5px);
          backdrop-filter: blur(5px);
  border-radius: 1000px;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-align: center;
  color: #DEF0FF;
  margin: 0 auto;
  font-weight: 400;
}
@media only screen and (max-width: 767px) {
  .c-tag {
    font-size: 1.4rem;
    line-height: 20px;
  }
}

.c-des {
  color: #F5EEFF;
  max-width: 628px;
  text-align: center;
  margin: 0 auto;
}

/*
------------------------------------------------------------*/
/*------------------------------------------------------------
navi
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
img
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
list
------------------------------------------------------------*/
.c-marketData {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1140px) {
  .c-marketData {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-marketData .c-card {
  width: 25%;
  padding: 12px;
  text-align: center;
}
@media only screen and (max-width: 1140px) {
  .c-marketData .c-card {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 767px) {
  .c-marketData .c-card {
    width: 100%;
  }
}
.c-marketData .c-card:nth-child(4) .c-card__tag {
  letter-spacing: -0.04em;
}

.c-challenge,
.c-option {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1140px) {
  .c-challenge,
  .c-option {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.c-challenge .c-card,
.c-option .c-card {
  width: 25%;
}
@media only screen and (max-width: 1140px) {
  .c-challenge .c-card,
  .c-option .c-card {
    width: calc(50% - 12px);
  }
}
@media only screen and (max-width: 767px) {
  .c-challenge .c-card,
  .c-option .c-card {
    width: 100%;
  }
}

@media only screen and (max-width: 767px) {
  .c-trade .c-card__title {
    font-size: 1.6rem;
    line-height: 24px;
  }
}
.c-trade .c-card__text {
  font-size: 1.4rem;
  line-height: 20px;
}

.c-option .c-card__title {
  letter-spacing: -0.02em;
  margin-bottom: 5px;
}

/*------------------------------------------------------------
table
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
line
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
/*------------------------------------------------------------
video
------------------------------------------------------------*/
/*
------------------------------------------------------------*/
.c-cookie {
  position: fixed;
  bottom: 20px;
  left: 20px;
  right: 20px;
  z-index: 9999;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 16px;
  padding: 16px;
  -webkit-box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
          box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  -webkit-transform: translateY(100px);
          transform: translateY(100px);
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  max-width: 500px;
  border: 1px solid #2f2f2f;
}
@media (min-width: 768px) {
  .c-cookie {
    left: auto;
    right: 30px;
    bottom: 30px;
  }
}
.c-cookie.is-active {
  -webkit-transform: translateY(0);
          transform: translateY(0);
  opacity: 1;
  visibility: visible;
}
.c-cookie__title {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: #ffffff;
  line-height: 1.4;
  border-bottom: 1px solid #2f2f2f;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.c-cookie__text {
  font-size: 16px;
  line-height: 1.6;
  color: #ffffff;
  margin-bottom: 24px;
}
.c-cookie__actions {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 12px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.c-cookie__actions .c-btn {
  margin: 0;
}
.c-cookie__actions .c-btn.is-white button {
  color: #101010;
}

body.cookie-lock {
  overflow: hidden;
}
@media (min-width: 768px) {
  body.cookie-lock {
    overflow: auto;
  }
}

/* Custom Pagination Styles */
.c-pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.c-pagination__prev,
.c-pagination__next {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}

.c-pagination__prev,
.c-pagination__next {
  background: #f5f5f5;
  border: 1px solid #e0e0e0;
  color: var(--text-primary);
}
.c-pagination__prev:hover,
.c-pagination__next:hover {
  background: #e0e0e0;
}

.c-pagination__numbers {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 4px;
}

.c-pagination__number {
  min-width: 40px;
  height: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 14px;
  color: #505254;
  border-radius: 100%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  background: #ffffff;
}
.c-pagination__number:hover {
  background: #e0dfdf;
}
.c-pagination__number--current {
  background: #005dab;
  color: white;
}

.c-pagination__dots {
  padding: 0 8px;
  color: var(--text-secondary);
  font-size: 14px;
}

@media screen and (max-width: 767px) {
  .c-pagination {
    gap: 4px;
  }
  .c-pagination__prev,
  .c-pagination__next {
    width: 40px;
    height: 40px;
  }
  .c-pagination__number {
    min-width: 32px;
    height: 32px;
    font-size: 12px;
  }
}
/*------------------------------------------------------------
other
------------------------------------------------------------*/
.c-mv {
  background: url("../images/common/background.svg") no-repeat center;
  background-size: cover;
  height: auto;
  padding-top: 180px;
}
@media only screen and (max-width: 1140px) {
  .c-mv {
    padding-top: 160px;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv {
    padding-top: 120px;
  }
}
.c-mv__wrap {
  max-width: 976px;
  margin: 0 auto;
  padding: 0 32px 56px;
}
@media only screen and (max-width: 1140px) {
  .c-mv__wrap {
    padding: 0 32px 40px;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv__wrap {
    padding: 0 16px 32px;
  }
}
.c-mv__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
}
.c-mv .c-tag {
  margin-bottom: 0;
}
@media only screen and (max-width: 1140px) {
  .c-mv .c-titleMain br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv .c-des {
    font-smooth: 1.4rem;
    line-height: 20px;
  }
}
.c-mv .c-btn {
  margin-top: 28px;
}
@media only screen and (max-width: 1140px) {
  .c-mv .c-btn {
    margin-top: 12px;
  }
}
@media only screen and (max-width: 767px) {
  .c-mv .c-btn {
    margin-top: 4px;
  }
}

.c-client {
  margin: 0 auto;
}
.c-client__wrap {
  padding: 40px 0;
}
@media only screen and (max-width: 1140px) {
  .c-client__wrap {
    padding: 24px 0;
  }
}
.c-client__list {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.c-client .swiper-slide {
  padding: 5px 0;
  width: auto;
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
}
.c-client .swiper-slide img {
  width: 100%;
}
.c-client .swiper-wrapper {
  -webkit-animation: scroll-left 15s linear infinite;
          animation: scroll-left 15s linear infinite;
}

@-webkit-keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}

@keyframes scroll-left {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
}
.c-bl__title {
  font-size: 2rem;
  line-height: 30px;
  font-weight: 500;
  color: #F5EEFF;
  margin-bottom: 24px;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  .c-bl__title {
    font-size: 1.6rem;
    line-height: 24px;
  }
}

.c-card {
  padding: 24px;
  background: rgba(9, 0, 20, 0.1);
  border: 1px solid rgba(222, 240, 255, 0.15);
  border-radius: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.c-card__data {
  font-size: 3.2rem;
  line-height: 60px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: #72BFFF;
  white-space: nowrap;
}
@media only screen and (max-width: 1440px) {
  .c-card__data {
    font-size: 2.2222222222vw;
    line-height: 4.1666666667vw;
  }
}
@media only screen and (max-width: 1140px) {
  .c-card__data {
    font-size: 2.4rem;
    line-height: 32px;
  }
}
.c-card__tag {
  padding: 12px;
  background: rgba(222, 240, 255, 0.05);
  border: 1px solid rgba(222, 240, 255, 0.15);
  border-radius: 12px;
  white-space: nowrap;
}
@media only screen and (max-width: 1440px) {
  .c-card__tag {
    font-size: 1.1111111111vw;
    line-height: 1.6666666667vw;
  }
}
@media only screen and (max-width: 1140px) {
  .c-card__tag {
    font-size: 1.6rem;
    line-height: 24px;
  }
}
.c-card__icon {
  width: 56px;
  height: 56px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-card__title {
  font-size: 2rem;
  line-height: 30px;
  font-weight: bold;
  color: #DEF0FF;
}
.c-card__text {
  color: #DEF0FF;
}
.c-card__box {
  background: #3293FC;
  padding: 12px;
  border-radius: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.c-card__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 20px;
  padding: 12px;
}
.c-card__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
}
.c-card__list li svg {
  width: 24px;
  height: 24px;
}

.c-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  z-index: 999;
  background: #637381;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 0.8;
}
.c-overlay.is-active {
  width: 100%;
}

.c-modal {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1000;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.c-modal.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: initial;
}
.c-modal__wrap {
  padding: 65px 32px;
  height: 100vh;
  overflow: auto;
}
@media only screen and (max-width: 767px) {
  .c-modal__wrap {
    padding: 32px 16px;
  }
}
.c-modal__box {
  background: #0A0F18;
  border-radius: 32px;
  padding: 48px;
  max-width: 712px;
  letter-spacing: -0.01em;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .c-modal__box {
    padding: 24px;
    border-radius: 16px;
  }
}
.c-modal__title {
  font-size: 4.8rem;
  line-height: 1.1;
  margin-bottom: 24px;
}
@media only screen and (max-width: 767px) {
  .c-modal__title {
    font-size: 3.2rem;
  }
}
.c-modal__text {
  font-size: 1.4rem;
  line-height: 20px;
}
.c-modal__form {
  margin-top: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 14px;
}
.c-modal__label {
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .c-modal__label {
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.c-modal__input, .c-modal__textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  padding: 12px 16px;
  background: none;
  border: 1px solid rgba(222, 240, 255, 0.1);
  height: 47px;
  width: 100%;
  border-radius: 10px;
  color: #FFFFFF;
  font-size: 1.6rem;
}
.c-modal__input::-webkit-input-placeholder, .c-modal__textarea::-webkit-input-placeholder {
  color: #787878;
}
.c-modal__input::-moz-placeholder, .c-modal__textarea::-moz-placeholder {
  color: #787878;
}
.c-modal__input:-ms-input-placeholder, .c-modal__textarea:-ms-input-placeholder {
  color: #787878;
}
.c-modal__input::-ms-input-placeholder, .c-modal__textarea::-ms-input-placeholder {
  color: #787878;
}
.c-modal__input::placeholder, .c-modal__textarea::placeholder {
  color: #787878;
}
.c-modal__textarea {
  min-height: 113px;
  resize: none;
}
.c-modal__checkbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .c-modal__checkbox {
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.c-modal__checkbox input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 20px;
  height: 20px;
  border: 1px solid #005DAB;
  border-radius: 4px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.c-modal__checkbox input:checked {
  background: #005DAB url("../images/common/icon/ic_checked.svg") no-repeat center/14px 14px;
}
.c-modal__submit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0px 24px;
  width: 150px;
  height: 48px;
  background: linear-gradient(108.43deg, #02369E 0.76%, #0370CB 99.23%);
  border-radius: 32px;
  line-height: 1.5;
  border: none;
  color: #FFFFFF;
  font-weight: 500;
  cursor: pointer;
}
.c-modal__submit:disabled {
  background: #878787;
}

.c-post {
  overflow: hidden;
  border-radius: 12px;
  border: 1px solid rgba(245, 238, 255, 0.15);
}
.c-post__img {
  width: 100%;
  aspect-ratio: 4.2/2.36;
  overflow: hidden;
  position: relative;
}
.c-post__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  border-radius: 12px;
}
.c-post__img iframe {
  width: 100%;
  min-height: 236px;
  border: none;
  margin-bottom: -6px;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-post__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding: 16px;
}
.c-post__time {
  min-height: 27px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 1.4rem;
  line-height: 20px;
  color: #a4a4a4;
}
.c-post__time span {
  margin: 0 8px;
}
.c-post__title {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 500;
}
@media only screen and (max-width: 767px) {
  .c-post__title {
    font-size: 1.6rem;
  }
}
.c-post__text {
  font-size: 1.4rem;
  line-height: 20px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  height: 60px;
  overflow: hidden;
}
.c-post:hover {
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  -webkit-transform: translateY(-6px);
          transform: translateY(-6px);
}

/*≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡
// Project .p-
≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡≡*/
/*------------------------------------------------------------
TOP
------------------------------------------------------------*/
.p-top .c-about__bl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-about__bl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-top .c-about__bl .c-titleMain {
  text-align: left;
  max-width: 536px;
  line-height: 60px;
  letter-spacing: -0.02em;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-about__bl .c-titleMain {
    line-height: 40px;
    max-width: 100%;
  }
  .p-top .c-about__bl .c-titleMain br {
    display: none;
  }
}
.p-top .c-about__title {
  font-weight: 600;
  color: #F5EEFF;
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-about__title {
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.p-top .c-about__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 12px;
}
.p-top .c-about__list li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-about__list li {
    font-size: 1.4rem;
    line-height: 20px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
.p-top .c-about__list li::before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-width: 8px 0 8px 10px;
  border-color: transparent transparent transparent #3293FC;
  -webkit-transform: rotate(0deg);
          transform: rotate(0deg);
  margin: 4.42px 0;
}
.p-top .c-about__img {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-about__img {
    gap: 12px;
  }
}
.p-top .c-about__img video {
  width: calc(50% - 12px);
  border-radius: 24px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-about__img video {
    width: calc(50% - 6px);
    border-radius: 12px;
  }
}
.p-top .c-about__img video:nth-child(1) {
  margin-bottom: 100px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-about__img video:nth-child(1) {
    margin-bottom: 30px;
  }
}
.p-top .c-about__img video:nth-child(2) {
  margin-top: 100px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-about__img video:nth-child(2) {
    margin-top: 30px;
  }
}
.p-top .c-solution__box {
  background: url(../images/top/solution_bg.svg) no-repeat center, -webkit-gradient(linear, left top, left bottom, from(#016eca), to(#006cc7));
  background: url(../images/top/solution_bg.svg) no-repeat center, linear-gradient(180deg, #016eca 0%, #006cc7 100%);
  background-size: cover;
  border-radius: 24px;
  padding: 50px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-solution__box {
    padding: 50px 24px;
  }
}
.p-top .c-solution__content {
  max-width: 976px;
  margin: 0 auto;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution__content {
    max-width: 100%;
  }
}
.p-top .c-solution__title {
  text-align: center;
  font-size: 3.2rem;
  line-height: 44px;
  color: #F5EEFF;
  font-weight: 500;
  margin-bottom: 32px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution__title {
    font-size: 2.4rem;
    line-height: 32px;
    white-space: nowrap;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-solution__title {
    font-size: 1.6rem;
    white-space: normal;
  }
  .p-top .c-solution__title br {
    display: none;
  }
}
.p-top .c-solution__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 20px 16px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution__list {
    gap: 16px;
  }
}
.p-top .c-solution__list li {
  width: calc(50% - 8px);
  letter-spacing: -0.01em;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution__list li {
    width: 100%;
  }
}
.p-top .c-solution__list li svg {
  width: 24px;
  height: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.p-top .c-solution .c-btn {
  margin-top: 48px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution .c-btn {
    margin-top: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-solution .c-btn {
    margin-top: 16px;
  }
}
.p-top .c-solution__img {
  margin: 70px 0 -50px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution__img {
    margin: 50px 0 -50px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-solution__img {
    margin: 32px 0 -50px;
  }
}
.p-top .c-solution__list2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
.p-top .c-solution__list2 .c-card {
  width: calc(50% - 12px);
  gap: 20px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution__list2 .c-card {
    width: 100%;
  }
}
.p-top .c-solution__list2 .c-card:last-child {
  width: 100%;
}
.p-top .c-solution__list2 .c-card__title {
  font-size: 2.4rem;
  line-height: 32px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-solution__list2 .c-card__title {
    font-size: 1.8rem;
    line-height: 34px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-solution__list2 .c-card__title {
    font-size: 1.6rem;
    line-height: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-solution__list2 .c-card__text {
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.p-top .c-team {
  background: -webkit-gradient(linear, left top, left bottom, from(#000000), color-stop(52.4%, rgba(0, 69, 131, 0.5)), to(rgba(0, 40, 76, 0)));
  background: linear-gradient(180deg, #000000 0%, rgba(0, 69, 131, 0.5) 52.4%, rgba(0, 40, 76, 0) 100%);
}
@media only screen and (max-width: 767px) {
  .p-top .c-team {
    padding: 48px 16px;
  }
}
.p-top .c-team__groupTit {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 24px;
}
.p-top .c-team__groupTit .c-des {
  max-width: 976px;
  text-align: left;
}
@media only screen and (max-width: 767px) {
  .p-top .c-team__slide {
    margin-right: -16px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-team__slide .swiper {
    margin-right: -16px;
  }
}
.p-top .c-team__slide .swiper-slide {
  max-width: 320px;
}
.p-top .c-team__content {
  margin-top: 30px;
  text-align: center;
}
.p-top .c-team__name {
  font-size: 2rem;
  line-height: 30px;
  font-weight: bold;
  color: #72BFFF;
  margin-bottom: 5px;
}
.p-top .c-team__text {
  color: #DEF0FF;
}
.p-top .c-team__toolbar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 30px;
}
.p-top .c-team__toolbar .swiper-pagination {
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  width: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
}
.p-top .c-team__toolbar .swiper-pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: #CBCBCB;
  border-radius: 50%;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}
.p-top .c-team__toolbar .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #3197FF;
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
  -webkit-box-shadow: 0px 23px 9px rgba(212, 212, 212, 0.02), 0px 13px 8px rgba(212, 212, 212, 0.06), 0px 6px 6px rgba(212, 212, 212, 0.11), 0px 1px 3px rgba(212, 212, 212, 0.12);
          box-shadow: 0px 23px 9px rgba(212, 212, 212, 0.02), 0px 13px 8px rgba(212, 212, 212, 0.06), 0px 6px 6px rgba(212, 212, 212, 0.11), 0px 1px 3px rgba(212, 212, 212, 0.12);
}
.p-top .c-team__toolbar .swiper-button-prev,
.p-top .c-team__toolbar .swiper-button-next {
  position: relative;
  top: auto;
  left: auto;
  bottom: auto;
  right: auto;
  margin: 0;
  opacity: 1;
  width: 56px;
  height: 56px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
}
.p-top .c-team__toolbar .swiper-button-prev svg,
.p-top .c-team__toolbar .swiper-button-next svg {
  width: 24px;
  height: 24px;
}
@media only screen and (min-width: 768px) {
  .p-top .c-team__toolbar .swiper-button-prev:hover,
  .p-top .c-team__toolbar .swiper-button-next:hover {
    -webkit-box-shadow: 0px 23px 9px rgba(212, 212, 212, 0.02), 0px 13px 8px rgba(212, 212, 212, 0.06), 0px 6px 6px rgba(212, 212, 212, 0.11), 0px 1px 3px rgba(212, 212, 212, 0.12);
            box-shadow: 0px 23px 9px rgba(212, 212, 212, 0.02), 0px 13px 8px rgba(212, 212, 212, 0.06), 0px 6px 6px rgba(212, 212, 212, 0.11), 0px 1px 3px rgba(212, 212, 212, 0.12);
    background: #3293FC;
    border-color: #3293FC;
  }
}
.p-top .c-team__toolbar .swiper-button-prev::after,
.p-top .c-team__toolbar .swiper-button-next::after {
  display: none;
}
.p-top .c-team__gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.p-top .c-roadmap .c-titleMain {
  text-align: left;
}
.p-top .c-roadmap__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
.p-top .c-roadmap__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  position: relative;
}
.p-top .c-roadmap__item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  height: calc(100% + 48px);
  border-left: 1px dashed #FFFFFF;
  z-index: -1;
}
@media only screen and (max-width: 767px) {
  .p-top .c-roadmap__item::after {
    left: 24px;
  }
}
.p-top .c-roadmap__item:last-child::before {
  content: "";
  position: absolute;
  bottom: -48px;
  left: 31px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #FFFFFF;
}
@media only screen and (max-width: 767px) {
  .p-top .c-roadmap__item:last-child::before {
    width: 8px;
    height: 8px;
    left: 21px;
  }
}
.p-top .c-roadmap__stt {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 1px solid #FFFFFF;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 600;
  background: #000000;
}
@media only screen and (max-width: 767px) {
  .p-top .c-roadmap__stt {
    width: 48px;
    height: 48px;
    font-size: 2.4rem;
    line-height: 32px;
  }
}
.p-top .c-roadmap__content {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.p-top .c-roadmap__icon img {
  height: 72px;
}
.p-top .c-roadmap__title {
  font-size: 2.4rem;
  line-height: 32px;
  font-weight: 600;
  margin: 16px 0 24px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-roadmap__title {
    font-size: 1.8rem;
    line-height: 26px;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-roadmap__title {
    font-size: 1.6rem;
  }
}
.p-top .c-roadmap__lst {
  margin-left: 28px;
}
@media only screen and (max-width: 767px) {
  .p-top .c-roadmap__lst {
    margin-left: 24px;
  }
}
.p-top .c-roadmap__lst li {
  list-style: disc;
}
@media only screen and (max-width: 767px) {
  .p-top .c-roadmap__lst li {
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.p-top .c-values__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-values__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-values__list {
    gap: 32px;
  }
}
.p-top .c-values__list .c-card {
  width: calc(50% - 24px);
  gap: 12px;
  padding: 12px;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-values__list .c-card {
    width: 100%;
  }
}
.p-top .c-contact {
  background: url("../images/common/background.svg") no-repeat center;
  background-size: cover;
}
.p-top .c-contact .c-des {
  max-width: 100%;
}
@media only screen and (max-width: 1140px) {
  .p-top .c-contact .c-des br {
    display: none;
  }
}
@media only screen and (max-width: 767px) {
  .p-top .c-contact .c-des {
    letter-spacing: -1px;
  }
}
.p-top .c-contact__gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 767px) {
  .p-top .c-contact__gr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 12px;
  }
}
.p-top .c-contact__gr .c-btn {
  margin: 0;
}

.p-tradingview__body {
  padding: 0 0 40px;
}
.p-tradingview__wrap {
  max-width: 768px;
  margin: 0 auto;
}
.p-tradingview__content * {
  letter-spacing: -0.01em;
}
.p-tradingview__content h2 {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .p-tradingview__content h2 {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}
.p-tradingview__content h2 + p {
  min-height: 115px;
}
.p-tradingview__content h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 24px 0;
}
@media only screen and (max-width: 767px) {
  .p-tradingview__content h3 {
    font-size: 2.4rem;
    padding: 12px 0;
  }
}
.p-tradingview__content h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .p-tradingview__content h4 {
    font-size: 1.6rem;
  }
}
.p-tradingview__content a {
  text-decoration: underline;
}
.p-tradingview__content p {
  margin-bottom: 16px;
  text-align: justify;
}
@media only screen and (max-width: 767px) {
  .p-tradingview__content p {
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.p-tradingview__content img {
  margin: 32px 0;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .p-tradingview__content img {
    border-radius: 8px;
    margin: 16px 0;
  }
}
.p-tradingview__content ul {
  padding-left: 24px;
}
.p-tradingview__content ul li {
  list-style: disc;
}
.p-tradingview__content ul li p {
  margin-left: -24px;
}
.p-tradingview__gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-tradingview__gr {
    display: block;
    margin-bottom: 24px;
  }
}
.p-tradingview__label {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}
.p-tradingview__social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.p-tradingview__social ul li svg {
  width: 18px;
  height: 18px;
}
.p-tradingview__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .p-tradingview__tag {
    margin-top: 8px;
  }
}
.p-tradingview__tag a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 4px 8px;
  letter-spacing: -0.01em;
  color: #72BFFF;
}

.p-policy__body {
  padding: 0 0 40px;
}
.p-policy__wrap {
  max-width: 768px;
  margin: 0 auto;
}
.p-policy__content * {
  letter-spacing: -0.01em;
}
.p-policy__content h2 {
  font-size: 4.8rem;
  line-height: 1.1;
  font-weight: 500;
  margin-bottom: 48px;
}
@media only screen and (max-width: 767px) {
  .p-policy__content h2 {
    font-size: 3.2rem;
    margin-bottom: 24px;
  }
}
.p-policy__content h3 {
  font-size: 3.2rem;
  line-height: 1.2;
  font-weight: 500;
  padding: 24px 0;
}
@media only screen and (max-width: 767px) {
  .p-policy__content h3 {
    font-size: 2.4rem;
    padding: 12px 0;
  }
}
.p-policy__content h4 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .p-policy__content h4 {
    font-size: 1.6rem;
  }
}
.p-policy__content a {
  text-decoration: underline;
}
.p-policy__content p {
  margin-bottom: 16px;
}
@media only screen and (max-width: 767px) {
  .p-policy__content p {
    font-size: 1.4rem;
    line-height: 20px;
  }
}
.p-policy__content p + ul {
  margin-top: -16px;
}
.p-policy__content img {
  margin: 32px 0;
  border-radius: 16px;
}
@media only screen and (max-width: 767px) {
  .p-policy__content img {
    border-radius: 8px;
    margin: 16px 0;
  }
}
.p-policy__content ul {
  padding-left: 24px;
  margin-bottom: 16px;
}
.p-policy__content ul li {
  list-style: disc;
}
.p-policy__content ul li p {
  margin-left: -24px;
}
.p-policy__gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  margin-top: 48px;
}
@media only screen and (max-width: 767px) {
  .p-policy__gr {
    display: block;
    margin-bottom: 24px;
  }
}
.p-policy__label {
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 16px;
}
.p-policy__social ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.p-policy__social ul li svg {
  width: 18px;
  height: 18px;
}
.p-policy__tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
@media only screen and (max-width: 767px) {
  .p-policy__tag {
    margin-top: 8px;
  }
}
.p-policy__tag a {
  display: block;
  font-size: 1.4rem;
  line-height: 1.5;
  font-weight: 500;
  padding: 4px 8px;
  letter-spacing: -0.01em;
  color: #72BFFF;
}

.p-blog__latest .c-titleMain {
  max-width: 1010px;
  margin: 0 auto;
}
.p-blog__latest .c-des {
  max-width: 630px;
  margin: 0 auto;
}
.p-blog__latest .c-post {
  min-height: 549px;
  width: 100%;
  max-width: 976px;
  position: relative;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  .p-blog__latest .c-post {
    min-height: 236px;
  }
}
.p-blog__latest .c-post__img iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-blog__latest .c-post__content {
  padding: 32px;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 16, 16, 0)), color-stop(56.73%, #101010));
  background: linear-gradient(180deg, rgba(16, 16, 16, 0) 0%, #101010 56.73%);
  border-radius: 0px 0px 16px 16px;
  color: var(--base);
}
@media only screen and (max-width: 767px) {
  .p-blog__latest .c-post__content {
    padding: 16px;
    gap: 8px;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog__latest .c-post__time {
    min-height: auto;
    font-size: 1.2rem;
    line-height: 18px;
  }
}
.p-blog .c-info {
  background: var(--base);
  border: 1px solid var(--neutral-100);
  -webkit-box-shadow: 61px 93px 67px rgba(207, 207, 207, 0.05);
          box-shadow: 61px 93px 67px rgba(207, 207, 207, 0.05);
  border-radius: 32px;
  padding: 32px;
  width: 100%;
  max-width: 976px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  color: var(--text-primary);
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-info {
    gap: 24px;
    padding: 24px;
    max-width: -webkit-fit-content;
    max-width: -moz-fit-content;
    max-width: fit-content;
  }
}
.p-blog .c-info .c-index__list {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-info .c-index__list {
    gap: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog .c-info .c-index__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.p-blog .c-info .c-index__list li {
  width: calc((100% - 64px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 12px;
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-info .c-index__list li {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog .c-info .c-index__list li {
    width: calc((100% - 24px) / 2);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 8px;
  }
}
.p-blog .c-info .c-index__list li:first-child {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: 8px;
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-info .c-index__list li:first-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog .c-info .c-index__list li:first-child {
    -webkit-box-flex: 0;
        -ms-flex: none;
            flex: none;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--neutral-100);
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-info .c-index__list li:nth-child(2) .c-index__val {
    font-size: 1.8rem;
  }
}
.p-blog .c-info .c-index__value {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  text-align: right;
}
.p-blog .c-info .c-index__value span {
  display: block;
}
.p-blog .c-info .c-index__value.red .c-index__per {
  color: var(--danger);
}
.p-blog .c-info .c-index__value.red .c-index__per::before {
  background: url("../images/common/icon/ic-red_trending.svg") no-repeat center;
  -webkit-transform: scale(-1, -1);
          transform: scale(-1, -1);
}
.p-blog .c-info .c-index__value.green .c-index__per {
  color: var(--sucess);
}
.p-blog .c-info .c-index__value.green .c-index__per::before {
  background: url("../images/common/icon/ic-eva_trending.svg") no-repeat center;
}
.p-blog .c-info .c-index__name {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-blog .c-info .c-index__num {
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 600;
  color: var(--sucess);
}
.p-blog .c-info .c-index__num.red {
  color: var(--danger);
}
.p-blog .c-info .c-index__num.green {
  color: var(--sucess);
}
.p-blog .c-info .c-index__per {
  line-height: 1.5;
  font-weight: 600;
  color: var(--sucess);
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  gap: 8px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.p-blog .c-info .c-index__per::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  background: url("../images/common/icon/ic-eva_trending.svg") no-repeat center;
  background-size: 24px 24px !important;
  margin-right: -4px;
}
.p-blog .c-info .c-index__label {
  color: var(--grey-800);
}
@media only screen and (max-width: 767px) {
  .p-blog .c-info .c-index__label {
    text-align: center;
  }
}
.p-blog .c-info .c-index__val {
  font-size: 2.4rem;
  line-height: 1.5;
  font-weight: 600;
}
@media only screen and (max-width: 767px) {
  .p-blog .c-info .c-index__val {
    font-size: 1.8rem;
  }
}
.p-blog .c-info .c-index__init {
  font-size: 1.4rem;
  line-height: 20px;
  color: var(--text-secondary);
}
.p-blog .c-detail {
  max-width: 768px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 48px;
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-detail {
    gap: 32px;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail {
    gap: 24px;
  }
}
.p-blog .c-detail__breadcrumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  margin-bottom: -24px;
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-detail__breadcrumb {
    margin-top: -8px;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail__breadcrumb {
    margin-top: -12px;
  }
}
.p-blog .c-detail__breadcrumb li a,
.p-blog .c-detail__breadcrumb li span {
  line-height: 1.5;
  font-weight: 500;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-blog .c-detail__breadcrumb li > span {
  color: #005dab;
}
.p-blog .c-detail .c-titleMain {
  text-align: left;
}
.p-blog .c-detail__gr {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  min-height: 27px;
}
.p-blog .c-detail__time {
  font-size: 1.4rem;
  line-height: 20px;
}
.p-blog .c-detail__time span {
  margin: 0 8px;
}
.p-blog .c-detail__social {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 18px;
}
.p-blog .c-detail__social li a {
  display: block;
  height: 18px;
}
.p-blog .c-detail__social li a svg {
  width: 18px;
  height: 18px;
}
.p-blog .c-detail__label {
  font-weight: 500;
  color: var(--text-primary);
  margin-bottom: 5px;
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail__label {
    margin-bottom: 16px;
  }
}
.p-blog .c-detail__bottom {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail__bottom {
    margin-top: 24px;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail__bottom .c-detail__gr {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 14px;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
}
.p-blog .c-detail .c-tag__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
}
.p-blog .c-detail .c-tag__list li a {
  font-size: 1.4rem;
  line-height: 20px;
  font-weight: 500;
  padding: 4px 8px;
  color: #005dab;
}
.p-blog .c-detail .wp-content #toc_container {
  margin-top: 1em;
}
.p-blog .c-detail .wp-content h1,
.p-blog .c-detail .wp-content h2,
.p-blog .c-detail .wp-content h3,
.p-blog .c-detail .wp-content h4,
.p-blog .c-detail .wp-content h5,
.p-blog .c-detail .wp-content h6 {
  font-size: 3.2rem;
  line-height: 1.2;
  color: var(--text-primary);
  font-weight: bold;
  padding: 24px 0;
}
@media only screen and (max-width: 1140px) {
  .p-blog .c-detail .wp-content h1,
  .p-blog .c-detail .wp-content h2,
  .p-blog .c-detail .wp-content h3,
  .p-blog .c-detail .wp-content h4,
  .p-blog .c-detail .wp-content h5,
  .p-blog .c-detail .wp-content h6 {
    font-size: 2.4rem;
    line-height: 1.5;
    padding: 12px 0;
  }
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail .wp-content h1,
  .p-blog .c-detail .wp-content h2,
  .p-blog .c-detail .wp-content h3,
  .p-blog .c-detail .wp-content h4,
  .p-blog .c-detail .wp-content h5,
  .p-blog .c-detail .wp-content h6 {
    font-size: 1.6rem;
  }
}
.p-blog .c-detail .wp-content p {
  margin-bottom: 16px;
}
.p-blog .c-detail .wp-content p + h1, .p-blog .c-detail .wp-content p + h2, .p-blog .c-detail .wp-content p + h3, .p-blog .c-detail .wp-content p + h4, .p-blog .c-detail .wp-content p + h5, .p-blog .c-detail .wp-content p + h6 {
  margin-top: 32px;
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail .wp-content p + h1, .p-blog .c-detail .wp-content p + h2, .p-blog .c-detail .wp-content p + h3, .p-blog .c-detail .wp-content p + h4, .p-blog .c-detail .wp-content p + h5, .p-blog .c-detail .wp-content p + h6 {
    margin-top: 16px;
  }
}
.p-blog .c-detail .wp-content p + ul, .p-blog .c-detail .wp-content p + ol {
  margin-top: 24px;
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail .wp-content p + ul, .p-blog .c-detail .wp-content p + ol {
    margin-top: 12px;
  }
}
.p-blog .c-detail .wp-content p:has(img) {
  padding: 32px 0;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail .wp-content p:has(img) {
    padding: 16px 0;
  }
}
.p-blog .c-detail .wp-content p:has(img) img {
  width: 100%;
  border-radius: 16px;
}
.p-blog .c-detail .wp-content ul,
.p-blog .c-detail .wp-content ol {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  padding-left: 28px;
}
.p-blog .c-detail .wp-content ul li,
.p-blog .c-detail .wp-content ol li {
  list-style: disc;
}
.p-blog .c-detail .wp-content ul p,
.p-blog .c-detail .wp-content ol p {
  margin-bottom: 0;
}
.p-blog .c-detail .wp-content table {
  margin: 32px 0;
}
@media only screen and (max-width: 767px) {
  .p-blog .c-detail .wp-content table {
    margin: 16px 0;
  }
}
.p-blog .c-detail .wp-content table td {
  padding: 8px;
  border: 1px solid var(--text-color);
}

.c-listPost {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 24px;
}
@media only screen and (max-width: 1140px) {
  .c-listPost {
    gap: 16px;
  }
}
.c-listPost .c-post {
  width: calc((100% - 48px) / 3);
}
@media only screen and (max-width: 1140px) {
  .c-listPost .c-post {
    width: calc((100% - 24px) / 2);
  }
}
@media only screen and (max-width: 767px) {
  .c-listPost .c-post {
    width: 100%;
  }
}

#toc_container {
  background: transparent;
}