.ly_section--search {
  padding: 72px 2rem 0;
}
.ly_section--search .ly_section__inner {
  max-width: 640px;
  margin: 0 auto;
  text-align: center;
}
.ly_section--search .bl_section__title {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
  display: inline-block;
  position: relative;
  margin-bottom: 24px;
}
.ly_section--search .bl_section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #004b9c;
  margin: 16px auto 0;
  border-radius: 2px;
}
.ly_section--search .bl_search {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  overflow: hidden;
  background: #fff;
  -webkit-box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  border: 1px solid transparent;
  -webkit-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease;
}
.ly_section--search .bl_search:focus-within {
  border-color: #3179c7;
}
.ly_section--search .bl_search__input {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  padding: 16px 20px;
  border: none;
  font-size: 16px;
  outline: none;
  background: #fff;
}
.ly_section--search .bl_search__input::-webkit-input-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input::-moz-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input:-ms-input-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input::-ms-input-placeholder {
  color: #999;
}
.ly_section--search .bl_search__input::placeholder {
  color: #999;
}
.ly_section--search .bl_search__button {
  width: 60px;
  background-color: #3179c7;
  border: none;
  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;
  cursor: pointer;
  -webkit-transition: background 0.3s ease;
  transition: background 0.3s ease;
}
.ly_section--search .bl_search__button i {
  color: #fff;
  font-size: 18px;
}
.ly_section--search .bl_search__button:hover {
  background-color: #3179c7;
}

.ly_section--notice {
  padding-top: 64px;
}

