/* ============================================
   SECTION HEADER (shared)
   ============================================ */
.section-header {
  text-align: center;
  margin-bottom: 32px;
}

.section-tag {
  display: inline-block;
  font-family: var(--font-en);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  color: var(--color-secondary);
  text-transform: uppercase;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(22px, 3.5vw, 32px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.4;
  margin-bottom: 12px;
}

.section-sub {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ============================================
   FEATURES
   ============================================ */

.features {
  padding: var(--section-py) 0;
}

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

.features__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.features__card::before {
  display: none;
}

.features__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(29, 107, 107, 0.1);
  transform: translateY(-3px);
}

.features__icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 141, 88, 0.08);
  border: 1px solid rgba(212, 141, 88, 0.15);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
}

.features__number {
  font-family: var(--font-en);
  font-size: 48px;
  font-weight: 900;
  color: rgba(15, 23, 42, 0.03);
  position: absolute;
  top: 16px;
  right: 24px;
  line-height: 1;
}

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

.features__text {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.9;
}


/* ============================================
   DISCOVERY
   ============================================ */
.discovery {
  padding: var(--section-py) 0;
}

.discovery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.discovery__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 24px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  cursor: pointer;
}

.discovery__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(29, 107, 107, 0.1);
  transform: translateY(-3px);
}

.discovery__card-header {
  margin-bottom: 16px;
}

.discovery__change-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
  border-radius: 100px;
}

.discovery__change-tag--industry {
  background: rgba(59, 130, 246, 0.12);
  color: #60a5fa;
  border: 1px solid rgba(59, 130, 246, 0.2);
}

.discovery__change-tag--workstyle {
  background: rgba(34, 197, 94, 0.12);
  color: #4ade80;
  border: 1px solid rgba(34, 197, 94, 0.2);
}

.discovery__change-tag--area {
  background: rgba(251, 191, 36, 0.12);
  color: #fbbf24;
  border: 1px solid rgba(251, 191, 36, 0.2);
}

.discovery__change-tag--failure {
  background: rgba(139, 92, 246, 0.12);
  color: #a78bfa;
  border: 1px solid rgba(139, 92, 246, 0.2);
}

.discovery__example {
  margin-bottom: 20px;
}

.discovery__person {
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text);
  margin-bottom: 2px;
}

.discovery__transition {
  font-size: 11px;
  color: var(--color-text-dim);
  line-height: 1.4;
}

.discovery__details {
  background: var(--color-bg-alt);
  border-radius: var(--radius-md);
  padding: 16px 20px;
  margin-bottom: 20px;
  border: 1px solid var(--color-border);
}

.discovery__detail-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed rgba(15, 23, 42, 0.1);
  font-size: 13px;
}

.discovery__detail-row:last-child {
  border-bottom: none;
}

.discovery__detail-label {
  font-size: 11px;
  color: var(--color-text-muted);
  background: rgba(15, 23, 42, 0.05);
  padding: 3px 8px;
  border-radius: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
  flex-shrink: 0;
}

.discovery__detail-value {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: 1;
  justify-content: flex-end;
}

.val-before,
.val-after {
  flex: 1;
  text-align: right;
  white-space: nowrap;
}

.val-before {
  color: var(--color-text-muted);
  font-weight: 400;
}

