/* ============================================
   cakey-life - Blake von Hauer インスパイアデザイン
   エレガントなファッション・ライフスタイルメディア
   ============================================ */

/* Google Fonts - Playfair Display + Noto Serif JP + Open Sans */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600&family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Open+Sans:wght@300;400;500;600&display=swap');

:root {
  /* ブランドカラー - Blake von Hauer風 */
  --cakey-primary: #C93B76;
  --cakey-primary-dark: #A82D60;
  --cakey-primary-light: #E84C8A;
  --cakey-dark: #1a1a1a;
  --cakey-darker: #0f0f0f;
  --cakey-gray: #333333;
  --cakey-light-gray: #f5f5f5;
  --cakey-border: #e0e0e0;
  
  /* テキストカラー */
  --cakey-text: #333333;
  --cakey-text-light: #666666;
  --cakey-text-muted: #999999;
  
  /* 背景 */
  --cakey-bg: #ffffff;
  --cakey-card-bg: #ffffff;
  
  /* シャドウ */
  --cakey-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  --cakey-shadow-hover: 0 5px 20px rgba(0, 0, 0, 0.12);
  
  /* custom-enhancements.cssの変数を上書き */
  --ukiyo-accent: #C93B76;
  --ukiyo-primary: #C93B76;
}

/* ============================================
   Base Styles
   ============================================ */
body {
  background-color: var(--cakey-bg) !important;
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--cakey-text) !important;
  font-size: 14px !important;
  line-height: 1.7 !important;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', -apple-system, BlinkMacSystemFont, sans-serif !important;
  color: var(--cakey-text) !important;
  font-weight: 600 !important;
  letter-spacing: 0.01em;
}

/* トップページの最新記事タイトル（4つ）のみ明朝体 */
.hero-slide-title,
.featured-card-title,
.cakey-hero h1,
.cakey-featured h3 {
  font-family: 'Playfair Display', 'Noto Serif JP', Georgia, serif !important;
  font-weight: 500 !important;
  letter-spacing: 0.02em;
}

.blog-title {
  font-family: 'Playfair Display', Georgia, serif !important;
}

a {
  color: var(--cakey-text);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--cakey-primary);
}

/* ============================================
   Header - 軽やかなホワイトヘッダー
   ============================================ */
.header,
.header.header-sticky,
header.header {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-bottom: 1px solid var(--cakey-border) !important;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06) !important;
}

.header .navbar,
header.header .navbar,
.header.header-sticky .navbar {
  background: transparent !important;
  background-color: transparent !important;
  padding: 15px 0 !important;
}

.navbar-brand .logo {
  max-height: 50px !important;
}

.header .navbar .navbar-nav .nav-item .nav-link,
.navbar .nav-link {
  color: var(--cakey-text) !important;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
  font-size: 11px !important;
  letter-spacing: 0.15em !important;
  text-transform: uppercase !important;
  padding: 0.8rem 1rem !important;
  transition: all 0.3s ease !important;
  position: relative;
}

.header .navbar .navbar-nav .nav-item .nav-link::after,
.navbar .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: 20px;
  height: 2px;
  background: var(--cakey-primary);
  transition: transform 0.3s ease;
}

.header .navbar .navbar-nav .nav-item .nav-link:hover,
.navbar .nav-link:hover {
  color: var(--cakey-primary) !important;
  background: transparent !important;
}

.header .navbar .navbar-nav .nav-item .nav-link:hover::after,
.navbar .nav-link:hover::after {
  transform: translateX(-50%) scaleX(1);
}

.navbar .nav-link i {
  display: none !important;
}

/* 検索アイコン */
.header-search .search a {
  color: var(--cakey-text) !important;
  padding: 10px;
  transition: color 0.3s ease;
}

.header-search .search a:hover {
  color: var(--cakey-primary) !important;
  background: transparent;
}

/* ============================================
   Hero Slider
   ============================================ */
.cakey-hero {
  background: var(--cakey-light-gray);
  padding: 0;
}

.hero-slider {
  position: relative;
  height: 500px;
  overflow: hidden;
}

.hero-slide {
  position: relative;
  height: 500px;
}

.hero-slide-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-slide-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-slide-content {
  text-align: center;
  max-width: 600px;
  padding: 3rem;
  background: rgba(255, 255, 255, 0.95);
}

