@charset "UTF-8";

/* ページネーションブロック全体 */
.pageLink_block {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0;
  }
  
  /* 一覧に戻るボタン */
  .back-btn .link-btn_yellow {
    background: #3FBFD6;
    color: #fff;
    border: none;
    border-radius: 2em;
    padding: 0.8em 3em;
    font-weight: bold;
    font-size: 1.1em;
    box-shadow: 0 2px 8px rgba(63,191,214,0.08);
    display: inline-flex;
    align-items: center;
    transition: background 0.2s, color 0.2s;
    text-decoration: none;
  }
  .back-btn .link-btn_yellow:hover {
    background: #2fa0b6;
    color: #fff;
  }
  
  /* 前へ・次へボタン */
  .navigation {
    display: flex;
    gap: 40vw;
    flex: 1;
    justify-content: space-between;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .navigation .nav-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.8em 2em;
    border: 2px solid #3FBFD6;
    border-radius: 2em;
    background: #fff;
    color: #222;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1em;
    transition: background 0.2s, color 0.2s;
    box-shadow: 0 2px 8px rgba(63,191,214,0.08);
  }
  .navigation .nav-btn.prev .arrow-prev,
  .navigation .nav-btn.next .arrow-next {
    font-size: 1.2em;
    margin: 0 0.5em;
  }
  .navigation .nav-btn.prev .arrow-prev {
    margin-right: 0.5em;
  }
  .navigation .nav-btn.next .arrow-next {
    margin-left: 0.5em;
  }
  .navigation .nav-btn:hover {
    background: #3FBFD6;
    color: #fff;
  }
  .navigation .disabled {
    display: inline-flex;
    align-items: center;
    padding: 0.8em 2em;
    border: 2px solid #3FBFD6;
    border-radius: 2em;
    background: #fff;
    color: #bbb;
    font-weight: 500;
    font-size: 1.1em;
    opacity: 0.6;
  }
  
  /* アイコン用のクラス（必要に応じてSVGやFontAwesomeに差し替え可） */
  .arrow-prev::before {
    content: '\2039'; /* Unicode for single left angle quotation mark */
    font-size: 1.2em;
    margin-right: 0.3em;
  }
  .arrow-next::after {
    content: '\203A'; /* Unicode for single right angle quotation mark */
    font-size: 1.2em;
    margin-left: 0.3em;
  }
  
  @media (max-width: 600px) {
    .pageLink_block {
      flex-direction: column;
      gap: 1.5em;
    }
    .navigation {
      gap: 1em;
      width: 100%;
      justify-content: space-between;
    }
    .back-btn .link-btn_yellow {
      width: 100%;
      justify-content: center;
    }
  }