@charset "UTF-8";
/*リセット*/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  text-decoration: none;
}

a {
  word-wrap: break-word;
  text-decoration: underline;
  transition: 0.3s;
  color: blue;
}
a:hover {
  opacity: 0.5;
}
a:visited {
  color: purple;
}

html, body {
  font-feature-settings: "palt";
  overflow-x: hidden;
}

img {
  display: block;
  width: 100%;
}

input[type=text], input[type=submit], input[type=search] {
  outline: none;
  border: none;
}

input[type=submit] {
  display: block;
  cursor: pointer;
}

button {
  cursor: pointer;
  border: none;
  outline: none;
}

ul, ol {
  list-style-position: inside;
}

* {
  background-color: #dbdbdb;
  color: #000;
}

body {
  padding: 1rem;
  font-size: 16px;
}
@media screen and (max-width: 740px) {
  body {
    font-size: 12px;
  }
}

header {
  max-width: 740px;
  margin: 0 auto;
}
header h1 a {
  text-decoration: none;
  color: #008b85;
  line-height: 1.5em;
}
header h1 a:active {
  color: #008b85;
}
header h1 a:visited {
  color: #008b85;
}
@media screen and (max-width: 740px) {
  header h1 a {
    font-size: 1.5rem;
  }
}
header nav {
  margin-top: 1rem;
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  text-align: center;
}
header nav a {
  color: #000;
  text-decoration: none;
}
header nav a:active {
  color: #000;
}
header nav a:visited {
  color: #000;
}

main {
  max-width: 740px;
  margin: 0 auto;
}

h1 {
  color: #008b85;
  line-height: 1.5em;
}
@media screen and (max-width: 740px) {
  h1 {
    font-size: 1.5rem;
  }
}

h2 {
  color: #008b85;
  line-height: 1.5em;
}
@media screen and (max-width: 740px) {
  h2 {
    font-size: 1.2rem;
  }
}

h3 {
  color: #008b85;
  line-height: 1.5em;
}
@media screen and (max-width: 740px) {
  h3 {
    font-size: 1rem;
  }
}

p {
  line-height: 1.8em;
}

hr {
  display: block;
  margin: 30px 0;
}

code {
  font-family: "Courier New", Courier, monospace;
  display: block;
  padding: 1rem;
  margin: 1rem auto;
  background-color: #2b2b2b;
  border-radius: 0.5rem;
  border: 1px solid #dbdbdb;
  color: #dbdbdb;
  overflow-x: scroll;
}/*# sourceMappingURL=style.css.map */