/* =============================================================
   プラスチックパレット株式会社 トップページ・全体共通CSS
   設置場所: /wp-content/themes/lightning-child-sample/assets/css/pp-top.css
   スコープ: .pp-top で完全に閉じ込める
   ============================================================= */

@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Inter:wght@700;900&display=swap');

/* =========================================================
   .pp-top スコープ：トップページ専用CSS
   .sf-article（記事ページ）とは完全独立
   ========================================================= */
.pp-top * {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
.pp-top {
  font-family: 'Noto Sans JP', sans-serif;
  color: #1a1a1a;
  line-height: 1.7;
  background: #f5f7fa;
}
.pp-top img { max-width: 100%; height: auto; display: block; }
.pp-top a { color: inherit; text-decoration: none; }

/* ===== カラーパレット ===== */
.pp-top {
  --pp-orange: #FF6B1A;
  --pp-orange-dark: #E55510;
  --pp-navy: #0F2A4A;
  --pp-navy-light: #1E4070;
  --pp-yellow: #FFD60A;
  --pp-gray-50: #f5f7fa;
  --pp-gray-100: #e8edf3;
  --pp-gray-200: #d1d9e3;
  --pp-gray-500: #6b7280;
  --pp-gray-800: #1f2937;
  --pp-white: #ffffff;
  --pp-red: #DC2626;
}

/* ===== ヘッダー ===== */
.pp-top .pp-header {
  background: var(--pp-white);
  border-bottom: 3px solid var(--pp-orange);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.pp-top .pp-header-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.pp-top .pp-logo {
  display: flex;
  align-items: center;
}
.pp-top .pp-logo img {
  height: 52px;
  width: auto;
  display: block;
}
.pp-top .pp-header-cta { display: flex; align-items: center; gap: 14px; }
.pp-top .pp-tel {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--pp-navy);
  font-weight: 900;
  font-size: 22px;
  font-family: 'Inter', 'Noto Sans JP', sans-serif;
}
.pp-top .pp-tel small {
  display: block;
  font-size: 10px;
  color: var(--pp-gray-500);
  font-weight: 500;
  font-family: 'Noto Sans JP', sans-serif;
}
.pp-top .pp-btn-contact {
  background: var(--pp-orange);
  color: var(--pp-white);
  padding: 14px 24px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
  box-shadow: 0 4px 12px rgba(255,107,26,0.3);
}
.pp-top .pp-btn-contact:hover {
  background: var(--pp-orange-dark);
  transform: translateY(-1px);
}

/* ハンバーガーボタン（モバイル） */
.pp-top .pp-hamburger {
  display: none;
  width: 44px;
  height: 44px;
  border: none;
  background: var(--pp-navy);
  color: var(--pp-white);
  border-radius: 6px;
  cursor: pointer;
  padding: 0;
  position: relative;
}
.pp-top .pp-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--pp-white);
  margin: 5px auto;
  transition: transform 0.3s, opacity 0.3s;
}
.pp-top .pp-hamburger.is-open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.pp-top .pp-hamburger.is-open span:nth-child(2) { opacity: 0; }
.pp-top .pp-hamburger.is-open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== グローバルナビ（強化版） ===== */
.pp-top .pp-gnav {
  background: var(--pp-navy);
  color: var(--pp-white);
  position: relative;
}
.pp-top .pp-gnav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
}
.pp-top .pp-gnav-item {
  position: relative;
}
.pp-top .pp-gnav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 18px 22px;
  font-size: 14px;
  font-weight: 700;
  color: var(--pp-white);
  border-right: 1px solid rgba(255,255,255,0.08);
  transition: background 0.2s, color 0.2s;
  position: relative;
  cursor: pointer;
  text-decoration: none;
  background: transparent;
  border-top: none;
  border-bottom: none;
  border-left: none;
  font-family: inherit;
  line-height: 1;
}
.pp-top .pp-gnav-link::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: var(--pp-orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.2s;
}
.pp-top .pp-gnav-item:hover > .pp-gnav-link,
.pp-top .pp-gnav-item.is-active > .pp-gnav-link {
  background: var(--pp-navy-light);
  color: var(--pp-yellow);
}
.pp-top .pp-gnav-item:hover > .pp-gnav-link::after,
.pp-top .pp-gnav-item.is-active > .pp-gnav-link::after {
  transform: scaleX(1);
}
.pp-top .pp-gnav-link .pp-arrow {
  font-size: 10px;
  opacity: 0.7;
  transition: transform 0.2s;
}
.pp-top .pp-gnav-item:hover .pp-arrow { transform: rotate(180deg); }

/* ナビCTA（お気軽にお問い合わせ） */
.pp-top .pp-gnav-cta {
  margin-left: auto;
  display: flex;
  align-items: center;
}
.pp-top .pp-gnav-cta a {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 18px 22px;
  background: var(--pp-orange);
  color: var(--pp-white);
  font-weight: 700;
  font-size: 14px;
  transition: background 0.2s;
}
.pp-top .pp-gnav-cta a:hover { background: var(--pp-orange-dark); }

