/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Jun 09 2026 | 06:17:55 */
/* ==========================================================================
   Variables & Base Settings (Modern Magazine Typography)
   ========================================================================== */
.custom-blog-wrapper {
  --primary-color: #2C3E50;    /* Elegant Navy */
  --secondary-color: #C0392B;  /* Deep Accent Red */
  --accent-yellow: #F1C40F;   /* Highlight Yellow */
  --bg-gray: #F8F9FA;           /* Light Soft Gray */
  --border-color: #E2E8F0;      /* Modern Muted Border */
  --text-dark: #2D3748;         /* High Contrast Body Text */
  --text-muted: #718096;        /* Subtitle / Meta Text */
  
  /* Typography */
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  background-color: var(--bg-gray);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
  padding: 60px 0;
}

/* オリジナルのテーマに色を負けさせないための強制上書き設定 */
.custom-blog-wrapper,
.custom-blog-wrapper p,
.custom-blog-wrapper li,
.custom-blog-wrapper td {
  color: var(--text-dark) !important;
  line-height: 1.75 !important;
}

/* ==========================================================================
   Blog Layout Container & Hero Section
   ========================================================================== */
/* 全体幅を1000pxに変更 */
.custom-blog-wrapper .blog-post {
  max-width: 1000px;
  background: #ffffff;
  padding: 50px 60px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  margin: 0 auto;
  box-sizing: border-box;
  overflow: hidden;
}

/* 記事内のヒーロー写真のスタイル */
.custom-blog-wrapper .blog-hero-section {
  width: 100%;
  margin: 0 0 30px 0;
  padding: 0;
}

.custom-blog-wrapper .blog-hero-image {
  width: 100%;
  height: auto;
  max-height: 400px; /* 横幅が1000pxに広がったため、最大高さを少し調整 */
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  display: block;
}

@media (max-width: 768px) {
  .custom-blog-wrapper { padding: 20px 0; }
  .custom-blog-wrapper .blog-post { padding: 30px 20px; border-radius: 0; }
}

/* ==========================================================================
   Typography & Header (With Author Profile)
   ========================================================================== */
.custom-blog-wrapper .post-header {
  margin-bottom: 25px; /* 写真との余白 */
}

.custom-blog-wrapper .post-category {
  color: var(--secondary-color) !important;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 2px;
  margin-bottom: 12px;
}

.custom-blog-wrapper .post-title {
  font-family: var(--font-heading) !important;
  font-size: 2.8rem !important;
  color: var(--primary-color) !important;
  line-height: 1.2 !important;
  margin: 0 !important;
  font-weight: 700 !important;
}

@media (max-width: 600px) {
  .custom-blog-wrapper .post-title { font-size: 2rem !important; }
}

/* 写真の下のメタセクション */
.custom-blog-wrapper .post-meta {
  font-size: 0.9rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 40px;
  padding-bottom: 20px;
  border-bottom: 2px solid var(--bg-gray);
}

.custom-blog-wrapper .meta-left {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted) !important;
}

.custom-blog-wrapper .meta-left time,
.custom-blog-wrapper .meta-left span {
  color: var(--text-muted) !important;
}

/* プロフィール写真と名前 */
.custom-blog-wrapper .post-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-blog-wrapper .author-avatar {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border-color);
}

.custom-blog-wrapper .author-name {
  font-weight: 500;
  color: var(--text-dark) !important;
}

/* ==========================================================================
   Content Elements
   ========================================================================== */
.custom-blog-wrapper .post-intro {
  font-size: 1.15rem !important;
  color: #4A5568 !important;
  line-height: 1.8 !important;
  margin-bottom: 40px !important;
  font-style: italic;
  border-left: 4px solid var(--primary-color);
  padding-left: 20px;
}

.custom-blog-wrapper .post-section {
  margin-bottom: 45px;
}

.custom-blog-wrapper .section-title {
  font-family: var(--font-heading) !important;
  font-size: 1.8rem !important;
  color: var(--primary-color) !important;
  margin-top: 30px !important;
  margin-bottom: 20px !important;
  display: flex;
  align-items: center;
  gap: 10px;
}

.custom-blog-wrapper .section-title span {
  color: var(--primary-color) !important;
  font-weight: 700;
}

.custom-blog-wrapper h3 {
  font-size: 1.3rem !important;
  color: var(--primary-color) !important;
  margin-top: 25px !important;
  font-weight: 600;
}

.custom-blog-wrapper p {
  margin-bottom: 24px !important;
}

/* ==========================================================================
   Section 1: Food Cards Layout
   ========================================================================== */
.custom-blog-wrapper .card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  margin-top: 25px;
}

.custom-blog-wrapper .food-card {
  background: var(--bg-gray);
  border-left: 5px solid var(--accent-yellow);
  padding: 20px 25px;
  border-radius: 0 12px 12px 0;
  position: relative;
  transition: transform 0.2s ease;
}

.custom-blog-wrapper .food-card:hover {
  transform: translateX(5px);
}

.custom-blog-wrapper .card-badge {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 30px;
}

.custom-blog-wrapper .card-badge.safe {
  background-color: #E6F4EA !important;
  color: #137333 !important;
}

.custom-blog-wrapper .card-food-title {
  margin: 0 0 10px 0 !important;
  font-size: 1.2rem !important;
  color: var(--primary-color) !important;
  padding-right: 80px;
}

/* ==========================================================================
   Section 2: Info Box & Lists
   ========================================================================== */
.custom-blog-wrapper .info-blockquote {
  background-color: #EDF2F7 !important;
  border-left: 4px solid var(--primary-color);
  margin: 30px 0;
  padding: 20px 25px;
  border-radius: 0 8px 8px 0;
  font-size: 1rem;
}

