@charset "utf-8";

body {
  background-image: url(../img/j.png);
   background-size: cover;
}

.bgi {
  height: 210px;
  background-image: url(../img/knit2.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  display: flex;
  align-items: center;
}

.category {
  width: 100%;
  text-align: center;
  color: rgba(255, 250, 250, 0.9);
  font-family: Libre Baskerville;
  text-shadow: 5px 5px 5px rgba(0, 0, 0, 0.507);
  font-weight: bold;
}

.about {
  display: flex;
  justify-content: center;
  gap: 80px;
  margin: 150px 180px;
  align-items: center;
}

.about img {
  width: 350px;
}

.atext {
  text-align: center;
  font-weight: bold;
  color: rgb(63, 49, 49);

}

.atext p {
  width: 350px;
}

.pagetop {
  position: fixed;
  
  bottom: 25px;
  right: 20px;
  display: inline-block;
  /* 画像のサイズに合わせる */
}

.pagetop img {
  width: 45px;
  display: block;
  /* 画像の下に余白ができないようにする */
}

.top-text {
  position: absolute;
  /* 親要素からの絶対位置で配置する */
  left: 50%;
  /* 親要素の幅の中央に配置 */
  top: -10%;
  transform: translate(-50%, -50%);
  /* 文字自体の中央に配置し直す */
  text-align: center;
  /* 文字を中央揃えにする */
  font-family: "Zen Old Mincho", serif;
  /* padding-top: 11px; */
  font-size: 11px;
}


  /* .about {
      margin: 0;
      height: 100vh;
      background: linear-gradient(to bottom, #f3f2eb, hsl(41, 38%, 87%));
      overflow: hidden;
    }

    .bubble {
      position: absolute;
      bottom: -100px;
      background: #a79c4a1f;
      border-radius: 50%;
      pointer-events: none;
      animation: rise 10s linear infinite;
    }

    @keyframes rise {
      0% {
        transform: translateY(0) scale(1);
        opacity: 0;
      }
      30% {
        opacity: 1;
      }
      100% {
        transform: translateY(-120vh) scale(1.5);
        opacity: 0;
      }
    } */