.val-arrow {
  color: var(--color-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  flex-shrink: 0;
  opacity: 0.9;
}

.val-after {
  color: var(--color-text);
  font-weight: 700;
}

.val-after.highlight {
  color: var(--color-primary);
}

.val-same {
  color: var(--color-text);
  font-weight: 500;
  flex: 1;
  text-align: right;
}

.discovery__detail-row--salary {
  margin-top: 10px;
  padding-top: 15px;
  border-top: 1px solid var(--color-border);
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.discovery__detail-row--salary .discovery__detail-label {
  background: transparent;
  padding: 0;
  color: var(--color-primary);
  font-size: 13px;
}

.discovery__detail-row--salary .discovery__detail-value {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #f8fafc;
  border: 1px solid rgba(79, 70, 229, 0.08);
  padding: 12px;
  border-radius: var(--radius-md);
  box-sizing: border-box;
}

.discovery__detail-row--salary .val-before {
  font-size: 13px;
  font-weight: 500;
  color: var(--color-text-muted);
  text-align: center;
}

.discovery__detail-row--salary .val-arrow {
  color: var(--color-primary);
}

.discovery__detail-row--salary .val-after {
  font-size: 18px;
  font-weight: 800;
  color: var(--color-primary);
  text-align: center;
  line-height: 1.2;
}

.discovery__detail-row--salary.discovery__detail-row--failure .discovery__detail-label {
  color: #7c3aed;
}

.discovery__detail-row--salary.discovery__detail-row--failure .discovery__detail-value {
  border-color: rgba(139, 92, 246, 0.1);
}

.discovery__detail-row--salary.discovery__detail-row--failure .val-after {
  color: #7c3aed;
}

.discovery__detail-row--salary.discovery__detail-row--failure .val-arrow {
  color: #7c3aed;
}

/* Global failure arrow override */
.discovery__card--failure .val-arrow {
  color: #7c3aed;
}


.hero__actions-container {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero__actions-note {
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  opacity: 0.9;
  letter-spacing: 0.02em;
}

/* ---------- Button Label ---------- */
.btn-label-free {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  margin-bottom: 10px;
  position: relative;
  z-index: 2;
  letter-spacing: 0.04em;
  background: rgba(212, 141, 88, 0.08);
  padding: 4px 12px;
  border-radius: 100px;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}

.hero__actions .btn-label-free {
  margin-left: 12px;
  margin-right: 0;
}

@media (max-width: 768px) {
  .hero__actions .btn-label-free {
    margin-left: auto;
    margin-right: auto;
  }
}

.cta__form-area .btn-label-free {
  margin-bottom: 14px;
}

.btn-label-free svg {
  flex-shrink: 0;
}

.discovery__insight {
  font-size: 13px;
  color: var(--color-text-muted);
  line-height: 1.8;
  padding-left: 14px;
  border-left: 3px solid rgba(212, 141, 88, 0.4);
  font-weight: 500;
}

.discovery__card--failure .discovery__insight {
  border-left-color: rgba(139, 92, 246, 0.25);
}

.point-label {
  display: block;
  font-size: 11px;
  font-weight: 700;
  color: var(--color-text-dim);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 6px;
}

/* Discovery callout */
.discovery__bottom {
  max-width: 800px;
  margin: 0 auto;
}

.discovery__callout {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  box-shadow: 0 4px 20px var(--color-card-shadow);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
}

.discovery__callout-icon {
  font-size: 24px;
  flex-shrink: 0;
  line-height: 1.4;
}

.discovery__callout-text {
  font-size: 15px;
  color: var(--color-text);
  line-height: 1.8;
}

.discovery__callout-text strong {
  color: var(--color-text);
}


/* ============================================
   CONCERNS SECTION
   ============================================ */
.concerns {
  padding: var(--section-py) 20px;
  background: var(--color-bg-alt);
}

.concerns__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
  margin-bottom: 40px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.concerns__item {
  background: #fff;
  border: 1px solid #e5e7eb;
  padding: 16px 20px;
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 16px;
  cursor: pointer;
}

.concerns__item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(29, 107, 107, 0.1);
  transform: translateY(-2px);
}

.concerns__icon {
  font-size: 24px;
  flex-shrink: 0;
}

.concerns__question {
  font-size: 15px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
  text-align: left;
}

.concerns__cta {
  text-align: center;
  background: var(--color-surface);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 2px dashed var(--color-border);
}

.concerns__cta-text {
  font-size: 16px;
  font-weight: 600;
  color: var(--color-text-muted);
  margin-bottom: 24px;
}



/* ============================================
   PROCESS
   ============================================ */
.process {
  padding: var(--section-py) 0;
  background: var(--color-bg-alt);
}

.process__timeline {
  max-width: 700px;
  margin: 0 auto;
  position: relative;
}

.process__line {
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--color-border);
}

.process__step {
  display: flex;
  gap: 32px;
  align-items: flex-start;
  margin-bottom: 48px;
  position: relative;
}

.process__step:last-child {
  margin-bottom: 0;
}

.process__dot {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--gradient-main);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-family: var(--font-en);
  font-weight: 700;
  font-size: 18px;
  color: var(--color-white);
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 8px var(--color-bg-alt), 0 0 30px rgba(79, 70, 229, 0.25);
}

