@charset "UTF-8";

/* ==========================================================================
   自宅deトリイク 選べるポイント一覧
   - style.css に追記せず単独で読み込む（index.html には影響しません）
   - クラスは全て pt- 接頭辞、変数は .pt にスコープ
   - 前提: style.css を先に読み込み、reset / .device / .header / .footer を継承
   ========================================================================== */

.pt {
  --pt-key: #E8342A;
  --pt-key-dark: #c4271e;
  --pt-key-tint: #fdf0ef;
  --pt-ink: #101010;
  --pt-muted: #6b6b6b;
  --pt-line: #e3e3e3;
  --pt-bg: #faf7ed;
  --pt-yellow: #fdc601;
  --pt-radius: 1.25rem;

  padding: 3.5rem 2.5rem 5rem;
  background: #fff;
  font-family: var(--font-base, "Zen Kaku Gothic New", sans-serif);
  color: var(--pt-ink);
}

.pt-inner {
  max-width: 62.5rem;
  margin: 0 auto;
}

/* セクションの区切り（背景は敷かず、余白と罫線で構造を出す） -------------- */
.pt-box {
  display: block;
}

.pt-box .pt-head:first-child {
  margin-top: 4rem;
}

.pt-box:first-of-type .pt-head:first-child {
  margin-top: 0;
}

/* PC ヘッダー: ダウンロードボタンを右端へ（index.html には影響しません） --- */
.header__dl {
  margin-left: auto;
}

/* 見出し ------------------------------------------------------------------ */
.pt-title {
  margin-bottom: 1.25rem;
  font-size: 2.25rem;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.pt-title::after {
  content: "";
  display: block;
  width: 3.5rem;
  height: 4px;
  margin-top: 1rem;
  background: var(--pt-key);
}

.pt-lead {
  max-width: 46rem;
  margin-bottom: 3rem;
  font-size: 1rem;
  line-height: 2;
  /* 日本語の折り返しを文節単位に。強調部分は途中で切らない */
  word-break: auto-phrase;
  line-break: strict;
}

.pt-lead strong {
  font-weight: 700;
  color: var(--pt-key);
  white-space: nowrap;
}

.pt-head {
  margin: 4rem 0 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid var(--pt-line);
}

.pt-head:first-of-type {
  margin-top: 0;
}

.pt-head h2 {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.4;
}

.pt-head small {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--pt-muted);
}

/* 還元の流れ -------------------------------------------------------------- */
.pt-flow {
  padding: 2rem;
  background: var(--pt-bg);
  border-radius: var(--pt-radius);
}

.pt-flow-head {
  margin-bottom: 1.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.pt-flow-list {
  display: flex;
  align-items: stretch;
  gap: 0.75rem;
  list-style: none;
}

.pt-flow-item {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.25rem 1rem;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-top: 3px solid var(--pt-key);
  border-radius: 0.625rem;
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pt-flow-item .pt-step {
  font-family: var(--font-en, "Roboto", sans-serif);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pt-key);
}

.pt-flow-item strong {
  font-weight: 700;
}

.pt-flow-arrow {
  display: flex;
  align-items: center;
  color: var(--pt-key);
  font-size: 1.25rem;
  line-height: 1;
}

.pt-flow-arrow::before {
  content: "→";
}

/* 交換先グリッド ---------------------------------------------------------- */
.pt-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--pt-line);
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  overflow: hidden;
}

.pt-card {
  display: flex;
  align-items: center;
  gap: 0.875rem;
  padding: 1.125rem 1rem;
  background: #fff;
}

.pt-card-icon {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  color: #fff;
  font-family: var(--font-en, "Roboto", sans-serif);
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1;
}

.pt-card-name {
  font-size: 0.875rem;
  font-weight: 500;
  line-height: 1.45;
}

