
body {
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
  background:#f7f8fb;
  color:#333;
  margin:0;
  line-height:1.6;
}

/* --------------------
  Header
-------------------- */

.site-logo {
  width: 260px;         
  height: auto;
  display: block;       
  margin: 0 auto 10px;  
  max-width: 100%;      
}


@media (max-width: 600px) {
  .site-logo {
    width: 220px; 
    margin-bottom: 8px;
  }
}


header {
  background: linear-gradient(90deg, #6a5acd, #48d1cc);
  color: #fff;
  text-align: center;
  padding: 28px 15px 14px; 
}


header h1 {
  margin: 0;
  line-height: 1.2;
}


header h1 .date {
  display: block;
  font-size: 20px;
  font-weight: normal;
  margin-top: 4px; 
  opacity: 0.9;
}


header .lead {
  display: block;
  font-size: 16px;
  font-weight: normal;
  margin-top: 4px; 
  opacity: 0.9;
}

header .catch {
  text-align: center;
  color: #fff;
  font-size: 13px;
  letter-spacing: 0.15em;
  margin: 18px 0 5px;
  opacity: 0.85;
  font-weight: 400;
  font-family: "Hiragino Sans", "Meiryo", sans-serif;
}

header .catch span {
  position: relative;
  display: inline-block;
}

header .catch span::before,
header .catch span::after {
  content: "";
  display: inline-block;
  width: 32px;
  height: 1px;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 10px;
  vertical-align: middle;
}

@media (max-width: 600px) {
  header .catch {
    font-size: 12px;
    letter-spacing: 0.1em;
    margin-top: 8px;
    opacity: 0.8;
  }
  header .catch span::before,
  header .catch span::after {
    width: 24px;
    background: rgba(255, 255, 255, 0.3);
  }
}





main {
  max-width:980px;
  margin:24px auto 30px;
  padding:0 16px;
}

.archive-list {
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(290px,1fr));
  gap:18px;
}


.archive-card {
  background:#fff;
  border-radius:16px;
  box-shadow:0 4px 14px rgba(0,0,0,.06);
  overflow:hidden;
  transition:.25s;
}

.archive-card:hover {
  transform:translateY(-4px);
  box-shadow:0 10px 22px rgba(0,0,0,.08);
}

.archive-card a {
  text-decoration:none;
  color:inherit;
  display:block;
}


.thumb {
  position:relative;
}

.thumb img {
  width:100%;
  display:block;
}

.badge {
  position:absolute;
  top:10px;
  left:10px;
  padding:6px 12px;
  border-radius:20px;
  font-size:13px;
  font-weight:700;
  color:#fff;
  background:linear-gradient(135deg,#6a5acd,#48d1cc);
}


.info {
  padding:12px 14px 16px;
}

.info time {
  font-size:13px;
  color:#777;
}

.info h2 {
  font-size:16px;
  margin:6px 0 6px;
  font-weight:700;
}

.info p {
  font-size:14px;
  color:#444;
  margin:0;
}

footer {
  background: linear-gradient(90deg, #6a5acd, #48d1cc);
  color: #fff;
  text-align: center;
  padding: 25px 15px 5px;
  box-shadow: 0 -2px 10px rgba(0,0,0,0.1);
}

footer p {
  margin: 0 0 12px;
  font-size: 14px;
  opacity: 0.9;
}

footer .footer-links {
  list-style: none;
  padding: 0;
  margin: 0 0 12px;
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}

footer .footer-links li {
  flex: 0 0 auto;
}

footer .footer-links a {
  display: inline-block;
  padding: 5px 10px;
  background: rgba(255,255,255,0.2);
  color: #fff;
  border-radius: 6px;
  text-decoration: none;
  font-size: 12px;
  white-space: nowrap;
  transition: background 0.3s, transform 0.2s;
}

footer .footer-links a:hover {
  background: rgba(255,255,255,0.35);
  transform: translateY(-2px);
}

footer p:last-child {
  font-size: 13px;
  opacity: 0.8;
  margin: 0;
}

@media (max-width: 600px) {
  footer .footer-links a {
    font-size: 12px;
    padding: 4px 8px;
  }
  footer .footer-links {
    gap: 6px;
  }
}





.archive {
  padding: 40px 16px 60px;
}

.archive-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 20px;
}

.archive-card a {
  display: block;
  padding: 20px 18px;
  border-radius: 14px;
  background: #ffffff;
  text-align: center;
  text-decoration: none;
  color: #222;
  box-shadow: 0 6px 18px rgba(0,0,0,0.06);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.archive-card a:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 26px rgba(0,0,0,0.10);
}


.archive-card time {
  display: block;
  font-size: 14px;
  letter-spacing: 0.08em;
  color: #888;
  margin-bottom: 14px;
}


.archive-card .zodiac {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}

.archive-card .zodiac img {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.archive-card .zodiac span {
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.pagination {
  margin: 40px auto 0;
  text-align: center;
}

.pagination ul {
  display: inline-flex;
  gap: 10px;
  padding: 0;
  list-style: none;
}

.pagination a,
.pagination .current {
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 14px;
  text-decoration: none;
}

.pagination a {
  background: #fff;
  color: #333;
  box-shadow: 0 4px 10px rgba(0,0,0,.08);
}

.pagination .current {
  background: #333;
  color: #fff;
}




.menu-btn {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 32px;
  height: 24px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.menu-btn span {
  display: block;
  height: 2px;
  background: #fff;
  margin: 6px 0;
}


.menu {
  position: fixed;
  top: 56px;
  right: 16px;
  width: 280px;
  max-height: 75vh;
  overflow-y: auto;

  background: #ffffff;
  border: 1px solid #e5e7eb;
  border-radius: 10px;
  padding: 8px 0;
  display: none;
  z-index: 1000;
}

.menu.open {
  display: block;
}


.menu-main {
  list-style: none;
  margin: 0;
  padding: 0;
}


.menu .section {
  padding: 10px 16px;
  font-size: 12px;
  font-weight: bold;
  color: #374151;
  background: #f9fafb;
  border-top: 1px solid #e5e7eb;
}

.menu .section:first-child {
  border-top: none;
}


.menu a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  color: #111827;
  text-decoration: none;
  border-top: 1px solid #f1f5f9;
}

.menu a:hover {
  background: #f3f4f6;
}



