/* ファンタジー風ブログデザイン with CSS Variables */
@charset "UTF-8";

/* カラー定義 */
:root {
  --background-color: #1a1a1a;
  --text-color: #e0d8c0;
  --primary-color: #a88c56;
  --secondary-color: #735f3d;
  --hover-color: #c2a06f;
  --highlight-color: #2e2a24;
  --border-color: #c0a370;
  --shadow-color: rgba(0, 0, 0, 0.5);
  --entry-title-bg: #3e2c1a; /* 文字と被らない背景色 */
  --code-bg-light: #2a2822;
  --code-bg-dark: #1e1c18;
  --code-text: #e0d8c0;
  --code-border: #c0a370;
  --code-line-numbers: #a88c56;
  --code-lang-bg: #735f3d;
  --code-lang-text: rgba(224, 216, 192, 0.6); /* うっすら表示するための色 */
  --toc-bg: #2e2a24;
  --toc-border: #c0a370;
}

/* 全体の背景をダークなファンタジー風に */
body {
  font-family: "Cinzel", "Garamond", serif;
  background-color: var(--background-color);
  color: var(--text-color);
  line-height: 1.8;
  margin: 0 2em;
}

/* リンクのスタイル */
a {
  color: var(--primary-color);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
a:hover {
  color: var(--hover-color);
  text-decoration: underline;
}
a.keyword {
  text-decoration: none;
  border-bottom: 0.1em dotted var(--border-color);
  color: var(--text-color);
}

/* 見出しのデザイン（左揃え） */
.entry h1, h2, h3, h4, h5, h6 {
  font-family: "Cinzel", serif;
  color: var(--hover-color);
  padding-bottom: 0.3em;
  text-align: left;
}
.entry h1 {
  font-size: 1.5em;
  background: var(--secondary-color);
  padding: 0.5em;
  border-radius: 0.3em;
  color: white;
  text-shadow: 2px 2px 6px var(--shadow-color);
  border: 0.2em solid var(--border-color);
}
.entry h2 {
  font-size: 1.3em;
  border-left: 0.5em solid var(--primary-color);
  padding-left: 0.5em;
  background: var(--highlight-color);
  border-radius: 0.2em;
}
.entry h3 {
  font-size: 1.0em;
  border-bottom: 0.2em dotted var(--border-color);
}

h1:not(.entry h1), h2:not(.entry h2), h3:not(.entry h3),
h4:not(.entry h4), h5:not(.entry h5), h6:not(.entry h6) {
  font-family: "Cinzel Decorative", serif;
  text-align: center;
  color: var(--primary-color);
  text-shadow: 3px 3px 6px var(--shadow-color);
  letter-spacing: 0.1em;
}
#title {
  font-size: 2.2em;
}
#blog-description {
  font-size: 1.0em;
}

/* 目次のデザイン */
.entry-content .table-of-contents {
  background: var(--toc-bg);
  padding: 1em 1em 1em 2em;
  margin: 1em 0;
  border: 0.2em solid var(--toc-border);
  border-radius: 0.5em;
  box-shadow: 0 0.2em 0.5em var(--shadow-color);
}

/* 記事のデザイン */
.entry {
  background: var(--highlight-color);
  padding: 1.5em;
  border-radius: 0.8em;
  box-shadow: 0 0.2em 0.5em var(--shadow-color);
  margin: 2em auto;
  max-width: 70%; /* 画面の70%の幅に設定 */
  min-width: 20em; /* スマホでも崩れないように最小幅を指定 */
  border: 0.2em solid var(--border-color);
}

@media (max-width: 768px) {
  .entry {
    max-width: 100%; /* スマホでは幅を100%に */
  }
}

/* 記事タイトル */
h1.entry-title {
  background: var(--entry-title-bg);
  padding: 0.5em;
  border-radius: 0.6em;
  text-align: left;
  color: var(--text-color);
  font-size: 2.0em;
  font-weight: bold;
  box-shadow: 0 0.3em 0.5em var(--shadow-color);
  border: 0.3em double var(--primary-color);
  position: relative;
}

