/*
Theme Name: UNISTA
Theme URI: https://example.com/unista
Author: Your Name
Author URI: https://example.com
Description: チームユニフォーム専門店「ユニスタ」のWordPressテーマ
Version: 2.5.0
License: GNU General Public License v2 or later
Text Domain: unista
Tags: one-column, custom-menu, custom-logo, featured-images
*/

:root {
  --black: #000000;
  --dark: #0a0a0a;
  --dark-gray: #1a1a1a;
  --mid-gray: #333333;
  --light-gray: #888888;
  --off-white: #f5f5f5;
  --white: #ffffff;
  --line-green: #06c755;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Noto Sans JP', sans-serif;
  background: var(--black);
  color: var(--white);
  overflow-x: hidden;
  line-height: 1.8;
}
a { text-decoration: none; color: inherit; }
img { max-width: 100%; height: auto; }
ul { list-style: none; }

/* HEADER */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.4s;
}
.header.scrolled {
  background: rgba(0,0,0,0.95);
  padding: 16px 48px;
  backdrop-filter: blur(20px);
}
.logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  letter-spacing: 4px;
  color: var(--white);
}
.nav { display: flex; gap: 40px; align-items: center; }
.nav a {
  color: var(--white);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  transition: opacity 0.3s;
}
.nav a:hover { opacity: 0.6; }
.nav-cta {
  background: var(--line-green) !important;
  padding: 14px 28px !important;
  font-weight: 700 !important;
  border-radius: 4px !important;
}
.nav-cta:hover { background: #05b34a !important; }
.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}
.menu-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
}

/* BUTTONS */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 20px 40px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 1px;
  transition: all 0.4s;
  cursor: pointer;
  border: none;
  border-radius: 4px;
}
.btn-primary { background: var(--line-green); color: var(--white); }
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 20px 40px rgba(6,199,85,0.3);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1px solid rgba(255,255,255,0.3);
}
.btn-outline:hover { background: var(--white); color: var(--black); }

/* HERO */
.hero {
  position: relative;
  height: 100vh;
  min-height: 800px;
  display: flex;
  align-items: center;
}
.hero-bg {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
}
.hero-bg::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.8) 40%, rgba(0,0,0,0.3) 100%);
  z-index: 2;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(100%);
}
.hero-content {
  position: relative;
  z-index: 10;
  max-width: 1200px;
  padding: 0 80px;
}
.hero-eyebrow {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 14px;
  letter-spacing: 6px;
  opacity: 0.5;
  margin-bottom: 24px;
}
.hero-tag {
  display: inline-block;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  padding: 8px 16px;
  border: 1px solid rgba(255,255,255,0.3);
  margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(48px, 8vw, 100px);
  font-weight: 900;
  line-height: 1.1;
  margin-bottom: 32px;
  letter-spacing: -2px;
  white-space: pre-line;
}
.hero-title .price {
  font-family: 'Bebas Neue', sans-serif;
  letter-spacing: 2px;
}
.hero-subtitle {
  font-size: 16px;
  line-height: 2.2;
  opacity: 0.7;
  margin-bottom: 48px;
  max-width: 600px;
  white-space: pre-line;
}
.hero-stats { display: flex; gap: 48px; margin-bottom: 48px; }
.hero-stat .number {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  letter-spacing: 2px;
  line-height: 1;
}
.hero-stat .label {
  font-size: 11px;
  letter-spacing: 2px;
  opacity: 0.5;
  margin-top: 8px;
  text-transform: uppercase;
}
.hero-prices { display: flex; gap: 32px; margin-bottom: 48px; }
.price-box { text-align: center; }
.price-box .item { font-size: 11px; letter-spacing: 2px; opacity: 0.5; margin-bottom: 4px; }
.price-box .price { font-family: 'Bebas Neue', sans-serif; font-size: 36px; letter-spacing: 1px; }
.hero-cta { display: flex; gap: 20px; }
.scroll-line {
  position: absolute;
  bottom: 48px;
  left: 80px;
  display: flex;
  align-items: center;
  gap: 16px;
}
.scroll-line span { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; opacity: 0.4; }
.scroll-line::after { content: ""; width: 60px; height: 1px; background: var(--white); opacity: 0.3; }

/* SECTIONS */
.container { max-width: 1400px; margin: 0 auto; padding: 0 80px; }
.section-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 80px; }
.section-label {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 12px;
  letter-spacing: 4px;
  opacity: 0.4;
  margin-bottom: 16px;
}
.section-title {
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: -1px;
}
.section-title-sm {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 60px;
}
.section-link {
  font-size: 12px;
  letter-spacing: 2px;
  color: var(--black);
  border-bottom: 1px solid var(--black);
  padding-bottom: 4px;
}

/* SPORTS CARDS */
.sports-section { padding: 160px 0; background: var(--white); color: var(--black); }
.sports-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.sport-card {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.15);
  transition: all 0.4s;
}
.sport-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.25); }
.sport-card img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.sport-card:hover img { transform: scale(1.05); }
.sport-card::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 50%, transparent 100%);
}
.sport-card-content {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 32px;
  z-index: 10;
  color: var(--white);
}
.sport-card-tag { font-size: 10px; letter-spacing: 3px; opacity: 0.7; margin-bottom: 8px; text-transform: uppercase; }
.sport-card-title { font-size: 20px; font-weight: 700; margin-bottom: 8px; }
.sport-card-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; letter-spacing: 1px; }

/* REASONS */
.reasons-section { padding: 100px 0; background: var(--dark); }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 0; background: transparent; margin-top: 40px; border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; overflow: hidden; }
.reason-card { background: transparent; padding: 60px 48px; transition: background 0.4s; border-right: 1px solid rgba(255,255,255,0.1); }
.reason-card:last-child { border-right: none; }
.reason-card:hover { background: rgba(255,255,255,0.03); }
.reason-num { font-family: 'Bebas Neue', sans-serif; font-size: 72px; opacity: 0.1; line-height: 1; margin-bottom: 24px; }
.reason-title { font-size: 20px; font-weight: 700; margin-bottom: 20px; line-height: 1.6; }
.reason-desc { font-size: 14px; line-height: 2; opacity: 0.6; }

/* TARGET */
.target-section { padding: 140px 0; background: var(--dark); }
.target-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 32px; }
.target-card { background: var(--dark-gray); padding: 48px; position: relative; }
.target-card::before { content: ""; position: absolute; top: 0; left: 0; width: 4px; height: 100%; background: var(--white); }
.target-icon { font-size: 40px; margin-bottom: 20px; }
.target-title { font-size: 20px; font-weight: 900; margin-bottom: 24px; }
.target-list li {
  font-size: 14px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.8;
}
.target-list li::before { content: "✓"; color: var(--line-green); font-weight: 700; }

