@charset "UTF-8";
.fancy-list {
    counter-reset: item;
  }
  
  .fancy-list li {
    position: relative;
    padding-left: 1.1em;
    text-indent: 0;
    font-size: clamp(1.4rem, 1.25vw, 1.5rem);
    line-height: 1.5;
    letter-spacing: 0.03em;
  }
  .fancy-list li:not(:last-child) {
    margin-bottom: 0.5em;
}
  
  .fancy-list li::before {
    counter-increment: item;
    content: counter(item) ".";
    position: absolute;
    left: 0;
    top: 0;
  }
  
  /* 手数料表のスタイル */
  .fee-table-wrapper {
    margin: 2rem 0;
  }
  
  .fee-table {
    width: 100%;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 0;
    font-size: clamp(1.4rem, 1.25vw, 1.5rem);
    line-height: 1.6;
    border-radius: 8px;
    overflow: hidden;
  }
  
  .fee-table th {
    background-color: #b6def6;
    padding: 1.2rem;
    text-align: left;
    font-weight: bold;
    border: none;
    border-right: 1px solid #fff;
    border-bottom: 1px solid #fffcfe;
    vertical-align: top;
    text-align: center;
  }
  
  .fee-table th:last-child {
    border-right: none;
  }
  
  .fee-table td {
    padding: 2.8rem;
    border: none;
    border-right: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
    background-color: #f8fcfe;
    vertical-align: top;
  }
  
  .fee-table td:last-child {
    border-right: none;
  }
  
  .fee-table tr:last-child td {
    border-bottom: none;
  }
  
  .fee-table .fee-note {
    font-size: 0.9em;
    margin-top: 18px;
    display: block;
  }
  
  .fee-list li:not(:last-child) {
    margin-bottom: 1.2em;
  }

  .fee-list__list {
    margin-bottom: 5px;
    font-weight: bold;
  }
    
  .fee-table .fee-title {
    font-weight: bold;
    margin-bottom: 4px;
  }
  .fee-table p {
    display: block;
  }
  .fee-table .fee-amount {
    font-weight: bold;
    color: #0057AF;
    line-height: 1.0;
    margin-bottom: 18px;
  }

  /* Simplebarのカスタムスタイル */
  .fee-table-wrapper[data-simplebar] {
    position: relative;
  }
  
  .fee-table-wrapper .simplebar-track.simplebar-horizontal {
    height: 12px;
    background-color: #f0f0f0;
    border-radius: 6px;
    margin-top: 10px;
  }
  
  .fee-table-wrapper .simplebar-scrollbar.simplebar-horizontal {
    height: 12px;
    background-color: #b6def6;
    border-radius: 6px;
  }
  
  .fee-table-wrapper .simplebar-scrollbar.simplebar-horizontal:before {
    display: none;
  }
  
  /* レスポンシブ対応 */
  @media (max-width: 768px) {
    .fee-table {
      font-size: 1.3rem;
      min-width: 500px;
      margin-bottom: 1.8em;
    }
    
    .fee-table th,
    .fee-table td {
      padding: 1.4rem;
    }
    .fee-table tr:last-child td {
      padding-bottom: 2em;
    }

    .fee-table-wrapper .simplebar-track.simplebar-horizontal {
      height: 10px;
    }
    
    .fee-table-wrapper .simplebar-scrollbar.simplebar-horizontal {
      height: 10px;
    }

    .fee-table-wrapper .simplebar-scrollbar:before {
        background-color: #5dafe2 !important; 
    }

  }