* {
  margin: 0;
  padding: 0;
  /* scroll-behavior: smooth; */
}

a {
  text-decoration: none;
  text-decoration-line: none;
}

ul {
  list-style: none;
}

:root {
  --textblack:#222;
  --primary-orange:#FE6440;
  --sub-orange:#FFBB56;
  --red:#DC4A27;
}

* {
  margin: 0;
  padding: 0;
  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

ul {
  list-style: none;
}

body {
  font-family: "Montserrat", sans-serif;
  font-weight: 500;
  font-style: normal;
}

html {
  font-size: 10px;
  background-color: #f7f7f7;
}

html, body {
  overscroll-behavior: none;
  overscroll-behavior-y: none;
}

.wrapper {
  padding: 0 30px;
  display: flex;
  align-items: flex-start;
  gap: 0 20px;
  flex-wrap: wrap;
}
.wrapper header {
  max-width: 220px;
  width: 100%;
  position: sticky;
  height: 100svh;
  padding: 20px 0;
  box-sizing: border-box;
  top: 0px;
  font-size: 1.2rem;
}
.wrapper header h1, .wrapper header h3, .wrapper header a {
  font-size: 1.1rem;
  font-weight: 500;
}
.wrapper header h1 {
  margin-bottom: 30px;
}
.wrapper header h3 {
  margin-bottom: 4px;
}
.wrapper header a {
  color: var(--textblack);
  text-decoration: underline;
}
.wrapper header small {
  position: absolute;
  display: block;
  bottom: 20px;
  font-size: 1rem;
}
.wrapper main {
  flex: 1;
  padding: 40px 0;
  box-sizing: border-box;
}
.wrapper main h2 {
  font-size: 3.5rem;
  font-weight: 500;
  margin-bottom: 40px;
  line-height: 1;
}

.archive_list .archive_item {
  border-top: 1px solid #e0e0e0;
}
.archive_list .archive_item a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px;
  transition: all 0.3s ease;
}
.archive_list .archive_item a:hover {
  background-color: #f2f2f2;
}
.archive_list .archive_item .archive_item_title {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--textblack);
}
.archive_list .archive_item:last-child {
  border-bottom: 1px solid #e0e0e0;
}
.archive_list .archive_item .archive_item_tags {
  display: flex;
  width: 40%;
  justify-content: space-between;
  align-items: center;
}
.archive_list .archive_item .archive_item_tags .date {
  font-size: 1.2rem;
  color: var(--textblack);
}
.archive_list .archive_item .archive_item_tags .tag {
  font-size: 1.1rem;
  background-color: #aaa;
  border-radius: 100px;
  padding: 4px 8px;
  color: #f7f7f7;
}

@media screen and (max-width: 599px) {
  .wrapper header {
    position: static;
    height: -moz-max-content;
    height: max-content;
  }
  .wrapper {
    padding: 0 15px;
  }
  .archive_list .archive_item a {
    padding: 15px 10px;
  }
  .archive_list .archive_item .archive_item_tags .tag {
    font-size: 1rem;
  }
  .archive_list .archive_item .archive_item_tags .date {
    font-size: 1.1rem;
  }
  .archive_list .archive_item .archive_item_tags {
    width: 40%;
  }
}/*# sourceMappingURL=index.css.map */