@charset "UTF-8";
/* CSS Document */


/* 研修制度　hover打ち消し */
.topTraining__link:hover::before{
  background-color: transparent !important;
  mix-blend-mode: normal !important;
  opacity: 0 !important;
  transition: none !important;
}

.topTraining__link:hover::before{
  background: #00284e !important;
  opacity: 0.8 !important;
  mix-blend-mode: hard-light !important;
  transition: none !important;
}
/* a を基準にする */
.topTraining__link{
  position: relative;
}

/* 画像枠 */
.topTraining__photo{
  overflow: hidden;
}

/* 画像ズーム */
.topTraining__photo img{
  display: block;
  transition: transform 0.4s ease;
}
.topTraining__link:hover .topTraining__photo img{
  transform: scale(1.1);
}

/* 青オーバーレイ（画像の上、文字の下） */
.topTraining__link::before{
  content: "";
  position: absolute;
  inset: 0;
  background: #00284e;
  opacity: 0.8;
  mix-blend-mode: hard-light;
  pointer-events: none;
  z-index: 1;
}

/* 文字をオーバーレイより上へ */
.topTraining__txt{
  position: relative;
  z-index: 2;
}
@media print, screen and (max-width: 1920px) {
    .messageIndex__nameBox {
        bottom: 10.083333vw!important;
    }
}

/* ===============================
   Training New Layout
=================================*/

.trainingNew {
  margin-top: 80px;
}

/* メインタイトル */
.trainingNew__mainTtl {
  background: #0057AA;
  color: #fff;
  padding: 20px 30px;
  font-size: 28px;
  font-weight: 600;
  margin-bottom: 30px;
}

.trainingNew__lead {
  font-size: 18px;
  margin-bottom: 50px;
  line-height: 1.7;
}

/* 目的エリア */
.trainingNew__purposeWrap {
  display: flex;
  gap: 40px;
  margin-bottom: 100px;
}

/* コア研修 */
.trainingNew__sectionTtl {
  font-size: 26px;
  font-weight: 600;
  margin-bottom: 30px;
  border-left: 6px solid #0057AA;
  padding-left: 15px;
}

/* 2×2グリッド */
.trainingNew__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 50px;
}

.trainingNew__card {
  border-top: 6px solid #0057AA;
  padding: 30px;
  background: #f8fbff;
}

.trainingNew__card h5 {
  background: #0057AA;
  color: #fff;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  padding: 18px 20px;
  margin: -30px -30px 25px -30px;
}


.trainingNew__card p {
  line-height: 1.7;
}

/* SP対応 */
@media screen and (max-width: 768px) {

  .trainingNew__purposeWrap {
    flex-direction: column;
  }

  .trainingNew__grid {
    grid-template-columns: 1fr;
  }

}

.trainingNew__purposeBox {
  position: relative;
  border: 2px solid #0057AA;
  padding: 30px;
margin-top: 47px;
}
.trainingNew__purposeBox p {
  line-height: 1.7;
}

/* ラベル */
.trainingNew__purposeLabel {
    position: absolute;
    top: -47px;
    left: -2px;
    background: #0057AA;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    padding: 12px 45px 12px 25px;
    line-height: 1;
    clip-path: polygon(0 0, calc(100% - 32px) 0, 100% 100%, 0 100%);
    z-index: 2;
}

.trainingNew__subHeading {
    font-weight: 700;
    font-size: 20px;
    margin-bottom: 5px;
}

.trainingNew__cardText--small {
  font-size: 17px;
  line-height: 1.7;
}