/* ドロップダウンメニュー */
.pp-top .pp-gnav-sub {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 280px;
  background: var(--pp-white);
  border-top: 3px solid var(--pp-orange);
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  list-style: none;
  margin: 0;
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 0.2s, visibility 0.2s, transform 0.2s;
  z-index: 10;
}
.pp-top .pp-gnav-item:hover .pp-gnav-sub {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.pp-top .pp-gnav-sub li { margin: 0; }
.pp-top .pp-gnav-sub a {
  display: block;
  padding: 11px 20px;
  font-size: 13px;
  color: var(--pp-gray-800);
  font-weight: 500;
  transition: background 0.15s, color 0.15s, padding-left 0.15s;
  border-left: 3px solid transparent;
}
.pp-top .pp-gnav-sub a:hover {
  background: var(--pp-gray-50);
  color: var(--pp-orange);
  border-left-color: var(--pp-orange);
  padding-left: 24px;
}

/* ===== ヒーローセクション ===== */
.pp-top .pp-hero {
  background: linear-gradient(135deg, var(--pp-navy) 0%, var(--pp-navy-light) 100%);
  color: var(--pp-white);
  padding: 60px 24px 80px;
  position: relative;
  overflow: hidden;
}
.pp-top .pp-hero::before {
  content: '';
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background-image: 
    repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(255,255,255,0.02) 40px, rgba(255,255,255,0.02) 80px);
  pointer-events: none;
}
.pp-top .pp-hero-inner {
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.pp-top .pp-hero-badge {
  display: inline-block;
  background: var(--pp-yellow);
  color: var(--pp-navy);
  padding: 6px 16px;
  border-radius: 4px;
  font-weight: 900;
  font-size: 13px;
  margin-bottom: 20px;
  letter-spacing: 0.05em;
}
.pp-top .pp-hero h1 {
  font-size: 44px;
  line-height: 1.3;
  font-weight: 900;
  margin-bottom: 16px;
}
.pp-top .pp-hero h1 em {
  font-style: normal;
  color: var(--pp-yellow);
}
.pp-top .pp-hero-sub {
  font-size: 18px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
}
.pp-top .pp-hero-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 36px;
}
.pp-top .pp-hero-feature {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 8px;
  padding: 18px 20px;
  backdrop-filter: blur(10px);
}
.pp-top .pp-hero-feature-num {
  font-family: 'Inter', sans-serif;
  font-size: 32px;
  font-weight: 900;
  color: var(--pp-yellow);
  line-height: 1;
  margin-bottom: 6px;
}
.pp-top .pp-hero-feature-label {
  font-size: 13px;
  color: rgba(255,255,255,0.85);
}
.pp-top .pp-hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }
.pp-top .pp-hero-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 16px;
  transition: transform 0.2s, box-shadow 0.2s;
}
.pp-top .pp-hero-btn-primary {
  background: var(--pp-orange);
  color: var(--pp-white);
  box-shadow: 0 6px 20px rgba(255,107,26,0.4);
}
.pp-top .pp-hero-btn-secondary {
  background: var(--pp-white);
  color: var(--pp-navy);
}
.pp-top .pp-hero-btn:hover { transform: translateY(-2px); box-shadow: 0 10px 24px rgba(0,0,0,0.2); }

/* ===== 用途別エントリーポイント（5カード） ===== */
.pp-top .pp-entry {
  max-width: 1280px;
  margin: -40px auto 0;
  padding: 0 24px;
  position: relative;
  z-index: 2;
}
.pp-top .pp-entry-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 12px;
}
.pp-top .pp-entry-card {
  background: var(--pp-white);
  border-radius: 10px;
  padding: 24px 16px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15,42,74,0.1);
  transition: transform 0.2s, box-shadow 0.2s;
  border-top: 4px solid var(--pp-orange);
}
.pp-top .pp-entry-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,42,74,0.15);
}
.pp-top .pp-entry-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 12px;
  background: var(--pp-gray-50);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
}
.pp-top .pp-entry-card h3 {
  font-size: 15px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 6px;
}
.pp-top .pp-entry-card p {
  font-size: 12px;
  color: var(--pp-gray-500);
  line-height: 1.5;
}

/* ===== メインレイアウト（2カラム） ===== */
.pp-top .pp-main {
  max-width: 1280px;
  margin: 60px auto 0;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 36px;
}
.pp-top .pp-content { min-width: 0; }
.pp-top .pp-sidebar { min-width: 0; }

/* ===== セクション共通 ===== */
.pp-top .pp-section { margin-bottom: 60px; }
.pp-top .pp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
  padding-bottom: 14px;
  border-bottom: 3px solid var(--pp-navy);
}
.pp-top .pp-section-title {
  font-size: 24px;
  font-weight: 900;
  color: var(--pp-navy);
  display: flex;
  align-items: center;
  gap: 10px;
}
.pp-top .pp-section-title::before {
  content: '';
  width: 6px;
  height: 28px;
  background: var(--pp-orange);
  border-radius: 3px;
}
.pp-top .pp-section-link {
  font-size: 13px;
  color: var(--pp-orange);
  font-weight: 700;
}

