/* ==========================================================================
   Sub Pages (flow.html / pricing.html) - Specific Styles
   ========================================================================== */

/* Flow Page
   ------------------------------------------------ */
.flow-detail-list {
  margin-top: 80px;
}
.flow-detail-item {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 64px;
  padding: 80px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  align-items: start;
}
.flow-detail-item:last-child { border-bottom: 1px solid rgba(0,0,0,0.1); }

.flow-detail-num {
  position: sticky;
  top: 120px;
}
.flow-detail-num .num {
  font-family: 'Archivo', sans-serif;
  font-size: 96px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  display: block;
}
.flow-detail-num .label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  margin-top: 12px;
  display: block;
  color: #999;
}

.flow-detail-content h2 {
  font-size: 36px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  line-height: 1.3;
}
.flow-detail-tags {
  display: flex;
  gap: 8px;
  margin-bottom: 32px;
  flex-wrap: wrap;
}
.flow-detail-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  padding: 6px 14px;
  border: 1px solid #0a0a0a;
  display: inline-block;
}
.flow-detail-tag.solid {
  background: #0a0a0a;
  color: #fff;
}
.flow-detail-tag.free {
  background: transparent;
}
.flow-detail-content > p {
  font-size: 16px;
  line-height: 2;
  color: #333;
  margin-bottom: 32px;
}
.flow-detail-list-points {
  background: #f5f5f5;
  padding: 32px;
  margin-bottom: 32px;
}
.flow-detail-list-points h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 16px;
  color: #666;
}
.flow-detail-list-points ul li {
  font-size: 14px;
  line-height: 1.9;
  padding: 8px 0 8px 24px;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
}
.flow-detail-list-points ul li:last-child { border-bottom: none; }
.flow-detail-list-points ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 18px;
  width: 12px; height: 1px;
  background: #0a0a0a;
}
.flow-detail-rule {
  border-left: 2px solid #0a0a0a;
  padding: 4px 24px;
  margin-bottom: 16px;
  font-size: 14px;
  line-height: 1.9;
}
.flow-detail-rule strong { font-weight: 700; }

@media (max-width: 900px) {
  .flow-detail-item {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 48px 0;
  }
  .flow-detail-num { position: static; }
  .flow-detail-num .num { font-size: 56px; }
  .flow-detail-content h2 { font-size: 24px; line-height: 1.4; }
  .flow-detail-rule { font-size: 13px; line-height: 1.85; padding: 4px 18px; }
  .flow-detail-list { margin-top: 56px; }
}
@media (max-width: 480px) {
  .flow-detail-item { padding: 36px 0; }
  .flow-detail-num .num { font-size: 44px; }
  .flow-detail-content h2 { font-size: 20px; }
}

/* Pricing Page
   ------------------------------------------------ */
.pricing-hero-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.1);
  border: 1px solid rgba(0,0,0,0.1);
  margin-top: 80px;
}
.pricing-hero-summary-item {
  background: #fff;
  padding: 32px 24px;
  text-align: center;
}
.pricing-hero-summary-item .label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 8px;
}
.pricing-hero-summary-item .value {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.pricing-detail-block {
  padding: 56px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
}
.pricing-detail-block:first-of-type { border-top: none; }

/* === 3プラン横並び比較カード ============================================ */
.pricing-compare-block {
  padding: 80px 0 100px;
}
.pricing-compare-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: stretch;
}
.pricing-card {
  position: relative;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.12);
  padding: 36px 28px 32px;
  display: flex;
  flex-direction: column;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.pricing-card:hover {
  transform: translateY(-4px);
  border-color: rgba(0,0,0,0.3);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}
