@charset "UTF-8";

/*
  Base
---------------------------------------------- */
html {
  box-sizing: border-box;
  height: 100%;
}

*,
*::before,
*::after {
  box-sizing: inherit;
}

body {
  height: 100%;
  font-family: "Noto Sans JP", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro",
    "Osaka", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--color-text-black);
  background-color: var(--color-text-white);
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

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

h1,
h2,
h3,
h4,
h5,
strong {
  font-weight: bold;
}

input {
  line-height: 40px;
}

:focus {
  outline: 1px solid var(--color-border-brown);
}

::placeholder {
  color: var(--color-text-gray);
}

@media screen and (min-width: 980px) {
  a:hover,
  button:hover {
    opacity: 0.7;
    transition: all 0.3s ease-in-out;
  }
}
