/* ===== COLUMN（エディトリアル誌面 ＋ カテゴリカラー） ===== */
.column-section {
  background: var(--white);
  padding: 40px 0 60px;
  position: relative;
  overflow: hidden;
}
.column-section::before {
  content: 'COLUMN';
  position: absolute;
  right: -8px; bottom: -16px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(68px, 11vw, 120px);
  font-weight: 300;
  color: transparent;
  -webkit-text-stroke: 1px rgba(94,207,177,0.10);
  letter-spacing: 0.08em;
  white-space: nowrap; line-height: 1;
  pointer-events: none;
}
.column-header {
  display: flex; align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
  flex-wrap: wrap; gap: 12px;
  position: relative; z-index: 1;
}
.column-header .section-label { color: var(--mint); }
.column-header .section-title { color: var(--navy); margin-bottom: 0; }
.column-more {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 12px; font-weight: 500; letter-spacing: 0.16em;
  color: var(--navy); text-decoration: none;
  border-bottom: 1px solid var(--gold);
  padding-bottom: 6px;
  transition: gap 0.3s, color 0.2s;
  white-space: nowrap;
}
.column-more::after { content: '→'; color: var(--gold); font-family: 'Cormorant Garamond', Georgia, serif; font-size: 15px; }
.column-more:hover { gap: 14px; color: var(--gold); }

/* ============ エディトリアルグリッド ============ */
.column-grid {
  display: grid;
  grid-template-columns: 1.55fr 1fr;
  grid-template-rows: auto auto;
  gap: 20px;
  position: relative; z-index: 1;
}
.col-card-featured {
  grid-column: 1 / 2;
  grid-row: 1 / 3;
}
.col-card:nth-child(2) { grid-column: 2 / 3; grid-row: 1 / 2; }
.col-card:nth-child(3) { grid-column: 2 / 3; grid-row: 2 / 3; }
.col-card:nth-child(4),
.col-card:nth-child(5) {
  grid-column: auto;
  grid-row: auto;
  flex-direction: row;
}
.col-card:nth-child(4) .col-thumb,
.col-card:nth-child(5) .col-thumb {
  width: 200px;
  flex-shrink: 0;
  aspect-ratio: unset;
  height: 100%;
}
.column-grid:has(.col-card:nth-child(4)) {
  grid-template-rows: auto auto auto;
}
.col-card:nth-child(4) { grid-column: 1 / 2; grid-row: 3 / 4; }
.col-card:nth-child(5) { grid-column: 2 / 3; grid-row: 3 / 4; }

@media (max-width: 900px) {
  .column-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .col-card-featured { grid-column: 1 / 3; grid-row: auto; }
  .col-card:nth-child(2),
  .col-card:nth-child(3) { grid-column: auto; grid-row: auto; }
  .col-card:nth-child(4),
  .col-card:nth-child(5) { flex-direction: column; }
  .col-card:nth-child(4) .col-thumb,
  .col-card:nth-child(5) .col-thumb { width: 100%; height: auto; aspect-ratio: 16/9; }
  .col-card:nth-child(4),
  .col-card:nth-child(5) { grid-column: auto; grid-row: auto; }
}
@media (max-width: 540px) {
  .column-grid { grid-template-columns: 1fr; }
  .col-card-featured { grid-column: auto; }
  .col-card:nth-child(4),
  .col-card:nth-child(5) { flex-direction: column; }
  .col-card:nth-child(4) .col-thumb,
  .col-card:nth-child(5) .col-thumb { width: 100%; aspect-ratio: 16/9; }
}

/* ============ カード共通 ============ */
.col-card {
  display: flex; flex-direction: column;
  background: #fff;
  border: 1px solid #E8F8F4;
  border-radius: 18px; overflow: hidden;
  text-decoration: none; color: inherit;
  transition: transform 0.3s cubic-bezier(0.23,1,0.32,1), box-shadow 0.3s;
  animation: fadeUp 0.65s ease both;
  box-shadow: 0 2px 16px rgba(0,0,0,0.05);
  position: relative;
}
.col-card:nth-child(1) { animation-delay: 0.10s; }
.col-card:nth-child(2) { animation-delay: 0.18s; }
.col-card:nth-child(3) { animation-delay: 0.26s; }
.col-card:nth-child(4) { animation-delay: 0.34s; }
.col-card:nth-child(5) { animation-delay: 0.42s; }
.col-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