/* ===== 中国製 緊急輸入販売（PRE-ORDER 2カード） ===== */
.pp-top .pp-import-section {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  padding: 28px 24px 32px;
  border-radius: 12px;
  border: 1px solid #fecaca;
  position: relative;
}
.pp-top .pp-import-section::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pp-red) 0%, var(--pp-orange) 100%);
  border-radius: 12px 12px 0 0;
}
.pp-top .pp-import-section .pp-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 8px;
}
.pp-top .pp-import-section .pp-section-title {
  color: var(--pp-red);
}
.pp-top .pp-import-headline {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--pp-white);
  background: var(--pp-red);
  padding: 5px 14px;
  border-radius: 999px;
  letter-spacing: 0.04em;
  white-space: nowrap;
}
.pp-top .pp-import-lead {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--pp-gray-800);
  margin: 4px 0 18px;
}
.pp-top .pp-import-lead strong {
  color: var(--pp-red);
  background: linear-gradient(transparent 65%, #fef3c7 65%);
  padding: 0 2px;
}
.pp-top .pp-import-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.pp-top .pp-import-card {
  background: var(--pp-white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(15,42,74,0.08);
  border: 1px solid var(--pp-gray-100);
  border-top: 4px solid var(--pp-red);
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
  position: relative;
}
.pp-top .pp-import-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 30px rgba(220,38,38,0.18);
  border-top-color: var(--pp-orange);
}
.pp-top .pp-import-flag {
  position: absolute;
  top: 12px; left: 12px;
  display: flex;
  gap: 6px;
  z-index: 2;
}
.pp-top .pp-import-flag-tag {
  background: var(--pp-red);
  color: var(--pp-white);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  font-family: 'Oswald', sans-serif;
}
.pp-top .pp-import-flag-date {
  background: var(--pp-yellow);
  color: var(--pp-navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 3px;
  letter-spacing: 0.08em;
  font-family: 'Oswald', sans-serif;
}
.pp-top .pp-import-img {
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  background: var(--pp-gray-50);
}
.pp-top .pp-import-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.pp-top .pp-import-card:hover .pp-import-img img {
  transform: scale(1.05);
}
.pp-top .pp-import-body {
  padding: 18px 20px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pp-top .pp-import-cat {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--pp-red);
  margin-bottom: 8px;
  display: block;
}
.pp-top .pp-import-body h3 {
  font-size: 1.05rem;
  font-weight: 800;
  line-height: 1.5;
  color: var(--pp-navy);
  margin: 0 0 14px;
}
.pp-top .pp-import-spec {
  list-style: none;
  padding: 14px 16px;
  margin: 0 0 14px;
  background: var(--pp-gray-50);
  border-radius: 6px;
  border-left: 3px solid var(--pp-red);
}
.pp-top .pp-import-spec li {
  display: flex;
  align-items: baseline;
  gap: 10px;
  font-size: 0.86rem;
  line-height: 1.6;
  padding: 4px 0;
}
.pp-top .pp-import-spec li + li {
  border-top: 1px dashed var(--pp-gray-200);
  padding-top: 6px;
  margin-top: 2px;
}
.pp-top .pp-import-spec li span {
  flex: 0 0 64px;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--pp-gray-500);
  letter-spacing: 0.06em;
}
.pp-top .pp-import-spec li strong {
  flex: 1;
  font-weight: 700;
  color: var(--pp-gray-800);
}
.pp-top .pp-import-cta {
  margin-top: auto;
  padding: 10px 16px;
  background: var(--pp-navy);
  color: var(--pp-white);
  font-size: 0.88rem;
  font-weight: 700;
  text-align: center;
  border-radius: 6px;
  letter-spacing: 0.04em;
  transition: background 0.2s;
}
.pp-top .pp-import-card:hover .pp-import-cta {
  background: var(--pp-red);
}
.pp-top .pp-import-note {
  font-size: 0.78rem;
  color: var(--pp-gray-500);
  margin: 14px 0 0;
  text-align: center;
}

/* ===== 緊急キャンペーン（横3カード・統一デザイン） ===== */
.pp-top .pp-urgent-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pp-top .pp-urgent-card {
  background: var(--pp-white);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 2px 6px rgba(15,42,74,0.06);
  transition: all 0.3s;
  position: relative;
  border: 1px solid var(--pp-gray-100);
  display: flex;
  flex-direction: column;
}
.pp-top .pp-urgent-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgba(15,42,74,0.14);
  border-color: var(--pp-orange);
}
.pp-top .pp-urgent-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--pp-red);
  color: var(--pp-white);
  padding: 5px 12px;
  border-radius: 4px;
  font-size: 11px;
  font-weight: 700;
  z-index: 2;
  letter-spacing: 0.05em;
  box-shadow: 0 2px 6px rgba(220,38,38,0.3);
}
.pp-top .pp-urgent-img {
  aspect-ratio: 4/3;
  background: var(--pp-white);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  border-bottom: 1px solid var(--pp-gray-100);
  overflow: hidden;
}
.pp-top .pp-urgent-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pp-top .pp-urgent-body {
  padding: 18px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.pp-top .pp-urgent-card h3 {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.6;
  color: var(--pp-gray-800);
  margin: 0 0 14px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  flex: 1;
}
.pp-top .pp-urgent-price {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--pp-orange);
  line-height: 1;
  padding-top: 12px;
  border-top: 1px dashed var(--pp-gray-200);
}
.pp-top .pp-urgent-price small {
  font-size: 11px;
  color: var(--pp-gray-500);
  font-weight: 500;
  margin-left: 4px;
  font-family: 'Noto Sans JP', sans-serif;
}

/* ズーム表示クラス（被写体が小さい商品画像用） */
.pp-top .pp-urgent-img.pp-img-zoom,
.pp-top .pp-product-img.pp-img-zoom {
  padding: 0;
}
.pp-top .pp-urgent-img.pp-img-zoom img,
.pp-top .pp-product-img.pp-img-zoom img {
  transform: scale(1.45);
  transform-origin: center;
}

