/* ==========================================================================
   TOP 2026 REVAMP — ZEAMI Goods index テコ入れ
   目的: 初見3秒で「1個から作れるオリジナルグッズ印刷所」と伝わるトップへ。
   既存ブランド色(オレンジ/ティール/深緑/クリーム)と
   コミックポップな造形(太枠+ずらし影+ドット地)を踏襲。
   プレフィックス .t26- で既存CSSと衝突しない。モバイルファースト。
   ========================================================================== */

:root {
  --t26-orange: #ff7900;
  --t26-orange-deep: #e56d00;
  --t26-teal: #01b4be;
  --t26-teal-pale: #e6f7f8;
  --t26-green: #014646;
  --t26-cream: #fffaea;
  --t26-cream-deep: #f8efd1;
  --t26-pink: #ff0150;
  --t26-pink-pale: #ffe5e5;
  --t26-white: #ffffff;
  --t26-ink: #2b2b2b;
  --t26-radius: 16px;
  --t26-border: 3px solid var(--t26-green);
}

/* ---------- 共通 ---------- */
.t26-section { padding: 34px 4% 40px; }
.t26-inner { max-width: 1200px; margin: 0 auto; }

.t26-h2 {
  text-align: center;
  font-size: clamp(22px, 4.6vw, 32px);
  font-weight: 800;
  color: var(--t26-green);
  line-height: 1.35;
  margin: 0 0 8px;
  letter-spacing: 0.04em;
}
.t26-h2 .t26-h2-accent { color: var(--t26-orange); }
.t26-h2-sub {
  text-align: center;
  font-size: clamp(13px, 3vw, 15px);
  color: #666;
  margin: 0 0 26px;
  font-weight: 600;
}

/* ボタン */
.t26-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 800;
  font-size: clamp(15px, 3.6vw, 17px);
  line-height: 1.2;
  padding: 15px 30px;
  border-radius: 999px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease;
  box-sizing: border-box;
}
.t26-btn-primary {
  background: var(--t26-orange);
  color: #fff !important;
  border: 3px solid var(--t26-green);
  box-shadow: 4px 4px 0 var(--t26-green);
}
.t26-btn-primary:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 var(--t26-green); }
.t26-btn-secondary {
  background: #fff;
  color: var(--t26-green) !important;
  border: 3px solid var(--t26-green);
  box-shadow: 4px 4px 0 rgba(1, 70, 70, .18);
}
.t26-btn-secondary:hover { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(1, 70, 70, .18); }
.t26-btn .t26-arrow { font-size: 0.9em; }

/* 上質なクリームグラデーション地 (ドット柄は使用禁止) */
.t26-soft {
  background: linear-gradient(165deg, #fffdf6 0%, #fff8e6 55%, #fff3d6 100%);
}

/* ==========================================================================
   1. HERO — 3秒で「何のサイトか」
   ========================================================================== */
#t26Hero {
  position: relative;
  overflow: hidden;
  padding: 30px 5% 40px;
}
.t26-hero-grid {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

/* 実績バッジ列 */
.t26-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 0 14px;
  padding: 0;
  list-style: none;
  justify-content: flex-start;
}
.t26-hero-badges li {
  background: #fff;
  border: 2px solid var(--t26-green);
  color: var(--t26-green);
  border-radius: 999px;
  font-size: clamp(11px, 2.7vw, 13px);
  font-weight: 700;
  padding: 5px 12px;
  box-shadow: 2px 2px 0 rgba(1, 70, 70, .15);
}

.t26-hero-kicker {
  font-size: clamp(13px, 3.2vw, 16px);
  font-weight: 800;
  color: var(--t26-teal);
  letter-spacing: .06em;
  margin: 0 0 6px;
}
#t26Hero h1 {
  font-size: clamp(30px, 8vw, 54px);
  font-weight: 900;
  line-height: 1.22;
  color: var(--t26-green);
  margin: 0 0 14px;
  letter-spacing: .02em;
}
#t26Hero h1 .t26-hero-em {
  color: var(--t26-orange);
  font-style: normal;
  background: linear-gradient(transparent 68%, #ffe2c4 68%);
  padding: 0 2px;
}
.t26-hero-lead {
  font-size: clamp(14px, 3.4vw, 17px);
  line-height: 1.9;
  color: #444;
  font-weight: 600;
  margin: 0 0 22px;
  max-width: 34em;
}
.t26-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-bottom: 18px;
}
/* リンクなしバナー(ボタンと誤認させない静的ラベル) */
.t26-hero-banner {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 800;
  font-size: clamp(14px, 3.4vw, 16px);
  line-height: 1.2;
  padding: 15px 26px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--t26-teal) 0%, #019aa3 100%);
  color: #fff;
  letter-spacing: .05em;
  box-sizing: border-box;
}
.t26-hero-banner::before { content: "◎"; font-size: 1.05em; opacity: .9; }