.pricing-card-featured {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.pricing-card-featured:hover {
  border-color: #0a0a0a;
  box-shadow: 0 16px 40px rgba(0,0,0,0.18);
}
.pricing-card-badge {
  position: absolute;
  top: -10px;
  right: 24px;
  background: #fff;
  color: #0a0a0a;
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  padding: 6px 12px;
  border: 1px solid #0a0a0a;
}

.pricing-card-head {
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing-card-featured .pricing-card-head {
  border-bottom-color: rgba(255,255,255,0.15);
}
.pricing-card-name {
  font-family: 'Archivo', sans-serif;
  font-size: 36px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin: 0 0 8px;
}
.pricing-card-jp {
  font-size: 13px;
  font-weight: 600;
  opacity: 0.75;
  line-height: 1.5;
}

.pricing-card-price {
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing-card-featured .pricing-card-price {
  border-bottom-color: rgba(255,255,255,0.15);
}
.pricing-card-price-label {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.6;
  margin-bottom: 8px;
}
.pricing-card-price-value {
  font-family: 'Archivo', sans-serif;
  font-size: 40px;
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 6px;
}
.pricing-card-price-value .tilde {
  font-size: 20px;
  font-weight: 500;
  margin-left: 3px;
}
.pricing-card-price-note {
  font-size: 11px;
  opacity: 0.6;
}

/* 内訳リスト */
.pricing-card-breakdown {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
}
.pricing-card-breakdown li {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(0,0,0,0.1);
  gap: 12px;
}
.pricing-card-featured .pricing-card-breakdown li {
  border-bottom-color: rgba(255,255,255,0.12);
}
.pricing-card-breakdown li:last-child { border-bottom: none; }
.pricing-card-breakdown .label {
  font-size: 12px;
  font-weight: 600;
  opacity: 0.75;
}
.pricing-card-breakdown .label small {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 2px;
}
.pricing-card-breakdown .value {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: -0.01em;
  text-align: right;
  white-space: nowrap;
}
.pricing-card-breakdown .value .sep {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.7;
  margin: 0 1px;
}
.pricing-card-none {
  opacity: 0.5;
  font-weight: 500 !important;
}

/* SUITED FOR */
.pricing-card-suited {
  margin-bottom: 24px;
  flex: 1;
}
.pricing-card-suited h4 {
  font-family: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  margin: 0 0 12px;
  opacity: 0.6;
}
.pricing-card-suited ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.pricing-card-suited li {
  position: relative;
  padding: 6px 0 6px 14px;
  font-size: 12.5px;
  line-height: 1.55;
}
.pricing-card-suited li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 1px;
  background: currentColor;
  opacity: 0.6;
}

/* CTAボタン */
.pricing-card-cta {
  margin-top: auto;
}
.pricing-card-cta .btn {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 12px;
  padding: 14px 16px;
}
.pricing-card-featured .pricing-card-cta .btn {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.pricing-card-featured .pricing-card-cta .btn:hover {
  background: transparent;
  color: #fff;
}
.pricing-card .btn-outline {
  background: transparent;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
}
.pricing-card .btn-outline:hover {
  background: #0a0a0a;
  color: #fff;
}

/* 全プラン共通スペック表 */
.pricing-common-spec {
  margin-top: 56px;
  padding: 36px 40px;
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.08);
}
.pricing-common-spec-title {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.05em;
  margin: 0 0 20px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}
.pricing-common-spec-list {
  display: grid;
  grid-template-columns: 140px 1fr;
  row-gap: 0;
  column-gap: 24px;
  margin: 0;
}
.pricing-common-spec-list dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 12px;
  font-weight: 600;
  color: #666;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-self: center;
}
.pricing-common-spec-list dd {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  padding: 14px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-self: center;
  line-height: 1.6;
}
.pricing-common-spec-list dt:last-of-type,
.pricing-common-spec-list dd:last-of-type {
  border-bottom: none;
}
.pricing-common-spec-list dd small {
  display: inline;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  margin-left: 4px;
}
.pricing-common-spec-list dd strong {
  font-weight: 700;
}

/* レスポンシブ：3カラム比較カード */
@media (max-width: 960px) {
  .pricing-compare-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    max-width: 480px;
    margin: 0 auto;
  }
  .pricing-card {
    padding: 32px 24px 28px;
  }
  .pricing-common-spec-list {
    grid-template-columns: 110px 1fr;
    column-gap: 16px;
  }
}
@media (max-width: 600px) {
  .pricing-compare-block {
    padding: 56px 0 80px;
  }
  .pricing-card-name {
    font-size: 32px;
  }
  .pricing-card-price-value {
    font-size: 36px;
  }
  .pricing-common-spec {
    padding: 24px 20px;
  }
}