/* ===== 価格帯別タブ ===== */
.pp-top .pp-tabs {
  display: flex;
  gap: 4px;
  margin-bottom: 20px;
  border-bottom: 2px solid var(--pp-gray-200);
  flex-wrap: wrap;
}
.pp-top .pp-tab {
  padding: 12px 22px;
  background: transparent;
  border: none;
  font-family: inherit;
  font-size: 14px;
  font-weight: 700;
  color: var(--pp-gray-500);
  cursor: pointer;
  border-bottom: 3px solid transparent;
  margin-bottom: -2px;
  transition: color 0.2s, border-color 0.2s;
}
.pp-top .pp-tab.is-active {
  color: var(--pp-orange);
  border-bottom-color: var(--pp-orange);
}
.pp-top .pp-tab:hover:not(.is-active) { color: var(--pp-navy); }

.pp-top .pp-tab-panel { display: none; }
.pp-top .pp-tab-panel.is-active { display: block; }

.pp-top .pp-product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pp-top .pp-product-card {
  background: var(--pp-white);
  border: 1px solid var(--pp-gray-100);
  border-radius: 12px;
  padding: 18px;
  box-shadow: 0 2px 6px rgba(15,42,74,0.05);
  transition: all 0.3s;
  display: flex;
  flex-direction: column;
}
.pp-top .pp-product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 24px rgba(15,42,74,0.12);
  border-color: var(--pp-orange);
}
.pp-top .pp-product-img {
  aspect-ratio: 4/3;
  background: var(--pp-white);
  border: 1px solid var(--pp-gray-100);
  border-radius: 8px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  overflow: hidden;
}
.pp-top .pp-product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.pp-top .pp-product-img span {
  font-size: 12px;
  color: var(--pp-gray-500);
}
.pp-top .pp-product-card h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-gray-800);
  margin: 0 0 8px;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 39px;
}
.pp-top .pp-product-meta {
  font-size: 11px;
  color: var(--pp-gray-500);
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--pp-gray-200);
}
.pp-top .pp-product-price {
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--pp-orange);
  margin-top: auto;
  line-height: 1;
}
.pp-top .pp-product-price small {
  font-size: 11px;
  color: var(--pp-gray-500);
  font-weight: 500;
  margin-left: 3px;
}

/* ===== 当社の3つの強み ===== */
.pp-top .pp-reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.pp-top .pp-reason-card {
  background: var(--pp-white);
  border-radius: 12px;
  padding: 28px 24px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  position: relative;
  border-top: 4px solid var(--pp-orange);
  transition: transform 0.2s, box-shadow 0.2s;
}
.pp-top .pp-reason-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}
.pp-top .pp-reason-num {
  font-family: 'Inter', sans-serif;
  font-size: 36px;
  font-weight: 900;
  color: var(--pp-orange);
  line-height: 1;
  margin-bottom: 14px;
  opacity: 0.9;
}
.pp-top .pp-reason-card h3 {
  font-size: 17px;
  font-weight: 900;
  color: var(--pp-navy);
  margin: 0 0 12px;
  line-height: 1.4;
}
.pp-top .pp-reason-card p {
  font-size: 13px;
  line-height: 1.8;
  color: var(--pp-gray-800);
  margin: 0 0 14px;
}
.pp-top .pp-reason-card p strong {
  color: var(--pp-orange);
  font-weight: 700;
}
.pp-top .pp-reason-list {
  list-style: none;
  margin: 0;
  padding: 12px 0 0;
  border-top: 1px dashed var(--pp-gray-200);
}
.pp-top .pp-reason-list li {
  font-size: 12px;
  color: var(--pp-gray-800);
  padding: 5px 0;
  font-weight: 500;
}

/* ===== 最新お知らせ ===== */
.pp-top .pp-news-list {
  background: var(--pp-white);
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.05);
  overflow: hidden;
}
.pp-top .pp-news-item {
  display: grid;
  grid-template-columns: 100px 80px 1fr;
  gap: 16px;
  padding: 16px 24px;
  border-bottom: 1px solid var(--pp-gray-100);
  align-items: center;
  transition: background 0.15s;
}
.pp-top .pp-news-item:last-child { border-bottom: none; }
.pp-top .pp-news-item:hover { background: var(--pp-gray-50); }
.pp-top .pp-news-date {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-gray-500);
}
.pp-top .pp-news-cat {
  font-size: 11px;
  font-weight: 700;
  text-align: center;
  padding: 4px 10px;
  border-radius: 12px;
  background: var(--pp-navy);
  color: var(--pp-white);
}
.pp-top .pp-news-title {
  font-size: 14px;
  font-weight: 500;
  color: var(--pp-gray-800);
  line-height: 1.5;
  transition: color 0.15s;
}
.pp-top .pp-news-item:hover .pp-news-title { color: var(--pp-orange); }

/* ===== コンテナ・物流資材セクション ===== */
.pp-top .pp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.pp-top .pp-feature-card {
  background: var(--pp-white);
  border-radius: 10px;
  padding: 24px;
  box-shadow: 0 2px 10px rgba(0,0,0,0.06);
  display: flex;
  gap: 18px;
  transition: transform 0.2s;
}
.pp-top .pp-feature-card:hover { transform: translateY(-2px); }
.pp-top .pp-feature-img {
  width: 100px;
  height: 100px;
  flex-shrink: 0;
  background: var(--pp-gray-100);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--pp-gray-500);
  font-size: 11px;
}
.pp-top .pp-feature-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--pp-navy);
  margin-bottom: 8px;
}
.pp-top .pp-feature-card p {
  font-size: 13px;
  color: var(--pp-gray-500);
  line-height: 1.6;
  margin-bottom: 10px;
}
.pp-top .pp-feature-link {
  font-size: 13px;
  color: var(--pp-orange);
  font-weight: 700;
}

