@charset "UTF-8";
.about_main {
  margin-top: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 95%;
  gap: 40px;
}

.about_title {
  font-weight: bold;
  font-size: 80px;
  background: linear-gradient(transparent 80%, #ebbfbf 70%);
}

.my_img {
  width: 60%;
  -o-object-fit: cover;
     object-fit: cover;
  margin: 40px;
  filter: drop-shadow(8px 8px 5px rgba(56, 56, 56, 0.5));
}

.about_page_text {
  font-size: 14px;
  writing-mode: vertical-rl;
  line-height: 1.8;
  letter-spacing: 0.3em;
}

.about_span {
  font-size: 20px;
}

.btn_inner {
  width: 100%;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  line-height: 1.5;
  margin-bottom: 10px;
}

.remove_btn {
  margin-left: 20px;
}

.next_btn {
  margin-right: 20px;
}

.remove_btn:hover,
.next_btn:hover {
  text-decoration: underline;
  text-decoration-color: #333333;
  text-decoration-style: solid;
  text-decoration-thickness: 2px;
}

.remove_btn:before {
  content: "<";
}

.next_btn:after {
  content: ">";
}

.bg_img_hand {
  width: 100px;
  height: 100px;
  position: absolute;
  bottom: 80px;
  left: 20px;
  opacity: 0.4; /* 少し薄くして背景に馴染ませる */
  pointer-events: none; /* ボタンのクリックを邪魔しないようにする */
  filter: sepia(0.5); /* セピア調にしてアナログ感を出す */
}

@media screen and (min-width: 900px) {
  .bg_img_hand {
    width: 200px;
    height: 200px;
    bottom: 80px;
    left: 80px;
  }
}
@media screen and (min-width: 900px) {
  .btn_inner {
    font-size: 18px;
    padding: 24px;
  }
}
@media screen and (min-width: 900px) {
  .about_page_text {
    font-size: 24px;
  }
}
@media screen and (min-width: 900px) {
  .about_span {
    font-size: 32px;
  }
}/*# sourceMappingURL=style_about.css.map */