/*
Theme Name: Luciano
Theme URI: https://lucianowear-atn6wqzy.manus.space/
Author: Luciano
Author URI: https://lucianowear-atn6wqzy.manus.space/
Description: ORDER MADE FAMILY WEAR — ランディングページ型WordPressテーマ。愛犬とのお揃いオーダーメイドウェア専用デザイン。
Version: 1.0.9
Requires at least: 6.0
Tested up to: 6.7
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: luciano
Tags: one-page, japanese, landing-page, fashion, ecommerce
*/

/* ===== RESET & ROOT ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --bg: #fafaf8;
  --text: #2e2a28;
  --muted: #5c5450;
  --subtle: #c8c4be;
  --border: #e8e4dc;
  --border-light: rgba(46,42,40,0.12);
  --footer-bg: #1e1c1a;
  --line: #06c755;
  --font-en: 'Cormorant Garamond', serif;
  --font-jp: 'Noto Serif JP', serif;
  --font-label: 'Didact Gothic', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--font-jp); background: var(--bg); color: var(--text); line-height: 1.8; overflow-x: hidden; }
a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; }
button { font-family: var(--font-jp); cursor: pointer; border: none; outline: none; }

/* ===== CONTAINER ===== */
.luciano-container { width: 100%; max-width: 1536px; margin: 0 auto; padding: 0 32px; }
.luciano-container--narrow { max-width: 860px; }
.luciano-container--mid { max-width: 1000px; }

/* ===== NAV ===== */
#site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 50;
  transition: background 0.5s, backdrop-filter 0.5s, border-color 0.5s;
  border-bottom: 1px solid transparent;
}
#site-header.scrolled {
  background: rgba(250,250,248,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-color: var(--border-light);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 32px;
}
.nav-logo .nav-logo-name {
  font-family: var(--font-en); font-size: 20px; font-weight: 400;
  letter-spacing: 2px; color: rgba(250,250,248,0.95);
  transition: color 0.5s; display: block;
}
#site-header.scrolled .nav-logo .nav-logo-name { color: var(--text); }
.nav-logo .nav-logo-sub {
  font-family: var(--font-label); font-size: 9px; letter-spacing: 2.25px;
  text-transform: uppercase; color: rgba(250,250,248,0.7);
  transition: color 0.5s; display: block;
}
#site-header.scrolled .nav-logo .nav-logo-sub { color: rgba(46,42,40,0.5); }
.nav-right { display: flex; align-items: center; gap: 16px; }
.nav-info {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 1px;
  text-transform: uppercase; color: rgba(250,250,248,0.7);
  transition: color 0.5s;
}
#site-header.scrolled .nav-info { color: rgba(46,42,40,0.5); }
.nav-btn {
  font-family: var(--font-jp); font-size: 12px; letter-spacing: 1.4px;
  padding: 10px 20px; white-space: nowrap;
  background: rgba(250,250,248,0.12); color: rgba(250,250,248,1);
  border: 1px solid rgba(250,250,248,0.4);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
  display: inline-block;
}
#site-header.scrolled .nav-btn {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
.nav-btn:hover { opacity: 0.8; }

/* ===== HERO ===== */
.hero {
  position: relative; height: 100vh; min-height: 600px;
  display: flex; align-items: flex-end; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center center;
  animation: hero-zoom 10s ease-out forwards;
  transform-origin: center center;
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to   { transform: scale(1.0); }
}
.hero-grad1 {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(20,18,16,0.72) 0%, rgba(20,18,16,0.25) 55%, rgba(255,255,255,0.05) 100%);
}
.hero-grad2 {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(255,255,255,0.08) 0%, rgba(0,0,0,0) 60%);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 32px 96px;
  width: 100%; max-width: 1536px; margin: 0 auto;
  animation: fade-up 1.2s cubic-bezier(0.16,1,0.3,1) both 0.3s;
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-eyebrow {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 3.5px;
  text-transform: uppercase; color: rgba(250,250,248,0.6);
  display: block; margin-bottom: 24px;
}
.hero-title {
  font-family: var(--font-jp); font-size: clamp(32px,4.5vw,52px);
  font-weight: 400; line-height: 1.62; letter-spacing: 0.04em;
  color: rgba(250,250,248,0.97); margin-bottom: 20px;
}
.hero-sub {
  font-family: var(--font-jp); font-size: 14px; color: rgba(250,250,248,0.75);
  line-height: 2; margin-bottom: 4px;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 36px; }
.btn-hero-primary {
  font-family: var(--font-jp); font-size: 14px; letter-spacing: 1.4px;
  padding: 16px 32px; background: rgba(250,250,248,1); color: var(--text);
  border: 1px solid rgba(250,250,248,1); display: inline-block;
  transition: background 0.3s, color 0.3s;
}
.btn-hero-primary:hover { background: transparent; color: rgba(250,250,248,1); }
.btn-hero-secondary {
  font-family: var(--font-jp); font-size: 14px; letter-spacing: 1.4px;
  padding: 16px 24px; background: transparent; color: rgba(250,250,248,0.85);
  border: 1px solid rgba(250,250,248,0.3); display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.3s;
}
.btn-hero-secondary:hover { border-color: rgba(250,250,248,0.7); }
.btn-hero-secondary svg { fill: currentColor; }
.hero-scroll {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  z-index: 2; font-family: var(--font-label); font-size: 9px;
  letter-spacing: 2px; color: rgba(250,250,248,0.45); white-space: nowrap;
}

/* ===== SECTION BASE ===== */
.luciano-section { padding: 128px 0; }

/* ===== SECTION LABELS ===== */
.sec-label {
  font-family: var(--font-en); font-style: italic; font-size: 48px;
  font-weight: 300; color: var(--subtle); display: block;
  line-height: 1; margin-bottom: 12px;
}
.sec-label--sm {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--subtle); display: block;
  margin-bottom: 16px;
}
.sec-divider {
  width: 32px; height: 1px; background: var(--border); margin: 16px auto;
}

/* ===== FADE-IN ANIMATION ===== */
.fade-in {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.8s cubic-bezier(0.16,1,0.3,1), transform 0.8s cubic-bezier(0.16,1,0.3,1);
}
.fade-in.delay-1 { transition-delay: 0.1s; }
.fade-in.delay-2 { transition-delay: 0.2s; }
.fade-in.delay-3 { transition-delay: 0.3s; }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== PHILOSOPHY ===== */
.phi-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 80px; align-items: center;
}
.phi-img-wrap img { width: 100%; aspect-ratio: 3/4; object-fit: cover; }
.phi-text-header { text-align: center; margin-bottom: 64px; }
.phi-h2 {
  font-family: var(--font-jp); font-size: 30px; font-weight: 400;
  line-height: 1.625; margin-bottom: 32px;
}
.phi-p {
  font-family: var(--font-jp); font-size: 14px; color: var(--muted);
  line-height: 2.2; margin-bottom: 24px;
}
.phi-tag {
  font-family: var(--font-jp); font-size: 12px; color: #b89898;
  letter-spacing: 1.8px; margin-top: 8px;
}
.phi-sub {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
  letter-spacing: 1.2px; margin-top: 16px;
}

