@charset "UTF-8";

/* ============================================
   WebFactory Theme - Main Stylesheet
   ============================================ */

:root {
  --base: #FAFAF7;
  --text: #1A1A1A;
  --accent: #0F2942;
  --cta: #FF6B35;
  --sub: #6B6B6B;
  --border: #E8E6E0;
  --highlight: #F5F2EA;
  --font-en: 'Oswald', sans-serif;
  --font-en-bold: 'Archivo Black', sans-serif;
  --font-ja: 'Noto Sans JP', sans-serif;
  --font-ja-heading: 'Noto Sans JP', sans-serif;
  --font-mono: 'JetBrains Mono', monospace;
}

/* ============ RESET ============ */
* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-ja);
  background: var(--base);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}

a { color: inherit; text-decoration: none; }

img { max-width: 100%; height: auto; display: block; }

.screen-reader-text {
  position: absolute;
  clip: rect(1px, 1px, 1px, 1px);
  word-wrap: normal !important;
}

/* ============ LAYOUT ============ */
.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: 780px;
}

/* ============ HEADER ============ */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(250, 250, 247, 0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 72px;
}

.logo {
  font-family: var(--font-en-bold);
  font-size: 20px;
  letter-spacing: 0.02em;
  color: var(--accent);
}

.logo span {
  color: var(--cta);
}

.custom-logo-link img {
  max-height: 48px;
  width: auto;
}

.nav-pc {
  display: flex;
  gap: 36px;
  align-items: center;
}

.nav-list {
  display: flex;
  gap: 36px;
  list-style: none;
  align-items: center;
  margin: 0;
  padding: 0;
}

.nav-pc a,
.nav-list a {
  font-size: 14px;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-pc a:hover,
.nav-list a:hover { color: var(--cta); }

.btn-header {
  background: var(--accent) !important;
  color: #fff !important;
  padding: 10px 20px;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid var(--accent);
  transition: all 0.2s;
  display: inline-block;
}

.btn-header:hover {
  background: var(--cta) !important;
  border-color: var(--cta);
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 24px;
  padding: 8px;
}

/* モバイルメニュー */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 24px;
}

.mobile-menu.is-open {
  display: block;
}

.mobile-nav-list {
  list-style: none;
}

.mobile-nav-list li {
  border-bottom: 1px solid var(--border);
}

.mobile-nav-list li:last-child {
  border-bottom: none;
}

.mobile-nav-list a {
  display: block;
  padding: 16px 0;
  font-size: 15px;
  font-weight: 500;
}

/* ============ HERO ============ */
.hero {
  padding: 80px 0 100px;
  position: relative;
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-tag {
  font-family: var(--font-mono);
  font-size: 13px;
  color: var(--cta);
  letter-spacing: 0.1em;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.hero-tag::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cta);
}

.hero h1 {
  font-family: var(--font-ja-heading);
  font-size: 56px;
  font-weight: 900;
  line-height: 1.25;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--text);
}

.hero h1 .accent {
  color: var(--cta);
  font-style: normal;
  font-weight: 900;
}

.hero-tagline-en {
  font-family: var(--font-en-bold);
  font-size: 18px;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 16px;
}

.hero p.lead {
  font-size: 17px;
  color: var(--sub);
  line-height: 1.9;
  margin-bottom: 40px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* ============ BUTTONS ============ */
.btn-primary {
  background: var(--cta);
  color: #fff;
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--cta);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.btn-primary:hover {
  background: #E55A2B;
  border-color: #E55A2B;
  color: #fff;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
  padding: 18px 32px;
  font-size: 15px;
  font-weight: 700;
  border: 1px solid var(--accent);
  transition: all 0.2s;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  cursor: pointer;
}

.btn-secondary:hover {
  background: var(--accent);
  color: #fff;
}

/* ============ HERO VISUAL ============ */
.hero-visual {
  position: relative;
}

.hero-card {
  background: #fff;
  border: 1px solid var(--border);
  padding: 24px;
  font-family: var(--font-mono);
  font-size: 13px;
}

.hero-card-header {
  display: flex;
  gap: 6px;
  margin-bottom: 20px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.hero-card-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--border);
}