.process__content {
  padding-top: 8px;
}

.process__heading {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
}

.process__text {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.9;
}

/* ============================================
   CTA
   ============================================ */
.cta {
  padding: var(--section-py) 0;
}

.cta__card {
  position: relative;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: clamp(48px, 8vw, 80px) clamp(24px, 6vw, 80px);
  overflow: hidden;
  text-align: center;
}

.cta__bg-orbs {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.orb--cta1 {
  width: 400px;
  height: 400px;
  background: var(--color-primary);
  top: -200px;
  right: -100px;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}

.orb--cta2 {
  width: 300px;
  height: 300px;
  background: var(--color-secondary);
  bottom: -150px;
  left: -100px;
  position: absolute;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.1;
}

.cta__content {
  position: relative;
  z-index: 1;
}

.cta__title {
  font-size: clamp(28px, 4vw, 44px);
  font-weight: 800;
  color: var(--color-text);
  line-height: 1.3;
  margin-bottom: 20px;
}

.cta__text {
  font-size: clamp(14px, 1.6vw, 16px);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  line-height: 1.8;
}

.cta__form-area {
  max-width: 480px;
  margin: 0 auto;
}

.cta__form-placeholder {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  padding: 48px 0 32px;
  border-top: 1px solid var(--color-border);
}

.footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__brand .header__logo {
  justify-content: center;
}

.footer__links {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer__links a {
  font-size: 13px;
  color: var(--color-text-dim);
  transition: color 0.3s;
}

.footer__links a:hover {
  color: var(--color-text);
}

.footer__copy {
  font-size: 12px;
  color: var(--color-text-dim);
  font-family: var(--font-en);
}

/* ============================================
   CONCIERGE（統合セクション）
   ============================================ */
.concierge {
  padding: var(--section-py) 0;
  background: #f9fafb;
}

/* できること */
.concierge__services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  max-width: 800px;
  margin: 0 auto 40px;
}

.concierge__service-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  border-bottom: 1px solid #ececec;
}

.concierge__service-item:nth-child(odd) {
  border-right: 1px solid #ececec;
}

.concierge__service-item:nth-last-child(-n+2) {
  border-bottom: none;
}

.concierge__service-icon {
  font-size: 22px;
  flex-shrink: 0;
  line-height: 1;
}

.concierge__service-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.concierge__service-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.concierge__service-text span {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.5;
}

/* 安心の理由バッジ */
.concierge__trust {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.concierge__trust-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #fff;
  border: 1px solid rgba(212, 141, 88, 0.2);
  border-radius: 100px;
  padding: 8px 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--color-secondary);
}

.concierge__trust-icon {
  font-size: 16px;
  line-height: 1;
}

/* こんな悩みに対応 */
.concierge__concerns {
  max-width: 800px;
  margin: 0 auto 40px;
  text-align: center;
}

.concierge__sub-heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 16px;
}

.concierge__concern-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.concierge__concern-tag {
  display: inline-block;
  background: #f3f4f6;
  border: none;
  border-radius: 16px 16px 16px 4px;
  padding: 7px 14px;
  font-size: 13px;
  color: var(--color-text);
  white-space: nowrap;
}

/* 特徴3つ */
.concierge__features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 900px;
  margin: 0 auto;
}

.concierge__feature-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 20px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.concierge__feature-item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(29, 107, 107, 0.1);
  transform: translateY(-2px);
}

.concierge__feature-num {
  font-family: var(--font-en);
  font-size: 28px;
  font-weight: 900;
  color: var(--color-secondary);
  opacity: 0.6;
  flex-shrink: 0;
  line-height: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.concierge__feature-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  margin-bottom: 2px;
}

