:root {
  color-scheme: light dark;
}

body {
  color: light-dark(#000,#000)
}

/* ↑ダークモード未対応ページのバグ修正用コード↑ */


.a-tags {
	padding: 0% 5%;
	margin-bottom: 40px;
}

.jump-a {
  display: block;
  position: relative;
  height: auto;
  padding: 8px;
  border: 1px #7f7fff solid;
  border-radius: 30px;
  margin-bottom: 16px;
  font-size: 24px;
  text-decoration: none;
  text-align: center;
  color: #7f7fff;
}

#gallery-a::before,
#info-a::before,
#notify-a::before {
  content: '';/*何も入れない*/
  display: inline-block;
  width: 40px;/*画像の幅*/
  height: 40px;/*画像の高さ*/
  background-size: contain;
  vertical-align: middle;
  position: absolute;
  left: 0;
  margin-left: 16px;
  margin-top: 3px; /*アイコンをy座標０に配置してるつもり。違和感あれば外す*/
}

#gallery-a::before {
  background-image: url(../images/photos.webp);
}

#info-a::before {
  background-image: url(../images/description.webp);
}

#notify-a::before {
  background-image: url(../images/bell.svg);
}

/* ＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝モバイル版　↓＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝＝ */

@media screen and (max-width: 767px) {



}