/* ============================================
   journal-01.css
   USAKO HOLE — journal記事ページ専用スタイル
   (style.cssとの差分のみ)
   ============================================ */

/* LOGO WRAP (journal-01追加) */
.logo-wrap { text-decoration: none; }

/* ARTICLE HERO */
.article-hero {
  position: relative; z-index: 1;
  background: linear-gradient(180deg, var(--pink-light) 0%, var(--cream) 100%);
  padding: 56px 24px 48px;
  text-align: center;
  max-width: 780px;
  margin: 0 auto;
}
.article-tag {
  display: inline-block;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11px;
  letter-spacing: 0.25em;
  color: var(--white);
  background: var(--pink-deep);
  border-radius: 20px;
  padding: 4px 16px;
  margin-bottom: 20px;
}
.article-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(22px, 5vw, 32px);
  font-weight: 700;
  color: var(--red);
  line-height: 1.55;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
}
.article-title-sub {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: clamp(13px, 3vw, 18px);
  font-weight: 700;
  color: var(--red);
  line-height: 1.55;
  margin-bottom: 8px;
  letter-spacing: 0.03em;
  display: block;
}
.article-subtitle {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  color: var(--text-soft);
  letter-spacing: 0.15em;
  margin-bottom: 24px;
}
.article-meta {
  font-family: 'DM Serif Display', serif;
  font-size: 12px;
  color: var(--pink-deep);
  letter-spacing: 0.2em;
}

/* ARTICLE TAGS */
.article-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
}

/* BUBBLE DIVIDER (journal-01版：max-width付き) */
.bubble-divider {
  position: relative; z-index: 1;
  display: flex; align-items: center; justify-content: center;
  gap: 10px; padding: 14px 0;
  max-width: 780px; margin: 0 auto;
}
.bubble-divider::before, .bubble-divider::after {
  content: ''; flex: 1; height: 1px;
  background: linear-gradient(90deg, transparent, var(--pink-mid), transparent);
}
.bubbles { display: flex; gap: 6px; align-items: center; }
.bubble { border-radius: 50%; background: var(--pink); border: 1.5px solid var(--pink-mid); }
.bubble:nth-child(1) { width: 8px; height: 8px; }
.bubble:nth-child(2) { width: 12px; height: 12px; }
.bubble:nth-child(3) { width: 8px; height: 8px; }

/* ARTICLE BODY */
.article-body {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

/* SECTION (journal-01版：fade-inはJS制御) */
.section {
  margin-bottom: 52px;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section.visible { opacity: 1; transform: translateY(0); }

.section-num {
  font-family: 'DM Serif Display', serif;
  font-size: 11px;
  letter-spacing: 0.3em;
  color: var(--pink-deep);
  margin-bottom: 10px;
  display: block;
}
.section-heading {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--red);
  margin-bottom: 18px;
  line-height: 1.6;
}
.body-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 2.1;
  color: var(--text);
  letter-spacing: 0.04em;
}
.body-text + .body-text { margin-top: 16px; }

/* QUOTE CARD */
.quote-card {
  position: relative;
  background: var(--pink);
  border-left: 4px solid var(--pink-deep);
  border-radius: 0 16px 16px 0;
  padding: 28px 28px 28px 32px;
  margin: 32px 0;
}
.quote-text {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--brown);
  line-height: 1.7;
  letter-spacing: 0.08em;
}
.quote-source {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  color: var(--text-soft);
  margin-top: 10px;
  letter-spacing: 0.15em;
}

/* MEMORY CARD */
.memory-card {
  background: var(--white);
  border: 1.5px solid var(--pink);
  border-radius: 18px;
  padding: 28px;
  margin: 32px 0;
  position: relative;
  overflow: hidden;
}
.memory-card::before {
  content: '📓';
  position: absolute;
  top: 16px; right: 20px;
  font-size: 28px;
  opacity: 0.25;
}
.memory-label {
  font-family: 'DM Serif Display', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--pink-deep);
  margin-bottom: 10px;
  display: block;
  text-transform: uppercase;
}
.memory-text {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  font-weight: 300;
  line-height: 2.0;
  color: var(--text);
}