.bl_notice {
  background-color: #fff;
  -webkit-box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  box-shadow: 0 0 60px rgba(0, 36, 196, 0.1);
  border-radius: 8px;
  overflow: hidden;
}
.bl_notice__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: left;
  -ms-flex-pack: left;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #004b9c;
  padding: 12px 20px;
  position: relative;
}
@media (min-width: 768px) {
  .bl_notice__header {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.bl_notice__button {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 10px;
  border: 2px solid #ffffff;
  color: #fff;
  padding: 6px 12px;
  border-radius: 100px;
  font-size: 13px;
  text-decoration: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}
.bl_notice__button::after {
  content: "\f0a9";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.4rem;
  line-height: 1;
  opacity: 0.9;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.bl_notice__button:hover {
  background: rgba(255, 255, 255, 0.12);
}
.bl_notice__button:hover::after {
  -webkit-transform: translateX(2px);
  transform: translateX(2px);
}
@media (min-width: 768px) {
  .bl_notice__button {
    right: 20px;
    padding: 6px 14px;
    font-size: 1.4rem;
  }
}
.bl_notice__list {
  background: #ffffff;
  padding: 16px 20px;
}
.bl_notice__item {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  row-gap: 8px;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-column-gap: 16px;
  -moz-column-gap: 16px;
  column-gap: 16px;
  max-width: 1080px;
  margin: 0 auto;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.bl_notice__item:last-child {
  border-bottom: none;
}
@media (min-width: 768px) {
  .bl_notice__item {
    -ms-grid-columns: 120px minmax(0, 180px) minmax(0, 1fr);
    grid-template-columns: 120px minmax(0, 180px) minmax(0, 1fr);
    row-gap: 0;
    padding: 12px 0;
  }
}
.bl_notice__date {
  font-weight: 700;
  color: #004b9c;
  white-space: nowrap;
  font-size: 1.2rem;
}
@media (min-width: 768px) {
  .bl_notice__date {
    font-size: 1.4rem;
  }
}
.bl_notice__label {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  max-width: 180px;
  padding: 6px 12px;
  border-radius: 4px;
  text-decoration: none;
  width: 100%;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  -ms-grid-column-align: start;
  justify-self: start;
}
.bl_notice__label:hover {
  opacity: 0.9;
}
.bl_notice__label.label--maintenance-notices {
  background: #e7f1ff;
  color: #004b9c;
}
.bl_notice__label.label--incidents {
  background: #fbe9e9;
  color: #c20000;
}
.bl_notice__label.label--troubleshooting {
  background: #d4f4d4;
  color: #00925d;
}
@media (min-width: 768px) {
  .bl_notice__label {
    -ms-grid-column-align: auto;
    justify-self: auto;
  }
}
.bl_notice__text {
  min-width: 0;
  font-size: 1.4rem;
  color: #333;
}
.bl_notice__text a {
  text-decoration: none;
  display: block;
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  font-size: 1.6rem;
  font-weight: 700;
  color: #282c31;
}
.bl_notice__text a:hover {
  color: #3179c7;
}
@media (min-width: 768px) {
  .bl_notice__text a {
    white-space: nowrap;
  }
}

.bl_heading__title {
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
  color: #fff;
}

.ly_section--guide {
  background: #f3f7fd;
  padding: 72px 0;
}

.bl_guide {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  gap: 40px;
}
.bl_guide__intro_card {
  background: #fff;
  border: 2px solid #004b9c;
  border-radius: 12px;
  padding: 24px;
  cursor: pointer;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.bl_guide__intro_card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
  box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
}
.bl_guide__intro_card__inner {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .bl_guide__intro_card__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
  }
}
.bl_guide__intro_card__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  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: 80px;
  height: 80px;
  margin-left: 0;
}
.bl_guide__intro_card__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_guide__intro_card__text {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_guide__intro_card__text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
  }
}
.bl_guide__intro_card__label {
  font-size: 16px;
  color: #004b9c;
  margin-bottom: 4px;
}
.bl_guide__intro_card__title {
  font-size: 32px;
  font-weight: bold;
  color: #004b9c;
}
.bl_guide__intro_card__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .bl_guide__intro_card__button {
    width: auto;
    display: block;
  }
}
.bl_guide__cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 24px;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.bl_guide__card {
  -webkit-box-flex: 1;
  -ms-flex: 1 1 300px;
  flex: 1 1 300px;
  background: #fff;
  border: 2px solid #004b9c;
  border-radius: 12px;
  padding: 32px 24px;
  text-align: center;
  cursor: pointer;
  -webkit-transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    -webkit-transform 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.bl_guide__card:hover {
  -webkit-transform: translateY(-4px);
  transform: translateY(-4px);
  -webkit-box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
  box-shadow: 0 4px 12px rgba(0, 91, 172, 0.15);
}
.bl_guide__card__icon {
  margin-bottom: 16px;
  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;
  height: 64px;
}
.bl_guide__card__icon img {
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_guide__card__title {
  font-size: 24px;
  font-weight: bold;
  color: #004b9c;
  margin-bottom: 8px;
}
.bl_guide__card__text {
  font-size: 14px;
  color: #666;
  line-height: 1.6;
}

.el_btn {
  display: inline-block;
  background: #004b9c;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
  -webkit-transition: background 0.3s;
  transition: background 0.3s;
}
.el_btn:hover {
  background: #0064cf;
}

.ly_section--faq {
  background: #004b9c;
  padding: 48px 0;
  color: #fff;
}
.ly_section--faq .bl_section__title {
  color: #fff;
}

.bl_faq__intro_card {
  background: #fff;
  border-radius: 12px;
  padding: 24px;
  margin-bottom: 48px;
  cursor: pointer;
  -webkit-transition: -webkit-box-shadow 0.3s ease;
  transition: -webkit-box-shadow 0.3s ease;
  transition: box-shadow 0.3s ease;
  transition:
    box-shadow 0.3s ease,
    -webkit-box-shadow 0.3s ease;
}
.bl_faq__intro_card:hover {
  -webkit-box-shadow: 0 4px 12px rgba(0, 91, 172, 0.25);
  box-shadow: 0 4px 12px rgba(0, 91, 172, 0.25);
}
.bl_faq__intro_card__inner {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .bl_faq__intro_card__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    gap: 32px;
  }
}
.bl_faq__intro_card__icon {
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  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;
}
.bl_faq__intro_card__icon img {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.bl_faq__intro_card__text {
  width: 100%;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .bl_faq__intro_card__text {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1;
    width: auto;
  }
}
.bl_faq__intro_card__label {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
}
.bl_faq__intro_card__desc {
  font-size: 14px;
  color: #666;
  margin-top: 4px;
}
.bl_faq__intro_card__button {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
@media screen and (min-width: 768px) {
  .bl_faq__intro_card__button {
    width: auto;
    display: block;
  }
}
.bl_faq__intro_card__button .el_btn {
  display: inline-block;
  background: #004b9c;
  color: #fff;
  font-weight: bold;
  font-size: 1.4rem;
  padding: 12px 24px;
  border-radius: 8px;
  text-decoration: none;
}
.bl_faq__intro_card__button .el_btn:hover {
  background: #0064cf;
}

.bl_faq__list {
  background: #fff;
  border-radius: 12px;
  padding: 32px;
}
.bl_faq__list__head {
  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-bottom: 24px;
}
.bl_faq__list__title {
  font-size: 24px;
  font-weight: bold;
  color: #003366;
  text-align: center;
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  margin-bottom: 24px;
}
.bl_faq__list__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  background-color: #004b9c;
  margin: 16px auto 0;
  border-radius: 2px;
}
.bl_faq__list__more {
  white-space: nowrap;
  margin-left: auto;
  font-size: 14px;
  color: #004b9c;
  text-decoration: none;
}
.bl_faq__list__more:hover {
  text-decoration: underline;
}
.bl_faq__list__grid {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr;
  grid-template-columns: 1fr;
  gap: 16px;
}
@media (min-width: 768px) {
  .bl_faq__list__grid {
    -ms-grid-columns: (1fr) [2];
    grid-template-columns: repeat(2, 1fr);
  }
}
.bl_faq__list__grid li a {
  position: relative;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
  padding-left: 1.4em;
  color: #004b9c;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.bl_faq__list__grid li a i {
  position: absolute;
  left: 0;
  top: 0.48rem;
  font-size: 1.2rem;
  color: #004b9c;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.bl_faq__list__grid li a:hover {
  color: #0064cf;
}
.bl_faq__list__grid li a:hover i {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.bl_faq__list__more_wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  margin-top: 16px;
}

.bl_faq__list__more {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 4px;
  color: #0064cf;
  font-weight: bold;
  font-size: 14px;
  text-decoration: none;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}
.bl_faq__list__more i {
  font-size: 12px;
  -webkit-transition: -webkit-transform 0.3s ease;
  transition: -webkit-transform 0.3s ease;
  transition: transform 0.3s ease;
  transition:
    transform 0.3s ease,
    -webkit-transform 0.3s ease;
}
.bl_faq__list__more:hover {
  color: #0064cf;
}
.bl_faq__list__more:hover i {
  -webkit-transform: translateX(4px);
  transform: translateX(4px);
}

.bl_faq__badge--new {
  display: inline-block;
  background: #e05106;
  color: #fff;
  font-size: 10px;
  font-weight: bold;
  padding: 1px 6px;
  border-radius: 8px;
  margin-right: 4px;
  vertical-align: middle;
}

.ly_section--category {
  padding: 60px 0;
}
.ly_section--category .ly_section__inner {
  max-width: 1320px;
  margin: 0 auto;
  text-align: center;
}
.ly_section--category .bl_section__title {
  display: inline-block;
  margin-bottom: 24px;
  font-weight: 700;
  color: #003366;
  font-size: clamp(20px, 3.6vw, 24px);
  position: relative;
}
.ly_section--category .bl_section__title::after {
  content: "";
  display: block;
  width: 60px;
  height: 4px;
  margin: 16px auto 0;
  border-radius: 2px;
  background: #004b9c;
}

.bl_category_list {
  background: #fff;
  border: 2px solid #004b9c;
  border-radius: 12px;
  padding: 24px 16px;
  margin-bottom: 40px;
  text-align: left;
}
@media (min-width: 768px) {
  .bl_category_list {
    padding: 32px 24px;
  }
}
.bl_category_list__heading {
  font-size: 18px;
  font-weight: 700;
  color: #003366;
  margin-bottom: 16px;
}

.bl_category {
  margin-bottom: 12px;
  border-radius: 8px;
}
@media (min-width: 768px) {
  .bl_category {
    margin-bottom: 16px;
  }
}
.bl_category__head {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 40px;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 12px;
  padding: 8px 16px;
  background: #f1f6fb;
  color: #004b9c;
  font-size: 16px;
  font-weight: 700;
  border: 0;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  -webkit-transition:
    background-color 0.3s,
    border-radius 0.2s;
  transition:
    background-color 0.3s,
    border-radius 0.2s;
}
.bl_category__head:hover {
  background: #e4ecf5;
}
.bl_category__head.is-active {
  border-radius: 8px 8px 0 0;
}
.bl_category__title {
  color: #004b9c;
  font-weight: 700;
}
.bl_category__icon {
  margin-left: 8px;
  font-size: 18px;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition:
    transform 0.3s,
    -webkit-transform 0.3s;
  color: #004b9c;
}
.bl_category__body {
  max-height: 0;
  overflow: hidden;
  padding: 0 16px;
  background: transparent;
  -webkit-transition: max-height 0.3s ease;
  transition: max-height 0.3s ease;
}
.bl_category__body.is-open {
  background: #f1f6fb;
  border-radius: 0 0 8px 8px;
}
.bl_category__body .bl_category--level2:first-child {
  margin-top: 12px;
}
.bl_category__body .bl_category--level2:last-child {
  margin-bottom: 12px;
}
.bl_category__list {
  list-style: none;
  margin: 0;
  padding: 16px 0;
}
.bl_category__list li {
  padding: 10px 8px;
  border-bottom: 1px solid #dcdcdc;
}
.bl_category__list li:last-child {
  border-bottom: 0;
}
.bl_category__list li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: #333;
  text-decoration: none;
  -webkit-transition: color 0.2s;
  transition: color 0.2s;
}
.bl_category__list li a i {
  font-size: 12px;
  color: #3179c7;
}
.bl_category__list li a:hover {
  color: #004b9c;
}
.bl_category--level2 {
  margin-left: 16px;
  position: relative;
}
@media (min-width: 768px) {
  .bl_category--level2 {
    margin-left: 24px;
  }
  .bl_category--level2::before {
    left: -12px;
  }
}
.bl_category--level2::before {
  content: "";
  position: absolute;
  left: -8px;
  top: 8px;
  bottom: 8px;
  width: 2px;
  background: rgba(0, 91, 172, 0.15);
  border-radius: 2px;
  display: none;
}
.bl_category--level2.is-opened::before {
  display: block;
}