.hero-slide-meta {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--cakey-text-muted);
  margin-bottom: 1rem;
}

.hero-slide-meta .pink {
  color: var(--cakey-primary);
}

.hero-slide-title {
  font-size: 2rem !important;
  line-height: 1.3 !important;
  margin-bottom: 1rem !important;
  font-weight: 400 !important;
}

.hero-slide-title em {
  font-style: italic;
}

.hero-slide-desc {
  font-size: 13px;
  color: var(--cakey-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.hero-slide-tags {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cakey-text-muted);
}

.hero-slide-tags a {
  color: var(--cakey-text-muted);
}

.hero-slide-tags a:hover {
  color: var(--cakey-primary);
}

/* ============================================
   Featured Cards - 3カラム
   ============================================ */
.cakey-featured {
  padding: 0;
  margin-top: -1px;
}

.featured-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.featured-card {
  position: relative;
  height: 280px;
  overflow: hidden;
}

.featured-card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.featured-card:hover .featured-card-image {
  transform: scale(1.05);
}

.featured-card-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  transition: background 0.3s ease;
}

.featured-card:hover .featured-card-overlay {
  background: rgba(0, 0, 0, 0.5);
}

.featured-card-title {
  color: #fff !important;
  font-size: 1.3rem !important;
  line-height: 1.4 !important;
  font-weight: 400 !important;
}

.featured-card-title em {
  font-style: italic;
  color: var(--cakey-primary-light);
}

/* ============================================
   Main Content - 2カラムレイアウト
   ============================================ */
.cakey-main {
  padding: 3rem 0;
}

.main-content {
  padding-right: 2rem;
}

/* 記事カード */
.article-card {
  background: var(--cakey-card-bg);
  margin-bottom: 2.5rem;
  border-bottom: 1px solid var(--cakey-border);
  padding-bottom: 2.5rem;
}

.article-card-image {
  position: relative;
  margin-bottom: 1.5rem;
  overflow: hidden;
}

.article-card-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.article-card:hover .article-card-image img {
  transform: scale(1.03);
}

.article-card-meta {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cakey-text-muted);
  margin-bottom: 0.8rem;
}

.article-card-meta .category {
  color: var(--cakey-primary);
}

.article-card-title {
  font-size: 1.6rem !important;
  line-height: 1.4 !important;
  margin-bottom: 1rem !important;
  font-weight: 400 !important;
}

.article-card-title em {
  font-style: italic;
}

.article-card-title a {
  color: var(--cakey-text);
}

.article-card-title a:hover {
  color: var(--cakey-primary);
}

.article-card-excerpt {
  font-size: 13px;
  color: var(--cakey-text-light);
  line-height: 1.8;
  margin-bottom: 1rem;
}

.article-card-readmore {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cakey-primary);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.article-card-readmore:hover {
  color: var(--cakey-primary-dark);
}

/* 小さい記事カード（2カラム） */
.article-card-small {
  background: var(--cakey-card-bg);
  margin-bottom: 1.5rem;
}

.article-card-small .article-card-image img {
  height: 180px;
}

.article-card-small .article-card-title {
  font-size: 1.1rem !important;
}

/* ============================================
   Sidebar - Blake von Hauer風
   ============================================ */
.sidebar {
  padding-left: 1rem;
}

/* 検索ウィジェット */
.widget-search {
  margin-bottom: 2rem;
}

.widget-search input {
  width: 100%;
  padding: 0.8rem 1rem;
  border: 1px solid var(--cakey-border);
  font-size: 12px;
  color: var(--cakey-text);
}

.widget-search input::placeholder {
  color: var(--cakey-text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 10px;
}

/* トレンディング（ピンク背景） */
.widget-trending {
  background: var(--cakey-primary);
  padding: 1.5rem;
  margin-bottom: 2rem;
}

.widget-trending .widget-title {
  color: #fff !important;
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 1.5rem !important;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
}

.trending-item {
  display: block;
  margin-bottom: 1.5rem;
  text-decoration: none;
}

.trending-item:last-child {
  margin-bottom: 0;
}

.trending-item-image {
  width: 100%;
  height: 120px;
  object-fit: cover;
  margin-bottom: 0.8rem;
}

.trending-item-meta {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  margin-bottom: 0.3rem;
}

.trending-item-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.95rem;
  color: #fff;
  line-height: 1.4;
  font-weight: 400;
}

