/**
 * Custom Sidebar Styles
 */

/* 共通ウィジェットスタイル */
.sm-custom-widget {
  background-color: #ffffff;
  margin-top: 0px;
  margin-bottom: 40px;
  padding-inline: var(--container-padding-inline);
}

/* Google AdSenseウィジェット */
.sm-adsense-widget {
  margin-bottom: 40px;
}

.sm-adsense-container {
  width: 336px;
  height: 280px;
  margin: 0 auto;
  background-color: #f3f4f6;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
}

.sm-widget-title {
  font-size: 24px;
  font-weight: 700;
  margin: 0 0 1rem 0;
  padding-bottom: 0.75rem;
  color: #1f2937;
}

.sm-widget-content {
  margin: 0;
}

/* ピックアップ記事ウィジェット */
.sm-pickup-widget .sm-widget-post {
  margin-bottom: 1.25rem;
  padding-bottom: 16px;
  border-bottom: 1px solid #e5e7eb;
}

.sm-pickup-widget .sm-widget-post:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sm-widget-post-link {
  display: flex;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
}

.sm-widget-post-link:hover {
  opacity: 0.7;
}

.sm-widget-post-thumbnail {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f3f4f6;
}

.sm-widget-post-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sm-widget-no-thumbnail {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
}

.sm-widget-post-info {
  flex: 1;
  min-width: 0;
}

.sm-widget-post-title {
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sm-widget-post-date {
  font-size: 11px;
  color: #6b7280;
  font-family: 'Inter', sans-serif;
  display: block;
  margin-bottom: 4px;
}

/* アクセス数ランキングウィジェット */
.sm-ranking-list {
  list-style: none;
  margin: 0;
  padding: 0;
  counter-reset: ranking;
}

.sm-ranking-item {
  margin-bottom: 1rem;
  padding-bottom: 16px;
  padding-top: 16px;
  border-bottom: 1px solid #e5e7eb;
  position: relative;
  z-index: 100;
}

/* .sm-ranking-item:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
} */

.sm-ranking-link {
  display: flex;
  gap: 0.75rem;
  text-decoration: none;
  color: inherit;
  transition: opacity 0.2s;
  position: relative;
}

.sm-ranking-link:hover {
  opacity: 0.7;
}

.sm-ranking-number {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #5E5E5E;

  position: absolute;
  background: #ffffff;
  border-radius: 33px;
  width: 64px;
  height: 56px;
  top: -24px;
  left: -25px;
  font-size: 24px;
  font-weight: bold;
  font-style: italic;
  font-family: 'Inter';
}

.sm-ranking-number p {
  transform: translateX(4px);
}

/* トップ3のみのスタイル▼ */
.sm-ranking-item-1 .sm-ranking-number {
  color: #F1B402;
  font-size: 32px;
}

.sm-ranking-item-2 .sm-ranking-number {
  color: #999BB2;
  font-size: 32px;
}

.sm-ranking-item-3 .sm-ranking-number {
  color: #958557;
  font-size: 32px;
}
/* トップ3のみのスタイル▲ */

.sm-ranking-thumbnail {
  flex-shrink: 0;
  width: 140px;
  height: 80px;
  border-radius: 4px;
  overflow: hidden;
  background-color: #f3f4f6;
}

.sm-ranking-thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.sm-ranking-info {
  flex: 1;
  min-width: 0;
}

.sm-ranking-title {
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0 0 0.5rem 0;
  color: #1f2937;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.sm-ranking-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.75rem;
  color: #6b7280;
}

.sm-ranking-views {
  font-weight: 500;
  color: #3b82f6;
}

body.home .c-container {
  padding: 0px;
}

body.home .l-contents__inner {
  padding-top:0%;
}

/* レスポンシブデザイン */
@media (min-width: 1024px) {
  /* スタイルの調整 */
  body.home .l-contents__inner {
    flex-wrap: nowrap;
  }
  
  body.home .l-contents__container {
    padding: 0;
    max-width: 2200px;
  }

  body.home aside,
  body.home .home_new_posts,
  body.home .home_all_links,
  body.home footer {
    transform: translateY(700px);
  }

  body.home[data-has-sidebar=true] aside {
    margin-right: 80px;
  }


  body.home .home_mv {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
  }


  .sm-custom-widget {
    padding-inline: 0px;
  }

}


@media (min-width: 1200px) {
  body.home aside,
  body.home .home_new_posts,
  body.home .home_all_links,
  body.home footer {
    transform: translateY(775px);
  }
}

@media (min-width: 1400px) {
  body.home[data-has-sidebar=true] aside {
    margin-top: 40px;
  }

  body.home aside,
  body.home .home_new_posts,
  body.home .home_all_links,
  body.home footer {
    transform: translateY(850px);
  }
}

@media (min-width: 1800px) {
  body.home aside,
  body.home .home_new_posts,
  body.home .home_all_links,
  body.home footer {
    transform: translateY(980px);
  }
}