/* CLOSING CARD */
.closing-card {
  background: linear-gradient(135deg, var(--pink-deep) 0%, var(--red) 100%);
  border-radius: 20px;
  padding: 40px 32px;
  text-align: center;
  margin-top: 48px;
}
.closing-card p {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 15px;
  color: rgba(255,255,255,0.92);
  line-height: 2.0;
  font-weight: 500;
}
.closing-card .closing-big {
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  display: block;
  margin-top: 16px;
  letter-spacing: 0.05em;
}

/* TOC */
.toc {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto 40px;
  padding: 0 24px;
}
.toc-inner {
  background: var(--white);
  border: 1.5px solid var(--pink);
  border-radius: 16px;
  padding: 22px 28px;
}
.toc-label {
  font-family: 'DM Serif Display', serif;
  font-size: 10px;
  letter-spacing: 0.3em;
  color: var(--pink-deep);
  margin-bottom: 12px;
  display: block;
  text-transform: uppercase;
}
.toc-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.toc-list li a {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 13px;
  color: var(--brown);
  text-decoration: none;
  letter-spacing: 0.08em;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.2s;
}
.toc-list li a:hover { color: var(--red); }
.toc-num {
  font-family: 'DM Serif Display', serif;
  font-size: 10px;
  color: var(--pink-deep);
  min-width: 18px;
}

/* BACK LINK */
.back-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
  letter-spacing: 0.15em;
  transition: color 0.2s;
}
.back-link:hover { color: var(--red); }

/* 前後記事ナビ */
.post-nav {
  position: relative; z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  padding: 0 24px 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.post-nav-card {
  background: var(--white);
  border: 1.5px solid var(--pink);
  border-radius: 16px;
  padding: 16px 14px;
  text-decoration: none;
  transition: transform 0.2s, box-shadow 0.2s;
  display: block;
}
.post-nav-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(240,160,184,0.18);
}
.post-nav-card.prev { text-align: left; }
.post-nav-card.next { text-align: right; }
.post-nav-card.disabled {
  opacity: 0.3;
  pointer-events: none;
}
.post-nav-label {
  font-family: 'DM Serif Display', serif;
  font-size: 9px;
  letter-spacing: 0.25em;
  color: var(--pink-deep);
  text-transform: uppercase;
  margin-bottom: 5px;
  display: block;
}
.post-nav-title {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  color: var(--text);
  line-height: 1.55;
}

/* 一覧に戻るボタン */
.back-to-list {
  text-align: center;
  padding: 0 24px 64px;
  position: relative; z-index: 1;
}
.back-to-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 12px;
  color: var(--text-soft);
  text-decoration: none;
  border: 1.5px solid var(--pink);
  border-radius: 99px;
  padding: 10px 24px;
  transition: all 0.2s;
  letter-spacing: 0.1em;
}
.back-to-list a:hover {
  background: var(--pink-light);
  color: var(--red);
  border-color: var(--pink-deep);
}

/* FOOTER (journal-01版) */
.footer-gingham {
  height: 12px;
  background-image: repeating-conic-gradient(var(--pink) 0% 25%, var(--pink-light) 0% 50%);
  background-size: 12px 12px;
  position: relative; z-index: 1;
}
footer {
  position: relative; z-index: 1;
  background: var(--pink);
  text-align: center;
  padding: 32px 24px;
  border-top: 2px solid var(--pink-mid);
}
.footer-logo {
  font-family: 'DM Serif Display', serif;
  font-size: 22px; color: var(--red);
  margin-bottom: 4px;
}
.footer-sub {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11px; color: var(--brown);
  letter-spacing: 0.2em; margin-bottom: 14px;
}
.footer-links {
  display: flex; gap: 20px; justify-content: center;
  margin-bottom: 14px;
}
.footer-links a {
  font-family: 'Zen Maru Gothic', sans-serif;
  font-size: 11px; color: var(--brown);
  text-decoration: none; letter-spacing: 0.1em;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--red); }
.footer-copy {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 10px; color: var(--text-soft); letter-spacing: 0.1em;
}
