@charset "utf-8";

.youtube_section {
  padding: 120px 20px;
  background: #f7f7f7;
  border-top: 1px solid #e5e7eb;
}

.youtube_inner {
  max-width: 1400px;
  margin: 0 auto;
}

.youtube_head {
  margin-bottom: 42px;
  text-align: center;
}

.youtube_eyebrow {
  margin: 0 0 12px;
  color: #a98c48;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: .24em;
}

.youtube_title {
  margin: 0;
  color: #111827;
  font-size: 42px;
  font-weight: 700;
  line-height: 1.35;
  letter-spacing: -.04em;
  word-break: keep-all;
}

.youtube_video_box {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: #111;
}

.youtube_video_box iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.youtube_btn_wrap {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

.youtube_btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  height: 58px;
  padding: 0 28px;
  box-sizing: border-box;
  border: 1px solid #ff0033;
  background: #ff0033;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition: background .25s ease, color .25s ease, transform .25s ease;
}

.youtube_btn:hover {
  background: #fff;
  color: #111827;
  transform: translateY(-3px);
}

.youtube_btn i {
  font-size: 14px;
}

/* tablet */
@media screen and (max-width: 1199px) {
  .youtube_section {
    padding: 100px 20px;
  }

  .youtube_inner {
    max-width: 100%;
  }

  .youtube_title {
    font-size: 36px;
  }

  .youtube_video_box {
    aspect-ratio: 16 / 7;
  }
}

/* mobile */
@media screen and (max-width: 767px) {
  .youtube_section {
    padding: 80px 18px;
  }

  .youtube_head {
    margin-bottom: 28px;
  }

  .youtube_eyebrow {
    margin-bottom: 10px;
    font-size: 12px;
    letter-spacing: .18em;
  }

  .youtube_title {
    font-size: 28px;
    line-height: 1.45;
  }

  .youtube_video_box {
    aspect-ratio: 16 / 9;
  }

  .youtube_btn_wrap {
    margin-top: 24px;
  }

  .youtube_btn {
    width: 100%;
    min-width: 0;
    height: 54px;
    font-size: 15px;
  }
}