.hero-card-header span:nth-child(1) { background: #FF5F57; }
.hero-card-header span:nth-child(2) { background: #FFBD2E; }
.hero-card-header span:nth-child(3) { background: #28C840; }

.hero-card-line {
  margin-bottom: 10px;
  color: var(--sub);
}

.hero-card-line .key { color: var(--cta); }
.hero-card-line .val { color: var(--accent); font-weight: 500; }

.hero-card-result {
  margin-top: 20px;
  padding: 16px;
  background: var(--highlight);
  border-left: 3px solid var(--cta);
}

.hero-card-result strong {
  color: var(--cta);
  font-size: 16px;
}

.hero-stats {
  position: absolute;
  top: -20px;
  right: -20px;
  background: var(--accent);
  color: #fff;
  padding: 12px 20px;
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.05em;
}

/* ============ SECTION HEAD ============ */
.section-head {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 16px;
}

.section-title {
  font-family: var(--font-ja-heading);
  font-size: 40px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.section-subtitle {
  font-size: 16px;
  color: var(--sub);
  max-width: 640px;
  margin: 0 auto;
}

/* ============ THREE DOORS ============ */
.three-doors {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.doors-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.door {
  background: var(--base);
  border: 1px solid var(--border);
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
  display: flex;
  flex-direction: column;
}

.door:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.door-num {
  font-family: var(--font-en-bold);
  font-size: 48px;
  color: var(--border);
  line-height: 1;
  margin-bottom: 24px;
}

.door-level {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cta);
  margin-bottom: 12px;
}

.door-title {
  font-family: var(--font-ja-heading);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.door-desc {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 24px;
  flex-grow: 1;
}

.door-price {
  font-family: var(--font-mono);
  font-size: 20px;
  font-weight: 500;
  color: var(--accent);
  margin-bottom: 24px;
}

.door-price .label {
  font-size: 12px;
  color: var(--sub);
  font-weight: 400;
  display: block;
  margin-top: 4px;
}

.door-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  padding: 14px 24px;
  border: 1px solid var(--accent);
  transition: all 0.2s;
  align-self: flex-start;
}

.door-cta:hover {
  background: var(--accent);
  color: #fff;
}

/* ============ PRODUCTS ============ */
.products {
  padding: 120px 0;
  background: #fff;
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 60px;
}

.product-card {
  background: #fff;
  border: 1px solid var(--border);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.3s;
}

.product-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.product-status {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  border-bottom: 1px solid var(--border);
  background: var(--highlight);
}

.status-badge {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 4px 12px;
  border: 1px solid currentColor;
}

.status-live { color: #17A55F; }
.status-soon { color: var(--sub); }

.product-version {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sub);
}

.product-body {
  padding: 32px 24px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.product-icon {
  width: 48px;
  height: 48px;
  background: var(--highlight);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 20px;
  color: var(--accent);
  margin-bottom: 20px;
}

.product-card h3 {
  font-family: var(--font-ja-heading);
  font-size: 20px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.product-card p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.8;
  margin-bottom: 20px;
  flex-grow: 1;
}

.product-price {
  font-family: var(--font-mono);
  font-size: 16px;
  color: var(--accent);
  margin-bottom: 16px;
}

.product-demo {
  font-size: 13px;
  font-weight: 700;
  color: var(--cta);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.products-note {
  margin-top: 48px;
  padding: 24px;
  background: var(--highlight);
  border: 1px solid var(--border);
  text-align: center;
  font-size: 14px;
  color: var(--sub);
}

.products-note strong {
  color: var(--accent);
}

/* ============ STRENGTHS ============ */
.strengths {
  padding: 120px 0;
  background: var(--accent);
  color: #fff;
}

.strengths .section-label { color: var(--cta); }
.strengths .section-title { color: #fff; }
.strengths .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.strengths-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  margin-top: 80px;
}

.strength-num {
  font-family: var(--font-en-bold);
  font-size: 72px;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 24px;
}

.strength-title {
  font-family: var(--font-ja-heading);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.strength-desc {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.8;
}

/* ============ BUSINESS ============ */
.business {
  padding: 120px 0;
}

.business-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.biz-card {
  padding: 40px 32px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.3s;
}

.biz-card:hover {
  border-color: var(--accent);
}

.biz-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cta);
  margin-bottom: 20px;
}

.biz-title {
  font-family: var(--font-ja-heading);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 20px;
  line-height: 1.4;
  letter-spacing: -0.01em;
}

.biz-items {
  list-style: none;
  margin-bottom: 24px;
}

.biz-items li {
  font-size: 14px;
  padding: 10px 0;
  border-bottom: 1px dashed var(--border);
  color: var(--sub);
}

.biz-items li:last-child {
  border-bottom: none;
}

.biz-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ============ STORY ============ */
.story {
  padding: 120px 0;
  background: var(--highlight);
}

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: center;
}

.story-image {
  background: var(--accent);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-family: var(--font-mono);
  font-size: 13px;
  position: relative;
  overflow: hidden;
}

.story-image::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.3) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.3) 1px, transparent 1px);
  background-size: 20px 20px;
}

.story-image-text {
  position: relative;
  z-index: 1;
  padding: 32px;
  text-align: center;
}

.story-image-text .year {
  font-family: var(--font-en-bold);
  font-size: 48px;
  color: var(--cta);
  margin-bottom: 16px;
}

.story-sub {
  margin-top: 32px;
  font-size: 11px;
  opacity: 0.6;
}

.story-content .section-label {
  color: var(--cta);
  text-align: left;
}

.story h2 {
  font-family: var(--font-ja-heading);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.story-text {
  font-size: 15px;
  line-height: 2;
  color: var(--sub);
  margin-bottom: 32px;
}

.story-text p {
  margin-bottom: 20px;
}

.story-text p:first-letter {
  font-family: var(--font-ja-heading);
  font-weight: 900;
  font-size: 36px;
  float: left;
  line-height: 1;
  margin-right: 8px;
  color: var(--cta);
}

/* ============ LEAD MAGNET ============ */
.lead-magnet {
  padding: 120px 0;
  background: var(--text);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lead-magnet::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
}

.lead-magnet .container {
  position: relative;
  z-index: 1;
}

.lead-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 80px;
  align-items: center;
}

.lead-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.lead-label::before {
  content: '';
  width: 30px;
  height: 1px;
  background: var(--cta);
}