/* ============ カテゴリ別カラー ============ */
.col-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.25s;
  z-index: 3;
}
.col-card:hover::before { opacity: 1; }
.col-card.cat-theme--guide::before   { background: linear-gradient(to right, var(--gold), var(--gold-light)); }
.col-card.cat-theme--guide           { border-color: rgba(184,152,106,0.20); }
.col-card.cat-theme--money::before   { background: linear-gradient(to right, var(--mint), var(--pink-main)); }
.col-card.cat-theme--money           { border-color: rgba(94,207,177,0.25); }
.col-card.cat-theme--life::before    { background: linear-gradient(to right, var(--pink-main), var(--mint)); }
.col-card.cat-theme--life            { border-color: rgba(41,182,212,0.20); }
.col-card.cat-theme--support::before { background: linear-gradient(to right, var(--yellow), var(--gold-light)); }
.col-card.cat-theme--support         { border-color: rgba(255,209,102,0.30); }

/* ============ サムネイル ============ */
.col-thumb {
  width: 100%; aspect-ratio: 16/9;
  position: relative; overflow: hidden; flex-shrink: 0;
}
.col-card-featured .col-thumb { aspect-ratio: 4/3; }
.col-thumb-img {
  width: 100%; height: 100%; object-fit: cover; display: block;
  transition: transform 0.6s cubic-bezier(0.4,0,0.2,1);
}
.col-card:hover .col-thumb-img { transform: scale(1.07); }

/* カテゴリバッジ */
.col-cat {
  position: absolute; top: 12px; left: 14px;
  font-size: 10px; font-weight: 700; letter-spacing: 0.12em;
  padding: 5px 14px; border-radius: 42px;
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  z-index: 2; white-space: nowrap;
}
.cat-money   { background: rgba(94,207,177,0.90);  color: #fff; }
.cat-life    { background: rgba(41,182,212,0.88);  color: #fff; }
.cat-support { background: rgba(255,209,102,0.92); color: #7A5000; }
.cat-guide   { background: rgba(184,152,106,0.88); color: #fff; }

/* 読了時間バッジ */
.col-read-time {
  position: absolute; top: 12px; right: 14px;
  font-size: 10px; font-weight: 500; letter-spacing: 0.06em;
  color: rgba(255,255,255,0.90);
  background: rgba(0,0,0,0.28);
  backdrop-filter: blur(4px);
  padding: 4px 10px; border-radius: 42px;
  z-index: 2;
}

/* グラデオーバーレイ */
.col-thumb::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(0,30,40,0.28) 0%, transparent 60%);
  pointer-events: none;
  z-index: 1;
}

/* ============ no-image プレースホルダー ============ */
.col-thumb-noimg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--mint-pale), var(--yellow-pale));
}