/* === 旧レイアウト用（下位互換） ===================================== */
.pricing-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.pricing-plan-header {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.4fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 28px;
}
.pricing-plan-header-text {
  padding-bottom: 8px;
}
.pricing-detail-bottom {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 48px;
  align-items: start;
  margin-top: 28px;
}
.pricing-plan-cta {
  margin-top: 32px;
  text-align: center;
}
.pricing-plan-name {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(56px, 7vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
  margin-bottom: 0;
}
.pricing-plan-jp {
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 12px;
}
.pricing-plan-price-large {
  font-size: 56px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.pricing-plan-price-large .yen { font-size: 18px; font-weight: 500; margin-left: 4px; }
.pricing-plan-price-large .pricing-plan-plus-mfg {
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #0a0a0a;
  background: #f0f0f0;
  padding: 6px 12px;
  margin-left: 8px;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 2px;
}
@media (max-width: 768px) {
  .pricing-plan-price-large .pricing-plan-plus-mfg {
    display: inline-block;
    margin-left: 0;
    margin-top: 12px;
    font-size: 14px;
    padding: 5px 10px;
  }
}
.pricing-plan-tax {
  font-size: 13px;
  color: #888;
  margin-bottom: 32px;
  line-height: 1.7;
}
.pricing-lead-1line {
  max-width: 100% !important;
  font-size: 15px;
}
@media (max-width: 900px) {
  .pricing-lead-1line {
    font-size: 14px;
    line-height: 1.9;
  }
}
.pricing-plan-spec {
  margin-bottom: 32px;
}
.pricing-plan-spec dt {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #999;
  margin-top: 24px;
}
.pricing-plan-spec dt:first-child { margin-top: 0; }
.pricing-plan-spec dd {
  font-size: 16px;
  font-weight: 600;
  margin-top: 4px;
}

/* === Hero型 価格カード（pricing.html 各プラン上部） ===================== */
.pricing-hero-card {
  background: #0a0a0a;
  color: #fff;
  padding: 32px 36px;
  margin-bottom: 0;
  border-radius: 2px;
}
.pricing-hero-card-light {
  background: #fff;
  color: #0a0a0a;
  border: 1px solid #0a0a0a;
}

/* === フルワイド横長レイアウト（総額 + 内訳3項目 横並び） ===================== */
.pricing-hero-card-wide {
  display: grid;
  grid-template-columns: minmax(280px, 1fr) 1.6fr;
  gap: 48px;
  align-items: center;
}
.pricing-hero-total {
  border-right: 1px solid rgba(255,255,255,0.15);
  padding-right: 48px;
}
.pricing-hero-card-light .pricing-hero-total {
  border-right-color: rgba(0,0,0,0.1);
}

.pricing-hero-label {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  opacity: 0.7;
  margin-bottom: 10px;
  text-transform: uppercase;
}
.pricing-hero-price {
  font-family: 'Archivo', sans-serif;
  font-size: 52px;
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 10px;
}
.pricing-hero-price .tilde {
  font-size: 26px;
  font-weight: 500;
  margin-left: 4px;
  letter-spacing: 0;
}
.pricing-hero-note {
  font-size: 11px;
  line-height: 1.6;
  opacity: 0.6;
  margin: 0;
}
.pricing-hero-card-light .pricing-hero-note {
  opacity: 0.7;
}
.pricing-hero-breakdown {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.pricing-hero-breakdown-wide {
  gap: 24px;
}
.pricing-hero-breakdown-item {
  min-width: 0;
}
.pricing-hero-breakdown-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  opacity: 0.7;
  margin-bottom: 6px;
  white-space: nowrap;
}
.pricing-hero-breakdown-label .memo {
  font-size: 10px;
  font-weight: 400;
  opacity: 0.7;
  margin-left: 1px;
}
.pricing-hero-breakdown-value {
  font-family: 'Archivo', sans-serif;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.pricing-hero-breakdown-value .sep {
  font-size: 13px;
  font-weight: 400;
  margin: 0 2px;
  opacity: 0.7;
}
.pricing-hero-breakdown-none {
  opacity: 0.5;
  font-weight: 500;
}

/* === インライン定義リスト（横並びスペック） ============================ */
.pricing-plan-spec-inline {
  display: grid;
  grid-template-columns: 96px 1fr;
  row-gap: 0;
  column-gap: 16px;
  border-top: 1px solid rgba(0,0,0,0.08);
  margin-bottom: 0;
}
.pricing-plan-spec-inline dt {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: #888;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-self: center;
}
.pricing-plan-spec-inline dd {
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0,0,0,0.06);
  align-self: center;
  line-height: 1.5;
}
.pricing-plan-spec-inline dd small {
  display: inline;
  font-size: 11px;
  font-weight: 400;
  color: #999;
  margin-left: 4px;
}
.pricing-plan-spec-inline dd strong {
  font-weight: 700;
}

/* === レスポンシブ ===================================================== */
@media (max-width: 960px) {
  .pricing-plan-header {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: start;
  }
  .pricing-plan-header-text {
    padding-bottom: 0;
  }
  .pricing-hero-card-wide {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .pricing-hero-total {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.15);
    padding-right: 0;
    padding-bottom: 24px;
  }
  .pricing-hero-card-light .pricing-hero-total {
    border-bottom-color: rgba(0,0,0,0.1);
  }
  .pricing-detail-bottom {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
@media (max-width: 768px) {
  .pricing-hero-card {
    padding: 24px 22px;
  }
  .pricing-hero-price {
    font-size: 42px;
  }
  .pricing-hero-price .tilde {
    font-size: 22px;
  }
  .pricing-hero-breakdown {
    grid-template-columns: 1fr;
    gap: 14px;
  }
  .pricing-hero-breakdown-item {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
  }
  .pricing-hero-card-light .pricing-hero-breakdown-item {
    border-bottom-color: rgba(0,0,0,0.08);
  }
  .pricing-hero-breakdown-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }
  .pricing-hero-breakdown-label {
    margin-bottom: 0;
  }
  .pricing-plan-spec-inline {
    grid-template-columns: 90px 1fr;
    column-gap: 16px;
  }
  .pricing-plan-spec-inline dt,
  .pricing-plan-spec-inline dd {
    padding: 12px 0;
    font-size: 13px;
  }
}
/* 造形費サンプル枠（pricing.html SUITED FOR の後に配置 / 製品サンプル写真と金額を後から差し込み）
   ------------------------------------------------ */
.mfg-sample-detail {
  margin-top: 24px;
  padding: 28px 28px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.1);
  border-top: 3px solid #0a0a0a;
}
.mfg-sample-detail-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  gap: 12px;
}
.mfg-sample-detail-head h4 {
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.4;
  margin: 0;
}
.mfg-sample-detail-head h4 small {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: #999;
  margin-bottom: 6px;
  text-transform: uppercase;
}
.mfg-sample-detail-head .tag {
  font-size: 10px;
  letter-spacing: 0.15em;
  padding: 6px 12px;
  background: #0a0a0a;
  color: #fff;
  font-weight: 700;
  flex-shrink: 0;
  align-self: flex-start;
  margin-top: 4px;
}
.mfg-sample-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.mfg-sample-card {
  background: #fafafa;
  border: 1px solid rgba(0,0,0,0.06);
  padding: 14px 12px 16px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.mfg-sample-card .img-placeholder {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, #ececec 0%, #e0e0e0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 9px;
  color: #999;
  letter-spacing: 0.15em;
  font-family: 'Archivo', sans-serif;
  font-weight: 600;
  margin-bottom: 4px;
}
.mfg-sample-card .name {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  line-height: 1.4;
  color: #1a1a1a;
}
.mfg-sample-card .price {
  font-family: 'Archivo', sans-serif;
  font-size: 14px;
  font-weight: 700;
  color: #0a0a0a;
  letter-spacing: 0.02em;
}
.mfg-sample-card .price small {
  font-size: 10px;
  font-weight: 500;
  color: #888;
  margin-left: 2px;
}
.mfg-sample-detail-note {
  margin-top: 16px;
  font-size: 11px;
  color: #888;
  line-height: 1.7;
  padding-top: 14px;
  border-top: 1px dashed rgba(0,0,0,0.08);
}
@media (max-width: 768px) {
  .mfg-sample-detail { padding: 20px 18px; margin-top: 20px; }
  .mfg-sample-detail-head { gap: 8px; }
  .mfg-sample-detail-head h4 { font-size: 13px; }
  .mfg-sample-detail-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .mfg-sample-card { padding: 10px 8px 12px; }
  .mfg-sample-card .name { font-size: 11px; }
  .mfg-sample-card .price { font-size: 12.5px; }
  .mfg-sample-detail-note { font-size: 10.5px; line-height: 1.65; padding-top: 12px; }
}
@media (max-width: 480px) {
  .mfg-sample-detail-grid { grid-template-columns: 1fr 1fr; gap: 6px; }
  .mfg-sample-detail { padding: 16px 14px; }
}

.pricing-plan-examples {
  background: #f5f5f5;
  padding: 22px 24px;
  margin-bottom: 20px;
}
.pricing-plan-examples h4 {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  color: #666;
}
.pricing-plan-examples ul li {
  padding: 7px 0 7px 18px;
  font-size: 13px;
  line-height: 1.6;
  position: relative;
  border-bottom: 1px dashed rgba(0,0,0,0.15);
}
.pricing-plan-examples ul li:last-child { border-bottom: none; }
.pricing-plan-desc {
  font-size: 13.5px;
  line-height: 1.85;
  margin-bottom: 0;
}
.pricing-plan-examples ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 10px; height: 1px;
  background: #0a0a0a;
}

.pricing-locked {
  background: #0a0a0a;
  color: #fff;
  padding: 80px 64px;
  margin-top: 0;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 64px;
  align-items: center;
}
.pricing-locked-name {
  font-family: 'Archivo', sans-serif;
  font-size: clamp(56px, 9vw, 96px);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 0.9;
}
.pricing-locked-name .small {
  display: block;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.15em;
  margin-top: 16px;
  color: rgba(255,255,255,0.6);
}
.pricing-locked-content h3 {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 16px;
  line-height: 1.4;
}
.pricing-locked-content p {
  font-size: 14px;
  line-height: 1.95;
  color: rgba(255,255,255,0.75);
  margin-bottom: 24px;
}
.pricing-locked-content .btn {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.pricing-locked-content .btn:hover { background: transparent; color: #fff; }

.pricing-options {
  padding: 100px 0;
  background: #f5f5f5;
}
.pricing-options-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 64px;
}
.pricing-option-item {
  background: #fff;
  padding: 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}
.pricing-option-item h4 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 4px;
}
.pricing-option-item p {
  font-size: 13px;
  color: #666;
  line-height: 1.7;
}
.pricing-option-price {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  white-space: nowrap;
}
.pricing-option-price .yen { font-size: 12px; }
.pricing-option-price-from {
  display: block;
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0;
  color: #666;
  margin-top: 6px;
  line-height: 1.4;
}

.pricing-notes {
  padding: 80px 0;
}
.pricing-notes-list {
  margin-top: 48px;
}
.pricing-notes-list li {
  padding: 20px 0 20px 32px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  font-size: 14px;
  line-height: 1.9;
  position: relative;
}
.pricing-notes-list li::before {
  content: '※';
  position: absolute;
  left: 0; top: 20px;
  font-weight: 600;
}

@media (max-width: 900px) {
  .pricing-hero-summary { grid-template-columns: 1fr; margin-top: 40px; }
  .pricing-hero-summary-item { padding: 24px 20px; }
  .pricing-detail-grid { grid-template-columns: 1fr; gap: 40px; }
  .pricing-locked {
    grid-template-columns: 1fr;
    gap: 28px;
    padding: 48px 28px;
  }
  .pricing-options-list { grid-template-columns: 1fr; gap: 16px; margin-top: 40px; }
  .pricing-option-item { flex-direction: column; align-items: flex-start; padding: 28px 24px; gap: 16px; }
  .pricing-detail-block { padding: 64px 0; }
}
@media (max-width: 768px) {
  .pricing-plan-name { font-size: clamp(56px, 18vw, 80px); margin-bottom: 18px; }
  .pricing-plan-jp { font-size: 16px; margin-bottom: 24px; }
  .pricing-plan-price-large { font-size: 36px !important; line-height: 1.1; }
  .pricing-plan-tax { font-size: 12px; line-height: 1.7; margin-bottom: 24px; }
  .pricing-plan-spec dt { font-size: 10px; margin-top: 18px; }
  .pricing-plan-spec dd { font-size: 14px; }
  .pricing-plan-desc { font-size: 13.5px; line-height: 1.95; margin-bottom: 32px; }
  .pricing-plan-examples { padding: 24px 20px; }
  .pricing-plan-examples h4 { font-size: 11px; margin-bottom: 12px; }
  .pricing-plan-examples ul li { font-size: 13px; padding: 8px 0 8px 18px; line-height: 1.65; }
  .pricing-locked-name { font-size: clamp(44px, 13vw, 64px); }
  .pricing-locked-content h3 { font-size: 19px; margin-bottom: 14px; }
  .pricing-locked-content p { font-size: 13px; line-height: 1.85; }
  .pricing-option-item h4 { font-size: 16px; }
  .pricing-option-item p { font-size: 12px; line-height: 1.7; }
  .pricing-option-price { font-size: 22px; }
  .pricing-notes { padding: 56px 0; }
  .pricing-notes-list { margin-top: 32px; }
  .pricing-notes-list li { font-size: 13px; line-height: 1.85; padding: 16px 0 16px 26px; }
  .pricing-hero-summary-item .value { font-size: 19px; }
  .pricing-detail-block { padding: 56px 0; }
}
@media (max-width: 480px) {
  .pricing-detail-block { padding: 48px 0; }
  .pricing-locked { padding: 36px 20px; }
  .pricing-plan-price-large { font-size: 30px !important; }
}

/* ==========================================================================
   Page Hero (sub pages)
   ========================================================================== */
.page-hero {
  padding: 160px 0 80px;
  background: #fff;
}
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 32px;
}
.breadcrumb a {
  color: #0a0a0a;
  text-decoration: none;
}
.breadcrumb a:hover { text-decoration: underline; }
.page-hero h1 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(32px, 5vw, 56px);
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
  color: #1a1a1a;
}
.page-hero h1 .en {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(56px, 10vw, 128px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  color: #0a0a0a;
  margin-bottom: 16px;
}
.page-hero .lead {
  font-size: 15px;
  line-height: 2;
  color: #444;
  max-width: 720px;
}
@media (max-width: 768px) {
  .page-hero { padding: 110px 0 56px; }
  .page-hero h1 { font-size: clamp(22px, 5.5vw, 32px); margin-bottom: 24px; line-height: 1.4; }
  .page-hero h1 .en { font-size: clamp(48px, 13vw, 72px); margin-bottom: 10px; }
  .page-hero .lead { font-size: 13.5px; line-height: 1.95; }
  .breadcrumb { margin-bottom: 20px; font-size: 10px; gap: 8px; flex-wrap: wrap; }
}
@media (max-width: 480px) {
  .page-hero { padding: 96px 0 44px; }
  .page-hero h1 { font-size: 20px; }
  .page-hero h1 .en { font-size: 42px; }
  .page-hero .lead { font-size: 13px; line-height: 1.9; }
}

/* ==========================================================================
   CTA Banner (sub pages)
   ========================================================================== */
.cta-banner {
  background: #0a0a0a;
  color: #fff;
  padding: 120px 0;
  text-align: center;
}
.cta-banner h2 {
  font-family: 'Noto Sans JP', sans-serif;
  font-size: clamp(28px, 4.4vw, 48px);
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin-bottom: 32px;
}
.cta-banner h2 .en {
  display: block;
  font-family: 'Archivo', sans-serif;
  font-size: clamp(56px, 9vw, 112px);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.04em;
  margin-bottom: 24px;
}
.cta-banner p {
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  line-height: 2;
  max-width: 640px;
  margin: 0 auto 48px;
}
.cta-banner .btn {
  background: #fff;
  color: #0a0a0a;
  border-color: #fff;
}
.cta-banner .btn:hover {
  background: transparent;
  color: #fff;
}
@media (max-width: 768px) {
  .cta-banner { padding: 80px 0; }
  .cta-banner h2 { margin-bottom: 24px; }
  .cta-banner h2 .en { font-size: clamp(40px, 11vw, 64px); margin-bottom: 14px; }
  .cta-banner p { font-size: 13.5px; line-height: 1.95; margin-bottom: 32px; }
}
@media (max-width: 480px) {
  .cta-banner { padding: 64px 0; }
  .cta-banner p { font-size: 13px; }
}

/* ==========================================================================
   About Page
   ========================================================================== */
.about-section {
  padding: 100px 0;
  background: #fff;
}
.about-section-gray {
  background: #fafafa;
}
.about-h2 {
  font-size: clamp(26px, 3.4vw, 40px);
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.02em;
  margin-top: 16px;
  margin-bottom: 32px;
  color: #0a0a0a;
}

/* Brand logo image (about-h2の代替) */
.about-brand-logo {
  margin-top: 16px;
  margin-bottom: 32px;
}
.about-brand-logo img {
  display: block;
  width: auto;
  max-width: 360px;
  height: auto;
}
.about-p {
  font-size: 15px;
  line-height: 2.1;
  color: #444;
  max-width: 880px;
  margin-bottom: 32px;
}
.about-p strong {
  color: #0a0a0a;
}

/* Parent Factory Grid */
.parent-factory-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: start;
  margin-bottom: 64px;
}
.parent-factory-card {
  background: #0a0a0a;
  color: #fff;
  padding: 48px 40px;
  position: relative;
}
.parent-factory-card .pfc-label {
  font-family: 'Archivo', sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: rgba(255,255,255,0.5);
  margin-bottom: 16px;
}
.parent-factory-card .pfc-title {
  font-size: 28px;
  font-weight: 700;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(255,255,255,0.15);
}
.parent-factory-card .pfc-spec dt {
  font-family: 'Archivo', sans-serif;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: rgba(255,255,255,0.5);
  margin-top: 14px;
  text-transform: uppercase;
}
.parent-factory-card .pfc-spec dt:first-child { margin-top: 0; }
.parent-factory-card .pfc-spec dd {
  font-size: 14px;
  line-height: 1.6;
  color: #fff;
  margin-top: 4px;
  font-weight: 500;
}

