@charset "utf-8";


body {
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-size: 16px;
    line-height: 2.0;
    color: #595b5c;
    background-color: #fff;
    box-sizing: border-box;
    overflow-x: hidden;
    
}
ul,
ol {
  list-style: none;
  padding-inline-start: 0px
}


a {
  text-decoration: none;

}
a,a:hover,a:visited{
  color: inherit;
}
main {
  background-color: #fff;
  width: 100%;
}

 /* loading */
 #splash {
  position: fixed;
  width: 100vw;
  height: 100vh;
  z-index: 999;
  background:#FFF;
  text-align:center;
}

#splash_logo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#splash_logo img {
  width:260px;
}
.fadeUpTrigger{
  opacity: 0;
  }

.fadeUp{
animation-name: fadeUpAnime;
animation-duration:1s;
animation-fill-mode:forwards;
opacity: 0;
}

@keyframes fadeUpAnime{
  from {
  opacity: 0;
  transform: translateY(100px);
  }

  to {
  opacity: 1;
  transform: translateY(0);
  }
}

.inner{
  padding: 0 140px;
  margin: auto;
  max-width: 1300px;
}
.spBr{
  display: none;
}
.pcBr{
  display: block;
}
.tbBr{
  display: block;
}
.pctbBr{
  display: block;
}
@media screen and (max-width: 960px) {
.tbBr{
  display: block;
}
.pcBr{
  display: none;
}
.inner{
  padding: 0 40px;
}
}

@media screen and (max-width: 520px) {
  .pctbBr{
    display: none;
  }
  .spBr{
    display: block;
  }
  .tbBr{
    display: none;
  }
  .inner{
    padding: 0 16px 40px ;
  }
}

