@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  text-decoration: none;
}

*, *::before, *::after {
  box-sizing: border-box;
}

body {
  font-family: 'Noto Sans JP', 'Meiryo', 'Yu Gothic', 'Hiragino Kaku Gothic Pro', 'Arial', sans-serif;
  font-weight: 400;
  color: #333333;
  background-color: #ffffff;
  font-size: 16px;
  width: 100%;
  height: 100%;
}

ol, ul {
  padding-left: 2rem;
}

p {
  margin: 0 0 16px 0;
  line-height: 1.6;
}

/* Chrome border line */
blockquote {
  border-left: 2px solid #ccc;
  margin-left: 1.5rem;
  padding-left: 1rem;
}

.nav-tabs {
  margin-bottom: 15px;
}

/* GLOBAL STYLES */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
  border: 0;
}

figure {
  display: table;
  margin: 1rem auto;
}

figure figcaption {
  color: #999;
  display: block;
  margin-top: 0.25rem;
  text-align: center;
}

.card-box {
  background: linear-gradient(to right, #ffecd2 0%, #fcb69f 100%);
  padding: 20px;
  border-radius: 10px;
  color: #333;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  margin: 10px 0;
}

.red {
  border-bottom: 5px solid #ff0000;
  margin-bottom: 15px;
}

/* 分隔线样式 */
hr {
  border-color: #ccc;
  border-style: solid;
  border-width: 1px 0 0 0;
}

/* 行内代码样式 */
code {
  background-color: #e8e8e8;
  border-radius: 3px;
  padding: 0.1rem 0.2rem;
}

.data-table .hidden-row {
  height: 1px;
  border: none;
}

.data-table tr.hidden-row th {
  padding: 0;
  border-top: none;
}

.data-table tr.hidden-row th > span {
  height: 1px;
  width: 1px;
  position: absolute;
  overflow: hidden;
  top: -10px;
}

/* BACK TO TOP */
.back-to-top {
  position: fixed;
  bottom: 40px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: #007bff;
  color: white;
  border: none;
  border-radius: 50%;
  font-size: 16px;
  cursor: pointer;
  display: none;
  justify-content: center;
  align-items: center;
  transition: opacity 0.3s, transform 0.3s;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  z-index: 1020;
}
.back-to-top:hover {
  background-color: #0056b3;
  transform: scale(1.1);
}

.header {
  width: 100%;
  padding: clamp(0.625rem, 3vw, 2rem) clamp(0.625rem, 3vw, 2rem) 0;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
.header__wrapper {
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  border-radius: 30px;
  margin: 0 auto;
  padding: 1rem 2rem;
}
.header__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.header__logo {
  height: 40px;
  width: auto;
}
.header__mobile {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 1rem;
}
.header__toggle {
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  z-index: 1001;
}
.header__pc {
  width: 100%;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.77, 0, 0.18, 1);
  text-align: center;
}
.header__pc--active {
  max-height: 100vh;
}
.header__menu {
  list-style: none;
  overflow: hidden;
  padding: 0;
}
.header__menu-item {
  width: 100%;
  border-bottom: 1px solid #f0f0f0;
}
.header__menu-item--active .header__link {
  color: #0066cc;
  font-weight: 600;
}
.header__link {
  display: block;
  padding: 0.8rem 0;
  text-decoration: none;
  color: #333;
  font-size: 1rem;
  transition: color 0.3s ease;
}
.header__link:hover {
  color: #ff6b6b;
  background-color: #f9f9f9;
}
.header__language {
  display: flex;
  flex-direction: row;
  justify-content: center;
  list-style: none;
  overflow: hidden;
  padding: 0 10px;
  border-left: 1px solid #ddd;
  border-right: 1px solid #ddd;
  font-size: 14px;
}
.header__language-item {
  display: flex;
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
}
.header__language-item:not(:last-child)::after {
  content: "/";
  margin: 0 8px;
  color: #ccc;
}
.header__language-item--active .header__link {
  color: #0066cc;
  font-weight: 600;
}

.hero {
  position: relative;
  height: 50vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  text-align: center;
}
.hero__overlay {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.hero__content {
  position: relative;
  z-index: 2;
  color: #fff;
  width: 90%;
  max-width: 1200px;
}
.hero__title {
  font-size: clamp(1.5rem, 5vw, 3rem);
  font-weight: bold;
  color: #FFFFFF;
}
.hero__title--news {
  text-align: start;
}
.hero__subtitle {
  font-size: clamp(1rem, 2.5vw, 1.5rem);
}
.hero__subtitle--news {
  text-align: start;
}
.hero--news {
  background-image: url("/images/bg/news_bg_index.jpg");
}
.hero--product {
  background-image: url("/images/bg/product_bg_index.jpg");
}
.hero--service {
  background-image: url("/images/bg/service_bg_index.jpg");
}
.hero--company {
  background-image: url("/images/bg/company_bg_index.jpg");
}
.hero--information {
  background-image: url("/images/bg/information_bg_index.jpg");
}
.hero--recruit {
  background-image: url("/images/bg/recruit_bg_index.jpg");
}
.hero--contact {
  background-image: url("/images/bg/contact_bg.jpg");
}

.breadcrumb {
  border-bottom: 1px solid #ddd;
}
.breadcrumb__container {
  width: 90%;
  max-width: 1200px;
  min-height: 40px;
  margin: 0 auto;
  padding: 10px 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  list-style: none;
}
.breadcrumb__item {
  display: flex;
  align-items: center;
  font-size: 14px;
}
.breadcrumb__item:not(:last-child)::after {
  content: "\e909";
  font-family: "icon";
  color: #888;
  margin-left: 10px;
}
.breadcrumb__link {
  display: flex;
  align-items: center;
  color: #333333;
  text-decoration: none;
}
.breadcrumb__current {
  font-weight: normal;
  color: #000;
}
.breadcrumb__link:hover, .breadcrumb__link:focus {
  color: #4ab2f1;
}

.banner {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.banner__swiper {
  width: 100%;
  height: 100%;
}
.banner__slide {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
}
.banner__image {
  width: 100%;
  height: auto;
  object-fit: cover;
  aspect-ratio: 16/9;
}
.banner__pagination {
  position: absolute;
  bottom: 20px !important;
}
.banner__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(255, 255, 255, 0.5);
  opacity: 1;
  margin: 0 6px !important;
}
.banner__pagination .swiper-pagination-bullet-active {
  background: #fff;
  transform: scale(1.2);
}

.home-hero {
  position: relative;
  width: 100%;
  height: 360px;
  overflow: hidden;
}
.home-hero__container {
  position: relative;
  width: 100%;
  height: 100%;
}
.home-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #000;
}
.home-hero__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.home-hero__content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: white;
  width: 90%;
  max-width: 1200px;
  z-index: 2;
  padding: 20px;
}
.home-hero__title {
  font-size: clamp(1.3rem, 5vw, 3.5rem);
  line-height: 1.6;
}

