@charset "utf-8";
@media screen and (min-width: 768px) {
.business section>h2
{
  text-decoration: none;
}
.news-list-page
{
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.news-list-page
{
  width: 100%;
  display: flex;
  justify-content: space-between;
  row-gap: 2vw;
  margin: 5vw auto 10vw;
}
.news-list-page a
{
  text-decoration: none;
  color: #4E4E4E;
}
.news-list-page a:hover>article
{
  filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.16));
  transition: all 0.3s ease-in-out;
}
.news-list-page article
{
  width: 24vw;
  height: 100%;
  background-image: url(../img/blog_1.png);
  border-radius: 2vw;
  background-position: center;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.16));
  box-sizing: border-box;
  padding: 2vw;
  align-items: stretch;
  transition: all 0.3s ease-in-out;
}

.news-list-page article >div
{
  width: 100%;
}
.blog-img>img
{
  width: 100%;
  height: 12vw;
  object-fit: cover;
}

.blog-text
{
  margin: 2vw 0;
}
.blog-text>p
{
  margin: 0;
  padding: 0;
}
.blog-text>h3
{
  margin: 0;
  padding: 0;
  font-size: 120%;
}

.news-list-page::after {
  content: ''; /* 見えない要素を追加 */
  flex: 0.76 0.76 auto; /* 自動でスペースを埋める */
}

.news-post-content
{
  margin: 0 0 10vw;
}

.news-post-content>div
{
  display: flex;
  justify-content: space-between;
  margin: 3vw 0;
}

.news-img
{
  width: 40%;
}
.news-img img
{
  width: 100%;
  object-fit: contain;
  border-radius: 2vw;
  filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.16));
}
.news-post-text
{
  width: 55%;
}

}
@media screen and (max-width: 767px) {
  .business section>h2
  {
    text-decoration: none;
  }
  .news-list-page
  {
    width: 100%;
    display: flex;
    flex-flow: column;
  }
  .news-list-page
  {
    width: 100%;
    display: flex;
    justify-content: space-between;
    row-gap: 2vw;
    margin: 5vw auto 10vw;
  }
  .news-list-page a
  {
    text-decoration: none;
    color: #4E4E4E;
  }
  .news-list-page a:hover>article
  {
    filter: drop-shadow(0px 0px 0px rgba(0,0,0,0.16));
    transition: all 0.3s ease-in-out;
  }
  .news-list-page article
  {
    width: 100%;
    height: 100%;
    background-image: url(../img/blog_1.png);
    border-radius: 5vw;
    background-position: center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.16));
    box-sizing: border-box;
    padding: 5vw;
    align-items: stretch;
    transition: all 0.3s ease-in-out;
    margin: 3vw 0;
  }
  
  .news-list-page article >div
  {
    width: 100%;
  }
  .blog-img>img
  {
    width: 100%;
    height: 52vw;
    object-fit: cover;
  }
  
  .blog-text
  {
    margin: 2vw 0;
  }
  .blog-text>p
  {
    margin: 0;
    padding: 0;
  }
  .blog-text>h3
  {
    margin: 0;
    padding: 0;
    font-size: 120%;
  }
  
  .news-list-page::after {
    content: ''; /* 見えない要素を追加 */
    flex: 0.76 0.76 auto; /* 自動でスペースを埋める */
  }
  
  .news-post-content
  {
    margin: 0 0 10vw;
  }
  
  .news-post-content>div
  {
    display: block;
    width: 100%;
    justify-content: space-between;
    margin: 3vw 0;
  }
  
  .news-img
  {
    width: 100%;
  }
  .news-img img
  {
    width: 100%;
    height: 52vw;
    object-fit: contain;
    border-radius: 2vw;
    filter: drop-shadow(10px 10px 20px rgba(0,0,0,0.16));
  }
  .news-post-text
  {
    margin-top: 10vw;
    width: 100%;
  }
  
  }