/* トップスライダー */
.top-slider-section {
  position: relative;
  margin-bottom: 40px;
}

.fv-catch {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 40px;
  position: absolute;
  top: 10%;
  left: 50%;
  transform: translateX( -50% );
  padding: 40px 24px;
  background: rgb(255 255 255 / 0.7);
  border-radius: 12px;
  color: #07527b;
}

.fv-catch-top {
  /* min:24px, max:48px | viewmin:320px, viewmax:1200px */
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  line-height: 1.6;
}

.fv-catch-bottom {
  /* min:12px, max:24px | viewmin:320px, viewmax:1200px */
  font-size: clamp(0.75rem, 0.477rem + 1.36vw, 1.5rem);
  font-weight: bold;
  text-align: center;
}

/* トップページのサイト説明セクション */
.top-about-heading {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  /* min:24px, max:48px | viewmin:320px, viewmax:1200px */
  font-size: clamp(1.5rem, 0.955rem + 2.73vw, 3rem);
  gap: 8px;
}

.top-about-heading span {
  font-weight: 500;
}

.top-about-text {
  /* min:16px, max:24px | viewmin:320px, viewmax:1200px */
  font-size: clamp(1rem, 0.818rem + 0.91vw, 1.5rem);
  text-align:justify;
  word-break:break-all; 
  text-justify:inter-character;
  word-wrap:break-word;
  overflow-wrap:break-word;
}

/* レスポンシブ対応 */
@media screen and (max-width:600px) {
  .fv-catch {
    gap: 24px;
    padding: 16px;
  }

  .splide__slide img {
    min-height: 400px;
    transform: scaleX(1.5);
  }
}