/** Shopify CDN: Minification failed

Line 248:0 All "@import" rules must come first

**/
/* THE URUSHI — Teaser LP Common Styles */
/* Dark theme: #0D0D0D base */
/* Typography scale aligned with tu-global.css */

:root {
  --tu-bg: #0D0D0D;
  --tu-surface: #1A1A1A;
  --tu-black: #1A1A1A;
  --tu-dark: #333333;
  --tu-text: #E8E6E0;
  --tu-sub: #9E9C97;
  --tu-border: #2A2A2A;
  --tu-border-gold: rgba(200, 169, 110, 0.2);
  --tu-gold: #C8A96E;
  --tu-gold-light: #D4BA85;
  --tu-red: #8B2500;
  --tu-line-green: #06C755;
  --tu-white: #FFFFFF;
  --tu-font-ja: "Noto Serif JP", serif;
  --tu-font-sans: "Noto Sans JP", sans-serif;
  --tu-font-en: "Jost", "Futura", "Helvetica Neue", Arial, sans-serif;
  --tu-font-num: "Noto Sans JP", "Helvetica Neue", Arial, sans-serif;
  --tu-section-padding: clamp(80px, 12vw, 120px);
  --tu-container: 1080px;
  --tu-container-narrow: 780px;
  --tu-gray-400: rgba(232, 230, 224, 0.55);
  --tu-gray-600: #9E9C97;
  --tu-gray-800: #C8C6C0;
  --tu-gray-900: #E8E6E0;
}

.tu-section { position: relative; overflow: hidden; }

.tu-container {
  max-width: var(--tu-container);
  margin: 0 auto;
  padding: 0 24px;
}

.tu-container--narrow {
  max-width: var(--tu-container-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

.tu-section-label {
  font-family: var(--tu-font-en);
  font-size: 1.2rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tu-sub);
  margin: 0 0 1.6rem;
}

.tu-section-heading {
  font-family: "Jost", "Futura", "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin: 0 0 2.4rem;
  color: var(--tu-text);
  word-break: keep-all;
  overflow-wrap: anywhere;
}

.tu-section-heading--large {
  font-size: clamp(2.4rem, 4vw, 3.2rem);
}

.tu-body-text {
  font-family: var(--tu-font-sans);
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.03em;
  color: var(--tu-sub);
}

/* Teaser-wide readability — match base size */
[id^="Teaser"] p,
[id^="Teaser"] li {
  font-size: 1.5rem;
  line-height: 2;
  letter-spacing: 0.03em;
}

/* Numbers */
[id^="Teaser"] .tu-num,
[id^="Teaser"] [data-num] {
  font-family: var(--tu-font-num);
  font-weight: 500;
  font-feature-settings: "tnum";
}

.tu-divider {
  width: 40px;
  height: 1px;
  background: var(--tu-gold);
  border: none;
  margin: 3.2rem auto;
}

.tu-line-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  background: var(--tu-line-green);
  color: var(--tu-white);
  font-family: var(--tu-font-sans);
  font-size: 1.5rem;
  font-weight: 500;
  padding: 14px 32px;
  border-radius: 50px;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.tu-line-btn:hover { opacity: 0.85; }

.tu-line-btn svg {
  width: 1.375em;
  height: 1.375em;
  flex-shrink: 0;
}

/* Makuake variant — gold primary button (used when button_url is not a LINE URL) */
.tu-line-btn--makuake {
  background: var(--tu-gold);
  color: var(--tu-black);
  font-weight: 600;
  letter-spacing: 0.04em;
}
.tu-line-btn--makuake:hover {
  opacity: 1;
  background: var(--tu-gold-light, #d8b880);
}
.tu-line-btn--makuake .tu-btn__arrow {
  margin-left: 0.4em;
  font-size: 1.1em;
  transition: transform 0.25s ease;
}
.tu-line-btn--makuake:hover .tu-btn__arrow {
  transform: translateX(2px);
}

.tu-badge {
  display: inline-block;
  font-family: var(--tu-font-sans);
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 0.6rem 1.6rem;
  border: 1px solid;
  border-radius: 50px;
}

.tu-badge--gold {
  color: var(--tu-gold);
  border-color: var(--tu-gold);
}

.tu-badge--red {
  color: var(--tu-red);
  border-color: var(--tu-red);
}

/* =========================================================
   Sticky LINE Banner
   ========================================================= */
.tu-sticky-line {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 999;
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-top: 1px solid rgba(200, 169, 110, 0.12);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.tu-sticky-line.is-visible {
  transform: translateY(0);
}

.tu-sticky-line__text {
  font-family: var(--tu-font-sans);
  font-size: 1.2rem;
  color: var(--tu-sub);
  letter-spacing: 0.04em;
  display: none;
}
@media (min-width: 750px) {
  .tu-sticky-line__text { display: block; }
}

.tu-sticky-line .tu-line-btn {
  padding: 10px 28px;
  font-size: 1.4rem;
  flex-shrink: 0;
  touch-action: manipulation;
}
.tu-sticky-line .tu-line-btn:focus-visible {
  outline: 2px solid rgba(6,199,85,0.8);
  outline-offset: 2px;
}

/* Bottom padding for sticky bar clearance */
.template-page .tu-section:last-child {
  padding-bottom: calc(var(--tu-section-padding) + 70px) !important;
}

/* Makuake announcement strip */
.tu-makuake-bar {
  background: var(--tu-surface);
  text-align: center;
  padding: 14px 24px;
  padding-top: calc(var(--header-height, 80px) + 14px);
  border-bottom: 1px solid var(--tu-border);
}

.tu-makuake-bar p {
  font-family: var(--tu-font-sans);
  font-size: 1.3rem;
  letter-spacing: 0.08em;
  color: var(--tu-text);
  margin: 0;
}

.tu-makuake-bar strong {
  color: var(--tu-gold);
  font-weight: 600;
}

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@400;500;600&family=Jost:wght@300;400;500;600&family=Noto+Sans+JP:wght@300;400;500&family=Noto+Serif+JP:wght@500;700&display=swap');

/* =========================================================
   Teaser — Section rhythm & polish
   ========================================================= */

/* Section labels — unified elegant style */
.tu-section-label {
  font-family: var(--tu-font-en);
  font-size: 1.1rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--tu-gold);
  margin: 0 0 1.6rem;
  opacity: 0.7;
}

/* Section headings — consistent. Latin chars (THE URUSHI, MR漆 etc.)
   render in brand wordmark Jost; Japanese chars fall through to Noto Serif JP. */
.tu-section-heading {
  font-family: "Jost", "Futura", "Noto Serif JP", serif;
  font-size: clamp(2.2rem, 3.5vw, 2.8rem);
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.08em;
  margin: 0 0 2.4rem;
  color: var(--tu-text);
}

/* Divider — thinner and more elegant */
.tu-divider {
  width: 32px;
  height: 1px;
  background: var(--tu-gold);
  border: none;
  margin: 2.4rem auto 3.2rem;
  opacity: 0.5;
}

/* Alternate section backgrounds for rhythm */
.tu-section:nth-child(even) {
  background: var(--tu-surface);
}

/* Smooth transitions between sections */
.tu-section + .tu-section {
  border-top: 1px solid rgba(200, 169, 110, 0.05);
}

/* =========================================================
   #7 スクロールインジケーター — 洗練
   ========================================================= */
.hero__scroll-indicator {
  font-family: var(--tu-font-en) !important;
  font-size: 1.0rem !important;
  letter-spacing: 0.25em !important;
  text-transform: uppercase !important;
  color: rgba(232, 230, 224, 0.65) !important;
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  gap: 8px !important;
}
.hero__scroll-indicator::after {
  content: '';
  display: block;
  width: 1px;
  height: 24px;
  background: linear-gradient(to bottom, rgba(200, 169, 110, 0.5), transparent);
  animation: tuScrollPulse 2s ease-in-out infinite;
}
@keyframes tuScrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 0.8; transform: scaleY(1.3); }
}