/* カテゴリ別グラデ */
.col-card.cat-theme--guide   .col-thumb-noimg { background: linear-gradient(135deg, #FDF8EE 0%, #F5E8C8 60%, #F0F9F7 100%); }
.col-card.cat-theme--money   .col-thumb-noimg { background: linear-gradient(135deg, var(--mint-pale) 0%, #D4F4EC 60%, #EAF9FC 100%); }
.col-card.cat-theme--life    .col-thumb-noimg { background: linear-gradient(135deg, #EAF9FC 0%, #C8EEF7 60%, var(--mint-pale) 100%); }
.col-card.cat-theme--support .col-thumb-noimg { background: linear-gradient(135deg, var(--yellow-pale) 0%, #FFE8A0 50%, #F0FDF9 100%); }

/* 装飾円 */
.col-thumb-noimg::before {
  content: '';
  position: absolute; top: -20%; right: -15%;
  width: 55%; height: 130%;
  opacity: 0.5; border-radius: 50%;
  pointer-events: none;
}
.col-card.cat-theme--guide   .col-thumb-noimg::before { background: linear-gradient(160deg, rgba(184,152,106,0.30), transparent); }
.col-card.cat-theme--money   .col-thumb-noimg::before { background: linear-gradient(160deg, rgba(94,207,177,0.35), transparent); }
.col-card.cat-theme--life    .col-thumb-noimg::before { background: linear-gradient(160deg, rgba(41,182,212,0.30), transparent); }
.col-card.cat-theme--support .col-thumb-noimg::before { background: linear-gradient(160deg, rgba(255,209,102,0.45), transparent); }

/* no-image PNG画像 */
.col-thumb-noimg .ladyreq-noimg,
.col-thumb-noimg .col-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  z-index: 0;
}
.col-card:hover .col-thumb-noimg { transform: scale(1.04); transition: transform 0.55s cubic-bezier(0.4,0,0.2,1); }

/* NO IMAGE テキスト */
.col-thumb-noimg::after {
  content: 'NO IMAGE';
  position: relative; z-index: 2;
  font-size: 11px; letter-spacing: .2em;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 4px 14px; border-radius: 20px;
}

/* アイコン（テンプレート側で使う場合） */
.col-noimg-icon {
  font-size: 32px;
  position: relative; z-index: 1;
  user-select: none; opacity: 0.30;
}
.col-card.cat-theme--guide   .col-noimg-icon { color: var(--gold); }
.col-card.cat-theme--money   .col-noimg-icon { color: var(--mint); }
.col-card.cat-theme--life    .col-noimg-icon { color: var(--pink-main); }
.col-card.cat-theme--support .col-noimg-icon { color: var(--yellow); }
.col-card-featured .col-noimg-icon { font-size: 52px; }

/* ============ カード本文 ============ */
.col-body {
  padding: 18px; display: flex; flex-direction: column; flex: 1; gap: 8px;
}
.col-card-featured .col-body { padding: 24px 28px 26px; }
.col-card:nth-child(4) .col-body,
.col-card:nth-child(5) .col-body { padding: 16px 20px; }

.col-meta { display: flex; align-items: center; gap: 10px; }
.col-date {
  font-size: 11px; color: #aaa;
  letter-spacing: 0.08em; font-family: 'Noto Serif JP', serif; font-weight: 300;
}
.col-title {
  font-family: 'Noto Serif JP', serif;
  font-weight: 600; color: var(--navy); line-height: 1.55;
}
.col-card-featured .col-title           { font-size: clamp(15px, 1.8vw, 20px); }
.col-card:not(.col-card-featured) .col-title { font-size: 13px; }

.col-desc {
  font-size: 12px; color: #888; line-height: 1.85;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.col-card-featured .col-desc { font-size: 13px; -webkit-line-clamp: 3; color: #666; }

.col-link {
  display: inline-flex; align-items: center; gap: 6px;
  margin-top: auto; padding-top: 12px;
  font-size: 11px; font-weight: 600;
  color: var(--mint); letter-spacing: 0.08em;
  transition: gap 0.25s;
}
.col-link::after { content: '→'; font-size: 13px; }
.col-card:hover .col-link { gap: 10px; }

/* ===== archive-column no-image ===== */
.col-arc-grid .col-thumb {
  position: relative;
  overflow: hidden;
}

.col-arc-grid .col-thumb-noimg {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden;
  background: linear-gradient(135deg, #EAF9FC 0%, #C8EEF7 60%, var(--mint-pale, #E8F8F4) 100%);
}

.col-arc-grid .col-thumb-noimg .ladyreq-noimg,
.col-arc-grid .col-thumb-noimg .col-thumb-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;object-position: center top;
  display: block;
  z-index: 0;
}

.col-arc-grid .col-thumb-noimg::after {
  content: 'NO IMAGE';
  position: relative; z-index: 2;
  font-size: 10px; letter-spacing: .2em;
  color: rgba(255,255,255,0.8);
  border: 1px solid rgba(255,255,255,0.5);
  padding: 3px 12px; border-radius: 20px;
}

/* カテゴリ別グラデ */
.col-arc-grid .col-card.cat-theme--guide   .col-thumb-noimg { background: linear-gradient(135deg, #FDF8EE 0%, #F5E8C8 60%, #F0F9F7 100%); }
.col-arc-grid .col-card.cat-theme--money   .col-thumb-noimg { background: linear-gradient(135deg, var(--mint-pale) 0%, #D4F4EC 60%, #EAF9FC 100%); }
.col-arc-grid .col-card.cat-theme--life    .col-thumb-noimg { background: linear-gradient(135deg, #EAF9FC 0%, #C8EEF7 60%, var(--mint-pale) 100%); }
.col-arc-grid .col-card.cat-theme--support .col-thumb-noimg { background: linear-gradient(135deg, var(--yellow-pale) 0%, #FFE8A0 50%, #F0FDF9 100%); }