@import url('https://fonts.googleapis.com/css2?family=Cormorant:wght@300&family=Noto+Sans+JP&family=Noto+Serif:wght@500&family=Poppins:wght@500&family=Roboto+Condensed:wght@300&family=Roboto:wght@500;700&family=Zen+Old+Mincho:wght@500&display=swap');

input[type="text"], input[type="email"], input[type="submit"], select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  /* font: inherit; */
  outline: none;
}

body {
  font-family: sans-serif;
  margin: 0 auto;
  max-width: 1920px;
  background: #fff;
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}

button {
  margin: 0;
  padding: 0;
  border: none;
}

button:hover {
  cursor: pointer;
}

.text {
  font-size: 16px;
  font-family: "HiraginoSans-W3", "Hiragino Sans";
  letter-spacing: 0.08em;
}

/* ホバー時に半透明化する */
.translucentOnHover:hover {
  opacity: 0.5;
  cursor: pointer;
}

/* 下からフェードインする要素に適用するスタイル */
.fadeInFromBottom {
  opacity: 0;
  transition: opacity 1s ease, transform 1s ease;
  transform: translate(0, 200px);
}