.custom-blog-wrapper .styled-list {
  padding-left: 20px;
  margin-bottom: 30px;
}

.custom-blog-wrapper .styled-list li {
  margin-bottom: 12px;
}

/* ==========================================================================
   Section 3: SEO Optimized Data Table
   ========================================================================== */
.custom-blog-wrapper .table-wrapper {
  overflow-x: auto;
  margin: 25px 0;
  border: 1px solid var(--border-color);
  border-radius: 8px;
}

.custom-blog-wrapper .seo-table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
  font-size: 0.95rem;
}

.custom-blog-wrapper .seo-table th {
  background-color: var(--primary-color) !important;
  color: #ffffff !important;
  padding: 14px 18px;
  font-weight: 500;
}

.custom-blog-wrapper .seo-table td {
  padding: 14px 18px;
  border-bottom: 1px solid var(--border-color);
}

.custom-blog-wrapper .seo-table tr:last-child td {
  border-bottom: none;
}

.custom-blog-wrapper .seo-table tr:nth-child(even) {
  background-color: #FAFAFA;
}

.custom-blog-wrapper .kanji {
  font-weight: 600;
  color: #1A202C !important;
}

.custom-blog-wrapper .status {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
}

.custom-blog-wrapper .status.haram {
  color: var(--secondary-color) !important;
}

.custom-blog-wrapper .status.doubtful {
  color: #D68910 !important;
}

/* ==========================================================================
   Footer & Tags & Bottom Share
   ========================================================================== */
.custom-blog-wrapper .post-footer {
  margin-top: 50px;
  padding-top: 30px;
  border-top: 2px solid var(--bg-gray);
}

.custom-blog-wrapper .post-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 35px; /* シェア欄との間隔 */
}

.custom-blog-wrapper .post-tags a {
  background-color: var(--bg-gray) !important;
  color: var(--primary-color) !important;
  text-decoration: none;
  font-size: 0.85rem;
  padding: 6px 14px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.custom-blog-wrapper .post-tags a:hover {
  background-color: var(--secondary-color) !important;
  color: #ffffff !important;
}

/* --- Train Types Modern Card Layout --- */
.train-types-container {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin: 25px 0;
}

.train-type-card {
  display: flex;
  background-color: #f9fa强化;
  background-color: #f9f9f9;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}

/* 左側のカラーバッジエリア */
.train-badge-side {
  flex: 0 0 140px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 15px;
  color: #ffffff;
  text-align: center;
}

.train-kanji {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 3px;
  font-family: "Noto Sans JP", sans-serif;
}

.train-romaji {
  font-size: 0.8rem;
  opacity: 0.9;
  text-transform: capitalize;
}

/* 右側の解説テキストエリア */
.train-info-side {
  flex: 1;
  padding: 15px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background-color: #ffffff;
}

.train-english {
  font-size: 1.1rem;
  color: #111827;
  margin-bottom: 4px;
  display: block;
}

.train-desc {
  font-size: 0.9rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.4;
}

/* 各電車の種別カラー（日本の一般的な電光掲示板に準拠） */
.train-type-card.local .train-badge-side {
  background-color: #4b5563; /* 各停：グレー/黒 */
}
.train-type-card.rapid .train-badge-side {
  background-color: #2563eb; /* 快速：ブルー */
}
.train-type-card.express .train-badge-side {
  background-color: #059669; /* 急行：グリーン */
}
.train-type-card.ltd-exp .train-badge-side {
  background-color: #dc2626; /* 特急：レッド */
}

/* モバイル対応：画面が狭いときはバッジを上に配置 */
@media (max-width: 600px) {
  .train-type-card {
    flex-direction: column;
  }
  
  .train-badge-side {
    flex: none;
    width: 100%;
    padding: 10px;
    flex-direction: row;
    gap: 10px;
    justify-content: center;
  }
  
  .train-kanji {
    margin-bottom: 0;
    font-size: 1.1rem;
  }
  
  .train-info-side {
    padding: 15px;
  }
}

/* --- Gachapon Process Step-by-Step Layout --- */
.gacha-process-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 30px 0;
}

.process-card-item {
  display: flex;
  align-items: flex-start;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  transition: transform 0.2s ease;
}

.process-card-item:hover {
  transform: translateY(-2px);
}

/* 左側の大きなステップ数字バッジ */
.process-step-badge {
  flex: 0 0 50px;
  height: 50px;
  background-color: #ef4444; /* ポップなカプセルトイを意識したレッド（変更可） */
  color: #ffffff;
  font-size: 1.5rem;
  font-weight: 800;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 20px;
  box-shadow: 0 3px 6px rgba(239, 68, 68, 0.3);
}

/* 右側の手順テキストエリア */
.process-content-block {
  flex: 1;
}

.process-step-title {
  display: block;
  font-size: 1.15rem;
  color: #111827;
  margin-bottom: 6px;
  font-weight: 700;
}

.process-desc {
  font-size: 0.95rem;
  color: #4b5563;
  margin: 0;
  line-height: 1.5;
}

/* モバイル対応（画面幅が狭い場合は少しパディングを小さく） */
@media (max-width: 600px) {
  .process-card-item {
    padding: 15px;
  }
  
  .process-step-badge {
    flex: 0 0 40px;
    height: 40px;
    font-size: 1.2rem;
    margin-right: 15px;
  }
  
  .process-step-title {
    font-size: 1.05rem;
  }
  
  .process-desc {
    font-size: 0.9rem;
  }
}