html, body {
  margin: 0;
  height: 100%;
  padding: 0;
}

body {
  min-height: 100vh;
  background-color: #07112d;
  background-image: url("/images/topimage.webp");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;

/* 文字サイズの指定（PC基準） */
  font-size: 18px;
  font-family: "Noto Serif JP", serif;
  letter-spacing: 0.1em;
  color: #ffffff;

}

/* 文字サイズの指定（スマホ用） */
@media (max-width: 640px){
  body{
    font-size: 16px; /* 例：スマホは少し小さめに */
    background-attachment: scroll;
  }
}

.site-title {
  margin: 0;
  padding-top: 30px; /* 余白 */
  font-size: clamp(2.2rem, 5vw, 4rem);
  text-align: center;
  font-weight: 500;

}

.sub-title{
  margin: 0;
  padding-top: 10px; /* 余白 */
  font-size:0.9em;
  text-align: center;
  font-weight: 400;
}


.top-link{
  margin: 0;
  padding-top: 30px; /* 余白 */
  font-size:1.4em;
  text-align: center;
  font-weight: 400;
}


.top-message{
  margin: 0;
  padding-top: 30px; /* 余白 */
  font-size:1.0em;
  text-align: center;
  font-weight: 400;
}

.privacy-policy{
  margin: 0;
  padding-top: 30px; /* 余白 */
  font-size:1.0em;
  text-align: center;
  font-weight: 400;
}

.post-meta{
  margin: 0;
  padding-top: 1px; /* 余白 */
  padding-right: 15px; /* 余白 */
  padding-bottom: 30px; /* 余白 */
  font-size:1.0em;
  text-align: right;
  font-weight: 400;

}


.textbackground {
  display: inline-block;
  background-color: rgba(7, 17, 45, 0.7);
  backdrop-filter: blur(6px);
  padding: 8px 16px;
  border-radius: 6px;
  color: #fff;
}

.top-page a:link,
.top-page a:visited {
  color: #80ffff; /* リンクのテキストカラー */
}

.top-page a:hover {
  color: #86d2c3;
  text-decoration: underline;
}