.lead-magnet h2 {
  font-family: var(--font-ja-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: -0.02em;
}

.lead-magnet h2 .highlight {
  color: var(--cta);
}

.lead-desc {
  font-size: 15px;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.9;
  margin-bottom: 32px;
}

.lead-benefits {
  list-style: none;
  margin-bottom: 40px;
}

.lead-benefits li {
  padding: 12px 0 12px 32px;
  position: relative;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.85);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.lead-benefits li::before {
  content: '→';
  position: absolute;
  left: 0;
  color: var(--cta);
  font-weight: 700;
}

.lead-preview {
  background: #fff;
  color: var(--text);
  padding: 40px 32px;
  border-top: 4px solid var(--cta);
}

.lead-preview h3 {
  font-family: var(--font-ja-heading);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 16px;
}

.preview-total-label {
  font-size: 12px;
  color: var(--sub);
  margin-bottom: 8px;
  font-family: var(--font-mono);
}

.preview-total-value {
  font-family: var(--font-en-bold);
  font-size: 48px;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 16px;
}

.preview-total-max {
  font-size: 20px;
  color: var(--sub);
}

.preview-fake-chart {
  height: 120px;
  background: var(--highlight);
  margin: 20px 0;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 16px;
  gap: 8px;
}

.preview-fake-chart .bar {
  background: var(--cta);
  flex: 1;
  opacity: 0.7;
}

.preview-fake-chart .bar:nth-child(1) { height: 30%; }
.preview-fake-chart .bar:nth-child(2) { height: 60%; }
.preview-fake-chart .bar:nth-child(3) { height: 85%; }
.preview-fake-chart .bar:nth-child(4) { height: 45%; }
.preview-fake-chart .bar:nth-child(5) { height: 70%; }
.preview-fake-chart .bar:nth-child(6) { height: 50%; }
.preview-fake-chart .bar:nth-child(7) { height: 90%; opacity: 1; }

.preview-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.preview-stat {
  background: var(--highlight);
  padding: 16px;
  text-align: center;
}

.preview-stat .val {
  font-family: var(--font-en-bold);
  font-size: 28px;
  color: var(--accent);
  display: block;
}

.preview-stat .lbl {
  font-size: 11px;
  color: var(--sub);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ============ CONTENT FEED ============ */
.content-feed {
  padding: 120px 0;
}

.feed-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}

.feed-item {
  border: 1px solid var(--border);
  background: #fff;
  overflow: hidden;
  transition: all 0.3s;
}

.feed-item:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
}

.feed-item a {
  display: block;
  color: inherit;
}

.feed-thumb {
  aspect-ratio: 16/9;
  background: var(--highlight);
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.feed-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feed-thumb-placeholder {
  color: var(--sub);
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
}

.feed-body {
  padding: 20px 24px;
}

.feed-meta {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--cta);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.feed-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  color: var(--text);
}

.feed-excerpt {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
  margin-bottom: 12px;
}

.feed-date {
  font-size: 12px;
  color: var(--sub);
  font-family: var(--font-mono);
}

.feed-more {
  text-align: center;
  margin-top: 48px;
}

/* ============ CONTACT ============ */
.contact {
  padding: 120px 0;
  background: var(--accent);
  color: #fff;
}

.contact .section-label { color: var(--cta); }
.contact .section-title { color: #fff; }
.contact .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
  margin-top: 80px;
}

.contact-card {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.15);
  padding: 48px;
  transition: all 0.3s;
}

.contact-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cta);
}

.contact-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 16px;
}

.contact-card h3 {
  font-family: var(--font-ja-heading);
  font-size: 24px;
  font-weight: 900;
  margin-bottom: 16px;
  color: #fff;
  letter-spacing: -0.01em;
}

.contact-card p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
  margin-bottom: 28px;
}

.contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border: 1px solid #fff;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  transition: all 0.2s;
}

.contact-btn:hover {
  background: var(--cta);
  border-color: var(--cta);
}

/* ============ FOOTER ============ */
.site-footer {
  background: var(--text);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 32px;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand .logo {
  color: #fff;
  font-size: 24px;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 13px;
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  transition: all 0.2s;
  color: inherit;
}

.footer-social a:hover {
  background: var(--cta);
  border-color: var(--cta);
  color: #fff;
}

.footer-col h4 {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 20px;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 12px;
}

.footer-col a {
  font-size: 13px;
  transition: color 0.2s;
  color: inherit;
}

.footer-col a:hover {
  color: var(--cta);
}

.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  font-family: var(--font-mono);
}

/* ============================================
   固定ページ・投稿ページ スタイル
   ============================================ */

/* パンくず */
.breadcrumb {
  margin-bottom: 24px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sub);
}

.breadcrumb ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0;
}

.breadcrumb li::after {
  content: ' / ';
  margin-left: 8px;
  opacity: 0.5;
}

.breadcrumb li:last-child::after {
  content: '';
}

.breadcrumb a {
  color: var(--cta);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ページヒーロー */
.page-hero,
.post-hero {
  padding: 60px 0 40px;
  background: var(--highlight);
  border-bottom: 1px solid var(--border);
}

.page-hero-inner,
.post-hero-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.page-hero-inner {
  padding: 40px 0;
}

.post-category {
  margin-bottom: 16px;
}

.post-category a {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  padding: 6px 16px;
  border: 1px solid var(--cta);
  color: var(--cta);
  transition: all 0.2s;
}

.post-category a:hover {
  background: var(--cta);
  color: #fff;
}

.page-title,
.post-title {
  font-family: var(--font-ja-heading);
  font-size: 36px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 0 0 16px 0;
  color: var(--text);
}

.archive-desc {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.9;
}

.post-meta {
  font-family: var(--font-mono);
  font-size: 12px;
  color: var(--sub);
  letter-spacing: 0.05em;
}

.post-meta-sep {
  margin: 0 8px;
  opacity: 0.5;
}

/* アイキャッチ */
.page-featured,
.post-featured {
  padding: 40px 0 0;
}

.page-featured img,
.post-featured img {
  width: 100%;
  max-height: 500px;
  object-fit: cover;
  border: 1px solid var(--border);
}

/* 本文コンテンツ */
.page-body,
.post-body {
  padding: 60px 0 100px;
}

.page-content,
.post-content,
.entry-content {
  font-size: 16px;
  line-height: 2;
  color: var(--text);
}

.entry-content h2 {
  font-family: var(--font-ja-heading);
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: -0.02em;
  margin: 48px 0 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--cta);
}

.entry-content h3 {
  font-family: var(--font-ja-heading);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.01em;
  margin: 40px 0 16px;
  padding-left: 16px;
  border-left: 4px solid var(--cta);
}

.entry-content h4 {
  font-family: var(--font-ja-heading);
  font-size: 18px;
  font-weight: 700;
  margin: 32px 0 12px;
}

.entry-content p {
  margin-bottom: 24px;
}

