/* ========================================
   RESET & BASE
======================================== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue-main: #3B6FD4;
  --blue-light: #5A8CE6;
  --blue-pale: #E4EDFB;
  --purple-main: #6B5CC8;
  --purple-light: #8B7DD9;
  --purple-pale: #EEEBF7;
  --pink-accent: #9474D0;
  --gradient-main: linear-gradient(135deg, #3B6FD4 0%, #6B5CC8 50%, #8B6FD6 100%);
  --gradient-soft: linear-gradient(135deg, #5A8CE6 0%, #8B7DD9 100%);
  --gradient-hero: linear-gradient(160deg, #3060C8 0%, #5B58C8 35%, #7560D0 65%, #8B6FD6 100%);
  --lavender-bg: #F0EDF8;
  --dark-bg: #181830;
  --dark-card: #242444;
  --text-primary: #2A2A42;
  --text-secondary: #55557A;
  --text-muted: #8888A8;
  --white: #FFFFFF;
  --border-light: #DDDAEA;
  --font-jp: 'Zen Kaku Gothic New', 'Noto Sans JP', sans-serif;
  --font-en: 'DM Sans', sans-serif;
  --shadow-sm: 0 2px 8px rgba(60, 55, 140, 0.07);
  --shadow-md: 0 4px 20px rgba(60, 55, 140, 0.12);
  --shadow-lg: 0 8px 40px rgba(60, 55, 140, 0.16);
  --radius: 12px;
  --radius-lg: 20px;
  --section-py: 100px;
  --max-w: 1100px;
}

html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-jp);
  color: var(--text-primary);
  line-height: 1.8;
  background: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }

/* ========================================
   HEADER
======================================== */
.as-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(75, 65, 130, 0.06);
  transition: box-shadow 0.3s;
}
.as-header.scrolled { box-shadow: var(--shadow-sm); }
.as-header-inner {
  max-width: var(--max-w); margin: 0 auto; padding: 0 24px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.as-header-logo { position: relative; display: inline-block; padding-bottom: 6px; overflow: visible; }
.as-logo-text {
  font-family: 'M PLUS Rounded 1c', sans-serif;
  font-weight: 900; font-size: 22px;
  letter-spacing: 0.01em; line-height: 1;
  color: #2C2C2A; text-decoration: none;
}
.as-header-logo::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: -15%; height: 4px;
  background: var(--gradient-soft);
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.as-logo-text-footer {
  font-size: 18px; color: rgba(255,255,255,0.85); text-decoration: none;
  position: relative; display: inline-block; padding-bottom: 6px;
}
.as-logo-text-footer::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: -15%; height: 3px;
  background: var(--gradient-soft); opacity: 0.6;
  border-radius: 0 0 50% 50% / 0 0 100% 100%;
}
.as-header-nav { display: flex; align-items: center; gap: 28px; }
.as-header-nav a {
  font-size: 13px; font-weight: 500; color: var(--text-secondary);
  transition: color 0.2s; letter-spacing: 0.02em;
}
.as-header-nav a:hover { color: var(--purple-main); }
.as-header-cta {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--gradient-main); color: var(--white) !important;
  padding: 8px 20px; border-radius: 50px; font-size: 13px; font-weight: 700;
  transition: opacity 0.2s, transform 0.2s;
}
.as-header-cta:hover { opacity: 0.9; transform: translateY(-1px); }

/* Hamburger */
.as-hamburger {
  display: none; flex-direction: column; gap: 5px; cursor: pointer;
  width: 28px; height: 20px; position: relative; z-index: 1001;
}
.as-hamburger span {
  display: block; height: 2px; background: var(--text-primary);
  border-radius: 2px; transition: 0.3s;
}
.as-hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.as-hamburger.open span:nth-child(2) { opacity: 0; }
.as-hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.as-mobile-menu {
  display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(255,255,255,0.97); z-index: 999;
  flex-direction: column; align-items: center; justify-content: center; gap: 32px;
}
.as-mobile-menu.open { display: flex; }
.as-mobile-menu a { font-size: 18px; font-weight: 500; color: var(--text-primary); }

