/* ─── LP専用スタイル ─── */

/* 本体HEROを非表示 */
body .hero,
body .hero[role="banner"],
div.hero,
div.hero[role="banner"] {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* ヒーローはLP専用に上書き */
.lp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--cream);
}
.lp-hero-deco {
  position: absolute;
  right: -10%; top: 50%;
  transform: translateY(-50%);
  width: clamp(400px, 60vw, 900px);
  height: 80%;
  background-image: url('https://taywa-partners.com/wp-content/themes/taywa-theme/images/TAYWA_logo_color.jpg');
  background-repeat: no-repeat;
  background-position: center right;
  background-size: contain;
  opacity: 0.07;
  pointer-events: none;
  z-index: 1;
}
.lp-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1140px;
  margin: 0 auto;
  padding: 100px 48px;
  width: 100%;
}
.lp-hero-eyebrow {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--teal);
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.lp-hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--teal);
}
.lp-hero-catchcopy {
  font-family: var(--serif-jp);
  font-size: clamp(14px, 1.8vw, 20px);
  font-weight: 500;
  color: var(--teal);
  letter-spacing: .18em;
  margin-bottom: 16px;
  line-height: 1.9;
}
.lp-hero-title {
  font-family: var(--serif-jp);
  font-size: clamp(26px, 3.8vw, 46px);
  font-weight: 600;
  line-height: 1.6;
  color: var(--ink);
  margin-bottom: 32px;
  max-width: 640px;
}
.lp-hero-title em {
  font-style: normal;
  color: var(--base);
}
.lp-hero-title-em {
  white-space: nowrap;
}
@media (max-width: 480px) {
  .lp-hero-title-em { white-space: normal; }
}
.lp-hero-desc {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 2.1;
  max-width: 480px;
  margin-bottom: 44px;
}
.lp-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.lp-hero-badges {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

/* ─── 共通セクション調整 ─── */
.lp-section {
  padding: 88px 48px;
}
.lp-section-alt {
  background: var(--pale2);
}
.lp-section-cream {
  background: var(--cream);
}
.lp-section-dark {
  background: var(--base);
  color: rgba(255,255,255,0.9);
}
.lp-container {
  max-width: 860px;
  margin: 0 auto;
}
.lp-container-wide {
  max-width: 1140px;
  margin: 0 auto;
}

/* ─── セクションヘッダー ─── */
.lp-section-no {
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: .24em;
  color: var(--teal);
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  gap: 10px;
}
.lp-section-no::after {
  content: '';
  flex: 0 0 28px;
  height: 1px;
  background: var(--teal);
}
.lp-section-no.light {
  color: rgba(255,255,255,0.45);
}
.lp-section-no.light::after {
  background: rgba(255,255,255,0.3);
}
.lp-section-title {
  font-family: var(--serif-jp);
  font-size: clamp(20px, 2.4vw, 30px);
  font-weight: 600;
  line-height: 1.55;
  color: var(--ink);
  margin-bottom: 20px;
}
.lp-section-title.light {
  color: #fff;
}
.lp-section-lead {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 2.1;
}
.lp-section-lead.light {
  color: rgba(255,255,255,0.7);
}

/* ─── ② 共感・問題提起 ─── */
.lp-pain-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-top: 24px;
}
.lp-pain-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 12px 18px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 6px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.75;
}
.lp-pain-item::before {
  content: '―';
  color: var(--accent);
  font-family: var(--serif-en);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ─── ③ 問題の本質 ─── */
.lp-insight {
  font-family: var(--serif-jp);
  font-size: clamp(13px, 1.2vw, 15px);
  line-height: 2.2;
  color: rgba(255,255,255,0.88);
}
.lp-insight p + p {
  margin-top: 20px;
}
.lp-insight .lp-insight-em {
  color: var(--accent);
  font-weight: 500;
}
.lp-insight-closing {
  margin-top: 32px;
  font-family: var(--serif-jp);
  font-size: clamp(13px, 1.3vw, 16px);
  font-weight: 500;
  color: rgba(255,255,255,0.6);
  letter-spacing: .06em;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 24px;
}

/* ─── ④ サービスの特徴 ─── */
.lp-feature-body {
  font-size: 15px;
  color: var(--ink-mid);
  line-height: 2.2;
  margin-top: 24px;
}
.lp-feature-body p + p {
  margin-top: 20px;
}
.lp-feature-quals {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}
.lp-feature-qual {
  font-size: 11px;
  padding: 6px 16px;
  border-radius: 3px;
  background: var(--pale);
  color: var(--base);
  letter-spacing: .04em;
  border-left: 3px solid var(--base);
}

/* ─── ⑤ STEPカード ─── */
.lp-steps {
  display: flex;
  flex-direction: column;
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: 8px;
  overflow: hidden;
  margin-top: 16px;
}
.lp-step {
  background: var(--white);
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 160px 1fr;
  gap: 32px;
  align-items: start;
  transition: background .2s;
}
.lp-step:hover {
  background: var(--pale2);
}
.lp-step-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  padding-top: 4px;
}
.lp-step-no {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--teal);
}
.lp-step-label {
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 600;
  color: var(--base);
  line-height: 1.3;
  white-space: nowrap;
}
.lp-step-sessions {
  font-size: 11px;
  color: var(--ink-lt);
  margin-top: 4px;
  line-height: 1.7;
}
.lp-step-right {}
.lp-step-title {
  font-family: var(--serif-jp);
  font-size: 16px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 10px;
  line-height: 1.55;
}
.lp-step-desc {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 2;
  margin-bottom: 0;
}
.lp-step.optional {
  background: var(--pale2);
}
.lp-step-optional-badge {
  display: inline-block;
  font-size: 9px;
  letter-spacing: .1em;
  padding: 2px 10px;
  border-radius: 20px;
  border: 1px solid var(--border2);
  color: var(--ink-lt);
  margin-bottom: 8px;
}