.concierge__feature-text {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.concierge__feature-text strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.concierge__feature-text span {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.6;
}

/* CTA統合 */
.concierge__cta {
  text-align: center;
  margin-top: 48px;
  padding: 40px 32px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  max-width: 640px;
  margin-left: auto;
  margin-right: auto;
}

.concierge__cta-title {
  font-size: clamp(20px, 3vw, 28px);
  font-weight: 800;
  color: var(--color-text);
  margin-bottom: 12px;
  line-height: 1.4;
}

.concierge__cta .btn-label-free {
  margin-bottom: 20px;
}

.concierge__cta-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

.concierge__cta-buttons .btn {
  width: 100%;
  max-width: 400px;
  justify-content: center;
}

@media (max-width: 768px) {
  .concierge__cta {
    padding: 28px 20px;
    margin-top: 32px;
  }
}

@media (max-width: 768px) {
  .concierge__services {
    grid-template-columns: 1fr;
  }

  .concierge__service-item:nth-child(odd) {
    border-right: none;
  }

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

  .concierge__service-item:nth-last-child(2) {
    border-bottom: 1px solid #ececec;
  }

  .concierge__features {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .concierge__feature-item {
    padding: 14px 16px;
    gap: 12px;
  }

  .concierge__trust {
    flex-wrap: nowrap;
    gap: 6px;
    margin-bottom: 28px;
  }

  .concierge__trust-item {
    font-size: 11px;
    padding: 5px 10px;
    gap: 4px;
  }

  .concierge__trust-icon {
    font-size: 13px;
  }

  .concierge__concerns {
    margin: 0 auto 28px;
  }

  .concierge__sub-heading {
    font-size: 14px;
    margin-bottom: 12px;
  }

  .concierge__concern-tags {
    gap: 6px;
  }

  .concierge__concern-tag {
    font-size: 11px;
    padding: 4px 10px;
  }
}

/* ============================================
   WHAT WE DO (SERVICE) - legacy
   ============================================ */
.what-we-do {
  padding: var(--section-py) 0;
  background: #f9fafb;
}

.we-do__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.we-do__card {
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 28px;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
  height: 100%;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}

.we-do__card:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(29, 107, 107, 0.1);
  transform: translateY(-3px);
}

.we-do__header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 12px;
  padding-bottom: 12px;
  border-bottom: 1px dashed var(--color-border);
}

.we-do__icon {
  font-size: 16px;
  line-height: 1;
  background: var(--gradient-main);
  color: #ffffff;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: none;
}

.we-do__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.4;
}

.we-do__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.we-do__q {
  display: inline-block;
  font-size: 12px;
  color: var(--color-primary);
  font-weight: 700;
  background: rgba(29, 107, 107, 0.06);
  padding: 8px 16px;
  border-radius: 8px;
  width: fit-content;
}

