body {
  font-family: Arial, sans-serif;
  line-height: 1.6;
  margin: 0;
  padding: 0;
  margin: auto;
  color: #333;
}

/* メインコンテンツラッパー */
.wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-left: 0.5cm;
}

.konntent {
  max-width: 1000px;
}

h1 {
  text-align: center;
  font-size: 2em;
  margin-bottom: 50px;
  color: #e94560;
}

.h1-img {
  padding-top: 50px;
  display: block;
  margin: 0 auto;
  width: 800px; /* ← 好きなサイズに調整 */
  max-width: 90%; /* スマホ対応 */
  height: auto;
}

h2 {
  color: #000;
}

.section-title {
  font-size: 2em;
  margin: 60px 0 30px;
  color: #2c3e50;
  border-left: 5px solid #e94560;
  padding-left: 15px;
}

.section-title.survivor {
  color: #2980b9;
  border-left-color: #3498db;
}

.section-title.hunter {
  color: #c0392b;
  border-left-color: #e74c3c;
}

.persona-card {
  background: #f8f9fa;
  border-radius: 15px;
  padding: 25px;
  margin-bottom: 35px;
  border: 2px solid #e0e0e0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.persona-card.survivor {
  border-color: #3498db;
}

.persona-card.hunter {
  border-color: #e74c3c;
}

.persona-header {
  margin-bottom: 25px;
}

.persona-name {
  font-size: 1.8em;
  color: #e94560;
  margin-bottom: 10px;
}

.persona-card.survivor .persona-name {
  color: #2980b9;
}

.persona-card.hunter .persona-name {
  color: #c0392b;
}

.persona-effect {
  font-size: 1em;
  color: #666;
  background: #fff;
  padding: 10px 13px;
  border-radius: 8px;
  margin-bottom: 13px;
  border-left: 3px solid #f39c12;
  font-weight: 500;
}

.persona-description {
  font-size: 1.1em;
  line-height: 1.6;
  color: #555;
  margin-bottom: 15px;
}

.persona-points {
  font-size: 0.95em;
  color: #f39c12;
  font-weight: bold;
}

.survivors-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  justify-content: center;
  margin-top: 20px;
}

.survivor-img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 10px;
  border: 3px solid #e94560;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.persona-card.survivor .survivor-img {
  border-color: #3498db;
}

.persona-card.hunter .survivor-img {
  border-color: #e74c3c;
}

.persona-icon {
  width: 150px;
  height: 150px;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: #fff;
  font-weight: bold;
}

.persona-icon.survivor {
  background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.persona-icon.hunter {
  background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.survivor-img:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(233, 69, 96, 0.6);
}

.persona-card.survivor .survivor-img:hover {
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
}

.persona-card.hunter .survivor-img:hover {
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
}

.survivor-text-item {
  width: 150px;
  height: 150px;
  border-radius: 10px;
  border: 3px solid #e94560;
  background: #f8f9fa;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-size: 0.9em;
  color: #555;
  font-weight: 500;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  cursor: pointer;
}

.persona-card.survivor .survivor-text-item {
  border-color: #3498db;
}

.persona-card.hunter .survivor-text-item {
  border-color: #e74c3c;
}

.survivor-text-item:hover {
  transform: scale(1.1);
  box-shadow: 0 0 20px rgba(233, 69, 96, 0.6);
}

.persona-card.survivor .survivor-text-item:hover {
  box-shadow: 0 0 20px rgba(52, 152, 219, 0.6);
}

.persona-card.hunter .survivor-text-item:hover {
  box-shadow: 0 0 20px rgba(231, 76, 60, 0.6);
}

.icon-wrapper {
  display: flex;
  align-items: center;
}

.page-introduction {
  background: linear-gradient(135deg, #667eea15 0%, #764ba215 100%);
  border-radius: 15px;
  padding: 30px;
  margin-bottom: 50px;
  border: 2px solid #e0e0e0;
}

.intro-text {
  font-size: 1.15em;
  line-height: 1.8;
  color: #2c3e50;
  text-align: center;
  margin-bottom: 25px;
  font-weight: 500;
}

.excluded-personas {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  margin-top: 20px;
}

.excluded-section {
  background: #fff;
  padding: 20px;
  border-radius: 10px;
  border-left: 4px solid #f39c12;
}

.excluded-section h4 {
  font-size: 1.1em;
  color: #e94560;
  margin-bottom: 10px;
  font-weight: 600;
}

.excluded-section p {
  font-size: 0.95em;
  color: #666;
  line-height: 1.6;
}

@media (max-width: 1210px) {
  .wrapper {
    flex-direction: column; /* レイアウトを縦方向に */
    padding-left: 1cm;
    padding-right: 1cm;
  }
}

@media (max-width: 768px) {
  h1 {
    font-size: 1.8em;
  }

  .section-title {
    font-size: 1.5em;
  }

  .survivor-img {
    width: 100px;
    height: 100px;
  }

  .survivor-text-item {
    width: 100px;
    height: 100px;
    font-size: 0.4em;
  }

  .survivor-img.large {
    width: 130px;
    height: 130px;
  }

  .survivor-img.small {
    width: 80px;
    height: 80px;
  }
  .page-introduction {
    padding: 20px;
  }

  .intro-text {
    font-size: 1em;
  }

  .excluded-personas {
    grid-template-columns: 1fr;
  }
}
