/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-text: #1f2937;
  --color-text-light: #6b7280;
  --color-bg: #ffffff;
  --color-bg-alt: #f9fafb;
  --color-border: #e5e7eb;
  --font-family: 'Noto Sans JP', sans-serif;
  --container-width: 1200px;
  --header-height: 80px;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-family);
  font-size: 16px;
  line-height: 1.8;
  color: var(--color-text);
  background-color: var(--color-bg);
}

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

a {
  color: var(--color-primary);
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: var(--color-primary-dark);
}

/* Container */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  background: transparent;
  border-bottom: none;
  z-index: 1000;
  transition: background 0.3s ease, border-color 0.3s ease;
}

.site-header.scrolled {
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  display: flex;
  align-items: center;
}

.logo img {
  height: 50px;
  width: auto;
}

/* Main Content */
main {
  margin-top: var(--header-height);
}


/* Page Content */
.page-content {
  padding: 60px 0;
}

.page-header {
  margin-bottom: 3rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--color-border);
}

.page-header h1 {
  font-size: 2rem;
  font-weight: 700;
}

.content h2 {
  font-size: 1.5rem;
  margin: 2rem 0 1rem;
  text-align: left;
}

.content h3 {
  font-size: 1.25rem;
  margin: 1.5rem 0 0.75rem;
}

.content p {
  margin-bottom: 1rem;
}

.content ul, .content ol {
  margin: 1rem 0;
  padding-left: 1.5rem;
}

.content li {
  margin-bottom: 0.5rem;
}

/* Apps Section */
.apps-section {
  padding: 80px 0;
  background: var(--color-bg-alt);
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 3rem;
  color: var(--color-text);
  position: relative;
}

.section-title::after {
  content: '';
  display: block;
  width: 40px;
  height: 3px;
  background: var(--color-primary);
  margin: 0.75rem auto 0;
  border-radius: 2px;
}

.section-description {
  text-align: center;
  color: var(--color-text-light);
  margin-bottom: 3rem;
  font-size: 1.1rem;
}

.platform-heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 1.5rem;
}

.platform-heading:not(:first-of-type) {
  margin-top: 3rem;
}

.platform-icon {
  width: 1.25em;
  height: 1.25em;
  flex-shrink: 0;
}

.app-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 1.5rem;
  max-width: 900px;
  margin: 0 auto;
}

.app-card {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 1.5rem;
  color: var(--color-text);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.app-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
  color: var(--color-text);
}

.app-card-icon {
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, #eff6ff, #dbeafe);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}

.app-card-icon svg {
  width: 28px;
  height: 28px;
}

.app-card-icon img {
  width: 40px;
  height: 40px;
  border-radius: 8px;
}

.app-card-body {
  flex: 1;
  min-width: 0;
}

.app-card-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.app-card-description {
  font-size: 0.875rem;
  color: var(--color-text-light);
  line-height: 1.6;
  margin: 0;
}

.app-card-arrow {
  flex-shrink: 0;
  color: var(--color-border);
  transition: color 0.2s ease, transform 0.2s ease;
}

.app-card-arrow svg {
  width: 20px;
  height: 20px;
}

.app-card:hover .app-card-arrow {
  color: var(--color-primary);
  transform: translateX(3px);
}

/* Footer */
.site-footer {
  background: var(--color-text);
  color: #fff;
  padding: 30px 0;
}

.copyright {
  text-align: center;
  opacity: 0.6;
  font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 768px) {
  :root {
    --header-height: 60px;
  }

  .logo img {
    height: 35px;
  }

  .page-content {
    padding: 40px 0;
  }

  .page-header h1 {
    font-size: 1.5rem;
  }

  .content h2 {
    font-size: 1.25rem;
  }

  .apps-section {
    padding: 50px 0;
  }

  .app-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }
}

/* ==================== Landing Page (ASIDORI) ==================== */

.lp-hero {
  text-align: center;
  padding: 80px 0 60px;
  background: var(--color-bg-alt);
}
.lp-hero-inner {
  max-width: 700px;
}
.lp-hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 20px;
  margin-bottom: 20px;
}
.lp-hero-title {
  font-size: 2.5rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
}
.lp-hero-catchcopy {
  font-size: 1.2rem;
  color: var(--color-primary);
  font-weight: 500;
  margin-bottom: 16px;
}
.lp-hero-lead {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}

.lp-cta-button {
  display: inline-block;
  padding: 14px 36px;
  background: var(--color-primary);
  color: #fff;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  font-size: 1rem;
  transition: background 0.2s;
}
.lp-cta-button:hover {
  background: var(--color-primary-dark);
}

.lp-section {
  padding: 60px 0;
}
.lp-section-alt {
  background: var(--color-bg-alt);
}
.lp-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}