.we-do__a {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* ============================================
   PEACE OF MIND (REASONS)
   ============================================ */
.peace-of-mind {
  padding: var(--section-py) 0;
  background: var(--color-bg-alt);
}

.peace__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.peace__item {
  display: flex;
  align-items: stretch;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.peace__item:hover {
  border-color: var(--color-primary);
  box-shadow: 0 4px 16px rgba(29, 107, 107, 0.1);
  transform: translateY(-3px);
}

.peace__image-placeholder {
  width: 120px;
  background: rgba(212, 141, 88, 0.06);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.peace__number {
  font-family: var(--font-en);
  font-size: 24px;
  font-weight: 900;
  color: var(--color-secondary);
  opacity: 0.8;
}

.peace__text-content {
  padding: 32px;
  flex: 1;
}

.peace__heading {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-text);
  margin-bottom: 8px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.peace__heading::before {
  content: '';
  display: block;
  width: 24px;
  height: 3px;
  background: var(--color-secondary);
  border-radius: 2px;
}

.peace__desc {
  font-size: 12px;
  color: var(--color-text-muted);
  line-height: 1.8;
}

/* カルーセルがあるセクション全体で横はみ出しを禁止する */
.discovery {
  overflow: hidden;
  /* セクションから外に出るものを物理的にカット */
  width: 100%;
}

/* Swiperコンテナ自体の設定を確実にする */
.discovery-swiper {
  width: 100%;
  overflow: visible;
  /* Swiper内のカードの影などを消したくない場合はvisible */
}

/* ============================================
   RESPONSIVE (PC / Tablet / SP)
   ============================================ */

/* --- Tablet (1024px and below) --- */
@media (max-width: 1024px) {

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

  .we-do__grid {
    grid-template-columns: 1fr;
  }
}

/* --- Smartphone (768px and below) --- */
@media (max-width: 768px) {

  /* Utility */
  .sp-hide {
    display: none;
  }

  .sp-show {
    display: inline;
  }

  /* Typography & Buttons (Merged from 480px) */
  .hero__title {
    font-size: 28px;
  }

  .section-title {
    font-size: 24px;
  }

  .btn--xl {
    padding: 16px 32px;
    font-size: 16px;
  }

  /* Layout & Grids */
  .features__grid,
  .discovery__grid {
    grid-template-columns: 1fr;
  }

  /* Cards & Callouts */
  .features__card {
    padding: 24px;
  }

  .discovery__card {
    padding: 24px;
  }

  .discovery__callout {
    flex-direction: column;
    padding: 24px;
  }

  .concerns__grid {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .concerns__item {
    padding: 6px;
    gap: 12px;
  }

  .concerns__question {
    font-size: 12px;
    word-break: break-all;
  }

  .concerns__icon {
    font-size: 24px;
  }


  .we-do__card {
    padding: 16px;
  }

  .we-do__header {
    flex-direction: row;
    align-items: center;
    gap: 12px;
  }

  .peace__item {
    flex-direction: column;
  }

  .peace__image-placeholder {
    width: 100%;
    height: 40px;
  }

  .peace__text-content {
    padding: 24px;
  }


  /* Process */
  .process__step {
    gap: 20px;
  }

  .process__dot {
    width: 42px;
    height: 42px;
    font-size: 16px;
  }

  .process__line {
    left: 20px;
  }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 100px 0 30px;
    /* 重複していた指定を統合 */
  }

  .hero__content {
    text-align: center;
  }

  .hero__actions {
    flex-direction: column;
  }

  .hero__actions .btn {
    width: 100%;
    justify-content: center;
  }

  .hero__main-row {
    grid-template-columns: 1fr;
    grid-template-areas:
      "top"
      "visual"
      "bottom";
    text-align: center;
  }

  .hero__visual {
    min-height: auto;
  }

  .hero__visual-container--line-ui {
    margin: 0 auto;
  }

  .hero__scroll-indicator {
    display: none;
  }
}

/* ============================================
   CHECK (診断セクション)
   ============================================ */
.check {
  padding: var(--section-py) 0;
  background: var(--color-bg-alt);
}

.check__card {
  max-width: 640px;
  margin: 0 auto;
  background: var(--color-surface);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 48px 40px;
  box-shadow: 0 8px 40px var(--color-card-shadow);
}

/* Progress */
.check__progress {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 16px;
}

.check__progress-bar {
  flex: 1;
  height: 6px;
  background: var(--color-border);
  border-radius: 100px;
  overflow: hidden;
}

.check__progress-fill {
  height: 100%;
  background: var(--gradient-main);
  border-radius: 100px;
  transition: width 0.4s var(--ease);
}

.check__progress-text {
  font-family: var(--font-en);
  font-size: 13px;
  font-weight: 600;
  color: var(--color-text-muted);
  flex-shrink: 0;
}

/* Question */
.check__body {
  min-height: 280px;
  display: flex;
  flex-direction: column;
}

.check__question {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-text);
  line-height: 1.5;
  margin-bottom: 20px;
  text-align: center;
}

/* Options — 2択カード横並び */
.check__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  flex: 1;
}

.check__option {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 20px 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--color-text);
  text-align: center;
  line-height: 1.5;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s, transform 0.2s;
}

.check__option:hover {
  border-color: var(--color-primary);
  background: rgba(29, 107, 107, 0.03);
  box-shadow: 0 4px 16px rgba(29, 107, 107, 0.1);
  transform: translateY(-2px);
}

