.header {
  position: fixed;
  z-index: 100;
  width: 100%;
  top: 0;
  left: 0;
}

@media (min-width: 996px) {
  .header {
    top: 40px;
  }
}

.header__inner {
  background: var(--color);
  color: #fff;
}

@media (min-width: 996px) {
  .header__inner {
    width: 100%;
    margin: 0 auto;
    max-width: 1500px;
    border-radius: 80px;
  }
}

.header__box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

@media (min-width: 996px) {
  .header__box {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    max-width: 1280px;
    margin: 0 auto;
  }
}

.header-logo {
  text-align: center;
  padding: 15px 0;
}

.header-logo img {
  height: 40px;
}

@media (min-width: 996px) {
  .header-logo {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 20%;
            flex: 0 0 20%;
  }
}

.header-btn {
  position: absolute;
  top: 20px;
  left: 25px;
}

.header-btn::after {
  content: "\ea17";
  font-family: "msi-icons";
  color: #fff;
  font-size: 30px;
}

@media (min-width: 996px) {
  .header-btn {
    display: none;
  }
}

.header-menu {
  display: none;
  padding: 40px;
}

.header-menu li {
  padding: 25px 0;
}

@media (min-width: 996px) {
  .header-menu {
    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: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80%;
            flex: 0 0 80%;
    padding: 0;
    gap: 80px;
  }
  .header-menu li {
    font-weight: bold;
    font-size: 20px;
    cursor: pointer;
    padding: 10px 20px;
  }
  .header-menu li:hover {
    background: #fff;
    border-radius: 80px;
    color: var(--color);
  }
}

.kv {
  background: url("../images/bg.jpg") left top no-repeat ;
  background-size: cover;
  padding: 25vw 25px 30px;
}

@media (min-width: 768px) {
  .kv {
    padding-top: 18vw;
  }
}

@media (min-width: 996px) {
  .kv {
    padding: 180px 0 80px;
  }
}

.kv img {
  width: 100%;
}

.kv h1 {
  position: absolute;
  z-index: 0;
  left: -100%;
  top: -100px;
  font-size: 0;
}

.kv__title {
  position: relative;
  width: 80%;
  margin: 0 auto;
  max-width: 600px;
  padding-bottom: 15px;
}

.kv__title-2 {
  position: absolute;
  inset: 0;
}

.kv-map {
  padding-top: 25px;
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
}

.kv__pd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  gap: 15px;
  text-align: center;
  padding: 25px 0 10px;
  font-size: 15px;
  font-weight: bold;
  line-height: 1;
}

@media (min-width: 996px) {
  .kv__pd {
    gap: 20px;
    font-size: 18px;
  }
}

.kv figure {
  width: calc(33% - 15px);
  max-width: 180px;
}

@media (min-width: 996px) {
  .kv figure {
    width: 150px;
  }
}

