@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  padding: 1rem;
}

img {
  width: 75%;
  height: auto;
}

h1 {
  text-align: center;
  margin-bottom: 1rem;
}

.tab-container {
  max-width: 600px;
  margin: auto;
}

.tab-buttons {
  list-style: none;
  padding: 0;
  display: flex;
  border-bottom: 2px solid #ddd;
}

.tab-button {
  padding: 0.5rem 1rem;
  margin-right: 0.25rem;
  cursor: pointer;
  border-top-right-radius: 0.5rem;
  border-top-left-radius: 0.5rem;
  background-color: #f0f0f0;
  position: relative;
  z-index: 2;
  border: 2px solid transparent;
  border-bottom: none;
}

.tab-button.active {
  background-color: #fff;
  border: 2px solid #ddd;
  border-bottom: none;
  margin-bottom: -2px;
}

/* idごとに色分け */
.tab-button[data-id="news"].active {
  color: #1976d2;
  border-color: #1976d2;
}
.tab-button[data-id="popular"].active {
  color: #d32f2f;
  border-color: #d32f2f;
}
.tab-button[data-id="lost"].active {
  color: #d3cd2f;
  border-color: #d3cd2f;
}
.tab-button[data-id="category"].active {
  color: #388e3c;
  border-color: #388e3c;
}

.tab-content {
  display: none;
  padding: 1rem;
  border: 2px solid #ddd;
  border-top: none;
  min-height: 200px;
  border-bottom-right-radius: 0.5rem;
  border-bottom-left-radius: 0.5rem;
  position: relative;
  z-index: 1;
}

.tab-content.active {
  display: block;
}

/* タブの中身もidごとに色分け */
.tab-content#news.active {
  background-color: #e3f2fd;
    border-color: #1976d2;
    border-top: 2px solid #1976d2;
}
.tab-content#popular.active {
  background-color: #ffebee;
    border-color: #d32f2f;
    border-top: 2px solid #d32f2f;
}
.tab-content#lost.active {
  background-color: #fffeeb;
  border-color: #d3cd2f;
  border-top: 2px solid  #d3cd2f;
}
.tab-content#category.active {
  background-color: #e8f5e9;
    border-color: #388e3c;
    border-top: 2px solid #388e3c;
}

footer {
  text-align: center;
  margin-top: 2rem;
  padding: 1rem 0;
}