.home-about {
  width: 100%;
  background: var(--color-surface, #ffffff);
}

.home-about__inner {
  display: flex;
  align-items: center;
}

.home-about__image {
  width: var(--size-square-pc, 50vw);
  height: var(--size-square-pc, 50vw);
  overflow: hidden;
}

.home-about__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-about__content {
  width: var(--size-square-pc, 50vw);
  height: var(--size-square-pc, 50vw);
  flex: none;

  display: flex;
  flex-direction: column;
  justify-content: center; /* 垂直中央 */
  align-items: center;     /* 水平中央 */

  gap: clamp(24px, 6cqw, 48px);

  text-align: center;
  padding: clamp(20px, 8cqw, 40px);
  box-sizing: border-box;
  container-type: inline-size;
}

.home-about__text {
  margin: 0;
  font-size: clamp(12px, 4.8cqw, 24px);
  line-height: 1.7;
  letter-spacing: clamp(0.8px, 0.35cqw, 2px);
  color: var(--color-text, #403234);
  overflow-wrap: anywhere;
}

.home-about__button {
  display: inline-block;
  padding: clamp(10px, 2.8cqw, 14px) clamp(24px, 8cqw, 40px);

  font-size: clamp(12px, 3.8cqw, 20px);
  letter-spacing: clamp(0.8px, 0.35cqw, 2px);
  text-decoration: none;

  color: var(--color-text, #403234);
  background: var(--color-button-bg, #d8d0c8);
  border-radius: var(--radius-sm, 6px);

  transition: opacity 0.2s ease;
}

.home-about__button:hover {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .home-about__inner {
    flex-direction: column;
  }

  .home-about__image {
    width: 100%;
    height: var(--size-square-sp, 100vw);
  }

  .home-about__image img {
    height: 100%;
  }

  .home-about__content {
    width: 100%;
    height: var(--size-square-sp, 100vw);
  }
}