/* ========================================
   HERO
======================================== */
.as-hero {
  position: relative; overflow: hidden;
  min-height: 520px; display: flex; align-items: center; justify-content: center;
  text-align: center; color: var(--white);
  padding: 160px 0 100px;
}
.as-hero-bg {
  position: absolute; inset: 0; z-index: 0;
}
.as-hero-bg img {
  width: 100%; height: 100%; object-fit: cover;
  filter: brightness(0.75);
}
.as-hero-bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg,
    rgba(59, 111, 212, 0.42) 0%,
    rgba(91, 88, 200, 0.38) 35%,
    rgba(107, 92, 200, 0.34) 65%,
    rgba(139, 111, 214, 0.28) 100%
  );
}
.as-hero-content { position: relative; z-index: 1; }
.as-hero-org {
  display: inline-block; font-size: 13px; font-weight: 500;
  letter-spacing: 0.1em; margin-bottom: 16px;
  opacity: 0.95;
  background: rgba(0,0,0,0.2); padding: 6px 20px;
  border-radius: 50px; backdrop-filter: blur(6px);
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.as-hero h1 {
  font-size: 46px; font-weight: 700; letter-spacing: 0.06em;
  line-height: 1.35; margin-bottom: 20px;
  text-shadow: 0 2px 24px rgba(0,0,0,0.35), 0 1px 4px rgba(0,0,0,0.2);
}
.as-hero-sub {
  font-size: 17px; line-height: 1.9; opacity: 0.95;
  max-width: 560px; margin: 0 auto 40px;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3), 0 1px 3px rgba(0,0,0,0.15);
}
.as-hero-badges {
  display: flex; gap: 16px; justify-content: center;
  margin-top: 40px; flex-wrap: wrap;
}
.as-hero-badge {
  display: flex; align-items: center; gap: 8px;
  background: rgba(0,0,0,0.22); backdrop-filter: blur(8px);
  padding: 10px 20px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.2);
  font-size: 13px; font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.2);
}
.as-hero-badge .badge-icon {
  width: 28px; height: 28px; border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: flex; align-items: center; justify-content: center;
  font-size: 14px;
}

/* Buttons */
.as-btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--white); color: var(--purple-main);
  padding: 14px 36px; border-radius: 50px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.as-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.18); }
.as-btn-primary .arrow { font-size: 18px; transition: transform 0.2s; }
.as-btn-primary:hover .arrow { transform: translateX(4px); }

.as-btn-gradient {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--gradient-main); color: var(--white);
  padding: 16px 40px; border-radius: 50px;
  font-size: 15px; font-weight: 700; letter-spacing: 0.04em;
  transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 20px rgba(107, 92, 200, 0.3);
  border: none; cursor: pointer;
}
.as-btn-gradient:hover { transform: translateY(-2px); box-shadow: 0 6px 28px rgba(107, 92, 200, 0.4); }

/* ========================================
   SECTION COMMON
======================================== */
.as-section { padding: var(--section-py) 0; }
.as-section-lavender { background: var(--lavender-bg); }
.as-section-dark { background: var(--dark-bg); color: var(--white); }

.as-section-label {
  display: inline-block; font-family: var(--font-en);
  font-size: 12px; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; color: var(--purple-main);
  margin-bottom: 12px;
}
.as-section-dark .as-section-label { color: var(--purple-light); }

.as-section-title {
  font-size: 28px; font-weight: 700; line-height: 1.5;
  letter-spacing: 0.04em; margin-bottom: 20px;
}
.as-section-desc {
  font-size: 15px; color: var(--text-secondary); line-height: 1.8;
  max-width: 680px;
}
.as-section-center { text-align: center; }
.as-section-center .as-section-desc { margin: 0 auto; }

/* ========================================
   ABOUT
======================================== */
.as-about-text {
  max-width: 700px; margin: 0 auto;
  text-align: center; font-size: 16px; line-height: 2;
  color: var(--text-secondary);
}