.trending-item-title em {
  font-style: italic;
}

/* カテゴリー */
.widget-categories {
  margin-bottom: 2rem;
}

.widget-title {
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  text-align: center;
  padding-bottom: 1rem;
  margin-bottom: 1rem !important;
  border-bottom: 1px solid var(--cakey-border);
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
  color: var(--cakey-text) !important;
}

.category-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}

.category-tag {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: var(--cakey-light-gray);
  font-size: 9px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cakey-text);
  transition: all 0.3s ease;
}

.category-tag:hover {
  background: var(--cakey-primary);
  color: #fff;
}

/* 最近のコメント */
.widget-comments {
  margin-bottom: 2rem;
}

.comment-item {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.8rem;
  font-size: 12px;
  line-height: 1.5;
}

.comment-item i {
  color: var(--cakey-primary);
  margin-top: 3px;
}

.comment-item a {
  color: var(--cakey-text);
}

.comment-item a:hover {
  color: var(--cakey-primary);
}

/* ソーシャルネットワーク */
.widget-social {
  margin-bottom: 2rem;
}

.social-icons {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
}

.social-icon {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--cakey-dark);
  color: #fff !important;
  font-size: 14px;
  transition: background 0.3s ease;
}

.social-icon:hover {
  background: var(--cakey-primary);
  color: #fff !important;
}

/* プロモバナー */
.widget-promo {
  position: relative;
  margin-bottom: 2rem;
  overflow: hidden;
}

.widget-promo-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.widget-promo-overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 100%);
}

.widget-promo-title {
  font-family: 'Playfair Display', serif;
  color: #fff;
  font-size: 1.1rem;
  line-height: 1.4;
  margin-bottom: 0.8rem;
}

.widget-promo-title em {
  font-style: italic;
  color: var(--cakey-primary-light);
}

.widget-promo-btn {
  font-size: 9px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid #fff;
  padding: 0.5rem 1rem;
  display: inline-block;
  transition: all 0.3s ease;
}

.widget-promo-btn:hover {
  background: #fff;
  color: var(--cakey-dark);
}

/* ============================================
   Footer - 軽やかなライトフッター
   ============================================ */
footer,
.footer,
footer.footer,
section.footer,
.footer.footer-style-02 {
  background: var(--cakey-light-gray) !important;
  background-color: var(--cakey-light-gray) !important;
  color: var(--cakey-text) !important;
  position: relative;
}

.footer .footer-bottom,
.footer.footer-style-02 .footer-bottom,
footer .footer-bottom {
  background: #ffffff !important;
  background-color: #ffffff !important;
  border-top: 1px solid var(--cakey-border) !important;
  padding: 25px 0 !important;
}

footer .container,
.footer .container {
  position: relative;
}

.footer-top {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(201, 59, 118, 0.2);
}

.footer-newsletter {
  text-align: center;
}

.footer-newsletter-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-newsletter-title em {
  font-style: italic;
  color: var(--cakey-primary-light);
}

.footer-newsletter input {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  padding: 0.8rem 1rem;
  color: #fff;
  font-size: 12px;
  width: 100%;
  max-width: 300px;
  margin-bottom: 1rem;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-newsletter input:focus {
  background: rgba(255,255,255,0.15);
  border-color: var(--cakey-primary);
  outline: none;
}

.footer-newsletter input::placeholder {
  color: rgba(255,255,255,0.5);
}

.footer-newsletter-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: linear-gradient(135deg, var(--cakey-primary) 0%, var(--cakey-primary-dark) 100%);
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.footer-newsletter-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(201, 59, 118, 0.4);
}

footer a,
.footer a,
footer .footer-link a,
.footer .footer-link a {
  color: var(--cakey-text) !important;
  transition: color 0.3s ease;
}

footer a:hover,
.footer a:hover,
footer .footer-link a:hover,
.footer .footer-link a:hover {
  color: var(--cakey-primary) !important;
}

/* フッターテキスト */
footer p,
.footer p,
footer .footer-text,
.footer .footer-text,
.footer .footer-bottom .copyright p,
.footer .footer-bottom .copyright p.text-white {
  color: var(--cakey-text-light) !important;
}

