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

.konntent h1,
h2 {
  color: #b80000;
}

.konntent img {
  max-width: 100px;
}

nav-gert {
  display: flex;
  justify-content: space-between;
  align-items: center;
  top: 5px;
}
/* メインコンテンツラッパー */
.wrapper {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  padding-left: 3cm;
}
h1 {
  font-size: 1.5em;
}

h2 {
  color: #000;
}

a {
  font-weight: bold;
  color: #000;
}
/* キャラの写真 */
.character-image {
  display: block;
  width: 180px;
  height: auto;
  margin: 20px auto;
  border-radius: 8px;
  box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

.separator-line {
  border: none;
  border-top: 2px solid #ddd;
  margin: 20px auto;
  width: 90%;
  position: relative;
}

#strengthChart {
  display: block;
  margin: 0 auto;
  max-width: 300px; /* グラフの最大幅を300pxに設定 */
  max-height: 300px; /* グラフの最大高さを300pxに設定 */
  background-color: #fff; /* 背景を白に */
  border-radius: 50%; /* 丸い枠で包む */
  padding: 10px; /* パディングで余白を追加 */
  box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.1); /* 軽い影をつけて立体感 */
  opacity: 0.9; /* 透明度を少し加える */
  transition: all 0.5s ease; /* アニメーションの動きをスムーズに */
}

.section {
  margin-bottom: 30px;
  padding: 15px;
  background: #f9f2ec;
  border-left: 5px solid #ffa07a;
  border-radius: 5px;
}

.highlight {
  background: #ffe0e0;
  padding: 8px;
  margin: 10px 0;
  border-left: 4px solid #ff4d4d;
  font-weight: bold;
}
@media (max-width: 1210px) {
  body {
    line-height: 1.4;
  }

  .wrapper {
    flex-direction: column; /* レイアウトを縦方向に */
    padding-left: 2cm;
  }
}

/* スマホ対応のレスポンシブデザイン */
@media (max-width: 768px) {
  .wrapper {
    padding-left: 1cm;
    padding-right: 1cm;
  }
}