/* ========================================
   PAIN POINTS
======================================== */
.as-pain-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 20px; margin-top: 48px;
}
.as-pain-card {
  background: var(--white); border-radius: var(--radius);
  padding: 32px 28px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  display: flex; gap: 20px; align-items: flex-start;
  transition: transform 0.2s, box-shadow 0.2s;
}
.as-pain-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.as-pain-icon {
  flex-shrink: 0; width: 48px; height: 48px; border-radius: 12px;
  background: var(--gradient-soft); display: flex; align-items: center; justify-content: center;
  font-size: 22px; color: var(--white);
}
.as-pain-card h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 8px;
  color: var(--purple-main);
}
.as-pain-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.7; }

/* ========================================
   FLOW
======================================== */
.as-flow-steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 32px; margin-top: 48px;
}
.as-flow-step { text-align: center; }
.as-flow-step-num {
  font-family: var(--font-en); font-size: 13px; font-weight: 700;
  color: var(--purple-main); letter-spacing: 0.1em; margin-bottom: 16px;
}
.as-flow-step-img {
  width: 100%; aspect-ratio: 4/3; object-fit: cover;
  border-radius: var(--radius); margin-bottom: 20px;
  box-shadow: var(--shadow-sm);
}
.as-flow-step h3 {
  font-size: 16px; font-weight: 700; margin-bottom: 12px;
  line-height: 1.5;
}
.as-flow-step p { font-size: 14px; color: var(--text-secondary); text-align: left; }

/* ========================================
   FEATURES
======================================== */
.as-features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.as-feature-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 28px; text-align: center;
  border: 1px solid var(--border-light);
  box-shadow: var(--shadow-sm);
  transition: transform 0.2s, box-shadow 0.2s;
}
.as-feature-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.as-feature-num {
  font-family: var(--font-en); font-size: 12px; font-weight: 700;
  letter-spacing: 0.15em; color: var(--purple-main);
  margin-bottom: 16px;
}
.as-feature-icon {
  width: 64px; height: 64px; border-radius: 16px;
  background: var(--gradient-soft);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px; color: var(--white);
}
.as-feature-card h3 {
  font-size: 17px; font-weight: 700; margin-bottom: 16px;
  line-height: 1.5;
}
.as-feature-card p { font-size: 14px; color: var(--text-secondary); text-align: left; }

/* ========================================
   BENEFITS
======================================== */
.as-benefits-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.as-benefit-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.as-benefit-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.as-benefit-img {
  width: 100%; height: 180px; object-fit: cover;
}
.as-benefit-body { padding: 24px; }
.as-benefit-body h3 { font-size: 16px; font-weight: 700; margin-bottom: 12px; line-height: 1.5; }
.as-benefit-body p { font-size: 14px; color: var(--text-secondary); }

/* ========================================
   CTA SECTION
======================================== */
.as-cta-section {
  padding: 60px 0;
  background: var(--gradient-main);
  text-align: center; color: var(--white);
}
.as-cta-section h2 { font-size: 24px; font-weight: 700; margin-bottom: 12px; }
.as-cta-section p { font-size: 15px; opacity: 0.9; margin-bottom: 28px; }

/* ========================================
   REFERENCES
======================================== */
.as-ref-list { margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.as-ref-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 0; border-bottom: 1px solid var(--border-light);
}
.as-ref-item:first-child { border-top: 1px solid var(--border-light); }
.as-ref-date {
  font-family: var(--font-en); font-size: 13px; color: var(--text-muted);
  font-weight: 500; flex-shrink: 0; width: 100px;
}
.as-ref-title {
  font-size: 15px; font-weight: 500; flex: 1;
  color: var(--text-primary); text-decoration: none;
  transition: color 0.2s;
}
.as-ref-title:hover { color: var(--purple-main); text-decoration: underline; }
.as-ref-link {
  font-size: 13px; font-weight: 700; color: var(--purple-main);
  flex-shrink: 0; margin-left: 16px;
  transition: opacity 0.2s;
}
.as-ref-link:hover { opacity: 0.7; }

/* ========================================
   VOICES
======================================== */
.as-voice-list {
  margin-top: 48px; display: flex; flex-direction: column; gap: 20px;
  max-width: 700px; margin-left: auto; margin-right: auto;
}
.as-voice-item {
  background: var(--white); padding: 24px 28px;
  border-radius: var(--radius); border-left: 4px solid var(--purple-main);
  box-shadow: var(--shadow-sm);
}
.as-voice-item p { font-size: 15px; line-height: 1.8; }