/* ===== OUR PROMISE ===== */
.promise-header { text-align: center; margin-bottom: 48px; }
.promise-header h2 {
  font-family: var(--font-jp); font-size: 24px; font-weight: 400; margin-top: 24px;
}
.promise-header p {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted); margin-top: 12px;
}
.promise-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  grid-template-rows: auto auto;
  gap: 1px; background: var(--border);
  border: 1px solid var(--border);
}
.promise-item {
  padding: 40px; background: var(--bg);
  transition: background 0.3s;
}
.promise-item:hover { background: #fff; }
.promise-num {
  font-family: var(--font-en); font-size: 30px; font-weight: 300;
  color: #e4e2de; line-height: 1; margin-bottom: 16px;
}
.promise-item h3 {
  font-family: var(--font-jp); font-size: 16px; font-weight: 500; margin-bottom: 16px;
}
.promise-item p {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted); line-height: 2;
}
.promise-catchcopy {
  padding: 40px; background: var(--bg);
  display: flex; align-items: center; justify-content: center; text-align: center;
  align-self: stretch;
}
.promise-catchcopy p {
  font-family: var(--font-jp); font-size: 14px; color: var(--muted);
  line-height: 2; letter-spacing: 1.2px;
}
.promise-visual {
  margin-bottom: 48px; overflow: hidden;
}
.promise-visual img {
  width: 100%; max-height: 520px; object-fit: cover; object-position: center 30%;
  display: block;
}

/* ===== STATIC PAGE (TOKUSHOHO / PRIVACY) ===== */
.page-hero {
  padding: 140px 32px 64px;
  background: var(--text); color: var(--bg); text-align: center;
}
.page-hero .sec-label { color: rgba(200,196,190,0.5); }
.page-hero h1 {
  font-family: var(--font-jp); font-size: clamp(22px,3vw,32px);
  font-weight: 300; letter-spacing: 0.06em; margin-top: 12px;
  color: rgba(250,250,248,0.92);
}
.page-body {
  max-width: 860px; margin: 0 auto; padding: 80px 32px 120px;
}
.page-body h2 {
  font-family: var(--font-jp); font-size: 14px; font-weight: 500;
  letter-spacing: 1.2px; color: var(--text); margin: 48px 0 20px;
  padding-bottom: 10px; border-bottom: 1px solid var(--border);
}
.page-body h2:first-of-type { margin-top: 0; }
.page-body p {
  font-family: var(--font-jp); font-size: 14px; color: var(--muted);
  line-height: 2.4;
}
.page-body ul {
  list-style: none; padding: 0;
}
.page-body ul li {
  font-family: var(--font-jp); font-size: 14px; color: var(--muted);
  line-height: 2.2; padding-left: 16px; position: relative;
}
.page-body ul li::before {
  content: '—'; position: absolute; left: 0;
  color: var(--subtle); font-size: 12px;
}
.page-date {
  font-family: var(--font-label); font-size: 10px; letter-spacing: 1.6px;
  color: var(--subtle); margin-top: 64px; text-align: right;
}

/* 特定商取引法テーブル */
.tokuho-table {
  width: 100%; border-collapse: collapse; margin-top: 0;
}
.tokuho-table tr { border-bottom: 1px solid var(--border); }
.tokuho-table tr:first-child { border-top: 1px solid var(--border); }
.tokuho-table th {
  font-family: var(--font-jp); font-size: 12px; font-weight: 500;
  color: var(--muted); letter-spacing: 0.8px;
  padding: 22px 20px 22px 0; vertical-align: top;
  white-space: nowrap; width: 180px; line-height: 2;
}
.tokuho-table td {
  font-family: var(--font-jp); font-size: 14px; color: var(--text);
  padding: 22px 0 22px 24px; vertical-align: top; line-height: 2.2;
}
.tokuho-table td small {
  display: block; font-size: 12px; color: var(--muted); margin-top: 4px;
}
@media (max-width: 600px) {
  .page-hero { padding: 120px 20px 48px; }
  .page-body { padding: 48px 20px 80px; }
  .tokuho-table, .tokuho-table thead, .tokuho-table tbody,
  .tokuho-table tr, .tokuho-table th, .tokuho-table td {
    display: block; width: 100%;
  }
  .tokuho-table th {
    white-space: normal; width: auto; padding: 20px 0 4px;
    font-size: 11px; color: var(--subtle); border-bottom: none;
  }
  .tokuho-table tr { padding: 0; }
  .tokuho-table tr:first-child { border-top: 1px solid var(--border); }
  .tokuho-table td { padding: 4px 0 20px; }
}

/* ===== HOW IT WORKS ===== */
.how-header { text-align: center; margin-bottom: 68px; }
.how-header h2 {
  font-family: var(--font-jp); font-size: 24px; font-weight: 400; margin-top: 24px;
}
.how-step {
  display: grid; grid-template-columns: 76px 1fr; gap: 28px;
  padding: 44px 0; border-top: 1px solid var(--border-light); align-items: start;
}
.how-step:last-of-type { border-bottom: 1px solid var(--border-light); }
.how-step-left { display: flex; flex-direction: column; align-items: center; gap: 4px; }
.how-step-label {
  font-family: var(--font-label); font-size: 9px; letter-spacing: 1.8px;
  text-transform: uppercase; color: var(--subtle);
}
.how-step-num {
  font-family: var(--font-en); font-size: 30px; font-weight: 300;
  color: #e4e2de; line-height: 1; margin-top: 4px;
}
.how-step-right h3 {
  font-family: var(--font-jp); font-size: 16px; font-weight: 500;
  margin-bottom: 12px; padding-top: 4px;
}
.how-step-right p {
  font-family: var(--font-jp); font-size: 14px; color: var(--muted); line-height: 2.2;
}
.how-note {
  text-align: center; margin-top: 44px;
  font-family: var(--font-jp); font-size: 12px; color: var(--subtle);
}