.home-section {
  width: 100%;
}
.home-section--business {
  border-left: 4px solid #3123ED;
}
.home-section--vision {
  border-left: 4px solid #23e6ED;
}
.home-section--company {
  border-left: 4px solid #A323ED;
}
.home-section--shops {
  border-left: 4px solid #f70399;
}
.home-section__wrapper {
  overflow: hidden;
}
.home-section__wrapper--bg {
  background-color: #f9f9f9;
}
.home-section__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 96px) 0;
}
.home-section__heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2em;
}
.home-section__body {
  display: flex;
  flex-direction: column;
  gap: 60px;
}
.home-section__content {
  width: 100%;
}
.home-section__description {
  font-size: 1rem;
  line-height: 1.6;
  margin: 1.25rem 0;
}
.home-section__more {
  text-align: end;
}
.home-section__company-more {
  text-align: center;
}
.home-section__image {
  width: 100%;
}
.home-section__image-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 6px;
}
.home-section__item {
  position: relative;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
  color: #fff;
  min-height: 300px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
  padding: 2rem;
}
.home-section__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.home-section__inner {
  position: relative;
  z-index: 2;
  margin: 0 auto;
}
.home-section__inner-heading {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}
.home-section__inner-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.6;
}
.home-section__shops {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}
.home-section__shop {
  text-align: center;
}
.home-section__shop-img {
  max-width: 100%;
  height: auto;
  display: inline-block;
}
.home-section__link {
  display: inline-block;
  padding: 0 1.5rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.home-section__link:hover {
  background: #09f0b6;
  color: #000;
}

.home-press {
  border-left: 4px solid #ED9A23;
}
.home-press__wrapper {
  overflow: hidden;
}
.home-press__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 96px) 0;
}
.home-press__heading {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2em;
}
.home-press__grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.home-press__header {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 1rem;
}
.home-press__subheading {
  font-size: 22px;
  font-weight: bold;
  padding-bottom: 10px;
}
.home-press__link {
  color: #333333;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: block;
  max-width: 100%;
}
.home-press__link:hover {
  color: #ff6b6b;
}
.home-press__important {
  width: 100%;
}
.home-press__important-items {
  display: flex;
  flex-direction: column;
}
.home-press__important-item {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.home-press__important-item:first-child {
  border-top: 1px solid #ccc;
}
.home-press__important-date {
  width: 130px;
}
.home-press__news {
  width: 100%;
}
.home-press__news-items {
  display: flex;
  flex-direction: column;
}
.home-press__news-item {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.home-press__news-item:first-child {
  border-top: 1px solid #ccc;
}
.home-press__news-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}
.home-press__news-date {
  width: 130px;
}
.home-press__news-category {
  width: 180px;
  text-align: center;
  padding: 2px 10px;
  border-radius: 5px;
  flex-shrink: 0;
  color: #fff;
  font-size: 14px;
}
.home-press__news-category--1 {
  background-color: #007bff;
}
.home-press__news-category--2 {
  background-color: #ec743c;
}
.home-press__news-category--3 {
  background-color: #e123fa;
}
.home-press__news-category--4 {
  background-color: #fd3276;
}
.home-press__news-category--5 {
  background-color: rgba(255, 0, 55, 0.631372549);
}

.section-home-choose {
  border-left: 4px solid #ED237D;
}
.section-home-choose__wrapper {
  background: #f9f9f9;
  overflow: hidden;
}
.section-home-choose__container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: clamp(50px, 8vw, 96px) 0;
}
.section-home-choose__title {
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 2em;
}
.section-home-choose__items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
.section-home-choose__item {
  background: #fff;
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}
.section-home-choose__item:hover {
  transform: translateY(-5px);
}
.section-home-choose__icon {
  margin-bottom: 12px;
  text-align: center;
}
.section-home-choose__image {
  width: 100px;
  height: 100px;
  object-fit: contain;
}
.section-home-choose__item-title {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
  font-weight: 600;
}
.section-home-choose__item-text {
  font-size: 0.95rem;
  color: #555;
}