/* ===== 会社紹介 ===== */
.pp-top .pp-about {
  background: var(--pp-white);
  border-radius: 12px;
  padding: 36px;
  border-left: 6px solid var(--pp-orange);
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
}
.pp-top .pp-about h2 {
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  color: var(--pp-navy);
  margin-bottom: 16px;
}
.pp-top .pp-about p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--pp-gray-800);
  margin-bottom: 16px;
}
.pp-top .pp-about-sign {
  text-align: right;
  font-weight: 700;
  color: var(--pp-navy);
  font-size: 14px;
}
.pp-top .pp-about-sign small {
  display: block;
  font-size: 12px;
  color: var(--pp-gray-500);
  font-weight: 500;
}

/* ===== サイドバー ===== */
.pp-top .pp-side-block {
  background: var(--pp-white);
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 20px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}
.pp-top .pp-side-block.is-sticky {
  position: sticky;
  top: 90px;
}
.pp-top .pp-side-title {
  font-size: 15px;
  font-weight: 900;
  color: var(--pp-navy);
  padding-bottom: 10px;
  margin-bottom: 14px;
  border-bottom: 2px solid var(--pp-orange);
}

/* お問い合わせサイド固定 */
.pp-top .pp-side-contact {
  background: linear-gradient(135deg, var(--pp-navy), var(--pp-navy-light));
  color: var(--pp-white);
  padding: 22px;
}
.pp-top .pp-side-contact .pp-side-title {
  color: var(--pp-white);
  border-bottom-color: var(--pp-yellow);
}
.pp-top .pp-side-contact-tel {
  font-family: 'Inter', sans-serif;
  font-size: 26px;
  font-weight: 900;
  color: var(--pp-yellow);
  display: block;
  margin-bottom: 4px;
  line-height: 1.1;
}
.pp-top .pp-side-contact-hours {
  font-size: 11px;
  color: rgba(255,255,255,0.8);
  margin-bottom: 14px;
}
.pp-top .pp-side-contact-btn {
  display: block;
  background: var(--pp-orange);
  color: var(--pp-white);
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 8px;
  transition: background 0.2s;
}
.pp-top .pp-side-contact-btn:hover { background: var(--pp-orange-dark); }
.pp-top .pp-side-contact-btn.is-secondary {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
}
.pp-top .pp-side-contact-btn.is-secondary:hover { background: rgba(255,255,255,0.2); }

/* サイズ別検索 */
.pp-top .pp-size-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
}
.pp-top .pp-size-list a {
  display: block;
  padding: 10px 8px;
  background: var(--pp-gray-50);
  border-radius: 6px;
  font-size: 12px;
  font-weight: 700;
  color: var(--pp-navy);
  text-align: center;
  transition: background 0.2s, color 0.2s;
  border: 1px solid var(--pp-gray-100);
}
.pp-top .pp-size-list a:hover {
  background: var(--pp-orange);
  color: var(--pp-white);
  border-color: var(--pp-orange);
}

/* 注目記事 */
.pp-top .pp-article-list { list-style: none; }
.pp-top .pp-article-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--pp-gray-100);
}
.pp-top .pp-article-list li:last-child { border-bottom: none; }
.pp-top .pp-article-list a {
  display: block;
  font-size: 13px;
  font-weight: 500;
  color: var(--pp-gray-800);
  line-height: 1.5;
  transition: color 0.2s;
}
.pp-top .pp-article-list a:hover { color: var(--pp-orange); }
.pp-top .pp-article-meta {
  display: block;
  font-size: 11px;
  color: var(--pp-gray-500);
  margin-top: 4px;
}

/* カテゴリーリンク */
.pp-top .pp-cat-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.pp-top .pp-cat-list a {
  display: block;
  padding: 8px 10px;
  font-size: 12px;
  color: var(--pp-gray-800);
  border-radius: 4px;
  transition: background 0.2s;
}
.pp-top .pp-cat-list a:hover { background: var(--pp-gray-50); color: var(--pp-orange); }