.as-stats-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; margin-top: 48px;
}
.as-stat-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 36px 20px; text-align: center;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.as-stat-card h4 {
  font-size: 13px; font-weight: 700; color: var(--text-secondary);
  margin-bottom: 12px;
}
.as-stat-number {
  font-family: var(--font-en); font-size: 56px; font-weight: 700;
  background: var(--gradient-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1; margin-bottom: 4px;
}
.as-stat-unit { font-size: 18px; font-weight: 700; color: var(--purple-main); }
.as-stat-desc { font-size: 12px; color: var(--text-muted); margin-top: 8px; }

/* ========================================
   CLIENTS
======================================== */
.as-clients-grid {
  display: grid; grid-template-columns: repeat(5, 1fr);
  gap: 16px; margin-top: 48px;
}
.as-client-card {
  display: block; text-decoration: none; color: inherit;
  background: var(--white); border-radius: var(--radius);
  padding: 20px 12px; text-align: center;
  border: 1px solid var(--border-light);
  transition: transform 0.2s, box-shadow 0.2s;
}
.as-client-card:hover { transform: translateY(-2px); box-shadow: var(--shadow-md); }
.as-client-card img {
  height: 40px; max-width: 100%; object-fit: contain; margin: 0 auto 12px;
}
.as-client-card h4 { font-size: 12px; font-weight: 700; line-height: 1.4; margin-bottom: 4px; }
.as-client-card span { font-size: 11px; color: var(--text-muted); }

/* ========================================
   PROFILE (Dark)
======================================== */
.as-profile-grid {
  display: grid; grid-template-columns: 280px 1fr;
  gap: 48px; align-items: center; margin-top: 48px;
  max-width: 800px; margin-left: auto; margin-right: auto;
}
.as-profile-img {
  width: 280px; height: 320px; object-fit: cover;
  border-radius: var(--radius-lg);
}
.as-profile-name {
  font-size: 14px; color: var(--purple-light); font-weight: 500;
  margin-bottom: 8px;
}
.as-profile-name strong {
  display: block; font-size: 22px; color: var(--white);
  margin-top: 4px;
}
.as-profile-list { margin-top: 20px; }
.as-profile-item {
  font-size: 14px; color: rgba(255,255,255,0.8);
  padding: 6px 0 6px 20px; position: relative;
}
.as-profile-item::before {
  content: ''; position: absolute; left: 0; top: 14px;
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--gradient-soft);
}

/* ========================================
   TRAINING
======================================== */
.as-training-box {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 40px; margin-top: 40px; align-items: center;
}
.as-training-img {
  width: 100%; aspect-ratio: 16/10; object-fit: cover;
  border-radius: var(--radius-lg);
}
.as-training-body h3 { font-size: 20px; font-weight: 700; margin-bottom: 16px; line-height: 1.5; }
.as-training-body p { font-size: 14px; color: var(--text-secondary); margin-bottom: 20px; }
.as-training-points { display: flex; flex-direction: column; gap: 10px; margin-top: 16px; }
.as-training-points li {
  display: flex; align-items: center; gap: 10px;
  font-size: 14px; font-weight: 500;
}
.as-training-points li::before {
  content: '✓'; width: 24px; height: 24px; border-radius: 50%;
  background: var(--gradient-soft); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-size: 12px; font-weight: 700; flex-shrink: 0;
}