/* ─── ⑥ 料金 ─── */
.lp-pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 16px;
}
.lp-pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 28px 24px;
  position: relative;
}
.lp-pricing-card.featured {
  border-color: var(--base);
  border-width: 2px;
}
.lp-pricing-badge {
  position: absolute;
  top: -12px;
  left: 20px;
  background: var(--base);
  color: #fff;
  font-size: 9px;
  letter-spacing: .12em;
  padding: 3px 12px;
  border-radius: 20px;
  font-family: var(--mono);
}
.lp-pricing-badge.monitor {
  background: var(--accent);
  color: var(--ink);
}
.lp-price-plan {
  font-family: var(--mono);
  font-size: 9px;
  letter-spacing: .18em;
  color: var(--teal);
  margin-bottom: 10px;
}
.lp-price-name {
  font-family: var(--serif-jp);
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 16px;
  line-height: 1.55;
}
.lp-price-amount {
  font-family: var(--serif-en);
  font-size: 28px;
  font-weight: 500;
  color: var(--ink);
  margin-bottom: 4px;
}
.lp-price-amount span {
  font-size: 12px;
  font-weight: 400;
  color: var(--ink-lt);
  font-family: var(--sans);
}
.lp-price-original {
  font-size: 11px;
  color: var(--ink-lt);
  text-decoration: line-through;
  margin-bottom: 4px;
}
.lp-price-divider {
  height: 1px;
  background: var(--border);
  margin: 16px 0;
}
.lp-price-items {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.lp-price-items li {
  font-size: 12px;
  color: var(--ink-mid);
  display: flex;
  align-items: flex-start;
  gap: 8px;
  line-height: 1.7;
}
.lp-price-items li::before {
  content: '';
  display: block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--bright);
  margin-top: 7px;
  flex-shrink: 0;
}
.lp-pricing-notes {
  margin-top: 24px;
  font-size: 11px;
  color: var(--ink-lt);
  line-height: 2;
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

/* ─── ⑦ こんな方に ─── */
.lp-target-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 32px;
}
.lp-target-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 1.8;
  padding: 16px 20px;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid var(--border);
}
.lp-target-item::before {
  content: '✓';
  color: var(--bright);
  font-weight: 600;
  flex-shrink: 0;
}