/* PRODUCTS */
.products-section { padding: 140px 0; background: var(--white); color: var(--black); }
.products-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.product-card {
  background: var(--white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
  transition: all 0.4s;
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.product-img { height: 220px; overflow: hidden; }
.product-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.product-card:hover .product-img img { transform: scale(1.05); }
.product-img .placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 56px;
  background: var(--off-white);
}
.product-body { padding: 24px; }
.product-name { font-size: 16px; font-weight: 700; margin-bottom: 8px; }
.product-desc { font-size: 12px; opacity: 0.5; margin-bottom: 12px; }
.product-price { font-family: 'Bebas Neue', sans-serif; font-size: 28px; color: var(--black); }
.product-price span { font-size: 14px; opacity: 0.5; }

/* COMPARISON */
.comparison-section { padding: 140px 0; background: var(--white); color: var(--black); }
.comparison-wrapper { background: var(--white); border-radius: 16px; overflow: hidden; box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.comparison-table { width: 100%; border-collapse: collapse; }
.comparison-table th, .comparison-table td { padding: 24px 20px; text-align: center; font-size: 14px; }
.comparison-table thead tr { background: var(--off-white); }
.comparison-table th { font-weight: 700; font-size: 13px; }
.comparison-table th:last-child { background: var(--line-green); color: var(--white); font-size: 15px; }
.comparison-table tbody tr { border-bottom: 1px solid rgba(0,0,0,0.06); }
.comparison-table tbody tr:hover { background: rgba(6,199,85,0.03); }
.comparison-table td:first-child { text-align: left; font-weight: 600; padding-left: 32px; }
.comparison-table td:last-child { background: rgba(6,199,85,0.08); font-weight: 700; color: var(--line-green); font-size: 16px; }
.comparison-table .old-price { color: var(--light-gray); text-decoration: line-through; }
.best-badge {
  display: inline-block;
  background: #ef4444;
  color: white;
  font-size: 10px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 4px;
  margin-left: 8px;
}

/* GALLERY */
.gallery-section { padding: 160px 0; background: var(--white); color: var(--black); }
.gallery-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 16px;
  height: 700px;
  margin-top: 80px;
}
.gallery-grid-4col { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.gallery-item {
  position: relative;
  overflow: hidden;
  cursor: pointer;
  border-radius: 8px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}
.gallery-item:first-child { grid-row: span 2; }
.gallery-grid-4col .gallery-item:first-child { grid-row: span 1; }
.gallery-grid-4col .gallery-item { aspect-ratio: 1; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item::after {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 50%);
  opacity: 0;
  transition: opacity 0.4s;
}
.gallery-item:hover::after { opacity: 1; }
.gallery-info {
  position: absolute;
  bottom: 24px;
  left: 24px;
  z-index: 10;
  color: var(--white);
  opacity: 0;
  transform: translateY(10px);
  transition: all 0.4s;
}
.gallery-item:hover .gallery-info { opacity: 1; transform: translateY(0); }
.gallery-info .team { font-size: 16px; font-weight: 700; }
.gallery-info .type { font-size: 12px; opacity: 0.7; }
.gallery-filters { display: flex; gap: 12px; margin-bottom: 40px; flex-wrap: wrap; }
.filter-btn {
  padding: 10px 24px;
  background: transparent;
  border: 1px solid var(--mid-gray);
  color: var(--black);
  font-size: 12px;
  cursor: pointer;
  border-radius: 4px;
}
.filter-btn:hover, .filter-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* TESTIMONIALS */
.testimonials-section { padding: 140px 0; background: var(--dark); }
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--dark-gray); padding: 40px; position: relative; }
.testimonial-card::before {
  content: """;
  position: absolute;
  top: 20px; left: 32px;
  font-size: 80px;
  font-family: Georgia, serif;
  opacity: 0.1;
  line-height: 1;
}
.testimonial-quote { font-size: 14px; line-height: 2; margin-bottom: 24px; position: relative; opacity: 0.9; }
.testimonial-author { font-size: 13px; font-weight: 700; }
.testimonial-info { font-size: 11px; opacity: 0.5; margin-top: 4px; }

/* FLOW */
.flow-section { padding: 140px 0; background: var(--dark); }
.flow-steps { display: flex; flex-direction: column; gap: 0; background: transparent; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
.flow-step { display: flex; align-items: center; gap: 40px; padding: 40px; background: transparent; transition: background 0.4s; border-bottom: 1px solid rgba(255,255,255,0.1); }
.flow-step:last-child { border-bottom: none; }
.flow-step:hover { background: rgba(255,255,255,0.03); }
.flow-num { font-family: 'Bebas Neue', sans-serif; font-size: 48px; opacity: 0.2; width: 80px; flex-shrink: 0; }
.flow-content h3 { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.flow-content p { font-size: 13px; opacity: 0.6; line-height: 1.8; }

/* FAQ */
.faq-section { padding: 140px 0; background: var(--dark); }
.faq-list { display: flex; flex-direction: column; gap: 0; background: transparent; border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; overflow: hidden; }
.faq-item { background: transparent; padding: 32px 40px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.faq-item:last-child { border-bottom: none; }
.faq-q { font-size: 15px; font-weight: 700; display: flex; align-items: center; gap: 16px; }
.faq-q::before {
  content: "Q";
  width: 32px; height: 32px;
  background: var(--white);
  color: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  flex-shrink: 0;
}
.faq-a { margin-top: 16px; padding-left: 48px; font-size: 14px; line-height: 1.9; opacity: 0.7; }

/* CTA */
.cta-section { padding: 200px 0; background: var(--black); text-align: center; position: relative; }
.cta-section::before {
  content: "CONTACT";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: 'Bebas Neue', sans-serif;
  font-size: clamp(100px, 20vw, 300px);
  opacity: 0.03;
  white-space: nowrap;
}
.cta-content { position: relative; z-index: 10; }
.cta-title { font-size: clamp(32px, 5vw, 52px); font-weight: 900; margin-bottom: 24px; }
.cta-desc { font-size: 15px; line-height: 2; opacity: 0.6; margin-bottom: 48px; }
.cta-btn { font-size: 14px; padding: 24px 64px; }

/* FOOTER */
.footer { padding: 80px 0 40px; background: var(--dark); border-top: 1px solid var(--mid-gray); }
.footer-content { display: flex; justify-content: space-between; align-items: flex-start; flex-wrap: wrap; gap: 40px; }
.footer-brand p { font-size: 12px; opacity: 0.4; margin-top: 16px; line-height: 1.8; }
.footer-links { display: flex; gap: 48px; }
.footer-col h4 { font-size: 11px; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; opacity: 0.4; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { color: var(--white); font-size: 13px; opacity: 0.7; transition: opacity 0.3s; }
.footer-col a:hover { opacity: 1; }
.footer-bottom { margin-top: 60px; padding-top: 24px; border-top: 1px solid var(--mid-gray); }
.footer-bottom p { font-size: 11px; opacity: 0.3; text-align: center; }

/* FIXED CTA */
.fixed-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 999;
  padding: 16px 20px;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(20px);
  border-top: 1px solid var(--mid-gray);
}
.fixed-cta .btn { 
  width: 100%; 
  justify-content: center;
  white-space: nowrap;
  padding: 16px 24px;
  font-size: 15px;
}

/* ANIMATIONS */
.fade-in { opacity: 0; transform: translateY(40px); transition: all 1s cubic-bezier(0.16, 1, 0.3, 1); }
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* RESPONSIVE */
@media (max-width: 1024px) {
  .sports-grid, .products-grid { grid-template-columns: repeat(2, 1fr); }
  .reasons-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; height: auto; }
  .gallery-item:first-child { grid-row: span 1; grid-column: span 2; height: 400px; }
  .gallery-item { height: 250px; }
  .gallery-grid-4col { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header { padding: 16px 24px; }
  .nav { display: none; }
  .nav.active {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--black);
    padding: 24px;
    gap: 20px;
  }
  .menu-toggle { display: block; }
  
  /* ヒーローセクション - スマホ最適化 */
  .hero { min-height: 100vh; }
  .hero-content { 
    padding: 0 20px; 
    max-width: 100%; 
  }
  .hero-title { 
    font-size: clamp(32px, 9vw, 48px) !important;
    line-height: 1.2;
    margin-bottom: 20px;
    letter-spacing: -1px;
    white-space: normal;
  }
  .hero-subtitle { 
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.8;
    margin-bottom: 32px;
    max-width: 100%;
    white-space: normal;
  }
  .hero-tag {
    font-size: 11px;
    padding: 6px 12px;
    margin-bottom: 16px;
  }
  
  /* 価格ボックス */
  .hero-prices { 
    flex-wrap: wrap; 
    gap: 16px;
    margin-bottom: 32px;
  }
  .price-box .price {
    font-size: 24px;
  }
  .price-box .item {
    font-size: 10px;
  }
  
  /* CTAボタン - スマホ最適化 */
  .hero-cta { 
    flex-direction: column;
    gap: 12px;
    width: 100%;
  }
  .hero-cta .btn {
    width: 100%;
    padding: 16px 24px;
    font-size: 14px;
    justify-content: center;
    white-space: nowrap;
  }
  
  /* その他 */
  .hero-stats { gap: 32px; }
  .hero-stat .number { font-size: 36px; }
  .container { padding: 0 20px; }
  .sports-grid, .products-grid { grid-template-columns: 1fr; }
  .sport-card { aspect-ratio: 4/3; }
  .target-grid { grid-template-columns: 1fr; }
  .section-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  
  /* ギャラリー - スマホ最適化 */
  .gallery-grid, .gallery-grid-4col { 
    grid-template-columns: 1fr 1fr; 
    gap: 12px;
  }
  .gallery-item:first-child { 
    grid-column: span 2;  /* 最初の画像は2列分 */
    grid-row: span 1;
  }
  .gallery-item {
    aspect-ratio: 1;  /* 正方形に統一 */
    height: auto !important;
  }
  .gallery-item:first-child {
    aspect-ratio: 16/9;  /* 最初だけ横長 */
  }
  .gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  /* フッター - スマホ最適化 */
  .footer-content { 
    flex-direction: column; 
    gap: 40px;
    text-align: center;
  }
  .footer-brand {
    order: -1;  /* ブランドを最初に */
  }
  .footer-links { 
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px; 
    width: 100%;
  }
  .footer-col {
    text-align: center;
    min-width: 100px;
  }
  .footer-col h4 {
    margin-bottom: 16px;
  }
  .footer-col li {
    margin-bottom: 10px;
  }
  .fixed-cta { display: block; }
  .footer { padding-bottom: 100px; }
  
  /* 比較表 */
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 16px 8px; }
  .comparison-table td:first-child { padding-left: 16px; }
  
  /* セクションタイトル */
  .section-title { font-size: 32px; }
  .section-title-sm { font-size: 24px; }
  .section-label { font-size: 11px; letter-spacing: 3px; }
  
  /* 理由セクション */
  .reasons-grid { grid-template-columns: 1fr; gap: 0; }
  .reason-card { padding: 32px 24px; border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); }
  .reason-card:last-child { border-bottom: none; }
  .reason-number { font-size: 36px; }
  .reason-title { font-size: 18px; }
  
  /* CTAセクション */
  .cta-section { padding: 60px 0; }
  .cta-title { font-size: 28px; }
  .cta-desc { font-size: 14px; }
  .cta-btn { 
    width: 100%; 
    max-width: 300px;
    white-space: nowrap;
  }
}

/* v1.2.1 - UNISTA column on the LEFT (2nd column) */
.comparison-table th:nth-child(2) { background: var(--line-green); color: var(--white); font-size: 15px; }
.comparison-table td:nth-child(2) { background: rgba(6,199,85,0.08); font-weight: 700; color: var(--line-green); font-size: 16px; }
.comparison-table th:last-child { background: var(--off-white); color: var(--black); font-size: 13px; }
.comparison-table td:last-child { background: transparent; font-weight: normal; color: var(--black); font-size: 14px; }


/* ============================================

/* ============================================
   ESTIMATOR - Design B (Minimal & Monochrome)
   ============================================ */

/* バナー */
.est-banner {
  display: grid !important;
  grid-template-columns: 1fr 1fr;
  background: #000000;
  min-height: 280px;
  cursor: pointer;
  overflow: hidden;
  transition: all 0.5s;
}
.est-banner:hover {
  box-shadow: 0 40px 80px rgba(0,0,0,0.3);
  transform: translateY(-4px);
}
.est-banner-left {
  padding: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.est-banner-tag {
  font-size: 11px;
  letter-spacing: 4px;
  color: #06c755;
  margin-bottom: 20px;
}
.est-banner-title {
  font-size: 36px;
  font-weight: 900;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 16px;
}
.est-banner-title span {
  color: #06c755;
}
.est-banner-subtitle {
  font-size: 14px;
  color: #888888;
  line-height: 1.8;
}
.est-banner-right {
  background: #06c755;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 280px;
}
.est-banner-right::before {
  content: "30";
  font-family: 'Bebas Neue', sans-serif;
  font-size: 200px;
  color: rgba(255,255,255,0.2);
  position: absolute;
  line-height: 1;
}
.est-banner-btn {
  position: relative;
  z-index: 1;
  background: #ffffff;
  color: #000000;
  padding: 20px 40px;
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 2px;
  transition: all 0.3s;
}
.est-banner:hover .est-banner-btn {
  background: #000000;
  color: #ffffff;
}

/* モーダル - 重要：デフォルト非表示 */
.est-modal-overlay {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #ffffff;
  z-index: 9999;
  overflow-y: auto;
}
.est-modal-overlay.active {
  display: block !important;
}
.est-modal-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 70px;
  background: #000000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  z-index: 10000;
}
.est-modal-logo {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  color: #ffffff;
  letter-spacing: 4px;
}
.est-modal-close {
  background: none;
  border: 1px solid #666666;
  color: #ffffff;
  padding: 10px 24px;
  font-size: 12px;
  letter-spacing: 2px;
  cursor: pointer;
  transition: all 0.3s;
}
.est-modal-close:hover {
  background: #ffffff;
  color: #000000;
}
.est-modal-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 120px 40px 80px;
  color: #000000;
}
.est-title {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 72px;
  letter-spacing: 4px;
  margin-bottom: 8px;
  color: #000000;
}
.est-subtitle {
  font-size: 14px;
  color: #888888;
  margin-bottom: 60px;
}
.est-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.est-section {
  margin-bottom: 40px;
}
.est-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #888888;
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 1px solid #eeeeee;
}
.est-select {
  width: 100%;
  padding: 16px 0;
  background: none;
  border: none;
  border-bottom: 2px solid #000000;
  font-size: 18px;
  font-weight: 700;
  cursor: pointer;
  color: #000000;
}
.est-select:focus {
  outline: none;
  border-color: #06c755;
}
.est-items {
  display: flex;
  flex-direction: column;
}
.est-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}
.est-item-name {
  font-weight: 700;
  min-width: 100px;
  color: #000000;
}
.est-item-price {
  font-size: 12px;
  color: #888888;
  flex: 1;
}
.est-item-qty {
  display: flex;
  align-items: center;
  gap: 12px;
}
.est-qty-btn {
  width: 36px;
  height: 36px;
  background: none;
  border: 1px solid #000000;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
  color: #000000;
}
.est-qty-btn:hover {
  background: #000000;
  color: #ffffff;
}
.est-qty-input {
  width: 60px;
  padding: 8px;
  text-align: center;
  border: none;
  border-bottom: 2px solid #000000;
  font-size: 18px;
  font-weight: 700;
  background: none;
  color: #000000;
}
.est-qty-input:focus {
  outline: none;
  border-color: #06c755;
}
.est-item-total {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 24px;
  min-width: 100px;
  text-align: right;
  color: #000000;
}
.est-options label {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  cursor: pointer;
  font-size: 14px;
  color: #000000;
}
.est-options input {
  accent-color: #06c755;
  width: 18px;
  height: 18px;
}
.est-option-price {
  margin-left: auto;
  color: #888888;
}
.est-input {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid #dddddd;
  font-size: 14px;
  margin-bottom: 8px;
  background: none;
  color: #000000;
}
.est-input:focus {
  outline: none;
  border-color: #000000;
}
.est-input::placeholder {
  color: #aaaaaa;
}

/* 結果 */
.est-result {
  background: #000000;
  color: #ffffff;
  padding: 40px;
  margin-top: 60px;
}
.est-result-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 14px;
  color: #888888;
}
.est-result-row.est-discount {
  color: #f87171;
}
.est-result-row.est-total {
  padding-top: 24px;
  margin-top: 16px;
  border-top: 1px solid #333333;
  font-size: 16px;
  color: #ffffff;
}
.est-result-row.est-total span:last-child {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  color: #06c755;
}
.est-result-note {
  font-size: 11px;
  color: #888888;
  margin-top: 20px;
}

/* アクション */
.est-actions {
  display: flex;
  gap: 16px;
  margin-top: 40px;
}
.est-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 20px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 2px;
  text-decoration: none;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.3s;
}
.est-btn-primary {
  background: #06c755;
  color: #ffffff;
}
.est-btn-primary:hover {
  background: #05a649;
}
.est-btn-outline {
  background: none;
  color: #000000;
  border: 2px solid #000000;
}
.est-btn-outline:hover {
  background: #000000;
  color: #ffffff;
}

/* LINE必須モーダル */
.est-line-modal {
  display: none !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.95);
  z-index: 99999;
  align-items: center;
  justify-content: center;
  padding: 20px;
  overflow-y: auto;
}
.est-line-modal.active {
  display: flex !important;
}
.est-line-content {
  text-align: center;
  color: #ffffff;
  max-width: 400px;
  padding: 40px;
  width: 100%;
}
.est-line-title {
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 32px;
}
.est-line-steps {
  margin-bottom: 28px;
  text-align: left;
  background: rgba(255,255,255,0.05);
  padding: 24px;
  border-radius: 12px;
}
.est-line-step {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}
.est-line-step-num {
  width: 28px;
  height: 28px;
  background: #06c755;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  flex-shrink: 0;
}
.est-line-step-text {
  font-size: 14px;
  font-weight: 700;
}
.est-line-copy-btn {
  width: 100%;
  padding: 16px;
  background: #ffffff;
  color: #000000;
  border: none;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
}
.est-line-copy-btn:hover {
  background: #f0f0f0;
}
.est-line-copied {
  display: none;
  color: #06c755;
  font-size: 13px;
  font-weight: 700;
  margin-top: 12px;
  text-align: center;
}
.est-line-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  background: #06c755;
  color: #ffffff;
  padding: 18px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  border-radius: 8px;
  transition: all 0.3s;
}
.est-line-btn:hover {
  background: #05a649;
  transform: translateY(-2px);
}
.est-line-note {
  font-size: 13px;
  color: #888888;
  line-height: 1.8;
  margin-top: 24px;
  padding: 20px;
  background: rgba(6,199,85,0.1);
  border-radius: 8px;
  border: 1px solid rgba(6,199,85,0.3);
}
.est-line-close {
  font-size: 12px;
  color: #888888;
  cursor: pointer;
  letter-spacing: 2px;
  margin-top: 24px;
}
.est-line-close:hover {
  color: #ffffff;
}

/* 見積もりセクション（ページ内配置用） */
.estimator-section-wrapper {
  padding: 0;
  background: transparent;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .est-banner {
    grid-template-columns: 1fr !important;
  }
  .est-banner-left {
    padding: 32px 24px;
  }
  .est-banner-tag {
    font-size: 10px;
    letter-spacing: 3px;
    margin-bottom: 12px;
  }
  .est-banner-title {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .est-banner-subtitle {
    font-size: 13px;
    line-height: 1.6;
  }
  .est-banner-right {
    padding: 40px 24px;
    min-height: 160px;
  }
  .est-banner-right::before {
    font-size: 100px;
  }
  .est-banner-btn {
    padding: 16px 32px;
    font-size: 14px;
  }
  .est-modal-body {
    padding: 100px 20px 60px;
  }
  .est-title {
    font-size: 36px;
  }
  .est-grid {
    grid-template-columns: 1fr !important;
    gap: 40px;
  }
  .est-actions {
    flex-direction: column;
  }
  .est-actions .btn {
    width: 100%;
    white-space: nowrap;
  }
  .est-result-row.est-total span:last-child {
    font-size: 36px;
  }
}

/* オプション詳細スタイル */
.est-option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 0;
  cursor: pointer;
  font-size: 14px;
  color: #000000;
  border-bottom: 1px solid #eeeeee;
}
.est-option:last-child {
  border-bottom: none;
}
.est-option input {
  margin-top: 2px;
}
.est-option-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.est-option-name {
  font-weight: 600;
}
.est-option-desc {
  font-size: 11px;
  color: #888888;
}
.est-option-price {
  font-size: 13px;
  color: #06c755;
  font-weight: 600;
  white-space: nowrap;
}

/* ============================================
   PRODUCT DETAIL PAGE - Design A
   ============================================ */

.product-page {
  padding-top: 80px;
}

/* パンくず */
.breadcrumb {
  padding: 20px 0;
  font-size: 12px;
  color: var(--light-gray);
}
.breadcrumb a {
  color: var(--light-gray);
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--black);
}
.breadcrumb span {
  margin: 0 8px;
}

/* 商品メイン */
.product-main {
  padding: 40px 0 80px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
}

/* ギャラリー */
.product-gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  position: sticky;
  top: 100px;
  align-self: start;
}
.gallery-thumbs {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.gallery-thumb {
  width: 100px;
  height: 100px;
  background: var(--off-white);
  border: 2px solid transparent;
  cursor: pointer;
  overflow: hidden;
  transition: border-color 0.3s;
}
.gallery-thumb.active {
  border-color: var(--black);
}
.gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery-main {
  aspect-ratio: 1;
  background: var(--off-white);
  overflow: hidden;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 商品情報 */
.product-info {
  padding-top: 20px;
}
.product-tag {
  display: inline-block;
  background: var(--black);
  color: var(--white);
  padding: 6px 12px;
  font-size: 11px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.product-title {
  font-size: 32px;
  font-weight: 900;
  margin-bottom: 8px;
  color: var(--black);
}
.product-subtitle {
  font-size: 14px;
  color: var(--light-gray);
  margin-bottom: 24px;
  line-height: 1.7;
}
.product-price {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 48px;
  margin-bottom: 8px;
  color: var(--black);
}
.product-price-note {
  font-size: 12px;
  color: var(--light-gray);
  margin-bottom: 32px;
}

/* バリエーション */
.variation-section {
  margin-bottom: 32px;
}
.variation-label {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  margin-bottom: 12px;
  color: var(--black);
}
.variation-options {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.variation-btn {
  padding: 14px 20px;
  border: 2px solid #ddd;
  background: var(--white);
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: left;
}
.variation-btn:hover {
  border-color: var(--black);
}
.variation-btn.active {
  border-color: var(--black);
  background: var(--black);
  color: var(--white);
}
.variation-btn .price {
  display: block;
  font-size: 12px;
  color: var(--light-gray);
  margin-top: 4px;
}
.variation-btn.active .price {
  color: var(--line-green);
}

/* 特徴 */
.product-features {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 32px;
  padding: 24px;
  background: var(--off-white);
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: var(--black);
}
.feature-icon {
  color: var(--line-green);
  font-weight: 700;
}

/* CTA */
.product-cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* 詳細タブセクション */
.product-details-section {
  padding: 60px 0;
  background: var(--off-white);
}
.tabs {
  display: flex;
  border-bottom: 1px solid #ddd;
  margin-bottom: 40px;
}
.tab {
  padding: 16px 32px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  background: none;
  border-bottom: 2px solid transparent;
  margin-bottom: -1px;
  color: var(--light-gray);
  transition: all 0.2s;
}
.tab:hover {
  color: var(--black);
}
.tab.active {
  border-color: var(--black);
  color: var(--black);
}
.tab-content {
  display: none;
}
.tab-content.active {
  display: block;
}
.spec-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--white);
}
.spec-table th,
.spec-table td {
  padding: 16px 20px;
  text-align: left;
  border-bottom: 1px solid #eee;
  font-size: 14px;
}
.spec-table th {
  width: 180px;
  background: var(--off-white);
  font-weight: 600;
  color: var(--black);
}

/* オプション説明 */
.est-option-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.est-option-name {
  font-weight: 600;
}
.est-option-desc {
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 2px;
}

/* レスポンシブ */
@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .product-gallery {
    position: static;
    grid-template-columns: 80px 1fr;
  }
  .gallery-thumb {
    width: 80px;
    height: 80px;
  }
  .product-title {
    font-size: 28px;
  }
  .product-price {
    font-size: 40px;
  }
  .variation-options {
    flex-direction: column;
  }
  .variation-btn {
    width: 100%;
  }
  .tabs {
    overflow-x: auto;
    white-space: nowrap;
  }
  .tab {
    padding: 16px 20px;
  }
}

/* =====================================================
   PRODUCT ORDER PAGE (v1.5.0)
   ===================================================== */
.product-order-page {
  background: var(--off-white);
  color: var(--black);
  min-height: 100vh;
  padding-top: 70px;
}
.product-order-page .breadcrumb {
  background: var(--white);
}
.product-order-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 20px;
}
.product-order-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 30px;
}

/* Preview Column */
.preview-column {
  position: sticky;
  top: 90px;
  align-self: start;
}
.preview-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.preview-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.preview-title-icon { font-size: 18px; }
.preview-main {
  aspect-ratio: 1;
  background: linear-gradient(135deg, #1a1a1a, #2a2a2a);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.preview-item-icon {
  font-size: 120px;
  position: relative;
  z-index: 2;
}
.preview-team-name {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 24px;
  color: rgba(255,255,255,0.2);
  z-index: 1;
  white-space: nowrap;
  text-align: center;
  max-width: 90%;
  overflow: hidden;
  font-family: 'Bebas Neue', sans-serif;
}
.preview-pattern-label {
  position: absolute;
  bottom: 16px;
  right: 16px;
  background: var(--line-green);
  color: var(--white);
  padding: 6px 12px;
  font-size: 11px;
  font-weight: 700;
  border-radius: 4px;
}
.preview-thumbs {
  display: flex;
  gap: 10px;
}
.preview-thumb {
  flex: 1;
  aspect-ratio: 1;
  background: linear-gradient(135deg, #2a2a2a, #3a3a3a);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  cursor: pointer;
  border: 3px solid transparent;
  transition: all 0.2s;
  position: relative;
}
.preview-thumb.active { border-color: var(--line-green); }
.preview-thumb.disabled { opacity: 0.4; cursor: default; }
.preview-thumb-label {
  position: absolute;
  bottom: 4px;
  font-size: 9px;
  color: #666;
}
.preview-thumb-pattern {
  position: absolute;
  top: 4px;
  right: 4px;
  background: rgba(0,0,0,0.6);
  color: #fff;
  font-size: 8px;
  padding: 2px 4px;
  border-radius: 2px;
}

/* Features Section */
.product-order-page .features-section {
  margin-top: 30px;
}
.product-order-page .features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.product-order-page .feature-card {
  background: var(--white);
  border-radius: 12px;
  padding: 20px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0,0,0,0.05);
}
.product-order-page .feature-icon { font-size: 28px; margin-bottom: 10px; }
.product-order-page .feature-title { font-size: 13px; font-weight: 700; margin-bottom: 4px; color: var(--black); }
.product-order-page .feature-desc { font-size: 11px; color: var(--light-gray); }

/* Form Column */
.form-column {}
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.form-section-title {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--black);
}
.form-section-num {
  width: 24px;
  height: 24px;
  background: var(--black);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* Team Name Input */
.team-name-input {
  width: 100%;
  padding: 14px 16px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  transition: border-color 0.2s;
}
.team-name-input:focus { outline: none; border-color: var(--line-green); }
.team-name-input::placeholder { color: #bbb; font-weight: 400; }
.team-name-hint {
  font-size: 11px;
  color: var(--light-gray);
  margin-bottom: 16px;
}
.team-name-preview {
  background: var(--off-white);
  padding: 20px;
  border-radius: 8px;
  text-align: center;
  margin-bottom: 16px;
  min-height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.team-name-preview-text {
  font-size: 28px;
  font-weight: 700;
  word-break: break-all;
  font-family: 'Bebas Neue', sans-serif;
  color: var(--black);
}
.team-name-preview-label {
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 8px;
}

/* Font Selection */
.font-section { margin-bottom: 20px; }
.font-label {
  font-size: 12px;
  color: var(--light-gray);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.font-label-badge {
  background: #eee;
  padding: 2px 8px;
  border-radius: 10px;
  font-size: 10px;
}
.font-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
}
.font-grid-jp {
  grid-template-columns: repeat(3, 1fr);
}
.font-btn {
  padding: 12px 8px;
  border: 2px solid #eee;
  background: var(--white);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
}
.font-btn:hover { border-color: #ccc; }
.font-btn.active { border-color: var(--line-green); background: rgba(6,199,85,0.05); }
.font-btn-name { font-size: 18px; margin-bottom: 4px; }
.font-btn-label { font-size: 9px; color: var(--light-gray); }

/* Item Section */
.item-section {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid #eee;
}
.item-section:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}
.item-header-left {
  display: flex;
  align-items: center;
  gap: 10px;
}
.item-icon { font-size: 24px; }
.item-name { font-size: 15px; font-weight: 700; color: var(--black); }
.item-price { font-size: 13px; color: var(--light-gray); }
.item-toggle { display: flex; align-items: center; gap: 8px; }
.item-toggle-label { font-size: 12px; color: var(--light-gray); }
.item-toggle-switch {
  width: 48px;
  height: 26px;
  background: #ddd;
  border-radius: 13px;
  position: relative;
  cursor: pointer;
  transition: background 0.2s;
}
.item-toggle-switch.active { background: var(--line-green); }
.item-toggle-switch::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 20px;
  height: 20px;
  background: var(--white);
  border-radius: 50%;
  transition: left 0.2s;
}
.item-toggle-switch.active::after { left: 25px; }
.item-body { display: none; }
.item-body.active { display: block; }

/* Pattern Selection */
.pattern-label { font-size: 12px; color: var(--light-gray); margin-bottom: 10px; }
.pattern-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}
.pattern-btn {
  aspect-ratio: 1;
  border: 3px solid #eee;
  background: linear-gradient(135deg, #e0e0e0, #f5f5f5);
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--light-gray);
  position: relative;
  overflow: hidden;
}
.pattern-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.5;
}
.pattern-btn:hover { border-color: #ccc; transform: scale(1.02); }
.pattern-btn.active { border-color: var(--line-green); }
.pattern-btn-icon { font-size: 24px; margin-bottom: 4px; position: relative; z-index: 1; }
.pattern-btn-num { position: relative; z-index: 1; font-weight: 700; }
.pattern-btn[data-pattern="1"]::before { background: linear-gradient(135deg, #1a1a1a, #333); }
.pattern-btn[data-pattern="2"]::before { background: linear-gradient(135deg, #003366, #0066cc); }
.pattern-btn[data-pattern="3"]::before { background: linear-gradient(135deg, #660000, #cc0000); }
.pattern-btn[data-pattern="4"]::before { background: linear-gradient(135deg, #003300, #006600); }
.pattern-btn[data-pattern="5"]::before { background: linear-gradient(135deg, #333, #666, #333); }
.pattern-btn[data-pattern="6"]::before { background: repeating-linear-gradient(90deg, #1a1a1a, #1a1a1a 3px, #333 3px, #333 6px); }
.pattern-btn[data-pattern="7"]::before { background: linear-gradient(135deg, #4a0080, #8000cc); }
.pattern-btn[data-pattern="8"]::before { background: linear-gradient(135deg, #cc6600, #ff9933); }
.pattern-btn[data-pattern="9"]::before { background: conic-gradient(from 45deg, #c00, #00c, #0c0, #cc0, #c00); }
.pattern-btn[data-pattern="10"]::before { background: repeating-linear-gradient(45deg, #000 0px, #000 10px, #fff 10px, #fff 20px); background-size: 10px 10px; }

/* Quantity Row */
.qty-row { display: flex; align-items: center; gap: 12px; }
.qty-label { font-size: 12px; color: var(--light-gray); min-width: 50px; }
.qty-controls { display: flex; align-items: center; gap: 8px; }
.qty-btn {
  width: 36px;
  height: 36px;
  border: 2px solid #ddd;
  background: var(--white);
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.2s;
}
.qty-btn:hover { border-color: var(--black); background: var(--off-white); }
.qty-input {
  width: 70px;
  height: 36px;
  border: 2px solid #ddd;
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
}
.qty-unit { font-size: 13px; color: var(--light-gray); }
.item-subtotal {
  margin-left: auto;
  font-family: 'Bebas Neue', sans-serif;
  font-size: 20px;
  color: var(--line-green);
}

/* Notes Section */
.notes-section { margin-top: 0; }
.notes-textarea {
  width: 100%;
  height: 100px;
  padding: 12px;
  border: 2px solid #ddd;
  border-radius: 8px;
  font-size: 14px;
  resize: vertical;
  font-family: inherit;
}
.notes-textarea:focus { outline: none; border-color: var(--line-green); }
.notes-textarea::placeholder { color: #bbb; }
.notes-examples {
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 8px;
  line-height: 1.6;
}

/* Total Card */
.total-card {
  background: var(--black);
  color: var(--white);
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 20px;
}
.total-row {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  margin-bottom: 10px;
  color: var(--light-gray);
}
.total-row.total-discount { color: var(--line-green); }
.total-row.total-main {
  padding-top: 16px;
  margin-top: 16px;
  border-top: 1px solid #333;
  font-size: 15px;
  color: var(--white);
  margin-bottom: 0;
}
.total-row.total-main .total-value {
  font-family: 'Bebas Neue', sans-serif;
  font-size: 36px;
  color: var(--line-green);
}

/* CTA Card */
.cta-card {
  background: var(--white);
  border-radius: 16px;
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.product-order-page .btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 18px;
  font-size: 15px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  border-radius: 4px;
  transition: all 0.3s;
  width: 100%;
  margin-bottom: 10px;
}
.product-order-page .btn:last-child { margin-bottom: 0; }
.product-order-page .btn-primary { background: var(--line-green); color: var(--white); }
.product-order-page .btn-primary:hover { background: #05a649; transform: scale(1.01); }
.product-order-page .btn-outline { background: none; border: 2px solid var(--black); color: var(--black); }
.product-order-page .btn-outline:hover { background: var(--black); color: var(--white); }
.cta-note {
  text-align: center;
  font-size: 11px;
  color: var(--light-gray);
  margin-top: 12px;
  line-height: 1.6;
}

/* Message Card */
.message-card {
  background: #f0fff4;
  border: 1px solid var(--line-green);
  border-radius: 12px;
  padding: 16px;
  margin-top: 20px;
}
.message-title {
  font-size: 12px;
  font-weight: 700;
  color: var(--line-green);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.message-content {
  font-size: 11px;
  font-family: monospace;
  background: var(--white);
  padding: 12px;
  border-radius: 6px;
  white-space: pre-wrap;
  line-height: 1.6;
  max-height: 200px;
  overflow-y: auto;
  color: var(--black);
}

/* Product Order Page Responsive */
@media (max-width: 1024px) {
  .product-order-grid { grid-template-columns: 1fr; }
  .preview-column { position: static; }
  .font-grid { grid-template-columns: repeat(4, 1fr); }
  .product-order-page .features-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 600px) {
  .font-grid { grid-template-columns: repeat(3, 1fr); }
  .product-order-page .features-grid { grid-template-columns: 1fr 1fr; }
  .preview-item-icon { font-size: 80px; }
  .team-name-preview-text { font-size: 22px; }
}

/* ========================================
   商品詳細ページ v1.5.8
   ======================================== */
.product-detail-page {
    padding-top: 80px;
    background: var(--white);
    min-height: 100vh;
}
.product-detail-page .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.product-detail-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    padding: 60px 0;
    align-items: start;
}
@media (max-width: 900px) {
    .product-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 40px 0;
    }
}

/* 商品画像ギャラリー */
.product-gallery {
    position: sticky;
    top: 100px;
}
.product-main-image {
    width: 100%;
    background: #f5f5f5;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.placeholder-large {
    font-size: 120px;
    opacity: 0.3;
}
.product-thumbnails {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 8px;
}
.product-thumb {
    width: 80px;
    height: 80px;
    min-width: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #eee;
    transition: all 0.2s;
    background: #f5f5f5;
}
.product-thumb:hover {
    border-color: #999;
}
.product-thumb.active {
    border-color: var(--black);
}
.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 商品情報 */
.product-info {
    color: var(--black);
}
.product-sport-tag {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    padding: 6px 12px;
    border-radius: 4px;
    margin-bottom: 16px;
}
.product-detail-page .product-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--black);
}
.product-color {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 24px;
}
.color-dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

/* カラーバリエーション */
.product-variations {
    margin-bottom: 32px;
    padding: 20px;
    background: #f8f8f8;
    border-radius: 12px;
}
.variations-label {
    font-size: 12px;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 12px;
    letter-spacing: 1px;
}
.variations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}
.variation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 8px;
    border: 2px solid transparent;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 70px;
}
.variation-item:hover {
    border-color: var(--mid-gray);
}
.variation-item.active {
    border-color: var(--black);
    background: var(--white);
}
.variation-item img {
    width: 50px;
    height: 50px;
    border-radius: 6px;
    object-fit: cover;
}
.variation-color {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}
.variation-name {
    font-size: 11px;
    color: var(--black);
    font-weight: 500;
}

/* 価格 */
.product-prices {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
.price-option {
    background: #f8f8f8;
    padding: 16px;
    border-radius: 12px;
    text-align: center;
}
.price-label {
    display: block;
    font-size: 11px;
    font-weight: 700;
    color: var(--light-gray);
    margin-bottom: 8px;
}
.price-value {
    display: block;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: var(--black);
    line-height: 1;
    margin-bottom: 4px;
}
.price-desc {
    font-size: 10px;
    color: var(--light-gray);
}
@media (max-width: 600px) {
    .product-prices {
        grid-template-columns: 1fr;
    }
    .price-option {
        display: flex;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
    .price-value {
        font-size: 24px;
    }
}

/* 特徴 */
.product-features {
    margin-bottom: 32px;
    background: #f5f5f5;
    padding: 20px;
    border-radius: 12px;
}
.product-features ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.product-features li {
    padding: 12px 0;
    border-bottom: 1px solid #ddd;
    font-size: 14px;
    color: #333;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    line-height: 1.5;
}
.product-features li:before {
    content: '✓';
    color: var(--line-green);
    font-weight: 700;
    flex-shrink: 0;
}
.product-features li:last-child {
    border-bottom: none;
}

/* 説明文 */
.product-description {
    font-size: 14px;
    line-height: 1.8;
    color: #666;
    margin-bottom: 32px;
}

/* CTA */
.product-cta {
    margin-top: 32px;
}
.product-detail-page .product-cta .btn-large {
    display: block;
    width: 100%;
    padding: 20px 32px;
    font-size: 16px;
    text-align: center;
    background: var(--line-green);
    color: var(--white);
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
}
.product-detail-page .product-cta .btn-large:hover {
    background: #05a649;
    transform: translateY(-2px);
}
.product-cta-note {
    text-align: center;
    font-size: 12px;
    color: #999;
    margin-top: 12px;
}

/* 関連商品 */
.related-products {
    padding: 80px 0;
    background: #f5f5f5;
}
.related-products .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}
.related-products .section-title-sm {
    text-align: center;
    margin-bottom: 40px;
    font-size: 24px;
    color: var(--black);
}
.related-products .products-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 900px) {
    .related-products .products-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   商品一覧ページ v1.5.7
   ======================================== */
.products-archive {
    padding-top: 80px;
    background: var(--dark);
    min-height: 100vh;
}
.archive-hero {
    padding: 60px 0 40px;
    text-align: center;
}
.archive-title {
    font-size: 48px;
    font-weight: 900;
    color: var(--white);
}

/* フィルター */
.archive-filter {
    padding: 0 0 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.filter-row {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
}
.filter-group {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-label {
    font-size: 12px;
    color: var(--light-gray);
    margin-right: 8px;
}
.filter-btn {
    padding: 8px 16px;
    font-size: 12px;
    color: var(--light-gray);
    background: transparent;
    border: 1px solid var(--mid-gray);
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.2s;
}
.filter-btn:hover {
    color: var(--white);
    border-color: var(--white);
}
.filter-btn.active {
    background: var(--white);
    color: var(--black);
    border-color: var(--white);
}

/* 商品グリッド */
.archive-products {
    padding: 60px 0;
}
.products-grid-archive {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
@media (max-width: 1200px) {
    .products-grid-archive {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 900px) {
    .products-grid-archive {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 600px) {
    .products-grid-archive {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* 商品カードにリンク対応 */
a.product-card {
    text-decoration: none;
    display: block;
    transition: transform 0.3s;
}
a.product-card:hover {
    transform: translateY(-8px);
}

/* 商品カラーバッジ */
.product-color-badge {
    position: absolute;
    bottom: 12px;
    left: 12px;
    padding: 4px 10px;
    font-size: 10px;
    font-weight: 700;
    color: var(--white);
    border-radius: 4px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
.product-sport-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 8px;
    font-size: 10px;
    font-weight: 700;
    background: var(--dark);
    color: var(--white);
    border-radius: 4px;
}
.product-img {
    position: relative;
}

/* 商品がない場合 */
.no-products {
    text-align: center;
    padding: 80px 20px;
    color: var(--light-gray);
}
.no-products p {
    margin-bottom: 24px;
}

/* ページネーション */
.archive-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 60px;
}
.archive-pagination a,
.archive-pagination span {
    padding: 12px 20px;
    background: var(--mid-gray);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-size: 14px;
    transition: all 0.2s;
}
.archive-pagination a:hover {
    background: var(--white);
    color: var(--black);
}
.archive-pagination .current {
    background: var(--line-green);
    color: var(--white);
}

/* スポーツLPの商品「すべて見る」ボタン */
.products-more {
    text-align: center;
    margin-top: 40px;
}

/* ========================================
   商品注文ページ v1.5.9
   ======================================== */
.product-order-page {
    padding-top: 80px;
    background: #f5f5f5;
    min-height: 100vh;
}
.product-order-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
}
.product-order-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}
@media (max-width: 900px) {
    .product-order-grid {
        grid-template-columns: 1fr;
    }
}

/* 左カラム */
.preview-column {
    position: sticky;
    top: 100px;
}
.product-gallery-card,
.variations-card,
.features-card {
    background: var(--white);
    border-radius: 16px;
    padding: 20px;
    margin-bottom: 20px;
}
.product-gallery-card .product-main-image {
    width: 100%;
    aspect-ratio: 1;
    background: #f8f8f8;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.product-gallery-card .product-main-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.product-gallery-card .product-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
}
.product-gallery-card .product-thumb {
    width: 60px;
    height: 60px;
    min-width: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid #eee;
    transition: all 0.2s;
}
.product-gallery-card .product-thumb.active {
    border-color: var(--black);
}
.product-gallery-card .product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* バリエーション */
.variations-card .variations-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 12px;
}
.variations-card .variations-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.variations-card .variation-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 8px;
    border: 2px solid #eee;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.2s;
    min-width: 60px;
}
.variations-card .variation-item:hover {
    border-color: #999;
}
.variations-card .variation-item.active {
    border-color: var(--black);
    background: #f8f8f8;
}
.variations-card .variation-item img {
    width: 40px;
    height: 40px;
    border-radius: 4px;
    object-fit: cover;
}
.variations-card .variation-color {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}
.variations-card .variation-name {
    font-size: 10px;
    color: #333;
}

/* 特徴 */
.features-card .features-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}
.features-card .feature-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: #333;
}
.features-card .feature-icon {
    font-size: 18px;
}

/* 右カラム - フォーム */
.form-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.product-header {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
}
.product-header .product-sport-tag {
    display: inline-block;
    background: var(--dark);
    color: var(--white);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.product-header .product-title {
    font-size: 24px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 8px;
    line-height: 1.3;
}
.product-header .product-color {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #666;
    margin-bottom: 12px;
}
.product-header .color-dot {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}
.product-header .product-base-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--black);
}
.product-header .product-base-price span {
    font-family: inherit;
    font-size: 14px;
    color: #999;
}

/* フォームカード */
.form-card {
    background: var(--white);
    border-radius: 16px;
    padding: 24px;
}
.form-section-title {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 20px;
}
.step-num {
    width: 28px;
    height: 28px;
    background: var(--black);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}
.form-label {
    display: block;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 8px;
    margin-top: 16px;
}
.form-label:first-of-type {
    margin-top: 0;
}
.form-input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 2px solid #eee;
    border-radius: 10px;
    outline: none;
    transition: border-color 0.2s;
}
.form-input:focus {
    border-color: var(--black);
}
.form-hint {
    font-size: 11px;
    color: #999;
    margin-top: 6px;
}
.form-textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 14px;
    border: 2px solid #eee;
    border-radius: 10px;
    outline: none;
    resize: vertical;
    font-family: inherit;
}
.form-textarea:focus {
    border-color: var(--black);
}

/* フォント選択 */
.font-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}
.font-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: #f8f8f8;
    border: 2px solid transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.font-btn span {
    font-size: 20px;
    font-weight: 700;
}
.font-btn small {
    font-size: 10px;
    color: #666;
}
.font-btn:hover {
    border-color: #ccc;
}
.font-btn.active {
    border-color: var(--black);
    background: var(--white);
}

/* アイテム選択 */
.item-row {
    border: 2px solid #eee;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
}
.item-row:last-child {
    margin-bottom: 0;
}
.item-header {
    padding: 16px;
    background: #fafafa;
}
.item-toggle {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
}
.item-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--line-green);
}
.item-icon {
    font-size: 24px;
}
.item-name {
    font-weight: 700;
    color: #333;
    flex: 1;
}
.item-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #333;
}
.item-body {
    display: none;
    padding: 16px;
    border-top: 1px solid #eee;
    background: var(--white);
}
.item-body.active {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-btn {
    width: 36px;
    height: 36px;
    border: 2px solid #ddd;
    background: var(--white);
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}
.qty-btn:hover {
    border-color: var(--black);
}
.qty-input {
    width: 60px;
    height: 36px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
    border: 2px solid #ddd;
    border-radius: 8px;
    outline: none;
}
.qty-unit {
    font-size: 14px;
    color: #666;
}
.item-subtotal {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    color: var(--black);
}

/* 合計カード */
.total-card {
    background: var(--dark);
    color: var(--white);
    border-radius: 16px;
    padding: 24px;
}
.total-rows {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(255,255,255,0.2);
}
.total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    font-size: 14px;
}
.total-row .row-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
}
.total-row.discount-row {
    color: var(--line-green);
}
.total-final {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 16px;
    font-weight: 700;
}
.total-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 36px;
    color: var(--line-green);
}
.total-note {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
    margin-top: 12px;
}

/* メッセージカード */
.message-card {
    background: #f0fff4;
    border: 2px solid var(--line-green);
    border-radius: 16px;
    padding: 20px;
}
.message-title {
    font-size: 13px;
    font-weight: 700;
    color: var(--line-green);
    margin-bottom: 12px;
}
.message-content {
    font-size: 12px;
    font-family: monospace;
    background: var(--white);
    padding: 16px;
    border-radius: 8px;
    white-space: pre-wrap;
    line-height: 1.6;
    max-height: 200px;
    overflow-y: auto;
    color: #333;
    margin: 0;
}

/* CTAボタン */
.cta-buttons {
    display: flex;
    gap: 12px;
}
.cta-buttons .btn {
    flex: 1;
    padding: 16px;
    font-size: 14px;
    font-weight: 700;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
}
.cta-buttons .btn-copy {
    background: var(--white);
    color: var(--black);
    border: 2px solid var(--black);
}
.cta-buttons .btn-copy:hover {
    background: var(--black);
    color: var(--white);
}
.cta-buttons .btn-primary {
    background: var(--line-green);
    color: var(--white);
}
.cta-buttons .btn-primary:hover {
    background: #05a649;
}
.cta-note {
    text-align: center;
    font-size: 11px;
    color: #999;
    margin-top: 12px;
}

@media (max-width: 600px) {
    .preview-column {
        position: static;
    }
    .font-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cta-buttons {
        flex-direction: column;
    }
}

/* ========================================
   商品注文ページ v1.6.1 追加スタイル
   ======================================== */

/* チーム名プレビューオーバーレイ */
.product-main-image {
    position: relative;
}
.team-name-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
}
.team-name-overlay.visible {
    opacity: 1;
}
#team-name-preview {
    font-size: 32px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), -1px -1px 2px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    text-transform: none;
}
@media (max-width: 600px) {
    #team-name-preview {
        font-size: 24px;
    }
}

/* フォント選択の背景色修正 */
.font-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.font-grid-jp {
    grid-template-columns: repeat(5, 1fr);
}
.font-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 12px 8px;
    background: #ffffff;
    border: 2px solid #ddd;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.font-btn span {
    font-size: 18px;
    color: #333;
}
.font-btn small {
    font-size: 9px;
    color: #666;
}
.font-btn:hover {
    border-color: #999;
    background: #f8f8f8;
}
.font-btn.active {
    border-color: var(--line-green);
    background: #f0fff4;
}
@media (max-width: 600px) {
    .font-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .font-grid-jp {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* プラン選択 */
.plan-selector {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}
.plan-option {
    flex: 1;
    display: flex;
    cursor: pointer;
}
.plan-option input {
    display: none;
}
.plan-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    width: 100%;
    padding: 12px 8px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
    text-align: center;
}
.plan-option input:checked + .plan-label {
    background: #f0fff4;
    border-color: var(--line-green);
}
.plan-name {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}
.plan-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    color: #333;
}
@media (max-width: 600px) {
    .plan-selector {
        flex-direction: column;
    }
    .plan-label {
        flex-direction: row;
        justify-content: space-between;
    }
}

/* 数量行 */
.qty-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

/* アイテム行の調整 */
.item-body {
    display: none;
    padding: 16px;
    border-top: 1px solid #eee;
    background: var(--white);
    flex-direction: column;
    gap: 16px;
}
.item-body.active {
    display: flex;
}

/* 合計行の調整 */
.total-row .row-name {
    font-weight: 500;
}
.total-row .row-plan {
    font-size: 12px;
    color: rgba(255,255,255,0.7);
}

/* ========================================
   商品選択UI v1.6.2
   ======================================== */

/* 商品未登録 */
.item-row.disabled {
    opacity: 0.5;
}
.item-no-product {
    font-size: 11px;
    color: #999;
    margin-left: auto;
}

/* 商品選択グリッド */
.product-selector {
    margin-bottom: 16px;
}
.selector-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
    display: block;
}
.product-select-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
    gap: 10px;
}
.product-select-item {
    cursor: pointer;
}
.product-select-item input {
    display: none;
}
.product-select-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 12px 8px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.2s;
    text-align: center;
}
.product-select-item:hover .product-select-inner {
    border-color: #999;
}
.product-select-item.active .product-select-inner,
.product-select-item input:checked + .product-select-inner {
    border-color: var(--line-green);
    background: #f0fff4;
}
.product-select-inner img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 8px;
}
.product-select-icon {
    font-size: 36px;
    margin-bottom: 8px;
}
.product-select-name {
    font-size: 11px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    margin-bottom: 4px;
}
.product-select-color {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
    color: #666;
}
.color-dot-sm {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 1px solid rgba(0,0,0,0.1);
}

/* 合計行のプランバッジ */
.row-plan-badge {
    font-size: 11px;
    color: rgba(255,255,255,0.6);
}

@media (max-width: 600px) {
    .product-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   オプション選択UI v1.6.3
   ======================================== */

/* オプション説明テキスト */
.option-desc {
    font-size: 13px;
    color: #666;
    margin-bottom: 16px;
}

/* オプショングリッド */
.options-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

/* オプションアイテム */
.option-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 16px;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.option-item:hover {
    border-color: #ccc;
    background: #f0f0f0;
}
.option-item input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    accent-color: var(--line-green);
}
.option-item input[type="checkbox"]:checked + .option-content {
    color: #333;
}
.option-item.always-on {
    background: #f0fff4;
    border-color: var(--line-green);
    opacity: 0.8;
}
.option-item.discount .option-price {
    color: #e74c3c;
}

.option-content {
    flex: 1;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}
.option-name {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}
.option-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--line-green);
    margin-left: auto;
}
.option-desc-text {
    width: 100%;
    font-size: 12px;
    color: #888;
    margin-top: 2px;
}

/* 納期オプション */
.delivery-options {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.delivery-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    background: #f8f8f8;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.2s;
}
.delivery-option:hover {
    border-color: #ccc;
}
.delivery-option.active {
    border-color: var(--line-green);
    background: #f0fff4;
}
.delivery-option input[type="radio"] {
    width: 20px;
    height: 20px;
    accent-color: var(--line-green);
}
.delivery-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.delivery-name {
    font-weight: 700;
    font-size: 14px;
    color: #333;
}
.delivery-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 16px;
    color: var(--line-green);
}

/* チームオプション */
.team-options .option-item {
    background: #fffbf0;
    border-color: #f0e6d0;
}
.team-options .option-item:hover {
    border-color: #e0d0b0;
}

/* レスポンシブ */
@media (min-width: 768px) {
    .options-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .delivery-options {
        flex-direction: row;
    }
    .delivery-option {
        flex: 1;
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .delivery-content {
        flex-direction: column;
        gap: 4px;
    }
}

/* ========================================
   商品スライダー v1.6.4
   ======================================== */

/* セクションヘッダー */
.section-header-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 24px;
}
.section-header-row .section-label,
.section-header-row .section-title-sm {
    margin-bottom: 0;
}

/* スライダーナビ */
.slider-nav {
    display: flex;
    gap: 8px;
}
.slider-btn {
    width: 40px;
    height: 40px;
    border: 2px solid #333;
    background: transparent;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}
.slider-btn:hover {
    background: #333;
    color: #fff;
}

/* スライダーラッパー */
.products-slider-wrapper {
    overflow: hidden;
    margin: 0 -8px;
}

/* スライダー */
.products-slider {
    display: flex;
    gap: 16px;
    transition: transform 0.4s ease;
    padding: 0 8px;
}
.products-slider .product-card {
    flex: 0 0 calc(25% - 12px);
    min-width: calc(25% - 12px);
}

@media (max-width: 900px) {
    .products-slider .product-card {
        flex: 0 0 calc(33.333% - 11px);
        min-width: calc(33.333% - 11px);
    }
}

@media (max-width: 600px) {
    .products-slider .product-card {
        flex: 0 0 calc(50% - 8px);
        min-width: calc(50% - 8px);
    }
    .slider-btn {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
}

/* ========================================
   商品詳細ページ追加 v1.6.4
   ======================================== */

/* 選択中バッジ */
.item-current-badge {
    font-size: 10px;
    background: var(--line-green);
    color: #fff;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
}

/* マーキングタイプ選択 */
.marking-type-selector {
    margin-bottom: 16px;
}
.marking-type-options {
    display: flex;
    gap: 10px;
}
.marking-type-option {
    flex: 1;
    cursor: pointer;
}
.marking-type-option input {
    display: none;
}
.marking-type-label {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 70px;
    padding: 14px 12px;
    background: #f5f5f5;
    border: 2px solid #ddd;
    border-radius: 10px;
    transition: all 0.2s;
    text-align: center;
}
.marking-type-option:hover .marking-type-label {
    border-color: #ccc;
}
.marking-type-option.active .marking-type-label,
.marking-type-option input:checked + .marking-type-label {
    border-color: var(--line-green);
    background: #f0fff4;
}
.marking-type-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
}
.marking-type-example {
    font-size: 18px;
    font-family: 'Bebas Neue', sans-serif;
    color: #666;
}

/* プレビューテキスト（大文字変換しない） */
#team-name-preview {
    font-size: 32px;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8), -1px -1px 2px rgba(0,0,0,0.5);
    letter-spacing: 2px;
    /* text-transform: uppercase を削除 */
}
@media (max-width: 600px) {
    #team-name-preview {
        font-size: 24px;
    }
}

/* CTAセクションテキスト色修正 */
.cta-section .cta-title {
    color: #fff !important;
}
.cta-section .cta-desc {
    color: rgba(255,255,255,0.9) !important;
}

/* ========================================
   アイテム固有オプション v1.6.6
   ======================================== */

/* アイテムオプションセクション */
.item-options {
    margin-bottom: 16px;
    padding-bottom: 16px;
    border-bottom: 1px solid #eee;
}
.item-options .selector-label {
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

/* アイテムオプショングリッド */
.item-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media (max-width: 600px) {
    .item-options-grid {
        grid-template-columns: 1fr;
    }
}

/* アイテムオプション */
.item-option {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fafafa;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.item-option:hover {
    border-color: #ccc;
    background: #f5f5f5;
}
.item-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    accent-color: var(--line-green);
}
.item-option.always-on {
    background: #f0fff4;
    border-color: #c8e6c9;
    opacity: 0.8;
}

.item-option-content {
    flex: 1;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.item-option-name {
    font-size: 12px;
    font-weight: 600;
    color: #333;
}
.item-option-price {
    font-size: 12px;
    font-weight: 700;
    color: var(--line-green);
}

/* 明細行のスモールテキスト */
.total-row small {
    font-size: 11px;
    color: #888;
    margin-left: 4px;
}

/* v1.6.7 オプション説明 */
.item-option-desc {
    display: block;
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}
.no-options-message {
    color: #999;
    font-size: 12px;
    padding: 10px;
    background: #f9f9f9;
    border-radius: 6px;
    text-align: center;
}

/* アイテム行の間隔調整 */
.item-row {
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #eee;
}
.item-row:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

/* アイテムヘッダー */
.item-header {
    margin-bottom: 0;
}
.item-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    cursor: pointer;
}
.item-checkbox {
    width: 20px;
    height: 20px;
    accent-color: var(--line-green);
}
.item-icon {
    font-size: 20px;
}
.item-name {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}
.item-current-badge {
    font-size: 10px;
    background: var(--line-green);
    color: #fff;
    padding: 3px 8px;
    border-radius: 10px;
    margin-left: auto;
}

/* アイテムボディ */
.item-body {
    display: none;
    padding: 16px;
    background: #fafafa;
    border-radius: 10px;
    margin-top: 10px;
}
.item-body.active {
    display: block;
}

/* セレクターラベル */
.selector-label {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: #666;
    margin-bottom: 10px;
}

/* 商品選択グリッド */
.product-select-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
@media (max-width: 600px) {
    .product-select-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.product-select-item {
    cursor: pointer;
}
.product-select-item input {
    display: none;
}
.product-select-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 10px 8px;
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.2s;
}
.product-select-item.active .product-select-inner,
.product-select-item input:checked + .product-select-inner {
    border-color: var(--line-green);
    background: #f0fff4;
}
.product-select-inner img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 6px;
}
.product-select-name {
    font-size: 11px;
    font-weight: 600;
    color: #333;
    text-align: center;
    line-height: 1.3;
}
.product-select-color {
    font-size: 10px;
    color: #666;
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 4px;
}

/* オプショングリッド */
.item-options {
    margin-bottom: 16px;
}
.item-options-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
}
@media (max-width: 600px) {
    .item-options-grid {
        grid-template-columns: 1fr;
    }
}
.item-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 10px 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}
.item-option:hover {
    border-color: #ccc;
}
.item-option input[type="checkbox"] {
    width: 16px;
    height: 16px;
    margin-top: 2px;
    accent-color: var(--line-green);
    flex-shrink: 0;
}
.item-option.always-on {
    background: #f0fff4;
    border-color: #c8e6c9;
}
.item-option-content {
    flex: 1;
    min-width: 0;
}
.item-option-name {
    display: block;
    font-size: 12px;
    font-weight: 600;
    color: #333;
    margin-bottom: 2px;
}
.item-option-price {
    display: block;
    font-size: 12px;
    font-weight: 700;
    color: var(--line-green);
}
.item-option-desc {
    display: block;
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}

/* 数量行 */
.qty-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.qty-control {
    display: flex;
    align-items: center;
    gap: 8px;
}
.qty-btn {
    width: 36px;
    height: 36px;
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}
.qty-btn:hover {
    background: #f5f5f5;
}
.qty-input {
    width: 60px;
    height: 36px;
    border: 1px solid #ddd;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}
.qty-unit {
    font-size: 14px;
    color: #666;
}
.item-subtotal {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: var(--line-green);
}

/* マーキングタイプセレクター余白 */
.marking-type-selector {
    margin-bottom: 16px;
}

/* 商品セレクター余白 */
.product-selector {
    margin-bottom: 16px;
}

/* ========================================
   v1.6.10 オプションレイアウト強制修正
   ======================================== */

/* オプションカード - 縦並びレイアウト */
.item-options-grid .item-option {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 12px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    cursor: pointer;
}
.item-options-grid .item-option.always-on {
    background: #f0fff4;
    border-color: #c8e6c9;
}
.item-options-grid .item-option input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin: 0;
    flex-shrink: 0;
    accent-color: var(--line-green);
}
.item-options-grid .item-option-content {
    flex: 1;
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: flex-start !important;
    gap: 2px;
    min-width: 0;
}
.item-options-grid .item-option-name {
    display: block !important;
    font-size: 13px;
    font-weight: 700;
    color: #333;
    line-height: 1.3;
    word-break: keep-all;
}
.item-options-grid .item-option-price {
    display: block !important;
    font-size: 14px;
    font-weight: 700;
    color: var(--line-green);
    line-height: 1;
}
.item-options-grid .item-option-desc {
    display: block !important;
    font-size: 11px;
    color: #888;
    line-height: 1.3;
    margin-top: 2px;
}

/* ========================================
   v1.7.6 トップページ追加セクション
   ======================================== */

/* アピールセクション */
.appeal-section {
    padding: 80px 0;
    background: #fff;
}
.appeal-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 30px;
}
@media (max-width: 768px) {
    .appeal-section {
        padding: 50px 0;
    }
    .appeal-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}
.appeal-card {
    background: #f8f9fa;
    padding: 40px 30px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #eee;
    transition: transform 0.3s, box-shadow 0.3s;
}
.appeal-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.appeal-icon {
    font-size: 48px;
    margin-bottom: 20px;
}
.appeal-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}
.appeal-text {
    font-size: 14px;
    color: #666;
    line-height: 1.8;
}
.appeal-note {
    text-align: center;
    font-size: 15px;
    color: var(--line-green);
    font-weight: 700;
    margin-top: 10px;
}

/* ニュースセクション */
.news-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.news-list {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}
.news-item {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 20px 24px;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
    transition: background 0.2s;
}
.news-item:last-child {
    border-bottom: none;
}
.news-item:hover {
    background: #f8f9fa;
}
.news-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15px;
    color: #999;
    flex-shrink: 0;
    letter-spacing: 0.5px;
}
.news-title {
    font-size: 15px;
    color: #333;
    font-weight: 500;
}
.news-empty {
    pointer-events: none;
}
@media (max-width: 600px) {
    .news-section {
        padding: 50px 0;
    }
    .news-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 16px 20px;
    }
}

/* Instagramセクション */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 12px;
    margin-bottom: 32px;
}
@media (max-width: 900px) {
    .instagram-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
@media (max-width: 500px) {
    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}
.instagram-item {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 12px;
    background: #f0f0f0;
}
.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.instagram-item:hover img {
    transform: scale(1.05);
}
.instagram-cta {
    text-align: center;
}

/* ========================================
   v1.7.8 トップページ見やすさ改善
   ======================================== */

/* セクション背景の統一 */
.appeal-section {
    background: #fff !important;
}
.news-section {
    background: #f5f5f5 !important;
}
.sports-section {
    background: #f5f5f5 !important;
    padding: 80px 0 !important;
}
.reasons-section {
    background: var(--dark) !important;
}
.works-section {
    background: #f5f5f5 !important;
}

/* セクションタイトルの統一 */
.section-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 3px;
    color: var(--line-green);
    margin-bottom: 8px;
    text-align: center;
}
.section-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 40px;
    color: #222;
}
@media (max-width: 768px) {
    .section-title {
        font-size: 22px;
        margin-bottom: 30px;
    }
}

/* ニュースがない時のスタイル改善 */
.news-empty {
    color: #666;
}

/* スポーツカードグリッド改善 */
@media (max-width: 900px) {
    .sports-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px !important;
    }
}
@media (max-width: 500px) {
    .sports-grid {
        grid-template-columns: 1fr !important;
        gap: 16px !important;
    }
    .sport-card {
        aspect-ratio: 4/3 !important;
    }
}

/* ========================================
   v1.7.8 トップページ整理
   ======================================== */

/* NEWS & INSTAGRAM 2カラム */
.news-instagram-section {
    padding: 80px 0;
    background: #f8f9fa;
}
.news-instagram-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}
@media (max-width: 768px) {
    .news-instagram-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
}
.news-column,
.instagram-column {
    /* カラム共通 */
}
.section-title-sm {
    font-size: 20px;
    font-weight: 900;
    color: #333;
    margin-bottom: 20px;
}

/* ニュースリスト */
.news-instagram-section .news-list {
    border-top: 1px solid #ddd;
}
.news-instagram-section .news-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 0;
    border-bottom: 1px solid #ddd;
    text-decoration: none;
    color: inherit;
    transition: opacity 0.2s;
}
.news-instagram-section .news-item:hover {
    opacity: 0.7;
}
.news-instagram-section .news-date {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    color: #999;
    flex-shrink: 0;
}
.news-instagram-section .news-title {
    font-size: 14px;
    color: #333;
}

/* Instagram小グリッド */
.instagram-grid-small {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-bottom: 16px;
}
.instagram-item-small {
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    background: #e0e0e0;
}
.instagram-item-small img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.instagram-item-small:hover img {
    transform: scale(1.05);
}
.instagram-follow-link {
    display: inline-block;
    font-size: 14px;
    color: var(--line-green);
    text-decoration: none;
    font-weight: 600;
}
.instagram-follow-link:hover {
    text-decoration: underline;
}

/* セクション間の余白調整 */
.appeal-section {
    padding: 48px 0;
}
.sports-section {
    padding: 80px 0;
}
.reasons-section {
    padding: 80px 0;
}
.works-section {
    padding: 80px 0;
    background: #fff;
}


/* ========================================
   v1.7.9 価格比較表
   ======================================== */
.price-comparison-section {
    padding: 80px 0;
    background: #fff;
}
.section-desc {
    text-align: center;
    font-size: 16px;
    color: #666;
    margin-top: -24px;
    margin-bottom: 40px;
}
.comparison-table-wrapper {
    overflow-x: auto;
    margin-bottom: 20px;
}
.comparison-table {
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
    border-collapse: collapse;
    font-size: 15px;
}
.comparison-table th,
.comparison-table td {
    padding: 16px 20px;
    text-align: center;
    border-bottom: 1px solid #e0e0e0;
}
.comparison-table thead th {
    background: #f5f5f5;
    font-weight: 700;
    color: #333;
}
.comparison-table thead th.highlight {
    background: var(--line-green);
    color: #fff;
}
.comparison-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: #333;
}
.comparison-table tbody td.highlight {
    background: #e8f5e9;
    color: var(--line-green);
}
.comparison-table tbody td.highlight strong {
    font-size: 18px;
}
.comparison-table tbody tr:hover {
    background: #fafafa;
}
.comparison-table tbody tr:hover td.highlight {
    background: #c8e6c9;
}
.comparison-note {
    text-align: center;
    font-size: 13px;
    color: #999;
}

@media (max-width: 600px) {
    .comparison-table {
        font-size: 13px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
    }
    .comparison-table tbody td.highlight strong {
        font-size: 15px;
    }
}

/* ========================================
   v1.8.1 見積もり・制作実績セクション修正
   ======================================== */

/* 見積もりセクション */
.estimator-section {
    padding: 80px 0;
    background: var(--dark, #1a1a1a);
}
.estimator-box {
    text-align: center;
    color: #fff;
    max-width: 500px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 16px;
}
.estimator-badge {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--line-green);
    margin-bottom: 16px;
}
.estimator-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.3;
}
.estimator-text {
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 24px;
    line-height: 1.8;
}
.estimator-box .btn-white {
    background: #fff;
    color: var(--line-green);
    padding: 16px 40px;
    font-size: 14px;
    text-decoration: none;
    display: inline-block;
    border-radius: 4px;
    font-weight: 700;
    transition: all 0.3s;
}
.estimator-box .btn-white:hover {
    background: var(--line-green);
    color: #fff;
}

/* 制作実績セクション */
.works-section {
    padding: 80px 0;
    background: #fff;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.work-item {
    aspect-ratio: 1;
    border-radius: 8px;
    overflow: hidden;
    background: #e0e0e0;
}
.work-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.work-item:hover img {
    transform: scale(1.05);
}

@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .estimator-box {
        padding: 40px 24px;
    }
    .estimator-title {
        font-size: 28px;
    }
}

/* ========================================
   v1.8.3 見積もりシミュレーター（ステップ形式）
   ======================================== */

/* ページ全体 */
.estimate-page {
    padding: 100px 0 60px;
    background: #f5f5f5;
    min-height: 100vh;
}
.estimate-header {
    text-align: center;
    margin-bottom: 40px;
}
.estimate-page .page-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 12px;
}
.estimate-page .page-subtitle {
    font-size: 15px;
    color: #666;
}

/* ステップインジケーター */
.steps-indicator {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-bottom: 32px;
}
.step-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ddd;
    transition: all 0.3s;
}
.step-dot.active {
    background: var(--line-green);
    width: 32px;
    border-radius: 6px;
}
.step-dot.completed {
    background: var(--line-green);
}

/* ステップコンテナ */
.step-container {
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}
.step-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}
.step-number {
    width: 32px;
    height: 32px;
    background: var(--line-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
}
.step-title {
    font-size: 18px;
    font-weight: 700;
}

/* 競技選択グリッド */
.estimate-page .sport-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.sport-option {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px 16px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
}
.sport-option:hover {
    border-color: var(--line-green);
    background: #f0fff4;
}
.sport-option.selected {
    border-color: var(--line-green);
    background: #e8f5e9;
}
.sport-option .emoji {
    font-size: 32px;
    margin-bottom: 8px;
}
.sport-option .name {
    font-weight: 700;
    font-size: 14px;
}

/* アイテム選択 */
.item-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.item-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    cursor: pointer;
    transition: all 0.2s;
}
.item-card:hover {
    border-color: var(--line-green);
}
.item-card.selected {
    border-color: var(--line-green);
    background: #f0fff4;
}
.item-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
}
.item-card .emoji {
    font-size: 28px;
}
.item-card .name {
    font-weight: 700;
    font-size: 15px;
}
.item-card .price {
    color: var(--line-green);
    font-weight: 700;
    font-size: 14px;
}
.item-card .desc {
    font-size: 12px;
    color: #888;
}
.item-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    margin-left: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
}
.item-card.selected .item-checkbox {
    background: var(--line-green);
    border-color: var(--line-green);
    color: #fff;
}
.item-card.selected .item-checkbox::after {
    content: '✓';
}

/* 選択サマリー */
.selected-summary {
    background: #f0fff4;
    border: 2px solid var(--line-green);
    border-radius: 12px;
    padding: 16px;
    margin-bottom: 24px;
}
.summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 4px 0;
}
.summary-label {
    color: #666;
}
.summary-value {
    font-weight: 700;
}

/* アイテム設定セクション */
.item-setting-section {
    margin-bottom: 32px;
}
.item-setting-section.has-border {
    padding-top: 32px;
    border-top: 2px solid #eee;
}
.item-setting-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.item-setting-title .emoji {
    font-size: 24px;
}
.setting-label {
    font-size: 13px;
    color: #666;
    margin-bottom: 12px;
}

/* プラン選択 */
.plan-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}
.plan-card {
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    position: relative;
}
.plan-card:hover {
    border-color: var(--line-green);
}
.plan-card.selected {
    border-color: var(--line-green);
    background: #f0fff4;
}
.plan-card.recommended::before {
    content: 'おすすめ';
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--line-green);
    color: #fff;
    font-size: 10px;
    padding: 4px 12px;
    border-radius: 10px;
    font-weight: 700;
}
.plan-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 8px;
}
.plan-price {
    font-size: 24px;
    font-weight: 900;
    color: var(--line-green);
}
.plan-price span {
    font-size: 12px;
    font-weight: 500;
    color: #666;
}
.plan-desc {
    font-size: 11px;
    color: #888;
    margin-top: 8px;
    line-height: 1.5;
}

/* 数量入力 */
.quantity-section {
    background: #f9f9f9;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.quantity-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.quantity-label {
    font-weight: 600;
}
.quantity-controls {
    display: flex;
    align-items: center;
    gap: 12px;
}
.qty-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: #e0e0e0;
    border-radius: 8px;
    font-size: 18px;
    cursor: pointer;
    transition: all 0.2s;
}
.qty-btn:hover {
    background: var(--line-green);
    color: #fff;
}
.qty-input {
    width: 60px;
    height: 36px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    text-align: center;
    font-size: 16px;
    font-weight: 700;
}
.quantity-subtotal {
    font-weight: 700;
    color: var(--line-green);
    min-width: 100px;
    text-align: right;
    font-size: 18px;
}

/* オプション選択 */
.option-grid {
    display: grid;
    gap: 12px;
}
.option-card {
    display: flex;
    align-items: center;
    gap: 16px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    padding: 16px;
    cursor: pointer;
    transition: all 0.2s;
}
.option-card:hover {
    border-color: #ccc;
}
.option-card.selected {
    border-color: var(--line-green);
    background: #f0fff4;
}
.option-checkbox {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.option-card.selected .option-checkbox {
    background: var(--line-green);
    border-color: var(--line-green);
    color: #fff;
}
.option-info {
    flex: 1;
}
.option-name {
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 4px;
}
.option-desc {
    font-size: 12px;
    color: #888;
}
.option-price {
    font-weight: 700;
    color: var(--line-green);
    font-size: 14px;
    white-space: nowrap;
}

/* ナビゲーションボタン */
.nav-buttons {
    display: flex;
    gap: 12px;
    margin-top: 24px;
}
.nav-btn {
    flex: 1;
    padding: 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}
.nav-btn-back {
    background: #e0e0e0;
    color: #333;
}
.nav-btn-back:hover {
    background: #d0d0d0;
}
.nav-btn-next {
    background: var(--line-green);
    color: #fff;
}
.nav-btn-next:hover {
    background: #05a648;
}
.nav-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

/* 結果セクション */
.step-result {
    padding: 0;
    overflow: hidden;
}
.result-section {
    background: var(--dark, #1a1a1a);
    color: #fff;
    padding: 32px;
}
.result-header {
    text-align: center;
    margin-bottom: 24px;
}
.result-title {
    font-size: 14px;
    color: var(--line-green);
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    margin-bottom: 8px;
}
.result-total-label {
    font-size: 14px;
    opacity: 0.7;
    margin-bottom: 8px;
}
.result-total {
    font-size: 48px;
    font-weight: 900;
}
.result-breakdown {
    background: rgba(255,255,255,0.1);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 24px;
}
.breakdown-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    font-size: 14px;
}
.breakdown-row:last-child {
    border-bottom: none;
}
.breakdown-row.is-option {
    font-size: 13px;
    opacity: 0.8;
}
.breakdown-row.discount {
    color: #ffd700;
}
.breakdown-row.subtotal-row {
    padding-top: 16px;
    margin-top: 8px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.breakdown-row.total-row {
    font-size: 18px;
    font-weight: 700;
    padding-top: 16px;
    margin-top: 8px;
    border-top: 2px solid rgba(255,255,255,0.2);
}
.result-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}
.result-btn {
    padding: 16px;
    border-radius: 4px;
    font-weight: 700;
    font-size: 14px;
    text-align: center;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
}
.result-btn-primary {
    background: var(--line-green);
    color: #fff;
}
.result-btn-primary:hover {
    background: #05a648;
}
.result-btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.3);
}
.result-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.product-links {
    text-align: center;
}
.product-link-item {
    display: block;
    color: var(--line-green);
    font-size: 14px;
    text-decoration: none;
    padding: 8px 0;
}
.product-link-item:hover {
    text-decoration: underline;
}
.copy-message {
    text-align: center;
    color: var(--line-green);
    font-size: 14px;
    font-weight: 700;
    margin-top: 16px;
    display: none;
}
.step-result-nav {
    padding: 24px 32px;
    background: #fff;
}
.step-result-nav .nav-buttons {
    margin-top: 0;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .estimate-page .sport-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .item-grid {
        grid-template-columns: 1fr;
    }
    .plan-grid {
        grid-template-columns: 1fr;
    }
    .result-actions {
        grid-template-columns: 1fr;
    }
    .result-total {
        font-size: 36px;
    }
    .quantity-row {
        flex-wrap: wrap;
        gap: 12px;
    }
    .quantity-subtotal {
        width: 100%;
        text-align: center;
    }
}

/* ========================================
   v1.8.4 修正CSS
   ======================================== */

/* 見積もりページ - テキスト色修正 */
.estimate-page {
    color: #333;
}
.estimate-page .page-title {
    color: #333;
}
.estimate-page .page-subtitle {
    color: #666;
}
.estimate-page .step-title {
    color: #333;
}
.estimate-page .sport-option .name {
    color: #333;
}
.estimate-page .item-card .name {
    color: #333;
}

/* ステップガイド文 */
.step-guide {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 14px;
    color: #856404;
    margin-bottom: 20px;
}

/* 結果ページのPDF案内ボックス */
.result-guide-box {
    background: rgba(255,255,255,0.15);
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    text-align: center;
}
.result-guide-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #ffd700;
}
.result-guide-text {
    font-size: 14px;
    line-height: 1.8;
    opacity: 0.9;
}

/* 商品リンクセクション */
.product-links-section {
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.product-links-title {
    font-size: 13px;
    opacity: 0.7;
    margin-bottom: 12px;
    text-align: center;
}
.product-links-buttons {
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.product-link-btn {
    display: block;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 14px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;
    text-align: center;
    transition: all 0.2s;
}
.product-link-btn:hover {
    background: rgba(255,255,255,0.2);
    border-color: var(--line-green);
    color: var(--line-green);
}

/* フッターボタン */
.footer-cta-buttons {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}
.footer-btn {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
}
.footer-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.footer-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.footer-btn-line {
    background: var(--line-green);
    color: #fff;
}
.footer-btn-line:hover {
    background: #05a648;
}

/* 制作実績 ライトボックス */
.lightbox-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0,0,0,0.9);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
}
.lightbox-overlay.active {
    opacity: 1;
    visibility: visible;
}
.lightbox-content {
    max-width: 90%;
    max-height: 90%;
}
.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
}
.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    color: #fff;
    font-size: 32px;
    cursor: pointer;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    transition: all 0.2s;
}
.lightbox-close:hover {
    background: rgba(255,255,255,0.2);
}
.work-item {
    cursor: pointer;
}

/* 比較表の修正（空欄対策） */
.comparison-table td {
    color: #333;
}
.comparison-table td:empty::after {
    content: '-';
    color: #ccc;
}

/* ========================================
   料金表ページ
   ======================================== */
.price-page {
    padding-top: 80px;
}
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: #fff;
    padding: 80px 0;
    text-align: center;
}
.page-hero-title {
    font-size: 42px;
    font-weight: 900;
    margin-bottom: 16px;
}
.page-hero-subtitle {
    font-size: 16px;
    opacity: 0.8;
    line-height: 1.8;
}
.price-section {
    padding: 80px 0;
}
.price-section.bg-gray {
    background: #f5f5f5;
}
.price-section.bg-dark {
    background: var(--dark);
    color: #fff;
}
.price-section-title {
    font-size: 28px;
    font-weight: 900;
    text-align: center;
    margin-bottom: 16px;
}
.price-section-title.light {
    color: #fff;
}
.price-section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}
.price-section-desc.light {
    color: rgba(255,255,255,0.7);
}

/* 料金テーブル */
.price-table-wrapper {
    overflow-x: auto;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}
.price-table th,
.price-table td {
    padding: 20px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.price-table thead th {
    background: #f5f5f5;
    font-weight: 700;
}
.price-table thead th.highlight {
    background: var(--line-green);
    color: #fff;
}
.price-table thead th small {
    display: block;
    font-size: 10px;
    opacity: 0.8;
    margin-top: 4px;
}
.price-table tbody td:first-child {
    text-align: left;
}
.price-table tbody td:first-child small {
    color: #888;
    font-size: 12px;
}
.price-table tbody td.highlight {
    background: #f0fff4;
    color: var(--line-green);
}

/* プラン比較 */
.plan-compare-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}
.plan-compare-card {
    background: #fff;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    border: 2px solid #eee;
}
.plan-compare-card.recommended {
    border-color: var(--line-green);
    transform: scale(1.05);
}
.plan-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--line-green);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}
.plan-compare-name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 8px;
}
.plan-compare-price {
    color: var(--line-green);
    font-weight: 700;
    margin-bottom: 20px;
}
.plan-compare-features {
    list-style: none;
    text-align: left;
    margin-bottom: 20px;
}
.plan-compare-features li {
    padding: 8px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.plan-compare-note {
    font-size: 12px;
    color: #888;
}

/* オプション料金 */
.option-price-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.option-price-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.option-price-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--line-green);
}
.option-price-card ul {
    list-style: none;
}
.option-price-card li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid #eee;
}
.option-price-card li .free {
    color: var(--line-green);
    font-weight: 700;
}

/* 数量割引 */
.discount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.discount-card {
    background: rgba(255,255,255,0.1);
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
}
.discount-card.highlight {
    background: var(--line-green);
    border-color: var(--line-green);
}
.discount-qty {
    display: block;
    font-size: 14px;
    opacity: 0.8;
    margin-bottom: 8px;
}
.discount-rate {
    font-size: 32px;
    font-weight: 900;
}

/* 料金CTA */
.price-cta-section {
    padding: 80px 0;
    background: var(--line-green);
    color: #fff;
    text-align: center;
}
.price-cta-section h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}
.price-cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}
.price-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}
.btn-white {
    background: #fff;
    color: var(--line-green);
}

/* ========================================
   実績ページ
   ======================================== */
.works-page {
    padding-top: 80px;
}

/* フィルター */
.works-filter-section {
    padding: 40px 0;
    background: #f5f5f5;
}
.works-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.works-filter-btn {
    background: #fff;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}
.works-filter-btn:hover {
    border-color: var(--line-green);
}
.works-filter-btn.active {
    background: var(--line-green);
    border-color: var(--line-green);
    color: #fff;
}

/* ギャラリー */
.works-gallery-section {
    padding: 60px 0;
}
.works-gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}
.works-gallery-item {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.works-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.works-gallery-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}
.works-gallery-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.works-gallery-item:hover .works-gallery-image img {
    transform: scale(1.05);
}
.works-gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
}
.works-gallery-item:hover .works-gallery-overlay {
    opacity: 1;
}
.works-gallery-zoom {
    font-size: 32px;
}
.works-gallery-info {
    padding: 16px;
}
.works-gallery-tag {
    display: inline-block;
    background: #f5f5f5;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    margin-bottom: 8px;
}
.works-gallery-title {
    font-size: 14px;
    font-weight: 600;
}

/* 統計 */
.works-stats-section {
    padding: 80px 0;
    background: var(--dark);
    color: #fff;
}
.works-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    text-align: center;
}
.works-stat-number {
    display: block;
    font-size: 48px;
    font-weight: 900;
    color: var(--line-green);
    margin-bottom: 8px;
}
.works-stat-label {
    font-size: 14px;
    opacity: 0.8;
}

/* 実績CTA */
.works-cta-section {
    padding: 80px 0;
    background: var(--line-green);
    color: #fff;
    text-align: center;
}
.works-cta-section h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}
.works-cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}
.works-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* レスポンシブ */
@media (max-width: 1024px) {
    .plan-compare-grid {
        grid-template-columns: 1fr;
    }
    .plan-compare-card.recommended {
        transform: none;
    }
    .option-price-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .works-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    .works-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .option-price-grid {
        grid-template-columns: 1fr;
    }
    .discount-grid {
        grid-template-columns: 1fr;
    }
    .works-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .price-cta-buttons,
    .works-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* 競技ページ 見積もりCTAセクション */
.estimator-cta-section {
    padding: 80px 0;
    background: var(--dark);
}
.estimator-cta-box {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
    padding: 60px 40px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    color: #fff;
}
.estimator-cta-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
    line-height: 1.3;
}
.estimator-cta-text {
    font-size: 15px;
    opacity: 0.8;
    margin-bottom: 28px;
    line-height: 1.8;
}
.estimator-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.estimator-cta-buttons .btn {
    min-width: 180px;
}

/* プラン説明追加 */
.plan-desc {
    display: block;
    font-size: 11px;
    color: #888;
    font-weight: 400;
    margin-top: 2px;
}
.plan-option input:checked + .plan-label .plan-desc {
    color: var(--line-green);
}

/* フォントグリッド拡張対応 */
.font-grid {
    max-height: 300px;
    overflow-y: auto;
    padding-right: 8px;
}
.font-grid::-webkit-scrollbar {
    width: 6px;
}
.font-grid::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 3px;
}
.font-grid::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 3px;
}
.font-grid::-webkit-scrollbar-thumb:hover {
    background: #aaa;
}

/* ========================================
   法的ページ共通
   ======================================== */
.legal-page {
    padding-top: 80px;
}
.legal-content {
    padding: 60px 0;
}
.legal-table-wrapper {
    overflow-x: auto;
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
}
.legal-table th,
.legal-table td {
    padding: 20px;
    border: 1px solid #ddd;
    text-align: left;
    vertical-align: top;
}
.legal-table th {
    background: #f5f5f5;
    width: 200px;
    font-weight: 700;
}
.legal-table td strong {
    color: #333;
}
.legal-note {
    text-align: center;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}

/* プライバシーポリシー */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
}
.privacy-intro {
    margin-bottom: 40px;
    line-height: 1.8;
}
.privacy-section {
    margin-bottom: 40px;
}
.privacy-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid var(--line-green);
}
.privacy-section ul {
    margin-left: 20px;
}
.privacy-section li {
    margin-bottom: 8px;
}
.privacy-date {
    text-align: right;
    color: #888;
    font-size: 14px;
    margin-top: 60px;
}
.contact-info {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}

/* ========================================
   ご注文の流れページ
   ======================================== */
.flow-page {
    padding-top: 80px;
}
.flow-main-section {
    padding: 60px 0;
}
.flow-timeline {
    max-width: 700px;
    margin: 0 auto;
}
.flow-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.flow-step::before {
    content: '';
    position: absolute;
    left: 27px;
    top: 60px;
    bottom: -40px;
    width: 2px;
    background: #e0e0e0;
}
.flow-step:last-child::before {
    display: none;
}
.flow-step-number {
    width: 56px;
    height: 56px;
    background: var(--line-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    font-size: 18px;
    flex-shrink: 0;
    z-index: 1;
}
.flow-step-content {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.flow-step-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}
.flow-step-header h3 {
    font-size: 18px;
    font-weight: 700;
}
.flow-step-time {
    background: #f0fff4;
    color: var(--line-green);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
}
.flow-step-tips {
    background: #fff9e6;
    border-radius: 8px;
    padding: 16px;
    margin: 16px 0;
}
.flow-step-tips .tips-title {
    font-weight: 700;
    margin-bottom: 8px;
}
.flow-step-tips ul {
    margin-left: 20px;
    font-size: 14px;
}
.flow-step-tips li {
    margin-bottom: 4px;
}
.flow-step-note {
    font-size: 13px;
    color: #888;
    margin: 12px 0;
}
.flow-step-action {
    margin-top: 16px;
}
.flow-step-gallery {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap;
}
.flow-gallery-item {
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 8px;
    text-align: center;
}
.flow-gallery-item .emoji {
    display: block;
    font-size: 24px;
    margin-bottom: 4px;
}
.flow-gallery-item span:last-child {
    font-size: 12px;
}
.flow-gallery-arrow {
    color: #ccc;
}
.flow-payment-methods {
    display: flex;
    gap: 16px;
    margin-top: 16px;
}
.payment-method {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 12px 20px;
    border-radius: 8px;
}
.flow-delivery-options {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px;
}
.delivery-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 8px;
    font-size: 14px;
}
.delivery-option .option-name {
    font-weight: 600;
}
.delivery-option .option-price {
    color: var(--line-green);
    font-weight: 600;
}
.flow-step-complete {
    margin-top: 20px;
}
.flow-step-complete .flow-step-number {
    background: #ffd700;
    font-size: 24px;
}
.flow-step-complete .flow-step-content {
    background: linear-gradient(135deg, #fff9e6, #fff);
    text-align: center;
}
.flow-faq-section {
    background: #f5f5f5;
    padding: 60px 0;
}
.flow-faq-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 32px;
}
.flow-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.flow-faq-item {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
}
.flow-faq-item h4 {
    font-size: 14px;
    color: var(--line-green);
    margin-bottom: 8px;
}
.flow-faq-item p {
    font-size: 14px;
    color: #666;
}
.flow-cta-section {
    padding: 80px 0;
    background: var(--line-green);
    color: #fff;
    text-align: center;
}
.flow-cta-section h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}
.flow-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    margin-top: 24px;
}

/* ========================================
   サイズガイドページ
   ======================================== */
.size-page {
    padding-top: 80px;
}
.size-tips-section {
    padding: 60px 0;
}
.size-tips-box {
    background: #fff9e6;
    border-radius: 16px;
    padding: 32px;
    max-width: 900px;
    margin: 0 auto;
}
.size-tips-box h2 {
    text-align: center;
    font-size: 20px;
    margin-bottom: 24px;
}
.size-tips-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.size-tip {
    display: flex;
    gap: 12px;
}
.size-tip .tip-number {
    width: 28px;
    height: 28px;
    background: var(--line-green);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}
.size-tip p {
    font-size: 14px;
    line-height: 1.6;
}
.size-table-section {
    padding: 60px 0;
}
.size-table-section.bg-gray {
    background: #f5f5f5;
}
.size-section-title {
    text-align: center;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 32px;
}
.size-category {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-left: 12px;
    border-left: 4px solid var(--line-green);
}
.size-table-wrapper {
    overflow-x: auto;
    margin-bottom: 32px;
}
.size-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.size-table th,
.size-table td {
    padding: 16px;
    text-align: center;
    border: 1px solid #eee;
}
.size-table thead th {
    background: var(--dark);
    color: #fff;
}
.size-table tbody td:first-child {
    font-weight: 700;
    background: #f5f5f5;
}
.size-measure-tip {
    background: #f0fff4;
    border: 2px solid var(--line-green);
    border-radius: 12px;
    padding: 20px;
    margin-top: 24px;
}
.size-measure-tip h4 {
    margin-bottom: 8px;
}
.size-measure-section {
    padding: 60px 0;
    background: var(--dark);
    color: #fff;
}
.measure-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.measure-item {
    text-align: center;
}
.measure-icon {
    font-size: 36px;
    margin-bottom: 12px;
}
.measure-item h4 {
    margin-bottom: 8px;
}
.measure-item p {
    font-size: 13px;
    opacity: 0.8;
}
.size-note-section {
    padding: 60px 0;
}
.size-note-box {
    background: #fff3cd;
    border-radius: 12px;
    padding: 24px;
    max-width: 700px;
    margin: 0 auto;
}
.size-note-box h3 {
    margin-bottom: 16px;
}
.size-note-box ul {
    margin-left: 20px;
}
.size-note-box li {
    margin-bottom: 8px;
}
.size-cta-section {
    padding: 60px 0;
    background: var(--line-green);
    color: #fff;
    text-align: center;
}
.size-cta-section h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}
.size-cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ========================================
   FAQページ
   ======================================== */
.faq-page {
    padding-top: 80px;
}
.faq-nav-section {
    padding: 30px 0;
    background: #f5f5f5;
}
.faq-nav-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.faq-nav-btn {
    background: #fff;
    border: 2px solid #ddd;
    padding: 10px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}
.faq-nav-btn:hover {
    border-color: var(--line-green);
    color: var(--line-green);
}
.faq-category-section {
    padding: 60px 0;
}
.faq-category-section.bg-gray {
    background: #f5f5f5;
}
.faq-category-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 32px;
}
.faq-list {
    max-width: 800px;
}
.faq-item {
    margin-bottom: 12px;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
}
.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-size: 15px;
    font-weight: 600;
}
.faq-toggle {
    font-size: 24px;
    color: var(--line-green);
    font-weight: 300;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}
.faq-answer p {
    padding: 0 24px 20px;
    color: #666;
    line-height: 1.8;
}
.faq-answer a {
    color: var(--line-green);
}
.faq-item.active .faq-question {
    color: var(--line-green);
}
.faq-cta-section {
    padding: 80px 0;
    background: var(--line-green);
    color: #fff;
    text-align: center;
}
.faq-cta-section h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}
.faq-cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ========================================
   納期ページ
   ======================================== */
.delivery-page {
    padding-top: 80px;
}
.delivery-section-title {
    text-align: center;
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 16px;
}
.delivery-section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}
.delivery-options-section {
    padding: 60px 0;
}
.delivery-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.delivery-option-card {
    background: #fff;
    border: 2px solid #eee;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
}
.delivery-option-card.recommended {
    border-color: var(--line-green);
    transform: scale(1.05);
}
.delivery-option-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #666;
    color: #fff;
    font-size: 11px;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 700;
}
.delivery-option-card.recommended .delivery-option-tag {
    background: var(--line-green);
}
.delivery-option-header {
    margin-bottom: 20px;
}
.delivery-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 12px;
}
.delivery-option-header h3 {
    font-size: 20px;
    font-weight: 900;
}
.delivery-time {
    font-size: 32px;
    font-weight: 900;
    color: var(--line-green);
    margin-bottom: 8px;
}
.delivery-price {
    font-size: 18px;
    font-weight: 700;
}
.delivery-price span {
    font-size: 12px;
    font-weight: 400;
    color: #888;
}
.delivery-desc {
    font-size: 14px;
    color: #666;
    margin-top: 16px;
    line-height: 1.6;
}
.delivery-note {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 24px;
}
.delivery-timeline-section {
    padding: 60px 0;
    background: #f5f5f5;
}
.delivery-timeline {
    display: flex;
    justify-content: center;
    gap: 0;
    max-width: 900px;
    margin: 0 auto;
    flex-wrap: wrap;
}
.timeline-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
    min-width: 150px;
    position: relative;
    padding: 0 10px;
}
.timeline-item::after {
    content: '→';
    position: absolute;
    right: -10px;
    top: 20px;
    color: #ccc;
    font-size: 20px;
}
.timeline-item:last-child::after {
    display: none;
}
.timeline-icon {
    width: 50px;
    height: 50px;
    background: var(--line-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 16px;
}
.timeline-content {
    text-align: center;
}
.timeline-content h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 4px;
}
.timeline-time {
    font-size: 12px;
    color: var(--line-green);
    font-weight: 600;
    margin-bottom: 4px;
}
.timeline-content p:last-child {
    font-size: 12px;
    color: #888;
}
.delivery-busy-section {
    padding: 60px 0;
}
.busy-alert-box {
    background: #fff3cd;
    border: 2px solid #ffc107;
    border-radius: 16px;
    padding: 32px;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.busy-alert-box h3 {
    margin-bottom: 12px;
}
.busy-periods {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 24px;
    flex-wrap: wrap;
}
.busy-period {
    background: #fff;
    padding: 16px 24px;
    border-radius: 8px;
}
.busy-period .period-month {
    display: block;
    font-size: 18px;
    font-weight: 900;
    color: #e74c3c;
}
.busy-period .period-reason {
    font-size: 12px;
    color: #888;
}
.delivery-calendar-section {
    padding: 60px 0;
    background: #f5f5f5;
}
.calendar-table-wrapper {
    overflow-x: auto;
    max-width: 800px;
    margin: 0 auto;
}
.calendar-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
}
.calendar-table th,
.calendar-table td {
    padding: 16px;
    text-align: center;
    border: 1px solid #eee;
}
.calendar-table thead th {
    background: var(--dark);
    color: #fff;
}
.calendar-table td.ok {
    color: var(--line-green);
}
.calendar-table td.warning {
    color: #f39c12;
}
.calendar-table td.ng {
    color: #e74c3c;
}
.calendar-note {
    text-align: center;
    color: #888;
    font-size: 13px;
    margin-top: 16px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}
.delivery-shipping-section {
    padding: 60px 0;
}
.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.shipping-info-item {
    text-align: center;
    background: #fff;
    padding: 32px 20px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.shipping-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}
.shipping-info-item h4 {
    margin-bottom: 8px;
}
.shipping-info-item p {
    font-size: 13px;
    color: #666;
}
.delivery-cta-section {
    padding: 80px 0;
    background: var(--line-green);
    color: #fff;
    text-align: center;
}
.delivery-cta-section h2 {
    font-size: 28px;
    font-weight: 900;
    margin-bottom: 12px;
}
.delivery-cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}
.delivery-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .legal-table th {
        width: 120px;
    }
    .flow-faq-grid,
    .size-tips-grid,
    .delivery-options-grid,
    .shipping-info-grid,
    .measure-grid {
        grid-template-columns: 1fr;
    }
    .delivery-option-card.recommended {
        transform: none;
    }
    .flow-step {
        flex-direction: column;
    }
    .flow-step::before {
        display: none;
    }
    .flow-payment-methods {
        flex-direction: column;
    }
    .timeline-item::after {
        display: none;
    }
    .delivery-timeline {
        flex-direction: column;
        gap: 24px;
    }
    .flow-cta-buttons,
    .delivery-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   ブログ一覧ページ
   ======================================== */
.blog-archive-page {
    padding-top: 80px;
}
.blog-category-section {
    padding: 30px 0;
    background: #f5f5f5;
}
.blog-category-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.blog-category-btn {
    background: #fff;
    border: 2px solid #ddd;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    color: #333;
    transition: all 0.2s;
}
.blog-category-btn:hover,
.blog-category-btn.active {
    background: var(--line-green);
    border-color: var(--line-green);
    color: #fff;
}
.blog-list-section {
    padding: 60px 0;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card-image {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-category {
    position: absolute;
    top: 12px;
    left: 12px;
    background: var(--line-green);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 20px;
    font-weight: 600;
}
.blog-card-content {
    padding: 20px;
}
.blog-card-date {
    font-size: 12px;
    color: #888;
}
.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    margin: 8px 0 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-card-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.blog-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}
.blog-pagination a,
.blog-pagination span {
    padding: 10px 16px;
    border: 1px solid #ddd;
    border-radius: 4px;
    text-decoration: none;
    color: #333;
}
.blog-pagination a:hover {
    background: var(--line-green);
    border-color: var(--line-green);
    color: #fff;
}
.blog-pagination .current {
    background: var(--line-green);
    border-color: var(--line-green);
    color: #fff;
}
.blog-cta-section {
    padding: 80px 0;
    background: var(--line-green);
    color: #fff;
    text-align: center;
}
.blog-cta-section h2 {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}
.blog-cta-section p {
    opacity: 0.9;
    margin-bottom: 24px;
}

/* ========================================
   ブログ記事詳細ページ
   ======================================== */
.single-post-page {
    padding-top: 100px;
    padding-bottom: 60px;
}
.post-article {
    max-width: 800px;
    margin: 0 auto;
}
.post-header {
    margin-bottom: 32px;
    text-align: center;
}
.post-category {
    display: inline-block;
    background: var(--line-green);
    color: #fff;
    font-size: 12px;
    padding: 4px 16px;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: 16px;
}
.post-title {
    font-size: 32px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
}
.post-meta {
    color: #888;
}
.post-date {
    font-size: 14px;
}
.post-thumbnail {
    margin-bottom: 40px;
    border-radius: 12px;
    overflow: hidden;
}
.post-thumbnail img {
    width: 100%;
    height: auto;
}
.post-content {
    line-height: 2;
    font-size: 16px;
}
.post-content h2 {
    font-size: 24px;
    font-weight: 900;
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--line-green);
}
.post-content h3 {
    font-size: 20px;
    font-weight: 700;
    margin: 36px 0 16px;
}
.post-content p {
    margin-bottom: 24px;
}
.post-content ul,
.post-content ol {
    margin: 24px 0;
    padding-left: 24px;
}
.post-content li {
    margin-bottom: 8px;
}
.post-content blockquote {
    background: #f5f5f5;
    border-left: 4px solid var(--line-green);
    padding: 20px;
    margin: 24px 0;
    font-style: italic;
}
.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}
.post-footer {
    margin-top: 60px;
    padding-top: 30px;
    border-top: 1px solid #eee;
}
.post-tags {
    margin-bottom: 20px;
}
.tag-label {
    font-weight: 600;
    margin-right: 8px;
}
.post-tags a {
    color: var(--line-green);
}
.post-share {
    display: flex;
    align-items: center;
    gap: 12px;
}
.share-label {
    font-weight: 600;
}
.share-btn {
    display: inline-block;
    padding: 8px 16px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 600;
    text-decoration: none;
    color: #fff;
}
.share-twitter {
    background: #1da1f2;
}
.share-facebook {
    background: #1877f2;
}
.share-line {
    background: #00b900;
}

/* 関連記事 */
.related-posts {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid #eee;
}
.related-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 24px;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-card {
    background: #f5f5f5;
    border-radius: 8px;
    overflow: hidden;
}
.related-card a {
    text-decoration: none;
    color: inherit;
}
.related-image {
    aspect-ratio: 16/9;
    overflow: hidden;
}
.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-card h3 {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
}

/* 記事CTA */
.post-cta {
    margin-top: 60px;
    background: #f5f5f5;
    border-radius: 16px;
    padding: 40px;
    text-align: center;
}
.post-cta h3 {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
}
.post-cta p {
    color: #666;
    margin-bottom: 20px;
}
.post-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* レスポンシブ */
@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .post-title {
        font-size: 24px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .post-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}


/* ========================================
   v1.8.9 新規ページCSS（整理版）
   ======================================== */

/* ========================================
   共通：ページヒーロー（全ページ共通）
   ======================================== */
.page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 120px 0 80px;
    text-align: center;
}
.page-hero .section-label {
    color: #06c755;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 16px;
}
.page-hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 16px;
}
.page-hero-subtitle {
    color: rgba(255,255,255,0.7);
    font-size: 15px;
}

/* ========================================
   特定商取引法・プライバシーポリシー
   ======================================== */
.legal-page {
    padding-top: 80px;
    background: #fff;
}
.legal-page .page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
}
.legal-content {
    padding: 60px 0;
    background: #fff;
}
.legal-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.legal-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.legal-table tr {
    border-bottom: 1px solid #eee;
}
.legal-table tr:last-child {
    border-bottom: none;
}
.legal-table th {
    background: #f5f5f5;
    padding: 20px;
    text-align: left;
    width: 200px;
    font-weight: 700;
    vertical-align: top;
    color: #333;
}
.legal-table td {
    padding: 20px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}
.legal-table td a {
    color: #06c755;
}

/* プライバシーポリシー本文 */
.privacy-content {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
}
.privacy-intro {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 40px;
    padding: 20px;
    background: #f5f5f5;
    border-radius: 8px;
    color: #333;
}
.privacy-section {
    margin-bottom: 40px;
}
.privacy-section h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #06c755;
    color: #333;
}
.privacy-section p {
    line-height: 1.8;
    margin-bottom: 12px;
    color: #444;
}
.privacy-section ul {
    margin-left: 20px;
    line-height: 2;
    color: #444;
}
.privacy-section li {
    color: #444;
}
.contact-box {
    background: #f5f5f5;
    padding: 20px;
    border-radius: 8px;
    margin-top: 16px;
}
.contact-box p {
    color: #333;
}
.contact-box a {
    color: #06c755;
}
.privacy-date {
    text-align: right;
    color: #888;
    font-size: 14px;
    margin-top: 40px;
}

/* ========================================
   ご注文の流れ
   ======================================== */
.flow-page {
    padding-top: 80px;
    background: #fff;
}
.flow-main-section {
    padding: 60px 0;
    background: #fff;
}
.flow-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.flow-timeline::before {
    content: '';
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: #e0e0e0;
}
.flow-step {
    display: flex;
    gap: 24px;
    margin-bottom: 40px;
    position: relative;
}
.flow-step:last-child {
    margin-bottom: 0;
}
.flow-step-number {
    width: 50px;
    height: 50px;
    background: #06c755;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.flow-step-number span {
    color: #fff;
}
.flow-step-content {
    flex: 1;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.flow-step-header {
    margin-bottom: 12px;
}
.flow-step-badge {
    display: inline-block;
    background: #06c755;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    margin-bottom: 8px;
}
.flow-step-badge.success {
    background: #2196F3;
}
.flow-step-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #333;
}
.flow-step-content p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 16px;
}
.flow-step-points {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.flow-point {
    background: #f0fff4;
    color: #06c755;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 20px;
}
.flow-example-box {
    background: #f9f9f9;
    border-radius: 8px;
    padding: 16px;
    margin-top: 16px;
}
.flow-example-title {
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.flow-example-box ul {
    margin-left: 16px;
    font-size: 14px;
    line-height: 1.8;
    color: #555;
}
.flow-warning-box {
    background: #fff3cd;
    border: 1px solid #ffc107;
    border-radius: 8px;
    padding: 12px 16px;
    font-size: 13px;
    color: #856404;
}
.flow-payment-methods {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}
.flow-payment-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 12px 16px;
    border-radius: 8px;
    color: #333;
}
.flow-payment-icon {
    font-size: 20px;
}
.flow-delivery-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}
.flow-delivery-item {
    background: #f5f5f5;
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    color: #333;
}
.flow-delivery-item.highlight {
    background: #06c755;
    color: #fff;
}
.flow-delivery-item .delivery-name {
    display: block;
    font-size: 12px;
    margin-bottom: 4px;
}
.flow-delivery-item .delivery-time {
    font-weight: 700;
}
.flow-faq-section {
    padding: 60px 0;
    background: #f5f5f5;
}
.flow-faq-section .section-title-sm {
    color: #333;
}
.flow-faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.flow-faq-item {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
}
.flow-faq-item h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #06c755;
}
.flow-faq-item p {
    font-size: 14px;
    line-height: 1.6;
    color: #555;
}
.flow-cta-section {
    padding: 80px 0;
    background: #06c755;
    color: #fff;
    text-align: center;
}
.flow-cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}
.flow-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.flow-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   サイズガイド
   ======================================== */
.size-page {
    padding-top: 80px;
    background: #fff;
}
.size-tips-section {
    padding: 60px 0;
    background: #fff;
}
.size-tips-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1000px;
    margin: 0 auto;
}
.size-tip-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.size-tip-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 12px;
}
.size-tip-card h4 {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.size-tip-card p {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
}
.size-table-section {
    padding: 60px 0;
    background: #fff;
}
.size-table-section.bg-gray {
    background: #f5f5f5;
}
.size-table-note {
    text-align: center;
    color: #888;
    font-size: 14px;
    margin-bottom: 24px;
}
.size-table-wrapper {
    overflow-x: auto;
    max-width: 900px;
    margin: 0 auto;
}
.size-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.size-table th,
.size-table td {
    padding: 16px;
    text-align: center;
    border-bottom: 1px solid #eee;
}
.size-table thead th {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
}
.size-table tbody td {
    color: #333;
    background: #fff;
}
.size-table tbody tr:hover {
    background: #f9f9f9;
}
.size-table-compact {
    max-width: 600px;
    margin: 0 auto;
}
.size-measure-guide {
    max-width: 800px;
    margin: 40px auto 0;
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.size-measure-guide h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    color: #333;
}
.measure-items {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.measure-item strong {
    display: block;
    color: #06c755;
    margin-bottom: 4px;
}
.measure-item p {
    font-size: 13px;
    color: #666;
}
.size-notes-section {
    padding: 60px 0;
    background: #1a1a1a;
    color: #fff;
}
.size-notes-section .section-title-sm {
    color: #fff;
}
.size-notes-list {
    max-width: 700px;
    margin: 0 auto;
    list-style: none;
}
.size-notes-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    padding-left: 24px;
    position: relative;
    color: rgba(255,255,255,0.9);
}
.size-notes-list li::before {
    content: '';
    position: absolute;
    left: 0;
}
.size-cta-section {
    padding: 60px 0;
    background: #06c755;
    color: #fff;
    text-align: center;
}
.size-cta-section h2 {
    font-size: 24px;
    margin-bottom: 12px;
    color: #fff;
}
.size-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}

/* ========================================
   FAQ（よくある質問ページ専用）
   ======================================== */
.faq-page {
    padding-top: 80px;
    background: #fff;
}
.faq-nav-section {
    padding: 20px 0;
    background: #f5f5f5;
    position: sticky;
    top: 80px;
    z-index: 10;
}
.faq-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
}
.faq-nav-item {
    background: #fff;
    padding: 10px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-decoration: none;
    transition: all 0.2s;
}
.faq-nav-item:hover {
    background: #06c755;
    color: #fff;
}

/* FAQページ専用セクション */
.faq-page .faq-section {
    padding: 60px 0;
    background: #fff;
}
.faq-page .faq-section.bg-gray {
    background: #f5f5f5;
}
.faq-category-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 32px;
    text-align: center;
    color: #333;
}
.faq-page .faq-list {
    max-width: 800px;
    margin: 0 auto;
    background: transparent;
}
.faq-page .faq-item {
    background: #fff;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    box-shadow: 0 2px 10px rgba(0,0,0,0.04);
    border: 1px solid #eee;
}
.faq-page .faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    background: #fff;
    border: none;
    font-size: 15px;
    font-weight: 700;
    text-align: left;
    cursor: pointer;
    transition: all 0.2s;
    color: #333;
}
.faq-page .faq-question:hover {
    background: #f9f9f9;
}
.faq-page .faq-icon {
    font-size: 20px;
    color: #06c755;
    font-weight: 700;
}
.faq-page .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    background: #fff;
}
.faq-page .faq-answer p {
    padding: 0 24px 20px;
    line-height: 1.8;
    color: #555;
}
.faq-page .faq-item.open .faq-question {
    background: #f0fff4;
}
.faq-cta-section {
    padding: 80px 0;
    background: #06c755;
    color: #fff;
    text-align: center;
}
.faq-cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}
.faq-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}

/* ========================================
   納期ページ
   ======================================== */
.delivery-page {
    padding-top: 80px;
    background: #fff;
}
.delivery-options-section {
    padding: 60px 0;
    background: #fff;
}
.section-desc {
    text-align: center;
    color: #666;
    margin-bottom: 40px;
}
.delivery-options-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 1000px;
    margin: 0 auto;
}
.delivery-option-card {
    background: #fff;
    border: 2px solid #e0e0e0;
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}
.delivery-option-card:hover {
    border-color: #06c755;
    transform: translateY(-5px);
}
.delivery-option-card.highlight {
    border-color: #06c755;
    background: #f0fff4;
}
.delivery-option-card.urgent {
    border-color: #ff5722;
}
.delivery-option-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #06c755;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 20px;
}
.delivery-option-badge.urgent {
    background: #ff5722;
}
.delivery-option-header {
    margin-bottom: 16px;
}
.delivery-option-name {
    display: block;
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 4px;
    color: #333;
}
.delivery-option-price {
    color: #06c755;
    font-weight: 700;
}
.delivery-option-time {
    margin-bottom: 16px;
}
.time-number {
    font-size: 48px;
    font-weight: 900;
    color: #06c755;
}
.time-unit {
    font-size: 16px;
    color: #666;
}
.delivery-option-desc {
    font-size: 14px;
    color: #666;
    margin-bottom: 16px;
    line-height: 1.6;
}
.delivery-option-features {
    list-style: none;
    text-align: left;
}
.delivery-option-features li {
    padding: 8px 0;
    font-size: 13px;
    border-top: 1px solid #eee;
    color: #555;
}
.delivery-calendar-section {
    padding: 60px 0;
    background: #f5f5f5;
}
.delivery-calendar-section .section-title-sm {
    color: #333;
}
.calendar-example-grid {
    max-width: 700px;
    margin: 0 auto;
}
.calendar-example {
    background: #fff;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.calendar-example h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 24px;
    text-align: center;
    color: #333;
}
.calendar-timeline {
    position: relative;
    padding-left: 120px;
}
.timeline-item {
    display: flex;
    padding: 16px 0;
    border-bottom: 1px solid #eee;
    position: relative;
}
.timeline-item:last-child {
    border-bottom: none;
}
.timeline-date {
    position: absolute;
    left: -120px;
    width: 100px;
    font-size: 13px;
    font-weight: 700;
    color: #666;
}
.timeline-action {
    font-size: 14px;
    color: #333;
}
.timeline-item.highlight {
    background: #f0fff4;
    margin: 0 -16px;
    padding: 16px;
    border-radius: 8px;
}
.timeline-item.highlight .timeline-action {
    color: #06c755;
    font-weight: 700;
}
.calendar-note {
    max-width: 700px;
    margin: 24px auto 0;
    background: #fff3cd;
    padding: 16px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #856404;
}
.delivery-busy-section {
    padding: 60px 0;
    background: #fff;
}
.delivery-busy-section .section-title-sm {
    color: #333;
}
.busy-season-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto 32px;
}
.busy-season-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.busy-icon {
    font-size: 32px;
    display: block;
    margin-bottom: 8px;
}
.busy-season-card h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
    color: #333;
}
.busy-season-card p {
    font-size: 12px;
    color: #666;
    margin-bottom: 12px;
}
.busy-level {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
}
.busy-level.high {
    background: #ffebee;
    color: #c62828;
}
.busy-level.medium {
    background: #fff3e0;
    color: #ef6c00;
}
.busy-warning-box {
    max-width: 700px;
    margin: 0 auto;
    background: #ffebee;
    border: 1px solid #ffcdd2;
    padding: 20px;
    border-radius: 12px;
    text-align: center;
    font-size: 14px;
    line-height: 1.8;
    color: #c62828;
}
.delivery-shipping-section {
    padding: 60px 0;
    background: #f5f5f5;
}
.delivery-shipping-section .section-title-sm {
    color: #333;
}
.shipping-info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}
.shipping-info-card {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    text-align: center;
}
.shipping-info-card h4 {
    font-size: 14px;
    color: #888;
    margin-bottom: 8px;
}
.shipping-info-card p {
    font-weight: 700;
    color: #333;
}
.shipping-highlight {
    color: #06c755;
    font-size: 18px;
}
.shipping-note {
    font-size: 12px;
    color: #888;
    font-weight: 400;
    margin-top: 4px;
}
.delivery-cta-section {
    padding: 80px 0;
    background: #06c755;
    color: #fff;
    text-align: center;
}
.delivery-cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}
.delivery-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.delivery-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   会社概要
   ======================================== */
.company-page {
    padding-top: 80px;
    background: #fff;
}
.company-info-section {
    padding: 60px 0;
    background: #fff;
}
.company-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
}
.company-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 12px;
    overflow: hidden;
}
.company-table tr {
    border-bottom: 1px solid #eee;
}
.company-table tr:last-child {
    border-bottom: none;
}
.company-table th {
    background: #f5f5f5;
    padding: 20px;
    text-align: left;
    width: 180px;
    font-weight: 700;
    vertical-align: top;
    color: #333;
}
.company-table td {
    padding: 20px;
    line-height: 1.8;
    color: #333;
    background: #fff;
}
.company-table td a {
    color: #06c755;
}
.company-about-section {
    padding: 60px 0;
    background: #f5f5f5;
}
.company-about-section .section-title-sm {
    color: #333;
}
.about-content {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}
.about-content p {
    font-size: 15px;
    line-height: 2;
    margin-bottom: 16px;
    color: #444;
}
.about-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    max-width: 900px;
    margin: 0 auto;
}
.about-feature {
    background: #fff;
    padding: 32px 24px;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.about-feature-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}
.about-feature h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
}
.about-feature p {
    font-size: 13px;
    color: #666;
}
.company-additional-section {
    padding: 60px 0;
    background: #fff;
}
.company-additional-section .container {
    max-width: 800px;
}
.company-cta-section {
    padding: 80px 0;
    background: #06c755;
    color: #fff;
    text-align: center;
}
.company-cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}
.company-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.company-cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   ブログ
   ======================================== */
.blog-page {
    padding-top: 80px;
    background: #fff;
}
.blog-content-section {
    padding: 60px 0;
    background: #fff;
}
.blog-layout {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 40px;
}
.blog-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}
.blog-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    transition: all 0.3s;
}
.blog-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.blog-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
}
.blog-card-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.blog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.blog-card:hover .blog-card-image img {
    transform: scale(1.05);
}
.blog-card-content {
    padding: 20px;
    background: #fff;
}
.blog-card-cat {
    display: inline-block;
    background: #06c755;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    margin-bottom: 8px;
}
.blog-card-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.5;
    color: #333;
}
.blog-card-excerpt {
    font-size: 13px;
    color: #666;
    line-height: 1.6;
    margin-bottom: 12px;
}
.blog-card-date {
    font-size: 12px;
    color: #999;
}
.blog-pagination {
    margin-top: 40px;
    display: flex;
    justify-content: center;
    gap: 8px;
}
.blog-pagination a,
.blog-pagination span {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}
.blog-pagination a {
    background: #f5f5f5;
    color: #333;
}
.blog-pagination a:hover {
    background: #06c755;
    color: #fff;
}
.blog-pagination .current {
    background: #06c755;
    color: #fff;
}
.blog-no-posts {
    text-align: center;
    padding: 60px 20px;
    background: #f5f5f5;
    border-radius: 12px;
    color: #666;
}

/* サイドバー */
.sidebar-widget {
    background: #fff;
    padding: 24px;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
    border: 1px solid #eee;
}
.sidebar-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    padding-bottom: 8px;
    border-bottom: 2px solid #06c755;
    color: #333;
}
.sidebar-cat-list {
    list-style: none;
}
.sidebar-cat-list li {
    border-bottom: 1px solid #eee;
}
.sidebar-cat-list li:last-child {
    border-bottom: none;
}
.sidebar-cat-list a {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    text-decoration: none;
    color: #333;
    font-size: 14px;
}
.sidebar-cat-list a:hover {
    color: #06c755;
}
.sidebar-cat-list span {
    color: #999;
}
.sidebar-popular-item {
    display: flex;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid #eee;
    text-decoration: none;
    color: inherit;
}
.sidebar-popular-item:last-child {
    border-bottom: none;
}
.sidebar-popular-thumb {
    width: 60px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    flex-shrink: 0;
}
.sidebar-popular-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.sidebar-popular-info {
    flex: 1;
}
.sidebar-popular-title {
    display: block;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.4;
    margin-bottom: 4px;
    color: #333;
}
.sidebar-popular-date {
    font-size: 11px;
    color: #999;
}
.sidebar-cta {
    background: #1a1a1a;
    color: #fff;
    text-align: center;
}
.sidebar-cta-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.5;
    color: #fff;
}

/* 記事詳細ページ */
.single-post-page {
    padding: 100px 0 60px;
    background: #f5f5f5;
}
.post-article {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.post-header {
    padding: 40px 40px 20px;
    background: #fff;
}
.post-category {
    display: inline-block;
    background: #06c755;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 4px;
    margin-bottom: 12px;
}
.post-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.4;
    margin-bottom: 16px;
    color: #333;
}
.post-meta {
    color: #888;
    font-size: 14px;
}
.post-thumbnail {
    margin: 0;
}
.post-thumbnail img {
    width: 100%;
    height: auto;
}
.post-content {
    padding: 40px;
    line-height: 2;
    background: #fff;
    color: #333;
}
.post-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    padding-bottom: 8px;
    border-bottom: 2px solid #06c755;
    color: #333;
}
.post-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: #333;
}
.post-content p {
    margin-bottom: 20px;
    color: #444;
}
.post-content ul,
.post-content ol {
    margin: 20px 0;
    padding-left: 24px;
    color: #444;
}
.post-content li {
    margin-bottom: 8px;
    color: #444;
}
.post-content blockquote {
    background: #f5f5f5;
    border-left: 4px solid #06c755;
    padding: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #555;
}
.post-footer {
    padding: 24px 40px;
    border-top: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    background: #fff;
}
.post-tags {
    font-size: 13px;
    color: #666;
}
.tag-label {
    color: #888;
}
.post-tags a {
    color: #06c755;
    text-decoration: none;
}
.post-share {
    display: flex;
    gap: 8px;
    align-items: center;
}
.share-label {
    font-size: 13px;
    color: #888;
}
.share-btn {
    padding: 6px 12px;
    border-radius: 4px;
    font-size: 12px;
    text-decoration: none;
    color: #fff;
}
.share-twitter {
    background: #1da1f2;
}
.share-facebook {
    background: #4267b2;
}
.share-line {
    background: #06c755;
}
.related-posts {
    max-width: 800px;
    margin: 40px auto 0;
}
.related-title {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}
.related-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.related-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}
.related-card a {
    text-decoration: none;
    color: inherit;
}
.related-image {
    aspect-ratio: 16/10;
    overflow: hidden;
}
.related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.related-card h3 {
    padding: 16px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: #333;
    background: #fff;
}
.post-cta {
    max-width: 800px;
    margin: 40px auto 0;
    background: #06c755;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    color: #fff;
}
.post-cta h3 {
    font-size: 20px;
    margin-bottom: 8px;
    color: #fff;
}
.post-cta p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 20px;
}
.post-cta-buttons {
    display: flex;
    gap: 12px;
    justify-content: center;
}
.post-cta .btn-outline {
    background: transparent;
    border: 2px solid #fff;
    color: #fff;
}

/* ========================================
   フッター修正
   ======================================== */
.footer {
    padding: 80px 0 40px;
    background: #1a1a1a;
    border-top: 1px solid #333;
}
.footer-brand .logo {
    color: #fff;
}
.footer-brand p {
    color: rgba(255,255,255,0.7);
}
.footer-col h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 16px;
}
.footer-col ul {
    list-style: none;
}
.footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 13px;
    display: block;
    padding: 6px 0;
    transition: color 0.3s;
}
.footer-col a:hover {
    color: #06c755;
}
.footer-cta-buttons {
    display: flex;
    gap: 12px;
    margin-top: 20px;
}
.footer-btn {
    display: inline-block;
    padding: 12px 20px;
    border-radius: 4px;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
}
.footer-btn-outline {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
}
.footer-btn-outline:hover {
    background: rgba(255,255,255,0.1);
}
.footer-btn-line {
    background: #06c755;
    color: #fff;
}
.footer-btn-line:hover {
    background: #05a649;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
}
.footer-bottom p {
    color: rgba(255,255,255,0.5);
    font-size: 12px;
    text-align: center;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 0 60px;
    }
    .page-hero-title {
        font-size: 28px;
    }
    .legal-table th {
        display: block;
        width: 100%;
    }
    .legal-table td {
        display: block;
    }
    .flow-timeline::before {
        left: 20px;
    }
    .flow-step-number {
        width: 40px;
        height: 40px;
        font-size: 16px;
    }
    .flow-delivery-options {
        grid-template-columns: 1fr;
    }
    .flow-faq-grid {
        grid-template-columns: 1fr;
    }
    .size-tips-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .measure-items {
        grid-template-columns: repeat(2, 1fr);
    }
    .delivery-options-grid {
        grid-template-columns: 1fr;
    }
    .busy-season-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .shipping-info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .calendar-timeline {
        padding-left: 0;
    }
    .timeline-date {
        position: static;
        width: auto;
        display: block;
        margin-bottom: 4px;
    }
    .timeline-item {
        flex-direction: column;
    }
    .company-table th {
        display: block;
        width: 100%;
    }
    .company-table td {
        display: block;
    }
    .about-features {
        grid-template-columns: 1fr;
    }
    .company-cta-buttons,
    .flow-cta-buttons,
    .delivery-cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .blog-layout {
        grid-template-columns: 1fr;
    }
    .blog-grid {
        grid-template-columns: 1fr;
    }
    .post-header {
        padding: 24px;
    }
    .post-title {
        font-size: 22px;
    }
    .post-content {
        padding: 24px;
    }
    .post-footer {
        padding: 16px 24px;
    }
    .related-grid {
        grid-template-columns: 1fr;
    }
    .post-cta {
        padding: 24px;
    }
    .post-cta-buttons {
        flex-direction: column;
    }
    .footer-content {
        flex-direction: column;
        gap: 40px;
    }
    .footer-links {
        flex-direction: column;
        gap: 32px;
    }
}

/* ========================================
   v1.9.1 ヘッダー白背景対応 + 視認性修正
   ======================================== */

/* 白背景ページ用ヘッダー */
.header-light {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}
.header-light .logo {
    color: #000 !important;
}
.header-light .nav a {
    color: #333 !important;
}
.header-light .nav a:hover {
    color: #06c755 !important;
}
.header-light .nav-cta {
    background: #06c755 !important;
    color: #fff !important;
}
.header-light .menu-toggle span {
    background: #000 !important;
}

/* スクロール時も維持 */
.header-light.scrolled {
    background: #fff !important;
}
.header-light.scrolled .logo {
    color: #000 !important;
}
.header-light.scrolled .nav a {
    color: #333 !important;
}

/* body.light-page でも対応 */
body.light-page .header {
    background: #fff !important;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1) !important;
}
body.light-page .header .logo {
    color: #000 !important;
}
body.light-page .header .nav a {
    color: #333 !important;
}
body.light-page .header .nav a:hover {
    color: #06c755 !important;
}
body.light-page .header .nav-cta {
    background: #06c755 !important;
    color: #fff !important;
}
body.light-page .header .menu-toggle span {
    background: #000 !important;
}

/* 白背景ページの本文エリア調整 */
.light-page main {
    padding-top: 80px;
}

/* ========================================
   料金表ページ修正
   ======================================== */
.price-page {
    padding-top: 80px;
    background: #fff;
}

/* ========================================
   制作実績ページ
   ======================================== */
.works-page {
    padding-top: 80px;
    background: #fff;
}
.works-page .page-hero {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 100px 0 60px;
}
.works-gallery-section {
    padding: 60px 0;
    background: #fff;
}
.works-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
    margin-bottom: 40px;
}
.works-filter-btn {
    background: #f5f5f5;
    color: #333;
    padding: 10px 20px;
    border: none;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
}
.works-filter-btn:hover,
.works-filter-btn.active {
    background: #06c755;
    color: #fff;
}
.works-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.works-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1;
    position: relative;
    cursor: pointer;
}
.works-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}
.works-item:hover img {
    transform: scale(1.05);
}
.works-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: #fff;
    opacity: 0;
    transition: opacity 0.3s;
}
.works-item:hover .works-item-overlay {
    opacity: 1;
}
.works-stats-section {
    padding: 60px 0;
    background: #1a1a1a;
}
.works-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 800px;
    margin: 0 auto;
}
.works-stat {
    text-align: center;
}
.works-stat-number {
    font-size: 48px;
    font-weight: 900;
    color: #06c755;
    display: block;
}
.works-stat-label {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
}
.works-cta-section {
    padding: 80px 0;
    background: #06c755;
    text-align: center;
}
.works-cta-section h2 {
    font-size: 28px;
    margin-bottom: 12px;
    color: #fff;
}
.works-cta-section p {
    color: rgba(255,255,255,0.9);
    margin-bottom: 24px;
}
.works-empty {
    text-align: center;
    padding: 80px 20px;
    color: #666;
}

/* ========================================
   ご注文の流れ修正
   ======================================== */
.flow-page {
    padding-top: 80px;
    background: #fff;
}
.flow-page .flow-main-section {
    padding: 60px 0;
    background: #fff;
}
.flow-page .flow-step-content {
    background: #fff;
}
.flow-page .flow-step-content h3 {
    color: #333;
}
.flow-page .flow-step-content p {
    color: #555;
}

/* ========================================
   サイズガイド修正
   ======================================== */
.size-page {
    padding-top: 80px;
    background: #fff;
}
.size-page .size-measure-guide {
    background: #fff;
    border: 1px solid #eee;
}
.size-page .measure-item strong {
    color: #06c755;
    display: block;
    margin-bottom: 4px;
}
.size-page .measure-item p {
    color: #666;
    font-size: 13px;
}

/* ========================================
   FAQ修正
   ======================================== */
.faq-page {
    padding-top: 80px;
    background: #fff;
}

/* ========================================
   納期ページ修正
   ======================================== */
.delivery-page {
    padding-top: 80px;
    background: #fff;
}

/* ========================================
   レスポンシブ
   ======================================== */
@media (max-width: 768px) {
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .works-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ========================================
   v1.9.2 競技ページFAQ視認性修正
   ======================================== */

/* 競技ページのFAQセクション（ダーク背景） */
.faq-section {
    background: var(--dark);
}
.faq-section .section-label {
    color: #06c755;
}
.faq-section .section-title-sm {
    color: #fff;
}
.faq-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
    background: rgba(255,255,255,0.1);
    max-width: 800px;
    margin: 0 auto;
}
.faq-item {
    background: var(--dark);
    padding: 32px 40px;
}
.faq-q {
    font-size: 15px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 16px;
    color: #fff;
}
.faq-q::before {
    content: "Q";
    background: #06c755;
    color: #fff;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 900;
    flex-shrink: 0;
}
.faq-a {
    margin-top: 16px;
    padding-left: 48px;
    font-size: 14px;
    line-height: 1.9;
    color: rgba(255,255,255,0.8);
}

/* レスポンシブ */
@media (max-width: 768px) {
    .faq-item {
        padding: 24px 20px;
    }
    .faq-q {
        font-size: 14px;
    }
    .faq-a {
        padding-left: 0;
        margin-top: 12px;
    }
}

/* ============================================
   MOBILE OPTIMIZATION v2.1.1
   スマホファースト最適化
   ============================================ */

/* --- 共通ページクラス（デスクトップ） --- */
.page-hero-section {
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    padding: 100px 0 60px;
}
.page-hero-title {
    color: #fff;
    font-size: 36px;
    font-weight: 900;
}
.page-hero-desc {
    color: rgba(255,255,255,0.8);
    margin-top: 12px;
}
.label-green { color: #06C755; }

.section-white { background: #fff; padding: 60px 0; }
.section-gray { background: #f5f5f5; padding: 60px 0; }
.section-dark { background: #1a1a1a; padding: 60px 0; }

.section-heading {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 24px;
    text-align: center;
    color: #333;
}
.section-heading--white { color: #fff; }
.section-sub { text-align: center; color: #666; margin-bottom: 16px; }
.section-note { text-align: center; color: #999; font-size: 13px; margin-bottom: 40px; }

.table-scroll-wrapper {
    overflow-x: auto;
    max-width: 700px;
    margin: 0 auto;
    -webkit-overflow-scrolling: touch;
}
.price-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06);
}

/* グリッドレイアウト（デスクトップ） */
.plan-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 700px; margin: 0 auto; }
.plan-card { background: #fff; border-radius: 16px; padding: 32px 24px; text-align: center; box-shadow: 0 4px 20px rgba(0,0,0,0.06); }
.plan-card--premium { border: 2px solid #06C755; position: relative; }
.discount-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 800px; margin: 0 auto; }
.delivery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; max-width: 1000px; margin: 0 auto; }
.info-grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.points-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; max-width: 900px; margin: 0 auto; }
.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; text-align: center; }
.company-stats-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; max-width: 900px; margin: 0 auto; }
.blog-layout { display: grid; grid-template-columns: 1fr 300px; gap: 40px; }
.blog-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.filter-buttons { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; }

/* ============================================
   タブレット (max-width: 768px)
   ============================================ */
@media (max-width: 768px) {

    /* --- 共通ページヒーロー --- */
    .page-hero-section {
        padding: 80px 0 40px;
    }
    .page-hero-title {
        font-size: 26px;
        line-height: 1.3;
    }
    .page-hero-desc {
        font-size: 13px;
        line-height: 1.7;
    }

    /* --- セクション --- */
    .section-white,
    .section-gray,
    .section-dark {
        padding: 40px 0;
    }
    .section-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    /* --- グリッド → 1列化 --- */
    .plan-grid,
    .discount-grid,
    .delivery-grid,
    .points-grid,
    .company-stats-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .info-grid-4,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .blog-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .blog-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- CTAボタン --- */
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
        align-items: center;
    }
    .cta-buttons a,
    .cta-buttons .btn {
        width: 100%;
        max-width: 320px;
        text-align: center;
        justify-content: center;
    }

    /* --- テーブル横スクロール --- */
    .table-scroll-wrapper {
        max-width: 100%;
        margin: 0 -20px;
        padding: 0 20px;
    }
    .price-table {
        min-width: 500px;
    }
    .comparison-table {
        font-size: 12px;
    }
    .comparison-table th,
    .comparison-table td {
        padding: 10px 8px;
        font-size: 12px;
    }
    .comparison-table-wrapper,
    .comparison-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        margin: 0 -20px;
        padding: 0 20px;
    }

    /* --- プランカード --- */
    .plan-card {
        padding: 24px 20px;
    }

    /* --- FAQ --- */
    .faq-question-btn {
        padding: 16px !important;
        font-size: 14px !important;
    }

    /* --- フローページ ステップ --- */
    .flow-step {
        flex-direction: column;
    }

    /* --- フッター --- */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-links-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }

    /* --- トップページ スポーツグリッド --- */
    .sports-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .sport-card {
        aspect-ratio: 3/2;
    }
    .sport-card .sport-name {
        font-size: 16px;
    }
    .sport-card .sport-price {
        font-size: 12px;
    }
    .sport-card .sport-tag {
        font-size: 9px;
    }

    /* --- トップページ 選ばれる理由 --- */
    .reasons-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .reason-card {
        padding: 24px 20px;
    }
    .reason-title {
        font-size: 18px;
    }

    /* --- お知らせ・インスタ --- */
    .news-instagram-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .instagram-grid-small {
        grid-template-columns: repeat(2, 1fr);
    }

    /* --- 見積もりシミュレーター --- */
    .est-grid {
        grid-template-columns: 1fr !important;
    }

    /* --- スポーツLP --- */
    .comparison-section .comparison-table {
        min-width: 600px;
    }
    .products-grid {
        grid-template-columns: 1fr;
    }

    /* --- ターゲット --- */
    .target-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    /* --- single-product --- */
    .product-main-grid {
        grid-template-columns: 1fr;
    }
    .product-options-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   スマホ (max-width: 480px)
   ============================================ */
@media (max-width: 480px) {

    /* --- さらにコンパクトに --- */
    .page-hero-section {
        padding: 72px 0 32px;
    }
    .page-hero-title {
        font-size: 22px;
    }
    .page-hero-desc {
        font-size: 12px;
    }

    .section-white,
    .section-gray,
    .section-dark {
        padding: 32px 0;
    }

    .container {
        padding: 0 16px;
    }

    /* --- ヒーロー最適化 --- */
    .hero-title {
        font-size: clamp(24px, 8vw, 36px) !important;
        letter-spacing: -0.5px;
    }
    .hero-subtitle {
        font-size: 13px;
        line-height: 1.8;
    }
    .hero-prices {
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .price-box {
        width: 100%;
        max-width: 200px;
    }

    /* --- 4列 → 2列 --- */
    .info-grid-4,
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .works-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }

    /* --- スポーツグリッド --- */
    .sports-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }
    .sport-card {
        aspect-ratio: 1;
        border-radius: 12px;
    }

    /* --- フィルターボタン --- */
    .filter-buttons {
        gap: 6px;
    }
    .filter-buttons button,
    .filter-buttons .filter-btn {
        font-size: 12px;
        padding: 8px 12px;
    }

    /* --- 見積もりシミュレーター --- */
    .est-banner {
        grid-template-columns: 1fr !important;
    }
    .est-banner-title {
        font-size: 20px !important;
    }

    /* --- テーブル --- */
    .comparison-table th,
    .comparison-table td {
        padding: 8px 6px;
        font-size: 11px;
    }
    .best-badge {
        font-size: 8px;
        padding: 2px 4px;
    }
    .comparison-table small {
        font-size: 9px;
    }

    /* --- ブログカード --- */
    .blog-card-image {
        height: 150px;
    }

    /* --- プランカード --- */
    .plan-card {
        padding: 20px 16px;
    }

    /* --- 固定LINE CTA(フッター上) --- */
    .cta-section {
        padding: 40px 0;
    }
    .cta-section h2 {
        font-size: 22px;
    }

    /* --- FAQ --- */
    .faq-question-btn {
        padding: 14px 12px !important;
        font-size: 13px !important;
    }
    .faq-a {
        font-size: 13px;
    }
}

/* ============================================
   スマホ固定LINE CTAバー
   ============================================ */
.mobile-cta-bar {
    display: none;
}
@media (max-width: 768px) {
    .mobile-cta-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 9999;
        background: #06C755;
        padding: 12px 16px;
        gap: 8px;
        box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
        justify-content: center;
        align-items: center;
    }
    .mobile-cta-bar a {
        flex: 1;
        text-align: center;
        padding: 14px 0;
        border-radius: 8px;
        font-weight: 700;
        font-size: 14px;
        text-decoration: none;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
    }
    .mobile-cta-bar .cta-line {
        background: #fff;
        color: #06C755;
    }
    .mobile-cta-bar .cta-estimate {
        background: rgba(255,255,255,0.2);
        color: #fff;
        border: 1px solid rgba(255,255,255,0.4);
    }
    /* フッター下部に余白確保 */
    body {
        padding-bottom: 72px;
    }
    /* 既存のフッター固定CTAとの重複防止 */
    .footer-cta-bar {
        display: none;
    }
}

/* ============================================
   タッチ最適化
   ============================================ */
@media (max-width: 768px) {
    /* タップターゲット最小44px確保 */
    .btn, button, a.btn, .filter-btn {
        min-height: 44px;
    }
    /* テーブルスクロールヒント */
    .comparison-wrapper::after,
    .table-scroll-wrapper::after {
        content: '← スクロールできます →';
        display: block;
        text-align: center;
        font-size: 11px;
        color: #999;
        padding: 8px 0 0;
    }
    /* smooth scrolling */
    html { scroll-behavior: smooth; }
    /* フォントサイズ最適化 */
    .section-title { font-size: 24px; }
    .section-title-sm { font-size: 20px; }
    .section-desc { font-size: 13px; }
    .section-label { font-size: 10px; letter-spacing: 3px; }
}

/* ============================================
   スポーツLP スマホ最適化
   ============================================ */
@media (max-width: 768px) {
    /* 比較テーブル */
    .comparison-section {
        padding: 40px 0;
    }
    .comparison-wrapper {
        margin: 0 -20px;
        padding: 0 20px;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table .unista-col {
        min-width: 80px;
    }
    /* レビューセクション */
    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .review-card {
        padding: 20px;
    }
    /* FAQセクション */
    .sport-faq-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   page-estimate-generator スマホ
   ============================================ */
@media (max-width: 768px) {
    .estimate-gen-grid {
        grid-template-columns: 1fr !important;
    }
    .estimate-gen-preview {
        position: static !important;
    }
}

/* ============================================
   single-product スマホ
   ============================================ */
@media (max-width: 768px) {
    .product-hero-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    .product-gallery {
        max-height: 300px;
    }
    .product-info h1 {
        font-size: 22px;
    }
    .product-price {
        font-size: 28px;
    }
    .product-options-grid {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .marking-options-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   archive-product スマホ
   ============================================ */
@media (max-width: 768px) {
    .product-archive-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .product-archive-sidebar {
        display: none;
    }
}

/* ============================================
   印刷用非表示
   ============================================ */
@media print {
    .mobile-cta-bar,
    .footer-cta-bar,
    .header,
    .hero-cta {
        display: none !important;
    }
}

/* デスクトップ固定CTAをスマホで非表示 */
@media (max-width: 768px) {
    .fixed-cta {
        display: none !important;
    }
}

/* フッター */
.footer-bottom { margin-top: 60px; padding-top: 20px; border-top: 1px solid #333; text-align: center; }
.footer-copyright { color: rgba(255,255,255,0.5); font-size: 12px; }
@media (max-width: 768px) {
    .footer-bottom { margin-top: 32px; padding-top: 16px; }
}


/* ============================================
   MOBILE FIX v2.2.0 - スマホ表示修正
   ============================================ */

/* --- コンテナ余白の修正 (最重要) --- */
@media (max-width: 768px) {
    .container {
        padding: 0 20px !important;
    }
}
@media (max-width: 480px) {
    .container {
        padding: 0 16px !important;
    }
}

/* --- セクション余白の大幅削減 --- */
@media (max-width: 768px) {
    .reasons-section,
    .sports-section,
    .gallery-section {
        padding: 48px 0 !important;
    }
    .target-section,
    .products-section,
    .comparison-section,
    .testimonials-section,
    .flow-section,
    .faq-section {
        padding: 48px 0 !important;
    }
    .cta-section {
        padding: 48px 0 !important;
    }
    .section-title {
        margin-bottom: 24px !important;
    }
    .section-label {
        margin-bottom: 6px !important;
    }
    /* h2とsection-titleの間のスペース */
    .section-title-sm {
        margin-bottom: 24px !important;
    }
}

/* --- セクション間の灰色ライン問題修正 --- */
/* 隣接する黒セクションの境界線をなくす */
.reasons-section,
.target-section,
.testimonials-section,
.flow-section,
.faq-section,
.cta-section {
    border: none;
    outline: none;
}
/* reason-cardの背景を親セクションと統一 */
@media (max-width: 768px) {
    .reason-card {
        background: transparent !important;
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 12px;
        padding: 24px 20px;
    }
    .reason-card:hover {
        background: rgba(255,255,255,0.05) !important;
    }
    .reason-num {
        font-size: 48px;
        margin-bottom: 12px;
    }
    .reason-title {
        font-size: 18px;
        line-height: 1.4;
    }
    .reason-desc {
        font-size: 13px;
        line-height: 1.7;
    }
}

/* --- モバイルCTAバー修正（見切れ防止）--- */
@media (max-width: 768px) {
    .mobile-cta-bar {
        padding: 10px 12px !important;
        gap: 6px !important;
        padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px)) !important;
    }
    .mobile-cta-bar a {
        padding: 12px 8px !important;
        font-size: 13px !important;
        border-radius: 6px !important;
        min-width: 0 !important;
        white-space: nowrap !important;
    }
    .mobile-cta-bar .cta-line {
        flex: 1.2;
    }
    .mobile-cta-bar .cta-estimate {
        flex: 1;
    }
    /* body下部の余白もsafe-area対応 */
    body {
        padding-bottom: calc(68px + env(safe-area-inset-bottom, 0px)) !important;
    }
}

/* --- hero下のセクションラベル上の余白削減 --- */
@media (max-width: 768px) {
    .hero + section,
    .page-hero-section + section {
        padding-top: 40px !important;
    }
    /* WHY CHOOSE USのセクションタイトル */
    .reasons-section .section-label,
    .reasons-section .section-title-sm {
        margin-bottom: 8px;
    }
    .reasons-section .section-title-sm {
        margin-bottom: 20px !important;
    }
}

/* --- スポーツカードのスマホ最適化 --- */
@media (max-width: 768px) {
    .sport-card {
        aspect-ratio: 3/2;
        border-radius: 12px;
    }
    .sport-card .sport-name {
        font-size: 16px;
    }
    .sport-card .sport-price {
        font-size: 11px;
    }
}

/* --- 比較テーブル スマホ修正 --- */
@media (max-width: 768px) {
    .price-comparison-section,
    .comparison-section {
        padding: 40px 0 !important;
    }
    .comparison-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    .comparison-table {
        min-width: 520px;
    }
}

/* --- ページヒーローのスマホ調整 --- */
@media (max-width: 768px) {
    .page-hero-section {
        padding: 72px 0 32px !important;
    }
    .hero {
        min-height: 85vh;
    }
    .hero-content {
        padding: 0 20px;
    }
}

/* --- estimator バナーのスマホ調整 --- */
@media (max-width: 768px) {
    .estimator-section {
        padding: 40px 0 !important;
    }
}

/* --- ニュース+インスタのスマホ調整 --- */
@media (max-width: 768px) {
    .news-instagram-section {
        padding: 40px 0 !important;
    }
}

/* --- フッターのスマホ調整 --- */
@media (max-width: 768px) {
    .footer {
        padding: 40px 0 24px !important;
    }
    .footer-grid {
        gap: 24px !important;
    }
}

/* --- 固定CTA(デスクトップ)のスマホ完全非表示 --- */
@media (max-width: 768px) {
    .fixed-cta {
        display: none !important;
    }
}

/* ============================================
   MOBILE FIX v2 — 灰色問題 + 商品カード修正
   ============================================ */

/* --- 灰色の根本原因を修正 --- */
/* REASONS: see final block */

/* --- 商品カード スマホ最適化（参考画像風） --- */
@media (max-width: 768px) {
    .products-slider .product-card {
        flex: 0 0 calc(50% - 8px) !important;
        min-width: calc(50% - 8px) !important;
        border-radius: 12px !important;
        box-shadow: 0 2px 12px rgba(0,0,0,0.08) !important;
        overflow: hidden;
    }
    /* 画像エリア：contain表示で全体を見せる */
    .product-img {
        height: 180px !important;
        background: #f8f8f8 !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 12px !important;
    }
    .product-img img {
        width: 100% !important;
        height: 100% !important;
        object-fit: contain !important;
        object-position: center !important;
    }
    .product-img .placeholder {
        font-size: 40px !important;
        background: #f8f8f8 !important;
    }
    /* テキストエリア */
    .product-body {
        padding: 12px 14px 16px !important;
    }
    .product-name {
        font-size: 13px !important;
        line-height: 1.4 !important;
        margin-bottom: 6px !important;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .product-price {
        font-size: 20px !important;
    }
    .product-price span {
        font-size: 12px !important;
    }
    .product-color-badge {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
    /* スライダーナビ */
    .section-header-row {
        flex-direction: row !important;
        align-items: center !important;
        gap: 12px;
        margin-bottom: 16px;
    }
    .section-header-row .section-title-sm {
        font-size: 18px !important;
        margin-bottom: 0 !important;
    }
    .slider-btn {
        width: 36px !important;
        height: 36px !important;
        font-size: 16px !important;
    }
    /* 商品セクション間余白 */
    .products-section {
        padding: 32px 0 !important;
    }
}

/* 480px以下：さらにコンパクト */
@media (max-width: 480px) {
    .product-img {
        height: 140px !important;
        padding: 8px !important;
    }
    .product-body {
        padding: 10px 12px 14px !important;
    }
    .product-name {
        font-size: 12px !important;
    }
    .product-price {
        font-size: 18px !important;
    }
}

/* --- ギャラリーも同様に修正 --- */
@media (max-width: 768px) {
    .gallery-grid-4col {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
    }
    .gallery-grid-4col img,
    .gallery-grid-4col .gallery-item {
        border-radius: 8px;
        aspect-ratio: 1;
        object-fit: cover;
    }
}

/* ============================================
   APPEAL SECTION — Premium Redesign v2.2.1
   ============================================ */
.appeal-section {
    padding: 80px 0 !important;
    background: #111 !important;
    position: relative;
    overflow: hidden;
}
.appeal-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(6,199,85,0.06) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 50%, rgba(6,199,85,0.04) 0%, transparent 60%);
    pointer-events: none;
}
.appeal-grid {
    display: grid !important;
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 0 !important;
    margin-bottom: 0 !important;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
    background: transparent !important;
}
.appeal-card {
    background: transparent !important;
    border: none !important;
    border-right: 1px solid rgba(255,255,255,0.08);
    border-radius: 0 !important;
    padding: 48px 36px !important;
    text-align: left !important;
    position: relative;
    transition: background 0.4s !important;
    box-shadow: none !important;
}
.appeal-card:last-child {
    border-right: none;
}
.appeal-card:hover {
    background: rgba(255,255,255,0.03) !important;
    transform: none !important;
    box-shadow: none !important;
}
.appeal-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 64px;
    color: #06C755;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 8px;
}
.appeal-content {}
.appeal-card .appeal-title {
    font-size: 20px !important;
    font-weight: 900 !important;
    color: #fff !important;
    margin-bottom: 14px !important;
    line-height: 1.4;
}
.appeal-card .appeal-text {
    font-size: 14px !important;
    line-height: 1.9 !important;
    color: rgba(255,255,255,0.6) !important;
    margin-bottom: 20px;
}
.appeal-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.appeal-tag {
    display: inline-block;
    padding: 5px 12px;
    border: 1px solid rgba(6,199,85,0.3);
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    color: #06C755;
    letter-spacing: 0.5px;
}
.appeal-note {
    display: none !important;
}

/* Appeal スマホ */
@media (max-width: 768px) {
    .appeal-section {
        padding: 48px 0 !important;
    }
    .appeal-grid {
        grid-template-columns: 1fr !important;
        border-radius: 16px;
    }
    .appeal-card {
        padding: 32px 24px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }
    .appeal-card:last-child {
        border-bottom: none;
    }
    .appeal-num {
        font-size: 48px;
        margin-bottom: 4px;
    }
    .appeal-card .appeal-title {
        font-size: 18px !important;
    }
    .appeal-card .appeal-text {
        font-size: 13px !important;
        margin-bottom: 14px;
    }
    .appeal-tag {
        font-size: 10px;
        padding: 4px 10px;
    }
}

/* ============================================
   DESIGN CATALOG — 3列カタログ風ギャラリー
   ============================================ */
.design-catalog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.design-card {
    display: block;
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: all 0.3s;
    text-decoration: none;
    color: inherit;
}
.design-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.1);
    border-color: #06C755;
}
.design-card-img {
    position: relative;
    aspect-ratio: 1;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 16px;
}
.design-card-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s;
}
.design-card:hover .design-card-img img {
    transform: scale(1.05);
}
.design-placeholder {
    font-size: 72px;
    opacity: 0.2;
}
.design-number {
    position: absolute;
    bottom: 8px;
    right: 12px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    color: #333;
    opacity: 0.15;
    line-height: 1;
}
.design-card-label {
    padding: 12px 16px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    text-align: center;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}

/* gallery-section 白背景調整 */
.gallery-section {
    background: #fff !important;
    color: #333 !important;
}
.gallery-section .section-label {
    color: #06C755 !important;
}
.gallery-section .section-title-sm {
    color: #222 !important;
}

/* タブレット */
@media (max-width: 900px) {
    .design-catalog-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    .design-card-img {
        padding: 12px;
    }
    .design-number {
        font-size: 24px;
    }
    .design-card-label {
        padding: 10px 12px;
        font-size: 12px;
    }
}

/* スマホ */
@media (max-width: 600px) {
    .design-catalog-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .design-card {
        border-radius: 8px;
    }
    .design-card-img {
        padding: 8px;
    }
    .design-number {
        font-size: 20px;
        bottom: 4px;
        right: 8px;
    }
    .design-card-label {
        padding: 8px 10px;
        font-size: 11px;
    }
}

/* ============================================
   PRICE COMPARISON — Premium VS Card Design
   ============================================ */
.compare-cards {
    display: flex;
    align-items: stretch;
    gap: 0;
    max-width: 960px;
    margin: 48px auto 40px;
    position: relative;
}
.compare-card {
    flex: 1;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}
.compare-card--other {
    background: #f5f5f5;
    border: 1px solid #e0e0e0;
    transform: scale(0.95);
    opacity: 0.85;
}
.compare-card--unista {
    background: #fff;
    border: 2px solid #06C755;
    box-shadow: 0 20px 60px rgba(6,199,85,0.15), 0 8px 24px rgba(0,0,0,0.08);
    z-index: 2;
}
.compare-card-ribbon {
    position: absolute;
    top: 16px;
    right: -32px;
    background: #06C755;
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    padding: 6px 40px;
    transform: rotate(45deg);
    letter-spacing: 1px;
    z-index: 3;
}
.compare-card-header {
    padding: 24px 28px 0;
}
.compare-card--other .compare-card-header {
    opacity: 0.6;
}
.compare-card-label {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #999;
}
.compare-card--unista .compare-card-label {
    color: #06C755;
    font-size: 15px;
}
.compare-card-body {
    padding: 20px 28px 28px;
}
.compare-card-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 48px;
    font-weight: 900;
    color: #333;
    line-height: 1.1;
    margin-bottom: 20px;
}
.compare-card--unista .compare-card-price {
    color: #06C755;
    font-size: 56px;
}
.compare-card-price span {
    font-family: 'Arial', sans-serif;
    font-size: 13px;
    font-weight: 400;
    color: #999;
    display: block;
    margin-top: 4px;
}
.compare-card--other .compare-card-price {
    text-decoration: line-through;
    color: #aaa;
    font-size: 40px;
}
.compare-card-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px;
}
.compare-card-list li {
    padding: 10px 0;
    font-size: 14px;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding-left: 28px;
    position: relative;
    line-height: 1.5;
}
.compare-card-list li:last-child {
    border-bottom: none;
}
.compare-item--good::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: #06C755;
    font-weight: 900;
    font-size: 16px;
}
.compare-item--good {
    color: #333;
    font-weight: 600;
}
.compare-item--bad::before {
    content: '✕';
    position: absolute;
    left: 0;
    color: #ccc;
    font-weight: 900;
    font-size: 14px;
}
.compare-item--bad {
    color: #999;
}
.compare-card-total {
    background: #f5f5f5;
    border-radius: 12px;
    padding: 16px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.compare-card-total span {
    font-size: 12px;
    color: #999;
}
.compare-card-total strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    color: #333;
}
.compare-card--other .compare-card-total strong {
    text-decoration: line-through;
    color: #aaa;
}
.compare-card-total--green {
    background: rgba(6,199,85,0.08);
    border: 1px solid rgba(6,199,85,0.2);
}
.compare-card-total--green strong {
    color: #06C755 !important;
    font-size: 32px;
}

/* VS circle */
.compare-vs {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    z-index: 3;
    margin: 0 -24px;
    flex-shrink: 0;
}
.compare-vs-circle {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: #1a1a1a;
    color: #fff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}
.compare-save-badge {
    background: linear-gradient(135deg, #FF6B35, #FF3366);
    color: #fff;
    text-align: center;
    padding: 10px 14px;
    border-radius: 12px;
    font-size: 10px;
    line-height: 1.3;
    box-shadow: 0 4px 16px rgba(255,51,102,0.3);
    animation: pulse-badge 2s ease-in-out infinite;
    white-space: nowrap;
}
.compare-save-badge strong {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    display: block;
    line-height: 1;
}
@keyframes pulse-badge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

/* 詳細テーブル */
.compare-detail {
    max-width: 800px;
    margin: 0 auto;
    padding-top: 24px;
}
.compare-detail-title {
    font-size: 16px;
    font-weight: 700;
    color: #999;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: 1px;
    cursor: pointer;
}
.compare-detail-title::after {
    content: ' ▼';
    font-size: 10px;
}

/* === スマホ対応 === */
@media (max-width: 768px) {
    .compare-cards {
        flex-direction: column;
        gap: 16px;
        margin: 32px auto;
    }
    .compare-card--other {
        transform: scale(1);
        order: 2;
    }
    .compare-card--unista {
        order: 1;
    }
    .compare-vs {
        flex-direction: row;
        margin: -8px 0;
        order: 1;
        justify-content: center;
    }
    .compare-card--other { order: 2; }
    .compare-card--unista { order: 0; }
    .compare-vs { order: 1; }
    .compare-vs-circle {
        width: 44px;
        height: 44px;
        font-size: 18px;
    }
    .compare-save-badge {
        padding: 8px 12px;
        font-size: 10px;
    }
    .compare-save-badge strong {
        font-size: 24px;
    }
    .compare-card-price {
        font-size: 36px;
    }
    .compare-card--unista .compare-card-price {
        font-size: 44px;
    }
    .compare-card--other .compare-card-price {
        font-size: 32px;
    }
    .compare-card-body {
        padding: 16px 20px 20px;
    }
    .compare-card-header {
        padding: 20px 20px 0;
    }
    .compare-card-list li {
        font-size: 13px;
        padding: 8px 0 8px 24px;
    }
    .compare-card-ribbon {
        top: 12px;
        right: -36px;
        font-size: 10px;
        padding: 4px 40px;
    }
}

/* ============================================
   SPORT LP — セクション背景交互デザイン v2.2.5
   VOICE(白) → FLOW(黒) → FAQ(白) → CTA(グリーン)
   ============================================ */

/* --- VOICE: 白背景カードデザイン --- */
.testimonials-light {
    background: #f9f9f9 !important;
    padding: 80px 0 !important;
}
.testimonials-light .section-label {
    color: #06C755 !important;
}
.testimonials-light .section-title-sm {
    color: #222 !important;
}
.testimonials-light .testimonials-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.testimonials-light .testimonial-card {
    background: #fff !important;
    border-radius: 16px;
    padding: 32px;
    border: 1px solid #eee;
    box-shadow: 0 4px 20px rgba(0,0,0,0.04);
    position: relative;
}
.testimonials-light .testimonial-card::before {
    content: '"';
    font-family: Georgia, serif;
    font-size: 72px;
    color: #06C755;
    opacity: 0.15;
    position: absolute;
    top: 12px;
    left: 20px;
    line-height: 1;
}
.testimonials-light .testimonial-quote {
    color: #444 !important;
    opacity: 1 !important;
    font-size: 14px;
    line-height: 2;
    position: relative;
    z-index: 1;
}
.testimonials-light .testimonial-author {
    color: #222 !important;
    font-weight: 700;
}
.testimonials-light .testimonial-info {
    color: #999 !important;
    opacity: 1 !important;
}
/* 星レーティング風 */
.testimonials-light .testimonial-card::after {
    content: '★★★★★';
    display: block;
    color: #FFB800;
    font-size: 14px;
    letter-spacing: 2px;
    margin-top: 16px;
}

/* --- FLOW: 黒背景（改善） --- */
.flow-section {
    padding: 80px 0 !important;
}
.flow-steps {
    border-radius: 16px !important;
}
.flow-num {
    color: #06C755 !important;
    opacity: 0.3 !important;
}

/* --- FAQ: 白背景アコーディオン --- */
.faq-light {
    background: #fff !important;
    padding: 80px 0 !important;
}
.faq-light .section-label {
    color: #06C755 !important;
}
.faq-light .section-title-sm {
    color: #222 !important;
}
.faq-light .faq-list {
    max-width: 800px;
    margin: 0 auto;
}
.faq-light .faq-item {
    background: #f9f9f9 !important;
    border: 1px solid #eee !important;
    border-radius: 12px !important;
    padding: 24px 28px !important;
    margin-bottom: 12px;
    border-bottom: none !important;
    transition: all 0.3s;
}
.faq-light .faq-item:hover {
    border-color: #06C755 !important;
    box-shadow: 0 4px 16px rgba(6,199,85,0.08);
}
.faq-light .faq-q {
    color: #333 !important;
    font-size: 15px;
}
.faq-light .faq-q::before {
    content: 'Q' !important;
    background: #06C755 !important;
    color: #fff !important;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
}
.faq-light .faq-a {
    color: #555 !important;
    opacity: 1 !important;
    padding-left: 44px;
    border-top: 1px solid #eee;
    margin-top: 16px;
    padding-top: 16px;
}

/* --- CTA: グリーングラデーション --- */
.cta-green {
    background: linear-gradient(135deg, #059647 0%, #06C755 50%, #34D97B 100%) !important;
    padding: 80px 0 !important;
    position: relative;
    overflow: hidden;
}
.cta-green::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 140%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(255,255,255,0.08) 0%, transparent 60%);
    pointer-events: none;
}
.cta-green .cta-title {
    color: #fff !important;
    font-size: 32px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.cta-green .cta-desc {
    color: rgba(255,255,255,0.9) !important;
}
.cta-green .cta-btn {
    background: #fff !important;
    color: #06C755 !important;
    font-weight: 900;
    padding: 18px 48px;
    border-radius: 8px;
    font-size: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.cta-green .cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.2);
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    .testimonials-light {
        padding: 48px 0 !important;
    }
    .testimonials-light .testimonials-grid {
        grid-template-columns: 1fr !important;
        gap: 16px;
    }
    .testimonials-light .testimonial-card {
        padding: 24px 20px;
    }
    .testimonials-light .testimonial-card::before {
        font-size: 48px;
        top: 8px;
        left: 14px;
    }
    .faq-light {
        padding: 48px 0 !important;
    }
    .faq-light .faq-item {
        padding: 20px !important;
    }
    .faq-light .faq-q {
        font-size: 14px !important;
    }
    .faq-light .faq-a {
        padding-left: 0;
        font-size: 13px;
    }
    .cta-green {
        padding: 48px 0 !important;
    }
    .cta-green .cta-title {
        font-size: 22px;
    }
    .cta-green .cta-btn {
        padding: 16px 32px;
        font-size: 14px;
        width: 100%;
        max-width: 300px;
    }
}

/* ============================================
   BANNER CTA — 斜め切りデザイン
   ============================================ */
.banner-cta {
    padding: 0;
    margin: 0;
    overflow: hidden;
}
.banner-cta-inner {
    display: flex;
    min-height: 200px;
    position: relative;
}

/* 左側：ダーク + 背景 */
.banner-cta-left {
    flex: 1.2;
    background: #1a1a1a;
    position: relative;
    display: flex;
    align-items: center;
    padding: 48px 60px;
    overflow: hidden;
}
.banner-cta-left::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="30" r="2" fill="rgba(255,255,255,0.03)"/><circle cx="60" cy="70" r="3" fill="rgba(255,255,255,0.02)"/><circle cx="80" cy="20" r="1.5" fill="rgba(255,255,255,0.04)"/></svg>');
    pointer-events: none;
}
/* 斜めクリップ */
.banner-cta-left::after {
    content: '';
    position: absolute;
    top: 0;
    right: -60px;
    width: 120px;
    height: 100%;
    background: #06C755;
    transform: skewX(-8deg);
    z-index: 1;
}
.banner-cta-left-content {
    position: relative;
    z-index: 2;
}
.banner-cta-tag {
    display: inline-block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    color: #06C755;
    margin-bottom: 12px;
    padding: 4px 12px;
    border: 1px solid rgba(6,199,85,0.3);
    border-radius: 4px;
}
.banner-cta-headline {
    font-size: 26px;
    font-weight: 900;
    color: #fff;
    line-height: 1.5;
    margin-bottom: 8px;
}
.banner-cta-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.5px;
}

/* 右側：グリーン */
.banner-cta-right {
    flex: 0.8;
    background: #06C755;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 48px 40px;
    position: relative;
}
.banner-cta-right::before {
    content: '';
    position: absolute;
    top: 10%;
    left: 10%;
    right: 10%;
    bottom: 10%;
    border: 2px dashed rgba(255,255,255,0.2);
    border-radius: 12px;
    pointer-events: none;
}
.banner-cta-right-content {
    text-align: center;
    position: relative;
    z-index: 2;
}
.banner-cta-icon {
    font-size: 36px;
    margin-bottom: 8px;
}
.banner-cta-right-label {
    font-size: 13px;
    color: rgba(255,255,255,0.8);
    margin-bottom: 4px;
}
.banner-cta-right-title {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.banner-cta-arrow {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fff;
    color: #06C755;
    font-size: 24px;
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(0,0,0,0.15);
    transition: all 0.3s;
}
.banner-cta-arrow:hover {
    transform: scale(1.1) translateX(4px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* === スマホ === */
@media (max-width: 768px) {
    .banner-cta-inner {
        flex-direction: column;
        min-height: auto;
    }
    .banner-cta-left {
        padding: 32px 24px;
    }
    .banner-cta-left::after {
        top: auto;
        bottom: -30px;
        left: 0;
        right: 0;
        width: 100%;
        height: 60px;
        transform: skewY(-3deg);
    }
    .banner-cta-headline {
        font-size: 20px;
    }
    .banner-cta-sub {
        font-size: 12px;
    }
    .banner-cta-right {
        padding: 32px 24px;
    }
    .banner-cta-right::before {
        top: 6%;
        left: 6%;
        right: 6%;
        bottom: 6%;
    }
    .banner-cta-right-title {
        font-size: 20px;
    }
    .banner-cta-arrow {
        width: 44px;
        height: 44px;
        font-size: 20px;
    }
}

/* ============================================
   PRODUCT CATALOG CARD — 商品もカタログ風に
   ============================================ */
.design-card-info {
    padding: 12px 16px;
    border-top: 1px solid #f0f0f0;
    background: #fff;
}
.design-card-name {
    font-size: 13px;
    font-weight: 700;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.design-card-price {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    color: #06C755;
    line-height: 1.2;
}
.design-card-price span {
    font-family: 'Arial', sans-serif;
    font-size: 12px;
    color: #999;
}
.design-card-color {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    z-index: 2;
}

/* products-section白背景に */
.products-section {
    background: #fff !important;
    color: #333 !important;
}
.products-section .section-label {
    color: #06C755 !important;
}
.products-section .section-title-sm {
    color: #222 !important;
}

@media (max-width: 768px) {
    .design-card-info {
        padding: 10px 12px;
    }
    .design-card-name {
        font-size: 12px;
    }
    .design-card-price {
        font-size: 20px;
    }
}
@media (max-width: 480px) {
    .design-card-name {
        font-size: 11px;
    }
    .design-card-price {
        font-size: 18px;
    }
}

/* ============================================
   MODEL PHOTOS — ルックブック＆背景画像
   ============================================ */

/* --- LOOKBOOK セクション --- */
.lookbook-section {
    padding: 80px 0;
    background: #f5f5f5;
}
.lookbook-section .section-label {
    color: #06C755;
}
.lookbook-section .section-title-sm {
    color: #222;
}
.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
}
.lookbook-item {
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 3/4;
    position: relative;
}
.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s;
}
.lookbook-item:hover img {
    transform: scale(1.05);
}
/* 1枚目を大きく表示 */
.lookbook-grid .lookbook-item:first-child {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

@media (max-width: 768px) {
    .lookbook-section {
        padding: 48px 0;
    }
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    .lookbook-grid .lookbook-item:first-child {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16/9;
    }
    .lookbook-item {
        aspect-ratio: 1;
        border-radius: 8px;
    }
}

/* --- WHY CHOOSE US 背景画像 --- */
.reasons-has-bg {
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}
.reasons-has-bg::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(17, 17, 17, 0.85);
    z-index: 0;
}
.reasons-has-bg > .container {
    position: relative;
    z-index: 1;
}

/* --- バナーCTA 背景画像 --- */
.banner-has-bg {
    background-size: cover !important;
    background-position: center !important;
    position: relative;
}
.banner-has-bg::before {
    content: '' !important;
    position: absolute !important;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(26, 26, 26, 0.75) !important;
    z-index: 0 !important;
}
.banner-has-bg .banner-cta-left-content {
    position: relative;
    z-index: 2;
}
/* 斜め切りはそのまま維持 */
.banner-has-bg::after {
    z-index: 1 !important;
}

/* LOGO: moved to COMPREHENSIVE MOBILE FIX */

/* ============================================
   COMPREHENSIVE MOBILE FIX v2.3.7
   全スマホ問題の一括修正
   ============================================ */

/* LOGO: see final block */

/* --- 2. 価格比較VSカード：スマホ修正 --- */
@media (max-width: 768px) {
    .compare-cards {
        flex-direction: column !important;
        gap: 0 !important;
        max-width: 100% !important;
        margin: 24px auto !important;
    }
    .compare-card {
        border-radius: 16px !important;
        margin-bottom: 0 !important;
    }
    .compare-card--other {
        transform: none !important;
        opacity: 1 !important;
        order: 2 !important;
    }
    .compare-card--unista {
        order: 0 !important;
        margin-bottom: 0 !important;
    }
    .compare-vs {
        flex-direction: row !important;
        margin: -8px 0 !important;
        order: 1 !important;
        z-index: 5 !important;
        position: relative !important;
    }
    .compare-vs-circle {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .compare-save-badge {
        padding: 6px 10px !important;
        font-size: 9px !important;
        border-radius: 8px !important;
    }
    .compare-save-badge strong {
        font-size: 16px !important;
    }
    .compare-card-header {
        padding: 16px 20px 0 !important;
    }
    .compare-card-body {
        padding: 12px 20px 20px !important;
    }
    .compare-card-price {
        font-size: 32px !important;
    }
    .compare-card--unista .compare-card-price {
        font-size: 40px !important;
    }
    .compare-card--other .compare-card-price {
        font-size: 28px !important;
    }
    .compare-card-list li {
        font-size: 13px !important;
        padding: 8px 0 8px 24px !important;
    }
    .compare-card-total {
        padding: 12px 16px !important;
    }
    .compare-card-total strong {
        font-size: 22px !important;
    }
    .compare-card-ribbon {
        top: 10px !important;
        right: -34px !important;
        font-size: 9px !important;
        padding: 4px 36px !important;
    }
    .compare-detail {
        max-width: 100% !important;
    }
    .compare-detail-title {
        font-size: 14px !important;
    }
    .comparison-section {
        padding: 40px 0 !important;
    }
}

/* --- 3. バナーCTA：スマホ修正 --- */
@media (max-width: 768px) {
    .banner-cta {
        overflow: hidden !important;
    }
    .banner-cta-inner {
        flex-direction: column !important;
        min-height: auto !important;
    }
    .banner-cta-left {
        padding: 28px 20px !important;
        overflow: hidden !important;
    }
    .banner-cta-left::after {
        display: none !important;
    }
    .banner-cta-headline {
        font-size: 18px !important;
        line-height: 1.5 !important;
    }
    .banner-cta-tag {
        font-size: 10px !important;
        margin-bottom: 8px !important;
    }
    .banner-cta-sub {
        font-size: 11px !important;
    }
    .banner-cta-right {
        padding: 24px 20px !important;
    }
    .banner-cta-right::before {
        display: none !important;
    }
    .banner-cta-icon {
        font-size: 28px !important;
        margin-bottom: 4px !important;
    }
    .banner-cta-right-title {
        font-size: 18px !important;
        margin-bottom: 12px !important;
    }
    .banner-cta-right-label {
        font-size: 12px !important;
    }
    .banner-cta-arrow {
        width: 40px !important;
        height: 40px !important;
        font-size: 18px !important;
    }
}

/* --- 4. 商品カタログ：スマホ2列 --- */
@media (max-width: 768px) {
    .design-catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .design-card {
        border-radius: 8px !important;
    }
    .design-card-img {
        aspect-ratio: 1 !important;
        padding: 8px !important;
    }
    .design-card-info {
        padding: 8px 10px !important;
    }
    .design-card-name {
        font-size: 11px !important;
    }
    .design-card-price {
        font-size: 18px !important;
    }
    .design-number {
        font-size: 18px !important;
    }
    .products-section {
        padding: 40px 0 !important;
    }
}

/* --- 5. WHY CHOOSE US：灰色の帯を完全消去 --- */
@media (max-width: 768px) {
    .reasons-section {
        padding: 40px 0 !important;
    }
    .reasons-grid {
        background: transparent !important;
        gap: 0 !important;
        margin-top: 20px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    .reason-card {
        background: transparent !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 0 !important;
        padding: 24px 20px !important;
    }
    .reason-card:last-child {
        border-bottom: none !important;
    }
    .reason-card:hover {
        background: transparent !important;
    }
    .reason-num {
        font-size: 36px !important;
        margin-bottom: 4px !important;
        opacity: 0.15 !important;
    }
    .reason-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    .reason-desc {
        font-size: 13px !important;
        opacity: 0.6 !important;
    }
}

/* --- 6. トップページ appeal セクション --- */
@media (max-width: 768px) {
    .appeal-section {
        padding: 40px 0 !important;
    }
    .appeal-grid {
        grid-template-columns: 1fr !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        gap: 0 !important;
        background: transparent !important;
    }
    .appeal-card {
        padding: 24px 20px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        background: transparent !important;
        text-align: left !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .appeal-card:last-child {
        border-bottom: none !important;
    }
    .appeal-card:hover {
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    .appeal-num {
        font-size: 36px !important;
        margin-bottom: 4px !important;
    }
    .appeal-card .appeal-title {
        font-size: 16px !important;
        color: #fff !important;
    }
    .appeal-card .appeal-text {
        font-size: 13px !important;
        color: rgba(255,255,255,0.6) !important;
        margin-bottom: 12px !important;
    }
    .appeal-tags {
        gap: 6px !important;
    }
    .appeal-tag {
        font-size: 10px !important;
        padding: 3px 8px !important;
    }
}

/* --- 7. スマホヘッダーの余白修正 --- */
@media (max-width: 768px) {
    .header {
        padding: 12px 16px !important;
    }
    .header.scrolled {
        padding: 10px 16px !important;
    }
}

/* --- 8. 全セクション余白コンパクト化 --- */
@media (max-width: 768px) {
    section {
        overflow-x: hidden !important;
    }
    .gallery-section {
        padding: 40px 0 !important;
    }
    .flow-section {
        padding: 40px 0 !important;
    }
    .flow-steps {
        border-radius: 12px !important;
    }
    .flow-step {
        padding: 24px 16px !important;
        gap: 16px !important;
    }
    .flow-num {
        font-size: 32px !important;
        width: auto !important;
    }
    .flow-content h3 {
        font-size: 15px !important;
    }
    .flow-content p {
        font-size: 12px !important;
    }
}

/* ============================================
   FINAL MOBILE FIX v2.3.8 — ALL ISSUES
   This block is the SINGLE SOURCE OF TRUTH
   for all mobile overrides
   ============================================ */

/* --- LOGO (PC + Mobile) --- */
.logo {
    display: flex !important;
    align-items: center !important;
    text-decoration: none !important;
}
.logo-img {
    display: block !important;
    width: auto !important;
    height: 80px !important;
    max-height: 80px !important;
    object-fit: contain !important;
}
@media (max-width: 768px) {
    .logo-img {
        height: 32px !important;
        max-height: 32px !important;
        min-width: auto !important;
    }
    .header {
        padding: 12px 16px !important;
    }
    .header.scrolled {
        padding: 10px 16px !important;
    }
}

/* --- REASONS (WHY CHOOSE US) 灰色完全除去 --- */
@media (max-width: 768px) {
    .reasons-section {
        padding: 40px 0 !important;
    }
    .reasons-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        background: transparent !important;
        gap: 0 !important;
        margin-top: 20px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 12px !important;
        overflow: hidden !important;
    }
    .reason-card {
        background: transparent !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.1) !important;
        border-radius: 0 !important;
        padding: 24px 20px !important;
    }
    .reason-card:last-child {
        border-bottom: none !important;
    }
    .reason-card:hover {
        background: transparent !important;
    }
    .reason-num {
        font-size: 36px !important;
        margin-bottom: 4px !important;
    }
    .reason-title {
        font-size: 16px !important;
        margin-bottom: 8px !important;
    }
    .reason-desc {
        font-size: 13px !important;
    }
}

/* --- PRICE COMPARISON VSカード --- */
@media (max-width: 768px) {
    .comparison-section {
        padding: 40px 0 !important;
    }
    .compare-cards {
        flex-direction: column !important;
        gap: 0 !important;
        max-width: 100% !important;
        margin: 24px auto !important;
    }
    .compare-card {
        border-radius: 16px !important;
    }
    .compare-card--other {
        transform: none !important;
        opacity: 1 !important;
        order: 2 !important;
    }
    .compare-card--unista {
        order: 0 !important;
    }
    .compare-vs {
        flex-direction: row !important;
        margin: -8px 0 !important;
        order: 1 !important;
        z-index: 5 !important;
    }
    .compare-vs-circle {
        width: 40px !important;
        height: 40px !important;
        font-size: 16px !important;
    }
    .compare-save-badge {
        padding: 6px 10px !important;
        font-size: 9px !important;
    }
    .compare-save-badge strong {
        font-size: 16px !important;
    }
    .compare-card-header {
        padding: 16px 20px 0 !important;
    }
    .compare-card-body {
        padding: 12px 20px 20px !important;
    }
    .compare-card-price {
        font-size: 32px !important;
    }
    .compare-card--unista .compare-card-price {
        font-size: 40px !important;
    }
    .compare-card--other .compare-card-price {
        font-size: 28px !important;
    }
    .compare-card-list li {
        font-size: 13px !important;
        padding: 8px 0 8px 24px !important;
    }
    .compare-card-total strong {
        font-size: 22px !important;
    }
    .compare-card-ribbon {
        top: 10px !important;
        right: -34px !important;
        font-size: 9px !important;
    }
}

/* --- BANNER CTA --- */
@media (max-width: 768px) {
    .banner-cta-inner {
        flex-direction: column !important;
    }
    .banner-cta-left {
        padding: 28px 20px !important;
    }
    .banner-cta-left::after {
        display: none !important;
    }
    .banner-cta-headline {
        font-size: 18px !important;
    }
    .banner-cta-sub {
        font-size: 11px !important;
    }
    .banner-cta-right {
        padding: 24px 20px !important;
    }
    .banner-cta-right::before {
        display: none !important;
    }
    .banner-cta-right-title {
        font-size: 18px !important;
    }
    .banner-cta-arrow {
        width: 40px !important;
        height: 40px !important;
    }
}

/* --- PRODUCT CATALOG 2列 --- */
@media (max-width: 768px) {
    .design-catalog-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 10px !important;
    }
    .design-card-img {
        padding: 8px !important;
    }
    .design-card-name {
        font-size: 11px !important;
    }
    .design-card-price {
        font-size: 18px !important;
    }
    .design-number {
        font-size: 18px !important;
    }
    .products-section {
        padding: 40px 0 !important;
    }
}

/* --- APPEAL (トップページ) --- */
@media (max-width: 768px) {
    .appeal-section {
        padding: 40px 0 !important;
    }
    .appeal-grid {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        border-radius: 12px !important;
        border: 1px solid rgba(255,255,255,0.1) !important;
        background: transparent !important;
    }
    .appeal-card {
        padding: 24px 20px !important;
        border-right: none !important;
        border-bottom: 1px solid rgba(255,255,255,0.08) !important;
        background: transparent !important;
        border-radius: 0 !important;
        box-shadow: none !important;
    }
    .appeal-card:last-child {
        border-bottom: none !important;
    }
    .appeal-card:hover {
        transform: none !important;
        box-shadow: none !important;
        background: transparent !important;
    }
    .appeal-num {
        font-size: 36px !important;
    }
    .appeal-card .appeal-title {
        font-size: 16px !important;
    }
    .appeal-card .appeal-text {
        font-size: 13px !important;
    }
}

/* --- FLOW --- */
@media (max-width: 768px) {
    .flow-section {
        padding: 40px 0 !important;
    }
    .flow-step {
        padding: 24px 16px !important;
        gap: 16px !important;
    }
    .flow-num {
        font-size: 32px !important;
        width: auto !important;
    }
}

/* --- 全セクション overflow防止 --- */
@media (max-width: 768px) {
    section {
        overflow-x: hidden !important;
    }
}

/* ============================================
   v2.3.9 FIXES — 商品テキスト・選ばれる理由・比較表・フッター
   ============================================ */

/* --- 1. 商品カード：テキスト色を明示 --- */
.design-card-info {
    background: #fff !important;
}
.design-card-name {
    color: #333 !important;
}
.design-card-price {
    color: #06C755 !important;
}
.design-card-price span {
    color: #999 !important;
}

/* --- 2. WHY CHOOSE US：装飾強化 --- */
.reasons-section {
    position: relative !important;
}
.reasons-grid {
    margin-top: 40px !important;
}
.reason-card {
    position: relative !important;
}
.reason-num {
    color: #06C755 !important;
    opacity: 0.2 !important;
}
.reason-title {
    position: relative !important;
}
.reason-title::after {
    content: '';
    display: block;
    width: 40px;
    height: 3px;
    background: #06C755;
    margin-top: 12px;
    border-radius: 2px;
}
.reason-desc {
    color: rgba(255,255,255,0.6) !important;
    line-height: 1.9 !important;
}
@media (max-width: 768px) {
    .reason-title::after {
        width: 32px;
        height: 2px;
        margin-top: 8px;
    }
}

/* --- 3. 比較テーブル：フォント統一＋装飾 --- */
.compare-detail .comparison-table {
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.06) !important;
    border: 1px solid #eee !important;
}
.compare-detail .comparison-table th,
.compare-detail .comparison-table td {
    font-size: 14px !important;
    padding: 16px 14px !important;
    text-align: center !important;
    vertical-align: middle !important;
    border-bottom: 1px solid #f0f0f0 !important;
}
.compare-detail .comparison-table th {
    font-size: 13px !important;
    font-weight: 700 !important;
    background: #f8f8f8 !important;
    color: #666 !important;
}
.compare-detail .comparison-table th:nth-child(2) {
    background: #06C755 !important;
    color: #fff !important;
    font-size: 14px !important;
}
.compare-detail .comparison-table td:first-child {
    font-weight: 600 !important;
    color: #333 !important;
    text-align: left !important;
    font-size: 13px !important;
}
.compare-detail .comparison-table td:nth-child(2) {
    background: rgba(6,199,85,0.06) !important;
    color: #06C755 !important;
    font-weight: 700 !important;
    font-size: 15px !important;
}
.compare-detail .comparison-table td:nth-child(3),
.compare-detail .comparison-table td:nth-child(4) {
    color: #999 !important;
    font-size: 13px !important;
}
.compare-detail .comparison-table tbody tr:last-child td {
    border-bottom: none !important;
}
@media (max-width: 768px) {
    .compare-detail .comparison-table th,
    .compare-detail .comparison-table td {
        font-size: 12px !important;
        padding: 12px 8px !important;
    }
    .compare-detail .comparison-table td:nth-child(2) {
        font-size: 13px !important;
    }
    .compare-detail .comparison-table td:first-child {
        font-size: 11px !important;
    }
}

/* --- 4. フッター全面書き換え --- */
.site-footer {
    padding: 60px 0 40px;
    background: #1a1a1a;
    border-top: 1px solid #333;
}
.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 40px;
}
.footer-logo {
    font-size: 24px;
    font-weight: 900;
    color: #fff;
    text-decoration: none;
    display: block;
}
.footer-tagline {
    color: rgba(255,255,255,0.6);
    margin-top: 8px;
    font-size: 13px;
}
.footer-btns {
    margin-top: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-btn-outline {
    display: block;
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}
.footer-btn-outline:hover {
    border-color: #fff;
    background: rgba(255,255,255,0.05);
}
.footer-btn-green {
    display: block;
    background: #06C755;
    color: #fff;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    text-align: center;
    transition: all 0.3s;
}
.footer-btn-green:hover {
    background: #05b34c;
}
.footer-nav-col h4 {
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: 1px;
}
.footer-nav-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}
.footer-nav-col li {
    margin-bottom: 10px;
}
.footer-nav-col a {
    color: rgba(255,255,255,0.55);
    text-decoration: none;
    font-size: 13px;
    transition: color 0.3s;
}
.footer-nav-col a:hover {
    color: #fff;
}
.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #333;
    text-align: center;
}
.footer-copyright {
    color: rgba(255,255,255,0.35);
    font-size: 12px;
}

/* フッター スマホ */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 80px;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 32px 20px !important;
    }
    .footer-brand-col {
        grid-column: span 2;
    }
    .footer-btns {
        flex-direction: row;
    }
    .footer-btn-outline,
    .footer-btn-green {
        flex: 1;
        padding: 10px 12px;
        font-size: 12px;
    }
    .footer-nav-col h4 {
        font-size: 12px;
        margin-bottom: 12px;
    }
    .footer-nav-col a {
        font-size: 12px;
    }
    .footer-nav-col li {
        margin-bottom: 8px;
    }
    .footer-bottom {
        margin-top: 24px;
    }
}

/* ============================================
   v2.4.0 — PC FOOTER FIX + BLOG SETUP
   ============================================ */

/* PCフッター強制修正 */
.site-footer {
    padding: 60px 0 40px !important;
    background: #1a1a1a !important;
    border-top: 1px solid #333 !important;
}
.site-footer .container {
    max-width: 1200px !important;
}
.footer-main {
    display: grid !important;
    grid-template-columns: 1.2fr 1fr 1fr 1fr !important;
    gap: 40px !important;
}
.footer-nav-col ul {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
}
.footer-nav-col li {
    margin-bottom: 10px !important;
    list-style: none !important;
}
.footer-nav-col a {
    color: rgba(255,255,255,0.55) !important;
    text-decoration: none !important;
    font-size: 13px !important;
}
.footer-nav-col a:hover {
    color: #fff !important;
}
.footer-nav-col h4 {
    color: #fff !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    margin-bottom: 16px !important;
    letter-spacing: 1px !important;
}

/* スマホフッター */
@media (max-width: 768px) {
    .site-footer {
        padding: 40px 0 80px !important;
    }
    .footer-main {
        grid-template-columns: 1fr 1fr !important;
        gap: 28px 16px !important;
    }
    .footer-brand-col {
        grid-column: span 2 !important;
    }
    .footer-btns {
        flex-direction: row !important;
    }
    .footer-btn-outline,
    .footer-btn-green {
        flex: 1 !important;
        font-size: 12px !important;
    }
    .footer-nav-col h4 {
        font-size: 12px !important;
    }
    .footer-nav-col a {
        font-size: 12px !important;
    }
}

/* ============================================
   BLOG PREVIEW — トップページ最新記事
   ============================================ */
.blog-preview-section {
    padding: 80px 0;
    background: #111;
}
.blog-preview-section .section-label {
    color: #06C755;
}
.blog-preview-section .section-title {
    color: #fff;
}
.blog-preview-section .section-desc {
    color: rgba(255,255,255,0.5);
    text-align: center;
}
.blog-preview-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}
.blog-preview-card {
    background: #1a1a1a;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    border: 1px solid rgba(255,255,255,0.06);
    transition: all 0.3s;
}
.blog-preview-card:hover {
    transform: translateY(-4px);
    border-color: rgba(6,199,85,0.3);
    box-shadow: 0 12px 32px rgba(0,0,0,0.3);
}
.blog-preview-img {
    position: relative;
    aspect-ratio: 16/9;
    overflow: hidden;
    background: #222;
}
.blog-preview-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s;
}
.blog-preview-card:hover .blog-preview-img img {
    transform: scale(1.05);
}
.blog-preview-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 40px;
    background: #222;
}
.blog-preview-cat {
    position: absolute;
    top: 12px;
    left: 12px;
    background: #06C755;
    color: #fff;
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.blog-preview-body {
    padding: 20px;
}
.blog-preview-date {
    font-size: 11px;
    color: rgba(255,255,255,0.35);
    display: block;
    margin-bottom: 8px;
}
.blog-preview-title {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* スマホ */
@media (max-width: 768px) {
    .blog-preview-section {
        padding: 48px 0;
    }
    .blog-preview-grid {
        grid-template-columns: 1fr;
        gap: 16px;
        margin-top: 24px;
    }
    .blog-preview-body {
        padding: 16px;
    }
    .blog-preview-title {
        font-size: 14px;
    }
}

/* ============================================
   ESTIMATOR SECTION — リッチリデザイン
   ============================================ */
.estimator-section-new {
    padding: 80px 0;
    background: #111;
}
.estimator-card {
    display: flex;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    overflow: hidden;
}
.estimator-card-left {
    flex: 1;
    padding: 56px 48px;
    position: relative;
    background: linear-gradient(135deg, rgba(6,199,85,0.08) 0%, transparent 60%);
}
.estimator-icon {
    font-size: 40px;
    display: block;
    margin-bottom: 16px;
}
.estimator-label {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 13px;
    letter-spacing: 3px;
    color: #06C755;
    margin-bottom: 12px;
}
.estimator-heading {
    font-size: 36px;
    font-weight: 900;
    color: #fff;
    line-height: 1.4;
    margin-bottom: 16px;
}
.estimator-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    line-height: 1.8;
    margin-bottom: 28px;
}
.estimator-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #06C755;
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(6,199,85,0.25);
}
.estimator-btn:hover {
    background: #05b34c;
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(6,199,85,0.35);
}
.estimator-card-right {
    flex: 0.8;
    padding: 56px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    border-left: 1px solid rgba(255,255,255,0.06);
}
.estimator-steps {
    display: flex;
    flex-direction: column;
    gap: 24px;
}
.estimator-step {
    display: flex;
    align-items: flex-start;
    gap: 16px;
}
.estimator-step-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(6,199,85,0.12);
    color: #06C755;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 1px solid rgba(6,199,85,0.2);
}
.estimator-step-text strong {
    display: block;
    font-size: 15px;
    color: #fff;
    font-weight: 700;
    margin-bottom: 4px;
}
.estimator-step-text span {
    font-size: 12px;
    color: rgba(255,255,255,0.4);
}
.estimator-note {
    font-size: 11px;
    color: rgba(255,255,255,0.3);
    margin-top: 24px;
    padding-top: 16px;
    border-top: 1px solid rgba(255,255,255,0.06);
}

/* スマホ */
@media (max-width: 768px) {
    .estimator-section-new {
        padding: 48px 0;
    }
    .estimator-card {
        flex-direction: column;
        border-radius: 16px;
    }
    .estimator-card-left {
        padding: 32px 24px;
    }
    .estimator-icon {
        font-size: 32px;
        margin-bottom: 12px;
    }
    .estimator-heading {
        font-size: 26px;
    }
    .estimator-desc {
        font-size: 13px;
        margin-bottom: 20px;
    }
    .estimator-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 14px;
    }
    .estimator-card-right {
        padding: 24px;
        border-left: none;
        border-top: 1px solid rgba(255,255,255,0.06);
    }
    .estimator-steps {
        gap: 16px;
    }
    .estimator-step-num {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .estimator-step-text strong {
        font-size: 14px;
    }
}

/* --- Estimator: LINEボタン＋ボタン横並び --- */
.estimator-btns-row {
    display: flex;
    gap: 12px;
    align-items: center;
}
.estimator-btn-line {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: rgba(255,255,255,0.6);
    padding: 16px 24px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid rgba(255,255,255,0.15);
    transition: all 0.3s;
}
.estimator-btn-line:hover {
    color: #fff;
    border-color: rgba(255,255,255,0.4);
    background: rgba(255,255,255,0.05);
}
@media (max-width: 768px) {
    .estimator-btns-row {
        flex-direction: column;
        gap: 10px;
    }
    .estimator-btn-line {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
    }
}

/* ============================================
   BLOG POST — リッチコンテンツスタイル v2.4.4
   ============================================ */

/* --- 記事ヘッダー強化 --- */
.post-header {
    margin-bottom: 40px !important;
    text-align: left !important;
    padding-bottom: 32px !important;
    border-bottom: 1px solid #eee !important;
}
.post-category {
    background: #06C755 !important;
    color: #fff !important;
    font-size: 11px !important;
    padding: 5px 14px !important;
    border-radius: 4px !important;
    font-weight: 700 !important;
    letter-spacing: 0.5px !important;
    margin-bottom: 20px !important;
}
.post-title {
    font-size: 28px !important;
    line-height: 1.5 !important;
    color: #1a1a1a !important;
}
.post-date {
    color: #aaa !important;
    font-size: 13px !important;
}

/* --- H2: グリーンアクセント＋背景 --- */
.post-content h2 {
    font-size: 22px !important;
    font-weight: 900 !important;
    margin: 56px 0 24px !important;
    padding: 16px 20px 16px 24px !important;
    border-bottom: none !important;
    border-left: 4px solid #06C755 !important;
    background: linear-gradient(90deg, rgba(6,199,85,0.06) 0%, transparent 100%) !important;
    border-radius: 0 8px 8px 0 !important;
    color: #1a1a1a !important;
    line-height: 1.5 !important;
}

/* --- H3: ドット＋太字 --- */
.post-content h3 {
    font-size: 18px !important;
    font-weight: 800 !important;
    margin: 40px 0 16px !important;
    padding-left: 16px !important;
    position: relative !important;
    color: #333 !important;
}
.post-content h3::before {
    content: '' !important;
    position: absolute !important;
    left: 0 !important;
    top: 50% !important;
    transform: translateY(-50%) !important;
    width: 8px !important;
    height: 8px !important;
    background: #06C755 !important;
    border-radius: 50% !important;
}

/* --- 本文テキスト --- */
.post-content {
    font-size: 16px !important;
    line-height: 2 !important;
    color: #444 !important;
}
.post-content p {
    margin-bottom: 24px !important;
}
.post-content strong {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}

/* --- リスト: カスタムアイコン --- */
.post-content ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin: 20px 0 28px !important;
}
.post-content ul li {
    padding: 8px 0 8px 28px !important;
    position: relative !important;
    margin-bottom: 4px !important;
    line-height: 1.8 !important;
}
.post-content ul li::before {
    content: '✓' !important;
    position: absolute !important;
    left: 0 !important;
    color: #06C755 !important;
    font-weight: 900 !important;
    font-size: 14px !important;
}
.post-content ol {
    padding-left: 24px !important;
    margin: 20px 0 28px !important;
}
.post-content ol li {
    padding: 6px 0 !important;
    margin-bottom: 4px !important;
    line-height: 1.8 !important;
}
.post-content ol li::marker {
    color: #06C755 !important;
    font-weight: 700 !important;
}

/* --- テーブル: フルリデザイン --- */
.post-content table {
    width: 100% !important;
    border-collapse: separate !important;
    border-spacing: 0 !important;
    margin: 28px 0 32px !important;
    border-radius: 12px !important;
    overflow: hidden !important;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06) !important;
    border: 1px solid #e8e8e8 !important;
    font-size: 14px !important;
}
.post-content thead {
    background: #06C755 !important;
}
.post-content thead th {
    color: #fff !important;
    font-weight: 700 !important;
    padding: 14px 16px !important;
    text-align: center !important;
    font-size: 13px !important;
    letter-spacing: 0.3px !important;
    border: none !important;
}
.post-content thead th:first-child {
    text-align: left !important;
}
.post-content tbody td {
    padding: 14px 16px !important;
    text-align: center !important;
    border-bottom: 1px solid #f0f0f0 !important;
    color: #555 !important;
    vertical-align: middle !important;
}
.post-content tbody td:first-child {
    text-align: left !important;
    font-weight: 600 !important;
    color: #333 !important;
}
.post-content tbody tr:nth-child(even) {
    background: #fafafa !important;
}
.post-content tbody tr:hover {
    background: rgba(6,199,85,0.04) !important;
}
.post-content tbody tr:last-child td {
    border-bottom: none !important;
}
.post-content tbody td strong {
    color: #06C755 !important;
}

/* --- 引用ブロック --- */
.post-content blockquote {
    background: #f8faf9 !important;
    border-left: 4px solid #06C755 !important;
    padding: 24px 28px !important;
    margin: 28px 0 !important;
    border-radius: 0 12px 12px 0 !important;
    font-style: normal !important;
    color: #555 !important;
    position: relative !important;
}
.post-content blockquote::before {
    content: '"' !important;
    font-family: Georgia, serif !important;
    font-size: 48px !important;
    color: #06C755 !important;
    opacity: 0.2 !important;
    position: absolute !important;
    top: 8px !important;
    left: 16px !important;
    line-height: 1 !important;
}
.post-content blockquote p {
    margin-bottom: 0 !important;
    padding-left: 24px !important;
}

/* --- リンク --- */
.post-content a {
    color: #06C755 !important;
    text-decoration: none !important;
    border-bottom: 1px solid rgba(6,199,85,0.3) !important;
    transition: all 0.3s !important;
}
.post-content a:hover {
    border-bottom-color: #06C755 !important;
}

/* --- 画像 --- */
.post-content img {
    max-width: 100% !important;
    height: auto !important;
    border-radius: 12px !important;
    margin: 24px 0 !important;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08) !important;
}

/* --- 記事末尾CTA --- */
.post-content p:last-of-type {
    background: linear-gradient(135deg, rgba(6,199,85,0.06) 0%, rgba(6,199,85,0.02) 100%) !important;
    border: 1px solid rgba(6,199,85,0.15) !important;
    border-radius: 12px !important;
    padding: 20px 24px !important;
    font-size: 15px !important;
    line-height: 1.8 !important;
}

/* --- サイドバー関連記事 --- */
.related-posts {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid #eee;
}
.related-posts h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #333;
}

/* --- スマホ対応 --- */
@media (max-width: 768px) {
    .single-post-page {
        padding-top: 80px !important;
    }
    .post-title {
        font-size: 22px !important;
    }
    .post-content h2 {
        font-size: 18px !important;
        margin: 40px 0 20px !important;
        padding: 14px 16px 14px 20px !important;
    }
    .post-content h3 {
        font-size: 16px !important;
        margin: 32px 0 12px !important;
    }
    .post-content {
        font-size: 15px !important;
    }
    .post-content table {
        font-size: 12px !important;
        border-radius: 8px !important;
    }
    .post-content thead th {
        padding: 10px 8px !important;
        font-size: 11px !important;
    }
    .post-content tbody td {
        padding: 10px 8px !important;
        font-size: 12px !important;
    }
    .post-content blockquote {
        padding: 20px !important;
    }
    .post-content ul li {
        padding: 6px 0 6px 24px !important;
        font-size: 14px !important;
    }
    .post-content p:last-of-type {
        padding: 16px 18px !important;
        font-size: 14px !important;
    }
}

/* ============================================
   v2.4.5 — スマホ見積もり＋ブログテーブル修正
   ============================================ */

/* --- 見積もりカード: ベース強化 --- */
.estimator-section-new {
    padding: 80px 0 !important;
    background: #111 !important;
}
.estimator-card {
    display: flex !important;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%) !important;
    border: 1px solid rgba(255,255,255,0.08) !important;
    border-radius: 20px !important;
    overflow: hidden !important;
}
.estimator-card-left {
    flex: 1 !important;
    padding: 56px 48px !important;
    position: relative !important;
    background: linear-gradient(135deg, rgba(6,199,85,0.08) 0%, transparent 60%) !important;
}
.estimator-icon {
    font-size: 40px !important;
    display: block !important;
    margin-bottom: 16px !important;
}
.estimator-label {
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 13px !important;
    letter-spacing: 3px !important;
    color: #06C755 !important;
    margin-bottom: 12px !important;
}
.estimator-heading {
    font-size: 36px !important;
    font-weight: 900 !important;
    color: #fff !important;
    line-height: 1.4 !important;
    margin-bottom: 16px !important;
}
.estimator-desc {
    font-size: 14px !important;
    color: rgba(255,255,255,0.55) !important;
    line-height: 1.8 !important;
    margin-bottom: 28px !important;
}
.estimator-btn {
    display: inline-flex !important;
    align-items: center !important;
    background: #06C755 !important;
    color: #fff !important;
    padding: 16px 36px !important;
    border-radius: 8px !important;
    font-size: 15px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    box-shadow: 0 4px 20px rgba(6,199,85,0.25) !important;
}
.estimator-card-right {
    flex: 0.8 !important;
    padding: 56px 40px !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    border-left: 1px solid rgba(255,255,255,0.06) !important;
}
.estimator-steps {
    display: flex !important;
    flex-direction: column !important;
    gap: 24px !important;
}
.estimator-step {
    display: flex !important;
    align-items: flex-start !important;
    gap: 16px !important;
}
.estimator-step-num {
    width: 36px !important;
    height: 36px !important;
    min-width: 36px !important;
    border-radius: 50% !important;
    background: rgba(6,199,85,0.12) !important;
    color: #06C755 !important;
    font-family: 'Bebas Neue', sans-serif !important;
    font-size: 18px !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    border: 1px solid rgba(6,199,85,0.2) !important;
}
.estimator-step-text strong {
    display: block !important;
    font-size: 15px !important;
    color: #fff !important;
    font-weight: 700 !important;
    margin-bottom: 4px !important;
}
.estimator-step-text span {
    font-size: 12px !important;
    color: rgba(255,255,255,0.4) !important;
}
.estimator-note {
    font-size: 11px !important;
    color: rgba(255,255,255,0.3) !important;
    margin-top: 24px !important;
    padding-top: 16px !important;
    border-top: 1px solid rgba(255,255,255,0.06) !important;
}

/* --- 見積もりカード: スマホ --- */
@media (max-width: 768px) {
    .estimator-section-new {
        padding: 40px 0 !important;
    }
    .estimator-card {
        flex-direction: column !important;
        border-radius: 16px !important;
    }
    .estimator-card-left {
        padding: 28px 20px !important;
    }
    .estimator-icon {
        font-size: 28px !important;
    }
    .estimator-heading {
        font-size: 24px !important;
        margin-bottom: 12px !important;
    }
    .estimator-desc {
        font-size: 13px !important;
        margin-bottom: 20px !important;
    }
    .estimator-btn {
        width: 100% !important;
        justify-content: center !important;
        padding: 14px 20px !important;
        font-size: 14px !important;
    }
    .estimator-btn-line {
        width: 100% !important;
        justify-content: center !important;
    }
    .estimator-btns-row {
        flex-direction: column !important;
        gap: 10px !important;
    }
    .estimator-card-right {
        flex: none !important;
        padding: 24px 20px !important;
        border-left: none !important;
        border-top: 1px solid rgba(255,255,255,0.06) !important;
    }
    .estimator-steps {
        gap: 16px !important;
    }
    .estimator-step {
        gap: 12px !important;
    }
    .estimator-step-num {
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
        font-size: 15px !important;
    }
    .estimator-step-text strong {
        font-size: 14px !important;
    }
    .estimator-step-text span {
        font-size: 11px !important;
    }
}

/* --- ブログテーブル: スマホ横スクロール --- */
@media (max-width: 768px) {
    .post-content table {
        display: block !important;
        overflow-x: auto !important;
        -webkit-overflow-scrolling: touch !important;
        white-space: nowrap !important;
        border-radius: 8px !important;
        margin: 20px -16px !important;
        width: calc(100% + 32px) !important;
    }
    .post-content thead,
    .post-content tbody,
    .post-content tr {
        white-space: nowrap !important;
    }
    .post-content thead th,
    .post-content tbody td {
        white-space: nowrap !important;
        padding: 10px 14px !important;
        font-size: 13px !important;
    }
    .post-content thead th {
        font-size: 12px !important;
    }
}

/* ============================================
   PRODUCT GALLERY — 最大10枚対応
   ============================================ */
.product-thumbnails {
    display: flex !important;
    gap: 8px !important;
    margin-top: 12px !important;
    overflow-x: auto !important;
    -webkit-overflow-scrolling: touch !important;
    padding-bottom: 4px !important;
}
.product-thumb {
    width: 64px !important;
    height: 64px !important;
    min-width: 64px !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    border: 2px solid transparent !important;
    transition: all 0.2s !important;
    opacity: 0.6 !important;
}
.product-thumb.active {
    border-color: #06C755 !important;
    opacity: 1 !important;
}
.product-thumb:hover {
    opacity: 1 !important;
}
.product-thumb img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}
@media (max-width: 768px) {
    .product-thumb {
        width: 56px !important;
        height: 56px !important;
        min-width: 56px !important;
    }
}

/* ============================================
   v2.4.9 — チーム名入力位置UP＋テキスト黒枠線
   ============================================ */

/* チーム名入力を商品ヘッダー内に */
.team-name-inline {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid #eee;
}
.team-name-inline .form-label {
    font-size: 13px !important;
    color: #06C755 !important;
    font-weight: 600 !important;
    margin-bottom: 8px !important;
}
.team-name-inline .form-input {
    font-size: 16px !important;
    padding: 12px 16px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    transition: border-color 0.3s !important;
}
.team-name-inline .form-input:focus {
    border-color: #06C755 !important;
    outline: none !important;
}

/* チーム名オーバーレイ：黒枠線（text-stroke） */
#team-name-preview {
    font-size: 32px !important;
    color: #fff !important;
    text-shadow: none !important;
    -webkit-text-stroke: 2px #000 !important;
    paint-order: stroke fill !important;
    letter-spacing: 2px !important;
}
@media (max-width: 600px) {
    #team-name-preview {
        font-size: 24px !important;
        -webkit-text-stroke: 1.5px #000 !important;
    }
}

/* --- チーム名オーバーレイ：位置を胸元（上寄り）に --- */
.team-name-overlay {
    top: 35% !important;
}