/* ========================================
   PRICING
======================================== */
.as-pricing-card {
  max-width: 600px; margin: 48px auto 0;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 48px 40px; text-align: center;
  border: 2px solid var(--purple-light);
  box-shadow: var(--shadow-lg);
  position: relative; overflow: hidden;
}
.as-pricing-card::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0;
  height: 6px; background: var(--gradient-main);
}
.as-pricing-label {
  font-size: 14px; font-weight: 700; color: var(--text-secondary);
  margin-bottom: 16px;
}
.as-pricing-amount {
  font-family: var(--font-en); font-size: 52px; font-weight: 700;
  background: var(--gradient-main); -webkit-background-clip: text;
  -webkit-text-fill-color: transparent; background-clip: text;
  line-height: 1;
}
.as-pricing-unit { font-size: 16px; color: var(--text-secondary); margin-top: 4px; }
.as-pricing-note { font-size: 13px; color: var(--text-muted); margin-top: 8px; }
.as-pricing-includes {
  margin-top: 32px; text-align: left;
  border-top: 1px solid var(--border-light); padding-top: 24px;
}
.as-pricing-includes h4 {
  font-size: 14px; font-weight: 700; margin-bottom: 16px;
  text-align: center; color: var(--text-secondary);
}
.as-pricing-includes li {
  font-size: 14px; padding: 8px 0; padding-left: 28px;
  position: relative; color: var(--text-primary);
}
.as-pricing-includes li::before {
  content: '✓'; position: absolute; left: 0; top: 8px;
  color: var(--purple-main); font-weight: 700;
}

/* ========================================
   FAQ
======================================== */
.as-faq-list { margin-top: 48px; max-width: 760px; margin-left: auto; margin-right: auto; }
.as-faq-item {
  background: var(--white); border-radius: var(--radius);
  margin-bottom: 12px; overflow: hidden;
  box-shadow: var(--shadow-sm); border: 1px solid var(--border-light);
}
.as-faq-q {
  display: flex; align-items: center; justify-content: space-between;
  padding: 20px 24px; cursor: pointer; font-size: 15px; font-weight: 700;
  transition: background 0.2s; gap: 16px;
}
.as-faq-q:hover { background: var(--purple-pale); }
.as-faq-q .tag {
  flex-shrink: 0; font-family: var(--font-en); font-size: 12px;
  font-weight: 700; color: var(--purple-main); width: 24px;
}
.as-faq-q .text { flex: 1; }
.as-faq-q .toggle {
  flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%;
  background: var(--purple-pale); display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: var(--purple-main); transition: transform 0.3s;
}
.as-faq-item.open .as-faq-q .toggle { transform: rotate(45deg); }
.as-faq-a {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px; font-size: 14px; color: var(--text-secondary); line-height: 1.8;
}
.as-faq-item.open .as-faq-a {
  max-height: 300px; padding: 0 24px 24px;
}

/* ========================================
   PRESS / BLOG
======================================== */
.as-press-list { margin-top: 40px; max-width: 800px; margin-left: auto; margin-right: auto; }
.as-press-item {
  display: flex; align-items: center; gap: 16px;
  padding: 18px 0; border-bottom: 1px solid var(--border-light);
}
.as-press-item:first-child { border-top: 1px solid var(--border-light); }
.as-press-date {
  font-family: var(--font-en); font-size: 13px; color: var(--text-muted);
  flex-shrink: 0; width: 100px;
}
.as-press-title {
  font-size: 14px; flex: 1;
  color: var(--text-primary); text-decoration: none;
  transition: color 0.2s;
}
.as-press-title:hover { color: var(--purple-main); text-decoration: underline; }
.as-press-link {
  font-size: 13px; color: var(--purple-main); font-weight: 700;
  flex-shrink: 0;
}

.as-videos-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.as-video-card { text-align: center; }
.as-video-wrap {
  position: relative; width: 100%; padding-bottom: 56.25%; /* 16:9 */
  border-radius: var(--radius); overflow: hidden;
  margin-bottom: 12px; background: #1a1a2e;
}
.as-video-wrap iframe {
  position: absolute; top: 0; left: 0;
  width: 100%; height: 100%; border: none;
}
.as-video-card h4 { font-size: 13px; font-weight: 500; line-height: 1.5; }

.as-blog-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 24px; margin-top: 40px;
}
.as-blog-card {
  background: var(--white); border-radius: var(--radius);
  overflow: hidden; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-light);
  transition: transform 0.2s;
}
.as-blog-card:hover { transform: translateY(-2px); }
.as-blog-card img { width: 100%; aspect-ratio: 16/9; object-fit: cover; }
.as-blog-card-body { padding: 16px; }
.as-blog-card-body .date { font-family: var(--font-en); font-size: 12px; color: var(--text-muted); margin-bottom: 6px; }
.as-blog-card-body h4 { font-size: 14px; font-weight: 700; line-height: 1.5; }