/* コードブロックのデザイン */
.entry-content pre,
.entry-content code {
  font-family: "Monaco", "Consolas", "Courier New", Courier, monospace, sans-serif;
}
.entry-content pre {
  background: var(--code-bg-light);
  border: 0.2em solid var(--code-border);
  border-radius: 0.5em;
  max-width: 70%;
  position: relative;
  margin: 1.5em auto;
  white-space: pre-wrap;
  word-wrap: break-word;
  text-overflow: ellipsis;
  line-height: 1.3em;
  font-size: 0.8rem;
  padding: 10px;
}
.entry-content pre > code {
  margin: 0;
  padding: 0;
  white-space: pre;
  border: none;
  background-color: transparent;
  font-family: "Monaco", "Consolas", "Courier New", Courier, monospace, sans-serif;
}
.entry-content code {
  margin: 0 2px;
  padding: 0px 5px;
  background-color: var(--code-bg-light);
  border-radius: 3px;
}

/* 行番号付きのコード */
.code-line {
  counter-increment: linenumber;
}

.code-line:last-child:empty {
  display: none;
}

.code-line:nth-child(odd) {
  background-color: var(--code-bg-dark);
}

.code-line:nth-child(even) {
  background-color: var(--code-bg-light);
}

.code-line::before {
  content: counter(linenumber);
  display: inline-block;
  color: var(--code-line-numbers);
  text-align: right;
  width: 2.5em;
  padding-right: 1em;
  font-weight: bold;
  flex-shrink: 0;
  white-space: nowrap;
}

/* コードブロックの言語表示（右上にうっすら表示） */
pre.code-lang::before {
  content: attr(data-lang);
  display: inline-block;
  color: var(--code-lang-text);
  font-size: 0.85em;
  font-weight: bold;
  position: absolute;
  top: 0.5em;
  right: 1em;
  text-transform: uppercase;
}

/* ボタンデザイン */
button, .button {
  display: inline-block;
  background: var(--primary-color);
  color: white;
  padding: 0.8em 1.2em;
  border-radius: 1em;
  border: 0.2em solid var(--border-color);
  cursor: pointer;
  transition: 0.3s;
  font-family: "Cinzel", serif;
}
button:hover, .button:hover {
  background: var(--hover-color);
}

/* コメントのデザイン */
.comment-box {
  background: var(--highlight-color);
  padding: 1em;
  border-radius: 0.5em;
  margin-top: 1.5em;
  border: 0.2em solid var(--border-color);
}
.comment-box .comment {
  padding: 0.8em;
  border-bottom: 0.1em dashed var(--primary-color);
}
.comment-box .comment:last-child {
  border-bottom: none;
}

blockquote p {
    position: relative;
    padding: 10px 15px;
    background: rgba(20, 20, 20, 0.9);
    color: #d4af37;
    font-size: 18px;
    border-radius: 8px;
    margin: 10px 0;
}

blockquote p::before, blockquote p::after {
    content: "";
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    background: linear-gradient(45deg, #5a4327, #8b6f47, #5a4327);
    z-index: -1;
    border-radius: 10px;
}

blockquote p::after {
    filter: blur(3px);
}

/* フッターのデザイン */
#footer {
  text-align: center;
  background: var(--primary-color);
  color: white;
  padding: 1em;
  font-size: 0.9em;
  border-top: 0.2em solid var(--border-color);
}
#footer a {
  color: white;
}

/* サイドバーのデザイン */
.hatena-module {
  background: var(--highlight-color);
  padding: 1em;
  border-radius: 0.5em;
  margin-bottom: 1.5em;
  box-shadow: 0 0.2em 0.5em var(--shadow-color);
  border: 0.2em solid var(--border-color);
}
.hatena-module-title {
  font-size: 1.2em;
  color: var(--primary-color);
  border-bottom: 0.2em solid var(--border-color);
  padding-bottom: 0.5em;
}
