/* -----------------------------------------------------------------
   makeshop top
----------------------------------------------------------------- */
.top-category {
  background: url(https://gigaplus.makeshop.jp/sichifuku/img/top-category-bg.png) center center / cover no-repeat, url(https://gigaplus.makeshop.jp/sichifuku/img/f_logo.png) -40px -40px / 467px 467px no-repeat;
  padding: 70px 0;
}
.top-category-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.top-category-list > li {
  width: calc((100% - 20px * 3) / 4);
}
.top-category-list > li a {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  border: 1px solid #E9DCB2;
  border-radius: 2px;
  background: #fff;
}
.top-category-list > li a .icon {
  width: 64px;
}


.top-blog {
  background: url(https://gigaplus.makeshop.jp/sichifuku/img/top-blog-bg.jpg) center center / cover no-repeat;
  padding: 90px 0;
}
.top-blog-box {
  background: rgba(255,255,255,0.8);
  padding: 90px;
}
.top-blog-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 60px;
}
.top-blog-list > li {
  width: calc((100% - 60px * 1) / 2);
}
.top-blog-list > li:nth-child(-n+2) {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--g1);
}
.top-blog-list > li a {
  display: flex;
  justify-content: space-between;
  border-radius: 2px;
}
.top-blog-list > li a .top-blog-list-image {
  width: 40%;
  height: 130px;
}
.top-blog-list > li a .top-blog-list-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-blog-list > li a .top-blog-list-text {
  width: 55%;
}
.top-blog-list > li a .top-blog-list-text .date {
  color: var(--g2);
  margin-bottom: 5px;
}
.top-blog-list > li a .top-blog-list-text h3 {
  font-size: 15px;
  font-weight: 500;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  margin-bottom: 5px;
}
.top-blog-list > li a .top-blog-list-text .notes {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.top-news {
  background: #F2F0E8;
  padding: 90px 0;
}
.top-news-box {
  width: 950px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.top-news-title {
  width: 250px;
}
.top-news-title .link-btn {
  justify-content: flex-start;
}
.top-news-main {
  flex: 1;
}

@media screen and (max-width: 768px) {
  .top-category {
    padding: 40px 0;
  }
  .top-category-list {
    gap: 10px;
  }
  .top-category-list > li {
    width: calc((100% - 10px * 1) / 2);
  }
  .top-category-list > li a {
    padding: 10px;
  }

  .top-blog {
    padding: 20px 0;
  }
  .top-blog-box {
    padding: 20px;
  }
  .top-blog-list {
    flex-flow: column nowrap;
    gap: 20px 60px;
  }
  .top-blog-list > li {
    width: 100%;
  }
  .top-blog-list > li:nth-child(-n+3) {
    padding-bottom: 20px;
    border-bottom: 1px solid var(--g1);
  }

  .top-blog-list > li a .top-blog-list-image {
    height: 78px;
  }
  .top-blog-list > li a .top-blog-list-text .date {
    font-size: 10px;
  }
  .top-blog-list > li a .top-blog-list-text h3 {
    font-size: 11px;
  }
  .top-blog-list > li a .top-blog-list-text .notes {
    font-size: 10px;
  }

  .top-news {
    padding: 50px 0;
  }
  .top-news-box {
    width: 100%;
    flex-flow: column nowrap;
  }
  .top-news-title {
    width: 100%;
    text-align: center;
  }
} /* max768 */


/* -----------------------------------------------------------------
   single
----------------------------------------------------------------- */
.news-single .news-time {
  display: inline-block;
  margin-bottom: 20px;
}
.news-single .news-thumbnail {
  margin: 0 auto 40px;
}
.news-single .btn {
  width: 320px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #292929;
  color: #fff;
  padding: 10px;
  border-radius: 5px;
  margin: 40px auto 0;
}