.kv-pdimg {
  background: linear-gradient(45deg, #ececec, #e1e1e1);
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 10px;
}

.kv-note {
  padding-top: 20px;
  font-size: 14px;
  color: #666;
  text-align: center;
}

.service {
  padding: 20px 25px;
}

@media (min-width: 996px) {
  .service {
    padding: 40px 25px;
  }
}

.service__inner {
  width: 100%;
  margin: 0 auto;
  max-width: 1600px;
  margin: 0 auto;
}

.service__tab {
  width: 100%;
  margin: 0 auto;
  max-width: 800px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.service__tab__item {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  text-align: center;
  padding: 15px;
  width: 80%;
  margin: 0 auto;
  max-width: 400px;
  border: #ccc 1px solid;
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
}

@media (min-width: 996px) {
  .service__tab__item {
    padding: 25px 20px;
    border: none;
  }
}

@media (min-width: 996px) {
  .service__tab__item.hidden-pc {
    display: none;
  }
}

.service__tab__item h3 {
  font-size: 16px;
  font-style: italic;
  font-weight: 600;
}

@media (min-width: 996px) {
  .service__tab__item h3 {
    font-size: 30px;
  }
}

.service__tab__item h3 b {
  font-weight: 900;
  font-size: 120%;
}

.service__tab__item p {
  padding: 10px 0 20px;
  font-size: 12px;
}

@media (min-width: 996px) {
  .service__tab__item p {
    font-size: 16px;
  }
}

.service__tab__item button {
  background: var(--color);
  color: #fff;
  border-radius: 30px;
  border: var(--color) 2px solid;
  padding: 10px 20px;
  font-size: 14px;
}

@media (min-width: 996px) {
  .service__tab__item button {
    font-size: 16px;
  }
}

.service__tab__item button:hover {
  background: none;
  color: var(--color);
}

.service__tab__item.active {
  background: var(--bg);
  border: none;
}

.service__tab__item.active button {
  background: #282828;
  border-color: #282828;
}

.service__tab__item.active button:hover {
  color: #fff;
}

.service__content {
  background: var(--bg);
  border-bottom-left-radius: 30px;
  border-bottom-right-radius: 30px;
  padding: 25px;
}

@media (min-width: 996px) {
  .service__content {
    border-radius: 30px;
  }
}

.service__intro {
  width: 100%;
  margin: 0 auto;
  max-width: 1000px;
  padding: 25px 0;
  text-align: center;
  color: #666;
}

.service__intro-text {
  line-height: 1.2;
  padding-bottom: 15px;
  font-size: 16px;
}

@media (min-width: 996px) {
  .service__intro-text {
    line-height: 1.5;
    font-size: 18px;
  }
}

.service__intro-btn {
  padding-top: 10px;
}

@media (min-width: 996px) {
  .service__intro-btn {
    padding-top: 25px;
  }
}

.service__intro-btn a {
  background: var(--color);
  color: #fff;
  border-radius: 30px;
  border: var(--color) 2px solid;
  padding: 10px 20px;
  font-size: 14px;
}

@media (min-width: 996px) {
  .service__intro-btn a {
    font-size: 16px;
  }
}

.service__intro-btn a:hover {
  background: none;
  color: var(--color);
}

.service__filter {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 10px;
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding-top: 25px;
}

@media (min-width: 768px) {
  .service__filter {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

@media (min-width: 768px) {
  .service__filter-item {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
  }
}

.service__filter select, .service__filter input[type="text"] {
  position: relative;
  z-index: 1;
  padding: 10px;
  border: #ccc 1px solid;
  border-radius: 5px;
  font-size: 14px;
  width: 100%;
}

@media (min-width: 996px) {
  .service__filter select, .service__filter input[type="text"] {
    font-size: 16px;
    padding: 15px;
  }
}

.service__filter-item {
  position: relative;
}

.service__filter .form-select::after {
  content: "\ea11";
  font-family: "msi-icons";
  font-size: 16px;
  color: #666;
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service__filter .form-search button {
  position: absolute;
  z-index: 2;
  right: 0;
  top: 0;
  width: 50px;
  height: 100%;
  cursor: pointer;
  font-size: 16px;
  color: #666;
}

.service__filter .form-search button::after {
  content: "\f020";
  font-family: "msi-icons";
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.service__filter .form-search button:hover {
  color: var(--color);
}

.service__store {
  width: 100%;
  margin: 0 auto;
  max-width: 1200px;
  padding: 10px 0;
  max-height: 60vh;
  overflow-y: auto;
}

.service__store-title {
  display: none;
}

.service__store-item {
  position: relative;
  font-size: 14px;
  padding: 10px 10px 10px 50px;
  border: #ccc 1px solid;
  border-radius: 10px;
  margin: 5px auto;
}

.service__store-item li {
  padding: 3px 0;
}

.service__store-item li:nth-child(1), .service__store-item li:nth-child(2) {
  display: inline-block;
  color: var(--color);
}

.service__store-item li:nth-child(1)::after {
  content: " / ";
}

.service__store-item li:nth-child(3) {
  font-weight: bold;
  padding: 5px 0;
}

.service__store-item a {
  color: var(--color);
  position: absolute;
  left: 10px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  font-size: 30px;
}

.service__store-item a::after {
  content: "\f041";
  font-family: "msi-icons";
}

@media (min-width: 996px) {
  .service__store {
    display: table;
    border-collapse: collapse;
    margin: 25px auto;
  }
  .service__store ul {
    display: table-row;
  }
  .service__store ul li {
    display: table-cell;
  }
  .service__store-title {
    background: #fff;
    font-weight: bold;
  }
  .service__store-title li {
    text-align: left;
    padding: 15px 10px;
    font-size: 16px;
  }
  .service__store-item {
    border: none;
    border-bottom: #ccc 1px solid;
    white-space: pre-line;
  }
  .service__store-item li {
    padding: 20px 10px;
    vertical-align: middle;
  }
  .service__store-item li:nth-child(1) {
    display: table-cell;
    color: #222;
    min-width: 100px;
  }
  .service__store-item li:nth-child(1)::after {
    display: none;
  }
  .service__store-item li:nth-child(2) {
    display: table-cell;
    color: #222;
    min-width: 140px;
  }
  .service__store-item li:nth-child(3) {
    padding: 20px 10px;
    min-width: 250px;
  }
  .service__store-item li:nth-child(4) {
    min-width: 200px;
  }
  .service__store-item li:last-child {
    padding-right: 50px;
  }
  .service__store-item a {
    left: auto;
    right: 10px;
  }
}

@media (min-width: 996px) {
  .contact {
    background: url("../images/bg-contact.jpg") left bottom no-repeat ;
    background-size: cover;
    background-size: 100% auto;
    width: 100%;
    margin: 0 auto;
    max-width: 1920px;
  }
}

.contact h2 {
  text-align: center;
  padding-bottom: 25px;
}

@media (min-width: 996px) {
  .contact h2 {
    text-align: left;
    position: absolute;
    top: 10%;
    left: 0%;
  }
}

.contact__warranty {
  position: relative;
  background: linear-gradient(45deg, #ececec, #949393, #e1e1e1);
  border-radius: 15px;
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 15px;
  color: #fff;
}

@media (min-width: 996px) {
  .contact__warranty {
    margin-left: 35%;
    background: linear-gradient(45deg, #ececec, #e1e1e1);
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .contact__warranty::before {
    content: "";
    position: absolute;
    z-index: 0;
    right: 0;
    top: 0;
    width: 66%;
    height: 100%;
    background: linear-gradient(45deg, #919191, #bebebe);
    border-radius: 15px;
  }
}

.contact__warranty-item {
  position: relative;
  z-index: 2;
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (min-width: 996px) {
  .contact__warranty-item {
    padding-left: 50px;
  }
}

.contact__warranty-item .icon {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 30px;
          flex: 0 0 30px;
  margin-right: 15px;
}

@media (min-width: 996px) {
  .contact__warranty-item .icon {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 80px;
            flex: 0 0 80px;
  }
}

.contact__warranty-item p {
  font-weight: bold;
}

@media (min-width: 996px) {
  .contact__warranty-item span {
    display: block;
  }
}

.contact__warranty-item .note {
  font-weight: normal;
  font-size: 60%;
}

@media (min-width: 996px) {
  .contact__warranty-item .note {
    padding-top: 3px;
  }
}

.contact__warranty-item .text {
  color: transparent;
  background: -webkit-gradient(linear, left top, right top, from(#930622), color-stop(#ce1a3f), to(#910622));
  background: linear-gradient(90deg, #930622, #ce1a3f, #910622);
  background-clip: text;
}

.contact__box {
  margin-top: 20px;
  background: #282828;
  border-radius: 15px;
  padding: 20px;
  color: #fff;
}

@media (min-width: 996px) {
  .contact__box {
    margin-left: 35%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding: 40px 60px;
  }
}

.contact__info ul {
  padding-bottom: 20px;
}

.contact__info li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.contact__info li p {
  margin-left: 10px;
}

.contact__info li span {
  display: block;
  font-size: 80%;
}

.contact__serviceTime {
  text-align: center;
}

.contact__serviceTime p {
  font-weight: bold;
}

.contact__serviceTime p span {
  display: block;
  font-style: italic;
}

.contact__serviceTime .note {
  font-size: 80%;
  font-style: italic;
  padding-top: 5px;
}

.contact__btns {
  padding-top: 25px;
}

@media (min-width: 996px) {
  .contact__btns {
    padding-top: 0;
  }
}

.contact__btns a {
  color: #fff;
  border-radius: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 10px auto;
  background: var(--color);
  border: var(--color) 1px solid;
  padding: 10px;
}

@media (min-width: 996px) {
  .contact__btns a {
    margin: 0 auto 20px;
  }
}

.contact__btns a:hover {
  background: none;
}

.contact__btns a p {
  font-weight: bold;
  font-size: 18px;
}

.contact__btns a span {
  display: block;
  font-weight: normal;
  font-size: 15px;
}

.contact__btns a:nth-child(1) {
  --color: #3f3f3f;
}

.contact__btns a:nth-child(3) {
  --color: #81001a;
}

.contact__btns .note {
  text-align: center;
  font-size: 14px;
  opacity: 0.8;
  padding-top: 10px;
}

.pagination {
  text-align: center;
  padding: 20px 10px 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.pagination button {
  background: none;
  font-size: 13px;
  width: 30px;
  height: 30px;
  border: #ccc 1px solid;
  border-radius: 3px;
  margin: 0 5px;
  cursor: pointer;
}

.pagination button:hover {
  background: var(--color);
  color: #fff;
}

.pagination button.active {
  background: var(--color-gray-300);
}

.pagination button.active:hover {
  color: #222;
}

.pagination button.prev {
  font-size: 0;
}

.pagination button.prev::after {
  content: "\ea10";
  font-family: "msi-icons";
  font-size: 16px;
}

.pagination button.next {
  font-size: 0;
}

.pagination button.next::after {
  content: "\ea09";
  font-family: "msi-icons";
  font-size: 16px;
}

.project {
  --color: #ff003c;
  --bg: #efefef;
  position: relative;
  color: #222;
  font-size: 17px;
  overflow-x: hidden;
}

.project img {
  max-width: 100%;
  vertical-align: bottom;
}

.project picture {
  display: block;
}

.project .common-container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  max-width: 1250px;
  padding: 25px;
}

.project .common-title {
  font-size: var(--title-xl);
  font-style: italic;
  font-weight: 600;
}

.project .common-title b {
  font-weight: 900;
  font-size: 110%;
}
/*# sourceMappingURL=main.css.map */