.system_fv{
    background: url("../img/engineering_system/system_title_banner_pc.webp") center / cover no-repeat;
    border-radius: var(--radius);
    min-height: 220px;
    margin-top: 18px;
    padding: 32px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin: 18px auto 0;
    width: min(1100px, 92%);
}
.system_fv h1{
    margin: 0;
    font-weight: 700;
    letter-spacing: .02em;
    line-height: 1.2;
    font-size: clamp(26px, 3vw, 40px);
    color: #1C2B59;
}
.system_fv .en_small{
    display: block;
    margin-top: 10px;
    font-weight: 600;
    letter-spacing: .12em;
    font-size: 18px;
}
/* ========== training section ========== */
.training{
    position: relative;
    padding: 64px 0 90px;
    overflow: hidden;
    background: #fff;
}
.training__bg{
    position: absolute;
    inset: 0;
    background: url("../img/engineering/job_description_inner.webp") center/cover no-repeat;
    opacity: .45;
    pointer-events: none;
}
.training__inner{
    position: relative;
    width: min(1100px, 92%);
    margin: 0 auto;
}
.training__cards{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 26px;
}
.training__cards_two{
    display: grid;
    grid-template-columns: repeat(2, 35%);
    gap: 22px;
    margin-top: 26px;
    justify-content: center;
}
.training__card{
    background: #fff;
    border-radius: 55px 14px 14px 14px;
    box-shadow: 0px 2px 4px 5px rgba(0, 0, 0, .10);
    padding: 18px 18px 20px;
}
.training__thumb{
    border-radius: 14px;
    overflow: hidden;
    background: #f4f7fb;
}
.training__thumb img{
    width: 100%;
    height: auto;
    display: block;
}
.training__card-title{
    margin: 16px 0 12px;
    text-align: center;
    font-weight: bold;
    font-size: 17px;
    color: #1F2C5C;
    line-height: 2;
}
.training__text{
    margin: 0;
    color: #1F2C5C;
    font-size: 14px;
    line-height: 1.9;
}
.training__btn{
    display: block;
    width: 280px;
    margin: 34px auto 0;
    filter: drop-shadow(0 10px 18px rgba(0,0,0,.12));
}
.training__btn img{
    width: 100%;
    height: auto;
    display: block;
}

@media (max-width: 767px){
  .system_fv{
    display: block;
    max-width: 90%;
    margin: 56px auto 0;
    border-radius: 0 0px 10px 10px;
    background: url(../img/engineering_system/system_title_banner_sp.webp) center / cover no-repeat;
    min-height: 80px;
    padding: 18px 18px;
  }
  .system_fv h1{
    font-size: 28px;
  }
  .system_fv .en_small{
    font-size: 14px;
    letter-spacing: 3px;
    font-weight: normal;
  }
  .training{
    padding: 46px 0 70px;
  }
  .training__cards, .training__cards_two{
    grid-template-columns: 1fr;
    gap: 16px;
  }
}

/* employee-benefits */
.employee-benefits{
  position: relative;
  overflow: hidden;
  padding: 0px 0;
}
.employee-benefits__bg{
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}
.employee-benefits__bg img{
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.employee-benefits__inner{
  position: relative;
  z-index: 1;
  width: min(1200px, 92%);
  margin: 0 auto 10%;;
}
.employee-benefits__title{
    margin: 0 0 10px;
    font-size: 32px;
    font-weight: bold;
    color: #1F2C5C;
    text-align: justify;
}
.employee-benefits__line{
    display: block;
    height: 1px;
    background: #1F2C5C;
    width: 100%;
}
.employee-benefits__slider{
    position: relative;
    margin-top: 22px;
    padding-bottom: 65px !important;
}
.employee-benefits__slider .swiper{
    overflow: visible;
}
.employee-benefits__slider .swiper-wrapper{
    align-items: center;
}
.employee-benefits__slider .swiper-slide{
    display: flex;
    justify-content: center;
    transition: transform .25s ease, opacity .25s ease, filter .25s ease;
    opacity: 1;
    transform: scale(.88);
}
.employee-benefits__slide-img{
    width: 100%;
    height: auto;
    display: block;
}
.employee-benefits__slider .swiper-slide-active{
  opacity: 1;
  transform: scale(1);
  filter: none;
}
.employee-benefits__pagination{
  position: absolute !important;
  left: 50% !important;
  bottom: 23px !important;
  transform: translateX(-50%) !important;
  width: auto !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center;
  justify-content: center;
  gap: 10px;
  z-index: 5;
}
.employee-benefits__pagination .swiper-pagination-bullet{
  width: 10px;
  height: 10px;
  border-radius: 999px;
  opacity: .35;
  margin: 0 !important;
  background: #E6E6E6;
}
.employee-benefits__pagination .swiper-pagination-bullet-active{
  opacity: 1;
  background: #B3B3B3;
}
.employee-benefits__nav{
  position: absolute;
  bottom: 8px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  z-index: 6;
  line-height: 0;
}
.employee-benefits__nav img{
  width: 46px;
  height: 46px;
  display: block;
}
.employee-benefits__prev{
  left: calc(50% - 180px);
}
.employee-benefits__next{
  right: calc(50% - 180px);
}
/* PC/SP 表示切替 */
.employee-benefits__nav-pc { 
    display:block;
}
.employee-benefits__nav-sp { 
    display:none; 
}

@media (max-width: 1024px){
  .employee-benefits{
    padding: 60px 0 36px;
  }
  .employee-benefits__heading h2{
    font-size: 30px;
  }
}
@media (max-width: 768px){
  .employee-benefits{
    padding: 5% 0;
  }
  .employee-benefits__heading h2{
    font-size: 24px;
  }
  .employee-benefits__line{
    width: 92%;
  }
  .employee-benefits__nav img {
    display: none;
  }
  .employee-benefits__slider{
    position: relative;
    margin-top: -15px;
    padding-bottom: 10%;
  }
  .employee-benefits__pagination { 
    display: none !important;
  }
}
/* SP：prevオミット */
@media (max-width: 900px){
  .employee-benefits__prev{
    display: none !important;
  }
  .employee-benefits__next{
    top: auto;
    bottom: 12px;
    right: 14px;
    transform: none;
    width: auto;
    height: auto;
    line-height: 1;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .employee-benefits__nav-pc{ display:none; }
  .employee-benefits__nav-sp{
    display: inline-flex;
    align-items: center;
    gap: 10px;
  }
  .employee-benefits__swipe-text{
    font-weight: 800;
    font-size: 18px;
    color: #202a5a;
    letter-spacing: .02em;
  }
  .employee-benefits__swipe-circle{
    width: 34px;
    height: 34px;
    border-radius: 999px;
    background: #202a5a;
    position: relative;
    flex: 0 0 34px;
  }
  .employee-benefits__swipe-circle::after{
    content:"";
    position:absolute;
    top:50%;
    left:52%;
    transform: translate(-50%, -50%);
    width:0;
    height:0;
    border-left: 8px solid #fff;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
  }
  .employee-benefits__next:active{
    transform: scale(.98);
  }
}