/* フッタータイトル */
footer h4,
footer h5,
footer h6,
.footer h4,
.footer h5,
.footer h6,
footer .footer-title,
.footer .footer-title {
  color: var(--cakey-text) !important;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  padding-bottom: 0 !important;
  margin-bottom: 1rem !important;
}

/* フッターリンクのホバーカラー上書き */
.footer .footer-menu li a:hover,
.footer.footer-style-02 .footer-bottom .copyright p a:hover,
.footer.footer-style-02 .footer-bottom .copyright p.text-white a:hover,
.footer .footer-social .social-icons li a:hover {
  color: var(--cakey-primary) !important;
}

/* ============================================
   ローダー
   ============================================ */
.loader {
  background-image: url('https://data2.chord-stream.com/img/media/icon/cakey.webp') !important;
  background-size: contain !important;
  background-repeat: no-repeat !important;
  background-position: center !important;
}

.loader-inner {
  border-color: var(--cakey-primary) !important;
  border-top-color: transparent !important;
}

/* ============================================
   ユーティリティ
   ============================================ */
.bg-primary {
  background: var(--cakey-primary) !important;
}

.text-pink {
  color: var(--cakey-primary) !important;
}

/* スクロールバー */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--cakey-light-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--cakey-primary);
}

/* ============================================
   Blog Post Styles（既存のスタイルを上書き）
   ============================================ */
.blog-post.post-style-01 {
  border-radius: 0 !important;
  box-shadow: none !important;
}

.blog-post.post-style-01 .blog-image img {
  height: 400px;
}

.blog-post.post-style-01 .blog-post-details {
  background: rgba(255, 255, 255, 0.95);
  position: absolute;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, 50%);
  padding: 2rem 3rem;
  text-align: center;
  max-width: 80%;
}

.blog-post.post-style-01 .blog-title a {
  color: var(--cakey-text) !important;
  font-size: 1.8rem !important;
}

.blog-post.post-style-01 .badge {
  background: transparent !important;
  color: var(--cakey-primary) !important;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.blog-post.post-style-03 {
  border-radius: 0 !important;
  box-shadow: none !important;
  border: none !important;
}

.blog-post.post-style-03 .blog-image img {
  border-radius: 0;
}

.blog-post.post-style-03 .blog-post-details {
  padding: 1rem 0;
}

.blog-post.post-style-03:hover {
  transform: none;
  box-shadow: none;
}

/* ============================================
   セクションタイトル
   ============================================ */
.section-title .title {
  font-size: 11px !important;
  letter-spacing: 0.2em !important;
  text-transform: uppercase;
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 600 !important;
  padding-bottom: 0 !important;
}

.section-title .title::after {
  display: none !important;
}

/* ============================================
   レスポンシブ
   ============================================ */
@media (max-width: 991px) {
  .featured-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .featured-card:last-child {
    grid-column: span 2;
  }
  
  .main-content {
    padding-right: 0;
  }
  
  .sidebar {
    padding-left: 0;
    margin-top: 2rem;
  }
  
  .hero-slider,
  .hero-slide {
    height: 400px;
  }
}

@media (max-width: 767px) {
  .featured-grid {
    grid-template-columns: 1fr;
  }
  
  .featured-card,
  .featured-card:last-child {
    grid-column: span 1;
    height: 220px;
  }
  
  .hero-slider,
  .hero-slide {
    height: 350px;
  }
  
  .hero-slide-content {
    padding: 1.5rem;
  }
  
  .hero-slide-title {
    font-size: 1.4rem !important;
  }
  
  .navbar .nav-link {
    font-size: 10px !important;
  }
}

/* ============================================
   ページヘッダー
   ============================================ */
.page-header {
  background: var(--cakey-light-gray);
  padding: 3rem 0;
  text-align: center;
  border-bottom: 1px solid var(--cakey-border);
}

.page-title {
  font-size: 2rem !important;
  margin-bottom: 0.5rem !important;
}

.page-subtitle {
  color: var(--cakey-text-muted);
  font-size: 13px;
  margin: 0;
}

/* ============================================
   記事一覧ページ - ページネーション
   ============================================ */
.pagination-nav {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cakey-border);
}

.pagination {
  display: flex;
  justify-content: center;
  gap: 0.3rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.page-item .page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--cakey-light-gray);
  color: var(--cakey-text);
  font-size: 12px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.page-item.active .page-link {
  background: var(--cakey-primary);
  color: #fff;
}

