:root {
  --section-padding: 120px;
}
@media (max-width: 768px) {
  :root {
    --section-padding: 36px;
  }
}
* {
  box-sizing: border-box;
}
body {
  font-family: "Noto Sans JP", sans-serif;
}

.base-button {
  display: inline-block;
  height: 32px;
  border: 1px solid #fd7e14;
  line-height: 32px;
  text-align: center;
  color: #fd7e14;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  padding: 0 10px;
  overflow: hidden;
  white-wrap: no-wrap;
}
.base-button-fill {
  background-color: #fd7e14;
  color: #ffffff;
}