.entry-content a {
  color: var(--cta);
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

.entry-content a:hover {
  text-decoration-thickness: 2px;
}

.entry-content strong {
  font-weight: 700;
  color: var(--accent);
}

.entry-content ul,
.entry-content ol {
  margin: 0 0 24px 0;
  padding-left: 24px;
}

.entry-content li {
  margin-bottom: 8px;
}

.entry-content blockquote {
  margin: 32px 0;
  padding: 24px 32px;
  background: var(--highlight);
  border-left: 4px solid var(--cta);
  font-style: normal;
}

.entry-content blockquote p {
  margin-bottom: 12px;
  color: var(--sub);
}

.entry-content blockquote p:last-child {
  margin-bottom: 0;
}

.entry-content code {
  font-family: var(--font-mono);
  font-size: 0.9em;
  background: var(--highlight);
  padding: 2px 6px;
  border: 1px solid var(--border);
}

.entry-content pre {
  background: var(--text);
  color: #fff;
  padding: 24px;
  overflow-x: auto;
  margin: 32px 0;
  font-family: var(--font-mono);
  font-size: 13px;
  line-height: 1.7;
}

.entry-content pre code {
  background: transparent;
  border: none;
  padding: 0;
  color: inherit;
}

.entry-content img {
  margin: 32px auto;
  border: 1px solid var(--border);
}

.entry-content hr {
  margin: 48px 0;
  border: none;
  border-top: 1px dashed var(--border);
}

.entry-content table {
  width: 100%;
  border-collapse: collapse;
  margin: 32px 0;
  font-size: 14px;
}

.entry-content th,
.entry-content td {
  padding: 12px 16px;
  border: 1px solid var(--border);
  text-align: left;
}

.entry-content th {
  background: var(--highlight);
  font-weight: 700;
}

/* タグ */
.post-tags {
  margin: 48px 0;
  padding-top: 32px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag {
  font-family: var(--font-mono);
  font-size: 12px;
  padding: 6px 14px;
  background: var(--highlight);
  border: 1px solid var(--border);
  color: var(--sub);
  transition: all 0.2s;
}

.tag:hover {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}

/* シェアボタン */
.post-share {
  margin: 48px 0;
  padding: 32px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 24px;
}

.share-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cta);
}

.share-buttons {
  display: flex;
  gap: 8px;
}

.share-buttons a {
  width: 40px;
  height: 40px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sub);
  transition: all 0.2s;
}

.share-buttons a:hover {
  background: var(--cta);
  color: #fff;
  border-color: var(--cta);
}

/* 前後ナビ */
.post-nav {
  margin: 48px 0;
}

.post-nav-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.post-nav-link {
  padding: 24px;
  border: 1px solid var(--border);
  background: #fff;
  transition: all 0.2s;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.post-nav-link:hover {
  border-color: var(--accent);
}

.post-nav-link.next {
  text-align: right;
}

.post-nav-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  color: var(--cta);
}

.post-nav-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
}

/* 関連記事 */
.related-posts {
  padding: 100px 0;
  background: var(--highlight);
}

