/* font */
@font-face {
  font-family: "js-l";
  src: url("../font/TheJamsilOTF2Light.woff2") format("woff2");
}
@font-face {
  font-family: "js-r";
  src: url("../font/TheJamsilOTF3Regular.woff2") format("woff2");
}
@font-face {
  font-family: "js-m";
  src: url("../font/TheJamsilOTF4Medium.woff2") format("woff2");
}
@font-face {
  font-family: "js-b";
  src: url("../font/TheJamsilOTF5Bold.woff2") format("woff2");
}

.js-l {
  font-family: "js-l";
}
.js-r {
  font-family: "js-r";
}
.js-m {
  font-family: "js-m";
}
.js-b {
  font-family: "js-b";
}

/* line-height */
.line-h-12 {
  line-height: 1.2;
}
.line-h-13 {
  line-height: 1.3;
}
.line-h-14 {
  line-height: 1.4;
}
.line-h-16 {
  line-height: 1.6;
}

/* bg */
.bg-fff {
  background-color: #fff;
}
.bg-000 {
  background-color: #000;
}
.bg-48BDEE {
  background-color: #48BDEE;
}
.bg-A7DCF7 {
  background-color: #A7DCF7;
}
.bg-E4789B {
  background-color: #E4789B;
}
.bg-FDE0A9 {
  background-color: #FDE0A9;
}
.bg-FABF16 {
  background-color: #FABF16;
}
.bg-F6D062 {
  background-color: #F6D062;
}
.bg-C7DF95 {
  background-color: #C7DF95;
}
.bg-2C4D9F {
  background-color: #2C4D9F;
}
.bg-B97DB3 {
  background-color: #B97DB3;
}
.bg-9494EA {
  background-color: #9494EA;
}
.bg-B5B5E6 {
  background-color: #B5B5E6;
}
.bg-6CBA48 {
  background-color: #6CBA48;
}
.bg-D6E9AA {
  background-color: #D6E9AA;
}
.bg-A7D676 {
  background-color: #A7D676;
}
.bg-FF647D {
  background-color: #FF647D;
}
.bg-B5B5E6-rgb {
  background-color: rgba(181, 181, 230, 0.1);
}
.bg-48BDEE-rgb {
  background-color: rgba(72, 189, 238, 0.1);
}
.bg-A7D676-rgb {
  background-color: rgba(167, 214, 118, 0.1);
}
.bg-6CBA48-rgb {
  background-color: rgba(108, 186, 72, 0.1);
}
.bg-F6D062-rgb {
  background-color: rgba(246, 208, 98, 0.1);
}

/* color */
.c000 {
  color: #000;
}
.cfff {
  color: #fff;
}
.c555 {
  color: #555;
}
.c48BDEE {
  color: #48BDEE;
}
.cE30613 {
  color: #E30613;
}
.c6CBA48 {
  color: #6CBA48;
}
.c9494EA {
  color: #9494EA;
}
.cA7D676 {
  color: #A7D676;
}
.cD4AA32 {
  color: #D4AA32;
}
.cFABF16 {
  color: ##FABF16;
}

.cFABF16 {
  color: #FABF16;
}
.cFF647D {
  color: #FF647D;
}


/* components */
.wrap {
  max-width: 1200px;
  margin: 0 auto;
}
.btn-blue-solid {
  background-color: #48BDEE;
  color: #fff;
  border: 2px solid #000;
  border-radius: 40px;
  font-family: 'js-m';
}
.btn-blue-solid.type-2 {
  background: #199ED6;
}
.btn-blue-solid:hover{
  background: #199ED6;
}
.btn-blue-solid.type-2:hover{
  background-color: #48BDEE;
}
.title-box {
  gap: 30px;
}
.title-box h1 {
  padding: 16px 60px;
  background: linear-gradient(to right, #DEFEFF, #F6FAEC);
  border-radius: 60px;
  border: 3px solid #000;
  border-bottom: 6px solid #000;
}

/* table */
table tr th,
table tr td {
  text-align: center;
}

/* table-1 */
.table-1 th {
  font-family: 'js-b';
}
.table-1 td {
  font-family: 'js-l';
}
.table-1 th,
.table-1 td {
  height: 52px;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
}
.table-1 tr th:not(:last-child),
.table-1 tr td:not(:last-child) {
  border-right: 1px solid #000;
}

/* tab-menu */
.tab-menu {
  gap: 16px;
  padding: 100px 0 80px 0;
}
.tab-menu li a {
  display: block;
  padding: 20px 40px;
  border: 1px solid #000;
  border-radius: 4px;
}
.tab-menu li:first-child a:hover,
.tab-menu li:first-child a.active {
  border: 1px solid transparent;
  background-color: #A7DCF7;
  border: 1px solid #48BDEE;
}
.tab-menu li:nth-child(2) a:hover,
.tab-menu li:nth-child(2) a.active {
  border: 1px solid transparent;
  background-color: #B5B5E6;
  border: 1px solid #9494EA;
}
.tab-menu li:nth-child(3) a:hover,
.tab-menu li:nth-child(3) a.active {
  border: 1px solid transparent;
  background-color: #A7D676;
  border: 1px solid #6CBA48;
}
.tab-menu li:nth-child(4) a:hover,
.tab-menu li:nth-child(4) a.active {
  border: 1px solid transparent;
  background-color: #F6D062;
  border: 1px solid #D4AA32;
}

/* animate */
@keyframes animate__fadeInUp2 {
  0% {
    opacity: 0;
    transform: translateY(20px);
  }
  
  100% {
      opacity: 1;
      transform: translateY(0);
  }
}
.fadeInUp2 {
  animation-name: animate__fadeInUp2;
}
@keyframes fadeInDownBig {
  0% {opacity: 0;
    transform: translateY(-2000px) translateX(-50%) scale(1);
  }
    100% {
      opacity: 1;
      transform: translateY(0) translateX(-50%) scale(1);
    }
}

@keyframes moving_1 {
  50% {
    transform: translateY(8%);
  }
}

@keyframes action_1 {
  50% {
    transform: translateY(3%);
}
}


.dot-list {
  margin-left: 20px;
}
.dot-list::before {
  content: "";
  display: block;
  position: relative;
  top: 20px;
  list-style-type: circle;
  width: 4px;
  height: 4px;
  background: #999;
  border-radius: 2px;
  left: -16px;
}