.page-item .page-link:hover {
  background: var(--cakey-primary);
  color: #fff;
}

.page-item.disabled .page-link {
  background: transparent;
  color: var(--cakey-text-muted);
}

/* 記事がない場合 */
.no-articles {
  text-align: center;
  padding: 4rem 2rem;
}

.no-articles i {
  font-size: 3rem;
  color: var(--cakey-text-muted);
  margin-bottom: 1rem;
}

.no-articles h3 {
  margin-bottom: 0.5rem;
}

.no-articles p {
  color: var(--cakey-text-muted);
  margin-bottom: 1.5rem;
}

.back-home-btn {
  display: inline-block;
  padding: 0.8rem 2rem;
  background: var(--cakey-primary);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: background 0.3s ease;
}

.back-home-btn:hover {
  background: var(--cakey-primary-dark);
  color: #fff;
}

/* ============================================
   記事詳細ページ
   ============================================ */
.article-main {
  padding-top: 2rem;
}

.article-single {
  background: var(--cakey-card-bg);
}

.article-header {
  margin-bottom: 2rem;
}

.article-title {
  font-size: 2rem !important;
  line-height: 1.4 !important;
  margin-bottom: 1.5rem !important;
}

.article-share {
  display: flex;
  gap: 0.5rem;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--cakey-dark);
  color: #fff !important;
  font-size: 14px;
  text-decoration: none;
  transition: background 0.3s ease;
}

.share-btn:hover {
  background: var(--cakey-primary);
  color: #fff !important;
}

.share-btn svg {
  fill: currentColor;
}

.article-featured-image {
  margin: 0 0 2rem 0;
}

.article-featured-image img {
  width: 100%;
  height: auto;
}

/* 記事本文 */
.article-content {
  font-family: 'Open Sans', 'Noto Sans JP', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  line-height: 2;
  color: var(--cakey-text);
}

.article-content p {
  margin-bottom: 1.5rem;
}

.article-content h2 {
  font-size: 1.5rem !important;
  margin: 2.5rem 0 1rem !important;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--cakey-border);
}

.article-content h3 {
  font-size: 1.25rem !important;
  margin: 2rem 0 1rem !important;
}

.article-content img {
  max-width: 100%;
  height: auto;
  margin: 1.5rem 0;
}

.article-content blockquote {
  border-left: 3px solid var(--cakey-primary);
  padding-left: 1.5rem;
  margin: 1.5rem 0;
  font-style: italic;
  color: var(--cakey-text-light);
}

.article-content a {
  color: var(--cakey-primary);
  text-decoration: underline;
}

.article-content ul, .article-content ol {
  margin: 1.5rem 0;
  padding-left: 1.5rem;
}

.article-content li {
  margin-bottom: 0.5rem;
}

/* X埋め込み中央揃え */
.article-content .twitter-tweet,
.article-content .twitter-tweet-rendered {
  margin-left: auto !important;
  margin-right: auto !important;
}

/* 記事フッター */
.article-footer {
  margin-top: 3rem;
  padding: 2rem;
  background: var(--cakey-light-gray);
  border-radius: 8px;
}

.article-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
}

.article-tags .tag {
  display: inline-block;
  padding: 0.5rem 1rem;
  background: #fff;
  color: var(--cakey-text);
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
}

.article-tags .tag:hover {
  background: var(--cakey-primary);
  color: #fff;
}

.article-share-bottom {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
  padding-top: 1rem;
  border-top: 1px solid var(--cakey-border);
}

.article-share-bottom span {
  font-size: 13px;
  color: var(--cakey-text);
  font-weight: 500;
}

.article-share-bottom .share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid var(--cakey-border);
  color: var(--cakey-text) !important;
  font-size: 16px;
  text-decoration: none;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.article-share-bottom .share-btn:hover {
  background: var(--cakey-primary);
  border-color: var(--cakey-primary);
  color: #fff !important;
  transform: translateY(-2px);
}

.article-share-bottom .share-btn svg {
  fill: currentColor;
}

/* Amazon関連商品 */
.amazon-section {
  margin: 3rem 0;
  padding: 2rem;
  background: var(--cakey-light-gray);
}

.amazon-title {
  font-size: 14px !important;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 1.5rem !important;
  font-family: 'Open Sans', sans-serif !important;
}