.section__title{
  font-size: 16px;
  font-weight: 700;
  margin: 0;
}
.section_title_group{
  position: relative;
  padding-top: 15px;
  padding-left: 70px;
  margin-top: 60px;
  margin-bottom: 60px;
  z-index: 3;
}
.section_title_group::before{
  position: absolute;
  content: "";
  width:100px;
  height:100px;
  background-image: url(../images/title_img.svg);
  background-size: contain;
  display: inline-block;
  vertical-align: middle;
  top:0;
  left:0;

}
@media screen and (max-width: 960px) {
  .section_title_group{
    padding-top: 5px;
    padding-left: 50px;
    margin-top: 30px;
}
.section__title{
  font-size: 13px;
}
}
/* header */
.c-header {
  position: fixed;
  top: 20px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
  width: 96vw;
  padding:0 20px;
  height: 60px;
  border-radius: 40px;
  background: #fffFFF;
  z-index: 9;
  -webkit-box-shadow: 0 5px 15px 0 rgba(12, 67, 127, 0.1);
  box-shadow: 0 5px 15px 0 rgba(12, 67, 127, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: -80px;
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: inherit;
  position: relative;
  width:100%;
  gap:20px;
}

.c-header__logoGroup{
  display: flex;
  gap: 20px;
  align-items: center;
}
.c-header__logo_benesse{
  max-width: 95px;
  height: auto;
  text-decoration: none;
  vertical-align: middle;
  padding-bottom: 8px;
}
.c-header__logo_withbatons{
  max-width: 110px;
  height: auto;
  text-decoration: none;
  vertical-align: middle;
  margin-left: 20px;
}
.header__nav {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  transform: translateX(-110%);
  background-color: #fff;
  transition: ease .4s;
}

@media screen and (min-width: 426px) {
  .c-header__logoGroup{
    padding-left: 15px;
  }
  .c-header__logo_benesse{
    max-width: 105px;
  }
  .c-header__logo_withbatons{
    max-width: 120px;
    margin-left: 30px;
  }
}

@media screen and (min-width: 1260px) {
  .header__inner{
    padding: 0 20px;
  }
  .c-header{
    height: 80px;
  }
  .c-header__logoGroup{
    gap: 30px;
  }
  .c-header__logo_withbatons
   {
      max-width: 130px;
      height: auto;
      text-decoration: none;
  }
  .header__nav {
    position: static;
    transform: initial;
    background-color: inherit;
    height: inherit;
    display: flex;
    justify-content: end;
  }

  .nav__items {
    width: 100%;
    display: flex;
    align-items: center;
    height: initial;
    justify-content: flex-end;
    gap: 20px;
  }
}

.nav-items {
  padding-top: 80px;
  padding-bottom: 200px;
}
.header_btn{
  text-align: center;
  display: block;
}
.btn__download{
  width:170px;
  height: 60px;
	display: block;
	text-align: center;
  font-size: 16px;
	text-decoration: none;
  padding: 10px 0;
	font-weight: bold;
	border: 2px solid #EF5C64;
	background: #EF5C64;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
  box-shadow: 0 2px 7px  rgba(10, 101, 159, .24);
	-webkit-box-shadow:  0 2px 7px  rgba(10, 101, 159, .24);
  margin: 0 auto;
}
.btn__download:hover{
  color:#EF5C64;
	background: #fff;
  cursor: pointer;

}

.btn__contact{
  width:170px;
  height: 60px;
	display: block;
	text-align: center;
  font-size: 16px;
	text-decoration: none;
  padding: 10px 0;
	font-weight: bold;
	border: 2px solid #0E77BA;
	background: #0E77BA;
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
  box-shadow: 0 2px 7px  rgba(10, 101, 159, .24);
	-webkit-box-shadow:  0 2px 7px  rgba(10, 101, 159, .24);
  margin: 0 auto;
}
.btn__contact:hover{
  color:#0E77BA;
	background: #fff;
  cursor: pointer;

}
@media screen and (max-width: 1260px) {
  .c-header .btn__download{
    margin-top: 20px;
    height: 48px;
    line-height: 40px;
    padding: 0;
  }
  .c-header .btn__contact{
    height: 48px;
    line-height: 40px;
    padding: 0;
  }
}

@media screen and (min-width: 1260px) {
  .nav-items {
    padding-top: inherit;
    padding-bottom: inherit;
  }
}
.nav-items__item a {
  width: 100%!important;
  display: block;
  text-align: center;
  font-size: 16px;
  margin-bottom: 20px;
}

.nav-items__item:last-child a {
  margin-bottom: 0;
}

@media screen and (min-width: 1260px) {
  .nav-items__item a {
    margin-bottom: 0;
  }
  .hamburger {
    display: none;
  }
}

.header__hamburger {
  width: 48px;
  height: 100%;

}

.hamburger {
  background-color: transparent;
  border-color: transparent;
  z-index: 9999;
}

.hamburger span {
  width: 100%;
  height: 1px;
  background-color: #000;
  position: relative;
  transition: ease .4s;
  display: block;
  cursor: pointer;
  z-index: 3!important;
}

.hamburger span:nth-child(1) {
  top: 0;
}

.hamburger span:nth-child(2) {
  margin: 8px 0;
}

.hamburger span:nth-child(3) {
  top: 0;
}

.header__nav.active {
  transform: translateX(0);
}

.hamburger.active span:nth-child(1) {
  top: 5px;
  transform: rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;

}

.hamburger.active span:nth-child(3) {
  top: -13px;
  transform: rotate(-45deg);
}

/* mv */
.mv{
  display: flex;
  flex-direction: column;
  width:100vw;
  min-height: 800px;
  background-image: url(../images/mv.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position:center;
  margin: 0 auto;
  margin-bottom: 80px;
}
.mv_copy_area{
  padding: 140px 0 0 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.mv_copy_area_catchcopy{
  font-size: 48px;
  font-weight: 700;
  line-height: 5.5rem;
  color: #464545;
}
.mv_catchcopy_strength{
  font-size: 72px;
}
.mv_catchcopy_letterSpacing{
  letter-spacing: 0.5rem;
}
.mv_copy_area_txt{
  font-size: 16px;
  margin: 40px 0 30px 0;
  color: #464545;
}

.mv_copy_area_prise_group{
  display: flex;
  align-items: center;
  width:520px;
  justify-content: space-between;
  padding-left: 0px;
}
.priseGroup_googdesign{
  width:85px;
}.priseGroup_hr_award{
  width:76px;
}
.priseGroup_hr_technology_award{
  width:70px;

}
.priseGroup_Achievements{
  width:183px;
}
.mv_btn_area{
  width:520px;
}
.mv_btn{
  font-size: 24px;
  width: 460px;
  height: 80px;
  z-index: 2;
  margin-bottom: 80px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mv_sp{
  display: none;
}
.mvBr{
  display: block;
}
@media screen and (max-width: 740px) {
  .mv{
    background-image: url(../images/mv-sp.png);
    min-height: 660px;
    position: relative;
  }
  .mv_copy_area_catchcopy{
    font-size: 28px;
    line-height: 48px;
  }
  .mv_catchcopy_strength{
    font-size: 48px;
  }
  .mv_copy_area_txt{
    font-size: 14px;
    line-height: 24px;
    margin-top: 10px;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.5);
    margin-bottom: 140px;
    padding: 10px;
    border-radius: 5px;
    max-width: 350px;
    text-align: left;
  }
  .mv_copy_area_prise_group{
    width:200px;
    margin: 0 auto;
    position: absolute;
    flex-wrap: wrap;
    margin-top: -60px;
    justify-content: flex-start;
  }
  .mv_catchcopy_letterSpacing{
    letter-spacing: 0.2rem;
  }
  .priseGroup_googdesign,.priseGroup_hr_award,.priseGroup_hr_technology_award{
    width:60px;
  }
  .priseGroup_Achievements{
    width:120px;
  }
 .mv_btn{
      font-size: 18px;
      width: 300px;
      height: 70px;
      padding: 20px;
      z-index: 2;
      margin-bottom: 60px;
      margin: 0 auto;
      position: absolute;
      left: 50%;
      transform: translateX(-50%);
      bottom: 40px;
      line-height: 21px;
    }
    
    .mv_sp{
      display: block;
      width: 100vw;
      margin-top: 120px;
    }
    .mv_copy_area{
      padding: 100px 16px 0 16px;
    }
    .mvBr{
      display: none;
    }
  }
/* Seminars & Events */
.section__seminars{
  padding-bottom: 80px;
}

.seminar_group{
  display: flex;
  max-width: 1160px;
  justify-content: space-between;
  align-items: flex-start;
  gap:4%;
  margin: 0 auto;
}

.seminar_pickup,.seminar_rightGroup{
  max-width:48%;
}
.seminar_pickupImg{
  position: relative;
  max-width: 100%;
}
.seminar_pickupImg:before{
  background-size: cover;
  content: "";
  background-image: url(../images/pickup.png);
  position: absolute;
  top: -20px;
  left: -20px;
  width: 150px;
  height: 60px;

}
.seminar_pickupImg img{
  border-radius:20px;
  max-width: 100%;
}
.seminar_schedule{
  margin-top: 20px;
}
@media screen and (max-width: 1050px) {
  .seminar_group{
    gap: 20px;
  }
}
@media screen and (max-width: 1050px) {
  .seminar_schedule{
    margin-top: 10px;
  }
}
.seminar_title{
  font-weight: 700;
}
.seminar_tagGroup{
  margin-top: 10px;
}
.seminar_tag{
  display: inline-block;
  margin: 0 .1em .6em 0;
  padding: .6em 1em;
  line-height: 0.8;
  text-decoration: none;
  color: #707070;
  font-size: 10px;
  background-color: #fff;
  border: 1px solid #707070;
  border-radius: 2em;
}
.seminar_rightGroup{
  max-width:48%;
  display: flex;
  flex-direction: column;
}
.seminar_list{
  padding-left: 0; 
  display: flex;
  flex-direction: column;
}
.seminar_moreBtn{
  text-align: right;
}
.seminar_moreBtn img{
  width:67px;
}
.seminar_card{
  padding-bottom: 10px;
  border-bottom: 1px solid #D9D9D9;
}

.seminar_card:last-child{
  border-bottom: none;
}
.seminar_viewAllBtn{
  text-align: right;
  padding-top: 40px;
}
.seminar_viewAllBtn img{
  width:156px;
}
@media screen and (max-width: 960px) {
  .seminar_group{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .section__titleImg.seminar_title {
    width:300px;
  }
  .seminar_card:first-child{
    padding-top: 10px;
    border-top: 1px solid #D9D9D9;
  }
  .seminar_pickup,.seminar_rightGroup{
    max-width: 80%;
  }

  .seminar_pickupImg:before {
    top: -20px;
    left: -30px;
    width: 100px;
    height: 40px;
  }
}
@media screen and (max-width: 670px) {
  .seminar_pickup{
    margin-top: 30px;
  }
  .seminar_pickupImg:before {
    left: 0;
  }
}
/* introduction */
.section__introduction{
  position: relative;
}
.section__introductionBg{
  background-image: linear-gradient(0deg, #ffffff, #cfe4f2);
}
.section__introduction::after{
  content: "";
  display: block;
  background-image: url(../images/triangle.svg);
  width:100vw;
  height: 200px;
  background-repeat: no-repeat;
  background-color: #eaf1f7;
  background-size: contain;
  background-position: top center;
}
.section__introduction__inner{
  padding:40px;
}
.section__introduction__title{
  font-size: 24px;
  font-weight: 700;
  text-align: center;
  padding-top:80px;
  padding-bottom: 80px;
}
@media screen and (max-width: 740px) {
  .section__introduction__inner{
    padding: 0 16px 20px;
  }
  .section__introduction__title{
    font-size: 18px;
    padding-top: 40px;
    padding-bottom: 40px;
  }
}
.section__introduction__word{
  display: flex;
  max-width: 1000px;
  margin: 0 auto;
  justify-content: space-between;
  align-items: flex-end;
}
.section__introduction__wordGroup{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.section__introduction__wordTxt{
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 5px 25px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 960px) {
  .section__introduction__wordTxt{
    width: 70%;
  }
}
.section__introduction__wordTxt::before{
  content: "";
  position: absolute;
  left: -38px;
  width: 13px;
  height: 10px;
  bottom: 0;
  background: #fffFFF;
  border-radius: 50%;
}
.section__introduction__wordTxt::after{
  content: "";
  position: absolute;
  left: -24px;
  width: 20px;
  height: 15px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
}

.section__introduction__wordTxt_right{
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 5px 25px;
  margin-bottom: 20px;
  position: relative;
}
@media screen and (max-width: 690px) {
  .section__introduction__wordTxt_right{
    width: 70%;
  }
}
.section__introduction__wordTxt_right::before{
  content: "";
  position: absolute;
  right: -38px;
  width: 13px;
  height: 10px;
  bottom: 0;
  background: #fffFFF;
  border-radius: 50%;
}
.section__introduction__wordTxt_right::after{
  content: "";
  position: absolute;
  right: -24px;
  width: 20px;
  height: 15px;
  bottom: 3px;
  background: #ffffff;
  border-radius: 50%;
}

.section__introduction__summary{
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 740px) {
  .section__introduction__summary{
    margin-top: 40px;
  }
}
.section__introduction__summaryTxt{
  font-weight: 700;
}
.section__introduction__summaryStrength{
  font-weight: 700;
  font-size: 36px;
  color: #0E77BA;
}
.section__introduction__reason{
  background-color: #FFFFFF;
  border-radius: 20px;
  max-width: 1044px;
  margin: 0 auto;  
  padding:40px 20px;
  padding-top: 20px;
  margin-top: 40px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(12, 67, 127, 0.1);
  box-shadow: 0 5px 15px 0 rgba(12, 67, 127, 0.1);
  margin-bottom: 40px;
}
.section__introduction__reasonTitle{
  font-size: 24px;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 740px) {
  .section__introduction__reasonTitle{
    margin: 20px;
  }
}
.section__introduction__reason_01Group{
  display: flex;
  flex-direction: row;
  gap:50px;
  align-items: center;
  justify-content: space-around;
}
@media screen and (max-width: 740px) {
  .section__introduction__reason_01Group{
    gap: 24px;
  }
}
.section__introduction__reason_01Graph{
  max-width: 500px;
}
.section__introduction__reason_01Graph img{
width:100%;
}
.section__introduction__reason_01Women img{
  max-width: 287px;
  height: auto;
}
.section__introduction__reason_02{
  display: flex;
  gap:50px;
  align-items: center;
  justify-content: space-around;
  justify-content: center
}
@media screen and (max-width: 740px) {
  .section__introduction__reason_02{
    gap: 24px;
  }
}

.section__introduction__reason_02Women img{
  width:192px;

}
.section__introduction__reason_02TxtStrength{
font-weight: 700;
font-size: 24px;
margin-right: 5px;
}
.section__introduction__summary02{
  font-weight: 700;
  font-size: 24px;
  text-align: center;
  margin-top: 100px;
  position: relative;
}

@media screen and (max-width: 1050px) {
  .section__introduction__summary02{
    margin-top: 40px;
  }
}
.section__introduction__summary02Txt{
  font-size: 36px;
  color: #EF5C64;
}


@media screen and (max-width: 960px) {
.section__introduction__wordImg{
  display: none;
}
.section__introduction::after{
  height: 100px;
}
.section__introduction__word{
  flex-direction: column-reverse;
  align-items: center
}
.section__introduction__summaryStrength{
  font-size: 24px;
}
.section__introduction__reason_01Group{
  flex-direction: column;
}
.section__introduction__reason_02{
  flex-direction: column-reverse;
}
.section__introduction__reasonTitle{
  font-size: 18px;
  line-height: 24px;
}
.section__introduction__summary02Txt{
  font-size: 24px;
}
}


/* section__about */
.section__about{
  background-image: linear-gradient(#eaf1f7, #fdedef);
  padding-top: 10px;
}

.section__titleImg__about{
  width:128px;
}
.aboutGroup{
  display: flex;
  max-width: 1140px;
  height: 711.5px;
  background-image: url(../images/mentoring.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position:center;
  margin: 0 auto;
  margin-bottom: 80px;
}
.aboutGroup_sp{
  display: none;
}

.aboutGroupLeft,.aboutGroupRight{
  display: flex;
  flex-direction: column;
  width: 50%;
  text-align: center;

}
.ribon_decoration_01{
  margin: 0 0 0 auto;
  display: block;
  margin-top: 200px;
}



@media screen and (max-width: 740px) {
  .ribon_decoration_01{
    margin-top: 60px;
    width: 200px;
  }
}
.about_commonService_img{
  width: 350px;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}
.about_commonService_img img{
  width: 100%;
}
.aboutGroupLeftTxt{
  font-size: 20px;
  background-image: url(../images/logo_bg_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position:center;
  height: 50%;
  position: relative;
  align-items: center;
  width: 500px;
}
.aboutGroupLeftTxt p{
  position: absolute;
  top: 50%;
  -webkit-transform : translateY(-60%);
  transform : translateY(-60%);
}
.aboutGroupRightTxt{
  height: 50%;
  position: relative;
  width: 580px;
}.aboutGroupRightTxt p{
  position: absolute;
  top: 50%;
  -webkit-transform : translateY(-60%);
  transform : translateY(-60%);
}
.aboutGroupBox{
  height: 50%;
}
.about_mentoringTitle{
  max-width: 1300px;
  margin: 0 auto;
}
.about_mentoringTxt{
  line-height: 24px;
}
.about_mentoringGroup{
  display: flex;
  justify-content: space-evenly;
  align-items: center;
  gap:40px;
  max-width: 1300px;
  margin: 0 auto;
}

.about_mentoringGroup_bg{
  background-image: url(../images/ribon.svg);
  background-repeat: no-repeat;
  background-size: 100vw;
  background-position:center;
  background-size: contain;
  height: 371px;
}
.about_mentoringImg img{
  width: 100%;
  max-width:400px;
}
.about_commonService{
  background-color:#F0E3E5;
  padding: 20px;
  border-radius: 20px 20px 0px 0px;
  width:740px;
  margin: 0 auto;
  text-align: center;
  margin-top: -200px;
  position: relative;
}
.about_commonService::after{
  content: "";
  width:0;
  height:0;
  border-style:solid;
  border-width: 60px 370px 0 370px;
  border-color: #F0E3E5 transparent transparent transparent;
  position: absolute;
  bottom:-60px;
  left: 0;

}

.about_commonService_txt{
  margin-top: 20px;
}
.about_commonService_txt li{
  margin-top: 15px;
}
.about_commonService_summary{
  font-size: 18px;
  font-weight: 700;
}
.about_commonService_summary span{
  text-emphasis: dot #595b5c;
}
.about_mentoring_next{
  display: flex;
  justify-content: center;
  margin: 0 auto;
  margin-top: 100px;
}
@media screen and (max-width: 740px) {
  .about_commonService_txt li {
    font-size: 12px;
    line-height: 20px;
    margin-top: 20px;
  }
  .about_mentoring_next{
    margin-top: 60px;
  }
}
.about_mentoring_nextImg img{
  width:140px;
  object-fit: contain;
}
.about_mentoring_nextTxt{
  font-size: 18px;
  padding-left: 5px;

}
.about_mentoring_nextTxt p{
  margin-top: 16px;
}
.triangle02 {
  position: relative;
}

.triangle02:after {
  content: "";
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translatex(50%);
  box-sizing: border-box;
  border-right: calc(50vw - 10px) solid transparent;
  border-left: calc(50vw - 10px) solid transparent;
  border-top: 100px solid #FDEDEF;
}
@media screen and (max-width: 1240px) {
.aboutGroup_sp{
  display: block;
}
.aboutGroup_sp_Txt{
  font-size: 18px;
  font-weight: 700;
}
.aboutGroup_sp_img{
  display: block;
  display: block;
  width: 60vw;
  margin: 40px auto;
}
.aboutGroup_sp_Description{
  margin-bottom: 60px;
  line-height: 24px;
}
.aboutGroup{
display: none;
}
.aboutGroupLeftTxt{
  font-size: 18px;
}
.about_mentoringGroup{
  flex-direction: column;
}
.about_commonService{
  margin-top: 0;
}
.ribon_decoration_01{
  width:200px;
}
}
@media screen and (max-width: 740px) {

  .about_commonService{
    width: calc(100% - 32px);
    margin-top: 40px;
  }
  .about_commonService_img{
    width: 280px;
  }
  .about_commonService::after{
    border-width: 30px 160px 0 160px;
    left: 50%;
    transform: translateX(-50%);
    bottom:-30px;
  }
  .about_commonService_txt{
    font-size: 15px;
  }
  .about_mentoring_next{
flex-direction: column;
align-items: center;
  }
  .aboutGroup_sp_img {
    width:90vw;
  }

}
@media screen and (min-width: 1441px) {
  .ribon_decoration_01{
    opacity: 0;
  }
}
/* Features */
.section__features{
  padding-bottom: 80px;
  padding-top: 60px;
}
@media screen and (max-width: 520px) {
  .section__features{
    padding-top: 100px;
  }
}
.section__titleImg__features{
  width:179px;
}
.features_mainGroup{
  display: flex;
  justify-content: center;
  align-items: flex-end;
  gap:20px;
}
.features_txtGroup{
  display: flex;
  flex-direction: column;
}
.features_txtPoint{
  font-size: 24px;
  font-weight: 700;

}
.features_pointTxt h3{
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 20px;
}
.features_txtPointStrong{
  font-size: 36px;
  color: #EF5C64;
}

.features_Img{
  max-width: 350px;
}
.features_Img img{
  width:100%;
}
.features_txtDescription{
  margin-top: 40px;
  max-width: 700px;
}

@media screen and (max-width: 1050px) {
  .features_txtDescription{
    margin-top: 20px;
  }
}

.features_point{
  display: flex;
  flex-direction: column;
  margin: 60px 0;
  gap:50px;
}
@media screen and (max-width: 1050px) {
  .features_point{
    margin: 60px 0 0;
  }
}
@media screen and (max-width: 740px) {
  .features_point{
    margin: 40px 0;
    gap: 24px;
  }
}
.features_pontGroup{
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap:30px;
  margin-top: 60px;
}
@media screen and (max-width: 740px) {
  .features_pontGroup{
    gap: 24px;
    margin-top: 30px;
  }
}

.features_pointImg{
  max-width: 520px;
}
.features_pointImg img{
 object-fit: cover;
 width: 100%;
  margin: 0 auto;
}
.features_pointTxt{
  max-width: 520px;
}
@media screen and (max-width: 1050px) {
  .features_mainGroup{
    flex-direction: column;
    align-items: center;
  }

  .features_txtPoint{
    font-size: 18px;
  }
  .features_txtPointStrong{
    font-size: 24px;
  }
  .features_pontGroup{
    flex-direction: column;
    align-items: center;
  }
.features_pontGroup:first-child{
  flex-direction: column-reverse;
}
  
  .features_pointTxt p{
    font-size: 14px;
    line-height: 24px;
  }
}
.stepforward_wrapper{
  background-image: linear-gradient(#eaf1f7, #fdedef);
  padding-top: 10px;
  position: relative;
  padding-bottom: 150px;
}
.stepforward_wrapper_decoration{
  width:100vw;
  margin-bottom: -10px;
}
.stepforward_wrapperTxt{
  background-image: url(../images/logo_bg_white.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position:center;
  align-items: center;
  margin: 0 auto;
  margin-top: 60px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 740px) {
  .stepforward_wrapperTxt{
    margin-top: 30px;
  }
}
.stepforward_wrapperTitle{
  font-size: 24px;
  font-weight: 700;
  text-align: center;
}
.stepforward_wrapperDescription{
  text-align: center;
}
/* section__results */

.section__titleImg__results{
  width:149px;
}
.resultsData{
  width: 50vw;
  display: block;
  margin: 0 auto;
  padding-bottom: 60px;
  position: relative;
  max-width: 1000px;
}
.resultsData_sp{
display: none;
}
.stepforward_decoration{
  margin-top: -100px;
  z-index: -5;
  width:100vw;
  opacity: 0.6;
}
.section__titleImg__voices{
  width:131px;
}
@media screen and (max-width: 1050px) {
  .resultsData{
    width:70vw;
    margin-bottom: 60px;
  }
  .section__results{
    padding: 0;
  }
}
@media screen and (max-width: 520px) {
  .resultsData{
    display: none;
  }
  .resultsData_sp{
    display: block;
    text-align: center;
  }
  .resultsData_sp img{
    width:60vw;
  }
}
/* tab */
.tabs {
  max-width: 1160px;
  margin: 0 auto;
}

.tab_item {
  width: calc((100% - 12px)/4);
  height: 52px;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border-radius: 20px 20px 0px 0px;
  padding-top: 6px;
}
.tabs > label.tab_item:not(:last-of-type) {
  margin-right: 4px;
}

.tab_item:hover {
  opacity: 0.75;
  cursor: pointer;
}

input[name="tab_item"] {
  display: none;
}

.tab_content {
  display: none;
  padding: 0px 40px 40px 40px;
  clear: both;
  overflow: hidden;
  background-color:#FFF;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
  border-radius:0px 0px 20px 20px ;
}

#case01:checked ~ #case01_content,
#case02:checked ~ #case02_content,
#case03:checked ~ #case03_content,
#case04:checked ~ #case04_content {
  display: block;
}


.tabs input:checked + .tab_item {
  background-color: #0E77BA;

}
.voice_title{
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.voice_category,.voice_categoryGroup,.voice_categoryTagGroup{
  display: flex;
  align-items: center;
}
.voice_categoryTagGroup{
  display: flex;
    align-items: center;
    flex-wrap: wrap;
    flex-direction: row;
}
.menteevoice{
  display: flex;
  flex-direction: row;
  gap:20px;
}
@media screen and (max-width: 900px) {
  .menteevoice{
    flex-wrap: wrap;
    justify-content: center;
  }
}
@media screen and (max-width: 770px) {
  .menteevoice{
    flex-direction: column;
    align-items: center;
  }
}

.voice_category{
  margin-bottom: 20px;
}
.voice_title h3{
  font-weight: 700;
  font-size: 24px;
  color: #0E77BA;
  padding-left: 10px;
}
.voice_categoryGroup p{
  padding-left: 10px;
  font-size: 14px;
}
.voice_categoryTitle{
  font-size: 14px;
  background-color: #F4F4F4;
  padding:5px 10px;
  display: inline;
}
.voice_categoryGroup{
  margin-top: 20px;
  margin-right: 60px;
}
.voice_categoryTag{
  font-size: 14px;
  padding-left: 10px;
}
.voice_categoryTag::before{
  content:"# "
}
.menteevoiceGroup{
  background-color: #ECF4FA;
  border-radius: 10px;
  display: flex;
  width:350px;
  align-items: center;
  flex-direction: column;
  padding: 0px 20px 20px 20px;
}
.menteevoice_times{
  display: flex;
  align-items: flex-end;
}
.menteevoice_times p{
  font-weight: 700;
  color: #0E77BA;
}
.menteevoice_title{
  font-weight: 700;
}
.menteevoice_title.theme{
  margin-top: 10px;
}
.menteevoiceTxt{
  line-height: 24px;
  margin-top: 10px;
  height:180px;
  border-top: #B6D6EA solid;
  padding-top: 10px;
}
.voiceStrong{
  font-weight: 700;
  color: #0E77BA;
}
.menteevoiceMentoring{
  border-radius: 5px;
  text-align: center;
  padding: 10px;
  color: #FFF;
  background-image: linear-gradient(90deg, #0e77ba 0%, #dd9ac2 50%, #ef5c64 100%);
  width: 180px;
  position: relative;
}
@media screen and (max-width: 740px) {
  .menteevoiceGroup{
    width: 100%;
  }
  .menteevoiceTxt{
    height: auto;
  }
  .menteevoiceMentoring{
    margin-top: 20px;
  }
}
.triangle {
  display: inline-block;
  width: 176px;
  height: 30px;
  background: linear-gradient(90deg, #0e77ba 0%, #dd9ac2 50%, #ef5c64 100%);
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  margin-bottom:10px;
  margin-top: -0.5px;
}
.ribon_decoration img{
  margin-top: -200px;
  position: absolute;
  right:0;
  width:70vw;
  z-index: 0;
}
@media screen and (max-width: 1050px) {
  .section__voices_inner{
    margin-top: 0;
    padding: 0 16px;
  }

  .stepforward_wrapperTitle{
    font-size: 18px;
  }
  .stepforward_wrapperDescription {
    font-size: 16px;
    line-height: 24px;
    margin-top: 20px;
  }
  .voice_title,.voice_category{
    flex-direction: column;
    align-items: flex-start;
  }
  .voice_title h3 {
    font-size: 18px;
  }  
  .voice_categoryGroup {
    width: 100%;
  }
  .tab_content{
    padding: 0px 10px 10px 10px;
  }
  .voice_categoryTitle,.voice_categoryTag{
    font-size: 12px;
  }
  .voice_categoryGroup p{
    font-size: 12px;
    width: 300px;
  }
  .ribon_decoration img{
    margin-top: -90px;
    width: 60vw;
}
}
@media screen and (max-width: 425px) {
  .voice_categoryTagGroup{
    max-width: 230px;
  }
  .voice_categoryGroup p{
    max-width: 230px;
  }
}
@media screen and (min-width: 1441px) {
  .ribon_decoration img {
    width: 50vw;
  }
}

@media screen and (max-width: 520px) {
  .ribon_decoration img {
    width: 70vw;
  }
  .stepforward_wrapper{
    padding-bottom: 80px;
    margin-bottom: 40px;
  }
}

/* service */
.section__services{
  margin-bottom: 60px;
}
.servicePackageTitle,.trainingMenuTitle{
  margin-top: 40px;
  margin-bottom: 40px;
  padding: 0.25em 0.5em;
  background: transparent;
  border-left: solid 5px #eaf1f7;
}
.mentoringFlow{
  display: flex;
}
.mentoringFlow_part h4{
text-align: center;
width:180px;
margin: 20px 0px;
}
.mentoringFlow_part_txt{
  font-size: 14px;
  line-height: 20px;
  width:180px;
  padding-left: 10px;
}
.mentoringFlow_part_txt03{
  font-size: 14px;
  line-height: 20px;
  width: 280px;
  margin-left: 40px;
  color: #FFFFFF;
}
.mentoringFlow_part{
  background-repeat: no-repeat;
  background-size: contain;
  background-position:center;
  align-items: center;
  width: 240px;
  height:185px;
}
.mentoringFlow_part.flow01{
  background-image: url(../images/flow01.svg);
  z-index: 4;
}
.mentoringFlow_part.flow02{
  background-image: url(../images/flow245.svg);
  margin-left: -26px;
  z-index: 3;  
}
.mentoringFlow_part_flow03{
  background-image: url(../images/flow03.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position:center;
  align-items: center;
  width:305px;
  height: 185px;
  margin-left: -26px;
  z-index: 2;
}
.mentoringFlow_part.flow04{
  background-image: url(../images/flow245.svg);
  margin-left: -31px;
  z-index: 1;  
}
.mentoringFlow_part.flow05{
  background-image: url(../images/flow245.svg);
  margin-left: -26px;
}
.mentoringFlow_part,.mentoringFlow_part_flow03{
  display: flex;
  flex-direction: column;
}
.mentoringFlow03Title{
  color: #FFFFFF;
  margin: 20px 0px;
  font-size: 18px;
}
.imgPulus{
  width:auto;
  height:auto;
  text-align: center;
}
.trainingFlow{
  background-image: url(../images/traningFlow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position:center;
  align-items: center;
  width:1160px;
  height: 170px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.trainingFlowTitle{
  color: #EF5C64;
  font-size: 20px;
}
.trainingFlowTxt{
  max-width: 800px;
  margin-top: 0px;
  line-height: 24px;
  font-size: 14px;
}
.servicePackage{
  background-image: linear-gradient(#eaf1f7, #fdedef);
  padding: 20px;
  border-radius: 20px;
  margin: 0 auto;
  max-width: 1300px;
}
.servicePackageGroup{
  display: flex;
  flex-direction: column;
  align-items: center;
}
.mentoringFlow_sp,.mentoringFlow_tb{
  display: none;
}
@media screen and (max-width: 1260px) {
  .mentoringFlow_part{
    width: 200px;
  }
  .mentoringFlow_part h4{
    margin: 20px 0px 10px 0;
    font-size: 14px;
    }
  .mentoringFlow_part_txt{
    font-size: 12px;
    line-height: 20px;
    width:140px;
    padding-left: 10px;
  }
  .mentoringFlow_part_txt03{
    font-size: 12px;
    width: 200px;
    margin-left: 20px;
  }
  .mentoringFlow03Title{
    margin: 20px 0px 10px 0;
    font-size: 16px;
  }
  .mentoringFlow_part_flow03{
    width:252px;
  }
  .trainingFlow{
    width:943px;
  }
  .servicePackage{
    margin: 0px 16px 16px 16px;
  }
  }

@media screen and (max-width: 996px) {
  .mentoringFlow{
    display: none;
  }
  .mentoringFlow_tb{
    display: block;

  }
  .mentoringFlow_tb img{
    width:100%;

  }
  .trainingFlow{
    background-image: none;
    width:95%;
    }
}
.trainingMenu{
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  gap:20px;
  justify-content: center;
  margin-top: 40px;
}

@media screen and (max-width: 767px) {
  .mentoringFlow{
    display: none;
  }
  .mentoringFlow_tb{
    display: none;
  }
  .mentoringFlow_sp{
      display: block;
  }
  .servicePackage{
  width: 95vw;
  }
  }
  @media screen and (max-width: 520px) {
  .servicePackage{
  width: 90vw;
  padding: 20px 20px 80px 20px
  }
  .trainingMenuTitle{
    margin-top: 40px;
  }
  .servicePackageTitle{
    margin-top: 20px;
    margin-bottom: 0px;
  }
  .imgPulus{
    padding-bottom: 20px;
  }
  .trainingMenu {
    margin-top: 0;
  }
  }
.trainingMenuBlock,.trainingMenuBlockUpper,.trainingMenuBlockLower{
  width: 320px;
  height: auto;
  background-color: #FDECEE;
  border-radius: 10px;
  padding: 20px;
  
}
.trainingMenuBlock h4,.trainingMenuBlockUpper h4,.trainingMenuBlockLower h4{
  font-size: 14px;
  margin-top: 0;
  margin-bottom: 5px;
}
.trainingMenuBlock li, .trainingMenuBlockUpper li, .trainingMenuBlockLower li{
  font-size: 14px;
  padding : 0 0 0 2em;
  text-indent: -1.4em;
}
.trainingMenuBlockUpper{
  margin-bottom: 20px;
}
.trainingMenuBlock li::before, .trainingMenuBlockUpper li::before, .trainingMenuBlockLower li::before{ 
  content: "・";
  color: #EF5C64;
  font-size: 18px;
  margin: 0 0.2em 0 0;
}
.trainingMenuBlock ul{
  border-top:#F8B4B7 solid;
  margin-top: 5px;
}
.trainingMenuBlockTxt{
  border-top:#F8B4B7 solid;
  margin-top: 5px;
}
.mentoringmenu_word{
  font-size: 24px;
  color:#EF5C64 ;
  font-weight: 700;
  line-height: 35px;
  text-align: center;
  margin-top: 50px;
  margin-bottom: 50px;
}


/* CaseStudies */
.triangle03{
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 50px solid transparent;
  border-left: 50px solid transparent;
  border-top: 60px solid #ffffff;
  border-bottom: 0;
}
.tabGroup{
  padding: 0 16px; 
}
.section__casestudy{
background-color: #ECF4FA;
padding-bottom: 60px
}
.section__casestudy__inner{
padding: 0 16px;
max-width: 1300px;
margin: 0 auto;
}
.tab-1 {
display: flex;
flex-wrap: wrap;
max-width: 1160px;
margin: 0 auto;
margin-top: 40px;
}

.tab-1 > label {
flex: 1 1;
order: -1;
min-width: 70px;
border-radius: 0;
background-color: #d9d9d9;
text-align: center;
cursor: pointer;
border-radius: 20px 20px 0px 0px;
height: 52px;
padding-top: 14px;
}
.tab-1 > label:not(:last-of-type) {
margin-right: 4px;
}

.tab-1 > label:hover {
opacity: .8;
cursor: pointer;
}

.tab-1 input {
display: none;
}

.tab-1 > div {
display: none;
width: 100%;
padding: 40px 80px;
background-color: #FFFFFF;
box-shadow: 0 0 3px rgba(0, 0, 0, 0.2);
border-radius:0px 0px 20px 20px ;
}

.tab-1 label:has(:checked) {
background-color: #0E77BA;
border-width: 4px 1px 1px;
border-radius: 20px 20px 0px 0px;
}

.tab-1 label:has(:checked) + div {
display: block;
}
.caseStudy_title{
display: flex;
align-items: center;
gap:20px;
}
.IndustryTag{
font-size: 14px;
background-color: #F4F4F4;
padding: 5px 10px;

}
.purposeTag,.detailTag{
font-size: 14px;
background-color: #c1daec;
padding: 5px 10px
}
@media screen and (max-width: 1160px) {
.detailTag{
  margin-bottom: 12px;
}
}
@media screen and (max-width: 500px) {
.detailTag{
  margin-bottom: 20px;
}
}
.caseStudy_title h3{
font-size: 24px;
color: #0E77BA;

}
.purposeGroup{
display: flex;
align-items: center;
gap:20px;
margin: 0 auto;
margin-top: 40px;
align-items: center;
}
@media screen and (max-width: 540px) {
.purposeGroup{
  flex-direction: column;
  align-items: flex-start;
}
}
.purposeTxt{
max-width: 850px;
flex-basis: calc(100% - 100px);
}
.detailGroup{
display: flex;
margin-top: 40px;
align-items: center;
}
@media screen and (max-width: 1160px) {
.detailGroup{
  flex-direction: column;
  align-items: flex-start;
}
}
@media screen and (max-width: 1050px) {
.detailGroup{
  flex-direction: row;
}
}
@media screen and (max-width: 500px) {
.detailGroup{
  flex-direction: column;
  align-items: flex-start;
}
}
.detailGroupTxt{
display: flex;
margin-left: 20px;
max-width: 850px;
font-size: 14px;
line-height: 20px;
align-items: center;
gap: 5px;
}
@media screen and (max-width: 1160px) {
.detailGroupTxt{
  width: 100%;
  justify-content: center;
  margin: 0 auto;
  flex-basis: calc(100% - 100px);
}
}
@media screen and (max-width: 1400px) {
.detailGroupTxt{
  flex-direction: column;
  align-items: center;
}
}
.detailGroupTxt span{
font-size: 36px;
font-weight: 700;
}
.detail{
padding: 0px 10px;
border: 3px solid #0E77BA;
border-radius: 5px;
height: 53px;
width: 263px;
text-align: center;
position: relative;

}
.detail_inner{
width: 263px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}
.detail_mentoring{
padding: 0px 10px;
background-image: linear-gradient(90deg, #0e77ba 0%, #dd9ac2 50%, #ef5c64);
border-radius: 5px;
height: 53px;
width: 263px;
color:#FFFFFF;
text-align: center;
position: relative;

}
.detail_mentoring_inner{
width: 263px;
position: absolute;
top: 50%;
left: 50%;
transform: translateY(-50%) translateX(-50%);
}
.shapes_your_organization_decoration{
width:90vw;
margin-bottom: 0;
}
@media screen and (max-width: 1050px) {
.triangle03{
  border-top: 30px solid #ffffff;
}
.mentoringmenu_word {
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 40px;
}
.caseStudy_title{
  flex-direction: column;
  align-items: flex-start;
  gap:10px;
}
.caseStudy_title h3{
  font-size: 18px;
  line-height: 24px;
}
.purposeTxt{
  font-size: 14px;
  line-height: 20px;
}
.tab-1 > div {
  padding: 20px 40px;
}
@media screen and (max-width: 600px) {
  .tab-1 > div {
    padding: 20px;
  }
}
.detail,.detail_mentoring {
  width:200px;
}
.section__casestudy__inner{
  padding: 0 16px;
}
}

/* FAQ */

.tab01 {
  width: 100%;
  margin: 0 auto 50px;
  max-width: 1160px;
}

.tab_menu {
  width: calc((100% - 8px) / 3);
  height: 60px;
  line-height: 1.2;
  font-size: 16px;
  text-align: center;
  color:#595b5c;
  background-color: #d9d9d9;
  display: block;
  float: left;
  text-align: center;
  font-weight: bold;
  transition: all 0.2s ease;
  border-radius: 20px 20px 0px 0px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.tab01 label.tab_menu:not(:last-of-type) {
  margin-right: 4px;
}

.tab_menu:hover {
  opacity: 0.75;
  cursor: pointer;
}

input[name="tab_menu"] {
  display: none;
}
.tab_contents {
  display: none;
  padding: 40px;
  clear: both;
  overflow: hidden;
  transition: .5s opacity;
  box-shadow: 0 5px 15px 0 rgba(12, 67, 127, 0.1);
  border-radius: 0px 0px 20px 20px;
}
#menu01:checked ~ #menu01_content,
#menu02:checked ~ #menu02_content,
#menu03:checked ~ #menu03_content {
  display: block;
}
.tab01 input:checked + .tab_menu {
  color: #fff;
  background-color: #0E77BA;
  border-width: 4px 1px 1px;
  border-radius: 20px 20px 0px 0px;
}
.qa-8 dt {
  margin-bottom: 1em;
  color: #595b5c;
}

.qa-8 dt::before,
.qa-8 dd::before {
  margin-right: .4em;
}

.qa-8 dt::before {
  content: "Q.";
  color: #0E77BA;
}

.qa-8 dd {
  margin: 0 0 2.5em;
  padding: 1em 1.5em;
  background-color: #f2f2f2;
  color: #333333;
}

.qa-8 dd::before {
  content: "A.";
  color: #EF5C64;
}
@media screen and (max-width: 1050px) {

  .tab_menu{
    font-size: 12px;
    line-height: 16px;
    font-weight: 400;
  }
  .tab_contents{
    padding: 10px;
  }
}
/* recruting */
.section__recruting img{
  width: 100vw;
}
.section__recrutingGroup{
  display: flex;
  gap:50px;
}
.section__recrutingGroup01{
width: 50%;
display: flex;
flex-direction: column;
align-items: center;
}
.section__recrutingTitle{
  font-size: 36px;
  margin-bottom: 40px;
}
.section__recrutingTxt{
  margin-bottom: 40px;
}
.btn__recruit{
  width:250px;
  height: 60px;
	text-align: center;
  font-size: 16px;
	text-decoration: none;
  padding: 10px 0;
	font-weight: bold;
	border: 2px solid #EF5C64;
  background-image: linear-gradient(90deg, #0e77ba 0%, #dd9ac2 50%, #ef5c64);
	color: #fff;
	border-radius: 100vh;
	transition: 0.5s;
  box-shadow: 0 5px 15px 0 rgba(12, 67, 127, 0.1);
	-webkit-box-shadow: 0 5px 15px 0 rgba(12, 67, 127, 0.1);
  border:none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.btn__recruit:hover{
  opacity: 0.75;
  cursor: pointer;
}
.section__recrutingGroup02{
  width: 50%;
  }
.recruitment_conditions{
  background-color: #FFFFFF;
  border-radius: 20px;
  padding: 20px;
  -webkit-box-shadow: 0 5px 15px 0 rgba(165, 66, 71, 0.1);
  box-shadow: 0 5px 15px 0 rgba(165, 66, 71, 0.1);
  max-width: 480px;
  margin: 0 auto;
}
.recruitment_conditionsTxt li{
  padding : 0 0 0 2em;
  text-indent: -1.4em;

}
.recruitment_conditionsTxt li::before{
  content: "・";
  color: #EF5C64;
  font-weight: 700;
  margin: 0 0.2em 0 0;
}
.recruitment_conditions p{
  text-align: center;
}
.recruitment_conditionsTxt{
  border-top:#F8B4B7 solid;
  margin-top: 5px;
  padding-top: 12px;
}
@media screen and (max-width: 1050px) {
  .section__recrutingGroup{
    flex-direction: column;
    align-items: center;
  }
  .section__recrutingGroup01,.section__recrutingGroup02{
    width: 100%;
    }
    .section__recrutingTitle{
      font-size: 24px;
    }
}
/* CTA */
.section__cta img{
  width:100vw;
  margin-bottom: 0px;
  margin-top: 80px;
}
.btn__contact.quote{
  width:300px;
  height: 70px;
  position: relative;
  z-index: 2;

}
.btnTxt{
  font-size: 12px;
  font-weight: 400;
  padding-top: 5px;
}
.btnTitle{
  font-size: 20px;
  line-height: 24px;
}
.btn__download.ctaBtn{
  width:300px;
  height: 70px;
  position: relative;
  z-index: 4;
}
.cta_btn{
  display: flex;
  justify-content: center;
  gap: 112px;
  max-width: 800px;
  margin: 0 auto;
  margin-top: 60px;
  color: #FFF;
}
.btn__contact.quote,.btn__download.ctaBtn{
  padding: 0;
}
.cta_Txt{
  font-size: 24px;
  line-height: 42px;
  font-weight: 700;
  text-align: center;
  padding-top: 60px;
  color: white;
  z-index: 3;
  position: relative;
}
.section__ctaBg{
  margin-top: -10px;
  background-image: linear-gradient(90deg, #0e77ba 0%, #dd9ac2 50%, #ef5c64);
  padding-bottom:60px;
  position: relative;
}
.section__ctaBg::after{
  content: "";
  background-image: url(../images/cta_bg.png);
  position: absolute;
  bottom: 0px;
  right: 0px;
  width: 280px;
  height: 300px;
  background-size: auto 100%;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1050px) {
  .cta_btn{
    flex-direction: column;
    gap:20px;
    align-items: center;
  }
  .cta_Txt{
    font-size: 18px;
    line-height: 26px;
  }
  .section__ctaBg::after{
    width: 200px;
    height: 350px;
  }
}
@media screen and (max-width: 520px) {
  .section__ctaBg{
    padding-bottom: 0;
  }
}
/* footer */
.section__footer {
  width: 100%;

  margin-top: 80px;
}
.footerGroup{
  background-color:#ECF4FA;
}
.footerGroup_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 40px;
}
.footerLogo img{
  width:150px;
}
.footerNavGroup{
  display: flex;
  font-size: 12px;
  gap:20px;
}
.footer-other{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-other__inner{
display: flex;
padding: 20px 80px ;
align-items: center
}
.footer__logo-link img{
  width: 105px;
  padding-top: 10px;
  padding-right: 10px;
}
.footer-other__cr{
  margin-left: 40px;
}
.footer-other__cr-txt{
  font-size: 10px;
  color: #BFC3C4;
}
.corporate_info__inner{
  display: flex;
  font-size: 12px;
  align-items: center;
  gap:50px;
  padding: 20px 80px;

}
@media screen and (max-width: 1235px) {
  .footerNavGroup{
    width: 400px;
    flex-wrap: wrap;
  }
  .footer-other__inner{
    padding: 20px;
  }
}
@media screen and (max-width: 1084px) {

  .footer-other{
    flex-direction: column-reverse;
  }
}
@media screen and (max-width: 690px) {
  .footerGroup_inner{
    justify-content: center
    } 
  .footerNavGroup{
  display: none;
  }
  .corporate_info__inner,.footer-other__inner{
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }
.footer-other__cr{
  margin-left: 0;
}
  }