* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {

  /* メインカラー */
  --main: #bfa8e6;        /* 薄紫 */
  --main-dark: #9b84d9;   /* 濃い紫 */

  /* 背景カラー */
  --sub: #f7f4ff;         /* 超薄紫 */
  --sub-light: #f1ecff;

  /* アクセント */
  --accent: #6f5ab4;

  /* テキスト */
  --text: #2f2f3a;
  --muted: #6a6a7a;

  /* UI */
  --border: #e6e1f7;
  --white: #ffffff;

  /* デザイン */
  --shadow: 0 10px 30px rgba(90, 70, 160, 0.08);
  --radius: 18px;
}

body {
  font-family: "Hiragino Kaku Gothic ProN", "Yu Gothic", "Meiryo", sans-serif;
  color: var(--text);
  line-height: 1.8;
  background: #fff;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

a {
  text-decoration: none;
  color: inherit;
}

.container {
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
}

.narrow {
  width: min(860px, calc(100% - 32px));
  margin: 0 auto;
}

section {
  padding: 88px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 48px;
}

.section-heading h2 {
  font-size: clamp(28px, 4vw, 40px);
  line-height: 1.4;
  margin-top: 8px;
}

.eyebrow {
  display: inline-block;
  color: var(--main);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.9rem;
}

.section-lead {
  text-align: center;
  color: var(--muted);
  margin-top: 14px;
  margin-bottom: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 700;
  transition: 0.25s ease;
  border: 2px solid transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--main);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--main-dark);
}

.btn-outline {
  border-color: var(--main);
  color: var(--main);
  background: transparent;
}

.btn-outline:hover {
  background: #fff3f8;
}

.btn-light {
  background: var(--white);
  color: var(--main);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid #f1e5eb;
}

.header-inner {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.logo {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--accent);
}

.nav {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
}

.nav a:hover {
  color: var(--main);
}

.hero {
  padding: 72px 0 88px;
  background: linear-gradient(180deg, #fff5f9 0%, #ffffff 100%);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}

.hero-label {
  display: inline-block;
  background: #ffe4ef;
  color: var(--main-dark);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  font-size: clamp(34px, 5vw, 56px);
  line-height: 1.2;
  margin-bottom: 20px;
}

.hero-description {
  color: var(--muted);
  font-size: 1.05rem;
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-image img {
  box-shadow: var(--shadow);
}

.intro {
  background: var(--white);
}

.intro h2 {
  text-align: center;
  font-size: clamp(26px, 3.5vw, 36px);
  margin-bottom: 12px;
}

.intro-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.intro-card {
  background: #fff7fa;
  border: 1px solid #f5d8e6;
  border-radius: var(--radius);
  padding: 24px;
  font-weight: 600;
}

.features {
  background: #fffafc;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow);
  border: 1px solid #f5e4ec;
}

.feature-number {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #ffe2ee;
  color: var(--main-dark);
  font-weight: 800;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
}

.feature-card h3 {
  font-size: 1.2rem;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--muted);
}

.cta-band {
  padding: 40px 0;
  background: linear-gradient(135deg, var(--main) 0%, #f78dbc 100%);
  color: var(--white);
}

.cta-band-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.cta-band h2 {
  font-size: clamp(24px, 3vw, 34px);
  margin-bottom: 8px;
}

.merit-list {
  display: grid;
  gap: 36px;
}

.merit-item {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 32px;
  align-items: center;
  background: #fff;
  border: 1px solid #f1e2ea;
  border-radius: 24px;
  padding: 24px;
  box-shadow: var(--shadow);
}

.merit-item.reverse {
  grid-template-columns: 1fr 420px;
}

.merit-item.reverse .merit-image {
  order: 2;
}

.merit-item.reverse .merit-text {
  order: 1;
}

.merit-text h3 {
  font-size: 1.5rem;
  margin-bottom: 12px;
}

.merit-text p {
  color: var(--muted);
}

.support {
  background: #fff8fb;
}

.support-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.support-card {
  background: var(--white);
  padding: 28px 22px;
  border-radius: var(--radius);
  border: 1px solid #f1e0e8;
  box-shadow: var(--shadow);
}

.support-card h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.support-card p {
  color: var(--muted);
}

.anxiety-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.anxiety-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  background: var(--white);
}

.anxiety-card h3 {
  font-size: 1.15rem;
  margin-bottom: 12px;
}

.anxiety-card p {
  color: var(--muted);
}

.jobs {
  background: #fffafc;
}

.jobs-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.job-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid #f2e3ea;
}

.job-card img {
  border-radius: 0;
  width: 100%;
}

.job-card h3,
.job-card p {
  padding-left: 20px;
  padding-right: 20px;
}

.job-card h3 {
  font-size: 1.15rem;
  padding-top: 18px;
  padding-bottom: 8px;
}

.job-card p {
  color: var(--muted);
  padding-bottom: 22px;
}

.voices-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.voice-card {
  background: #fff7fa;
  border: 1px solid #f3dce7;
  border-radius: var(--radius);
  padding: 28px;
}

.voice-card h3 {
  font-size: 1.15rem;
  margin-bottom: 14px;
}

.voice-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.voice-name {
  color: var(--accent);
  font-weight: 700;
}

.faq {
  background: #fffafc;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: var(--white);
  border: 1px solid #efdfe7;
  border-radius: 14px;
  padding: 18px 20px;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 700;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  margin-top: 14px;
}

.contact {
  padding-top: 72px;
  padding-bottom: 88px;
}

.contact-box {
  background: linear-gradient(135deg, #fff0f6 0%, #ffffff 100%);
  border: 1px solid #f1dfe8;
  border-radius: 28px;
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.contact-text h2 {
  font-size: clamp(26px, 3vw, 38px);
  margin-bottom: 12px;
}

.contact-text p {
  color: var(--muted);
}

.contact-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.site-footer {
  background: #3f2a34;
  color: rgba(255, 255, 255, 0.8);
  padding: 26px 0;
}

.footer-inner {
  text-align: center;
  font-size: 0.92rem;
}

@media (max-width: 1024px) {
  .hero-inner,
  .merit-item,
  .merit-item.reverse,
  .contact-box,
  .cta-band-inner {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .feature-grid,
  .support-grid,
  .jobs-grid,
  .voices-grid,
  .anxiety-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .merit-item.reverse .merit-image,
  .merit-item.reverse .merit-text {
    order: initial;
  }
}

@media (max-width: 768px) {
  section {
    padding: 68px 0;
  }

  .header-inner {
    flex-direction: column;
    padding: 14px 0;
  }

  .nav {
    justify-content: center;
  }

  .hero-inner,
  .intro-grid,
  .feature-grid,
  .support-grid,
  .anxiety-list,
  .jobs-grid,
  .voices-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 48px;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .contact-box {
    padding: 28px 22px;
    align-items: flex-start;
  }

  .cta-band-inner {
    align-items: flex-start;
  }
}