/* ─── ⑧ プロフィール ─── */
.lp-profile-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 36px 40px;
  margin-top: 16px;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 36px;
  align-items: start;
}
.lp-profile-quals {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 240px;
}
.lp-profile-qual-item {
  font-size: 12px;
  color: var(--ink-mid);
  padding: 8px 12px;
  background: var(--pale2);
  border-radius: 4px;
  border-left: 3px solid var(--base);
  line-height: 1.6;
}
.lp-profile-body {
  font-size: 13px;
  color: var(--ink-mid);
  line-height: 2.1;
}
.lp-profile-body p + p {
  margin-top: 16px;
}
.lp-profile-link {
  display: inline-block;
  margin-top: 20px;
  font-size: 12px;
  color: var(--base);
  text-decoration: none;
  border-bottom: 1px solid var(--border2);
  padding-bottom: 2px;
  transition: border-color .2s, color .2s;
}
.lp-profile-link:hover {
  color: var(--bright);
  border-color: var(--bright);
}

/* ─── ⑩ お問い合わせ ─── */
.lp-contact-section {
  background: var(--pale2);
}
.lp-contact-message {
  font-family: var(--serif-jp);
  font-size: clamp(18px, 2.2vw, 26px);
  font-weight: 500;
  color: var(--base);
  letter-spacing: .1em;
  margin-bottom: 12px;
}
.lp-contact-sub {
  font-size: 14px;
  color: var(--ink-mid);
  line-height: 2;
  margin-bottom: 36px;
}
.lp-contact-free {
  font-size: 12px;
  color: var(--ink-lt);
  margin-top: 12px;
}

/* ─── 本体サイトリンク ─── */
.lp-site-link-bar {
  background: rgba(247,245,240,0.96);
  border-bottom: 1px solid var(--border);
  padding: 12px 48px;
  font-size: 11px;
  color: var(--ink-lt);
  display: flex;
  align-items: center;
  gap: 8px;
  position: sticky;
  top: 68px;
  z-index: 200;
  backdrop-filter: blur(6px);
}
.lp-site-link-bar a {
  color: var(--base);
  text-decoration: none;
  font-weight: 500;
}
.lp-site-link-bar a:hover {
  text-decoration: underline;
}
.lp-site-link-bar::before {
  content: '←';
  font-size: 11px;
}

/* ─── レスポンシブ ─── */
@media (max-width: 960px) {
  .lp-hero-content { padding: 80px 24px; }
  .lp-section { padding: 64px 24px; }
  .lp-step { grid-template-columns: 1fr; gap: 12px; padding: 28px 24px; }
  .lp-step-left { flex-direction: row; align-items: center; gap: 12px; }
  .lp-pricing-grid { grid-template-columns: 1fr; }
  .lp-profile-box { grid-template-columns: 1fr; gap: 24px; }
  .lp-site-link-bar { padding: 12px 24px; top: 56px; }
  .lp-hero-title { font-size: clamp(22px, 5vw, 36px); }
  .lp-pricing-card > div[style*="grid-template-columns"] { grid-template-columns: 1fr !important; }
}
@media (max-width: 480px) {
  .lp-hero-content { padding: 64px 20px; }
  .lp-section { padding: 52px 20px; }
  .lp-step { padding: 24px 20px; }
  .lp-profile-box { padding: 28px 20px; }
  .lp-hero-title { font-size: clamp(20px, 6vw, 28px); }
  .lp-step-label { white-space: normal; }
}


