.goth-title {
  font-family: 'Cinzel', serif;
  font-size: 2.5rem;
  color:#786d63 ;
  text-shadow: 2px 2px 4px #2e2e2e;
  border-bottom: 2px solid #444;
  padding-bottom: 0.2em;
  margin-bottom: 1em;
  letter-spacing: 2px;
}

.goth-text {
  font-family: 'UnifrakturCook', cursive;
  color: #a89f91;
  font-size: 1.2rem;
  background-color: rgba(240, 240, 240, 0.05);
  border-left: 4px double #8caacc;
  padding: 1em;
  margin: 1em auto;
  width: 70%;
  box-shadow: 0 0 8px rgba(50, 50, 50, 0.3);
}

/* サイドバー全体 */
aside {
  position: fixed;
  top: 0;
  left: 0;
  width: 220px;
  height: 100vh;
  background-color: #e0dcd5; /* 落ち着いた茶系グレートーン */
  color: #4a3e3e;
  padding: 1em;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.2);
  text-align: center;
}

/* サイドバー内の画像やテキスト */
aside img {
  width: 100%;
  border-radius: 10px;
  margin-bottom: 1em;
}

aside .name {
  font-weight: bold;
  margin-bottom: 1em;
}

aside .menu {
  font-size: 1.2rem;
  margin-bottom: 0.5em;
  border-bottom: 1px solid #999;
  padding-bottom: 0.5em;
}

/* メニューのリンク */
aside ul {
  list-style: none;
  padding: 0;
}

aside ul li {
  margin: 0.5em 0;
}

aside ul li a {
  text-decoration: none;
  color: #4a3e3e;
  font-weight: bold;
  transition: all 0.3s ease;
}

aside ul li a:hover {
  color: #786d63;
  text-shadow: 1px 1px #fff;
}


main {
  margin-left: 240px; /* サイドバーより少し広めにとる */
  padding: 2em;
}


body {
  margin: 0;
  background-color: ivory;

  
  background-image:
    repeating-linear-gradient(
      to right,
      aliceblue,
      aliceblue 40px,
      ivory 40px,
      ivory 80px
    );

}

/* ===== モバイル画面（幅768px以下）のときの見た目 ===== */
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
    padding: 1rem;
  }

  .goth-title {
    font-size: 1.6rem;
    line-height: 1.3;
  }

  .blog-list li {
    font-size: 1rem;
    padding: 0.5rem 0;
  }

  .header,
  .logo,
  .うさぎ {
    max-width: 90%;
    height: auto;
  }

  aside {
    display: none; /* スマホではサイドバー非表示（必要なら） */
  }

  nav ul {
    padding: 0;
    text-align: center;
  }

  /* ブログ記事中の画像がはみ出ないように */
  img {
    max-width: 100%;
    height: auto;
  }
}

