.news__wrapper {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding-bottom: 100px;
  @media screen and (max-width: 750px){
    padding: 0 20px;
    flex-direction: column;
  }
}
.news__left {
  width: 63.6%;
  @media screen and (max-width: 750px){
    width: 100%;
  }
}
.newsCat__title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.18em;
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
}
.newsList {
  margin-top: 15px;
  border-top: 1px solid var(--color-blue);
}
.newsList__item {
  border-bottom: 1px solid var(--color-blue);
  a {
    display: flex;
    color: inherit;
    text-decoration: none;
    padding: 40px 0;
    @media screen and (max-width: 750px){
      padding: 20px 0;
    }
  }
}
.newsList__thumb {
  width: 142px;
  margin-right: 20px;
  @media screen and (max-width: 750px){
    width: 80px;
    margin-right: 10px;
  }
  img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
  }
}
.newsList__right {
  flex: 1;
}
.newsList__date {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.18em;
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.newsList__cat {
  display: inline-block;
  &:before {
    content: "／";
  }
  li {
    display: inline-block;
    border-bottom: 1px solid var(--color-blue);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.18em;
    @media screen and (max-width: 750px){
      font-size: 12px;
    }
  }
}
.newsList__title {
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-top: 10px;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
}
.newsList__excerpt {
  font-size: 14px;
  margin-top: 10px;
  line-height: 2;
  letter-spacing: 0.18em;
  font-weight: 500;
  font-feature-settings: "palt";
  @media screen and (max-width: 750px){
    font-size: 12px;
  }
}
.news__right {
  width: 32%;
  @media screen and (max-width: 750px){
    margin-top: 80px;
    padding-bottom: 80px;
    width: 100%;
  }
}
.newsNavBlock {
  + .newsNavBlock {
    margin-top: 50px;
    @media screen and (max-width: 750px){
      margin-top: 40px;
    }
  }
}
.newsNavBlock__title {
  font-size: 20px;
  font-weight: 500;
  letter-spacing: 0.18em;
  margin-bottom: 16px;
  @media screen and (max-width: 750px){
    font-size: 16px;
  }
  &:before {
    content: "\f02d";
    margin-right: 0.2em;
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
  }
}
.newsNavSearch {
  display: flex;
}
.newsNavSearch__input {
  flex: 1;
}
.newsNavSearch__btn {
  width: 108px;
  input {
    width: 100%;
    height: 44px;
    background-color: var(--color-blue);
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -0.02em;
    border-style: none;
    cursor: pointer;
    font-family: var(--font-josefin);
  }
}
.newsNavSearch__text {
  -webkit-appearance: none;
  width: 100%;
  height: 44px;
  background-color: #f0f4fa;
  padding: 0 0.5em;
  border-style: none;
}
.newsRecentryList {
  li {
    border-bottom: 1px solid var(--color-blue);
    a {
      display: block;
      padding: 16px 0;
      font-size: 14px;
      font-weight: 500;
      letter-spacing: 0.18em;
      color: inherit;
      text-decoration: none;
      @media screen and (max-width: 750px){
        font-size: 14px;
      }
    }
  }
}
.newsMonth {
  width: 100%;
  height: 44px;
  background-color: #f0f4fa;
  border-style: none;
  padding: 0 0.5em;
}
.newsCategoryList {
  li {
    border-bottom: 1px dotted var(--color-blue);
    a {
      display: inline-block;
      text-decoration: none;
      color: inherit;
      padding: 15px 0;
      font-size: 16px;
      font-weight: 500;
      letter-spacing: 0.18em;
      @media screen and (max-width: 750px){
        font-size: 14px;
      }
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.newsSingle {

}
.newsSingle__title {
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 0.18em;
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--color-blue);
  @media screen and (max-width: 750px){
    font-size: 20px;
  }
  &:before {
    content: "\f02e";
    margin-right: 0.2em;
    font-family: "Font Awesome 7 Free";
    font-weight: bold;
  }
}
.newsSingle__content {
  margin-top: 30px;
}