.check__option:active {
  background: rgba(29, 107, 107, 0.04);
  box-shadow: none;
}

.check__option-icon {
  font-size: 28px;
  flex-shrink: 0;
  line-height: 1;
}

/* Navigation */
.check__nav {
  display: flex;
  justify-content: center;
  margin-top: 16px;
}

.check__back {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 20px;
  font-size: 14px;
  font-weight: 600;
  color: var(--color-text-muted);
  background: none;
  border: 1px solid var(--color-border);
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.25s;
}

.check__back:hover {
  color: var(--color-text);
  border-color: var(--color-text-muted);
}

.check__back[hidden] {
  display: none;
}

/* Fade animation */
.check__body--fade-out {
  opacity: 0;
  transform: translateX(20px);
  transition: opacity 0.2s, transform 0.2s;
}

.check__body--fade-in {
  opacity: 0;
  transform: translateX(-20px);
  animation: checkFadeIn 0.3s var(--ease) forwards;
}

@keyframes checkFadeIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ============================================
   ARTICLES (特集コーナー)
   ============================================ */
.articles {
  padding: var(--section-py) 0;
  background: var(--color-bg-alt);
}

.articles__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 24px;
}

.articles__card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-md);
  padding: 28px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s;
}

.articles__card:hover {
  border-color: var(--color-secondary);
  box-shadow: 0 4px 16px rgba(212, 141, 88, 0.15);
  transform: translateY(-3px);
}

.articles__card-icon {
  font-size: 36px;
  margin-bottom: 16px;
}

.articles__card-tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  color: var(--color-secondary);
  background: rgba(212, 141, 88, 0.1);
  padding: 3px 8px;
  border-radius: 4px;
  margin-bottom: 10px;
  align-self: flex-start;
}

.articles__card-title {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  margin-bottom: 10px;
}

.articles__card-desc {
  font-size: 14px;
  color: var(--color-text-muted);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 16px;
}

.articles__card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 700;
  color: var(--color-secondary);
  align-self: flex-start;
}

.articles__card-link svg {
  transition: transform 0.2s;
}

.articles__card:hover .articles__card-link svg {
  transform: translateX(4px);
}

/* Responsive */
@media (max-width: 768px) {
  .check__card {
    padding: 32px 20px;
    border-radius: var(--radius-lg);
  }

  .check__question {
    font-size: 17px;
  }

  .check__options {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }

  .check__option {
    padding: 12px 10px;
    font-size: 13px;
    gap: 4px;
    border: 2px solid #e5e7eb;
    background: #f9fafb;
    position: relative;
  }

  .check__option::after {
    content: 'TAP';
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 9px;
    font-weight: 700;
    color: var(--color-primary);
    background: rgba(29, 107, 107, 0.08);
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.05em;
  }

  .check__option:active {
    transform: scale(0.97);
    border-color: var(--color-primary);
    background: rgba(29, 107, 107, 0.04);
  }

  .check__option-icon {
    font-size: 28px;
  }

  .check__body {
    min-height: 220px;
  }

  /* SP: 特集カードをタップしやすく */
  .articles__grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .articles__card {
    flex-direction: row;
    align-items: center;
    padding: 14px 16px;
    gap: 14px;
  }

  .articles__card-icon {
    font-size: 24px;
    margin-bottom: 0;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border-radius: 10px;
    object-fit: cover;
  }

  .articles__card-tag {
    display: none;
  }

  .articles__card-title {
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0;
    flex: 1;
    line-height: 1.4;
  }

  .articles__card-desc {
    display: none;
  }

  .articles__card-link {
    display: none;
  }

  .articles__card::after {
    content: '';
    display: block;
    width: 7px;
    height: 7px;
    border-right: 2px solid #9ca3af;
    border-bottom: 2px solid #9ca3af;
    transform: rotate(-45deg);
    flex-shrink: 0;
    margin-left: auto;
  }

  .articles__card:active {
    background: rgba(29, 107, 107, 0.03);
    border-color: var(--color-primary);
    transform: scale(0.98);
  }
}