@charset "UTF-8";

/* ========================================
   たらいち邸 ブログ記事 カスタムCSS
   ブログ管理画面の「独自CSS」欄に貼り付けてください
   ======================================== */

:root {
  --green-deep: #2d4a2d;
  --green-mid: #4a7c59;
  --green-light: #a8c5a0;
  --cream: #f7f3ec;
  --text-main: #2a2a2a;
  --text-sub: #5a5a5a;
  --accent: #c8a96e;
  --firefly: #d4e87a;
}

/* リード文ボックス */
.taraichi-lead {
  background: var(--cream);
  border-left: 3px solid var(--green-mid);
  padding: 28px 28px;
  margin: 36px 0;
  border-radius: 0 8px 8px 0;
  font-size: 1.02rem;
  line-height: 2;
}

/* 体験カード */
.taraichi-card {
  background: var(--cream);
  border-radius: 10px;
  padding: 24px 24px;
  border: 1px solid rgba(74,124,89,0.15);
  position: relative;
  overflow: hidden;
  margin-bottom: 20px;
}

.taraichi-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 4px;
  height: 100%;
  background: var(--green-mid);
  border-radius: 4px 0 0 4px;
}

.taraichi-card.firefly::before { background: #8aad3a; }
.taraichi-card.cherry::before  { background: #c0392b; }
.taraichi-card.forest::before  { background: var(--green-deep); }

.taraichi-card-title {
  font-weight: 700;
  font-size: 1rem;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* タグバッジ */
.taraichi-tag {
  font-size: 0.7rem;
  background: var(--green-deep);
  color: white;
  padding: 2px 8px;
  border-radius: 10px;
  letter-spacing: 0.05em;
}
.taraichi-tag.limited { background: #8aad3a; }
.taraichi-tag.rare    { background: #c0392b; }

/* さくらんぼ品種テーブル */
.cherry-table {
  width: 100%;
  border-collapse: collapse;
  margin: 16px 0;
  font-size: 0.9rem;
}
.cherry-table th {
  background: var(--green-deep);
  color: white;
  padding: 10px 12px;
  text-align: left;
  font-weight: 500;
}
.cherry-table td {
  padding: 10px 12px;
  border-bottom: 1px solid rgba(74,124,89,0.15);
  vertical-align: top;
}
.cherry-table tr:nth-child(even) td { background: var(--cream); }
.cherry-table tr.best td {
  background: #fff8e1 !important;
  font-weight: 600;
}
.best-badge {
  display: inline-block;
  background: #c0392b;
  color: white;
  font-size: 0.65rem;
  padding: 1px 6px;
  border-radius: 8px;
  margin-left: 6px;
}

/* 注意ボックス */
.taraichi-warning {
  background: #fff8e1;
  border-left: 3px solid #e6a817;
  padding: 14px 18px;
  border-radius: 0 8px 8px 0;
  margin: 16px 0;
  font-size: 0.92rem;
}
.taraichi-warning strong { color: #8a6200; }

/* コールアウト（緑ボックス） */
.taraichi-callout {
  background: linear-gradient(135deg, #f0f7f0, #e8f4e8);
  border: 1px solid var(--green-light);
  border-radius: 10px;
  padding: 22px 24px;
  margin: 24px 0;
}
.taraichi-callout-title {
  font-size: 0.88rem;
  font-weight: 700;
  color: var(--green-deep);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}

/* タイムライン */
.taraichi-timeline {
  position: relative;
  margin: 24px 0;
}
.taraichi-timeline::before {
  content: '';
  position: absolute;
  left: 52px;
  top: 0; bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--green-light), var(--green-deep));
}
.taraichi-timeline-day {
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: white;
  background: var(--green-deep);
  display: inline-block;
  padding: 4px 14px;
  border-radius: 20px;
  margin-bottom: 14px;
}
.taraichi-timeline-item {
  display: flex;
  gap: 18px;
  margin-bottom: 22px;
  position: relative;
}
.taraichi-timeline-time {
  flex: 0 0 52px;
  text-align: right;
  font-size: 0.7rem;
  color: var(--green-mid);
  font-weight: 700;
  padding-top: 3px;
  line-height: 1.4;
}
.taraichi-timeline-dot {
  flex: 0 0 12px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--green-mid);
  border: 2px solid white;
  box-shadow: 0 0 0 2px var(--green-mid);
  margin-top: 4px;
  position: relative;
  z-index: 1;
}
.taraichi-timeline-dot.highlight {
  background: var(--firefly);
  box-shadow: 0 0 0 2px #8aad3a;
}
.taraichi-timeline-content { flex: 1; }
.taraichi-timeline-content strong {
  font-size: 0.95rem;
  color: var(--green-deep);
  display: block;
  margin-bottom: 4px;
}
.taraichi-timeline-content p {
  font-size: 0.88rem;
  color: var(--text-sub);
  line-height: 1.7;
  margin: 0;
}

/* 理由リスト */
.taraichi-reason-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
}
.taraichi-reason-list li {
  padding: 14px 16px 14px 48px;
  position: relative;
  border-bottom: 1px solid rgba(74,124,89,0.1);
  font-size: 0.97rem;
  line-height: 1.75;
}
.taraichi-reason-list li::before {
  content: attr(data-num);
  position: absolute;
  left: 12px;
  top: 14px;
  width: 22px;
  height: 22px;
  background: var(--green-mid);
  color: white;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 700;
  display: block;
  text-align: center;
  line-height: 22px;
}
.taraichi-reason-list li strong {
  color: var(--green-deep);
  display: block;
  margin-bottom: 4px;
}

/* CTAブロック */
.taraichi-cta {
  background: linear-gradient(135deg, var(--green-deep), #1a3320);
  color: white;
  border-radius: 14px;
  padding: 44px 32px;
  text-align: center;
  margin: 48px 0 32px;
}
.taraichi-cta p {
  color: rgba(255,255,255,0.8);
  font-size: 0.95rem;
  margin-bottom: 24px;
  line-height: 1.8;
}
.taraichi-cta-btn {
  display: inline-block;
  background: var(--accent);
  color: var(--green-deep);
  font-weight: 700;
  font-size: 1rem;
  padding: 15px 38px;
  border-radius: 40px;
  text-decoration: none;
  letter-spacing: 0.08em;
}
.taraichi-cta-note {
  margin-top: 12px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.45);
}

/* スマホ対応 */
@media (max-width: 600px) {
  .taraichi-lead { padding: 20px 18px; }
  .taraichi-card { padding: 18px 18px; }
  .taraichi-cta  { padding: 32px 20px; }
  .taraichi-timeline::before { left: 44px; }
  .taraichi-timeline-time { flex: 0 0 44px; font-size: 0.65rem; }
  .cherry-table { font-size: 0.8rem; }
  .cherry-table th, .cherry-table td { padding: 8px 8px; }
}