@charset "UTF-8";
/* CSS Document */
h2 {
  font-size: 5rem;
  font-weight: 700;
  line-height: 1.2;
  color: #353B5B;
}
h2 span {
  font-size: 2.8rem;
  font-weight: 400;
}
h2 .left {
  padding-left: 5px;
}

@media screen and (max-width: 767px) {
  h2 {
    font-size: max(5vw, 2.8rem);
  }
  h2 span {
    font-size: max(2.6vw, 1.2rem);
  }
}
.news {
  margin: 150px auto 100px;
  width: 90%;
  max-width: 1060px;
}
.news .search {
  margin: 100px auto 80px;
  display: flex;
  gap: 1rem;
  position: relative;
  justify-content: space-between;
}
.news .wrap {
  display: flex;
  align-items: end;
  width: 40%;
}
.news .wrap p {
  width: 15%;
}
.news .dropdown {
  position: relative;
  width: 85%;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  -webkit-tap-highlight-color: transparent;
}
.news .dropdown-selected {
  border-bottom: solid 1px #d9d9d9;
  text-align: center;
  font-weight: 700;
}
.news .dropdown-selected::after {
  content: "";
  position: absolute;
  right: 0;
  top: 8px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #333333;
  border-right: 2px solid #333333;
  transform: rotate(135deg);
}
.news .dropdown-options {
  display: none;
  position: absolute;
  top: 110%;
  left: 0;
  width: 100%;
  background: #fff;
  border-radius: 6px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  z-index: 10;
}
.news .dropdown-options li {
  padding: 10px;
  text-align: center;
}
.news .dropdown-options li:hover {
  background: #f0f0f0;
}
.news .dropdown.open .dropdown-options {
  display: block;
}
.news .article-wrap {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.news article {
  padding-top: 150px;
  margin-top: -150px;
}
.news .border-wrap {
  border: solid 2px #F9CED9;
  padding: 0 20px;
}
.news .ttl-wrap {
  position: relative;
  padding: 50px 0;
}
.news .ttl-wrap.close .border-bottom::after {
  content: "－";
  padding-bottom: 0;
}
.news .ttl-wrap .border-bottom {
  border-bottom: solid 1px #d9d9d9;
  display: flex;
  width: 100%;
  align-items: center;
  gap: 20px;
  padding: 0 60px 15px 0;
  position: relative;
}
.news .ttl-wrap .border-bottom::after {
  position: absolute;
  right: 0;
  content: "+";
  font-size: 2.8rem;
  font-weight: 400;
  color: #353B5B;
  width: 40px;
  height: 40px;
  border-radius: 50px;
  background-color: #F9CED9;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-bottom: 5px;
}
.news .time-a-tag {
  display: flex;
  align-items: center;
  gap: 20px;
  font-size: 1.4rem;
}
.news time {
  color: #F9CED9;
}
.news .category {
  color: #F8F8FF;
  background-color: #353B5B;
  border-radius: 50px;
  padding: 2px 10px;
  white-space: nowrap;
}
.news h3 {
  font-size: 1.6rem;
  font-weight: 500;
}
.news .box {
  display: none;
}
.news .box p {
  margin: 30px 0 50px;
}
.news .news-thumb img {
  width: 50%;
  height: auto;
  aspect-ratio: 3/2;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .news {
    margin: 70px auto 80px;
    max-width: 500px;
  }
  .news .search {
    flex-direction: column;
    gap: 30px;
    margin: 50px auto;
  }
  .news .wrap {
    width: 100%;
  }
  .news article {
    padding-top: 100px;
    margin-top: -100px;
  }
  .news .ttl-wrap {
    padding: 40px 0;
  }
  .news .ttl-wrap .border-bottom {
    flex-direction: column;
    align-items: flex-start;
  }
  .news .ttl-wrap .border-bottom::after {
    bottom: 10px;
  }
  .news h3 {
    position: relative;
    display: flex;
    align-items: center;
    width: 100%;
    padding-right: 50px;
    font-size: 1.4rem;
  }
  .news .box p {
    margin-bottom: 40px;
  }
  .news .news-thumb img {
    width: 100%;
  }
}
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
  color: #353B5B;
  font-weight: 700;
}

.pagination .page-numbers:not(.current):not(.prev):not(.next) {
  opacity: 0.4;
}

.pagination .prev,
.pagination .next {
  text-indent: -9999px; /* 文字を隠す */
  width: 32px;
  height: 32px;
  display: inline-block;
  background-size: contain;
  background-repeat: no-repeat;
}

.pagination .prev {
  background-image: url("../../images/arrow-left.webp");
}

.pagination .next {
  background-image: url("../../images/arrow-right.webp");
}/*# sourceMappingURL=news.css.map */