/* ========================================
   Information Page Styles
   ======================================== */

/* ----------------------------------------
   Section
   ---------------------------------------- */
.l-section--information {
  padding: 60px 0 75px;
}

/* ----------------------------------------
   Info Tabs
   ---------------------------------------- */
.l-info-tabs {
  justify-content: center;
}

/* ----------------------------------------
   Info List
   ---------------------------------------- */
.l-info-list {
  margin-bottom: 90px;
}

/* ----------------------------------------
   Pagination
   ---------------------------------------- */
.l-information-pagination {
  text-align: center;
  margin-top: 0;
}

.c-pagination-link {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 24px;
  font-weight: 400;
  color: #666;
  text-decoration: none;
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
  transition: all 0.3s ease;
}

.c-pagination-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #666;
  transition: all 0.3s ease;
}

.c-pagination-link:hover {
  color: #54b7c6;
}

.c-pagination-link:hover::after {
  background-color: #54b7c6;
}

/* ----------------------------------------
   Responsive
   ---------------------------------------- */
@media (max-width: 768px) {
  .l-section--information {
    padding: 60px 0;
  }

  .l-info-list {
    margin-bottom: 40px;
  }

  .l-information-pagination {
    margin-top: 0;
  }

  .c-pagination-link {
    font-size: 20px;
  }
}
