/* ==========================================================================
   Tシャツトリニティ 公式ブログ テーマ
   本体サイトの common.css の上に重ねる。ブログ固有の様式は必ず .tt-blog 配下に閉じる(SPEC §14)。
   html は 62.5%(10px) 基準、本体の body は 16px / #444。
   ========================================================================== */

/* ---- アクセント(audience と設定で切替) ---- */
/* 公式ブログ=ペタの赤 / クリエイター向けブログ=ポタの水色を少し濃くした色(2026-09-17 ユーザー指示) */
.tt-blog.tt-audience-creator { --tt-accent: var(--tt-pota-deep); --tt-accent-bg: var(--tt-pota-bg); --tt-accent-ink: var(--tt-pota-ink); }
.tt-blog.tt-accent-red     { --tt-accent: var(--tt-peta); --tt-accent-bg: var(--tt-red-bg); --tt-accent-ink: var(--tt-peta); }
.tt-blog.tt-accent-teal    { --tt-accent: var(--tt-pota-deep); --tt-accent-bg: var(--tt-pota-bg); --tt-accent-ink: var(--tt-pota-ink); }

/* ---- 本体CSSとの折り合い ---- */
.tt-blog #contents { height: auto; min-height: 60vh; background: #fff; }
.tt-blog .tt-main__inner { padding-top: 0; }
.tt-blog .tt-cols { display: flow-root; padding-bottom: 60px; }
.tt-blog #side.tt-side { padding-top: 24px; }
.tt-blog .tt-col-main { padding-top: 24px; min-height: 400px; }
.tt-blog a { color: var(--tt-ink-main); }
.tt-blog .screen-reader-text { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.tt-blog img { max-width: 100%; height: auto; }

/* ---- サブナビ(§5): 本体の head-nav の直下。特集一覧のタブに寄せる ---- */
.tt-subnav { background: #fff; border-bottom: 1px solid #e5e5e5; }
.tt-subnav__inner { margin: 0 auto; width: var(--tt-inner); max-width: 100%; }
.tt-subnav__list { display: flex; margin: 0; padding: 0; list-style: none; font-size: 15px; }
.tt-subnav__item a { display: block; padding: 14px 28px 12px; color: var(--tt-ink-main); text-decoration: none; border-bottom: 3px solid transparent; font-weight: 500; transition: color .2s; }
.tt-subnav__item a:hover { color: var(--tt-accent-ink); text-decoration: none; }
.tt-subnav__item.is-current a { color: var(--tt-accent-ink); border-bottom-color: var(--tt-accent); font-weight: 700; }
.tt-subnav__label { display: block; line-height: 1.3; }
.tt-subnav__sub { display: block; font-size: 11px; font-weight: 400; color: var(--tt-ink-faint); line-height: 1.3; margin-top: 3px; }
.tt-subnav__item.is-current .tt-subnav__sub { color: var(--tt-ink-muted); }

/* ---- パンくず: 本体 .topicpath に従う。上書きなし ---- */

/* ---- 一覧ヘッダ ---- */
.tt-listhead { margin: 0 0 20px; }
.tt-listhead__ttl { font-size: var(--tt-fs-h2); font-weight: 700; line-height: var(--tt-lh-tight); margin: 0 0 6px; color: var(--tt-ink); }
.tt-listhead__sub { font-size: var(--tt-fs-md); color: var(--tt-ink-muted); margin: 0; }

/* ---- カテゴリタブ(本体 .tab__nav に寄せた自前クラス) ---- */
.tt-tabs { margin: 0 0 24px; border-bottom: 1px solid #e5e5e5; }
/* PC: 入りきらない分は折り返す。SP(≤767px)だけ横スクロール(下の @media) */
.tt-tabs__list { display: flex; flex-wrap: wrap; gap: 0; margin: 0; padding: 0; list-style: none; }
.tt-tabs__item { flex: 0 0 auto; }
.tt-tabs__item a { display: block; padding: 10px 16px; font-size: 14px; color: var(--tt-ink-main); text-decoration: none; border-bottom: 3px solid transparent; margin-bottom: -1px; white-space: nowrap; }
.tt-tabs__item a:hover { color: var(--tt-accent-ink); }
.tt-tabs__item.is-active a { color: var(--tt-accent-ink); border-bottom-color: var(--tt-accent); font-weight: 700; }

/* ---- カードグリッド(本体 .product__list のカード比率に寄せる) ---- */
.tt-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 28px 20px; margin: 0 0 32px; }
.tt-card { position: relative; }
.tt-card a { display: block; color: inherit; text-decoration: none; }
.tt-card__pic { aspect-ratio: 600 / 345; overflow: hidden; background: var(--tt-bg-warm); border-radius: var(--tt-radius-lg); }
.tt-card__pic img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .25s; }
.tt-card a:hover .tt-card__pic img { transform: scale(1.03); }
.tt-card__body { padding: 10px 2px 0; }
.tt-card__cat { display: inline-block; font-size: var(--tt-fs-xs); color: var(--tt-accent-ink); border: 1px solid currentColor; padding: 1px 8px; border-radius: var(--tt-radius-pill); margin: 0 0 6px; line-height: 1.6; }
.tt-card__ttl { font-size: 15px; font-weight: 700; line-height: 1.55; margin: 0 0 6px; color: var(--tt-ink); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tt-card a:hover .tt-card__ttl { color: var(--tt-accent-ink); }
.tt-card__date { font-size: var(--tt-fs-sm); color: var(--tt-ink-faint); font-variant-numeric: tabular-nums; }
.tt-empty { padding: 40px 0; color: var(--tt-ink-muted); }

/* ---- ページャー(本体 #pager-pc の見た目) ---- */
.tt-pager ul { display: flex; justify-content: center; gap: 6px; list-style: none; margin: 8px 0 40px; padding: 0; }
.tt-pager__item a, .tt-pager__item span { display: flex; align-items: center; justify-content: center; min-width: 36px; height: 36px; padding: 0 8px; border: 1px solid #ddd; border-radius: var(--tt-radius-md); background: #fff; color: var(--tt-ink-main); font-size: 14px; text-decoration: none; }
.tt-pager__item a:hover { border-color: var(--tt-accent); color: var(--tt-accent-ink); }
.tt-pager__item.is-current span { background: var(--tt-ink-main); color: #fff; border-color: var(--tt-ink-main); }
.tt-pager__item.is-dots span { border: 0; }
.tt-pager__item.is-prev a::before, .tt-pager__item.is-next a::before { content: ""; width: 8px; height: 8px; border: solid currentColor; border-width: 0 0 2px 2px; transform: rotate(45deg); }
.tt-pager__item.is-next a::before { transform: rotate(-135deg); }

/* ---- サイド(§7): 本体 #side / side__ttl / side__list__cat を借り、足りない部品だけ定義 ---- */
.tt-side__search { display: flex; margin: 0 0 30px; border: 1px solid #ccc; border-radius: var(--tt-radius-md); background: #fff; overflow: hidden; }
.tt-side__search:focus-within { border-color: var(--tt-accent); }
.tt-side__search input { flex: 1; min-width: 0; border: 0; padding: 10px 12px; font-size: 14px; font-family: inherit; background: transparent; outline: none; }
.tt-side__search button { width: 44px; border: 0; background: var(--tt-ink-main); cursor: pointer; position: relative; }
.tt-side__search__icon { position: absolute; left: 50%; top: 50%; width: 12px; height: 12px; margin: -8px 0 0 -8px; border: 2px solid #fff; border-radius: 50%; }
.tt-side__search__icon::after { content: ""; position: absolute; width: 2px; height: 7px; background: #fff; right: -5px; bottom: -6px; transform: rotate(-45deg); }
.tt-blog .tt-side__cat > li a span { border-bottom: 1px solid #eee; }
.tt-blog .tt-side__cat > li.side__list__item--active > a span { color: var(--tt-accent-ink); font-weight: 700; border-left: 3px solid var(--tt-accent); }
.tt-side__rank { list-style: none; margin: 0 0 34px; padding: 0; counter-reset: rank; }
.tt-side__rank a { display: grid; grid-template-columns: 20px 80px 1fr; gap: 8px; align-items: center; padding: 8px 4px; font-size: 13px; line-height: 1.5; color: var(--tt-ink-main); text-decoration: none; border-bottom: 1px solid #eee; }
.tt-side__rank__no { font-weight: 700; color: var(--tt-accent-ink); font-size: 14px; text-align: center; font-variant-numeric: tabular-nums; }
.tt-side__rank img { width: 80px; height: 46px; object-fit: cover; display: block; background: var(--tt-bg-warm); border-radius: var(--tt-radius-sm); }
.tt-side__rank__ttl { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tt-side__new { list-style: none; margin: 0 0 34px; padding: 0; }
.tt-side__new a { display: block; padding: 9px 4px; font-size: 13px; line-height: 1.5; color: var(--tt-ink-main); text-decoration: none; border-bottom: 1px solid #eee; }
.tt-side__new a:hover .tt-side__new__ttl { color: var(--tt-accent-ink); }
.tt-side__new time { display: block; font-size: 11px; color: var(--tt-ink-faint); margin-top: 2px; }
.tt-side__bnr { margin: 0 0 30px; }
.tt-side__bnr img { border-radius: var(--tt-radius-md); }

/* ---- 記事(§9) ---- */
.tt-post__head { margin: 0 0 20px; }
.tt-post__cat { margin: 0 0 10px; }
.tt-post__cat a { display: inline-block; font-size: var(--tt-fs-sm); color: var(--tt-accent-ink); border: 1px solid currentColor; padding: 2px 10px; border-radius: var(--tt-radius-pill); text-decoration: none; line-height: 1.6; }
.tt-post__ttl { font-size: var(--tt-fs-h1); font-weight: 700; line-height: 1.45; margin: 0 0 10px; color: var(--tt-ink); text-wrap: balance; }
.tt-post__meta { font-size: var(--tt-fs-sm); color: var(--tt-ink-faint); margin: 0; font-variant-numeric: tabular-nums; }
.tt-post__meta__upd { margin-left: 12px; }
.tt-post__eyecatch { margin: 0 0 28px; }
.tt-post__eyecatch img { width: 100%; height: auto; display: block; border-radius: var(--tt-radius-xl); }

/* 本文コンテナ: トークンはここから内側だけに効かせる */
.tt-article { font-size: var(--tt-fs-lg); line-height: var(--tt-lh-article); color: var(--tt-ink); max-width: 100%; overflow-wrap: anywhere; }
.tt-article > * { margin-top: 0; margin-bottom: 1.4em; }
.tt-article > *:last-child { margin-bottom: 0; }
.tt-article p { margin-bottom: 1.4em; }
.tt-article a { color: var(--tt-accent-ink); text-decoration: underline; text-underline-offset: 3px; }
.tt-article h2 { font-size: var(--tt-fs-h2); font-weight: 700; line-height: 1.4; margin: 2.2em 0 .9em; padding: 0 0 .4em; border-bottom: 2px solid var(--tt-ink); }
.tt-article h3 { font-size: var(--tt-fs-h3); font-weight: 700; line-height: 1.45; margin: 1.8em 0 .8em; padding-left: .7em; border-left: 4px solid var(--tt-accent); }
.tt-article h4 { font-size: var(--tt-fs-xl); font-weight: 700; margin: 1.5em 0 .6em; }
.tt-article img { max-width: 100%; height: auto; display: block; margin: 0 auto; border-radius: var(--tt-radius-md); }
.tt-article figure { margin: 0 0 1.6em; }
.tt-article figcaption { font-size: var(--tt-fs-sm); color: var(--tt-ink-muted); text-align: center; margin-top: .5em; }
.tt-article .wp-block-image.aligncenter { text-align: center; }
.tt-article ul, .tt-article ol { padding-left: 1.6em; }
.tt-article li { margin-bottom: .4em; }
.tt-article li::marker { color: var(--tt-accent); }
.tt-article blockquote, .tt-article .wp-block-quote { margin: 0 0 1.6em; padding: 1em 1.4em; background: var(--tt-bg-warm); border-left: 4px solid var(--tt-line); border-radius: var(--tt-radius-md); font-style: normal; }
.tt-article .wp-block-quote p:last-child { margin-bottom: 0; }
.tt-article .wp-block-table { overflow-x: auto; border-radius: var(--tt-radius-md); border: 1px solid var(--tt-line); }
.tt-article .wp-block-table table { border: 0; }
.tt-article .wp-block-table th, .tt-article .wp-block-table td { border-width: 0 0 1px 1px; }
.tt-article .wp-block-table tr > :first-child { border-left: 0; }
.tt-article .wp-block-table tr:last-child > * { border-bottom: 0; }
.tt-article table { width: 100%; border-collapse: collapse; font-size: var(--tt-fs-base); line-height: 1.6; }
.tt-article th, .tt-article td { border: 1px solid var(--tt-line); padding: .6em .8em; text-align: left; vertical-align: top; }
.tt-article th { background: var(--tt-bg-warm); font-weight: 700; }
.tt-article .wp-block-separator { border: 0; border-top: 1px solid var(--tt-line); margin: 2.4em auto; width: 100%; }
.tt-article .wp-block-media-text { gap: 20px; }
.tt-article .wp-block-embed iframe { max-width: 100%; border-radius: var(--tt-radius-md); }
.tt-article .wp-block-embed__wrapper { position: relative; }
.tt-article .wp-block-buttons .wp-block-button__link, .tt-article .tt-btn { display: inline-block; padding: .8em 1.8em; border-radius: var(--tt-radius-pill); background: var(--tt-accent); color: #fff; font-weight: 700; text-decoration: none; line-height: 1.4; }
.tt-article .wp-block-file a:not(.wp-block-file__button) { word-break: break-all; }
.tt-article .has-text-align-center { text-align: center; }
.tt-article strong { font-weight: 700; }
.tt-article mark, .tt-article .has-inline-color { background: transparent; }
/* creator側は長文向けに少しだけ広く */
.tt-audience-creator .tt-article { line-height: 2.05; }

/* 目次(creator側で自動挿入) */
.tt-toc { background: var(--tt-bg-cream); border: 1px solid var(--tt-line); border-radius: var(--tt-radius-lg); padding: 18px 22px; margin: 0 0 2em; font-size: var(--tt-fs-base); }
.tt-toc__ttl { font-weight: 700; margin: 0 0 8px; font-size: var(--tt-fs-lg); }
.tt-toc ol { margin: 0; padding-left: 1.4em; counter-reset: toc; list-style: none; }
.tt-toc > ol > li { counter-increment: toc; position: relative; margin-bottom: 4px; }
.tt-toc > ol > li::before { content: counter(toc) "."; position: absolute; left: -1.4em; color: var(--tt-accent-ink); font-weight: 700; font-variant-numeric: tabular-nums; }
.tt-toc__sub { padding-left: 1.2em; margin: 2px 0 6px; font-size: var(--tt-fs-md); }
.tt-toc__sub li::before { content: "–"; margin-right: .4em; color: var(--tt-ink-faint); }
.tt-toc a { color: var(--tt-ink); text-decoration: none; }
.tt-toc a:hover { color: var(--tt-accent-ink); text-decoration: underline; }

/* パターン: 商品カード/グリッド/発掘枠/セール/締切/クレジット/注記/FAQ */
.tt-article .tt-product-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 24px 16px; margin: 0 0 2em; }
.tt-article .tt-product-card { margin: 0; }
.tt-article .tt-product-card a { color: inherit; text-decoration: none; display: block; }
.tt-article .tt-product-card img { aspect-ratio: 1; object-fit: cover; width: 100%; background: var(--tt-bg-warm); margin: 0 0 8px; border-radius: var(--tt-radius-lg); }
.tt-article .tt-product-card__name { display: block; font-size: var(--tt-fs-base); font-weight: 700; line-height: 1.5; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tt-article .tt-product-card__shop { display: block; font-size: var(--tt-fs-sm); color: var(--tt-ink-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tt-article .tt-discovery { display: grid; grid-template-columns: 220px 1fr; gap: 20px; align-items: center; padding: 20px; background: var(--tt-bg-cream); border: 1px solid var(--tt-line); border-radius: var(--tt-radius-xl); margin: 0 0 2em; }
.tt-article .tt-discovery img { width: 100%; aspect-ratio: 1; object-fit: cover; margin: 0; border-radius: var(--tt-radius-lg); }
.tt-article .tt-discovery__eyebrow { font-size: var(--tt-fs-sm); color: var(--tt-accent-ink); font-weight: 700; letter-spacing: .06em; margin: 0 0 6px; }
.tt-article .tt-discovery__name { font-size: var(--tt-fs-h3); font-weight: 700; line-height: 1.45; margin: 0 0 4px; display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.tt-article .tt-discovery__shop { font-size: var(--tt-fs-md); color: var(--tt-ink-muted); margin: 0 0 10px; }
.tt-article .tt-discovery__text { font-size: var(--tt-fs-base); margin: 0; }
.tt-article .tt-sale-banner { margin: 0 0 2em; text-align: center; }
.tt-article .tt-sale-banner img { width: 100%; border-radius: var(--tt-radius-lg); }
.tt-article .tt-sale-banner__period { font-size: var(--tt-fs-md); color: var(--tt-ink-muted); margin: .6em 0 0; }
.tt-article .tt-deadline { display: inline-block; background: var(--tt-red-bg); color: var(--tt-sale); font-weight: 700; padding: .35em 1em; border-radius: var(--tt-radius-pill); font-size: var(--tt-fs-base); }
.tt-article .tt-creator-credit { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border: 1px solid var(--tt-line); border-radius: var(--tt-radius-md); background: #fff; font-size: var(--tt-fs-base); }
.tt-article .tt-creator-credit__label { font-size: var(--tt-fs-xs); color: var(--tt-ink-muted); display: block; }
.tt-article .tt-note { padding: 14px 18px; background: var(--tt-bg-warm); border-left: 4px solid var(--tt-line); border-radius: var(--tt-radius-md); font-size: var(--tt-fs-base); }
.tt-article .tt-note--alert { background: var(--tt-red-bg); border-left-color: var(--tt-sale); }
.tt-article .tt-faq { margin: 0 0 2em; }
.tt-article .tt-faq__item { border: 1px solid var(--tt-line); border-radius: var(--tt-radius-md); margin: 0 0 8px; padding: 0; overflow: hidden; }
.tt-article .tt-faq__item summary { cursor: pointer; padding: 14px 18px 14px 44px; font-weight: 700; position: relative; list-style: none; font-size: var(--tt-fs-base); }
.tt-article .tt-faq__item summary::-webkit-details-marker { display: none; }
.tt-article .tt-faq__item summary::before { content: "Q"; position: absolute; left: 16px; top: 13px; color: var(--tt-accent-ink); font-weight: 700; }
.tt-article .tt-faq__item > div { padding: 0 18px 16px 44px; font-size: var(--tt-fs-base); position: relative; }
.tt-article .tt-faq__item > div::before { content: "A"; position: absolute; left: 16px; top: 0; color: var(--tt-ink-muted); font-weight: 700; }
.tt-article .tt-faq__item > div p:last-child { margin-bottom: 0; }

/* ---- 相互送客(§5) ---- */
.tt-cta { display: grid; grid-template-columns: 1fr 260px; gap: 24px; margin: 56px 0 40px; padding: 24px; background: var(--tt-accent-bg); border: 1px solid transparent; border-radius: var(--tt-radius-xl); }
.tt-cta__eyebrow { font-size: var(--tt-fs-h3); font-weight: 700; color: var(--tt-ink); margin: 0 0 8px; line-height: 1.4; }
.tt-cta__text { font-size: var(--tt-fs-base); line-height: 1.8; margin: 0 0 14px; color: var(--tt-ink); }
.tt-cta__btn { margin: 0; }
.tt-btn { display: inline-block; padding: 12px 26px; border-radius: var(--tt-radius-pill); border: 1px solid var(--tt-ink-main); color: var(--tt-ink-main); background: #fff; font-weight: 700; font-size: 14px; text-decoration: none; line-height: 1.4; }
.tt-btn--primary { background: var(--tt-accent); border-color: var(--tt-accent); color: #fff; }
.tt-btn:hover { opacity: .85; text-decoration: none; }
.tt-cta__other { border-left: 1px solid rgba(0,0,0,.08); padding-left: 24px; font-size: 13px; }
.tt-cta__other__ttl { font-weight: 700; margin: 0 0 8px; }
.tt-cta__other ul { list-style: none; margin: 0 0 8px; padding: 0; }
.tt-cta__other li { margin: 0 0 6px; line-height: 1.5; }
.tt-cta__other a { color: var(--tt-ink-main); text-decoration: none; }
.tt-cta__other a:hover { color: var(--tt-accent-ink); text-decoration: underline; }
.tt-cta__other__more { margin: 0; }
.tt-cta__other__more a { color: var(--tt-accent-ink); font-weight: 700; }
.tt-products { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 12px; margin: 0 0 14px; }
.tt-product a { display: block; color: inherit; text-decoration: none; font-size: 12px; line-height: 1.4; }
.tt-product img { width: 100%; aspect-ratio: 1; object-fit: cover; background: #fff; display: block; margin: 0 0 4px; border-radius: var(--tt-radius-md); }
.tt-product__name { display: block; font-weight: 700; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.tt-product__shop { display: block; color: var(--tt-ink-muted); white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

/* ---- 関連・前後・SPカテゴリ ---- */
/* 本文の底辺と記事末尾の部品の間は必ず空ける(本文が自前フッターで終わる記事でも詰まらない) */
.tt-post + .tt-related, .tt-post + .tt-cta, .tt-post + .tt-adjacent { margin-top: 56px; }
.tt-related { margin-top: 56px; }
.tt-cta + .tt-related { margin-top: 0; }
.tt-section__ttl { font-size: var(--tt-fs-h3); font-weight: 700; margin: 0 0 16px; padding: 0 0 8px; border-bottom: 2px solid var(--tt-ink); }
.tt-section__more { text-align: right; margin: -16px 0 32px; font-size: 13px; }
.tt-section__more a { color: var(--tt-accent-ink); font-weight: 700; }
.tt-adjacent { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 0 0 40px; }
.tt-adjacent a { display: block; padding: 14px 16px; border: 1px solid #ddd; border-radius: var(--tt-radius-lg); color: var(--tt-ink-main); text-decoration: none; font-size: 13px; line-height: 1.5; }
.tt-adjacent a:hover { border-color: var(--tt-accent); }
.tt-adjacent__next { text-align: right; grid-column: 2; }
.tt-adjacent__label { display: block; font-size: 11px; color: var(--tt-ink-faint); margin-bottom: 4px; }
.tt-adjacent__ttl { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; font-weight: 700; }
.tt-spcat { display: none; }
.tt-spcat__list { display: flex; flex-wrap: wrap; gap: 8px; list-style: none; margin: 0 0 32px; padding: 0; }
.tt-spcat__list a { display: block; padding: 8px 14px; border: 1px solid #ddd; border-radius: var(--tt-radius-pill); font-size: 13px; color: var(--tt-ink-main); text-decoration: none; background: #fff; }

/* ---- 検索フォーム(searchform.php) ---- */
.tt-searchform { display: flex; gap: 8px; margin: 0 0 24px; }
.tt-searchform input { flex: 1; min-width: 0; padding: 10px 14px; border: 1px solid #ccc; border-radius: var(--tt-radius-md); font-size: 14px; font-family: inherit; }
.tt-searchform button { padding: 10px 18px; border: 0; border-radius: var(--tt-radius-md); background: var(--tt-ink-main); color: #fff; font-weight: 700; cursor: pointer; }

/* ---- 取得失敗時の最低限ヘッダ ---- */
.tt-fallback-header { background: #fff; border-bottom: 1px solid #e5e5e5; }
.tt-fallback-header .header__inner { width: var(--tt-inner); max-width: 100%; margin: 0 auto; padding: 12px 16px; }
.tt-fallback-footer { background: #333; color: #fff; text-align: center; padding: 24px 16px; font-size: 12px; }

/* ==========================================================================
   スマホ(≤767px): 本体と同じ1段。左サイドは出さず、記事末尾で回遊させる(§6.2)
   ========================================================================== */
@media screen and (max-width: 767px) {
	.tt-blog #side.tt-side { display: none; }
	.tt-blog .tt-cols { padding: 0 12px 40px; }
	.tt-blog .tt-col-main { width: auto; float: none; padding-top: 16px; }
	.tt-subnav__list { font-size: 14px; }
	.tt-subnav__item { flex: 1; }
	.tt-subnav__item a { padding: 10px 6px 8px; text-align: center; }
	.tt-subnav__sub { font-size: 10px; }
	.tt-listhead__ttl { font-size: 22px; }
	.tt-tabs__list { flex-wrap: nowrap; overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none; }
	.tt-tabs__list::-webkit-scrollbar { display: none; }
	.tt-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 20px 12px; }
	.tt-card__ttl { font-size: 14px; }
	.tt-post__ttl { font-size: 22px; }
	.tt-article { font-size: 15px; }
	.tt-article h2 { font-size: 20px; }
	.tt-article h3 { font-size: 17px; }
	.tt-article .tt-product-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px 10px; }
	.tt-article .tt-discovery { grid-template-columns: 1fr; }
	.tt-cta { grid-template-columns: 1fr; padding: 18px 16px; }
	.tt-cta__other { border-left: 0; padding-left: 0; border-top: 1px solid rgba(0,0,0,.08); padding-top: 16px; }
	.tt-products { grid-template-columns: repeat(2, minmax(0, 1fr)); }
	.tt-adjacent { grid-template-columns: 1fr; }
	.tt-adjacent__next { grid-column: auto; text-align: left; }
	.tt-spcat { display: block; }
	.tt-pager ul { flex-wrap: wrap; }
}
@media screen and (min-width: 768px) {
	.tt-blog .tt-col-main { width: var(--tt-main); float: right; }
	.tt-blog #side.tt-side { width: var(--tt-side); float: left; }
}
@media (prefers-reduced-motion: reduce) {
	.tt-card__pic img { transition: none; }
}
