* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  color: #000;
  background-color: #f0f0f0;
}

header {
  position: fixed;
  height: 11rem;
  width: 100%;
  top: 0;
  left: 0;
  background-color: #f0f0f0;
  pointer-events: none;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
}
header .head_wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding-bottom: 2.4rem;
}
header .head_wrap h1 {
  font-size: 1.8vw;
  font-weight: bold;
}
header .head_wrap .filter_wrap {
  padding: 1.2rem 0;
  position: sticky;
  display: flex;
  pointer-events: auto;
}
header .head_wrap .filter_wrap select {
  margin-left: 1.2rem;
  padding: 0 1rem;
  border: solid 1px #bcbcbc;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-size: 1.4vw;
}
header .head_wrap .filter_wrap select option {
  padding: 0 1.2rem;
}
header .head_wrap .filter_wrap p {
  font-size: 1.4vw;
  font-weight: bold;
}

.container {
  padding: 2.4rem 0 2rem;
  max-width: 1200px;
  margin: 11rem auto 0;
}
.container ul li:nth-child(n+2) {
  padding-top: 6.4rem;
}
.container ul li .info {
  display: flex;
  justify-content: space-between;
}
.container ul li .info h2 {
  font-size: 1.4vw;
  font-weight: bold;
}
.container ul li .info .date {
  color: #bcbcbc;
  font-size: 0.9vw;
}
.container ul li p {
  font-size: 1.1vw;
}
.container ul li a img {
  width: 100%;
}

@media (max-width: 769px) {
  header {
    position: fixed;
    height: 7.5rem;
  }
  header .head_wrap {
    padding-left: 2.5%;
    padding-right: 2.5%;
  }
  header .head_wrap h1 {
    font-size: 1.6rem;
  }
  header .head_wrap .filter_wrap {
    padding: 1.2rem 0;
  }
  header .head_wrap .filter_wrap select {
    margin-left: 1.2rem;
    font-size: 1.2rem;
  }
  header .head_wrap .filter_wrap select option {
    padding: 0 1.2rem;
  }
  header .head_wrap .filter_wrap p {
    font-size: 1.2rem;
  }
  .container {
    padding-left: 2.5%;
    padding-right: 2.5%;
    margin-top: 7.5rem;
  }
  .container h1 {
    font-size: 1.8rem;
  }
  .container ul li:nth-child(n+2) {
    padding-top: 4.8rem;
  }
  .container ul li .info h2 {
    font-size: 1.6rem;
  }
  .container ul li .info .date {
    font-size: 1rem;
  }
  .container ul li p {
    font-size: 1.2rem;
  }
}/*# sourceMappingURL=style.css.map */