/* ページCTA */
.page-cta {
  padding: 100px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.page-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-cta h2 {
  font-family: var(--font-ja-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin-bottom: 16px;
  color: #fff;
}

.page-cta p {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 32px;
  font-size: 15px;
}

/* ページネーション */
.pagination {
  margin: 60px 0 0;
  display: flex;
  justify-content: center;
}

.pagination .nav-links {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
}

.pagination .page-numbers {
  padding: 12px 18px;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-mono);
  font-size: 14px;
  transition: all 0.2s;
}

.pagination .page-numbers.current {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.pagination .page-numbers:hover:not(.current) {
  border-color: var(--accent);
}

/* 検索フォーム */
.search-form {
  display: flex;
  gap: 8px;
  max-width: 500px;
  margin: 32px auto;
}

.search-field {
  flex: 1;
  padding: 14px 16px;
  border: 1px solid var(--border);
  background: #fff;
  font-family: var(--font-ja);
  font-size: 15px;
}

.search-field:focus {
  outline: none;
  border-color: var(--cta);
}

.search-submit {
  padding: 14px 28px;
  background: var(--accent);
  color: #fff;
  border: 1px solid var(--accent);
  font-weight: 700;
  cursor: pointer;
  transition: all 0.2s;
}

.search-submit:hover {
  background: var(--cta);
  border-color: var(--cta);
}

/* 404 */
.page-404 {
  padding: 120px 0;
  text-align: center;
}

.error-inner {
  max-width: 640px;
  margin: 0 auto;
}

.error-num {
  font-family: var(--font-en-bold);
  font-size: 120px;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 16px;
}

.error-title {
  font-family: var(--font-ja-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 16px 0;
}

.error-desc {
  color: var(--sub);
  font-size: 15px;
  line-height: 1.9;
  margin-bottom: 40px;
}

.error-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.error-search {
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.error-search-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 8px;
}

/* no-results */
.no-results {
  text-align: center;
  padding: 80px 0;
}

/* ============ RESPONSIVE ============ */
@media (max-width: 1024px) {
  .hero h1 { font-size: 42px; }
  .section-title { font-size: 32px; }
  .page-title,
  .post-title { font-size: 28px; }
  .hero-inner,
  .story-inner,
  .lead-inner { grid-template-columns: 1fr; gap: 48px; }
  .doors-grid,
  .products-grid,
  .strengths-grid,
  .business-grid,
  .feed-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 24px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .post-nav-inner { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
  .nav-pc { display: none; }
  .menu-toggle { display: block; }
  .hero { padding: 60px 0; }
  .hero h1 { font-size: 32px; }
  .section-title { font-size: 26px; }
  .page-title,
  .post-title { font-size: 24px; }
  .three-doors,
  .products,
  .strengths,
  .business,
  .story,
  .lead-magnet,
  .content-feed,
  .contact,
  .related-posts,
  .page-cta { padding: 80px 0; }
  .lead-magnet h2 { font-size: 32px; }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 8px; }
  .hero-ctas { flex-direction: column; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .strength-num { font-size: 56px; }
  .error-num { font-size: 80px; }
  .entry-content h2 { font-size: 22px; }
  .entry-content h3 { font-size: 18px; }
}


/* ============================================
   ARCHIVE PAGE - Underline Tabs
   ============================================ */

/* ヘッダーとグリッドの間の余白 */
.archive-body {
  padding: 60px 0 100px;
}

/* タブラッパー */
.archive-tabs-wrapper {
  background: #fff;
  border-bottom: 1px solid var(--border);
}

/* タブナビ */
.archive-tabs {
  display: flex;
  gap: 0;
}

.archive-tab {
  position: relative;
  padding: 20px 36px;
  font-size: 15px;
  font-weight: 700;
  color: var(--sub);
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  gap: 8px;
}

.archive-tab:hover {
  color: var(--accent);
}

.archive-tab.is-active {
  color: var(--accent);
  border-bottom-color: var(--cta);
}

/* タブの記事数バッジ */
.tab-count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 22px;
  height: 22px;
  padding: 0 6px;
  background: var(--highlight);
  border: 1px solid var(--border);
  font-family: var(--font-mono);
  font-size: 11px;
  font-weight: 400;
  color: var(--sub);
  border-radius: 11px;
  transition: all 0.2s;
}

.archive-tab.is-active .tab-count {
  background: var(--cta);
  border-color: var(--cta);
  color: #fff;
}

/* グリッド（アーカイブ専用 - 3列固定） */
.archive-grid {
  grid-template-columns: repeat(3, 1fr);
}

/* no-results */
.no-results {
  text-align: center;
  padding: 80px 0;
  color: var(--sub);
  font-size: 15px;
}

@media (max-width: 768px) {
  .archive-tab {
    padding: 16px 20px;
    font-size: 14px;
  }
  .archive-grid {
    grid-template-columns: 1fr;
  }
  .archive-body {
    padding: 40px 0 80px;
  }
}

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


/* ============================================
   LP: /dx-sheet/ 無料DX診断シート配布LP
   ============================================ */

.lp-dx-sheet {
  background: var(--base);
}

/* ===== HERO ===== */
.lp-hero {
  padding: 80px 0 100px;
  background: linear-gradient(180deg, var(--highlight) 0%, var(--base) 100%);
  position: relative;
  overflow: hidden;
}

.lp-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 41, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 41, 66, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.lp-hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.lp-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid var(--cta);
  color: var(--cta);
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 700;
  margin-bottom: 32px;
}

.lp-badge-dot {
  width: 8px;
  height: 8px;
  background: var(--cta);
  border-radius: 50%;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

.lp-hero-title {
  font-family: var(--font-ja-heading);
  font-size: 52px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.03em;
  margin-bottom: 32px;
  color: var(--text);
}

.lp-hero-title .accent {
  color: var(--cta);
}

.lp-hero-sub {
  font-size: 17px;
  line-height: 1.9;
  color: var(--sub);
  margin-bottom: 40px;
}

.lp-hero-ctas {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
}

.btn-large {
  padding: 22px 40px;
  font-size: 17px;
}

.btn-huge {
  padding: 26px 48px;
  font-size: 19px;
}

.lp-hero-note {
  font-size: 13px;
  color: var(--sub);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

/* ===== HERO MOCKUP ===== */
.lp-mock {
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 20px 50px rgba(15, 41, 66, 0.12);
  transform: rotate(1deg);
  transition: transform 0.3s ease;
}

.lp-mock:hover {
  transform: rotate(0deg);
}

.lp-mock-header {
  padding: 14px 20px;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
  background: var(--highlight);
  position: relative;
}

.lp-mock-header span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}

.lp-mock-header span:nth-child(1) { background: #FF5F57; }
.lp-mock-header span:nth-child(2) { background: #FFBD2E; }
.lp-mock-header span:nth-child(3) { background: #28C840; }

.lp-mock-title {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sub);
  letter-spacing: 0.1em;
}

.lp-mock-body {
  padding: 32px 28px;
}

.lp-mock-label {
  font-family: var(--font-mono);
  font-size: 11px;
  color: var(--sub);
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}

.lp-mock-score {
  font-family: var(--font-en-bold);
  font-size: 64px;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 8px;
}

.lp-mock-score span {
  font-size: 24px;
  color: var(--sub);
}

.lp-mock-judge {
  display: inline-block;
  padding: 6px 14px;
  background: var(--highlight);
  border: 1px solid var(--cta);
  color: var(--cta);
  font-size: 13px;
  font-weight: 700;
  margin-bottom: 24px;
}

.lp-mock-chart {
  display: flex;
  align-items: flex-end;
  gap: 8px;
  height: 100px;
  padding: 12px;
  background: var(--highlight);
  margin-bottom: 20px;
}

.lp-mock-bar {
  flex: 1;
  background: var(--cta);
  opacity: 0.7;
}

.lp-mock-bar:nth-child(7) {
  opacity: 1;
}

.lp-mock-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.lp-mock-stat {
  text-align: center;
  padding: 12px 8px;
  background: var(--highlight);
}

.lp-mock-stat .val {
  display: block;
  font-family: var(--font-en-bold);
  font-size: 22px;
  color: var(--accent);
  line-height: 1.2;
}

.lp-mock-stat .lbl {
  display: block;
  font-family: var(--font-mono);
  font-size: 10px;
  color: var(--sub);
  letter-spacing: 0.05em;
  margin-top: 2px;
}

/* ===== TARGET ===== */
.lp-target {
  padding: 100px 0;
  background: #fff;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.lp-target-inner {
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
}

.lp-section-title {
  font-family: var(--font-ja-heading);
  font-size: 36px;
  font-weight: 900;
  letter-spacing: -0.02em;
  margin: 16px 0 48px;
  color: var(--text);
}

.lp-target-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-top: 48px;
}

.lp-target-item {
  padding: 32px 28px;
  background: var(--highlight);
  border: 1px solid var(--border);
  text-align: left;
  display: flex;
  align-items: center;
  gap: 20px;
  transition: all 0.2s;
}

.lp-target-item:hover {
  border-color: var(--cta);
}

.lp-target-icon {
  font-size: 32px;
  flex-shrink: 0;
}

.lp-target-item p {
  font-size: 15px;
  line-height: 1.7;
  font-weight: 500;
  color: var(--text);
}

/* ===== CONTENTS ===== */
.lp-contents {
  padding: 120px 0;
}

.lp-contents-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.lp-content-card {
  padding: 36px 28px;
  background: #fff;
  border: 1px solid var(--border);
  transition: all 0.3s;
  position: relative;
}

.lp-content-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.lp-content-num {
  font-family: var(--font-en-bold);
  font-size: 32px;
  color: var(--cta);
  line-height: 1;
  margin-bottom: 16px;
}

.lp-content-card h3 {
  font-family: var(--font-ja-heading);
  font-size: 18px;
  font-weight: 900;
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}

.lp-content-card p {
  font-size: 14px;
  line-height: 1.8;
  color: var(--sub);
}

/* ===== HOW TO ===== */
.lp-howto {
  padding: 120px 0;
  background: var(--accent);
  color: #fff;
}

.lp-howto .section-label { color: var(--cta); }
.lp-howto .section-title { color: #fff; }
.lp-howto .section-subtitle { color: rgba(255, 255, 255, 0.7); }

.lp-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}

.lp-step {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px 32px;
  transition: all 0.3s;
  position: relative;
}

.lp-step:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--cta);
}

.lp-step-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--cta);
  margin-bottom: 12px;
}

