/*
|---------------------------------------------------------------
| qinc2026-kachinote-output.css - カチノテ 月次診断レポートセクション
|---------------------------------------------------------------
*/

/* ==========================================================================
   Section: Kachinote Output
   ========================================================================== */
.kachinote-output {
  background-color: #fff;
  padding: 120px 0;
}

.kachinote-output__inner {
  display: flex;
  align-items: center;
  gap: 64px;
  max-width: 1280px;
}

/* ==========================================================================
   Left: Media
   ========================================================================== */
.kachinote-output__media {
  flex: 0 0 48%;
  max-width: 48%;
}

.kachinote-output__media-image {
  display: block;
  width: 100%;
  height: auto;
}

/* ==========================================================================
   Right: Content
   ========================================================================== */
.kachinote-output__content {
  flex: 1;
}

.kachinote-output__label {
  display: block;
  font-family: var(--font-family-en, "Montserrat", sans-serif);
  font-size: 14px;
  font-weight: 600;
  color: var(--color-gold, #c5a059);
  letter-spacing: 1.2px;
  margin-bottom: 16px;
}

.kachinote-output__title {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-blue01, #020441);
  line-height: 1.35;
  margin: 0 0 40px;
}

/* Features
   ========================================================================== */
.kachinote-output__features {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.kachinote-output__feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: #fff;
  border: 1px solid var(--color-blue01, #020441);
  border-left-width: 4px;
  border-radius: 8px;
  padding: 20px 24px;
  transition: box-shadow 0.2s ease;
}

.kachinote-output__feature:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.kachinote-output__feature-icon {
  flex-shrink: 0;
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.kachinote-output__feature-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.kachinote-output__feature-body {
  flex: 1;
}

.kachinote-output__feature-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--color-blue01, #020441);
  margin: 0 0 4px;
}

.kachinote-output__feature-desc {
  font-size: 14px;
  font-weight: 350;
  color: var(--color-blue01, #020441);
  line-height: 1.43;
  margin: 0;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .kachinote-output {
    padding: 80px 0;
  }

  .kachinote-output__inner {
    gap: 40px;
  }

  .kachinote-output__title {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .kachinote-output {
    padding: 64px 0;
  }

  .kachinote-output__inner {
    flex-direction: column;
    gap: 40px;
  }

  .kachinote-output__media {
    flex: none;
    max-width: 100%;
    width: 100%;
  }

  .kachinote-output__content {
    text-align: center;
  }

  .kachinote-output__title {
    font-size: 28px;
  }

  .kachinote-output__feature {
    text-align: left;
  }
}