.t26-hero-notes {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px 18px;
}
.t26-hero-notes li {
  font-size: clamp(11px, 2.8vw, 13px);
  color: var(--t26-green);
  font-weight: 700;
}
.t26-hero-notes li::before { content: "✓ "; color: var(--t26-orange); font-weight: 900; }

/* HERO ビジュアル: カテゴリ画像のコラージュ */
.t26-hero-visual {
  position: relative;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  align-self: stretch;
}
.t26-hero-visual .t26-hv-card {
  background: #fff;
  border: 3px solid var(--t26-green);
  border-radius: 14px;
  box-shadow: 5px 5px 0 rgba(1, 70, 70, .16);
  overflow: hidden;
  transform: rotate(var(--tilt, 0deg));
  animation: t26float 6s ease-in-out infinite;
  animation-delay: var(--delay, 0s);
}
.t26-hero-visual .t26-hv-card img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1 / 1;
}
@keyframes t26float {
  0%, 100% { translate: 0 0; }
  50% { translate: 0 -7px; }
}
@media (prefers-reduced-motion: reduce) {
  .t26-hero-visual .t26-hv-card { animation: none; }
  .t26-btn { transition: none; }
}

@media screen and (min-width: 900px) {
  .t26-hero-grid { flex-direction: row; align-items: center; gap: 48px; }
  .t26-hero-copy { flex: 1 1 55%; }
  .t26-hero-visual { flex: 1 1 45%; }
}

/* ==========================================================================
   2. カテゴリカード — なにをつくる？
   ========================================================================== */
#t26Category { background: #fff; }
.t26-cat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  list-style: none;
  margin: 0;
  padding: 0;
}
@media screen and (min-width: 700px) { .t26-cat-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; } }

.t26-cat-card { margin: 0; }
.t26-cat-card a {
  display: flex;
  flex-direction: column;
  height: 100%;
  background: #fff;
  border: var(--t26-border);
  border-radius: var(--t26-radius);
  overflow: hidden;
  text-decoration: none;
  color: var(--t26-ink);
  box-shadow: 5px 5px 0 var(--t26-cream-deep);
  transition: transform .15s ease, box-shadow .15s ease;
}
.t26-cat-card a:hover { transform: translate(-2px, -4px); box-shadow: 8px 9px 0 var(--t26-cream-deep); }
.t26-cat-card:nth-child(3n+1) a { box-shadow: 5px 5px 0 var(--t26-pink-pale); }
.t26-cat-card:nth-child(3n+1) a:hover { box-shadow: 8px 9px 0 var(--t26-pink-pale); }
.t26-cat-card:nth-child(3n+2) a { box-shadow: 5px 5px 0 var(--t26-teal-pale); }
.t26-cat-card:nth-child(3n+2) a:hover { box-shadow: 8px 9px 0 var(--t26-teal-pale); }

.t26-cat-thumb {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--t26-cream);
  border-bottom: 3px solid var(--t26-green);
}
.t26-cat-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .3s ease;
}
.t26-cat-card a:hover .t26-cat-thumb img { transform: scale(1.05); }

.t26-cat-body { padding: 12px 14px 14px; display: flex; flex-direction: column; gap: 4px; flex: 1; }
.t26-cat-name {
  font-size: clamp(14px, 3.4vw, 18px);
  font-weight: 800;
  color: var(--t26-green);
  margin: 0;
  line-height: 1.3;
}
.t26-cat-price {
  margin: 0;
  font-size: clamp(12px, 3vw, 14px);
  color: #777;
  font-weight: 600;
}
.t26-cat-price strong {
  color: var(--t26-orange);
  font-size: clamp(18px, 4.4vw, 24px);
  font-weight: 900;
  padding-right: 1px;
}
.t26-cat-count {
  margin: auto 0 0;
  font-size: clamp(10px, 2.6vw, 12px);
  color: var(--t26-teal);
  font-weight: 700;
}

/* ==========================================================================
   3. かんたん3ステップ
   ========================================================================== */
#t26Steps { }
.t26-steps {
  display: grid;
  grid-template-columns: 1fr;
  gap: 16px;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
  counter-reset: t26step;
}
@media screen and (min-width: 760px) { .t26-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; } }