/* ===== VOICES ===== */
.voices-header { text-align: center; margin-bottom: 64px; }
.voices-header h2 {
  font-family: var(--font-jp); font-size: 24px; font-weight: 400; margin-top: 24px;
}
.voices-header p {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted); margin-top: 12px;
}
.voices-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 32px; margin-bottom: 64px;
}
.voice-card {
  padding: 40px; position: relative;
  background: rgb(245,242,236);
  border: 1px solid rgb(232,228,220);
  display: flex; flex-direction: column;
}
.voice-quote {
  font-family: var(--font-en); font-size: 48px; font-weight: 300;
  color: #e4e2de; position: absolute; top: 16px; left: 24px; line-height: 1;
}
.voice-text {
  font-family: var(--font-jp); font-size: 14px; line-height: 2.2;
  color: var(--text); padding-top: 24px; margin-bottom: 24px; flex: 1;
}
.voice-author {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted); letter-spacing: 1px;
}

/* ===== ARTISAN ===== */
.artisan-grid {
  display: grid; grid-template-columns: 1fr 1fr; min-height: 480px;
}
.artisan-img { width: 100%; height: 100%; object-fit: cover; display: block; }
.artisan-text {
  padding: 80px 64px; background: var(--text); color: var(--bg);
  display: flex; flex-direction: column; justify-content: center;
}
.artisan-text .sec-label--sm { color: rgba(250,250,248,0.35); }
.artisan-text h3 {
  font-family: var(--font-jp); font-size: 22px; font-weight: 300;
  line-height: 1.7; margin-bottom: 24px; margin-top: 16px;
}
.artisan-text p {
  font-family: var(--font-jp); font-size: 13px; color: rgba(250,250,248,0.6); line-height: 2.3;
}

/* ===== ARTISAN'S MESSAGE (TOP PAGE NEW) ===== */
.artisan-section { background: #faf8f5; }
.artisan-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center;
}
.artisan-inner .artisan-text {
  padding: 0; background: transparent; color: var(--text);
}
.artisan-inner .artisan-text .sec-label { color: var(--subtle); }
.artisan-inner .artisan-text .sec-divider { margin-top: 16px; margin-bottom: 28px; }
.artisan-title {
  font-family: var(--font-jp); font-size: 26px; font-weight: 300;
  color: var(--text); line-height: 1.5; margin-bottom: 24px;
}
.artisan-body {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  line-height: 2.4; letter-spacing: 0.05em;
}
.artisan-img-wrap {
  position: relative;
}
.artisan-img-wrap img {
  width: 100%; display: block; object-fit: cover; aspect-ratio: 4/3;
}
.artisan-img-border {
  position: absolute; top: -10px; left: -10px; right: 10px; bottom: 10px;
  border: 1px solid var(--border); z-index: -1; pointer-events: none;
  display: none;
}
@media (min-width: 768px) { .artisan-img-border { display: block; } }
@media (max-width: 767px) {
  .artisan-inner { grid-template-columns: 1fr; gap: 40px; }
  .artisan-title { font-size: 20px; }
}

/* ===== PRICING ===== */
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-header h2 {
  font-family: var(--font-jp); font-size: 24px; font-weight: 400; margin-top: 24px;
}
.pricing-header p {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted); margin-top: 12px;
}
.pricing-card {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 1px; background: var(--border); border: 1px solid var(--border);
  position: relative;
}
.pricing-badge {
  position: absolute; top: -1px; left: 50%; transform: translateX(-50%);
  background: var(--text); color: var(--bg);
  font-family: var(--font-label); font-size: 9px; letter-spacing: 2.2px;
  text-transform: uppercase; padding: 6px 20px; white-space: nowrap;
}
.pricing-left { padding: 72px 60px; background: var(--bg); }
.pricing-left h3 {
  font-family: var(--font-en); font-size: 18px; font-weight: 300;
  letter-spacing: 1.6px; color: var(--muted); margin-bottom: 20px;
}
.pricing-price {
  font-family: var(--font-en); font-size: 56px; font-weight: 300;
  line-height: 1; letter-spacing: -0.02em; margin-bottom: 6px;
}
.pricing-from {
  font-family: var(--font-jp); font-size: 11px; color: var(--subtle); margin-bottom: 32px;
}
.pricing-desc {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted); line-height: 2.1;
}
.pricing-right { padding: 72px 60px; background: var(--bg); }
.pricing-right h4 {
  font-family: var(--font-jp); font-size: 14px; font-weight: 400; letter-spacing: 1px; margin-bottom: 12px;
}
.pricing-installment {
  font-family: var(--font-en); font-size: 30px; font-weight: 300;
  color: var(--subtle); line-height: 1.4; margin-bottom: 16px;
}
.pricing-note {
  font-family: var(--font-jp); font-size: 12px; color: var(--subtle); line-height: 2.1;
}
.pricing-footer-note {
  margin-top: 28px; font-family: var(--font-jp); font-size: 11px; color: var(--subtle);
}

