/* フォント */
body, .logo__title, .logo__tagline {
  font-family: 'M PLUS Rounded 1c', sans-serif;
}

/* 背景色・本文色 */
body {
  background-color: #faf6f0;
  color: #3d3535;
}

/* アクセントカラー（リンク） */
a {
  color: #9075c2;
}

a:hover {
  color: #6b4fa0;
}

/* ロゴリンク */
.logo a {
  color: #9075c2;
}

/* タイトルを小文字・細身に */
.logo__title {
  text-transform: none;
  font-weight: 300;
}

/* ヘッダー背景 */
.header {
  background-color: #f3eeff;
}

/* タイトルとサブタイトルを横並びに */
.logo__text {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__tagline {
  font-size: 0.85rem;
  opacity: 0.75;
  margin: 0;
}

/* サイドバー背景 */
.sidebar {
  background: #ffffff;
  border-left: 3px solid #d4c8e8;
}

/* コンテンツカードをシャドウに */
.block {
  border: none !important;
  box-shadow: 0 2px 8px rgba(144, 117, 194, 0.12);
  border-radius: 6px;
}

/* フッター背景 */
.footer {
  background-color: #6b4fa0 !important;
  color: #f0ecf8 !important;
}

.footer a {
  color: #d4c8e8 !important;
}
