	

#main div.under-entry-content {
	display: none !important;
}
#post-2476 footer
{
	display: none !important;
}

/* ✅ 隐藏标题（光ノ屋照明）和标语（キャッチフレーズ） */
.site-name,
.site-description {
  display: none !important;
}

/* ✅ 可选：减少上方空白 */
.header-container-in {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
/* ✅ 隐藏最上方的标语（キャッチフレーズ） */
.site-tagline,
.header-tagline,
.header .tagline,
.tagline {
  display: none !important;
}

.home {
  background-image: none !important;
}
/* 首页顶部空白调整 */
.home .main {
  padding-top: 0 !important;
  margin-top: -20px;
}

/* 隐藏首页默认标题区 */
.home .entry-title,
.home .entry-header {
  display: none !important;
}
/* ===== LOGO & 顶部菜单 ===== */
.header-logo {
  font-family: 'Noto Serif JP', serif;
  font-size: 26px;
  font-weight: bold;
  text-align: left;
  padding-left: 10px;
}

/* 顶部菜单项间距加大 */
.navi ul li {
  padding: 0 18px;
  font-size: 16px;
}

/* 搜索按钮靠右对齐 */
.header .search-menu-icon {
  margin-left: auto;
  font-size: 18px;
}

/* 顶部菜单区域高度适中 */
#header-container {
  padding: 10px 0;
  border-bottom: 1px solid #eee;
}

/* ===== 轮播图卡片样式 ===== */
.carousel-entry-card .entry-card-thumb {
  border-radius: 10px;
  overflow: hidden;
}

.carousel-entry-card .entry-card-title {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  color: #222;
}

/* ===== 首页卡片样式（推荐/文章列表）===== */
.entry-card-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.entry-card-wrap:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(-3px);
}

.entry-card-title {
  font-size: 17px;
  font-weight: 600;
  color: #222;
  line-height: 1.5;
}

.entry-card-snippet {
  font-size: 14px;
  color: #666;
}

/* ===== 推荐标题（おすすめ記事）样式 ===== */
.index-section-title {
  font-size: 20px;
  font-weight: bold;
  color: #222;
  border-left: 5px solid #000;
  padding-left: 10px;
  margin-bottom: 20px;
}

/* ===== footer版权/社交图标区域 ===== */
#footer {
  font-size: 14px;
  color: #888;
  padding-top: 20px;
  border-top: 1px solid #eee;
  text-align: center;
}

/* ===== 手机端顶部空白区域压缩 ===== */
@media screen and (max-width: 768px) {
  #header-container {
    padding-top: 5px;
    padding-bottom: 5px;
  }

  .header-logo {
    font-size: 22px;
  }

  .navi ul li {
    padding: 0 10px;
    font-size: 14px;
  }

  .carousel-entry-card .entry-card-title {
    font-size: 14px;
  }

  .entry-card-title {
    font-size: 15px;
  }
}

/* ✅ 压缩整体顶部空白（特别是手机端） */
body {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ✅ 压缩 Cocoon 自带的 header-wrap 空白 */
#header,
#header-container,
.header-in {
  margin-top: 0 !important;
  padding-top: 0 !important;
}

/* ✅ 移除页面顶部空白（部分页面可能需要） */
.main {
  margin-top: 0 !important;
  padding-top: 0 !important;
}


/* ===== おすすめ記事 横向卡片样式 ===== */
#recommend div.recommend-entry-card {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  margin-bottom: 20px;
  padding-bottom: 15px;
  border-bottom: 1px solid #eee;
}

#recommend .recommend-entry-card-thumb {
  flex: 0 0 120px;
  margin-right: 15px;
  border-radius: 8px;
  overflow: hidden;
}

#recommend .recommend-entry-card-thumb img {
  width: 100%;
  height: auto;
  display: block;
}

#recommend .recommend-entry-card-content {
  flex: 1;
}

#recommend .recommend-entry-card-title {
  font-size: 16px;
  font-weight: bold;
  color: #222;
  margin-bottom: 5px;
}

#recommend .recommend-entry-card-snippet {
  font-size: 14px;
  color: #666;
  line-height: 1.4;
}

@media screen and (max-width: 768px) {
  #recommend div.recommend-entry-card {
    flex-direction: column;
  }

  #recommend .recommend-entry-card-thumb {
    margin-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }
}

