/* 静的ページ用のCSS */

@media screen and (max-width: 767px) {
  .main-area .main-inner {
    padding: 0;
  }
}

.spl-c-buttons {
  margin: 10.667vw 0;
}

@media screen and (min-width: 1024px) {
  .spl-c-buttons {
    margin: 50px 0;
  }
}

@media screen and (min-width: 1024px) {
  .spl-c-buttons {
    margin: 50px 0;
  }
}

.spl-c-button {
  font-size: 3.73333vw;
  text-align: center;
  font-weight: bold;
  line-height: 1.8;
  border-radius: 20vw;
  background: #222;
  color: #fff;
  display: block;
  width: 100%;
  padding: 4vw 0;
  position: relative;
}

@media screen and (min-width: 1024px) {
  .spl-c-button {
    font-size: 18px;
    line-height: 1.8;
    padding: 24px 0;
    max-width: 680px;
    margin-left: auto;
    margin-right: auto;
  }
}

.spl-c-button:before {
  display: block;
  content: "";
  position: absolute;
  top: 50%;
  right: 4%;
  width: 0;
  height: 0;
  margin-top: -6px;
  border: 6px solid transparent;
  border-left: 6px solid #fff;
}

@media screen and (min-width: 1024px) {
  .spl-c-button:before {
    right: 5%;
    margin-top: -8px;
    border: 8px solid transparent;
    border-left: 8px solid #fff;
  }
}

/* ページネーション */
.pagination-container {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 5rem;
}

.page-btn {
  font-weight: 500;
  font-size: 1.4rem;
  width: 3.2rem;
  height: 3.2rem;
  display: inline-block;
  line-height: 3.2rem;
  padding: 0 !important;
  cursor: pointer;
}

.page-btn.active {
  background-color: #f0f0f0;
}
