@charset "UTF-8";
.revert {
  all: revert;
}

.date-box {
  display: flex;
}

.blog-box {
  display: flex;
  width: 1500px;
  max-width: 100%;
  margin: 0 auto;
}
.blog-box .left {
  width: 300px;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
.blog-box .right {
  width: calc(100% - 300px);
  background: white;
  padding: 50px 5%;
  margin-bottom: 100px;
}
.blog-box .right .thumb {
  margin-bottom: 50px;
}

.auto-toc strong {
  font-weight: 600;
  font-size: 20px;
}
.auto-toc li {
  list-style: "・";
  font-weight: 600;
  margin: 10px 0;
  margin-bottom: 20px;
}
.auto-toc li a:hover {
  color: #e8423c;
}

.date {
  color: #e8423c;
  margin-right: 20px;
}

h1 {
  font-size: 25px;
  margin: 10px 0 50px 0;
  font-weight: 600;
  color: #333333;
}

h2 {
  font-size: 22px;
  margin: 30px 0 20px 0;
  font-weight: 600;
  color: #333333;
  padding-left: 60px;
  position: relative;
}
h2::before {
  content: "";
  position: absolute;
  left: 0px;
  top: 50%;
  width: 50px;
  height: 1px;
  background: #e8423c;
}

.cate {
  flex-grow: 1;
}
.cate ul {
  padding-left: 0px;
}
.cate li {
  display: inline-block;
  background: #ffb2b2;
  color: white;
  font-size: 12px;
  padding: 2px 10px;
  text-align: center;
}

.blog-flex {
  width: 1500px;
  max-width: 90%;
  display: flex;
  gap: 30px;
  margin: 0 auto 100px auto;
  justify-content: center;
}
.blog-flex article {
  width: calc(33.3333333333% - 30px);
}
.blog-flex .info {
  display: flex;
  padding: 10px 0;
  flex-wrap: wrap;
  gap: 10px 30px;
}

@media (max-width: 1100px) {
  .blog-box .left {
    width: 200px;
  }
  .blog-box .right {
    width: calc(100% - 200px);
  }
}
@media (max-width: 700px) {
  .blog-box .left {
    width: 0;
    display: none;
  }
  .blog-box .right {
    width: 90%;
    margin: 0 auto;
    margin-bottom: 100px;
    border-radius: 10px;
  }
  .blog-box .right .left {
    display: block;
  }
  .blog-flex {
    flex-direction: column;
  }
  .blog-flex article {
    width: 100%;
    margin-bottom: 20px;
  }
}/*# sourceMappingURL=article.css.map */