.lp-step-time {
  position: absolute;
  top: 32px;
  right: 32px;
  font-family: var(--font-mono);
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  padding: 4px 10px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.lp-step h3 {
  font-family: var(--font-ja-heading);
  font-size: 22px;
  font-weight: 900;
  margin-bottom: 16px;
  letter-spacing: -0.01em;
  color: #fff;
}

.lp-step p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
}

/* ===== FAQ ===== */
.lp-faq {
  padding: 120px 0;
}

.lp-faq-list {
  max-width: 780px;
  margin: 0 auto;
  margin-top: 48px;
}

.lp-faq-item {
  border: 1px solid var(--border);
  background: #fff;
  margin-bottom: 12px;
  transition: all 0.2s;
}

.lp-faq-item[open] {
  border-color: var(--cta);
}

.lp-faq-item summary {
  padding: 22px 28px;
  cursor: pointer;
  list-style: none;
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: color 0.2s;
}

.lp-faq-item summary::-webkit-details-marker {
  display: none;
}

.lp-faq-item summary::after {
  content: '+';
  font-family: var(--font-mono);
  font-size: 22px;
  font-weight: 400;
  color: var(--cta);
  transition: transform 0.2s;
}

.lp-faq-item[open] summary::after {
  content: '−';
}

.lp-faq-item summary:hover {
  color: var(--cta);
}

.lp-faq-body {
  padding: 0 28px 24px;
}

.lp-faq-body p {
  font-size: 14px;
  line-height: 1.9;
  color: var(--sub);
}

/* ===== CTA ===== */
.lp-cta {
  padding: 120px 0;
  background: var(--text);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.lp-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 107, 53, 0.08) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 107, 53, 0.08) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.lp-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
}

.lp-cta-label {
  font-family: var(--font-mono);
  font-size: 13px;
  letter-spacing: 0.3em;
  color: var(--cta);
  margin-bottom: 20px;
}

.lp-cta-title {
  font-family: var(--font-ja-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin-bottom: 24px;
  color: #fff;
}

.lp-cta-desc {
  font-size: 16px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 48px;
}

.lp-cta-actions {
  margin-bottom: 48px;
}

.lp-cta-note {
  margin-top: 16px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.5);
  font-family: var(--font-mono);
  letter-spacing: 0.05em;
}

.lp-cta-placeholder {
  padding: 40px;
  background: rgba(255, 107, 53, 0.1);
  border: 1px dashed var(--cta);
  color: #fff;
}

.lp-cta-placeholder p {
  font-size: 16px;
  margin-bottom: 12px;
}

