:root {
  --v10-color-primary: #2280bd;
  --swiper-theme-color: #2280bd;
  --header_active_bg_color: #2280bd;
  --header_active_color: #fff;
  --header_font_color: #fff;
  --border_color: #E8E8E8;
  --box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.08);
  --float-zIndex: 1000100;
  --float-mask-zIndex: 1000050;
  --fancybox-zIndex: 1000000;
  --header-zIndex: 999999;
  --mobile-header-height: 60px;
}

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

.text-right {
  text-align: right !important;
}

.text-left {
  text-align: left !important;
}

.is-hidden {
  display: none !important;
}

.is-visible {
  display: block !important;
}

.is-invisible {
  visibility: hidden !important;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    transform: translateY(30px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes scaleIn {
  from {
    transform: scale(0.95);
    opacity: 0;
  }
  to {
    transform: scale(1);
    opacity: 1;
  }
}
@media (max-width: 990px) {
  .mobile-hidden {
    display: none !important;
  }
}

@media (min-width: 768px) {
  .desktop-hidden {
    display: none !important;
  }
}

.org-tabs {
  width: 100%;
  margin-bottom: 20px;
}
.org-tabs .tab-list {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: nowrap;
  box-sizing: border-box;
  justify-content: center;
  margin: 0;
  padding: 0;
  list-style: none;
  background-color: #fff;
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.org-tabs .tab-list::-webkit-scrollbar {
  display: none;
}
@media (min-width: 990px) {
  .org-tabs .tab-list .tab-item {
    flex: 1;
    min-width: 140px;
    max-width: 200px;
  }
}
.org-tabs .tab-item {
  box-sizing: border-box;
  flex-shrink: 0;
  height: 60px;
  cursor: pointer;
}
.org-tabs .tab-item .tab-link {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  width: 100%;
  height: 100%;
  padding: 8px 20px;
  text-decoration: none;
  color: #6b7283;
  background-color: transparent;
  border: 1px solid var(--border_color, #E8E8E8);
  transition: all 0.2s ease;
}
.org-tabs .tab-item .tab-link:hover {
  background-color: rgba(34, 128, 189, 0.05);
  color: var(--v10-color-primary, #2280bd);
}
.org-tabs .tab-item .tab-label {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}
.org-tabs .tab-item .tab-label-title {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.3;
  white-space: nowrap;
}
.org-tabs .tab-item .tab-label-period {
  font-size: 11px;
  font-weight: 400;
  line-height: 1.2;
  color: #999;
  white-space: nowrap;
}
.org-tabs .tab-item.is-active .tab-link {
  background-color: rgba(34, 128, 189, 0.1);
  border-color: var(--v10-color-primary, #2280bd);
}
.org-tabs .tab-item.is-active .tab-label-title {
  color: var(--v10-color-primary, #2280bd);
  font-weight: 600;
}
.org-tabs .tab-item:last-child .tab-link {
  border-right: 1px solid var(--border_color, #E8E8E8);
}
.org-tabs .tab-item:last-child.is-active .tab-link {
  border-right-color: var(--v10-color-primary, #2280bd);
}
@media (max-width: 990px) {
  .org-tabs .tab-list {
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .org-tabs .tab-item {
    flex: 0 0 auto;
  }
  .org-tabs .tab-item .tab-link {
    padding: 8px 14px;
  }
  .org-tabs .tab-item .tab-label-title {
    font-size: 14px;
  }
  .org-tabs .tab-item .tab-label-period {
    font-size: 10px;
  }
}

.tab-page-items {
  display: block;
  width: 100%;
}
.tab-page-items .tab-page-item {
  display: none;
  width: 100%;
}
.tab-page-items .tab-page-item.is-active {
  display: block;
}

.tab-page-content h2 {
  color: #2280bd;
}
.tab-page-content h3 {
  color: #2280bd;
}