/* タイトル全体の装飾 */
.title {
  background-color: #1e293b;
  /* 深みのあるスレートネイビー */
  color: #f8fafc;
  /* ほぼ白に近いグレーで目に優しく */
  padding: 2rem 2.5rem;
  border-left: 8px solid #6d0e1d;
  /* 左側にアクセントライン */
  border-radius: 0px;
  /* あえて角を立ててシャープに */
  box-shadow: none;
  /* 影を消してフラットデザインへ */
  margin-top: 30px;
  letter-spacing: 0.05em;
  /* 文字間隔を少し広げて高級感を */
  line-height: 1.2;
}

/* 著者名と日付もあわせてデザイン */
.author,
.date {
  font-size: 1.1em;
  color: #7f8c8d;
  font-style: normal;
}

.quarto-title-meta {
  display: block !important;
}

.quarto-title-meta-heading {
  margin-top: 1rem;
  font-weight: bold;
}

.quarto-title-meta-contents {
  width: 100%;
}

.quarto-title-meta-contents p {
  word-break: keep-all;
  overflow-wrap: normal;
}

/* Macの日本語豆腐対策とフォント設定 */
body {
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", sans-serif;
}

/* 見出しのデザインカスタマイズ */
h1 {
  color: #2c3e50;
  border-bottom: 3px solid #2c3e50;
  padding-bottom: 10px;
}

h2 {
  color: #2980b9;
  border-left: 8px solid #2980b9;
  padding-left: 15px;
  background: #f4f7f9;
}

pre code,
pre,
code {
  white-space: pre-wrap !important;
  word-break: break-all !important;
}

.mission-card {
  padding: 1.5em;
  margin: 1em 0;
  border-left: 5px solid #2c3e50;
  background: linear-gradient(135deg, #fdfbfb 0%, #ebedee 100%);
  border-radius: 0 10px 10px 0;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  color: #333;
}

.mission-title {
  color: #e74c3c;
  font-weight: bold;
  font-size: 1.1em;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}

.mission-title::before {
  content: "🚩";
  /* アイコンはお好みで */
  margin-right: 10px;
}