@charset "UTF-8";
/* ▼▼▼ MV ▼▼▼ */
.mv {
  position: relative;
  width: 100%;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .mv {
    margin-bottom: 32px;
  }
}
.mv h1 {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.mv_slider {
  width: 100%;
}
.mv_slider_main {
  width: 100%;
  margin: 0 auto 24px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .mv_slider_main {
    margin: 0 auto 16px;
  }
}
.mv_slider_main .mv_slider_swiper {
  overflow: visible;
}
.mv_slider_main .mv_slider_swiper .swiper-wrapper {
  margin-bottom: 0;
}
.mv_slider_main .mv_slider_swiper .swiper-slide {
  height: auto;
}
.mv_slider_item {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.mv_slider_item img {
  width: 100%;
}
.mv_slider_thumbnail_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 48px;
  width: min(100%, 1248px);
  padding: 0 24px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .mv_slider_thumbnail_wrap {
    overflow: visible;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 16px;
  }
}
.mv_slider_thumbnail {
  width: calc(100% - 120px);
}
@media screen and (max-width: 767px) {
  .mv_slider_thumbnail {
    width: 100%;
  }
}
.mv_slider_thumbnail .mv_slider_thumbnail_swiper {
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .mv_slider_thumbnail .mv_slider_thumbnail_swiper {
    overflow: visible;
  }
}
.mv_slider_thumbnail .mv_slider_thumbnail_swiper .swiper-wrapper {
  margin-bottom: 0;
}
.mv_slider_thumbnail .mv_slider_thumbnail_swiper .swiper-slide {
  position: relative;
  height: auto;
  width: auto;
}
.mv_slider_thumbnail_item {
  border: 1px solid var(--Line-Primary);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.mv_slider_thumbnail_item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.swiper-slide-thumb-active .mv_slider_thumbnail_item::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(225, 225, 225, 0.5);
}
.mv_slider_progress_bar {
  position: absolute;
  left: 0;
  top: 0;
}
.mv_slider_buttons {
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .mv_slider_buttons {
    margin-bottom: 0;
  }
}

.mv_slider_progress, .banner_slider_progress {
  height: 4px;
  background-color: var(--Line-Primary);
  border-radius: 2px;
  overflow: hidden;
  position: relative;
}
.mv_slider .swiper-pagination-progressbar-fill, .banner_slider .swiper-pagination-progressbar-fill {
  background-color: var(--Brand-color-Primary);
  -webkit-transition-duration: 500ms !important;
          transition-duration: 500ms !important;
}
.mv_slider_buttons, .banner_slider_buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -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;
  gap: var(--Padding-Unique-X-Small);
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .mv_slider_buttons, .banner_slider_buttons {
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    gap: 16px;
  }
}
.mv_slider_button, .banner_slider_button {
  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: 32px;
  height: 32px;
  border: 1px solid var(--Line-Primary);
  border-radius: 2px;
  cursor: pointer;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  -moz-appearance: none;
       appearance: none;
  -webkit-appearance: none;
  position: relative;
}
.mv_slider_button:disabled, .banner_slider_button:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}
.mv_slider_button::before, .banner_slider_button::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  background-image: url(../img/icon_arrow_slide.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
.mv_slider_button_next::before, .banner_slider_button_next::before {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

/* ▼▼▼ Important News ▼▼▼ */
.important_news {
  background: var(--Background-Secondary);
  border-top: 1px solid var(--Line-Primary);
  padding: 40px 0;
}
@media screen and (max-width: 767px) {
  .important_news {
    padding: 32px 0;
  }
}
.important_news_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 767px) {
  .important_news_wrap {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.important_news_head {
  width: 180px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  background: #d33030;
  border-radius: 4px 0 0 4px;
  padding: 8px 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 2px;
}
@media screen and (max-width: 767px) {
  .important_news_head {
    width: 100%;
    border-radius: 4px 4px 0 0;
  }
}
.important_news_head_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 6px;
  color: var(--Object-Primary-Reverse) !important;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.6;
  text-decoration: underline;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .important_news_head_text {
    font-size: 15px;
  }
}
.important_news_head_text::before {
  content: "";
  background: url(../img/icon_important.svg) no-repeat center/contain;
  width: 18px;
  height: 18px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.important_news_list {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: var(--Background-Primary);
}
.important_news_item {
  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;
  gap: 24px;
  border-bottom: 1px solid var(--Line-Primary);
  color: inherit;
  padding: 24px 16px;
}
@media (hover: hover) {
  .important_news_item:hover .important_news_item_title {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .important_news_item {
    gap: 8px;
    padding: 24px 8px 24px 16px;
  }
}
.important_news_item:last-child {
  border-bottom: 0;
}
@media screen and (max-width: 767px) {
  .important_news_item.icon_new .important_news_item_title {
    padding-left: 43px;
    position: relative;
  }
}
.important_news_item.icon_new .important_news_item_title::before {
  content: "NEW";
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #d33030;
}
@media screen and (max-width: 767px) {
  .important_news_item.icon_new .important_news_item_title::before {
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    left: 0;
    font-size: 12px;
    margin: 0;
  }
}
.important_news_item_main {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 32px;
  min-width: 0;
}
@media screen and (max-width: 767px) {
  .important_news_item_main {
    display: grid;
    grid-template-columns: 1fr 24px;
    gap: 8px;
  }
}
.important_news_item_meta {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 767px) {
  .important_news_item_meta {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    grid-column: 1/3;
    width: 100%;
    gap: 10px 12px;
  }
}
.important_news_item_date {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--Object-Secondary);
}
@media screen and (max-width: 767px) {
  .important_news_item_date {
    font-size: 14px;
    line-height: 1.2;
  }
}
.important_news_item_tag {
  display: none;
}
@media screen and (max-width: 767px) {
  .important_news_item_tag {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #f2d1d1;
    border-radius: 4px;
    background: #f9e4e4;
    padding: 2px 12px 4px;
    color: #d33030;
    font-weight: 500;
    font-size: 14px;
    line-height: 1.2;
    white-space: nowrap;
  }
}
.important_news_item_title {
  min-width: 0;
  color: #36373b;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  line-clamp: 1;
  text-decoration: underline;
}
@media screen and (max-width: 767px) {
  .important_news_item_title {
    font-size: 15px;
    line-height: 1.4;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    padding-right: 8px;
    border-right: 1px solid var(--Line-Primary);
  }
}
.important_news_item_arrow {
  width: 24px;
  height: 24px;
  background: url("../img/icon_arrow.svg") no-repeat center/16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: none;
}
@media screen and (max-width: 767px) {
  .important_news_item_arrow {
    display: block;
  }
}

/* ▼▼▼ Products ▼▼▼ */
.products {
  padding: 60px 0 80px;
}
@media screen and (max-width: 767px) {
  .products {
    padding: 32px 0 56px;
  }
}
@media screen and (max-width: 767px) {
  .products_heading {
    padding-bottom: 24px;
  }
  .products_heading_en {
    font-size: 48px;
  }
  .products_heading_ja {
    font-size: 26px;
  }
}
.products_cards {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
}
@media screen and (max-width: 767px) {
  .products_cards {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.products_card {
  width: calc((100% - 48px) / 3);
  border-bottom: 1px solid #e4e4e4;
  padding-bottom: 32px;
  color: inherit;
}
@media screen and (max-width: 767px) {
  .products_card {
    width: 100%;
    padding-bottom: 24px;
  }
}
.products_card_image {
  width: 100%;
  aspect-ratio: 384/254;
  border-radius: 4px;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .products_card_image {
    aspect-ratio: 327/216;
  }
}
.products_card_image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}
.products_card_body {
  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: 16px;
}
@media screen and (max-width: 767px) {
  .products_card_body {
    margin-top: 16px;
  }
}
.products_card_title {
  font-weight: 500;
  font-size: 24px;
  line-height: 1.4;
  color: #36373b;
}
@media screen and (max-width: 767px) {
  .products_card_title {
    font-size: 23px;
  }
}
.products_card_title span {
  border-bottom: 1px solid currentColor;
}
.products_card_text {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.6;
  color: #2e2f32;
}
@media screen and (max-width: 767px) {
  .products_card_text {
    font-size: 15px;
  }
}

/* ▼▼▼ SNS ▼▼▼ */
.sns {
  background: var(--Background-Primary-Base);
  border-radius: 80px;
  padding: 80px 0 120px;
}
@media screen and (max-width: 767px) {
  .sns {
    border-radius: 48px;
    padding: 56px 0;
  }
}
.sns_btn_wrap {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px 24px;
  margin-bottom: 18px;
}
@media screen and (max-width: 767px) {
  .sns_btn_wrap {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
  }
  .sns_btn_wrap a.btn {
    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: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 2px;
    padding: 5px !important;
    min-height: 52px;
    text-align: center;
  }
  .sns_btn_wrap a.btn:nth-child(-n+2) {
    width: calc((100% - 8px) / 2);
  }
  .sns_btn_wrap a.btn:nth-child(n+3):nth-child(-n+5) {
    width: calc((100% - 16px) / 3);
  }
  .sns_btn_wrap a.btn:after {
    display: none;
  }
  .sns_btn_wrap a.btn .btn_icon {
    margin: 0;
  }
}

/* ▼▼▼ about ▼▼▼ */
.about {
  padding: 120px 0 60px;
}
@media screen and (max-width: 767px) {
  .about {
    padding: 48px 0;
  }
  .about_img {
    display: none;
  }
}
.about_inner {
  display: grid;
  grid-template-columns: 384px 1fr;
  gap: 120px;
}
@media screen and (max-width: 767px) {
  .about_inner {
    display: block;
  }
}
.about_list {
  border-top: 1px solid var(--Line-Primary);
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .about_list {
    margin-top: 24px;
  }
}
.about_list a {
  border-bottom: 1px solid var(--Line-Primary);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px;
  padding: 24px 55px 24px 0;
  text-decoration: underline;
  position: relative;
}
@media screen and (max-width: 767px) {
  .about_list a {
    padding: 16px 55px 16px 0;
    font-size: 14px;
  }
}
@media (hover: hover) {
  .about_list a:hover {
    opacity: 1;
    text-decoration: none;
    color: var(--Brand-color-Primary);
  }
}
.about_list a::after {
  content: "";
  width: 36px;
  height: 20px;
  background-image: url("../img/icon_arrow.svg");
  background-repeat: no-repeat;
  background-position: center right;
  background-size: 20px;
  border-left: 1px solid var(--Line-Primary);
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 16px;
}

/* ▼▼▼ Recruit ▼▼▼ */
.recruit {
  padding: 60px 24px 80px;
  color: var(--Object-Primary-Reverse);
}
@media screen and (max-width: 767px) {
  .recruit {
    padding: 32px 24px 48px;
  }
}
.recruit_banner {
  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;
  gap: 24px;
  background: url(../img/top/recruit_bg_pc.jpg) no-repeat center/cover;
  border-radius: 4px;
  width: min(100%, 1200px);
  margin: 0 auto;
  padding: 32px 60px;
}
@media screen and (max-width: 767px) {
  .recruit_banner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    background-image: url(../img/top/recruit_bg_sp.jpg);
    padding: 32px 24px;
  }
}
.recruit_banner_text {
  font-weight: 500;
  line-height: 1.6;
}
.recruit .heading_title .heading_H1 {
  margin-bottom: 24px;
  color: var(--Object-Primary-Reverse);
}
.recruit .heading_title_en {
  color: var(--Object-Primary-Reverse);
}

/* ▼▼▼ News ▼▼▼ */
.news {
  border-top: 1px solid var(--Line-Primary);
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .news {
    padding: 32px 0;
  }
}
.news_list {
  margin-bottom: var(--Padding-Layout-SectionInnermedium);
}
.news_item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 24px 8px;
  color: inherit;
  border-bottom: 1px solid var(--Line-Primary);
}
@media screen and (max-width: 767px) {
  .news_item {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    gap: 8px;
    padding: 16px 0;
  }
}
.news_item[target=_blank] .news_item_title {
  padding-right: 24px;
  position: relative;
}
.news_item[target=_blank] .news_item_title::after {
  content: "";
  width: 24px;
  height: 24px;
  background: url("../img/icon_arrow_external.svg") no-repeat center/contain;
  position: absolute;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  top: 50%;
  right: 0;
}
@media (hover: hover) {
  .news_item:hover .news_item_title {
    text-decoration: none;
  }
}
@media screen and (max-width: 767px) {
  .news_item.icon_new .news_item_title {
    padding-left: 43px;
    position: relative;
  }
}
.news_item.icon_new .news_item_title::before {
  content: "NEW";
  display: inline-block;
  vertical-align: middle;
  margin-right: 24px;
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 13px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: #d33030;
}
@media screen and (max-width: 767px) {
  .news_item.icon_new .news_item_title::before {
    position: absolute;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    top: 50%;
    left: 0;
    font-size: 12px;
    margin: 0;
  }
}
.news_item_meta {
  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;
  gap: 8px;
}
@media screen and (max-width: 767px) {
  .news_item_meta {
    width: 100%;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    gap: 10px 12px;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.news_item_date {
  font-family: var(--font-family-en);
  font-weight: 500;
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: 0.05em;
  color: var(--Object-Secondary);
}
@media screen and (max-width: 767px) {
  .news_item_date {
    font-size: 14px;
  }
}
.news_item_category {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  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;
  background: var(--Background-Secondary);
  border: 1px solid var(--Line-Primary);
  border-radius: 4px;
  width: 144px;
  padding: 3px 5px;
  font-size: var(--Label-Small);
  line-height: 1.2;
  font-weight: 500;
}
.news_item_title {
  min-width: 0;
  color: #36373b;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.4;
  text-decoration: underline;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .news_item_title {
    font-size: 15px;
    white-space: normal;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    text-decoration: none;
  }
}
.news_item_arrow {
  width: 24px;
  height: 24px;
  background: url("../img/icon_arrow.svg") no-repeat center/16px;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}

/* ▼▼▼ banner_area ▼▼▼ */
.banner_area {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  .banner_area {
    padding: 32px 0 0;
  }
  .banner_area .banner_slider_main .banner_slider_swiper {
    overflow: visible;
  }
}
.banner_area .banner_wrap {
  width: min(100%, 1248px);
  margin: 0 auto;
  padding: 0 24px;
}
@media screen and (max-width: 767px) {
  .banner_area .banner_wrap {
    padding: 0;
  }
}
.banner_area .bnr_ttl {
  color: var(--Brand-color-Primary);
  font-family: var(--font-family-en);
  font-weight: 600;
  font-size: 16px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .banner_area .bnr_ttl {
    padding: 0 24px;
  }
}

@media screen and (max-width: 767px) {
  .banner_slider_main {
    padding: 0 24px;
  }
}
.banner_slider_item_img {
  border: 1px solid var(--Line-Primary);
  border-radius: 4px;
  line-height: 1;
  overflow: hidden;
}
.banner_slider_item_img img {
  width: 100%;
}
.banner_slider_item_text {
  font-size: var(--Body-Small);
  margin-top: 4px;
}
.banner_slider_item_text.fz_sm {
  font-size: 12px;
  gap: 2px;
  letter-spacing: -0.02em;
}
@media screen and (max-width: 767px) {
  .banner_slider_item_text.fz_sm {
    font-size: 11px;
  }
}
.banner_slider_navigation.is-hidden {
  display: none;
}
.banner_slider_navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .banner_slider_navigation {
    gap: 16px 0;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding: 0 24px;
  }
}
.banner_slider_progress {
  width: 100%;
}
.banner_slider_buttons {
  gap: 8px;
}