/* Features */
.lp-feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.lp-feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
}
.lp-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: var(--color-primary);
}
.lp-feature-icon svg {
  width: 100%;
  height: 100%;
}
.lp-feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.lp-feature-description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Screenshots */
.lp-screenshots {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.lp-screenshot {
  text-align: center;
}
.lp-screenshot img {
  width: 100%;
  border-radius: 0;
  border: 1px solid var(--color-border);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
}
.lp-screenshot figcaption {
  margin-top: 10px;
  font-size: 0.85rem;
  color: var(--color-text-light);
}

/* Screenshot Hero (single large) */
.lp-screenshot-hero {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}
.lp-screenshot-hero img {
  width: 100%;
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.lp-screenshot-hero figcaption {
  margin-top: 12px;
  font-size: 0.9rem;
  color: var(--color-text-light);
}

/* Steps */
.lp-steps {
  max-width: 600px;
  margin: 0 auto;
}
.lp-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.lp-step:last-child {
  margin-bottom: 0;
}
.lp-step-number {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--color-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.lp-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.lp-step-description {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Target Users */
.lp-target-list {
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.lp-target-list li {
  padding: 12px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  text-align: center;
}
.lp-target-list li:last-child {
  border-bottom: none;
}

/* FAQ */
.lp-faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.lp-faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.lp-faq-question {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}
.lp-faq-question::-webkit-details-marker {
  display: none;
}
.lp-faq-question::before {
  content: "Q. ";
  color: var(--color-primary);
  font-weight: 700;
}
.lp-faq-answer {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Apply */
.lp-apply-box {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.lp-coming-soon {
  display: inline-block;
  padding: 12px 32px;
  background: var(--color-border);
  color: var(--color-text-light);
  border-radius: 8px;
  font-weight: 500;
  font-size: 1rem;
}
.lp-apply-description {
  font-size: 0.95rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 24px;
}

@media (max-width: 768px) {
  .lp-hero-title {
    font-size: 2rem;
  }
  .lp-feature-grid {
    grid-template-columns: 1fr;
  }
}

/* ==================== Landing Page (Bousaisi Exam Prep) ==================== */

.bp-hero {
  text-align: center;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fff7ed 0%, #fef3c7 100%);
}
.bp-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.bp-hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.bp-hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}
.bp-hero-catchcopy {
  font-size: 1.2rem;
  color: #d97706;
  font-weight: 600;
  margin-bottom: 16px;
}
.bp-hero-lead {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.bp-hero-cta {
  margin-top: 8px;
}
.bp-appstore-badge img {
  height: 48px;
  transition: opacity 0.2s;
}
.bp-appstore-badge:hover img {
  opacity: 0.8;
}
.bp-coming-soon {
  display: inline-block;
  padding: 12px 32px;
  background: #d97706;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.bp-section {
  padding: 64px 0;
}
.bp-section-alt {
  background: var(--color-bg-alt);
}
.bp-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text);
}

/* Features */
.bp-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}
.bp-feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.bp-feature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.bp-feature-emoji {
  width: 48px;
  height: 48px;
  margin: 0 auto 12px;
  color: #d97706;
}
.bp-feature-emoji svg {
  width: 100%;
  height: 100%;
}
.bp-feature-emoji {
  margin-bottom: 12px;
}
.bp-feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.bp-feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Note */
p.bp-note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 0;
  line-height: 1.8;
}

/* Screenshot */
.bp-screenshot-block {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.bp-screenshot-image {
  flex-shrink: 0;
  width: 260px;
}
.bp-screenshot-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.bp-screenshot-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}
.bp-screenshot-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

@media (max-width: 768px) {
  .bp-screenshot-block {
    flex-direction: column;
    text-align: center;
  }
  .bp-screenshot-image {
    width: 200px;
  }
}

/* Steps */
.bp-steps {
  max-width: 600px;
  margin: 0 auto;
}
.bp-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.bp-step:last-child {
  margin-bottom: 0;
}
.bp-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #d97706;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.bp-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.bp-step-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Target Users */
.bp-target-list {
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.bp-target-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  text-align: center;
}
.bp-target-list li::before {
  content: "\2714\0020";
  color: #d97706;
  font-weight: 700;
}
.bp-target-list li:last-child {
  border-bottom: none;
}

/* Pricing */
.bp-pricing-box {
  max-width: 400px;
  margin: 0 auto;
  text-align: center;
  background: var(--color-bg);
  border: 2px solid #d97706;
  border-radius: 16px;
  padding: 40px 32px;
}
.bp-pricing-price {
  font-size: 2rem;
  font-weight: 700;
  color: #d97706;
  margin-bottom: 8px;
}
.bp-pricing-note {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* FAQ */
.bp-faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.bp-faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.bp-faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}
.bp-faq-q::-webkit-details-marker {
  display: none;
}
.bp-faq-q::before {
  content: "Q. ";
  color: #d97706;
  font-weight: 700;
}
.bp-faq-a {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* CTA */
.bp-cta-section {
  text-align: center;
  padding: 48px 0;
}
.bp-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-text);
}

@media (max-width: 768px) {
  .bp-hero-title {
    font-size: 1.75rem;
  }
  .bp-feature-grid {
    grid-template-columns: 1fr;
  }
  .bp-hero {
    padding: 60px 0 40px;
  }
}

/* ==================== Landing Page (CPR Rhythm) ==================== */

.cr-hero {
  text-align: center;
  padding: 80px 0 60px;
  background: linear-gradient(135deg, #fef2f2 0%, #fecaca 100%);
}
.cr-hero-inner {
  max-width: 700px;
  margin: 0 auto;
}
.cr-hero-icon {
  width: 100px;
  height: 100px;
  border-radius: 22px;
  margin-bottom: 24px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
}
.cr-hero-title {
  font-size: 2.2rem;
  font-weight: 700;
  margin-bottom: 12px;
  color: var(--color-text);
}
.cr-hero-catchcopy {
  font-size: 1.2rem;
  color: #dc2626;
  font-weight: 600;
  margin-bottom: 16px;
}
.cr-hero-lead {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
  margin-bottom: 32px;
}
.cr-hero-cta {
  margin-top: 8px;
}
.cr-coming-soon {
  display: inline-block;
  padding: 12px 32px;
  background: #dc2626;
  color: #fff;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
}

.cr-section {
  padding: 64px 0;
}
.cr-section-alt {
  background: var(--color-bg-alt);
}
.cr-section-title {
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
  color: var(--color-text);
}

/* Features */
.cr-feature-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.cr-feature-card {
  background: var(--color-bg);
  border: 1px solid var(--color-border);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: box-shadow 0.2s;
}
.cr-feature-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
}
.cr-feature-icon {
  width: 48px;
  height: 48px;
  margin: 0 auto 16px;
  color: #dc2626;
}
.cr-feature-icon svg {
  width: 100%;
  height: 100%;
}
.cr-feature-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 8px;
}
.cr-feature-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Note */
p.cr-note {
  text-align: center;
  font-size: 1.05rem;
  color: var(--color-text);
  font-weight: 500;
  max-width: 600px;
  margin: 0 auto;
  padding: 24px 0;
  line-height: 1.8;
}

/* Screenshot */
.cr-screenshot-block {
  display: flex;
  align-items: center;
  gap: 48px;
  max-width: 800px;
  margin: 0 auto;
}
.cr-screenshot-image {
  flex-shrink: 0;
  width: 260px;
}
.cr-screenshot-image img {
  width: 100%;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
}
.cr-screenshot-heading {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--color-text);
}
.cr-screenshot-desc {
  font-size: 1rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Steps */
.cr-steps {
  max-width: 600px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.cr-step {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  margin-bottom: 32px;
}
.cr-step:last-child {
  margin-bottom: 0;
}
.cr-step-num {
  flex-shrink: 0;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #dc2626;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.1rem;
}
.cr-step-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 4px;
}
.cr-step-desc {
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.7;
}

/* Target Users */
.cr-target-list {
  max-width: 500px;
  margin: 0 auto;
  list-style: none;
  padding: 0;
}
.cr-target-list li {
  padding: 14px 0;
  border-bottom: 1px solid var(--color-border);
  font-size: 1rem;
  text-align: center;
}
.cr-target-list li::before {
  content: "\2764\0020";
  color: #dc2626;
  font-weight: 700;
}
.cr-target-list li:last-child {
  border-bottom: none;
}

/* FAQ */
.cr-faq-list {
  max-width: 700px;
  margin: 0 auto;
}
.cr-faq-item {
  border: 1px solid var(--color-border);
  border-radius: 8px;
  margin-bottom: 12px;
  overflow: hidden;
}
.cr-faq-q {
  padding: 16px 20px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  list-style: none;
}
.cr-faq-q::-webkit-details-marker {
  display: none;
}
.cr-faq-q::before {
  content: "Q. ";
  color: #dc2626;
  font-weight: 700;
}
.cr-faq-a {
  padding: 0 20px 16px;
  font-size: 0.9rem;
  color: var(--color-text-light);
  line-height: 1.8;
}

/* Focus */
.cr-faq-q:focus-visible {
  outline: 3px solid #dc2626;
  outline-offset: -3px;
}
.cr-hero-cta a:focus-visible,
.cr-cta-section a:focus-visible {
  outline: 3px solid #dc2626;
  outline-offset: 3px;
  border-radius: 4px;
}

/* CTA */
.cr-cta-section {
  text-align: center;
  padding: 48px 0;
}
.cr-cta-text {
  font-size: 1.1rem;
  font-weight: 600;
  margin-bottom: 24px;
  color: var(--color-text);
}
.cr-cta-links,
.bp-cta-links {
  margin-top: 16px;
  font-size: 0.95rem;
}
.cr-cta-links a,
.bp-cta-links a {
  color: var(--color-text-light);
  text-decoration: underline;
}

/* ==================== Landing Page (Dokukeshi) ==================== */

.dokukeshi-page {
  background:
    radial-gradient(circle at top, rgba(168, 85, 247, 0.14), transparent 40%),
    linear-gradient(180deg, #faf5ff 0%, #f3e8ff 100%);
}
.dokukeshi-page .cr-hero {
  background: linear-gradient(135deg, #2e1065 0%, #5b21b6 55%, #7c3aed 100%);
  color: #f5f3ff;
}
.dokukeshi-page .cr-hero-title,
.dokukeshi-page .cr-hero-lead,
.dokukeshi-page .cr-section-title,
.dokukeshi-page .cr-feature-title,
.dokukeshi-page .cr-step-title,
.dokukeshi-page .cr-screenshot-heading,
.dokukeshi-page .cr-cta-text {
  color: inherit;
}
.dokukeshi-page .cr-hero-catchcopy {
  color: #e9d5ff;
}
.dokukeshi-page .cr-hero-lead,
.dokukeshi-page .cr-feature-desc,
.dokukeshi-page .cr-step-desc,
.dokukeshi-page .cr-screenshot-desc,
.dokukeshi-page .cr-faq-a {
  color: rgba(250, 245, 255, 0.82);
}
.dokukeshi-page .cr-section-alt {
  background: rgba(255, 255, 255, 0.36);
}
.dokukeshi-page .cr-section-title {
  color: #4c1d95;
}
.dokukeshi-page .cr-feature-card,
.dokukeshi-page .cr-faq-item,
.dokukeshi-page .cr-screenshot-image img {
  background: rgba(255, 255, 255, 0.72);
  border-color: rgba(124, 58, 237, 0.16);
  box-shadow: 0 10px 28px rgba(91, 33, 182, 0.08);
}
.dokukeshi-page .cr-feature-card:hover {
  box-shadow: 0 12px 30px rgba(91, 33, 182, 0.16);
}
.dokukeshi-page p.cr-note,
.dokukeshi-page .cr-feature-title,
.dokukeshi-page .cr-step-title,
.dokukeshi-page .cr-screenshot-heading,
.dokukeshi-page .cr-faq-q,
.dokukeshi-page .cr-cta-text {
  color: #3b1f63;
}
.dokukeshi-page .cr-feature-desc,
.dokukeshi-page .cr-step-desc,
.dokukeshi-page .cr-screenshot-desc,
.dokukeshi-page .cr-faq-a {
  color: #5f4b7a;
}
.dokukeshi-page .cr-cta-links {
  color: #6b4aa1;
}
.dokukeshi-page .cr-cta-links a {
  color: #5b21b6;
}
.dokukeshi-page .cr-cta-links a:hover {
  color: #4c1d95;
}
.dokukeshi-page .cr-feature-icon {
  color: #7c3aed;
  text-shadow: 0 0 16px rgba(124, 58, 237, 0.22);
  width: 48px;
  height: 48px;
}
.dokukeshi-page .cr-feature-icon svg {
  width: 100%;
  height: 100%;
}
.dokukeshi-page .cr-step-num {
  background: linear-gradient(135deg, #7c3aed, #c084fc);
}
.dokukeshi-page .cr-target-list li::before,
.dokukeshi-page .cr-faq-q::before {
  color: #22c55e;
}
.dokukeshi-page .cr-faq-q:focus-visible,
.dokukeshi-page .cr-hero-cta a:focus-visible,
.dokukeshi-page .cr-cta-section a:focus-visible {
  outline-color: #c084fc;
}
.dokukeshi-page .lp-cta-button {
  background: linear-gradient(135deg, #7c3aed, #a855f7);
  color: #fff;
}
.dokukeshi-page .lp-cta-button:hover {
  color: #fff;
  box-shadow: 0 10px 24px rgba(124, 58, 237, 0.28);
}

@media (max-width: 768px) {
  .cr-hero {
    padding: 60px 0 40px;
  }
  .cr-hero-title {
    font-size: 1.75rem;
  }
  .cr-hero-lead {
    text-align: left;
  }
  .cr-feature-grid {
    grid-template-columns: 1fr;
  }
  .cr-feature-desc {
    text-align: left;
  }
  .cr-screenshot-block {
    flex-direction: column;
    text-align: center;
  }
  .cr-screenshot-image {
    width: 200px;
  }
  .cr-screenshot-desc {
    text-align: left;
  }
  p.cr-note {
    text-align: left;
  }
  .cr-target-list li {
    text-align: left;
  }
  .cr-step-desc {
    text-align: left;
  }
}
