/*
|---------------------------------------------------------------
| qinc2026-kachinote-intro.css - カチノテ 導入・概要セクション
|---------------------------------------------------------------
*/

/* ==========================================================================
   Section: Kachinote Intro
   ========================================================================== */
.kachinote-intro {
  background-color: #fff;
  padding: 96px 0;
}

.kachinote-intro__inner {
  max-width: 1280px;
  text-align: center;
}

/* Label
   ========================================================================== */
.kachinote-intro__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.4px;
  text-transform: uppercase;
  margin-bottom: 24px;
}

/* Title
   ========================================================================== */
.kachinote-intro__title {
  font-size: 48px;
  font-weight: 900;
  color: var(--color-blue01, #020441);
  line-height: 1.2;
  margin: 0 0 32px;
}

.kachinote-intro__title-segment {
  display: inline-block;
}

/* Lead
   ========================================================================== */
.kachinote-intro__lead {
  font-size: 16px;
  font-weight: 400;
  color: var(--color-blue01, #020441);
  line-height: 1.8;
  margin: 0 0 48px;
}

/* Actions
   ========================================================================== */
.kachinote-intro__actions {
  display: flex;
  justify-content: center;
  gap: 16px;
}

/* Buttons
   ========================================================================== */
.kachinote-intro__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  height: 50px;
  padding: 0 24px;
  border-radius: 4px;
  font-size: 16px;
  font-weight: 700;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease, opacity 0.2s ease;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
}

.kachinote-intro__btn--outline {
  background: #fff;
  border: 1px solid var(--color-blue-grey02, #94a3b8);
  color: #475569;
}

.kachinote-intro__btn--outline:hover {
  background: var(--color-blue01, #020441);
  border-color: var(--color-blue01, #020441);
  color: #fff;
}

.kachinote-intro__btn--filled {
  background: var(--color-blue01, #020441);
  border: none;
  color: #fff;
}

.kachinote-intro__btn--filled:hover {
  opacity: 0.9;
}

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 1024px) {
  .kachinote-intro__title {
    font-size: 36px;
  }
}

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

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

  .kachinote-intro__lead {
    font-size: 14px;
  }

  .kachinote-intro__lead br {
    display: none;
  }

  .kachinote-intro__actions {
    flex-direction: column;
    align-items: center;
  }

  .kachinote-intro__btn {
    width: 100%;
    max-width: 280px;
  }
}