.t26-step {
  position: relative;
  background: #fff;
  border: var(--t26-border);
  border-radius: var(--t26-radius);
  padding: 30px 18px 20px;
  box-shadow: 5px 5px 0 rgba(1, 70, 70, .12);
}
.t26-step::before {
  counter-increment: t26step;
  content: counter(t26step);
  position: absolute;
  top: -18px;
  left: 14px;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--t26-orange);
  color: #fff;
  border: 3px solid #fff;
  box-shadow: 0 3px 6px rgba(1, 70, 70, .25);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  font-weight: 900;
  transform: rotate(-8deg);
}
.t26-step:nth-child(2)::before { background: var(--t26-teal); }
.t26-step:nth-child(3)::before { background: var(--t26-pink); }
.t26-step-title {
  font-size: clamp(16px, 3.8vw, 19px);
  font-weight: 800;
  color: var(--t26-green);
  margin: 0 0 8px;
}
.t26-step-desc {
  font-size: clamp(13px, 3.1vw, 14px);
  line-height: 1.85;
  color: #555;
  margin: 0;
  font-weight: 500;
}
.t26-steps-cta { text-align: center; }

/* ==========================================================================
   4. FAQ 抜粋
   ========================================================================== */
#t26Faq { background: #fff; }
.t26-faq-list { max-width: 860px; margin: 0 auto 24px; }
.t26-faq-item {
  background: var(--t26-cream);
  border: 2px solid var(--t26-green);
  border-radius: 12px;
  margin-bottom: 12px;
  overflow: hidden;
}
.t26-faq-item summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 16px;
  font-size: clamp(14px, 3.4vw, 16px);
  font-weight: 800;
  color: var(--t26-green);
}
.t26-faq-item summary::-webkit-details-marker { display: none; }
.t26-faq-item summary::before {
  content: "Q";
  flex: 0 0 auto;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--t26-orange);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 900;
  font-size: 15px;
}
.t26-faq-item summary::after {
  content: "+";
  margin-left: auto;
  font-size: 22px;
  font-weight: 900;
  color: var(--t26-orange);
  transition: transform .2s ease;
}
.t26-faq-item[open] summary::after { transform: rotate(45deg); }
.t26-faq-a {
  padding: 0 16px 16px 54px;
  font-size: clamp(13px, 3.1vw, 14.5px);
  line-height: 1.9;
  color: #444;
  font-weight: 500;
}
.t26-faq-more { text-align: center; }

/* ==========================================================================
   5. 選ばれる理由 — スタイリッシュな3カード
   ========================================================================== */
#Reasons.t26-section { background: #fff; }
.t26-reasons {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  list-style: none;
  margin: 10px 0 0;
  padding: 0;
  counter-reset: t26reason;
}
@media screen and (min-width: 820px) { .t26-reasons { grid-template-columns: repeat(3, 1fr); gap: 28px; } }

.t26-reason {
  --accent: var(--t26-orange);
  position: relative;
  background: #fff;
  border-radius: 18px;
  padding: 30px 26px 28px;
  box-shadow: 0 12px 34px rgba(1, 70, 70, .10);
  overflow: hidden;
  transition: transform .2s ease, box-shadow .2s ease;
}
.t26-reason:hover { transform: translateY(-4px); box-shadow: 0 18px 42px rgba(1, 70, 70, .14); }
.t26-reason::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent) 0%, var(--accent) 45%, rgba(255, 255, 255, 0) 100%);
}
.t26-reason::after {
  /* 大きな透かし番号 */
  counter-increment: t26reason;
  content: "0" counter(t26reason);
  position: absolute;
  right: 10px;
  bottom: -18px;
  font-size: 96px;
  font-weight: 900;
  line-height: 1;
  color: var(--accent);
  opacity: .07;
  letter-spacing: -.04em;
  pointer-events: none;
}
.t26-reason--pink { --accent: var(--t26-pink); }
.t26-reason--teal { --accent: var(--t26-teal); }

.t26-reason-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .22em;
  color: var(--accent);
  margin-bottom: 12px;
}
.t26-reason h3 {
  font-size: clamp(16px, 3.9vw, 19px);
  font-weight: 800;
  color: var(--t26-green);
  line-height: 1.45;
  margin: 0 0 12px;
}
.t26-reason p {
  font-size: clamp(13px, 3.1vw, 14.5px);
  line-height: 1.95;
  color: #555;
  margin: 0;
  font-weight: 500;
}

/* キャンペーンスライダーをヒーロー直下に置いた際の余白調整 */
#firstView { padding-top: 6px; }
