/* ============================================
   S06B METHOD VIDEO
   ============================================ */

.method-video {
  background: #f7f7f5;
  padding: 120px 24px;
}

.method-video__inner {
  max-width: 860px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

/* ヘッダー */
.method-video__header {
  text-align: center;
}

.method-video__label {
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-accent, #C8922A);
  margin-bottom: 16px;
}

.method-video__headline {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 700;
  line-height: 1.4;
  color: var(--color-primary, #1A3A2A);
  margin-bottom: 20px;
}

.method-video__lead {
  font-size: clamp(1rem, 1.4vw, 1.1rem);
  line-height: 1.9;
  color: #555;
}

/* YouTube埋め込み */
.method-video__wrap {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.1);
}

.method-video__embed {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #000;
}

.method-video__embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* レスポンシブ */
@media (max-width: 767px) {
  .method-video {
    padding: 80px 20px;
  }

  .method-video__inner {
    gap: 40px;
  }
}
