/* ===== shipping ページ専用 ===== */

/* セクション間の余白を広めに */
.shipping-page .legal-section {
  margin-bottom: 72px;
}
.shipping-page .legal-section h2 {
  margin-bottom: 18px;
  font-size: 22px;
}
.shipping-page .legal-section > p {
  margin-bottom: 18px;
  font-size: 16px;
  line-height: 1.9;
}
.shipping-page .legal-section ul li {
  font-size: 16px;
  line-height: 1.95;
}
.shipping-page .legal-lead {
  font-size: 17px;
  line-height: 1.95;
}
.shipping-page .legal-back a {
  font-size: 15px;
}

/* 配送日数カード（5地帯横並び。各要素の高さを揃える） */
.ship-zones {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 14px;
  margin-top: 16px;
  align-items: stretch;
}
.ship-zone-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 22px 14px 22px;
  text-align: center;
  box-shadow: var(--sh-sm);
}
.ship-zone-label {
  font-size: 15px;
  letter-spacing: 0.08em;
  color: #B23A3A;
  font-weight: 700;
  margin-bottom: 10px;
  min-height: 1.4em;
  line-height: 1.4;
}
.ship-zone-region {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 0 16px;
}
.ship-zone-days {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: 0.02em;
  padding-top: 12px;
  border-top: 1px dashed var(--border);
  margin-top: auto;
}
@media (max-width: 960px) {
  .ship-zones {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 480px) {
  .ship-zones {
    grid-template-columns: 1fr;
  }
}

/* サイズ・重量制限 */
.ship-specs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 16px 0 10px;
}
.ship-spec-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
}
.ship-spec-label {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 10px;
}
.ship-spec-value {
  font-size: 22px;
  font-weight: 700;
  color: var(--text);
}
@media (max-width: 600px) {
  .ship-specs {
    grid-template-columns: 1fr;
  }
}

/* 料金表 */
.ship-table-wrap {
  overflow-x: auto;
  margin: 16px 0 10px;
  border: 1px solid var(--border);
  border-radius: 8px;
}
.ship-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
  background: #fff;
  min-width: 720px;
}
.ship-table thead th {
  background: #f2f2f4;
  color: var(--text);
  font-weight: 700;
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-size: 13px;
  line-height: 1.4;
}
.ship-table thead .ship-table-sub th {
  background: #f7f7f9;
  font-size: 11px;
  font-weight: 500;
  color: var(--text-light);
  padding: 8px 6px;
}
.ship-table thead th:last-child {
  border-right: none;
}
.ship-table tbody th {
  background: #fafafb;
  font-weight: 600;
  text-align: left;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  white-space: nowrap;
  font-size: 13px;
}
.ship-table tbody td {
  text-align: right;
  padding: 8px 12px;
  border-bottom: 1px solid var(--border);
  border-right: 1px solid var(--border);
  font-variant-numeric: tabular-nums;
  font-size: 13px;
}
.ship-table tbody td:last-child {
  border-right: none;
}
.ship-table tbody tr:nth-child(even) {
  background: #fcfcfd;
}
.ship-table tbody tr:hover {
  background: #f5f5f7;
}

/* 取扱国・地域 */
.ship-country-zone {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 22px 26px;
  margin-bottom: 16px;
}
.ship-country-head {
  font-size: 18px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}
.ship-country-head span {
  font-size: 15px;
  font-weight: 500;
  color: var(--text-light);
  margin-left: 10px;
  letter-spacing: 0.02em;
}
.ship-country-sub {
  font-size: 15px;
  font-weight: 700;
  color: #B23A3A;
  margin: 14px 0 6px;
}
.ship-country-list {
  font-size: 15px;
  color: var(--text);
  line-height: 2;
}

/* 補足注釈 */
.ship-note {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.8;
  margin-top: 12px;
}

/* 保険例 */
.ship-insurance-example {
  background: #f7f7f9;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 18px 24px;
  margin: 16px 0 12px;
}
.ship-insurance-example-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}
.ship-insurance-example ul {
  margin: 0;
  padding-left: 22px;
}
.ship-insurance-example li {
  font-size: 15px;
  line-height: 1.9;
}

/* ===== トップページ用：海外発送への CTA ===== */
.hero-shipping-cta {
  text-align: center;
  padding: 24px 16px 56px;
  background: var(--bg);
}
.btn-shipping {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 32px;
  border: 1.5px solid var(--text);
  border-radius: 50px;
  color: var(--text);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: #fff;
  transition: all .22s;
}
.btn-shipping svg {
  flex-shrink: 0;
}
.btn-shipping:hover {
  background: var(--text);
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, .12);
}
@media (max-width: 600px) {
  .hero-shipping-cta {
    padding: 16px 16px 40px;
  }
  .btn-shipping {
    font-size: 13px;
    padding: 12px 24px;
  }
}