.amazon-title i {
  color: #FF9900;
  margin-right: 0.5rem;
}

.amazon-products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1rem;
}

.amazon-product {
  display: flex;
  flex-direction: column;
  background: #fff;
  padding: 1rem;
  text-decoration: none;
  transition: box-shadow 0.3s ease;
}

.amazon-product:hover {
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

.amazon-product-img {
  text-align: center;
  margin-bottom: 1rem;
}

.amazon-product-img img {
  max-height: 120px;
  width: auto;
}

.amazon-product-info h4 {
  font-size: 12px !important;
  line-height: 1.5 !important;
  color: var(--cakey-text);
  margin-bottom: 0.5rem !important;
  font-family: 'Open Sans', sans-serif !important;
}

.amazon-price {
  display: block;
  color: var(--cakey-primary);
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 0.5rem;
}

.amazon-btn {
  display: inline-block;
  padding: 0.4rem 0.8rem;
  background: #FF9900;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.amazon-disclosure {
  font-size: 11px;
  color: var(--cakey-text-muted);
  margin-top: 1rem;
  margin-bottom: 0;
}

/* 関連記事 */
.related-section {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cakey-border);
}

.related-section .section-title {
  font-size: 14px !important;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-align: center;
  margin-bottom: 2rem !important;
  font-family: 'Open Sans', sans-serif !important;
}

.related-card {
  margin-bottom: 1.5rem;
}

.related-card a {
  text-decoration: none;
}

.related-image {
  margin-bottom: 1rem;
  overflow: hidden;
}

.related-image img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-card:hover .related-image img {
  transform: scale(1.05);
}

.related-title {
  font-size: 0.95rem !important;
  line-height: 1.5 !important;
  color: var(--cakey-text);
}

/* 戻るリンク */
.back-nav {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--cakey-border);
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--cakey-text);
  font-size: 12px;
  text-decoration: none;
  transition: color 0.3s ease;
}

.back-link:hover {
  color: var(--cakey-primary);
}

/* ============================================
   サイドバー - 関連記事ウィジェット
   ============================================ */
.widget-related {
  margin-bottom: 2rem;
}

.sidebar-related-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-related-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem;
  background: var(--cakey-light-gray);
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-related-item:hover {
  background: #fff;
  box-shadow: 0 2px 10px rgba(0,0,0,0.08);
}

.sidebar-related-thumb {
  flex-shrink: 0;
  width: 70px;
  height: 70px;
  overflow: hidden;
}

.sidebar-related-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.sidebar-related-item:hover .sidebar-related-thumb img {
  transform: scale(1.05);
}

.sidebar-related-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-related-title {
  font-size: 12px !important;
  line-height: 1.5 !important;
  margin: 0 0 0.3rem 0 !important;
  color: var(--cakey-text);
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 500 !important;
}

.sidebar-related-date {
  font-size: 10px;
  color: var(--cakey-text-muted);
}

/* ============================================
   サイドバー - Amazon商品ウィジェット
   ============================================ */
.widget-amazon {
  margin-bottom: 2rem;
}

.widget-amazon .widget-title i {
  color: #FF9900;
}

.sidebar-amazon-list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.sidebar-amazon-item {
  display: flex;
  gap: 0.8rem;
  padding: 0.8rem;
  background: #fff;
  border: 1px solid var(--cakey-border);
  text-decoration: none;
  transition: all 0.3s ease;
}

.sidebar-amazon-item:hover {
  border-color: #FF9900;
  box-shadow: 0 2px 10px rgba(255, 153, 0, 0.15);
}

.sidebar-amazon-thumb {
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sidebar-amazon-thumb img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.sidebar-amazon-content {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.sidebar-amazon-title {
  font-size: 11px !important;
  line-height: 1.4 !important;
  margin: 0 0 0.3rem 0 !important;
  color: var(--cakey-text);
  font-family: 'Open Sans', sans-serif !important;
  font-weight: 400 !important;
}

.sidebar-amazon-price {
  font-size: 12px;
  font-weight: 600;
  color: var(--cakey-primary);
}

.amazon-note {
  font-size: 9px;
  color: var(--cakey-text-muted);
  margin-top: 0.5rem;
  margin-bottom: 0;
}

/* ============================================
   アニメーション
   ============================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.article-card {
  animation: fadeIn 0.6s ease;
}
