/*-------------------------
  Blogサイドバー（PC）
-------------------------*/

.blog-aside {
  flex-basis: 26.5%;
}

.search {
  position: relative;
  margin-bottom: 40px;
}

.serch-box {
  display: flex;
  height: 60px;
  width: 100%;
  padding: 0px 16px;
  justify-content: center;
  align-items: center;
  border: 2px solid #000;
}

.serch-box::placeholder {
  color: #000;
  font-size: 20px;
  font-weight: 500;
  font-family: 'Oswald', sans-serif;
  opacity: 0.3;
}

.serch-btn {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translate(0, -50%);
}

.serch-btn:hover {
  opacity: 0.5;
}

.serch-btn .fa-solid {
  color: #000;
  width: 24px;
  height: 24px;
  font-size: 24px;
}

.aside-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  border-left: 4px solid #000;
  padding: 4px 0 4px 16px;
  background: linear-gradient(90deg, rgba(213, 246, 231, 0.95) 0%, rgba(213, 246, 231, 0.00) 100%);
  margin-bottom: 24px;
}

.category-search {
  margin-bottom: 40px;
}

.category-search a {
  padding-bottom: 8px;
  margin-bottom: 8px;
  font-family: 'Oswald',  'Noto Sans JP', sans-serif;
  font-weight: 500;
  line-height: 1.5;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid #808080;
  transition: all 0.5s;
}

.category-search dt {
  margin-right: 8px;
  flex-basis: 85%;
}

.category-search dd {
  text-align: right;
  flex-basis: 15%;
}

.category-search a:hover {
  color: #000;
}

.pickup-item {
  margin-bottom: 24px;
  cursor: pointer;
}

.pickup-item img {
  height: 183px;
}

.banner {
  padding-top: 24px;
  transition: all 0.5s;
}

.banner-item {
  transition: all 0.5s;
}

.banner-item:not(:last-of-type) {
  margin-bottom: 24px;
}

.banner-item:hover {
  opacity: 0.5;
}

.banner-item img {
  border-radius: 8px;
}

.blog-item img, .banner-item img {
  width: 100%;
  object-fit: cover;
  border-radius: 8px;
  transition: all, 0.5s;
  margin-bottom: 16px;
}

.blog-item:hover img {
  opacity: 0.5;
}

.blog-textwrap {
  transition: all, 0.5s;
}

.blog-item:hover .blog-textwrap {
  color: #000;
}

.blog-title {
  margin-bottom: 8px;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.5;
}

@media screen and (min-width: 901px){
  .aside-cta {
    width: 289.38px;
  }
  .asidefixed {
    position: fixed;
    z-index: 999;
    top: 80px;
    padding-top: 15px;
  }
  .asideset {
    position: absolute;
  }
}

.aside-cta-title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1.5;
  margin-bottom: 15px;
  padding: 0 0 6px 0;
  position: relative;
  border-bottom: 6px solid #000;
}

.aside-cta-title::after {
  content: '';
  width: 100px;
  height: 6px;
  background-color: #000;
  position: absolute;
  bottom: -6px;
  left: 0;
}

.aside-cta-cards {
  width: 100%;
  box-shadow: 0px 0px 8px 0px rgba(0, 0, 0, 0.10);
  text-align: center;
  padding: 10px 12px 16px 12px;
  pointer-events: none;
  transition: all 0.5s;
  border-radius: 16px;
  position: relative;
}

.aside-cta-caption {
  font-size: 13px;
  line-height: 1.3;
  text-align: left;
  margin: 10px 0;
}

.aside-cta-cards .show_btn {
  border: 1px solid #000;
  padding: 10px;
  color: #000;
  font-size: 16px;
  font-weight: 900;
  transition: all 0.5s;
  pointer-events: auto;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.aside-cta-cards .show_btn:hover {
  background-color: #000;
  color: #FFF;
}

/*-------------------------
  Blogサイドバー（タブレット）
-------------------------*/
@media screen and (max-width: 900px){
  .blog-aside {
    display: flex;
    column-gap: 40px;
  }

  .tab-wrap-left, .tab-wrap-right {
    flex-basis: 50%;
  }

  .banner {
    padding-top: 0;
  }
}

/*-------------------------
  Blogサイドバー（SP）
-------------------------*/
@media screen and (max-width: 768px){
  .blog-aside {
    flex-direction: column;
  }

  .search {
    margin-bottom: 48px;
  }

  .category-search {
    margin-bottom: 48px;
  }

  .tab-wrap-right {
    flex-basis: 100%;
  }

  .banner, .banner-item, .banner-item img {
    width: 100%;
  }

  .aside-cta-cards .show_btn {
    padding: 15px 10px;
    font-size: 16px;
  }
}