/*-----------------------------------------------------------
  CSS追記 2025年11月 scss不使用
-----------------------------------------------------------*/

/* CTAブロック */

.cta-block {
  max-width: 80%;
  margin: 80px auto;
}
.cta-block.recruit {
  margin: 40px auto;
}
.cta-side {
  bottom: 14vw;
  opacity: 0;
  transition: 0.3s;
}
.cta-side.is-active {
  opacity: 1;
}
.cta-side:hover:not(:has(img:hover)) {
  transform: scale(1.1);
}
@media (max-width: 767px) {
  .cta-block {
    max-width: 90%;
    margin: 40px auto 80px;
  }
  .cta-block.recruit {
    margin: 80px auto 40px;
  }
  .fiexd {
    bottom: 0;
    right: 0;
  }
  .cta-side {
    width: 65%;
    right: auto;
    left: 0;
    bottom: -1px;
    z-index: 999;
  }
  .cta-side:hover:not(:has(img:hover)) {
    transform: scale(1);
  }
}
@media (max-width: 400px) {
  .fiexd {
    bottom: 27.5vw;
  }
  .cta-side {
    width: 100%;
    bottom: 0;
  }
}

/* PC/SP表示切替 */
.cta-block.pc,
.cta-side.pc {
  display: inherit !important;
}
.cta-block.sp,
.cta-side.sp {
  display: none !important;
}
@media (max-width: 767px) {
  .cta-block.pc,
  .cta-side.pc {
    display: none !important;
  }
  .cta-block.sp,
  .cta-side.sp {
    display: inherit !important;
  }
}

/* お知らせ見出し */
#news .entry h2 {
  color: #fff;
  background: #191993;
  font-size: 2.8rem;
  font-weight: 700;
  text-shadow: none;
  line-height: 1.4;
  padding: 0.75em 1em;
  margin: 3em 0 1em;
  position: relative;
  z-index: 1;
}

#news .entry h2:before {
  content: "";
  border-top: solid 2px #191993;
  border-bottom: solid 2px #191993;
  display: block;
  position: absolute;
  top: -4px;
  left: 0;
  width: 100%;
  height: calc(100% + 4px);
}

#news .entry h3 {
  font-size: 2.4rem;
  font-weight: 700;
  font-weight: 700;
  text-shadow: none;
  line-height: 1.4;
  padding: 0 0.5em 0.5em;
  margin: 2em 0 1em;
  position: relative;
}

#news .entry h3:before {
  content: "";
  background: repeating-linear-gradient(
    90deg,
    #191993 0%,
    #191993 29.3%,
    rgba(150, 150, 150, 0.2) 29.3%,
    rgba(150, 150, 150, 0.2) 100%
  );
  display: block;
  width: 100%;
  height: 2px;
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 0;
}

#news .entry h4 {
  border-left: solid 2px #191993;
  font-size: 2rem;
  font-weight: 700;
  text-shadow: none;
  line-height: 1.4;
  padding: 0 0 0 16px;
  margin: 3em 0 1em;
  position: relative;
}

#news .entry h5 {
  font-size: 1.8rem;
  font-weight: 700;
  text-shadow: none;
  margin-bottom: 0.5em;
}
@media (max-width: 767px) {
  #news .entry h2 {
    font-size: 4.3vw;
  }

  #news .entry h3 {
    font-size: 4vw;
  }

  #news .entry h4 {
    font-size: 3.8vw;
    padding: 0 0 0 10px;
  }

  #news .entry h5 {
    font-size: 3.5vw;
  }
}
