.theater {
  position: relative;
  background: var(--color-bg-dark);
  color: var(--color-bg);
  padding: 60px 0;
  margin-bottom: 80px;
}

.theater .logo {
  width: 60px;
  margin-bottom: 24px;
  opacity: 0.8;
}

.theater h2 {
  font-size: clamp(24px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 32px;
  letter-spacing: var(--letter-spacing-en);
}

.theater .txt-area .jp-txt {
  font-size: clamp(13px, 1.1vw, 16px);
  margin-bottom: 16px;
}

.theater .txt-area .en-txt {
  font-size: clamp(12px, 1vw, 14px);
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 24px;
}

@media screen and (min-width: 768px) {
  .theater {
    padding: 100px 0;
    margin-bottom: 120px;
  }

  .theater .inner {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-template-rows: auto auto;
    gap: 0 48px;
    align-items: start;
  }

  .theater .logo {
    grid-row: 1;
    grid-column: 1;
  }

  .theater h2 {
    grid-row: 1 / 3;
    grid-column: 1;
    margin-top: 80px;
    margin-bottom: 0;
  }

  .theater .txt-area {
    grid-row: 1 / 3;
    grid-column: 2;
  }
}