/* =========================================================
   #8 Returns カード — ゴールドグロウ上品化
   ========================================================= */
.ret__card--featured {
  border: 1px solid rgba(200, 169, 110, 0.25) !important;
  box-shadow: 0 0 24px rgba(200, 169, 110, 0.06) !important;
  transition: border-color 0.4s ease, box-shadow 0.4s ease, transform 0.4s cubic-bezier(0.16, 1, 0.3, 1) !important;
}
.ret__card--featured:hover {
  border-color: rgba(200, 169, 110, 0.5) !important;
  box-shadow: 0 0 40px rgba(200, 169, 110, 0.1), 0 8px 32px rgba(0, 0, 0, 0.2) !important;
  transform: translateY(-4px) !important;
}
.ret__card {
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease !important;
}
.ret__card:hover {
  transform: translateY(-2px) !important;
  border-color: rgba(232, 230, 224, 0.15) !important;
}

/* =========================================================
   #9 Sticky LINE バー — frosted glass + ゴールドアクセント
   ========================================================= */
.tu-sticky-line {
  background: rgba(13, 13, 13, 0.85) !important;
  backdrop-filter: blur(24px) saturate(1.2) !important;
  -webkit-backdrop-filter: blur(24px) saturate(1.2) !important;
  border-top: 1px solid rgba(200, 169, 110, 0.15) !important;
}
.tu-sticky-line::before {
  content: '';
  position: absolute;
  top: -1px;
  left: 0;
  width: 48px;
  height: 1px;
  background: var(--tu-gold);
  opacity: 0.5;
}

/* =========================================================
   #10 Evidence 統計値 — ゴールドフラッシュ
   ========================================================= */
@keyframes tuStatFlash {
  0% { color: inherit; text-shadow: none; }
  50% { color: var(--tu-gold); text-shadow: 0 0 16px rgba(200, 169, 110, 0.3); }
  100% { color: inherit; text-shadow: none; }
}
.evidence__stat-value.is-counted {
  animation: tuStatFlash 0.8s ease-out;
}

