/* ブランド構築セクション */
.branding-section {
  background: #fff;
  padding: 6rem 0;
}


.branding-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px 56px;
  align-items: center;
}

.branding-image img {
  width: 100%;
  display: block;
}

.branding-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: left;
}

.branding-body {
  margin-bottom: 28px;
  text-align: justify;
}

.branding-text.bold {
  font-weight: bold;
}



.branding-text.large {
  font-size: 2em;
  margin-bottom: 8px;
  letter-spacing: 0.06em;
}

.branding-text.small {
  font-size: 1.1em;
  color: #888;
  margin-bottom: 18px;
  letter-spacing: 0.03em;
}

.branding-btn {
  display: inline-block;
  background: #111;
  color: #fff;
  font-size: 1.1em;
  font-weight: bold;
  padding: 18px 48px;
  text-decoration: none;
  text-align: center;
  transition: background 0.2s;
  margin-top: 12px;
  width: 60%;
  margin: 0 auto;
}

.branding-btn:hover {
  background: #0592c6;
  color: #fff;
}

@media (max-width: 900px) {
  .branding-grid {
    grid-template-columns: 1fr;
    gap: 32px 0;
  }

  .branding-image img {
    max-width: 100%;
  }
}