.lp-cta-placeholder-note {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

/* LINE Bonus */
.lp-cta-bonus {
  margin-top: 80px;
  padding: 48px 40px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
}

.lp-bonus-label {
  display: inline-block;
  padding: 6px 16px;
  background: var(--cta);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  font-weight: 700;
  margin-bottom: 20px;
}

.lp-cta-bonus h3 {
  font-family: var(--font-ja-heading);
  font-size: 22px;
  font-weight: 900;
  line-height: 1.5;
  letter-spacing: -0.01em;
  margin-bottom: 16px;
  color: #fff;
}

.lp-cta-bonus p {
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

.btn-line {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 16px 32px;
  background: #06C755;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: 1px solid #06C755;
  transition: all 0.2s;
}

.btn-line:hover {
  background: #05A847;
  border-color: #05A847;
  color: #fff;
}

/* コンテンツエリア（任意本文） */
.lp-content-section {
  padding: 80px 0;
  background: #fff;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .lp-hero-inner { grid-template-columns: 1fr; gap: 48px; }
  .lp-hero-title { font-size: 40px; }
  .lp-target-grid { grid-template-columns: 1fr; }
  .lp-contents-grid { grid-template-columns: 1fr; gap: 16px; }
  .lp-steps { grid-template-columns: 1fr; }
  .lp-cta-title { font-size: 32px; }
  .lp-section-title { font-size: 28px; }
}

@media (max-width: 768px) {
  .lp-hero { padding: 60px 0 80px; }
  .lp-hero-title { font-size: 32px; }
  .lp-hero-sub { font-size: 15px; }
  .btn-huge, .btn-large { padding: 20px 32px; font-size: 16px; width: 100%; justify-content: center; }
  .lp-mock-score { font-size: 48px; }
  .lp-target, .lp-contents, .lp-howto, .lp-faq, .lp-cta { padding: 80px 0; }
  .lp-cta-title { font-size: 28px; }
  .lp-cta-bonus { padding: 32px 24px; }
  .lp-cta-bonus h3 { font-size: 18px; }
  .lp-step-time { top: auto; right: auto; position: static; display: inline-block; margin-bottom: 12px; }
}


/* ============================================
   固定ページ（page.php）- 統一テンプレート
   ============================================ */

.page-hero-v2 {
  padding: 60px 0 40px;
  background: linear-gradient(180deg, var(--highlight) 0%, var(--base) 100%);
  position: relative;
  overflow: hidden;
}

.page-hero-v2::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(15, 41, 66, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(15, 41, 66, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none;
}

.page-hero-v2-inner {
  max-width: 780px;
  margin: 0 auto;
  text-align: center;
  padding: 40px 0;
  position: relative;
  z-index: 1;
}

.page-title-v2 {
  font-family: var(--font-ja-heading);
  font-size: 44px;
  font-weight: 900;
  line-height: 1.3;
  letter-spacing: -0.02em;
  margin: 16px 0 24px;
  color: var(--text);
}

.page-lead {
  font-size: 16px;
  color: var(--sub);
  line-height: 1.9;
}

/* ボトムCTA（全固定ページ共通） */
.page-bottom-cta {
  padding: 100px 0;
  background: var(--accent);
  color: #fff;
  text-align: center;
}

.page-bottom-cta-inner {
  max-width: 640px;
  margin: 0 auto;
}

.page-bottom-cta .section-label {
  color: var(--cta);
}

.page-bottom-cta h2 {
  font-family: var(--font-ja-heading);
  font-size: 32px;
  font-weight: 900;
  letter-spacing: -0.02em;
  line-height: 1.4;
  margin: 16px 0;
  color: #fff;
}

.page-bottom-cta p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 32px;
  font-size: 15px;
  line-height: 1.9;
}

@media (max-width: 768px) {
  .page-title-v2 {
    font-size: 30px;
  }
  .page-bottom-cta h2 {
    font-size: 24px;
  }
  .page-bottom-cta {
    padding: 80px 0;
  }
}


/* 単一コンタクトカード（法人削除後） */
.contact-single {
  max-width: 680px;
  margin: 80px auto 0;
}

.contact-single .contact-card {
  padding: 48px;
  text-align: center;
}

.contact-single .contact-label,
.contact-single h3 {
  text-align: center;
}

.contact-single .contact-btn {
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-single .contact-card {
    padding: 32px 24px;
  }
}


/* 特定商取引法テーブル */
.law-table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
  font-size: 14px;
}

.law-table th,
.law-table td {
  padding: 16px 20px;
  border: 1px solid var(--border);
  text-align: left;
  vertical-align: top;
  line-height: 1.8;
}

.law-table th {
  background: var(--highlight);
  font-weight: 700;
  width: 30%;
  color: var(--accent);
}

.law-note {
  margin-top: 24px;
  font-size: 13px;
  color: var(--sub);
}

@media (max-width: 768px) {
  .law-table,
  .law-table tbody,
  .law-table tr,
  .law-table th,
  .law-table td {
    display: block;
    width: 100%;
  }
  .law-table th {
    border-bottom: none;
    padding-bottom: 8px;
  }
  .law-table td {
    border-top: none;
    padding-top: 0;
    padding-bottom: 20px;
  }
}

/* ============ WORKS ============ */
.works {
  padding: 100px 0;
  background: var(--highlight);
}

.works-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.work-card {
  border: 1px solid var(--border);
  background: #fff;
  transition: transform 0.2s, box-shadow 0.2s;
}

.work-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.work-thumb {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--accent);
  overflow: hidden;
}

.work-thumb-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--accent);
  color: rgba(255,255,255,0.4);
}

.work-thumb-icon {
  font-size: 32px;
  color: rgba(255,255,255,0.3);
}

.work-thumb-label {
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.3);
}

.work-body {
  padding: 24px;
}

.work-tag {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 11px;
  letter-spacing: 0.08em;
  color: var(--cta);
  border: 1px solid var(--cta);
  padding: 2px 8px;
  margin-bottom: 12px;
}

.work-title {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  line-height: 1.4;
}

.work-desc {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
  margin-bottom: 16px;
}

.work-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--cta);
  transition: opacity 0.2s;
}

.work-link:hover { opacity: 0.7; }

.works-more {
  text-align: center;
  margin-top: 48px;
}

/* ============ PRODUCTS TIER ============ */
.products-tier {
  margin-top: 40px;
}

.tier-label {
  font-family: var(--font-mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--sub);
  border-left: 3px solid var(--cta);
  padding-left: 12px;
  margin-bottom: 24px;
}

.products-grid--two {
  grid-template-columns: repeat(2, 1fr);
}

/* ============ LEAD MAGNET YouTube ============ */
.lead-youtube-placeholder {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

.yt-thumb-placeholder {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: background 0.2s;
}

.yt-thumb-placeholder:hover {
  background: rgba(255,255,255,0.12);
}

.yt-play {
  font-size: 20px;
  color: var(--cta);
  flex-shrink: 0;
}

.yt-thumb-placeholder p {
  font-size: 13px;
  color: rgba(255,255,255,0.8);
  line-height: 1.4;
  margin: 0;
}

.lead-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
}

/* ============ レスポンシブ追加 ============ */
@media (max-width: 768px) {
  .works-grid,
  .products-grid--two { grid-template-columns: 1fr; gap: 20px; }
  .lead-ctas { flex-direction: column; }
}

/* ============ PRODUCTS PAGE ============ */
.products-page-tier-head {
  margin-bottom: 36px;
}

