@charset "utf-8";

* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: "Zen Kaku Gothic New", Meiryo, sans-serif;
}

/* :root {
  --primary-color: #333;
  --secondary-color: #125098;
  --tertiary-color: #ffffff;
} */

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

ul {
  list-style-type: none;
}

ul li {
  display: inline-block;
  /* padding: 10px 25px; */
}

img {
  width: 100%;
  vertical-align: bottom;
}

p {
  letter-spacing: 0.1em;
  line-height: 1.6;
}

footer {
  text-align: center;
  /* padding: 20px 0; */
  background-color: #ED7388;
  color: #fff;
  line-height: 1.6;
}

footer a {
  transition: all .3s;
}

footer a:hover {
  opacity: 0.3;
}