.home-contact {
  position: relative;
  background: url("/images/bg/home_contact_bg.jpg") center center/cover no-repeat;
  height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: #fff;
  overflow: hidden;
}
.home-contact__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}
.home-contact__content {
  position: relative;
  z-index: 2;
}
.home-contact__title {
  font-size: clamp(1.2rem, 3vw, 3rem);
  margin-bottom: 1rem;
}
.home-contact__link {
  display: inline-block;
  padding: 0 1.5rem;
  color: #fff;
  border: 1px solid #fff;
  border-radius: 10px;
  text-decoration: none;
  font-weight: bold;
  transition: all 0.3s;
}
.home-contact__link:hover {
  background: #09f0b6;
  color: #000;
}

.footer {
  background-color: #2c3e50;
  color: #ecf0f1;
}
.footer__container {
  width: 90%;
  margin: 0 auto;
  padding: 2rem 0 1rem;
}
.footer__sections {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr;
  margin-bottom: 2rem;
}
.footer__logo {
  display: inline-block;
  margin-bottom: 1rem;
}
.footer__logo-img {
  width: 150px;
  height: auto;
  display: block;
}
.footer__address {
  font-size: 0.8rem;
  color: #bdc3c7;
}
.footer__address p {
  margin: 0.5rem 0;
  line-height: 1.5;
}
.footer__address i {
  margin-right: 1rem;
}
.footer__title {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding-bottom: 0.5rem;
}
.footer__list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  list-style: none;
  font-size: 0.8rem;
}
.footer__link {
  color: #bdc3c7;
  text-decoration: none;
  transition: color 0.2s;
}
.footer__link:hover {
  color: #fff;
}
.footer__socials {
  display: flex;
  gap: 1rem;
  padding: 0;
  list-style: none;
}
.footer__icon {
  width: 32px;
  height: 32px;
  display: block;
  transition: opacity 0.3s;
}
.footer__icon:hover {
  opacity: 0.8;
}
.footer__legal {
  margin-bottom: 1rem;
}
.footer__items {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  padding: 0;
  list-style: none;
}
.footer__copyright {
  font-size: 0.8rem;
  text-align: center;
}