/* ===== ③ 中国製 緊急輸入販売（PRE-ORDER） ===== */
.pp-top .pp-side-import {
  background: linear-gradient(135deg, #fef2f2 0%, #fff7ed 100%);
  border: 1px solid #fecaca;
  position: relative;
  overflow: hidden;
}
.pp-top .pp-side-import::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pp-red) 0%, var(--pp-orange) 100%);
}
.pp-top .pp-side-import-flag {
  display: inline-block;
  background: var(--pp-red);
  color: var(--pp-white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 4px 10px;
  border-radius: 3px;
  margin-bottom: 10px;
}
.pp-top .pp-side-import .pp-side-title {
  color: var(--pp-red);
  font-size: 16px;
}
.pp-top .pp-side-import-lead {
  font-size: 0.78rem;
  line-height: 1.7;
  color: var(--pp-gray-800);
  margin: 0 0 14px;
}
.pp-top .pp-side-import-lead strong {
  color: var(--pp-red);
  background: linear-gradient(transparent 65%, #fef3c7 65%);
  padding: 0 2px;
  font-weight: 700;
}
.pp-top .pp-side-import-card {
  display: flex;
  gap: 10px;
  background: var(--pp-white);
  border-radius: 6px;
  padding: 10px;
  margin-bottom: 8px;
  text-decoration: none;
  color: inherit;
  border: 1px solid var(--pp-gray-100);
  transition: all 0.25s;
  align-items: center;
}
.pp-top .pp-side-import-card:hover {
  border-color: var(--pp-red);
  box-shadow: 0 4px 12px rgba(220,38,38,0.12);
  transform: translateX(2px);
}
.pp-top .pp-side-import-img {
  flex: 0 0 64px;
  width: 64px;
  height: 64px;
  border-radius: 4px;
  overflow: hidden;
  background: var(--pp-gray-50);
}
.pp-top .pp-side-import-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-top .pp-side-import-body {
  flex: 1;
  min-width: 0;
}
.pp-top .pp-side-import-cat {
  display: block;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: var(--pp-red);
  margin-bottom: 2px;
}
.pp-top .pp-side-import-name {
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--pp-navy);
  margin: 0 0 4px;
}
.pp-top .pp-side-import-price {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: var(--pp-red);
  letter-spacing: 0.01em;
}
.pp-top .pp-side-import-price small {
  font-size: 0.65em;
  color: var(--pp-gray-500);
  font-weight: 500;
  margin-left: 2px;
}
.pp-top .pp-side-import-note {
  font-size: 0.7rem;
  color: var(--pp-gray-500);
  text-align: center;
  margin: 8px 0 0;
  letter-spacing: 0.04em;
}
.pp-top .pp-side-import-note::before {
  content: '※ ';
}

/* ===== ⑦ 九州・四国エリア対応（コンパクト版） ===== */
.pp-top .pp-side-area {
  background: linear-gradient(135deg, #FFF8E7 0%, #FFEFC9 100%);
  border-left: 4px solid var(--pp-orange);
}
.pp-top .pp-side-area-lead {
  font-size: 13px;
  line-height: 1.6;
  color: var(--pp-gray-800);
  margin: 0 0 12px;
}
.pp-top .pp-side-area-lead strong {
  color: var(--pp-orange);
  font-weight: 900;
  font-size: 15px;
}
.pp-top .pp-side-area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 12px;
}
.pp-top .pp-side-area-tag {
  display: inline-block;
  background: var(--pp-white);
  color: var(--pp-navy);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 8px;
  border-radius: 12px;
  border: 1px solid var(--pp-gray-100);
}
.pp-top .pp-side-area-text {
  font-size: 11px;
  line-height: 1.6;
  color: var(--pp-gray-500);
  margin: 0;
}

/* ===== フッター ===== */
.pp-top .pp-footer {
  background: var(--pp-navy);
  color: var(--pp-white);
  padding: 60px 24px 24px;
  margin-top: 60px;
}
.pp-top .pp-footer-inner {
  max-width: 1280px;
  margin: 0 auto;
}

/* 代表メッセージ（フル幅） */
.pp-top .pp-footer-message {
  padding-bottom: 32px;
  margin-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.pp-top .pp-footer-profile {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  background: rgba(255,255,255,0.04);
  border-left: 4px solid var(--pp-orange);
  border-radius: 8px;
  padding: 24px 28px;
}
.pp-top .pp-footer-profile-icon {
  width: 64px;
  height: 64px;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--pp-orange), var(--pp-orange-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  color: var(--pp-white);
}
.pp-top .pp-footer-profile-text { flex: 1; min-width: 0; }
.pp-top .pp-footer-profile-text strong {
  font-size: 18px;
  font-weight: 900;
  color: var(--pp-yellow);
  margin-right: 12px;
}
.pp-top .pp-footer-profile-text span {
  font-size: 12px;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}
.pp-top .pp-footer-profile-text p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 8px 0 0;
}

/* 6カラムリンクエリア */
.pp-top .pp-footer-top {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr 1.1fr 0.9fr;
  gap: 28px;
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.pp-top .pp-footer-block h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--pp-yellow);
  margin: 0 0 16px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(255,255,255,0.2);
  letter-spacing: 0.05em;
}
.pp-top .pp-footer-block p {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.85);
  margin: 0 0 8px;
}
.pp-top .pp-footer-block ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pp-top .pp-footer-block li { margin-bottom: 6px; }
.pp-top .pp-footer-block li a {
  display: block;
  font-size: 12px;
  color: rgba(255,255,255,0.85);
  padding: 3px 0;
  transition: color 0.2s, padding-left 0.2s;
}
.pp-top .pp-footer-block li a::before {
  content: '›';
  margin-right: 6px;
  color: var(--pp-orange);
  opacity: 0.7;
}
.pp-top .pp-footer-block li a:hover {
  color: var(--pp-yellow);
  padding-left: 4px;
}

/* 会社情報dl */
.pp-top .pp-footer-company {
  margin: 0 0 16px;
  padding: 0;
}
.pp-top .pp-footer-company dt {
  font-size: 10px;
  color: rgba(255,255,255,0.55);
  font-weight: 700;
  margin-top: 8px;
  letter-spacing: 0.05em;
}
.pp-top .pp-footer-company dt:first-child { margin-top: 0; }
.pp-top .pp-footer-company dd {
  font-size: 12px;
  color: rgba(255,255,255,0.9);
  margin: 2px 0 0;
  line-height: 1.5;
}
.pp-top .pp-footer-block-btn {
  display: block;
  text-align: center;
  padding: 9px 12px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
  color: var(--pp-white);
  font-size: 12px;
  font-weight: 700;
  border-radius: 6px;
  transition: background 0.2s;
}
.pp-top .pp-footer-block-btn:hover {
  background: var(--pp-orange);
  border-color: var(--pp-orange);
  color: var(--pp-white);
}

