body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
  margin: 0;
  padding: 0;
  background-color: #fff;
  color: #333;
  min-height: 100vh;
  line-height: 1.6;
}

/* メインコンテンツラッパー */
.wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-left: 20px;
}

.main-img {
  width: 85%;
  display: block;
  margin: 0 auto;
}

.konntent {
  flex: 7; /* メインコンテンツは画面の7割 */
}

h1 {
  font-size: 1.5em;
}

h2 {
  color: #000;
}

a {
  font-weight: bold;
  color: #000;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
}

.timeline {
  position: relative;
  padding: 20px 0;
}

.timeline::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 4px;
  height: 100%;
  background: linear-gradient(180deg, #d4af37 0%, #b8932e 100%);
}

.event-card {
  position: relative;
  margin: 40px 0;
  padding: 30px;
  background: #fff;
  border-radius: 15px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.event-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 8px 30px rgba(212, 175, 55, 0.3);
  border-color: #d4af37;
}

.date-badge {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37 0%, #b8932e 100%);
  color: #fff;
  padding: 8px 20px;
  border-radius: 20px;
  font-weight: bold;
  margin-bottom: 15px;
  font-size: 1.1em;
  box-shadow: 0 2px 8px rgba(212, 175, 55, 0.3);
}

.event-title {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #2c3e50;
  border-bottom: 3px solid #d4af37;
  padding-bottom: 10px;
}

.event-section {
  margin: 20px 0;
}

.event-section h3 {
  color: #34495e;
  font-size: 1.3em;
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.event-section h3::before {
  content: "◆";
  color: #d4af37;
}

.item-list {
  background: #f8f9fa;
  padding: 15px 20px;
  border-radius: 10px;
  margin: 10px 0;
  border-left: 4px solid #d4af37;
}

.item {
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
  color: #555;
}

.item:last-child {
  border-bottom: none;
}

.rarity-ur {
  color: #e74c3c;
  font-weight: bold;
}

.rarity-ssr {
  color: #f39c12;
  font-weight: bold;
}

.rarity-sr {
  color: #3498db;
  font-weight: bold;
}

.rarity-lr {
  color: #9b59b6;
  font-weight: bold;
  text-shadow: 0 0 5px rgba(155, 89, 182, 0.3);
}

.price-tag {
  display: inline-block;
  background: #fff3cd;
  color: #856404;
  padding: 5px 15px;
  border-radius: 15px;
  margin-top: 10px;
  border: 2px solid #ffc107;
  font-weight: bold;
}

.highlight-box {
  background: linear-gradient(135deg, #fff9e6 0%, #fff3cd 100%);
  border: 3px solid #d4af37;
  padding: 25px;
  margin: 20px 0;
  border-radius: 10px;
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}

.new-character-spotlight {
  background: linear-gradient(135deg, #ff6b6b 0%, #ee5a6f 100%);
  border: 4px solid #c92a2a;
  padding: 30px;
  margin: 25px 0;
  border-radius: 15px;
  box-shadow: 0 8px 30px rgba(201, 42, 42, 0.4);
  position: relative;
  overflow: hidden;
}

.new-character-spotlight::before {
  content: "🆕 NEW CHARACTER";
  position: absolute;
  top: 10px;
  right: -30px;
  background: #fff;
  color: #c92a2a;
  padding: 5px 40px;
  transform: rotate(45deg);
  font-weight: bold;
  font-size: 0.8em;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.new-character-spotlight h3 {
  color: #fff;
  font-size: 2em;
  margin-bottom: 15px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.new-character-spotlight h3::before {
  content: "🎭";
  margin-right: 10px;
}

.new-character-spotlight .item-list {
  background: rgba(255, 255, 255, 0.95);
  border-left: 4px solid #c92a2a;
}

.new-character-spotlight .character-description {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 10px;
  margin-top: 15px;
  color: #fff;
  font-size: 1.1em;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.character-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  margin: 20px 0;
}

.character-card {
  background: #f8f9fa;
  padding: 20px;
  border-radius: 10px;
  border: 2px solid #d4af37;
  text-align: center;
  transition: all 0.3s ease;
  font-weight: bold;
  color: #2c3e50;
}

.character-card:hover {
  background: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.note {
  background: #fff3cd;
  border-left: 4px solid #ffc107;
  padding: 15px;
  margin: 15px 0;
  border-radius: 5px;
  font-size: 0.95em;
  color: #856404;
}

.sabu-img {
  width: 70%;
  display: block;
  margin: 0 auto;
}

@media (max-width: 1210px) {
  body {
    line-height: 1.4;
  }
}

@media (max-width: 768px) {
  .timeline::before {
    left: 20px;
  }

  .wrapper {
    flex-direction: column; /* レイアウトを縦方向に */
    padding-left: 0cm;
  }

  .event-card {
    padding: 20px;
  }

  .character-grid {
    grid-template-columns: 1fr;
  }
}