.company-list {
  margin: clamp(50px, 8vw, 96px) 0;
}
.company-list__container {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 5vw, 50px);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.company-list__widget {
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}
.company-list__card {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.company-list__item {
  display: block;
  width: 100%;
  text-align: center;
  text-decoration: none;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s;
}
.company-list__item:hover {
  transform: translateY(-5px);
  background-color: #f0f0f0;
}
.company-list__image {
  width: 100%;
  height: auto;
  object-fit: contain;
  border-radius: 8px;
  margin-bottom: 15px;
}
.company-list__title {
  margin: 0;
  font-size: clamp(1.2em, 3vw, 2em);
  color: #222;
}

.company-content {
  margin: clamp(50px, 8vw, 96px) 0;
}
.company-content__container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.company-content__description {
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  line-height: 1.8;
}
.company-content__description a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.company-content__description a:hover {
  color: #ff6b6b;
}

.service-list {
  margin: clamp(50px, 8vw, 96px) 0;
}
.service-list__container {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 5vw, 50px);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.service-list__widget {
  max-width: 960px;
  margin: 0 auto;
  line-height: 1.6;
}
.service-list__item {
  display: flex;
  flex-direction: column;
  background: #f9f9f9;
  border-radius: 8px;
  overflow: hidden;
}
.service-list__media {
  width: 100%;
  overflow: hidden;
}
.service-list__image {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.service-list__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  padding: 1rem;
}
.service-list__title {
  font-size: clamp(1.2em, 3vw, 2em);
}
.service-list__description {
  line-height: 1.6;
}
.service-list__actions {
  text-align: end;
}

.service-content {
  margin: clamp(50px, 8vw, 96px) 0;
}
.service-content__container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.service-content__description {
  width: 100%;
  max-width: 100%;
  min-height: 200px;
  line-height: 1.8;
}
.service-content__description a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.service-content__description a:hover {
  color: #ff6b6b;
}

.news-category {
  margin: clamp(50px, 8vw, 96px) 0;
}
.news-category__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.news-category__navigation {
  padding: 0 20px;
}
.news-category__list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style: none;
  gap: 10px;
}
.news-category__category {
  flex: 0 0 calc(50% - 5px);
  text-align: center;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 8px;
  padding: 12px 8px;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  cursor: pointer;
}
.news-category__category:hover {
  background: #f0f8ff;
  border-color: #007bff;
  box-shadow: 0 2px 6px rgba(0, 123, 255, 0.2);
  transform: translateY(-2px);
}
.news-category__category--active {
  background: #007bff;
  color: #fff;
  border-color: #007bff;
}
.news-category__link {
  color: inherit;
  text-decoration: none;
  display: block;
  font-weight: bold;
}
.news-category__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.news-category__items {
  padding: 0 20px;
}
.news-category__item {
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.news-category__item:first-child {
  border-top: 1px solid #ccc;
}
.news-category__item-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}
.news-category__item-date {
  width: 130px;
}
.news-category__item-category {
  width: 170px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  flex-shrink: 0;
  color: #fff;
}
.news-category__item-category--1 {
  background-color: #007bff;
}
.news-category__item-category--2 {
  background-color: #ec743c;
}
.news-category__item-category--3 {
  background-color: #e123fa;
}
.news-category__item-category--4 {
  background-color: #fd3276;
}
.news-category__item-link {
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}
.news-category__item-link:hover {
  color: #ff6b6b;
}
.news-category__pagination {
  text-align: center;
}

.news {
  margin: clamp(50px, 8vw, 96px) 0;
}
.news__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.news__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.news__description {
  line-height: 1.6;
  text-align: justify;
}
.news__description a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.news__description a:hover {
  color: #ff6b6b;
}
.news__meta-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.news__meta {
  text-align: left;
  line-height: 1.6;
  font-weight: bold;
}
.news__date {
  margin-bottom: 0.5rem;
}
.news__author {
  font-size: clamp(20px, 3vw, 28px);
}

