
.wdxl-lubrifont-sc-regular {
  font-family: "WDXL Lubrifont SC", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/* 全体背景 */
body {
  background: url('sozai/back2.png') no-repeat center center fixed;
  background-size: 100%;
  margin: 0;
  padding: 0;
  font-family: "WDXL Lubrifont SC", sans-serif;
  color: #f0f0f0;
  height: 100vh;
  min-height: 100vh;
  box-sizing: border-box;
  max-width: 100%;



body img {
  max-width: 100%;
  height: auto;
}



/* 左上メニュー */
.sidebar {
  position: fixed;
  top: 0;
  left: 0;
  width: 250px;
  height: 70vh;
  background-color: rgba(255, 255, 255, 0.55);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 20px;
  z-index: 1000;
  font-size: 30px;
  margin: 2px 0;
  }

.sidebar img {
  width: 70px;
  margin: 30px 0;
}

/* メインコンテンツ */
.main-area {
  margin-left: 70px; /* sidebarの幅と同じに */
  padding: 10px;
  background-color: transparent;
  top: 20px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* 中央揃え用のコンテナを追加 */
.center-content {
  width: 100%;              /* もしくは max-width: 800px; とか */
  max-width: 800px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* TOP画像 */
.top-image {
 width: 40%;
  max-height: 500px;

  object-fit: cover;
  margin-bottom: 20px;
  align-items: center;

}

/* 差分（右上固定） */
.diff-box {
  position: absolute;
  top: 20px;
  right: 10px;
  text-align: center;
  z-index: 1001;
  padding: 5px;
  border-radius: 10px;
}

.diff-box img {
  width: 200px;
  cursor: pointer;
}

.diff-box p {
  margin-top: 5px;
  font-size: 14px;
}

/* 追加画像 */
.image-set img {
   
  position: absolute;
  top: 300px;
   right: 80px;

  padding: 5px;
  border-radius: 10px;
  width: 300px;
  margin: 1px;
  cursor: pointer;
  flex-direction: column;
  filter: drop-shadow(0 0 0 white) 
          drop-shadow(3px 0 0 white)
          drop-shadow(-3px 0 0 white)
          drop-shadow(0 3px 0 white)
          drop-shadow(0 -3px 0 white)
 
}

.image-set2 img  {
 position: absolute;
  top: 600px;
   right: 80px;
   padding: 5px;
  width: 250px;
  margin: 1px;
  cursor: pointer;
  flex-direction: column;
 filter: none;
}
/* 中央寄せテキスト */
.intro{
   text-align: center;
  color: white;
  text-shadow:
    -2px -2px 0 black,
     2px -2px 0 black,
    -2px  2px 0 black,
     2px  2px 0 black;

  position: relative;

  font-size: 1rem;
}



.update-log {
  position: fixed;
  top: 600px;
 left: 5px;
  width: 200px;
  height: 150px;            /* 必須！ */
  overflow-y: scroll;       /* 必須！ */
  padding: 10px;
  margin: 5px;
  background: black;      /* 背景 */
  border: 1px solid #aaa;   /* 枠線 */
  border-radius: 10px;
  color: white;
  cursor: pointer;
text-align:center;

}

.update-log::-webkit-scrollbar {
  width: 8px;

}
.update-log::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 8px;
}
.update-log::-webkit-scrollbar-track {
  background: #eee;
}
.update-log ul {
  padding: 0;
  margin: 30;
  list-style: none;
  text-align: center; /* ここでも明示！ */
}

.update-log li {
  text-align: center;
  margin-bottom: 15px;
  }

/* FC2カウンターの img には max-width 適用しない */

.counter-wrapper {
  position: absolute;
  width: 20%;
  text-align: center; /* 中央寄せ */
  margin-top: 30px;   /* 上に余白を作る（任意） */
top:200px;
left:600px;
}

.counter-wrapper img {
  display: inline-block;
  max-width: 5px;  /* ←ココでサイズ制御 */
  height: auto;

}