/* =========================================================
   #11 FAQ — Q ゴールド + ミニマルアイコン
   ========================================================= */
.faq__question::before {
  color: var(--tu-gold) !important;
  font-weight: 600 !important;
  opacity: 0.7 !important;
}
.faq__question::after {
  font-size: 1.6rem !important;
  font-weight: 300 !important;
  color: rgba(232, 230, 224, 0.55) !important;
  transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease !important;
}
details[open] .faq__question::after {
  color: var(--tu-gold) !important;
}
.faq__item {
  border-color: rgba(200, 169, 110, 0.06) !important;
  transition: border-color 0.3s ease !important;
}
.faq__item:hover {
  border-color: rgba(200, 169, 110, 0.15) !important;
}

/* =========================================================
   #12 CTA セクション — ゴールド光源背景
   ========================================================= */
[id^="TeaserCTA"] {
  background:
    radial-gradient(ellipse at 50% 30%, rgba(200, 169, 110, 0.06) 0%, transparent 50%),
    var(--tu-bg) !important;
}
[id^="TeaserCTA"] .tu-line-btn {
  box-shadow: 0 4px 24px rgba(6, 199, 85, 0.2) !important;
  transition: opacity 0.3s ease, box-shadow 0.3s ease, transform 0.3s ease !important;
}
[id^="TeaserCTA"] .tu-line-btn:hover {
  box-shadow: 0 6px 32px rgba(6, 199, 85, 0.3) !important;
  transform: translateY(-2px) !important;
}

/* =========================================================
   Teaser共通 — テキスト選択色・スクロールバー
   ========================================================= */
::selection {
  background: rgba(200, 169, 110, 0.3);
  color: var(--tu-text);
}
::-moz-selection {
  background: rgba(200, 169, 110, 0.3);
  color: var(--tu-text);
}

/* =========================================================
   Makuake Export Mode — URLに ?makuake=1 で有効化
   - 撮影用：750px幅固定／ヘッダー・フッター・CTA非表示
   - Makuakeネイティブ機能で扱うセクションを非表示
   ========================================================= */
.is-makuake .shopify-section-group-header-group,
.is-makuake .shopify-section-group-footer-group,
.is-makuake .header-wrapper,
.is-makuake .footer-wrapper,
.is-makuake header.header,
.is-makuake .announcement-bar-section,
.is-makuake .tu-sticky-cart,
.is-makuake .tu-sticky-line,
.is-makuake [id^="TeaserStickyLine-"],
.is-makuake [id^="TeaserHero-"],
.is-makuake [id^="TeaserCtaInline-"],
.is-makuake [id^="TeaserCTA-"],
.is-makuake [id^="TeaserMidCTA-"],
.is-makuake [id^="TeaserReturns-"],
.is-makuake [id^="TeaserRisk-"],
.is-makuake [id^="TeaserOfferStrip-"] {
  display: none !important;
}

.is-makuake {
  --tu-section-padding: clamp(40px, 6vw, 64px);
  --tu-container: 690px;
  --tu-container-narrow: 690px;
}

html.is-makuake {
  background: #0D0D0D !important;
}

.is-makuake .tu-container,
.is-makuake .tu-container--narrow {
  max-width: 690px !important;
  padding-left: 16px !important;
  padding-right: 16px !important;
}

.is-makuake main#MainContent {
  padding-top: 0 !important;
  margin-top: 0 !important;
}

/* Makuake: 前回プロジェクトお客様の声の★は非表示（景表法・ステマ規制対策） */
.is-makuake .voi__stars {
  display: none !important;
}

.is-makuake .template-page .tu-section:last-child {
  padding-bottom: var(--tu-section-padding) !important;
}

/* Makuake: 即納セクションの左寄せをセンタリング */
.is-makuake .instant__content {
  text-align: center !important;
}
.is-makuake .instant__content .instant__pain,
.is-makuake .instant__content .instant__solution,
.is-makuake .instant__content .instant__highlight p,
.is-makuake .instant__content .instant__note {
  text-align: center !important;
}

/* Makuake: SP風レイアウト強制（デスクトップ閲覧でもmediaクエリの多列を抑止） */
.is-makuake .use__grid,
.is-makuake .use__capacity-layout,
.is-makuake .actions__grid,
.is-makuake .points__grid,
.is-makuake .pain__list,
.is-makuake .ret__cards,
.is-makuake .show__details,
.is-makuake .aging__grid,
.is-makuake .voi__cards,
.is-makuake .sched__layout,
.is-makuake .gift__layout,
.is-makuake .msg__layout,
.is-makuake .about__layout,
.is-makuake .brand__layout,
.is-makuake .specs__layout,
.is-makuake .evidence__cards,
.is-makuake .mat__grid {
  grid-template-columns: 1fr !important;
}
