/* 題名 */
/* セクション全体 */
.title-section {
  position: relative;
  width: 100%;
  height: 400px; /* 好きな高さに調整 */
  overflow: hidden;
}

/* 画像 */
.title-section .title-img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* 画像の縦横比を維持して全体表示 */
  display: block;
}

/* 文字を画像上に重ねる */
.title-section .title-text {
  position: absolute;
  top: 50%; /* セクションの真ん中 */
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff; /* 文字色 */
  text-align: center;
  text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5); /* 文字を見やすく */
}

@media screen and (max-width: 480px) {
  .title-section {
    position: relative;
    width: 100%;
    height: 200px; /* 好きな高さに調整 */
    overflow: hidden;
  }

  /* 画像 */
  .title-section .title-img {
    width: 100%;
    height: 100%;
    height: 200px; /* 好きな高さに調整 */
    object-fit: cover; /* 画像の縦横比を維持して全体表示 */
    display: block;
  }

  /* 文字を画像上に重ねる */
  .title-section .title-text {
    top: 50%; /* セクションの真ん中 */
    left: 50%;
    font-size: 18px;
  }
  .title-section .title-text h2 {
    font-size: 22px;
  }
}

@media screen and (min-width: 480px) and (max-width: 767px) {
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
}

@media screen and (min-width: 1025px) and (max-width: 1280px) {
}
