body {
    margin: 0;
    background-color: #f9f6f6;
    font-family: 'Zen Old Mincho';
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: black;
}

ul {
    list-style: none;
}

/* 小見出し */

.kasou_ul {
    padding: 0;
    position: relative;
}

.list_after {
    margin-top: 8%;
}

.kasou_ul .kasou_li {
    color: black;
    font-size: 1.2rem;
    font-weight: 700;
    border-left: solid 5px #D93751;
    /*左側の線*/
    margin-bottom: 30px;
    /*下のバーとの余白*/
    line-height: 0.9;
    padding: 0.5em;
    list-style-type: none !important;
    /*ポチ消す*/
}

/* マウスストーカー */

/* #mouse-stalker {
  pointer-events: none;
  position: fixed;
  top: -8px;
  left: -8px;
  width: 20px;
  height: 20px;
  background: rgba(236, 109, 55, 0.5);
  border-radius: 50%;
  transform: translate(0,0);
  transition: transform 0.2s, top, 0.2s, left 0.2s, width 0.2s, height 0.2s, background-color 0.2s;
  transition-timing-function: ease-out;
  z-index: 999;
}
#mouse-stalker.is_active {
  top: -32px;
  left: -32px;
  width: 40px;
  height: 40px;
  transition: 0.4s;
  background: rgba(236, 109, 55, 0.5);
  transition-timing-function: ease-out;
  z-index: 999;
  border-radius: 50%;
  pointer-events: none;
  position: fixed;
}
#mouse-stalker.remove {
    display: none;
} */


/* ページトップ */

.pagetop-button {
    position: fixed;
    right: 4vw;
    bottom: 4vh;
    font-size: 25px;
    color: #fff;
    background-color: #D93751;
    border-radius: 50%;
    padding: 15px 20px;
    transition: .3s;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    z-index: 8;
}

.pagetop-visible {
    opacity: 1;
    visibility: visible;
}