@charset "utf-8";
/*==================================================================
   セクションジャンプ
==================================================================*/

.lp-index {
  position: fixed;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  z-index: 100;
  width: 200px;
  padding: 18px 16px;
  background: rgba(255, 255, 255, .94);
  border: 1px solid #e2e2e2;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .12);
  transition: opacity .3s, visibility .3s;
}

.lp-index__ttl {
  margin: 0 0 20px;
  padding: 5px 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: .08em;
  line-height: 1.4;
  color: #fff;
  text-align: center;
  background: #a4a4a4;
  border-radius: 999px;
}

.lp-index__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.lp-index__list li + li {
  margin-top: 13px;
}

.lp-index__list a {
  display: block;
  position: relative;
  padding-left: 16px;
  color: #888;
  font-size: 16px;
  line-height: 1.35;
  text-decoration: none;
  transition: color .3s;
}

.lp-index__list a::before {
  content: "";
  position: absolute;
  top: .68em;
  left: 0;
  width: 7px;
  height: 7px;
  background: #ccc;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: background .3s;
}

.lp-index__list a:hover,
.lp-index__list a.is-current {
  color: #ea1b0f;
  font-weight: 700;
}

.lp-index__list a:hover::before,
.lp-index__list a.is-current::before {
  background: #DC7F88;
}

.lp-index.is-hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.js-index-section {
  scroll-margin-top: 100px;
}

@media screen and (max-width: 1180px) {
  .lp-index {
    display: none;
  }
}

/*==================================================================
   セクションジャンプ END
==================================================================*/