/* About Stats */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding: 40px 0;
  border-top: 1px solid rgba(0,0,0,0.1);
  border-bottom: 1px solid rgba(0,0,0,0.1);
}
.about-stats .stat-block {
  text-align: left;
}
.about-stats .stat-num {
  font-family: 'Archivo', sans-serif;
  font-size: 44px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.03em;
  color: #0a0a0a;
  margin-bottom: 10px;
}
.about-stats .stat-num .stat-unit {
  font-size: 16px;
  font-weight: 500;
  color: #888;
  margin-left: 4px;
}
.about-stats .stat-label {
  font-size: 12px;
  color: #666;
  letter-spacing: 0.04em;
}

/* One-Stop Flow */
.onestop-flow {
  display: flex;
  align-items: stretch;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 48px;
}
.osf-stage {
  flex: 1;
  min-width: 180px;
  padding: 28px 24px;
  background: #fff;
  border: 1px solid rgba(0,0,0,0.08);
  text-align: center;
}
.osf-stage.highlighted {
  background: #0a0a0a;
  color: #fff;
  border-color: #0a0a0a;
}
.osf-icon {
  font-family: 'Archivo', sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #999;
  margin-bottom: 12px;
}
.osf-stage.highlighted .osf-icon {
  color: rgba(255,255,255,0.5);
}
.osf-name {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}
.osf-meta {
  font-size: 11px;
  color: #888;
  letter-spacing: 0.04em;
}
.osf-stage.highlighted .osf-meta {
  color: rgba(255,255,255,0.7);
}
.osf-arrow {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #999;
  font-family: 'Archivo', sans-serif;
}

