@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200;300;400;500;600;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@100;300;400;500;700;800;900&display=swap");
* {
  margin: 0;
  padding: 0;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
}

.main_header {
  border-bottom: solid 1px #ddd;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 20px 40px;
}

@media only screen and (max-width: 500px) {
  .main_header {
    padding: 10px 20px;
  }
}

.main_header h1 {
  font-size: 24px;
}

@media only screen and (max-width: 500px) {
  .main_header h1 {
    font-size: 17px;
  }
}

.main_header ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 20px;
}

.main_header ul li {
  list-style: none;
}

.main_header ul li a {
  text-decoration: none;
  font-weight: 500;
  color: #000;
}

@media only screen and (max-width: 500px) {
  .main_header ul li a {
    font-size: 14px;
  }
}

.comment {
  background: #f8f8f8;
  padding: 60px 20px 0;
}

.comment article {
  max-width: 1000px;
  padding: 40px 40px;
  margin: 0 auto;
  border: solid 1px #aaa;
  background: #fff;
  border-radius: 3px;
}

.comment article p {
  margin-bottom: 0.6em;
  line-height: 1.8;
}

.comment article p:last-child {
  margin-bottom: 0;
}

.comment article p a {
  color: #1388f0;
}

.comment article pre code {
  padding: 20px;
}

.code_area {
  padding: 60px 20px;
  background: #f8f8f8;
}

.code_area .tab {
  max-width: 1000px;
  margin: 0 auto;
}

.code_area .tab ul.btn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 10px;
}

.code_area .tab ul.btn_list li {
  font-size: 15px;
  padding: 0.4em 1em 0.3em;
  background: #ddd;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
  cursor: pointer;
  font-weight: 500;
  color: #888;
  list-style: none;
}

.code_area .tab ul.btn_list li.open {
  background: #282b2e;
  color: #fff;
}

.code_area .tab .content_list .content {
  display: none;
  padding: 40px 20px 20px;
  background: #282b2e;
  border-radius: 5px;
  border-top-left-radius: 0;
  position: relative;
}

.code_area .tab .content_list .content.open {
  display: block;
}

.code_area .tab .content_list .content .copybtn {
  background: #eee;
  padding: 0.3em 0.7em 0.2em;
  cursor: pointer;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  font-size: 13px;
  font-weight: 500;
  position: absolute;
  top: 10px;
  right: 10px;
  border-radius: 5px;
}

.code_area .tab .content_list .content .copybtn:hover {
  opacity: 0.8;
}

.code_area .tab .content_list .content .alert {
  display: none;
  font-size: 14px;
  font-weight: 600;
  position: absolute;
  top: -1.8em;
  right: 17px;
}

.code_area .tab .content_list .content pre {
  font-size: 15px;
}

@media only screen and (max-width: 500px) {
  .code_area .tab .content_list .content pre {
    font-size: 13px;
  }
}

main {
  padding: 20px;
}

@media only screen and (max-width: 500px) {
  main {
    padding: 10px;
  }
}

main .macyv li {
  padding: 10px;
  line-height: 0;
}

@media only screen and (max-width: 500px) {
  main .macyv li {
    padding: 5px;
  }
}

main .macyv li img {
  display: inline-block;
  width: 100%;
}

main .macyv li img:nth-child(2) {
  display: none;
}
/*# sourceMappingURL=style.css.map */