@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Sans+SC:wght@100..900&family=Noto+Sans+TC:wght@100..900&family=Noto+Sans:ital,wght@0,100..900;1,100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", sans-serif;
}

body {
  width: 100%;
  height: 100vh;
  height: 100dvh;
  overflow-x: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}
body Nav {
  background-color: white;
  padding: clamp(12px, 0.94vw, 18px) clamp(24px, 18.75vw, 360px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
}
body Nav img.logo {
  width: 92px;
}
body Nav img.menu {
  width: 32px;
  display: none;
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
}
body Nav ul {
  display: flex;
  list-style-type: none;
  justify-content: center;
  align-items: center;
  gap: 16px;
}
body Nav ul li {
  color: #555;
  font-size: clamp(16px, 0.94vw, 18px);
  cursor: not-allowed;
  opacity: 0.5;
}
@media (max-width: 990px) {
  body Nav {
    background-color: #4e4e4e;
  }
  body Nav ul,
  body Nav .placehoder {
    display: none;
  }
  body Nav img.menu {
    display: block;
    cursor: not-allowed;
  }
}
body div.info-banner {
  width: 100%;
  height: 226px;
  min-height: 226px;
  background-image: url("./info_images/header-page-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
body div.info-banner p {
  font-size: 30px;
  color: #555;
  font-weight: 500;
}
body .content {
  flex: 1;
  max-height: 715px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(24px, 4.17vw, 80px);
}
body .content img {
  width: 100%;
  max-width: 800px;
}
body footer {
  background-color: #F45650;
  font-size: clamp(16px, 0.94vw, 18px);
  color: white;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}/*# sourceMappingURL=info.css.map */