body {
    margin: 0;
    font-family: system-ui, sans-serif;
    background: #f7f3e8;
    color: #222;
  }
  
  .hero,
  main {
    max-width: 960px;
    margin: auto;
    padding: 24px;
  }
  
  .eyebrow {
    color: #2f6f4e;
    font-weight: bold;
  }
  
  .card {
    background: white;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 4px 12px #0002;
  }
  
  .category {
    color: #2f6f4e;
    font-weight: bold;
  }

  .cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
  }
  
  .card a {
    color: #2f6f4e;
    font-weight: bold;
  }

  .controls {
  background: #fffaf0;
  border: 1px solid #eadfca;
  border-radius: 16px;
  padding: 16px;
  margin-bottom: 16px;
}

.controls label {
  display: grid;
  gap: 8px;
  font-weight: bold;
}

input {
  font: inherit;
  padding: 10px 12px;
  border: 1px solid #aaa;
  border-radius: 10px;
}

.buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

button {
  padding: 8px 14px;
  border: 1px solid #888;
  border-radius: 999px;
  background: white;
  cursor: pointer;
}

button.active {
  background: #2f6f4e;
  color: white;
}

.card {
  overflow: hidden;
}

.card img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  background: #ddd;
}

.card-body {
  padding: 16px;
}

.empty {
  background: white;
  border-radius: 16px;
  padding: 20px;
}

.controls {
    background: #fffaf0;
    border: 1px solid #eadfca;
    border-radius: 16px;
    padding: 16px;
    margin-bottom: 16px;
  }
  
  .controls label {
    display: grid;
    gap: 8px;
    font-weight: bold;
  }
  
  input {
    font: inherit;
    padding: 10px 12px;
    border: 1px solid #aaa;
    border-radius: 10px;
  }
  
  .buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
  }
  
  button {
    padding: 8px 14px;
    border: 1px solid #888;
    border-radius: 999px;
    background: white;
    cursor: pointer;
  }
  
  button.active {
    background: #2f6f4e;
    color: white;
  }
  
  .card {
    overflow: hidden;
  }
  
  .card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    background: #ddd;
  }
  
  .card-body {
    padding: 16px;
  }
  
  .empty {
    background: white;
    border-radius: 16px;
    padding: 20px;
  }

  .links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 12px;
  }
  
  .links a {
    display: inline-block;
    color: #2f6f4e;
    background: #edf7f1;
    border-radius: 999px;
    padding: 8px 12px;
    text-decoration: none;
    font-weight: bold;
  }

  /* バッジ（無料など） */
  .badge {
    display: inline-block;
    color: white;
    background: #d0702f;
    border-radius: 999px;
    padding: 4px 10px;
    font-weight: bold;
    margin-right: 8px;
    font-size: 0.9em;
  }

  /* 春に行きたいスポットを目立たせる */
  .card--spring {
    box-shadow: 0 6px 18px rgba(48, 120, 72, 0.12);
    border-left: 6px solid #ffd7b5;
  }

  /* 食事スポットだけ背景色を変える */
  .card--dining {
    background: linear-gradient(180deg, #fffaf6 0%, #fff6f0 100%);
  }

  /* 画像がないときのプレースホルダー */
  .photo-placeholder {
    width: 100%;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(180deg, #f0f0f0, #e8e8e8);
    color: #666;
    font-weight: bold;
  }

  .features {
    margin-top: 8px;
    color: #4a4a4a;
  }

  .menu ul {
    margin: 6px 0 0 18px;
  }

  .menu li {
    margin-bottom: 4px;
  }

/* お気に入りボタン */
.fav-btn {
  border: 0;
  background: transparent;
  font-size: 1.1rem;
  margin-left: 6px;
  cursor: pointer;
  color: #c0c0c0;
}
.fav-btn.fav--active {
  color: #e23b3b;
}

/* テーマバッジ */
.theme-badge {
  display: inline-block;
  background: #ffe9d6;
  color: #6a3b00;
  border-radius: 8px;
  padding: 4px 8px;
  font-size: 0.8rem;
  margin-left: 8px;
}

/* テーマコントロール */
.theme-controls {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 12px;
}
/* .actions ボタンは削除済み */

/* レスポンシブ調整（スマホ優先） */
@media (max-width: 600px) {
  .hero, main { padding: 12px; }
  .card img, .photo-placeholder { height: 140px; }
  .controls label { font-size: 0.95rem; }
  .buttons { gap: 6px; }
}

/* 印刷用スタイル */
@media print {
  body { background: white; color: #000; }
  .controls, .buttons, .theme-controls, .actions, header { display: none !important; }
  .hero, main { max-width: 100%; margin: 0; padding: 0; }
  .cards { grid-template-columns: 1fr !important; gap: 8px; }
  .card { page-break-inside: avoid; border-radius: 6px; box-shadow: none; }
}