@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@1,700&family=Noto+Sans+JP:wght@300;400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=DM+Sans:ital,wght@1,700&family=Inter:wght@100&display=swap");
/* emergency
   ========================================================================== */
.emergency {
  margin: 70px auto;
  padding: 0 20px;
}
.emergency__heading {
  position: relative;
  color: red;
  border-bottom: 6px solid red;
  margin-bottom: 0;
  padding-bottom: 10px;
  text-align: center;
}
.emergency__heading:before, .emergency__heading:after {
  position: absolute;
  bottom: -6px;
  width: 20%;
  height: 6px;
  content: "";
  background: #EFEFEF;
}
.emergency__heading:before {
  left: 0;
}
.emergency__heading:after {
  right: 0;
}
.emergency__list {
  width: 100%;
  text-align: center;
  margin: 20px 0;
}
.emergency__item {
  text-align: center;
  margin-bottom: 10px;
}
.emergency__item:last-child {
  margin-bottom: 0;
}
.emergency__item a:hover {
  text-decoration: underline;
}

@media only screen and (max-width: 767px) {
  .emergency {
    margin: 50px auto;
  }
}
/* ========================================================================== */
/* top-products
   ========================================================================== */
.top-products-wrap {
  width: 100%;
  background-color: #e1f0ed;
  padding: 50px 0;
}
.top-products-wrap__title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 26px;
  font-size: 2.6rem;
  margin-bottom: 50px;
  text-align: center;
}

.top-products {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.top-products__item {
  display: block;
  border-radius: 5px;
  border: 1px solid #b2d8d1;
  width: 25%;
  text-align: center;
  background-color: white;
  margin-right: 2%;
  padding: 20px;
  transition: 0.3s;
}
.top-products__item:hover {
  transition: 0.3s;
  opacity: 0.7;
}
.top-products__item:last-child {
  margin-right: 0;
}
.top-products__item .products-img {
  width: 100%;
  margin: 0 auto 15px auto;
  border-bottom: 2px solid #00bd99;
  padding-bottom: 20px;
}
.top-products__item .products-name {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.3em;
  text-align: left;
}
.top-products__item .products-name:after {
  display: inline-block;
  content: "\f138";
  font-family: FontAwesome;
  color: #00bd99;
  padding-left: 5px;
}

@media only screen and (max-width: 767px) {
  .top-products-wrap {
    width: 100%;
    background-color: #e1f0ed;
    padding: 30px 0;
  }
  .top-products-wrap__title {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 600;
    font-size: 22px;
    font-size: 2.2rem;
    margin-bottom: 30px;
    text-align: center;
  }
  .top-products__item {
    width: 32%;
    padding: 10px;
    transition: none;
  }
  .top-products__item:hover {
    transition: none;
    opacity: 1;
  }
  .top-products__item .products-img {
    margin: 0 auto 10px auto;
    padding-bottom: 10px;
  }
  .top-products__item .products-name {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
@media only screen and (max-width: 480px) {
  .top-products {
    justify-content: flex-start;
  }
  .top-products__item {
    width: 48%;
    margin-right: 4%;
    margin-top: 4%;
  }
  .top-products__item:nth-child(2n) {
    margin-right: 0;
  }
  .top-products__item:nth-child(-n+2) {
    margin-top: 0;
  }
  .top-products__item:last-child {
    margin-right: 0;
  }
  .top-products__item .products-name {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 500;
    font-size: 14px;
    font-size: 1.4rem;
  }
}
/* ========================================================================== *//*# sourceMappingURL=top-page.css.map */