/* =============================================
   特定商取引法に基づく表記
   pc-order-index / smp-order-index のデザインを継承し
   スマホ／PC共通のレスポンシブ1ファイルに統合
   ============================================= */

/* --- [01. パンくずリスト] --- */
.btc-tokusyouhou__breadcrumb-container {
  position: relative;
  padding: 85px 25px 20px;
  z-index: 10;
}
.btc-tokusyouhou__breadcrumbs {
  list-style: none;
  display: flex;
  align-items: center;
  padding: 0;
  margin: 0;
  font-size: 10px;
  letter-spacing: 0.05em;
  overflow-x: auto;
  white-space: nowrap;
}
.btc-tokusyouhou__breadcrumbs li:not(:last-child)::after {
  content: "/";
  margin: 0 10px;
  color: #ccc;
}
.btc-tokusyouhou__breadcrumbs a {
  text-decoration: none;
  color: #2d2d2d;
  opacity: 0.5;
}

/* --- [02. ページヘッダー] --- */
.btc-tokusyouhou__page-header {
  padding: 20px 25px 40px;
  text-align: center;
  position: relative;
}
.btc-tokusyouhou__page-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1.375rem;
  letter-spacing: 0.1rem;
  margin: 0;
  color: #1a2a40;
  line-height: 1.6;
}
.btc-tokusyouhou__page-title span {
  display: block;
  font-size: 10px;
  font-family: "Inter", sans-serif;
  letter-spacing: 0.3em;
  margin-top: 10px;
  opacity: 0.6;
}

/* --- [03. メインコンテンツ] --- */
.btc-tokusyouhou__main-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 0 15px 100px;
  box-sizing: border-box;
}

.btc-tokusyouhou__white-box {
  background-color: #ffffff;
  border-radius: 12px;
  padding: 30px 15px;
  margin-bottom: 20px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
  box-sizing: border-box;
  overflow: hidden;
}

.btc-tokusyouhou__section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 1rem;
  letter-spacing: 0.05em;
  color: #1a2a40;
  margin: 0 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid #1a2a40;
}

/* --- [04. 表スタイル (上下2段形式)] --- */
.btc-tokusyouhou__info-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  margin-bottom: 0;
  box-sizing: border-box;
  table-layout: fixed;
}
.btc-tokusyouhou__info-table tr {
  display: block;
  width: 100%;
  margin-bottom: 10px;
}
.btc-tokusyouhou__info-table tr:last-child {
  margin-bottom: 0;
}
.btc-tokusyouhou__info-table th,
.btc-tokusyouhou__info-table td {
  border: 1px solid #e0e0e0;
  padding: 15px 15px;
  text-align: left;
  display: block;
  width: auto;
  box-sizing: border-box;
}
.btc-tokusyouhou__info-table th {
  background-color: #f9f9f7;
  font-weight: 600;
  color: #666;
  font-size: 14px;
  letter-spacing: 0.05em;
  border-bottom: none;
}
.btc-tokusyouhou__info-table td {
  background-color: #ffffff;
  margin-top: -1px;
  line-height: 1.8;
}

/* --- [05. 本文中のテキスト装飾] --- */
.btc-tokusyouhou__link {
  color: #1a2a40;
  text-decoration: underline;
  word-break: break-all;
}
.btc-tokusyouhou__link:hover {
  opacity: 0.7;
}
.btc-tokusyouhou__highlight {
  color: #c0392b;
  font-weight: 600;
}
.btc-tokusyouhou__highlight-text {
  color: #c0392b;
  font-weight: 600;
}
.btc-tokusyouhou__nowrap {
  white-space: nowrap;
}
.btc-tokusyouhou__note {
  font-size: 14px;
  line-height: 1.8;
  color: #2d2d2d;
  margin: 20px 0 0;
}

/* --- [06. TOPへ戻るボタン] --- */
.btc-tokusyouhou__btn-container {
  padding: 0 35px;
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.btc-tokusyouhou__form-btn {
  width: 100%;
  max-width: 320px;
  margin: 0 auto;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: opacity 0.3s;
  border-radius: 30px;
}
.btc-tokusyouhou__form-btn:hover {
  opacity: 0.8;
}
.btc-tokusyouhou__btn-white {
  background-color: #ffffff;
  color: #1a2a40;
  border: 1px solid #1a2a40;
}

#kin-pos {
  position: absolute;
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
}

/* =============================================
   レスポンシブ (768px〜 : PC/タブレット)
   ============================================= */
@media (min-width: 768px) {
  .btc-tokusyouhou__breadcrumb-container {
    padding: 90px 40px 20px;
    max-width: 960px;
    margin: 0 auto;
  }
  .btc-tokusyouhou__breadcrumbs {
    font-size: 12px;
  }

  .btc-tokusyouhou__page-header {
    padding: 20px 40px 40px;
  }
  .btc-tokusyouhou__page-title {
    font-size: 1.6rem;
  }
  .btc-tokusyouhou__page-title span {
    font-size: 12px;
  }

  .btc-tokusyouhou__main-content {
    padding: 0 25px 100px;
  }
  .btc-tokusyouhou__white-box {
    padding: 30px 30px;
  }

  /* テーブルを横並び2列レイアウトに戻す */
  .btc-tokusyouhou__info-table {
    table-layout: auto;
  }
  .btc-tokusyouhou__info-table tr {
    display: table-row;
    margin-bottom: 0;
    border-bottom: 1px solid #e0e0e0;
  }
  .btc-tokusyouhou__info-table tr:last-child {
    border-bottom: none;
  }
  .btc-tokusyouhou__info-table th,
  .btc-tokusyouhou__info-table td {
    display: table-cell;
    width: auto;
  }
  .btc-tokusyouhou__info-table th {
    width: 30%;
    border-bottom: 1px solid #e0e0e0;
    border-right: none;
    vertical-align: top;
  }
  .btc-tokusyouhou__info-table td {
    margin-top: 0;
  }

  .btc-tokusyouhou__btn-container {
    padding: 0;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }
}

/* =============================================
   レスポンシブ (1024px〜 : PC)
   ============================================= */
@media (min-width: 1024px) {
  .btc-tokusyouhou__breadcrumb-container {
    padding: 90px 60px 20px;
  }

  .btc-tokusyouhou__page-header {
    padding: 20px 60px 40px;
  }

  .btc-tokusyouhou__main-content {
    max-width: 900px;
    padding: 0 60px 100px;
  }
  .btc-tokusyouhou__info-table {
    font-size: 15px;
  }
}
