#japan-food {
  font-family: "Noto Sans TC", sans-serif;
}
#japan-food .title-bar {
  background-color: #e93323;
  color: #fff;
}
#japan-food .title-bar .container {
  padding: 25px 0;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 992px) {
  #japan-food .title-bar .container {
    justify-content: center;
  }
  #japan-food .title-bar .container .title {
    font-size: 2.2rem;
  }
}
#japan-food .title-bar .title-icon {
  height: 55px;
  flex-shrink: 0;
}
#japan-food .title-bar .title {
  font-size: 2.5rem;
  font-weight: 700;
  padding-left: 20px;
  transform: translateY(-2px);
}
#japan-food #food-content {
  width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 50px 0;
}
@media screen and (max-width: 992px) {
  #japan-food #food-content {
    justify-content: center;
  }
}
#japan-food #food-content .zone {
  height: 350px;
  width: 350px;
  position: relative;
  border-radius: 22px;
  background: #e93323;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px 0;
  cursor: pointer;
  text-decoration: none;
  transition: 0.3s;
  margin: 20px;
}
#japan-food #food-content .zone:hover {
  background: #cf2415;
}
#japan-food #food-content .zone:hover .icon {
  transform: scale(1.05);
}
#japan-food #food-content .zone .num {
  position: absolute;
  top: 0;
  left: 0;
  width: 25%;
  height: 25%;
  border-radius: 20px 0;
  background-color: #fff;
  margin: 4px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 3rem;
  font-weight: bold;
  color: #e93323;
}
#japan-food #food-content .zone .icon {
  width: 68%;
  transform: scale(1);
  transform-origin: center;
  transition: 0.3s;
}
#japan-food #food-content .zone .text {
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=style.css.map */