/* 左固定スクロールボックス */
.box {
  position: fixed;
  top: 0;
  left: 0;
  width: 230px;
  height: 100vh;          /* 画面いっぱいの高さ */
  border: 1px solid #000;
  overflow-y: scroll;
  background: #fae7ff;

}

/* 本文のところ */
.main {
  margin-left: 220px;    /* 左枠の分だけずらす */
  padding: 20px;
   text-align: center;
}

/* 更新履歴のボックス */
.box_1 {
  width: 600px;                /* 横幅を200pxに指定 */
  height: 200px;               /* 横幅を200pxに指定 */
  border: 1px solid #000;      /* わかりやすくボーダーを引く */
  overflow-y: scroll;          /* 横方向にスクロール可能にする */
  overflow-x: hidden;

    margin-left: auto;
  margin-right: auto;
    background: #f0ecff;
}
.box_1 p {
  width: 600px;                /* 親要素よりも大きくする */
}

/* 画像の中央揃え */
.image
{
       margin-left: auto;
  margin-right: auto; 
}

/* 背景色 */
body{
    background:#d0deff

}

/*自己紹介の部分*/
.intro {
  color: #ea2480;
  font-weight:  600;
  font-size: large;
}

.blue {
  color: #5970f0;
  font-weight:  600;
}

/* タイトル英文字虹色アニメーション */
.rainbow {
  font-size: 30px;
  font-weight: bold;
  text-align: center;

  animation: rainbowColor 6s linear infinite;
}

@keyframes rainbowColor {
  0%   { color: rgb(255, 67, 67); }   /* 赤 */
  14%  { color: rgb(255, 191, 72); }  /* オレンジ */
  28%  { color: rgb(255, 255, 107); } /* 黄 */
  42%  { color: rgb(88, 239, 88); }   /* 緑 */
  57%  { color: rgb(120, 255, 255); } /* 水色 */
  71%  { color: rgb(90, 90, 247); }   /* 青 */
  85%  { color: rgb(255, 182, 255); } /* 紫 */
  100% { color: rgb(255, 67, 67); }   /* 赤に戻る */
}


/* 左スクロールの中のトピック部分 */
.topic{
  background-color: rgb(255, 246, 217);
margin-bottom: 8px;

}

/* 更新履歴の中の調整 */
.update {
  border-collapse: collapse;
  width: 580px;
  margin: 20px auto;
  font-size: 14px;
}

.update th,
.update td {
  border: 1px solid #666;
  padding: 6px;
}

.update th {
  background-color: #ccccff;
  text-align: center;
}

.update td:first-child {
  width: 120px;
  text-align: center;
}


/* トピックの枠（共通） */
.entry {
  width: 900px;
  margin: 20px auto;
  border: 3px double #6f5bcc;
  background: #fbfaff;
}

/* 日付・タイトル部分 */
.entry-header {
  background: #eae6ff;
  padding: 8px;
  border-bottom: 2px dashed #6f5bcc;
  font-size: 14px;
}

/* 本文部分 */
.entry-body {
  padding: 12px;
  font-size: 14px;
  line-height: 1.6;
}

.date {
  color: #555;
}

.title {
  font-weight: bold;
  color: #6f5bcc;
  font-size: large;
}


/* 画像ぎｆ */
.aka{
  mix-blend-mode: color-dodge;

       position: fixed;

  top: 80px;
  left: 250px;
}

.aka1{
  mix-blend-mode: color-dodge;

       position: fixed;

  top: 200px;
  left: 1000px;
}


.left-text {
  text-align: left;    /* この中だけ左 */
}

.marquee {
  overflow: hidden;
  white-space: nowrap;
  width: 100%;
}

.marquee-inner {
  display: inline-block;
  animation: marquee 15s linear infinite;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}


.img-text {
  display: flex;
  align-items: flex-start; /* 上揃え */
  gap: 30px;               /* 画像と文字の間隔 */
}

.img-text .text {
  text-align: left;
}


/* waveリンク */
.sample4_btn {
    display: inline-block;
    padding: 10px 20px 10px 20px;
    text-decoration: none;
    color: white;
    background: rgb(235, 180, 230);
    font-weight: bold;
    border: solid 2px rgb(235, 180, 230);
    border-radius: 8px;
}

.sample4_btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

.sample4_btn:hover {
    background:rgb(241, 187, 236);
    color:  white;
}





/* TOPのコンテンツリンク三つの間の余白 */
.menu-links a {
  display: inline-block;   /* 余白が効くように */
  margin-right: 40px;      /* 横の隙間 */
}




table {
  margin-left: auto;
  margin-right: auto;
}

.fixed-image{
  position: fixed;
  top: 30px;     /* 上からの位置 */
  left: 90%;      /* 横中央 */
  transform: translateX(-50%);
  width: 200px;
  z-index: 200;
}