/* ========================================
   COMPANY INFO
======================================== */
.as-company-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 48px; margin-top: 48px;
  max-width: 900px; margin-left: auto; margin-right: auto;
}
.as-company-profile {
  display: flex; gap: 16px; align-items: flex-start;
}
.as-company-profile img {
  width: 100px; height: 100px; border-radius: var(--radius);
  object-fit: cover; flex-shrink: 0;
}
.as-company-profile > div {
  min-width: 0; flex: 1; overflow: hidden;
}
.as-company-heading {
  font-size: 16px; font-weight: 700; margin-bottom: 20px;
  color: var(--purple-main);
}
.as-dl { margin: 0; padding: 0; }
.as-dl-row {
  display: flex; gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-light);
}
.as-dl-row dt {
  flex-shrink: 0; width: 80px;
  font-size: 13px; font-weight: 700; color: var(--purple-main);
  white-space: nowrap;
}
.as-dl-row dd {
  flex: 1; min-width: 0;
  font-size: 13px; line-height: 1.6; color: var(--text-primary);
  margin: 0;
}
/* Cocoon footer link override */
body.coconova-assessment-page .as-footer a,
body.coconova-assessment-page .as-footer-links a {
  color: rgba(255,255,255,0.7) !important;
  text-decoration: none !important;
}
body.coconova-assessment-page .as-footer a:hover,
body.coconova-assessment-page .as-footer-links a:hover {
  color: #fff !important;
}

/* ========================================
   CONTACT FORM (Embedded)
======================================== */
.as-contact-section {
  padding: 80px 0;
  background: var(--gradient-hero);
  color: var(--white);
}
.as-contact-form-wrap {
  max-width: 640px; margin: 40px auto 0;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  border-radius: var(--radius-lg);
  padding: 48px 40px;
  border: 1px solid rgba(255,255,255,0.2);
}
.as-form-group { margin-bottom: 24px; }
.as-form-group label {
  display: block; font-size: 14px; font-weight: 700;
  margin-bottom: 8px; color: rgba(255,255,255,0.95);
}
.as-form-group label .req {
  display: inline-block; background: rgba(255,255,255,0.2);
  font-size: 10px; padding: 2px 8px; border-radius: 4px;
  margin-left: 8px; vertical-align: middle;
}
.as-form-input,
.as-form-select,
.as-form-textarea {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 8px; color: var(--white);
  font-family: var(--font-jp); font-size: 14px;
  transition: border-color 0.2s, background 0.2s;
}
.as-form-input::placeholder,
.as-form-textarea::placeholder { color: rgba(255,255,255,0.5); }
.as-form-input:focus,
.as-form-select:focus,
.as-form-textarea:focus {
  outline: none; border-color: rgba(255,255,255,0.6);
  background: rgba(255,255,255,0.2);
}
.as-form-select { appearance: none; cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='white' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
  padding-right: 40px;
}
.as-form-select option { color: var(--text-primary); background: var(--white); }
.as-form-textarea { min-height: 120px; resize: vertical; }
.as-form-checkbox-group {
  display: flex; flex-wrap: wrap; gap: 12px;
}
.as-form-checkbox {
  display: flex; align-items: center; gap: 8px;
  font-size: 14px; cursor: pointer;
}
.as-form-checkbox input[type="checkbox"] {
  width: 18px; height: 18px; accent-color: var(--purple-light);
}
.as-form-submit {
  width: 100%; padding: 16px;
  background: var(--white); color: var(--purple-main);
  border: none; border-radius: 50px;
  font-family: var(--font-jp); font-size: 16px; font-weight: 700;
  cursor: pointer; transition: transform 0.2s, box-shadow 0.2s;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  margin-top: 8px;
}
.as-form-submit:hover { transform: translateY(-2px); box-shadow: 0 6px 24px rgba(0,0,0,0.2); }

