

.title_program {
  position: relative;
  width: 750px;
  height: 266px;
	margin-bottom:20px;
}

/* 背景画像役 */
.title_program_img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* 文字 */
.title_program_txt {
  position: absolute;
  top: 15px;
  left: 26px;
  margin: 0;
  color: #fff;
  font-size: 24px;
  letter-spacing: 0.1em;

  text-shadow:
    0px 2px #0B8CCA, 0px -2px #0B8CCA,
    2px 0px #0B8CCA, -2px 0px #0B8CCA,
    2px 2px #0B8CCA, 2px -2px #0B8CCA,
    -2px 2px #0B8CCA, -2px -2px #0B8CCA,
    0px 3px #fff, 0px -3px #fff,
    3px 0px #fff, -3px 0px #fff,
    3px 3px #fff, 3px -3px #fff,
    -3px 3px #fff, -3px -3px #fff;
}
@media (max-width: 768px) {
  .title_program {
    width: 100%;
    height: auto;
  }

  .title_program_img {
    aspect-ratio: 750 / 266;
  }

  .title_program_txt {
    font-size: 18px;
    left: 16px;
    top: 12px;
  }
}