.important-list {
  margin: clamp(50px, 8vw, 96px) 0;
}
.important-list__container {
  display: flex;
  flex-direction: column;
  gap: 50px;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.important-list__navigation {
  padding: 0 20px;
}
.important-list__link {
  color: inherit;
  text-decoration: none;
  display: block;
  font-weight: bold;
}
.important-list__content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.important-list__items {
  padding: 0 20px;
}
.important-list__item {
  padding: 1rem 0;
  display: flex;
  flex-direction: column;
  gap: 5px;
  border-bottom: 1px solid #ccc;
  text-align: left;
}
.important-list__item:first-child {
  border-top: 1px solid #ccc;
}
.important-list__item-meta {
  display: flex;
  gap: 15px;
  align-items: center;
}
.important-list__item-date {
  width: 130px;
}
.important-list__item-category {
  width: 170px;
  text-align: center;
  padding: 5px 10px;
  border-radius: 5px;
  flex-shrink: 0;
  color: #fff;
  background-color: #ff0000;
}
.important-list__item-link {
  color: #333;
  text-decoration: none;
  line-height: 1.4;
}
.important-list__item-link:hover {
  color: #ff6b6b;
}
.important-list__pagination {
  text-align: center;
}

.important-detail {
  margin: clamp(50px, 8vw, 96px) 0;
}
.important-detail__container {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.important-detail__title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: bold;
  line-height: 1.6;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 10px;
}
.important-detail__description {
  line-height: 1.6;
  text-align: justify;
}
.important-detail__description a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.important-detail__description a:hover {
  color: #ff6b6b;
}
.important-detail__meta-wrapper {
  display: flex;
  justify-content: flex-end;
  margin-top: 2rem;
}
.important-detail__meta {
  text-align: left;
  line-height: 1.6;
  font-weight: bold;
}
.important-detail__date {
  margin-bottom: 0.5rem;
}
.important-detail__author {
  font-size: clamp(20px, 3vw, 28px);
}

.product-category {
  margin: clamp(50px, 8vw, 96px) 0;
}
.product-category__container {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 90%;
  margin: 0 auto;
}
.product-category__nav {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
}
.product-category__nav-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
  padding: 1rem;
  font-size: 1.25rem;
  font-weight: 600;
  background: #f6f6f6;
}
.product-category__nav-toggle {
  display: inline-block;
  transition: transform 0.3s ease;
}
.product-category__nav-toggle.rotate {
  transform: rotate(180deg);
}
.product-category__nav-content {
  display: none;
  padding: 0.5rem;
}
.product-category__nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.product-category__nav-item {
  position: relative;
  padding-left: 1rem;
}
.product-category__nav-item--active > .product-category__nav-link {
  color: #4ab2f1;
  font-weight: 500;
}
.product-category__nav-link {
  display: block;
  padding: 0.75rem 0;
  color: #444;
  transition: color 0.2s;
}
.product-category__nav-link:hover {
  color: #4ab2f1;
}
.product-category__nav-link::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.25rem;
  width: 6px;
  height: 6px;
  background-color: #ddd;
  border-radius: 50%;
}
.product-category__subnav {
  list-style: none;
  padding: 0 0 0 1rem;
  margin: 0.5rem 0;
}
.product-category__subnav-item--active > .product-category__subnav-link {
  color: #4ab2f1;
}
.product-category__subnav-link {
  display: block;
  padding: 0.5rem 0;
  font-size: 0.9rem;
  color: #666;
  transition: color 0.2s;
}
.product-category__subnav-link:hover {
  color: #4ab2f1;
}
.product-category__main {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-category__list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2rem;
}
.product-category__pagination {
  text-align: center;
}

.product-card {
  border: 1px solid #eee;
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.3s, box-shadow 0.3s;
}
.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.product-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.product-card__image-container {
  aspect-ratio: 1/1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
  background: #fff;
}
.product-card__image {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}
.product-card__title {
  margin: 0;
  padding: 0 1rem;
  font-size: clamp(1rem, 2vw, 1.2rem);
  line-height: 1.4;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 2.8em;
}
.product-card__model {
  position: relative;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  color: #666;
}
.product-card__model::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: #eee;
}
.product-card__desc {
  margin: 0;
  padding: 1rem 1rem 0;
  font-size: 0.9rem;
  line-height: 1.5;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 4.5em;
}