/* アドオンオプション（Pricingセクション内） */
.pricing-addon-wrap {
  margin-top: 48px; text-align: center;
}
.pricing-addon-eyebrow {
  font-family: var(--font-label); font-size: 9px; letter-spacing: 3px;
  text-transform: uppercase; color: var(--subtle); margin-bottom: 12px;
}
.pricing-addon-title {
  font-family: var(--font-jp); font-size: 18px; font-weight: 300;
  color: var(--text); margin-bottom: 32px; letter-spacing: 0.03em;
}
.pricing-addon-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 20px; max-width: 600px; margin: 0 auto;
}
.pricing-addon-grid--single {
  grid-template-columns: 1fr; max-width: 360px;
}
.pricing-addon-card {
  border: 1px solid var(--border); padding: 40px 32px; background: #f8f7f4;
  text-align: center; transition: background 0.2s;
}
.pricing-addon-card:hover { background: #fff; }
.pricing-addon-icon {
  font-size: 28px; display: block; margin-bottom: 16px;
}
.pricing-addon-icon-svg {
  display: flex; align-items: center; justify-content: center;
  width: 64px; height: 64px; margin: 0 auto 20px;
  border-radius: 50%;
  background: radial-gradient(ellipse, rgba(168,196,160,0.18) 0%, rgba(200,184,120,0.08) 100%);
  border: 1px solid #b8cca8; color: #7a9a6a;
}
.pricing-addon-name {
  font-family: var(--font-jp); font-size: 14px; font-weight: 400;
  color: var(--text); margin-bottom: 10px;
}
.pricing-addon-desc {
  font-family: var(--font-jp); font-size: 11px; color: var(--muted);
  line-height: 1.8; margin-bottom: 16px;
}
.pricing-addon-price {
  font-family: var(--font-en); font-size: 16px; font-weight: 300; color: var(--text);
}
.pricing-addon-price span {
  font-family: var(--font-jp); font-size: 10px; color: var(--muted); margin-left: 4px;
}
@media (max-width: 600px) {
  .pricing-addon-grid { grid-template-columns: 1fr; max-width: 360px; }
  .pricing-addon-title { font-size: 15px; }
}

/* ===== FAQ ===== */
.faq-wrap { background: #f4f3f0; }
.faq-header { text-align: center; margin-bottom: 56px; }
.faq-header h2 {
  font-family: var(--font-jp); font-size: 24px; font-weight: 400; margin-top: 24px;
}
.faq-item { border-top: 1px solid var(--border-light); }
.faq-item:last-of-type { border-bottom: 1px solid var(--border-light); }
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  padding: 26px 0; cursor: pointer;
  font-family: var(--font-jp); font-size: 14px; letter-spacing: 0.6px; gap: 24px;
  transition: color 0.2s; user-select: none;
}
.faq-q:hover { color: #3a5a3a; }
.faq-icon {
  width: 27px; height: 27px; flex-shrink: 0;
  border: 1px solid var(--border-light); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--muted); transition: transform 0.35s ease; line-height: 1;
}
.faq-a {
  overflow: hidden; max-height: 0;
  transition: max-height 0.4s ease, padding-bottom 0.4s ease;
  font-family: var(--font-jp); font-size: 13px;
  color: var(--muted); line-height: 2.2; padding-bottom: 0;
}
.faq-item.open .faq-a { max-height: 400px; padding-bottom: 28px; }
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-note {
  text-align: center; margin-top: 44px;
  font-family: var(--font-jp); font-size: 12px; color: var(--subtle);
}

/* ===== LIMITED ===== */
.limited-wrap {
  padding: 80px 32px; text-align: center;
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
}
.limited-wrap h2 {
  font-family: var(--font-jp); font-size: clamp(32px,5vw,52px);
  font-weight: 300; letter-spacing: 0.04em; margin-bottom: 16px;
}
.limited-wrap p {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  letter-spacing: 1px; line-height: 2;
}

/* ===== CTA ===== */
.cta-wrap {
  background: var(--text); color: var(--bg);
  padding: 128px 32px; text-align: center; position: relative; overflow: hidden;
}
.cta-wrap .sec-label { color: rgb(200,196,190); margin-bottom: 16px; }
.cta-wrap h2 {
  font-family: var(--font-jp); font-size: clamp(24px,3.5vw,36px);
  font-weight: 300; line-height: 1.5; margin-bottom: 16px; color: var(--bg);
}
.cta-sub {
  font-family: var(--font-jp); font-size: 14px;
  color: rgba(250,250,248,0.7); margin-bottom: 8px;
}
.cta-btns {
  display: flex; justify-content: center; gap: 16px;
  margin: 48px 0 28px; flex-wrap: wrap;
}
.btn-cta-primary {
  font-family: var(--font-jp); font-size: 13px; letter-spacing: 1.6px;
  padding: 18px 50px; background: var(--bg); color: var(--text);
  border: none; display: inline-block; transition: opacity 0.2s;
}
.btn-cta-primary:hover { opacity: 0.88; }
.btn-cta-line {
  font-family: var(--font-jp); font-size: 13px; letter-spacing: 1.3px;
  padding: 18px 40px; background: transparent; color: var(--bg);
  border: 1px solid rgba(250,250,248,0.3);
  display: inline-flex; align-items: center; gap: 8px;
  transition: border-color 0.2s;
}
.btn-cta-line svg { fill: currentColor; }
.btn-cta-line:hover { border-color: rgba(250,250,248,0.8); }
.cta-instagram {
  display: inline-block; color: rgba(250,250,248,0.42);
  font-family: var(--font-jp); font-size: 12px; letter-spacing: 1.6px;
  margin-bottom: 48px; transition: color 0.2s;
}
.cta-instagram:hover { color: rgba(250,250,248,0.72); }
.cta-notes { display: flex; justify-content: center; gap: 36px; flex-wrap: wrap; }
.cta-note {
  font-family: var(--font-jp); font-size: 11px;
  color: rgba(250,250,248,0.26); letter-spacing: 0.8px;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--footer-bg);
  padding: 48px 32px; border-top: 1px solid rgba(255,255,255,0.07);
}
.footer-inner {
  display: flex; align-items: flex-start; justify-content: space-between;
  flex-wrap: wrap; gap: 32px; margin-bottom: 32px;
}
.footer-logo-name {
  font-family: var(--font-en); font-size: 18px; font-weight: 400;
  letter-spacing: 2.8px; color: rgba(250,250,248,0.9); margin-bottom: 4px;
}
.footer-logo-sub {
  font-family: var(--font-label); font-size: 9px; letter-spacing: 2.25px;
  text-transform: uppercase; color: rgba(200,196,190,0.4);
}
.footer-links { display: flex; gap: 20px; flex-wrap: wrap; align-items: center; }
.footer-links a {
  font-family: var(--font-jp); font-size: 11px;
  color: rgba(250,250,248,0.36); letter-spacing: 1.3px; transition: color 0.2s;
}
.footer-links a:hover { color: rgba(250,250,248,0.68); }
.footer-copy {
  font-family: var(--font-jp); font-size: 10px;
  color: rgba(250,250,248,0.2); letter-spacing: 1px; text-align: center;
}

/* ===== LINE FLOAT ===== */
.line-float {
  position: fixed; bottom: 30px; right: 30px; z-index: 200;
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--line); color: #fff;
  padding: 13px 24px; font-family: var(--font-jp); font-size: 12px;
  letter-spacing: 1px; border: none; cursor: pointer;
  box-shadow: 0 6px 28px rgba(6,199,85,0.35);
  transition: opacity 0.2s, transform 0.2s;
}
.line-float:hover { opacity: 0.9; transform: translateY(-2px); }
.line-float svg { width: 17px; height: 17px; fill: white; flex-shrink: 0; }

