/* ========== CTA Buttons（共通） ========== */
.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.cta-buttons--center {
  justify-content: center;
}

.cta-buttons--left {
  justify-content: flex-start;
}

.cta-buttons--right {
  justify-content: flex-end;
}

.cta-btn {
  font-family: var(--font-bunkyu-go);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.1em;
  padding: 12px 32px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  transition: opacity 0.2s;
}

.cta-btn:hover {
  opacity: 0.7;
}

.cta-btn--outline {
  color: var(--color-white);
  border: 1px solid var(--color-white);
}

.cta-btn--fill {
  color: var(--color-dark-2);
  background-color: var(--color-white);
}

.cta-btn--gray {
  color: var(--color-white);
  background-color: var(--color-gray);
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.5);
}

.cta-btn__sub {
  display: block;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.08em;
  opacity: 0.85;
}

/* LINE ボタン */
.cta-btn--line {
	display:none;
  background-color: #06C755;
  color: #fff;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  box-shadow: 0 4px 12px rgba(6, 199, 85, 0.4);
  padding: 12px 15px;
}

.cta-btn__line-icon {
  display: block;
  flex-shrink: 0;
  width: 40px;
}

.cta-btn__line-text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
}

.cta-btn--line:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .cta-buttons {
    flex-direction: row;
    flex-wrap: nowrap;
    width: 100%;
  }

  .cta-btn {
    flex: 1;
    padding: 12px 12px;
    white-space: nowrap;
  }

  .cta-btn:last-child {
    flex: 1;
  }
}