.pt-i-paypay   { background: #ff0033; }
.pt-i-amazon   { background: #ff9900; }
.pt-i-apple    { background: #101010; }
.pt-i-google   { background: #01875f; }
.pt-i-quo      { background: #f39800; }
.pt-i-nanaco   { background: #e95513; }
.pt-i-waon     { background: #e4007f; }
.pt-i-aupay    { background: #eb5505; font-size: 0.875rem; }
.pt-i-edy      { background: #bf0000; }
.pt-i-tosho    { background: #2e6db4; }
.pt-i-dpoint   { background: #cc0033; }
.pt-i-drink    { background: var(--pt-key); }

/* 注記 -------------------------------------------------------------------- */
.pt-notes {
  margin-top: 1.5rem;
  list-style: none;
}

.pt-notes li {
  position: relative;
  padding-left: 1.125rem;
  font-size: 0.8125rem;
  line-height: 1.9;
  color: var(--pt-muted);
}

.pt-notes li::before {
  content: "※";
  position: absolute;
  left: 0;
}

/* 会員ランク表 ------------------------------------------------------------ */
/* 会員ランクのセクションだけ幅を絞って中央寄せ
   （新しいクラスに依存せず、既存の #rank と .pt-table-wrap だけで効かせる） */
.pt-head#rank {
  text-align: center;
}

.pt-table-wrap,
.pt-table-wrap + .pt-notes {
  max-width: 40rem;
  margin-left: auto;
  margin-right: auto;
}

.pt-table-wrap {
  overflow-x: auto;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
}

.pt-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.9375rem;
}

.pt-table th,
.pt-table td {
  padding: 1rem;
  border: 0;
  border-bottom: 1px solid var(--pt-line);
  border-right: 1px solid var(--pt-line);
  text-align: center;
  vertical-align: middle;
}

.pt-table thead th {
  background: var(--pt-key);
  color: #fff;
  font-weight: 700;
  border-color: rgba(255, 255, 255, 0.25);
}

.pt-table th:last-child,
.pt-table td:last-child {
  border-right: 0;
}

.pt-table tbody tr:last-child th,
.pt-table tbody tr:last-child td {
  border-bottom: 0;
}

.pt-table thead .pt-th-sub {
  display: block;
  margin-top: 0.25rem;
  font-size: 0.75rem;
  font-weight: 500;
  opacity: 0.85;
}

.pt-table tbody th {
  width: 34%;
  background: #fff;
  font-weight: 500;
}

.pt-table tbody tr:nth-child(even) td,
.pt-table tbody tr:nth-child(even) th {
  background: #fbfbfb;
}

.pt-table td strong {
  font-weight: 700;
  color: var(--pt-key);
}

.pt-badge {
  display: inline-block;
  padding: 0.3125rem 0.875rem;
  border-radius: 999px;
  font-size: 0.8125rem;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
}

.pt-badge-entry    { background: #f4f4f4; color: #777; border: 1px solid #e0e0e0; }
.pt-badge-standard { background: #d9d9d9; color: #444; }
.pt-badge-bronze   { background: #b0754a; color: #fff; }
.pt-badge-silver   { background: #9ea3a8; color: #fff; }
.pt-badge-gold     { background: #c19a2e; color: #fff; }
.pt-badge-platinum { background: #5c6670; color: #fff; }
.pt-badge-diamond  { background: #2f7f95; color: #fff; }

/* 物流にやさしい受け取り方 ------------------------------------------------ */
.pt-eco {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
}

.pt-eco-card {
  padding: 1.75rem;
  background: var(--pt-bg);
  border-radius: var(--pt-radius);
}

.pt-eco-title {
  position: relative;
  padding-left: 1.75rem;
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.5;
}

.pt-eco-title::before {
  content: "";
  position: absolute;
  top: 0.3em;
  left: 0;
  width: 1.125rem;
  height: 1.125rem;
  border-radius: 50%;
  background: var(--pt-key);
}

.pt-eco-title::after {
  content: "";
  position: absolute;
  top: 0.55em;
  left: 0.3rem;
  width: 0.5rem;
  height: 0.25rem;
  border-left: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-45deg);
}

.pt-eco-text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.8;
}

/* 出店要望箇所ボーナス ---------------------------------------------------- */
.pt-spot-lead {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
  line-height: 1.9;
  word-break: auto-phrase;
  line-break: strict;
}

.pt-spot {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  list-style: none;
}

.pt-spot-card {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 0.375rem;
  padding: 1.5rem 1rem;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
}

.pt-spot-num {
  font-family: var(--font-en, "Roboto", sans-serif);
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
  color: var(--pt-key);
}

.pt-spot-unit {
  font-size: 0.9375rem;
  font-weight: 700;
}

.pt-notes a {
  color: var(--pt-key);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

/* 月利用回数ボーナス ------------------------------------------------------ */
.pt-bonus {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
  list-style: none;
}

.pt-bonus-card {
  padding: 1.75rem;
  background: #fff;
  border: 1px solid var(--pt-line);
  border-radius: var(--pt-radius);
  text-align: center;
}

.pt-bonus-badge {
  display: inline-block;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.4;
}

.pt-bonus-badge-1 {
  background: var(--pt-key);
  color: #fff;
}

.pt-bonus-badge-2 {
  background: var(--pt-yellow);
  color: var(--pt-ink);
}

.pt-bonus-cond {
  margin-top: 1.25rem;
  padding-top: 1.25rem;
  border-top: 1px dashed var(--pt-line);
  font-size: 1.0625rem;
  font-weight: 700;
  line-height: 1.5;
}

.pt-bonus-note {
  margin-top: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--pt-muted);
}

/* 詳細リンク -------------------------------------------------------------- */
.pt-detail {
  margin-top: 3rem;
  padding: 1.75rem 2rem;
  background: var(--pt-bg);
  border-radius: var(--pt-radius);
}

.pt-detail p {
  font-size: 0.9375rem;
  line-height: 1.9;
}

.pt-detail p + p {
  margin-top: 1rem;
}

.pt-detail a {
  color: var(--pt-key);
  text-decoration: underline;
  text-underline-offset: 0.2em;
}

.pt-detail a:hover {
  color: var(--pt-key-dark);
}

/* トップにもどる（style.css の .cta__btn に準拠） -------------------------- */
.pt-back {
  margin-top: 3rem;
  text-align: center;
}

.pt-back a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20rem;
  height: 3.75rem;
  margin: 0 auto;
  background: var(--pt-yellow);
  border-radius: 2.5rem;
  color: var(--pt-ink);
  font-size: 1.5rem;
  font-weight: 900;
  text-decoration: none;
  transition: opacity 0.3s;
}

.pt-back a:hover {
  opacity: 0.85;
  color: var(--pt-ink);
}

/* 商標表記 ---------------------------------------------------------------- */
.pt-legal {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--pt-line);
  font-size: 0.6875rem;
  line-height: 1.9;
  color: #8a8a8a;
}

.pt-legal span {
  display: block;
}

/* フォーカス表示 ---------------------------------------------------------- */
.pt a:focus-visible {
  outline: 2px solid var(--pt-key);
  outline-offset: 3px;
}

/* ==========================================================================
   レスポンシブ（style.css と同じ 1099px / 599px ブレイクポイント）
   ========================================================================== */
@media (max-width: 1099px) {
  .pt {
    padding: 1.875rem 0.9375rem 3.75rem;
  }

  .pt-box .pt-head:first-child {
    margin-top: 3rem;
  }

  .pt-flow {
    padding: 1.25rem;
    border-radius: 0.9375rem;
  }

  .pt-title {
    font-size: 1.5rem;
  }

  .pt-title::after {
    width: 2.5rem;
    height: 3px;
    margin-top: 0.75rem;
  }

  .pt-lead {
    margin-bottom: 2rem;
    font-size: 0.9375rem;
    line-height: 1.9;
  }

  .pt-head {
    margin: 3rem 0 1.25rem;
  }

  .pt-head h2 {
    font-size: 1.1875rem;
  }

  .pt-flow-list {
    flex-direction: column;
    gap: 0.5rem;
  }

  .pt-flow-item {
    flex-direction: row;
    align-items: center;
    gap: 0.75rem;
    padding: 0.875rem 1rem;
    border-top: 1px solid var(--pt-line);
    border-left: 3px solid var(--pt-key);
    font-size: 0.875rem;
  }

  .pt-flow-item .pt-step {
    flex: 0 0 3.25rem;
  }

  .pt-flow-arrow {
    justify-content: center;
  }

  .pt-flow-arrow::before {
    content: "↓";
  }

  .pt-grid {
    grid-template-columns: repeat(2, 1fr);
    border-radius: 0.9375rem;
  }

  .pt-card {
    gap: 0.625rem;
    padding: 0.875rem 0.75rem;
  }

  .pt-card-icon {
    width: 2rem;
    height: 2rem;
    font-size: 0.9375rem;
  }

  .pt-card-name {
    font-size: 0.75rem;
  }

  .pt-head#rank {
    text-align: left;
  }

  .pt-table-wrap,
  .pt-table-wrap + .pt-notes {
    max-width: none;
  }

  .pt-table {
    font-size: 0.8125rem;
  }

  .pt-table th,
  .pt-table td {
    padding: 0.75rem 0.625rem;
  }

  .pt-table tbody th {
    width: 38%;
  }

  .pt-badge {
    padding: 0.25rem 0.625rem;
    font-size: 0.75rem;
  }

  .pt-eco,
  .pt-bonus {
    grid-template-columns: 1fr;
    gap: 0.9375rem;
  }

  .pt-eco-card {
    padding: 1.25rem;
    border-radius: 0.9375rem;
  }

  .pt-eco-title {
    font-size: 1rem;
  }

  .pt-eco-text {
    font-size: 0.8125rem;
  }

  .pt-spot-lead {
    font-size: 0.875rem;
    line-height: 1.8;
  }

  .pt-spot {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
  }

  .pt-spot-card {
    flex-direction: column;
    align-items: center;
    gap: 0.125rem;
    padding: 1rem 0.5rem;
    border-radius: 0.9375rem;
  }

  .pt-spot-num {
    font-size: 1.5rem;
  }

  .pt-spot-unit {
    font-size: 0.75rem;
  }

  .pt-bonus-card {
    padding: 1.25rem;
    border-radius: 0.9375rem;
  }

  .pt-bonus-badge {
    padding: 0.4375rem 1rem;
    font-size: 0.875rem;
  }

  .pt-bonus-cond {
    margin-top: 1rem;
    padding-top: 1rem;
    font-size: 1rem;
  }

  .pt-bonus-note {
    font-size: 0.8125rem;
  }

  .pt-detail {
    margin-top: 2.25rem;
    padding: 1.25rem;
    border-radius: 0.9375rem;
  }

  .pt-back {
    margin-top: 2.25rem;
  }

  .pt-back a {
    width: 100%;
    max-width: 20rem;
    height: 3.125rem;
    font-size: 1.125rem;
  }

  .pt-detail p {
    font-size: 0.875rem;
  }

}

@media (prefers-reduced-motion: reduce) {
  .pt-back a {
    transition: none;
  }
}