/* ===== RESPONSIVE ===== */
@media (max-width: 960px) {
  .nav-inner { padding: 14px 20px; }
  .nav-info { display: none; }
  .hero-content { padding: 0 20px 72px; }
  .luciano-section { padding: 80px 0; }
  .phi-grid { grid-template-columns: 1fr; gap: 48px; }
  .phi-img-wrap img { aspect-ratio: 4/3; }
  .promise-grid { grid-template-columns: 1fr; grid-template-rows: none; }
  .promise-grid .promise-item,
  .promise-grid .promise-catchcopy { grid-column: auto !important; grid-row: auto !important; }
  .promise-catchcopy { min-height: 140px; }
  .voices-grid { grid-template-columns: 1fr; }
  .artisan-grid { grid-template-columns: 1fr; }
  .artisan-img { height: 260px; width: 100%; }
  .artisan-text { padding: 60px 32px; }
  .pricing-card { grid-template-columns: 1fr; }
  .pricing-left, .pricing-right { padding: 52px 32px; }
  .cta-wrap { padding: 80px 24px; }
  .site-footer { padding: 40px 20px; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
  .line-float { bottom: 18px; right: 18px; }
  .how-step { grid-template-columns: 56px 1fr; gap: 20px; }
}
@media (max-width: 600px) {
  .hero-title { font-size: 28px; }
  .cta-notes { flex-direction: column; gap: 8px; }
}

/* ===== CHECKOUT PAGE ===== */
.checkout-page-wrap { background: var(--bg); padding-top: 82px; /* fixed header height */ }

/* ステップインジケーター */
.checkout-steps-indicator {
  background: #fff; border-bottom: 1px solid var(--border);
  padding: 18px 32px; position: sticky; top: 82px; z-index: 40;
}
.checkout-steps-inner {
  max-width: 1100px; margin: 0 auto;
  display: flex; align-items: center; gap: 16px;
}
.checkout-step-item {
  display: flex; align-items: center; gap: 12px;
  opacity: 0.35; transition: opacity 0.3s; flex-shrink: 0;
}
.checkout-step-item.active { opacity: 1; }
.step-num {
  width: 38px; height: 38px; border: 1.5px solid var(--border);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-family: var(--font-en); font-size: 14px; font-weight: 400; color: var(--muted);
  flex-shrink: 0; transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.checkout-step-item.active .step-num {
  background: var(--text); color: var(--bg); border-color: var(--text);
}
.step-label {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  letter-spacing: 0.4px; white-space: nowrap;
}
.checkout-step-item.active .step-label { color: var(--text); font-weight: 500; }
.checkout-step-line {
  flex: 1; height: 1px; background: var(--border); min-width: 32px;
}

.checkout-wrap {
  background: #faf6f1; padding: 64px 32px 120px; /* 温かみのあるパーチメント */
}
.checkout-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 420px; gap: 64px; align-items: start;
}

/* フォームセクション */
.checkout-form-section {
  padding-bottom: 40px; margin-bottom: 40px; border-bottom: 1px solid var(--border);
}
.checkout-form-section:last-of-type { border-bottom: none; }

/* Section labels — ロマンティックスタイル */
.checkout-section-label {
  font-family: var(--font-label); font-size: 9px; letter-spacing: 3.5px;
  text-transform: uppercase; color: #b8a090;   /* ウォームモーブ */
  display: block; margin-bottom: 16px;
}
.checkout-section-sub {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
  margin-bottom: 24px; margin-top: -8px; line-height: 1.9;
}
.checkout-section-note {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  margin-bottom: 28px; margin-top: -8px; line-height: 1.9;
  padding: 14px 16px; background: #fdf8f4; border: 1px solid #ede6de;
}

/* フォーム要素 */
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-group--half { max-width: 200px; }
.form-label {
  display: block; font-family: var(--font-jp); font-size: 12px;
  color: var(--muted); margin-bottom: 8px; letter-spacing: 0.4px;
}
.form-required { color: #c44; font-size: 11px; }
.form-input {
  width: 100%; padding: 12px 16px;
  border: 1px solid var(--border); background: #fff;
  font-family: var(--font-jp); font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s;
  -webkit-appearance: none; appearance: none;
  border-radius: 0;
}
.form-input:focus { border-color: var(--text); }
.form-input::placeholder { color: var(--subtle); }
.form-input--error { border-color: #c44 !important; background: #fff8f8; }
.form-select-wrap { position: relative; }
.form-select {
  width: 100%; padding: 12px 40px 12px 16px;
  border: 1px solid var(--border); background: #fff;
  font-family: var(--font-jp); font-size: 14px; color: var(--text);
  outline: none; transition: border-color 0.2s;
  cursor: pointer; -webkit-appearance: none; appearance: none;
  border-radius: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c8c4be' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center;
}
.form-select:focus { border-color: var(--text); }
.form-select.form-input--error { border-color: #c44 !important; background-color: #fff8f8; }
.form-error {
  background: #fff8f8; border: 1px solid #f0c0c0;
  padding: 12px 16px; margin-bottom: 20px;
  font-family: var(--font-jp); font-size: 13px; color: #a44; line-height: 1.8;
}

/* 次へ / 戻るボタン — ローズゴールド */
.checkout-next-btn {
  width: 100%; padding: 18px 24px;
  background: linear-gradient(135deg, #c4978a 0%, #b58272 100%);
  color: #fff;
  font-family: var(--font-jp); font-size: 13px; letter-spacing: 2.5px;
  border: none; cursor: pointer;
  transition: opacity 0.25s, transform 0.15s; margin-top: 32px;
}
.checkout-next-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.checkout-back-btn {
  font-family: var(--font-jp); font-size: 12px; color: var(--subtle);
  background: none; border: none; cursor: pointer;
  text-decoration: underline; text-underline-offset: 3px;
  padding: 0; margin-top: 24px; display: block; transition: color 0.2s;
}
.checkout-back-btn:hover { color: var(--text); }

/* 右カラム：商品カード */
.checkout-product-card {
  border: 1px solid #ece4da; padding: 28px 28px;
  background: #fffdf9; margin-bottom: 16px;
}
.checkout-product-img-wrap {
  margin-bottom: 20px; overflow: hidden; border-radius: 2px;
}
.checkout-product-img-wrap img {
  width: 100%; height: 180px; object-fit: cover; display: block;
}
.checkout-product-notice {
  margin-top: 16px; padding: 12px 14px;
  background: #fdf8f4; border: 1px solid #ece4da;
  font-family: var(--font-jp); font-size: 12px; color: var(--muted); line-height: 1.8;
}

/* 商品情報 */
.checkout-product {
  padding-bottom: 40px; border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.checkout-product-row {
  display: flex; justify-content: space-between; align-items: flex-start; gap: 16px;
}
.checkout-product-name {
  font-family: var(--font-jp); font-size: 16px; font-weight: 500;
  margin-bottom: 6px; letter-spacing: 0.4px;
}
.checkout-product-note {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
}
.checkout-product-price {
  font-family: var(--font-en); font-size: 22px; font-weight: 300;
  white-space: nowrap; line-height: 1;
}
.checkout-product-price span {
  font-family: var(--font-jp); font-size: 11px; color: var(--muted);
  font-weight: 400; display: block; text-align: right; margin-top: 4px;
}

/* カスタマイズオプション */
/* ══════════════════════════════════════════════════
   Checkout STEP 2 — Elegant Boutique Design
   ══════════════════════════════════════════════════ */

/* ── セクション共通 ── */
.checkout-customize {
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid #ece6de;
}
.checkout-packaging {
  margin-bottom: 48px; padding-bottom: 48px;
  border-bottom: 1px solid #ece6de;
}

/* ── カードリスト（縦スタック + 共有ボーダー） ── */
.pkg-list {
  border: 1px solid #e2d8d0;
  display: flex; flex-direction: column;
}

/* ── カード共通 ── */
.pkg-card {
  display: block; position: relative;
  border: none;
  border-bottom: 1px solid #e2d8d0;
  background: #fffdf9;
  cursor: pointer;
  transition: background 0.2s;
}
.pkg-card:last-child { border-bottom: none; }
.pkg-card:hover { background: #fdf7f2; }

/* 選択中 — 左ライン強調 */
.pkg-card--selected {
  background: #fdf5f1;
}
.pkg-card--selected::before {
  content: '';
  position: absolute; left: 0; top: 0; bottom: 0;
  width: 3px;
  background: #b8836e;
}

/* ── カード内レイアウト（左→右） ── */
.pkg-card input[type="radio"],
.pkg-card input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }

.pkg-card-inner {
  display: flex; align-items: center;
  padding: 20px 24px 20px 28px; gap: 16px;
}

/* ── ラジオドット（左） ── */
.pkg-radio-dot {
  width: 17px; height: 17px; flex-shrink: 0;
  border: 1.5px solid #cfc0b8; border-radius: 50%;
  position: relative; transition: border-color 0.2s;
  background: #fff;
}
.pkg-card--selected .pkg-radio-dot { border-color: #b8836e; }
.pkg-card--selected .pkg-radio-dot::after {
  content: '';
  position: absolute; inset: 3px;
  background: #b8836e; border-radius: 50%;
}

/* ── チェックボックス（左） ── */
.pkg-check-box {
  width: 17px; height: 17px; flex-shrink: 0;
  border: 1.5px solid #cfc0b8; border-radius: 2px;
  position: relative; transition: border-color 0.2s, background 0.2s;
  background: #fff;
}
.pkg-card--checkbox.pkg-card--selected .pkg-check-box {
  border-color: #b8836e; background: #b8836e;
}
.pkg-card--checkbox.pkg-card--selected .pkg-check-box::after {
  content: '';
  position: absolute; left: 4px; top: 1.5px;
  width: 5px; height: 9px;
  border: 1.5px solid #fff; border-top: none; border-left: none;
  transform: rotate(45deg);
}
.pkg-card--checkbox input[type="checkbox"] { position: absolute; opacity: 0; pointer-events: none; }

/* ── アドオン SVGアイコン ── */
.pkg-addon-svg {
  display: flex; align-items: center; flex-shrink: 0;
  color: #c4a090; transition: color 0.2s;
}
.pkg-card--selected .pkg-addon-svg { color: #b8836e; }

/* ── テキスト ── */
.pkg-info { flex: 1; min-width: 0; }
.pkg-name {
  font-family: var(--font-jp); font-size: 13px; font-weight: 400;
  letter-spacing: 0.6px; color: var(--text);
  display: flex; align-items: center; gap: 10px; margin-bottom: 5px;
}
.pkg-badge {
  font-family: var(--font-label); font-size: 7px; letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #b8836e; border: 1px solid #b8836e;
  padding: 1px 6px; line-height: 1.8; font-weight: 400;
}
.pkg-desc {
  font-family: var(--font-jp); font-size: 11px; color: var(--muted);
  line-height: 1.9; letter-spacing: 0.2px;
}
.pkg-price {
  font-family: var(--font-en); font-size: 13px; font-weight: 300;
  color: #a08878; white-space: nowrap; flex-shrink: 0; min-width: 56px; text-align: right;
}
.pkg-card--selected .pkg-price { color: #b8836e; }
.pkg-card--selected .pkg-name { color: #6e4038; }

/* 注文の流れ */
.checkout-flow { }
.checkout-flow-list {
  list-style: none; padding: 0;
  display: flex; flex-direction: column; gap: 14px;
  counter-reset: flow-counter;
}
.checkout-flow-list li {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  line-height: 1.9; padding-left: 28px; position: relative;
  counter-increment: flow-counter;
}
.checkout-flow-list li::before {
  content: counter(flow-counter);
  position: absolute; left: 0; top: 0;
  font-family: var(--font-en); font-size: 11px; font-weight: 300;
  color: var(--subtle); line-height: 1.9;
}
.checkout-flow-list li strong { color: var(--text); font-weight: 500; }
.checkout-flow-note {
  font-family: var(--font-jp); font-size: 12px; color: var(--subtle);
  margin-top: 20px;
}
.checkout-flow-note a {
  color: var(--text); text-decoration: underline; text-underline-offset: 3px;
}

/* ── 右カラム ────────────────────────────────── */
.checkout-right { position: sticky; top: 96px; }
.checkout-summary {
  border: 1px solid #ece4da; padding: 40px 36px;
  background: #fffdf9;
  margin-bottom: 16px;
}

/* 警告 */
.checkout-warning {
  background: #fff8e1; border: 1px solid #f0d060;
  padding: 14px 16px; margin-bottom: 20px;
  font-family: var(--font-jp); font-size: 12px; color: #5a4a00; line-height: 2;
}

/* 金額行 */
.checkout-price-rows { margin-bottom: 28px; }
.checkout-price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  padding: 10px 0;
}
.checkout-price-row--divider {
  border-top: 1px solid var(--border); padding: 0; margin: 4px 0;
}
.checkout-price-row--total {
  font-size: 16px; font-weight: 500; color: var(--text);
  padding-top: 14px;
}
.checkout-price-row--total span:last-child {
  font-family: var(--font-en); font-size: 24px; font-weight: 300; letter-spacing: -0.01em;
}
.checkout-price-row--tax {
  padding-top: 0; padding-bottom: 0;
  font-size: 11px; color: var(--subtle);
  justify-content: flex-end;
}

/* 分割払い目安 */
.checkout-installment-guide {
  margin: 20px 0 0;
  padding: 16px 20px;
  background: #f5f2ee;
  border: 1px solid var(--border);
}
.checkout-installment-guide__title {
  font-family: var(--font-en); font-size: 10px; letter-spacing: 1.8px;
  color: var(--muted); text-transform: uppercase; margin-bottom: 12px;
}
.checkout-installment-guide__rows {
  display: flex; flex-direction: column; gap: 8px;
}
.checkout-installment-guide__row {
  display: flex; justify-content: space-between; align-items: center;
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
}
.checkout-installment-guide__row strong {
  font-family: var(--font-en); font-size: 13px; font-weight: 400; color: var(--text);
}
.checkout-installment-guide__note {
  font-family: var(--font-jp); font-size: 10px; color: var(--subtle);
  margin-top: 12px; line-height: 1.6;
}

/* 支払いボタン — ローズゴールド */
.checkout-pay-btn {
  width: 100%; padding: 18px 24px;
  background: linear-gradient(135deg, #c4978a 0%, #b58272 100%); /* ローズゴールドグラデ */
  color: #fff;
  font-family: var(--font-jp); font-size: 13px; letter-spacing: 2.5px;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  transition: opacity 0.25s, transform 0.15s;
}
.checkout-pay-btn:hover { opacity: 0.9; transform: translateY(-1px); }
.checkout-pay-btn svg { stroke: currentColor; }

/* セキュア表示 */
.checkout-secure {
  display: flex; align-items: center; justify-content: center; gap: 6px;
  font-family: var(--font-jp); font-size: 11px; color: var(--subtle);
  margin-top: 14px;
}
.checkout-secure svg { stroke: var(--subtle); flex-shrink: 0; }
.checkout-powered {
  text-align: center; font-family: var(--font-label);
  font-size: 9px; letter-spacing: 1.5px; color: #c0bcb8;
  margin-top: 10px; text-transform: uppercase;
}

/* 安心ポイント */
.checkout-trust {
  border: 1px solid #ede6de; padding: 20px 24px;
  background: #fdfbf8; display: flex; flex-direction: column; gap: 10px;
  margin-bottom: 16px;
}
.checkout-trust-item {
  display: flex; align-items: center; gap: 10px;
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
}
.checkout-trust-icon {
  color: #c4978a; font-size: 13px; flex-shrink: 0;  /* ローズに変更 */
}

/* 分割払い案内 */

/* ===== ORDER COMPLETE — 注文サマリー ===== */
.complete-order-summary {
  margin: 32px 0; padding: 28px 32px;
  background: #faf8f5; border: 1px solid var(--border); text-align: left;
}
.complete-order-number {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  margin-bottom: 20px; padding-bottom: 16px; border-bottom: 1px solid var(--border);
}
.complete-order-number strong { color: var(--text); }
.complete-order-table { width: 100%; border-collapse: collapse; }
.complete-order-table td {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  padding: 8px 0; vertical-align: top;
}
.complete-order-price { text-align: right; white-space: nowrap; }
.complete-order-table tfoot tr { border-top: 1px solid var(--border); }
.complete-order-table tfoot td { padding-top: 12px; color: var(--text); font-size: 13px; }
.complete-order-total td { padding-top: 16px; }
.complete-order-tax td { color: var(--muted); font-size: 12px; }
.complete-order-grand-total td { font-size: 15px; padding-top: 10px; }
.complete-order-options {
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.complete-order-options p {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted); margin-bottom: 4px;
}
.complete-order-option-label {
  display: inline-block; font-size: 10px; letter-spacing: 1px;
  color: var(--subtle); margin-right: 8px; text-transform: uppercase;
}
.complete-order-email {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
  margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
}
.complete-order-email strong { color: var(--text); }
@media (max-width: 600px) {
  .complete-order-summary { padding: 20px 16px; }
}

/* ===== ORDER COMPLETE PAGE ===== */
.complete-wrap {
  min-height: 100vh; background: var(--bg);
  display: flex; align-items: center; justify-content: center;
  padding: 80px 32px;
}
.complete-inner {
  max-width: 600px; width: 100%; text-align: center;
}
.complete-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 56px; height: 56px; border-radius: 50%;
  border: 1.5px solid var(--text);
  font-size: 22px; color: var(--text);
  margin-bottom: 32px;
}
.complete-title {
  font-family: var(--font-jp); font-size: clamp(20px, 3vw, 28px);
  font-weight: 300; letter-spacing: 0.04em; margin-bottom: 24px;
}
.complete-divider {
  width: 32px; height: 1px; background: var(--border);
  margin: 0 auto 32px;
}
.complete-message {
  font-family: var(--font-jp); font-size: 14px; color: var(--muted);
  line-height: 2.4; margin-bottom: 48px;
}
.complete-message strong { color: var(--text); font-weight: 500; }
.complete-steps {
  text-align: left; border-top: 1px solid var(--border);
  margin-bottom: 48px;
}
.complete-step {
  display: flex; gap: 20px; align-items: flex-start;
  padding: 24px 0; border-bottom: 1px solid var(--border);
}
.complete-step-num {
  font-family: var(--font-en); font-size: 24px; font-weight: 300;
  color: #dddad4; line-height: 1; flex-shrink: 0; margin-top: 2px;
}
.complete-step-title {
  font-family: var(--font-jp); font-size: 14px; font-weight: 500;
  margin-bottom: 6px;
}
.complete-step-desc {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
  line-height: 1.8;
}
.complete-actions {
  display: flex; flex-direction: column; align-items: center; gap: 12px;
}
.complete-btn-line {
  display: inline-flex; align-items: center; gap: 8px;
  background: #06c755; color: #fff;
  font-family: var(--font-jp); font-size: 14px; letter-spacing: 1.2px;
  padding: 15px 36px; transition: opacity 0.2s; width: 100%; justify-content: center;
}
.complete-btn-line:hover { opacity: 0.88; }
.complete-btn-line svg { fill: currentColor; }
.complete-btn-home {
  font-family: var(--font-jp); font-size: 12px; color: var(--subtle);
  letter-spacing: 1px; text-decoration: underline; text-underline-offset: 3px;
  transition: color 0.2s;
}
.complete-btn-home:hover { color: var(--text); }

/* LINE 誘導バナー */
.complete-line-banner {
  background: #06c755; border-radius: 4px;
  padding: 24px 28px; margin-bottom: 40px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  text-align: left;
  box-shadow: 0 6px 24px rgba(6,199,85,0.28);
}
.complete-line-banner-inner {
  display: flex; align-items: center; gap: 16px; flex: 1; min-width: 0;
}
.complete-line-icon {
  width: 52px; height: 52px; background: rgba(255,255,255,0.18);
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.complete-line-text { min-width: 0; }
.complete-line-heading {
  font-family: var(--font-jp); font-size: 15px; font-weight: 600;
  color: #fff; margin-bottom: 5px; line-height: 1.4;
}
.complete-line-sub {
  font-family: var(--font-jp); font-size: 12px; color: rgba(255,255,255,0.85);
  line-height: 1.7;
}
.complete-line-cta {
  display: inline-block; background: #fff; color: #06c755;
  font-family: var(--font-jp); font-size: 13px; font-weight: 600;
  letter-spacing: 0.8px; padding: 11px 22px; border-radius: 2px;
  white-space: nowrap; flex-shrink: 0;
  transition: opacity 0.2s;
}
.complete-line-cta:hover { opacity: 0.88; }

/* STEP バッジ（今ここ表示） */
.complete-step-badge {
  display: inline-block; font-family: var(--font-label);
  font-size: 9px; letter-spacing: 1px; background: #06c755;
  color: #fff; padding: 2px 8px; border-radius: 20px;
  margin-left: 8px; vertical-align: middle; font-weight: 600;
}

@media (max-width: 600px) {
  .complete-line-banner {
    flex-direction: column; align-items: flex-start; gap: 16px;
  }
  .complete-line-cta { width: 100%; text-align: center; }
}

/* ===== 404 PAGE ===== */
.error404-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  padding: 80px 32px; background: var(--bg); text-align: center;
}
.error404-inner { max-width: 480px; width: 100%; }
.error404-code {
  font-family: var(--font-en); font-size: clamp(72px, 15vw, 120px);
  font-weight: 300; letter-spacing: -0.04em; color: #e4e0d8;
  line-height: 1; display: block; margin-bottom: 16px;
}
.error404-divider {
  width: 32px; height: 1px; background: var(--border); margin: 0 auto 28px;
}
.error404-title {
  font-family: var(--font-jp); font-size: 20px; font-weight: 300;
  letter-spacing: 0.04em; margin-bottom: 20px;
}
.error404-message {
  font-family: var(--font-jp); font-size: 13px; color: var(--muted);
  line-height: 2.2; margin-bottom: 40px;
}
.error404-actions { display: flex; flex-direction: column; gap: 12px; align-items: center; }
.error404-btn-home {
  display: inline-block; padding: 14px 40px;
  background: var(--text); color: var(--bg);
  font-family: var(--font-jp); font-size: 13px; letter-spacing: 1.4px;
  transition: opacity 0.2s;
}
.error404-btn-home:hover { opacity: 0.82; }
.error404-btn-line {
  font-family: var(--font-jp); font-size: 12px; color: var(--subtle);
  text-decoration: underline; text-underline-offset: 3px; transition: color 0.2s;
}
.error404-btn-line:hover { color: var(--text); }

/* ===== CHECKOUT RESPONSIVE ===== */
@media (max-width: 960px) {
  .checkout-page-wrap { padding-top: 82px; }
  .checkout-steps-indicator { padding: 14px 20px; top: 82px; }
  .step-label { font-size: 11px; }
  .checkout-wrap { padding: 40px 20px 80px; }
  .checkout-inner { grid-template-columns: 1fr; gap: 40px; }
  .checkout-right { position: static; }
  .checkout-summary { padding: 28px 24px; }
  .checkout-product-card { padding: 22px 20px; }
}
@media (max-width: 600px) {
  .checkout-page-wrap { padding-top: 82px; }
  .checkout-steps-indicator { top: 82px; padding: 12px 16px; }
  .step-num { width: 28px; height: 28px; font-size: 12px; }
  .step-label { font-size: 11px; letter-spacing: 0; }
  .checkout-step-item { gap: 8px; }
  .checkout-steps-inner { gap: 8px; }
  .form-row { grid-template-columns: 1fr; }
  .checkout-product-row { flex-direction: column; gap: 8px; }
  .checkout-product-price { font-size: 18px; }
  .pkg-card-inner { padding: 14px 16px; }
  .complete-wrap { padding: 60px 20px; }
}

/* ===== SOLDOUT / 販売停止ボタン ===== */
.checkout-next-btn--closed {
  opacity: 0.55; cursor: not-allowed;
  background: #9e9e9e !important; border-color: #9e9e9e !important;
  letter-spacing: 1.5px;
}
.checkout-soldout-note {
  font-family: var(--font-jp); font-size: 12px; color: var(--muted);
  text-align: center; margin-top: 10px; line-height: 1.7;
}

/* ===== CONTACT ===== */
.contact-wrap { padding: 120px 20px 80px; min-height: 70vh; }
.contact-inner { max-width: 640px; margin: 0 auto; }
.contact-title {
  font-family: var(--font-jp); font-size: clamp(22px, 4vw, 30px);
  font-weight: 400; letter-spacing: 3px; text-align: center;
  margin-bottom: 16px;
}
.contact-lead {
  font-family: var(--font-jp); font-size: 14px; color: var(--muted);
  text-align: center; line-height: 1.9; margin-bottom: 48px;
}
.contact-errors {
  background: #fff0f0; border: 1px solid #f5c6c6; border-radius: 6px;
  padding: 12px 20px; margin-bottom: 24px; list-style: none;
}
.contact-errors li { font-family: var(--font-jp); font-size: 13px; color: #c0392b; margin: 4px 0; }
.contact-field { margin-bottom: 24px; }
.contact-label {
  display: block; font-family: var(--font-jp); font-size: 13px;
  color: var(--text); letter-spacing: 0.5px; margin-bottom: 8px;
}
.contact-required { color: var(--accent); }
.contact-input, .contact-textarea {
  width: 100%; padding: 12px 16px; font-family: var(--font-jp); font-size: 14px;
  border: 1px solid var(--border); border-radius: 4px; background: #fff;
  color: var(--text); transition: border-color 0.2s; box-sizing: border-box;
}
.contact-input:focus, .contact-textarea:focus {
  outline: none; border-color: var(--accent);
}
.contact-textarea { resize: vertical; }
.contact-submit {
  width: 100%; padding: 16px; font-family: var(--font-jp); font-size: 14px;
  letter-spacing: 2px; background: var(--text); color: var(--bg);
  border: none; cursor: pointer; transition: opacity 0.2s;
}
.contact-submit:hover { opacity: 0.8; }
.contact-success {
  text-align: center; padding: 48px 24px;
  background: #f5fbf5; border: 1px solid #c3e6c3; border-radius: 8px;
}
.contact-success p { font-family: var(--font-jp); font-size: 15px; line-height: 2; margin-bottom: 24px; }
.contact-btn-home {
  display: inline-block; padding: 12px 32px; font-family: var(--font-jp);
  font-size: 13px; letter-spacing: 1px; border: 1px solid var(--text);
  color: var(--text); text-decoration: none; transition: opacity 0.2s;
}
.contact-btn-home:hover { opacity: 0.7; }