/* 対応エリアバッジ */
.pp-top .pp-footer-areas {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.pp-top .pp-footer-area {
  display: inline-block;
  font-size: 11px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: rgba(255,255,255,0.9);
  padding: 4px 9px;
  border-radius: 12px;
}

/* お問い合わせブロック */
.pp-top .pp-footer-contact-tel {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 22px;
  font-weight: 900;
  color: var(--pp-yellow);
  line-height: 1.2;
  margin-bottom: 4px;
}
.pp-top .pp-footer-contact-hours {
  font-size: 11px;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.pp-top .pp-footer-contact-btn {
  display: block;
  background: var(--pp-orange);
  color: var(--pp-white);
  text-align: center;
  padding: 10px;
  border-radius: 6px;
  font-weight: 700;
  font-size: 12px;
  margin-bottom: 8px;
  transition: background 0.2s;
}
.pp-top .pp-footer-contact-btn:hover { background: var(--pp-orange-dark); color: var(--pp-white); }
.pp-top .pp-footer-contact-btn.is-secondary {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.25);
}
.pp-top .pp-footer-contact-btn.is-secondary:hover { background: rgba(255,255,255,0.15); }

.pp-top .pp-copyright {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.15);
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  text-align: center;
  line-height: 1.8;
}
.pp-top .pp-copyright a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* ===== レスポンシブ（タブレット） ===== */
@media (max-width: 1024px) {
  .pp-top .pp-main {
    grid-template-columns: 1fr;
  }
  .pp-top .pp-side-block.is-sticky { position: static; }
  .pp-top .pp-entry-grid { grid-template-columns: repeat(3, 1fr); }
  .pp-top .pp-hero h1 { font-size: 36px; }
  .pp-top .pp-reason-grid { grid-template-columns: 1fr; }
  .pp-top .pp-footer-top { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .pp-top .pp-footer-block.is-wide { grid-column: 1 / -1; }
  .pp-top .pp-footer-profile { flex-direction: column; }
}

/* ===== レスポンシブ（モバイル） ===== */
@media (max-width: 900px) {
  /* ヘッダーの電話・CTA非表示、ハンバーガー表示 */
  .pp-top .pp-header-cta .pp-tel,
  .pp-top .pp-header-cta .pp-btn-contact { display: none; }
  .pp-top .pp-hamburger { display: block; }

  /* ナビ全体を折り畳み */
  .pp-top .pp-gnav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s;
  }
  .pp-top .pp-gnav.is-open {
    max-height: 80vh;
    overflow-y: auto;
  }
  .pp-top .pp-gnav-inner {
    flex-direction: column;
    padding: 0;
  }
  .pp-top .pp-gnav-item {
    width: 100%;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .pp-top .pp-gnav-link {
    width: 100%;
    padding: 16px 24px;
    border-right: none;
    justify-content: space-between;
  }
  .pp-top .pp-gnav-cta { margin-left: 0; width: 100%; }
  .pp-top .pp-gnav-cta a { width: 100%; padding: 18px 24px; justify-content: center; }
  /* モバイルではドロップダウンを通常表示に */
  .pp-top .pp-gnav-sub {
    position: static;
    box-shadow: none;
    border-top: none;
    background: rgba(0,0,0,0.2);
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
    padding: 0;
  }
  .pp-top .pp-gnav-item.is-open .pp-gnav-sub { display: block; }
  .pp-top .pp-gnav-sub a {
    color: rgba(255,255,255,0.85);
    padding: 12px 36px;
  }
  .pp-top .pp-gnav-sub a:hover {
    background: rgba(255,255,255,0.05);
    color: var(--pp-yellow);
    border-left-color: var(--pp-yellow);
  }
}

@media (max-width: 640px) {
  .pp-top .pp-header-inner { padding: 12px 16px; }
  .pp-top .pp-logo { font-size: 15px; }
  .pp-top .pp-logo small { font-size: 10px; }
  .pp-top .pp-hero { padding: 40px 16px 60px; }
  .pp-top .pp-hero h1 { font-size: 26px; }
  .pp-top .pp-hero-sub { font-size: 14px; }
  .pp-top .pp-hero-features { grid-template-columns: 1fr; gap: 10px; }
  .pp-top .pp-entry { padding: 0 16px; }
  .pp-top .pp-entry-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-top .pp-main { padding: 0 16px; gap: 30px; margin-top: 40px; }
  .pp-top .pp-section-title { font-size: 18px; }
  .pp-top .pp-urgent-grid { grid-template-columns: 1fr; }
  .pp-top .pp-import-grid { grid-template-columns: 1fr; }
  .pp-top .pp-import-section { padding: 22px 16px 24px; }
  .pp-top .pp-import-section .pp-section-header { gap: 6px; }
  .pp-top .pp-import-headline { font-size: 0.74rem; padding: 4px 10px; }
  .pp-top .pp-import-body h3 { font-size: 0.98rem; }
  .pp-top .pp-product-grid { grid-template-columns: repeat(2, 1fr); }
  .pp-top .pp-feature-grid { grid-template-columns: 1fr; }
  .pp-top .pp-feature-card { flex-direction: column; }
  .pp-top .pp-feature-img { width: 100%; height: 140px; }
  .pp-top .pp-reason-grid { grid-template-columns: 1fr; gap: 12px; }
  .pp-top .pp-reason-card { padding: 20px 18px; }
  .pp-top .pp-news-item {
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 14px 16px;
  }
  .pp-top .pp-news-cat { justify-self: start; }
  .pp-top .pp-about { padding: 24px; }
  .pp-top .pp-footer { padding: 40px 16px 20px; }
  .pp-top .pp-footer-top { grid-template-columns: 1fr; gap: 28px; }
  .pp-top .pp-tab { padding: 10px 14px; font-size: 12px; }
}

/* ===== アーカイブ・検索結果・404 共通 ===== */
.pp-top .pp-archive-header {
  margin-bottom: 28px;
  padding-bottom: 20px;
  border-bottom: 3px solid var(--pp-orange);
}
.pp-top .pp-archive-title {
  font-size: 28px;
  font-weight: 900;
  color: var(--pp-navy);
  line-height: 1.4;
  margin: 0 0 10px;
}
.pp-top .pp-archive-desc {
  font-size: 14px;
  color: var(--pp-gray-500);
  line-height: 1.7;
}
.pp-top .pp-archive-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}
.pp-top .pp-archive-item {
  background: var(--pp-white);
  border-radius: 8px;
  border: 1px solid var(--pp-gray-100);
  overflow: hidden;
  transition: all 0.25s;
}
.pp-top .pp-archive-item:hover {
  border-color: var(--pp-orange);
  box-shadow: 0 6px 18px rgba(15,42,74,0.1);
  transform: translateY(-2px);
}
.pp-top .pp-archive-link {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 18px;
  padding: 16px;
  text-decoration: none;
  color: inherit;
  align-items: center;
}
.pp-top .pp-archive-thumb {
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: 6px;
  background: var(--pp-gray-50);
}
.pp-top .pp-archive-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pp-top .pp-archive-body {
  min-width: 0;
}
.pp-top .pp-archive-date {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-size: 12px;
  letter-spacing: 0.06em;
  color: var(--pp-orange);
  font-weight: 700;
  margin-bottom: 6px;
}
.pp-top .pp-archive-item-title {
  font-size: 17px;
  font-weight: 700;
  line-height: 1.55;
  color: var(--pp-navy);
  margin: 0 0 8px;
}
.pp-top .pp-archive-excerpt {
  font-size: 13px;
  line-height: 1.75;
  color: var(--pp-gray-800);
  margin: 0;
}
.pp-top .pp-archive-empty {
  padding: 28px;
  background: var(--pp-gray-50);
  border-radius: 8px;
  text-align: center;
  color: var(--pp-gray-500);
  font-size: 14px;
  line-height: 1.85;
}
.pp-top .pp-archive-nav {
  margin-top: 36px;
  text-align: center;
}
.pp-top .pp-archive-nav .nav-links {
  display: inline-flex;
  gap: 6px;
  flex-wrap: wrap;
  justify-content: center;
}
.pp-top .pp-archive-nav a,
.pp-top .pp-archive-nav .current {
  display: inline-block;
  padding: 8px 14px;
  background: var(--pp-white);
  border: 1px solid var(--pp-gray-200);
  border-radius: 4px;
  color: var(--pp-navy);
  font-weight: 700;
  text-decoration: none;
  font-size: 14px;
  transition: all 0.2s;
}
.pp-top .pp-archive-nav a:hover {
  background: var(--pp-orange);
  border-color: var(--pp-orange);
  color: var(--pp-white);
}
.pp-top .pp-archive-nav .current {
  background: var(--pp-navy);
  border-color: var(--pp-navy);
  color: var(--pp-white);
}
.pp-top .pp-archive-searchform {
  margin-top: 20px;
}
.pp-top .pp-archive-searchform .search-form {
  display: flex;
  gap: 8px;
}
.pp-top .pp-archive-searchform .search-field {
  flex: 1;
  padding: 10px 14px;
  border: 1px solid var(--pp-gray-200);
  border-radius: 6px;
  font-size: 14px;
}
.pp-top .pp-archive-searchform .search-submit {
  padding: 10px 22px;
  background: var(--pp-orange);
  color: var(--pp-white);
  border: none;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s;
}
.pp-top .pp-archive-searchform .search-submit:hover {
  background: var(--pp-orange-dark);
}
.pp-top .pp-404-body {
  padding: 8px 0;
}
.pp-top .pp-404-list {
  list-style: none;
  margin: 16px 0 28px;
  padding: 0;
  display: grid;
  gap: 8px;
}
.pp-top .pp-404-list li a {
  display: block;
  padding: 14px 18px;
  background: var(--pp-gray-50);
  border-left: 4px solid var(--pp-orange);
  border-radius: 0 6px 6px 0;
  color: var(--pp-navy);
  font-weight: 700;
  text-decoration: none;
  transition: all 0.2s;
}
.pp-top .pp-404-list li a:hover {
  background: var(--pp-orange);
  color: var(--pp-white);
}

/* ===== モバイル ===== */
@media (max-width: 740px) {
  .pp-top .pp-archive-link {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .pp-top .pp-archive-thumb {
    max-width: 100%;
    aspect-ratio: 16 / 9;
  }
  .pp-top .pp-archive-title {
    font-size: 22px;
  }
  .pp-top .pp-archive-item-title {
    font-size: 15px;
  }
}