.tier-desc {
  font-size: 15px;
  color: var(--sub);
  margin-top: 10px;
  line-height: 1.7;
  max-width: 640px;
}

.product-features {
  list-style: none;
  padding: 0;
  margin: 12px 0 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.product-features li {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.5;
}

/* ============ PRODUCT DETAIL PAGE ============ */
.product-detail-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.product-video-placeholder {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--accent);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255,255,255,0.4);
  border-radius: var(--radius, 4px);
}

.product-video-icon {
  font-size: 40px;
  color: rgba(255,255,255,0.3);
}

.product-video-placeholder p {
  font-size: 13px;
  text-align: center;
  line-height: 1.6;
  margin: 0;
}

.product-video-placeholder small {
  font-size: 11px;
  opacity: 0.6;
}

.product-note-link {
  margin-top: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
}

.product-note-link a {
  color: var(--cta);
  font-weight: 500;
}

.product-detail-name {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 16px;
}

.product-detail-price {
  font-size: 36px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 24px;
}

.product-detail-price span {
  font-size: 14px;
  font-weight: 400;
  color: var(--sub);
}

.product-detail-includes {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  background: var(--base);
}

.product-detail-includes li {
  font-size: 14px;
  color: var(--text);
  line-height: 1.5;
}

.btn-purchase {
  width: 100%;
  justify-content: center;
  font-size: 16px;
  padding: 18px 32px;
}

.product-detail-note {
  margin-top: 12px;
  font-size: 12px;
  color: var(--sub);
  line-height: 1.8;
}

/* PROBLEM */
.product-problems-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.problem-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
}

.problem-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.problem-card p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
  margin: 0;
}

/* FLOW */
.product-flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin: 40px 0 48px;
  flex-wrap: wrap;
}

.product-flow-step {
  background: var(--base);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 20px 24px;
  text-align: center;
  min-width: 120px;
}

.product-flow-step.highlight-step {
  background: #E1F5EE;
  border-color: #5DCAA5;
}

.flow-step-icon {
  font-size: 28px;
  margin-bottom: 8px;
}

.flow-step-label {
  font-size: 12px;
  color: var(--sub);
  line-height: 1.6;
}

.product-flow-arrow {
  font-size: 20px;
  color: var(--sub);
}

/* SOLUTION */
.product-solutions-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.solution-card {
  background: var(--base);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
  text-align: center;
}

.solution-before {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #D85A30;
  border: 1px solid #D85A30;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.solution-after {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: #0F6E56;
  border: 1px solid #0F6E56;
  padding: 2px 8px;
  margin-bottom: 8px;
}

.solution-arrow {
  font-size: 20px;
  color: var(--sub);
  margin: 8px 0;
}

.solution-card p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.6;
  margin: 0;
}

/* REQUIREMENTS */
.product-requirements-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.requirement-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 4px;
  padding: 24px 20px;
  text-align: center;
}

.req-name {
  font-size: 14px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 8px;
}

.req-price {
  font-size: 20px;
  font-weight: 700;
  color: var(--cta);
  margin-bottom: 6px;
}

.req-note {
  font-size: 12px;
  color: rgba(255,255,255,0.5);
}

.requirements-total {
  margin-top: 32px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
}

.requirements-total strong {
  font-size: 28px;
  color: #fff;
}

/* FOR WHO */
.product-forwho-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 40px;
}

.forwho-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 28px 20px;
  text-align: center;
}

.forwho-icon {
  font-size: 32px;
  margin-bottom: 12px;
}

.forwho-card p {
  font-size: 13px;
  color: var(--sub);
  line-height: 1.7;
  margin: 0;
}

/* PACKAGE */
.product-package {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-top: 40px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.package-item {
  display: flex;
  align-items: flex-start;
  gap: 24px;
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.package-item:last-child {
  border-bottom: none;
}

.package-icon {
  font-size: 28px;
  flex-shrink: 0;
  width: 48px;
  text-align: center;
}

.package-body h3 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 6px;
}

.package-body p {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.7;
  margin: 0;
}

/* FAQ */
.product-faq {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}

.faq-item {
  padding: 28px 32px;
  border-bottom: 1px solid var(--border);
  background: #fff;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-q {
  font-size: 15px;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
}

.faq-q::before {
  content: "Q. ";
  color: var(--cta);
}

.faq-a {
  font-size: 14px;
  color: var(--sub);
  line-height: 1.8;
  padding-left: 20px;
}

.faq-a::before {
  content: "A. ";
  font-weight: 600;
  color: var(--text);
}

/* CTA PRICE */
.product-cta-price {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 16px 0 24px;
}

/* レスポンシブ */
@media (max-width: 768px) {
  .product-detail-hero-inner { grid-template-columns: 1fr; gap: 32px; }
  .product-problems-grid { grid-template-columns: repeat(2, 1fr); }
  .product-requirements-grid { grid-template-columns: repeat(2, 1fr); }
  .product-forwho-grid { grid-template-columns: repeat(2, 1fr); }
  .product-solutions-grid { grid-template-columns: 1fr; }
  .product-flow { gap: 8px; }
  .product-flow-step { min-width: 80px; padding: 14px 12px; }
  .package-item { flex-direction: column; gap: 12px; }
  .faq-item { padding: 20px; }
  .requirements-total { flex-direction: column; gap: 8px; }
}

/* ============ STRENGTHS MORE ============ */
.strengths-more {
  text-align: center;
  margin-top: 48px;
}

/* ============ セクション別ボタン上書き ============ */
/* strengths（ネイビー背景）内のbtn-secondary */
.strengths .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.strengths .btn-secondary:hover {
  background: #fff;
  color: var(--accent);
  border-color: #fff;
}

/* lead-magnet（黒背景）内のbtn-secondary */
.lead-magnet .btn-secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}

.lead-magnet .btn-secondary:hover {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}
