/*------------------------------
  Typography / General
------------------------------*/
html {
  font-size: 62.5%;
  line-height: 1.6;
  background-color: #fff;
}

body {
  margin: 0;
  padding: 0;
  color: #141414;
  background-color: #fff;
}

main{
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS PMincho", serif;
}

/*------------------------------
  Headings
------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: inherit;
}

h1 { font-size: 2rem; }
h2 { font-size: 1.75rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1rem; }
h6 { font-size: 0.875rem; }

/*------------------------------
  Paragraphs & Text
------------------------------*/
p {
  font-size: 1.5rem;
  margin: 0;
}

a {
  color: #000;
  text-decoration: none;
  transition: opacity 0.2s ease;
}

/*------------------------------
  Lists
------------------------------*/
ul, ol {
  padding: 0;
}

li {
  list-style: none;
}

/*------------------------------
  Images
------------------------------*/
img {
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: middle;
}

/*------------------------------
  Tables
------------------------------*/
table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 1.5em;
}

th,
td {
  border: 1px solid #ccc;
  padding: 0.75em;
  text-align: left;
}

/*------------------------------
  Forms
------------------------------*/
input,
textarea,
select,
button {
  font: inherit;
  color: inherit;
}

input[type="text"],
textarea,
select {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
}

button,
input[type="submit"] {
  cursor: pointer;
  background-color: none;
  color: #fff;
  padding: 0.5em 1em;
  border: none;
  border-radius: 4px;
  transition: background 0.3s ease;
}

button:hover,
input[type="submit"]:hover {
  background-color: none;
}

/*------------------------------
  Others
------------------------------*/
hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}

blockquote {
  margin: 0 0 1.5em;
  padding-left: 1em;
  border-left: 4px solid #ccc;
  color: #555;
}

dd{
  margin-left: 0;
}

span{
  font-family: "Hiragino Mincho ProN", "游明朝", "Yu Mincho", "MS PMincho", serif;
}