/* Why List */
.why-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.08);
  margin-top: 48px;
}
.why-item {
  background: #fff;
  padding: 40px 36px;
  display: flex;
  gap: 24px;
}
.why-item .why-num {
  font-family: 'Archivo', sans-serif;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: -0.02em;
  color: #0a0a0a;
  line-height: 1;
  min-width: 56px;
}
.why-item .why-body h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: #0a0a0a;
}
.why-item .why-body p {
  font-size: 14px;
  line-height: 2;
  color: #444;
}
.why-item .why-body p strong {
  color: #0a0a0a;
}

@media (max-width: 900px) {
  .about-section { padding: 64px 0; }
  .about-h2 { font-size: clamp(22px, 5vw, 30px); margin-bottom: 24px; }
  .about-brand-logo { margin-bottom: 24px; }
  .about-brand-logo img { max-width: 280px; }
  .about-p { font-size: 14px; line-height: 1.95; margin-bottom: 24px; }
  .parent-factory-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
  }
  .about-stats {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 28px 0;
  }
  .about-stats .stat-num { font-size: 28px; }
  .about-stats .stat-num .stat-unit { font-size: 13px; }
  .about-stats .stat-label { font-size: 11px; line-height: 1.5; }
}
@media (max-width: 768px) {
  .about-section { padding: 56px 0; }
  .why-list { grid-template-columns: 1fr; margin-top: 32px; }
  .why-item { padding: 28px 24px; gap: 20px; }
  .why-item .why-num { font-size: 24px; min-width: 44px; }
  .why-item .why-body h3 { font-size: 16px; line-height: 1.5; margin-bottom: 10px; }
  .why-item .why-body p { font-size: 13px; line-height: 1.95; }
  .onestop-flow { flex-direction: column; gap: 12px; margin-top: 32px; }
  .osf-stage { min-width: 0; padding: 22px 18px; }
  .osf-name { font-size: 15px; }
  .osf-meta { font-size: 10.5px; }
  .osf-arrow { justify-content: center; transform: rotate(90deg); font-size: 18px; }
  .parent-factory-card { padding: 36px 28px; }
  .parent-factory-card .pfc-title { font-size: 24px; margin-bottom: 20px; padding-bottom: 18px; }
  .parent-factory-card .pfc-spec dd { font-size: 13px; }
}
@media (max-width: 600px) {
  .about-stats {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 0;
  }
  .about-stats .stat-block { padding: 4px 0; }
  .parent-factory-card { padding: 28px 20px; }
  .why-item { padding: 24px 18px; flex-direction: column; gap: 10px; }
  .why-item .why-num { font-size: 20px; }
}
@media (max-width: 480px) {
  .about-section { padding: 48px 0; }
  .about-h2 { font-size: 20px; }
}