/* ========================================
   FOOTER
======================================== */
.as-footer {
  background: var(--dark-bg); color: rgba(255,255,255,0.7);
  padding: 60px 0 32px;
}
.as-footer-inner {
  display: grid; grid-template-columns: 1fr auto;
  gap: 48px; align-items: flex-start;
}
.as-footer-logo { margin-bottom: 16px; }
.as-footer-desc { font-size: 13px; line-height: 1.7; max-width: 300px; color: rgba(255,255,255,0.7); }
.as-footer-links { display: grid; grid-template-columns: auto auto; gap: 12px 48px; }
.as-footer-links a { font-size: 13px; transition: color 0.2s; color: rgba(255,255,255,0.7); text-decoration: none; }
.as-footer-links a:hover { color: var(--white); }
.as-footer-copy {
  margin-top: 48px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 12px; text-align: center; color: rgba(255,255,255,0.4);
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 768px) {
  :root { --section-py: 64px; }
  .as-header-nav { display: none; }
  .as-hamburger { display: flex; }
  .as-hero { padding: 120px 0 64px; min-height: 420px; }
  .as-hero h1 { font-size: 28px; }
  .as-hero-sub { font-size: 14px; }
  .as-hero-bg img { object-position: center 30%; }
  .as-hero-badges { gap: 10px; }
  .as-hero-badge { font-size: 12px; padding: 8px 14px; }
  .as-section-title { font-size: 22px; }
  .as-pain-grid { grid-template-columns: 1fr; }
  .as-flow-steps { grid-template-columns: 1fr; gap: 40px; }
  .as-features-grid { grid-template-columns: 1fr; }
  .as-benefits-grid { grid-template-columns: 1fr; }
  .as-stats-grid { grid-template-columns: 1fr; gap: 16px; }
  .as-clients-grid { grid-template-columns: repeat(2, 1fr); }
  .as-profile-grid { grid-template-columns: 1fr; text-align: center; }
  .as-profile-img { margin: 0 auto; width: 200px; height: 240px; }
  .as-profile-list { text-align: left; }
  .as-training-box { grid-template-columns: 1fr; }
  .as-videos-grid { grid-template-columns: 1fr; }
  .as-blog-grid { grid-template-columns: 1fr; }
  .as-company-grid { grid-template-columns: 1fr; }
  .as-company-profile { flex-direction: column; align-items: center; text-align: left; }
  .as-company-profile img { width: 80px; height: 80px; }
  .as-footer-inner { grid-template-columns: 1fr; }
  .as-contact-form-wrap { padding: 32px 16px; }
  .as-pricing-amount { font-size: 40px; }
  .as-ref-item { flex-direction: column; align-items: flex-start; gap: 4px; }
  .as-press-item { flex-direction: column; align-items: flex-start; gap: 4px; }

  /* Cocoon mobile overrides */
  .container { padding: 0 16px !important; }
  body.coconova-assessment-page .entry-content,
  body.coconova-assessment-page .article,
  body.coconova-assessment-page #content,
  body.coconova-assessment-page #container,
  body.coconova-assessment-page .content-in,
  body.coconova-assessment-page #main,
  body.coconova-assessment-page .main-wrap,
  body.coconova-assessment-page .wrap {
    padding: 0 !important;
    margin: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
    overflow-x: hidden !important;
  }
  body.coconova-assessment-page .content,
  body.coconova-assessment-page .content-in {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

/* ========================================
   COCOON OVERRIDES
   Cocoon親テーマのスタイルが干渉する場合の上書き
======================================== */
body.coconova-assessment-page {
  overflow-x: hidden !important;
}
body.coconova-assessment-page #container,
body.coconova-assessment-page #content,
body.coconova-assessment-page #main,
body.coconova-assessment-page .wrap,
body.coconova-assessment-page .content,
body.coconova-assessment-page .content-in,
body.coconova-assessment-page .main-wrap,
body.coconova-assessment-page #content-in,
body.coconova-assessment-page .article {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
  width: 100% !important;
  float: none !important;
  border: none !important;
  background: transparent !important;
  overflow-x: hidden !important;
}
body.coconova-assessment-page .sidebar,
body.coconova-assessment-page #sidebar,
body.coconova-assessment-page .appeal,
body.coconova-assessment-page .breadcrumb,
body.coconova-assessment-page .date-tags,
body.coconova-assessment-page .author-info,
body.coconova-assessment-page .under-entry-content,
body.coconova-assessment-page .pager-post-navi,
body.coconova-assessment-page .comment-area,
body.coconova-assessment-page .related-entries,
body.coconova-assessment-page .sns-share,
body.coconova-assessment-page .sns-follow,
body.coconova-assessment-page #notice-area,
body.coconova-assessment-page .navi-in,
body.coconova-assessment-page .mobile-menu-buttons,
body.coconova-assessment-page .go-to-top,
body.coconova-assessment-page #navi,
body.coconova-assessment-page .a-wrap,
body.coconova-assessment-page .blogcard,
body.coconova-assessment-page .cocoon-columns,
body.coconova-assessment-page .entry-title,
body.coconova-assessment-page .entry-content > :not(.as-header):not(.as-hero):not(.as-section):not(.as-cta-section):not(.as-contact-section):not(.as-footer) {
  display: none !important;
}
body.coconova-assessment-page .entry-content {
  margin: 0 !important;
  padding: 0 !important;
  max-width: 100% !important;
}
body.coconova-assessment-page .page,
body.coconova-assessment-page .page #content {
  padding: 0 !important;
  margin: 0 !important;
}
/* CF7 form overrides - フォームをLP内のグラスモーフィズムに合わせる */
body.coconova-assessment-page .wpcf7 {
  margin: 0 !important;
  padding: 0 !important;
}
body.coconova-assessment-page .wpcf7-form p {
  margin-bottom: 24px;
  color: rgba(255,255,255,0.95);
}
body.coconova-assessment-page .wpcf7-form label {
  display: block; font-size: 14px; font-weight: 700;
  margin-bottom: 8px; color: rgba(255,255,255,0.95);
}
body.coconova-assessment-page .wpcf7-form-control:not(.wpcf7-submit):not(.wpcf7-checkbox):not(.wpcf7-acceptance) {
  width: 100% !important; padding: 12px 16px !important;
  background: rgba(255,255,255,0.15) !important;
  border: 1px solid rgba(255,255,255,0.3) !important;
  border-radius: 8px !important; color: #fff !important;
  font-family: var(--font-jp) !important; font-size: 14px !important;
}
body.coconova-assessment-page .wpcf7-form-control:focus {
  outline: none !important;
  border-color: rgba(255,255,255,0.6) !important;
  background: rgba(255,255,255,0.2) !important;
}
body.coconova-assessment-page .wpcf7-form-control::placeholder {
  color: rgba(255,255,255,0.5) !important;
}
body.coconova-assessment-page select.wpcf7-form-control {
  appearance: none !important; cursor: pointer !important;
}
body.coconova-assessment-page select.wpcf7-form-control option {
  color: #2A2A42 !important; background: #fff !important;
}
body.coconova-assessment-page .wpcf7-submit {
  width: 100% !important; padding: 16px !important;
  background: var(--white) !important; color: var(--purple-main) !important;
  border: none !important; border-radius: 50px !important;
  font-family: var(--font-jp) !important; font-size: 16px !important;
  font-weight: 700 !important; cursor: pointer !important;
  transition: transform 0.2s, box-shadow 0.2s !important;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12) !important;
  margin-top: 8px !important;
}
body.coconova-assessment-page .wpcf7-submit:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2) !important;
}
body.coconova-assessment-page .wpcf7-list-item {
  display: inline-flex !important; align-items: center !important;
  gap: 6px !important; margin: 0 12px 8px 0 !important;
}
body.coconova-assessment-page .wpcf7-list-item input[type="checkbox"] {
  width: 18px !important; height: 18px !important;
  accent-color: var(--purple-light) !important;
}
body.coconova-assessment-page .wpcf7 .wpcf7-response-output {
  border-color: rgba(255,255,255,0.3) !important;
  color: rgba(255,255,255,0.9) !important;
  background: rgba(255,255,255,0.1) !important;
  border-radius: 8px !important;
}
body.coconova-assessment-page .wpcf7 .wpcf7-not-valid-tip {
  color: #FFB3B3 !important;
}