.product-detail {
  margin: clamp(50px, 8vw, 96px) 0;
}
.product-detail__container {
  display: flex;
  flex-direction: column;
  gap: clamp(25px, 5vw, 50px);
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
}
.product-detail__summary {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-detail__heading {
  display: flex;
  align-items: center;
  font-size: clamp(1.25rem, 3vw, 2.25rem);
  font-weight: bold;
  gap: 10px;
}
.product-detail__heading::after {
  content: "";
  flex-grow: 1;
  height: 1px;
  background-color: #ee7171;
}
.product-detail__brief {
  width: 90%;
  max-width: 980px;
  margin: 0 auto;
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
}
.product-detail__main {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.product-detail__gallery {
  position: relative;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
}
.product-detail__swiper {
  width: 100%;
  height: auto;
}
.product-detail__slide {
  display: flex;
  justify-content: center;
  align-items: center;
}
.product-detail__slide img {
  max-width: 100%;
  height: 100%;
  object-fit: contain;
}
.product-detail__pagination {
  position: absolute;
  bottom: 10px;
  width: 100%;
  text-align: center;
  z-index: 10;
}
.product-detail__pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  background: rgba(0, 0, 0, 0.3);
  margin: 0 4px;
  opacity: 1;
}
.product-detail__pagination .swiper-pagination-bullet-active {
  background: #000;
}
.product-detail__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 30px;
  background: rgba(200, 200, 200, 0.8);
  border-radius: 50%;
  color: #000;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
}
.product-detail__nav:hover {
  background-color: #eb4545;
}
.product-detail__nav::after {
  font-size: 16px;
}
.product-detail__nav--next {
  right: 10px;
}
.product-detail__nav--next::after {
  content: "\e909";
  font-family: "icon";
}
.product-detail__nav--prev {
  left: 10px;
}
.product-detail__nav--prev::after {
  content: "\e908";
  font-family: "icon";
}
.product-detail__info {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.product-detail__title {
  font-size: 20px;
  font-weight: bold;
}
.product-detail__item {
  display: flex;
  flex-direction: row;
  gap: 1rem;
  margin-bottom: 10px;
}
.product-detail__actions {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 1rem;
}
.product-detail__link {
  display: block;
  border: 2px solid #0078D7;
  padding: 1em;
  text-align: center;
  font-size: 1.25rem;
  font-weight: bold;
  color: #0078D7;
  text-decoration: none;
  margin-bottom: 1rem;
  border-radius: 6px;
  transition: 0.2s ease;
}
.product-detail__link:hover {
  background-color: #0078D7;
  color: white;
}
.product-detail__share {
  padding: 1.5rem;
}
.product-detail__share-heading {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #333;
}
.product-detail__share-list {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
.product-detail__shops {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.product-detail__shops-title {
  font-weight: bold;
  font-size: 2rem;
  text-align: center;
}
.product-detail__shops-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
}
.product-detail__shop {
  text-align: center;
}
.product-detail__shop a {
  display: inline-block;
  width: 100%;
  height: 100%;
}
.product-detail__shop a img {
  max-width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
}
.product-detail__extra {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.product-detail__description {
  display: flex;
  flex-direction: column;
  gap: 30px;
  line-height: 1.6;
}
.product-detail__description a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.product-detail__description a:hover {
  color: #ff6b6b;
}
.product-detail__specs {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.product-detail__spec-wrapper {
  margin-bottom: 20px;
}
.product-detail__spec-list {
  width: 100%;
}
.product-detail__spec-item {
  display: flex;
  flex-direction: column;
  border-bottom: 1px dotted #bbb;
}
.product-detail__spec-name {
  padding: 10px 0;
  font-weight: 600;
  color: #444;
}
.product-detail__spec-value {
  color: #555;
}
.product-detail__spec-value--width {
  width: 80%;
}

.information {
  margin: clamp(50px, 8vw, 96px) 0;
}
.information__container {
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
  background-color: #f9f9f9;
  border-radius: 20px;
  padding: 20px;
}
.information__title {
  font-size: clamp(1.5em, 3vw, 2em);
  text-align: center;
  margin-bottom: 20px;
}
.information__description {
  max-width: 100%;
  min-height: 200px;
  line-height: 1.6;
}
.information__description a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.information__description a:hover {
  color: #ff6b6b;
}

.recruit-list {
  margin: clamp(50px, 8vw, 96px) 0;
}
.recruit-list__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  max-width: 960px;
  margin: 0 auto;
}
.recruit-list__widget {
  max-width: 100%;
}
.recruit-list__subtitle {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
  display: inline-block;
  padding-bottom: 0.5rem;
}
.recruit-list__subtitle::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background-color: #ff09c1;
  border-radius: 2px;
}
.recruit-list__item {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.recruit-list__title {
  position: relative;
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-bottom: 35px;
  padding-top: 30px;
}
.recruit-list__title::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ccc;
}
.recruit-list__title::after {
  content: "";
  position: absolute;
  top: 1px;
  left: 0;
  width: clamp(60px, 6vw, 140px);
  height: 4px;
  background-color: #007bff;
}
.recruit-list__description {
  max-width: 100%;
}
.recruit-list__description a {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.recruit-list__description a:hover {
  color: #ff6b6b;
}
.recruit-list__actions {
  text-align: center;
}
.recruit-list__nothing {
  line-height: 1.6;
}

.contact {
  margin: clamp(50px, 8vw, 96px) 0;
}
.contact__container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 90%;
  min-height: 300px;
  max-width: 960px;
  margin: 0 auto;
}
.contact__widget {
  width: 100%;
  background-color: #f9f9f9;
  border: 1px solid #ccc;
  padding: 20px;
  border-radius: 20px;
  line-height: 1.6;
  margin: 0 auto 50px;
}
.contact__items {
  display: grid;
  gap: 20px;
  padding: 15px 0;
}
.contact__item {
  padding: 20px 0;
}
.contact__link {
  font-size: 18px;
  color: #000;
  text-decoration: none;
}
.contact__link:hover {
  color: #ff6b6b;
}
.contact__success {
  max-width: 100%;
}
.contact__number {
  font-weight: bold;
  color: #d9534f;
  font-size: 1.2rem;
}
.contact__actions {
  display: flex;
  gap: 30px;
}

.contact-form {
  max-width: 800px;
  margin: auto;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.contact-form__group {
  display: flex;
  flex-direction: column;
  margin-bottom: 15px;
}
.contact-form__group input.is-invalid,
.contact-form__group select.is-invalid,
.contact-form__group textarea.is-invalid {
  border: 2px solid red !important;
}
.contact-form__label {
  font-weight: bold;
  margin-bottom: 5px;
}
.contact-form__input {
  width: 100%;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border 0.3s;
}
.contact-form__input:focus {
  border-color: #007BFF;
  outline: none;
}
.contact-form__textarea {
  width: 100%;
  padding: 10px;
  resize: vertical;
  min-height: 200px;
  border: 1px solid #ccc;
  border-radius: 5px;
  transition: border 0.3s;
}
.contact-form__textarea:focus {
  border-color: #007BFF;
  outline: none;
}
.contact-form__checkbox-group {
  border: 1px solid #ddd;
  border-radius: 4px;
  padding: 12px;
  margin: 8px 0;
}
.contact-form__checkbox-legend {
  font-weight: bold;
  padding: 0 4px;
  float: none;
  width: auto;
}
.contact-form__checkbox-item {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.contact-form__checkbox-input {
  margin-right: 8px;
  width: 18px;
  height: 18px;
}
.contact-form__checkbox-label {
  cursor: pointer;
  user-select: none;
}
.contact-form__select {
  font-size: 1rem;
  padding: 12px 40px 14px 14px;
  max-width: 300px;
  max-height: 50px;
}
.contact-form__radio-group {
  display: flex;
  gap: 1.5rem;
}
.contact-form__radio {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.contact-form__required {
  display: inline-block;
  padding: 2px 6px;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background-color: #dc3545;
  border-radius: 4px;
  margin-left: 10px;
}
.contact-form__agree {
  margin-bottom: 15px;
}
.contact-form__policy {
  margin-bottom: 15px;
  line-height: 1.6;
}
.contact-form__submit {
  background-color: #007BFF;
  color: white;
  padding: 10px;
  border: none;
  border-radius: 5px;
  font-size: 18px;
  cursor: pointer;
  width: 100%;
  transition: background 0.3s;
}
.contact-form__submit:hover {
  background-color: #0056b3;
}
.contact-form__group .d-block, .contact-form__agree .d-block {
  display: block !important;
}

.invalid-feedback {
  display: none;
  width: 100%;
  margin-top: 0.25rem;
  font-size: 0.875em;
  color: #ff0000;
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 2rem 0;
  padding: 0;
  list-style: none;
  font-size: 1rem;
}
.pagination__item {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.pagination__item--active .pagination__link {
  background-color: #4ab2f1;
  color: white;
  border-color: #4ab2f1;
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 2.5rem;
  height: 2.5rem;
  padding: 0 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
  background-color: #f8f8f8;
  color: #333;
  text-decoration: none;
  transition: all 0.2s ease;
}
.pagination__link:hover {
  background-color: #e9e9e9;
  border-color: #ccc;
}

.button {
  display: inline-block;
  background: linear-gradient(45deg, #007BFF, #00C6FF);
  color: #fff;
  border: none;
  padding: 10px 20px;
  font-weight: 600;
  border-radius: 4px;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.3s ease, background 0.3s ease, border 0.3s ease;
}
.button:hover {
  transform: scale(1.05);
  background: linear-gradient(45deg, #0056b3, #009ecf);
}
.button:focus {
  outline: none !important;
}

.btn-slide {
  padding: 12px 24px;
  background: linear-gradient(to right, #FF6B6B 50%, white 50%);
  background-size: 200% 100%;
  background-position: right bottom;
  color: #000;
  text-decoration: none;
  border: 2px solid #FF6B6B;
  transition: all 0.3s ease-out;
  cursor: pointer;
}
.btn-slide:hover {
  background-position: left bottom;
  color: white;
}
.btn-slide:focus {
  outline: none !important;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
}
.modal__content {
  background-color: #fff;
  padding: 20px;
  max-width: 800px;
  width: 90%;
  border-radius: 8px;
  position: relative;
  max-height: 80vh;
  overflow-y: auto;
}
.modal__close {
  position: absolute;
  right: 15px;
  top: 10px;
  font-size: 24px;
  cursor: pointer;
}
.modal__title {
  text-align: center;
  font-size: 24px;
}
.modal__des {
  min-height: 100px;
}
.modal__link {
  color: #000;
  text-decoration: none;
  font-weight: bold;
}
.modal__link:hover {
  color: #ff6b6b;
}

.cookie {
  position: fixed;
  bottom: 0;
  width: 100%;
  background: #f5f5f5;
  color: #333;
  padding: 1rem;
  font-size: 0.9rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-top: 1px solid #ccc;
  z-index: 1000;
}
.cookie__text {
  margin: 0;
}
.cookie__button {
  background: #007bff;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.9rem;
  border-radius: 4px;
  cursor: pointer;
}
.cookie__button:hover {
  background: #0056b3;
}

@media (min-width: 576px) {
  .company-list__card {
    flex-direction: row;
  }
  .company-list__item {
    width: calc((100% - 20px) / 2);
  }
}
@media (min-width: 768px) {
  .home-hero {
    height: 100vh;
  }
  .home-hero__content {
    width: 80%;
  }
  .banner__pagination {
    bottom: 10px !important;
  }
  .banner__pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }
  .section-home-choose__items {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
  .home-section--service {
    border-left: 6px solid #3123ED;
  }
  .home-section--vision {
    border-left: 6px solid #23e6ED;
  }
  .home-section--company {
    border-left: 6px solid #A323ED;
  }
  .home-section--shops {
    border-left: 6px solid #f70399;
  }
  .home-section__body {
    flex-direction: row;
  }
  .home-section__image, .home-section__content {
    flex: 1;
  }
  .home-section__container--image-left .home-section__content {
    order: 2;
  }
  .home-section__container--image-left .home-section__image {
    order: 1;
  }
  .home-section__item {
    flex: 1;
  }
  .home-section__shops {
    grid-template-columns: repeat(3, 1fr);
  }
  .news-category__category {
    flex: 0 0 calc((100% - 20px) / 3);
  }
  .service-list__item {
    flex-direction: row;
    min-height: 300px;
  }
  .service-list__item--right-image {
    flex-direction: row-reverse;
  }
  .service-list__media {
    flex: 1 1 30%;
  }
  .service-list__card {
    flex: 1 1 70%;
    padding: 2rem;
  }
  .product-category__list {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-detail__main {
    flex-direction: row;
    gap: 3rem;
  }
  .product-detail__gallery {
    width: 60%;
  }
  .product-detail__info {
    width: 40%;
  }
  .product-detail__shops-list {
    grid-template-columns: repeat(3, 1fr);
  }
  .product-detail__spec-item {
    flex-direction: row;
  }
  .product-detail__spec-name {
    padding: 25px 40px;
    max-width: 200px;
    min-width: 200px;
  }
  .product-detail__spec-value {
    padding: 10px 0 20px 15px;
    color: #666;
    position: relative;
  }
  .product-detail__spec-value::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: calc(100% - 10px);
    border-left: 1px dotted #bbb;
  }
  .contact__items {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer__sections {
    grid-template-columns: repeat(2, 1fr);
  }
  .pagination {
    gap: 0.25rem;
  }
  .pagination__link {
    min-width: 2rem;
    height: 2rem;
    padding: 0 0.25rem;
  }
}
@media (min-width: 992px) {
  .header__mobile {
    display: none;
  }
  .header__pc {
    width: auto;
    max-height: none;
    display: flex;
    gap: 1rem;
    background: transparent;
    transition: none;
  }
  .header__menu {
    display: flex;
    background: transparent;
    transition: none;
  }
  .header__menu-item {
    width: auto;
    border-bottom: none;
    margin-left: 1.5rem;
  }
  .header__link {
    padding: 0.5rem 0;
  }
  .header__link:hover {
    background-color: transparent;
  }
  .header__language {
    display: flex;
  }
  .header__language-item {
    width: auto;
    border-bottom: none;
  }
  .hero {
    height: 70vh;
  }
  .section-home-choose {
    border-left: 6px solid #ED237D;
  }
  .home-press {
    border-left: 6px solid #ED9A23;
  }
  .home-section__shops {
    grid-template-columns: repeat(4, 1fr);
  }
  .news-category__category {
    flex: 0 0 calc((100% - 30px) / 4);
  }
  .news-category__item {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
  .important-list__item {
    flex-direction: row;
    align-items: center;
    gap: 50px;
  }
  .contact__items {
    grid-template-columns: repeat(3, 1fr);
  }
  .footer__sections {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (min-width: 1200px) {
  .home-press__grid {
    flex-direction: row-reverse;
    gap: 4rem;
  }
  .home-press__important {
    width: calc((100% - 4rem) / 2);
  }
  .home-press__news {
    width: calc((100% - 4rem) / 2);
  }
  .company-list__item {
    width: calc((100% - 40px) / 3);
  }
  .news-category__category {
    flex: 0 0 calc((100% - 40px) / 5);
  }
  .news__title {
    flex-grow: 1;
  }
  .important-list__category {
    flex: 0 0 calc((100% - 40px) / 5);
  }
  .product-category__container {
    flex-direction: row;
  }
  .product-category__sidebar {
    flex: 0 0 20%;
  }
  .product-category__list {
    grid-template-columns: repeat(4, 1fr);
  }
  .product-category__nav-toggle {
    display: none;
  }
  .product-category__nav-content {
    display: block;
  }
  .product-detail__shops-list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (min-width: 1400px) {
  .footer__sections {
    grid-template-columns: repeat(4, 1fr);
  }
}