/* ===== モバイルサブメニュー ===== */
.mobile_submenu li {
  width: 33%;
}

/* ===== アーカイブ全体 ===== */
.archive-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr; /* 常に50% / 50% */
  gap: 32px;
  margin-top: 30px;
}

/* ===== 年見出し（装飾なし・クール） ===== */
.archive-year h5 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
  color: #111;
  border-bottom: none;
}

/* ===== リスト ===== */
.archive-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.archive-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 6px 4px;
  cursor: pointer;
  font-size: 13px;
  border-bottom: 1px solid #e5e5e5;
}

.archive-list li:hover {
  background: #f2f2f2;
}

/* 日付 */
.archive-list .date {
  width: 48px;
  font-weight: 600;
  color: #000;
  flex-shrink: 0;
}

/* タイトル（2行まで表示） */
.archive-list .title {
  color: #222;
  line-height: 1.5;
  text-align: left;
  overflow: hidden;

  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

/* リンク */
.archive-list .title a {
  color: inherit;
  text-decoration: none;
}

.archive-list .title a:hover {
  text-decoration: underline;
}

/* ===== Colorbox ナビ ===== */
#cboxPrevious,
#cboxNext {
  background-image: none !important;
  background-color: rgba(0,0,0,0.4);
  border-radius: 50%;
  width: 48px;
  height: 48px;
  display: flex !important;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 50%;
  text-indent: 0 !important;
  overflow: visible !important;
  font-size: 24px;
  color: #fff;
  z-index: 9999;
}

#cboxPrevious { 
  left: 20px;
  transform: translateY(-50%) rotate(-90deg);
}

#cboxNext { 
  right: 20px;
  transform: translateY(-50%) rotate(90deg);
}

/* ===== スマホ ===== */
@media screen and (max-width: 768px) {
  .archive-wrap {
    grid-template-columns: 1fr;
  }

  #cboxLoadedContent {
    overflow-y: auto;
    overflow-x: hidden;
  }

  #cboxLoadedContent iframe {
    width: 100%;
    height: 100%;
    border: none;
  }
}

/* ===== その他既存 ===== */
@media screen and (max-width: 950px) {
  html {
    scroll-padding-top: 140px;
  }
}

.table01 td {
  font-size: 12px;
}
