@charset "UTF-8";

/*****************************
  pagecommon
*****************************/
.pagehead{
  background: #E8EEF5;
  padding-top: 15rem;
}
.pagehead.head-faq,
.pagehead.head-contact,
.pagehead.head-sitemap,
.pagehead.head-archive,
.pagehead.head-shingle{
  background: #E8EEF5;
  mask-image: url(../images/ob/mask_head.svg);
  -webkit-mask-image: url(../images/ob/mask_head.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: bottom;
  -webkit-mask-position: bottom;
  mask-size: cover;
  -webkit-mask-size: cover;
  padding: 15rem 0 10rem;
}
.pagesec{
  padding: 8rem 0;
}
.pagesec.firsttxtarea{
  background: #E8EEF5;
  mask-image: url(../images/ob/mask_head.svg);
  -webkit-mask-image: url(../images/ob/mask_head.svg);
  mask-repeat: no-repeat;
  -webkit-mask-repeat: no-repeat;
  mask-position: bottom;
  -webkit-mask-position: bottom;
  mask-size: cover;
  -webkit-mask-size: cover;
  padding: 6rem 0 15rem;
}

.pagination{
  margin-top: 5rem;
  text-align: center;
}
.page-numbers{
  margin-right: .5rem;
}
.page-numbers.current,
.page-numbers:hover{
  color: #8DAACB;
  font-weight: bold;
  text-decoration: underline;
}
.page-numbers.dots{
  color: #8DAACB;
  font-weight: bold;
  text-decoration: none;
}
.pager{
  margin: 3rem auto 0;
  max-width: 330px;
  text-align: center;
}
.pager li{
  margin: 0 .5rem;
  width: 65px;
}
.pager li.all{
  width: 67px;
}
.pager a{
  border-bottom: 1px solid #8DAACB;
  display: inline-block;
  font-size: 1.5rem;
  opacity: 1 !important;
  padding: 0rem 1rem;
  transition: .5s;
}
.pager a:hover{
  background: #8DAACB;
  color: #fff;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .pagehead.head-shingle,
  .pagehead.head-archive{
    padding: 15rem 0 5rem;
  }
  .page-numbers{
    margin-right: 1rem;
  }
  .next.page-numbers{
    margin: 0;
  }
}



/*****************************
  お知らせ 
*****************************/
.newslist li{
  border-bottom: 1px solid #D2E397;
  padding: 1rem 1rem 2rem;
  margin: 1%;
  width: 31%;
}
.newslist li .imgbox{
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.newslist li .imgbox img{
  aspect-ratio: 4/3;
  object-fit: cover;
  height: auto;
  width: 100%;
}
.newslist li .date,
.singlehead .date{
  color: #8DAACB;
  font-family: "Roboto", sans-serif;
}
.newslist li .ttl,
.singlehead .ttl {
  font-size: 1.8rem;
  font-weight: bold;
}
.newslist li a:hover .ttl{
  color: #8DAACB;
}

.singlehead{
  margin-bottom: 2rem;
  padding-bottom: 1rem ;
  position: relative;
}
.singlehead::before{
  content: '';
  background: #BED17B;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  width: 100%;
}
/* .singlehead::after {
  background: #BED17B;
  transition: 0.3s;
  width: 70px;
} */

@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .newslist li{
    margin: 1rem 0;
    padding: 0 1rem ;
    width: 100%;
  }
  .newslist li a{
    display: flex;
  }
  .newslist li .imgbox{
    width: 100px;
  }
  .newslist li .imgbox img{
    aspect-ratio: 1 / 1;
  }
  .newslist li .ttlbox{
    margin-left: auto;
    width: calc(100% - 120px);
  }
}

/*****************************
  ポップアップ
*****************************/
.popbtn{
  display: block;
  opacity: 1 !important;
  position: relative;
  transition: .5s ;
}
.popbtn:hover{
  transform: translateY(-12px);
  transition: .5s;
}
.popup{
  opacity: 0;
  pointer-events: none;
  position: fixed;
  top: 0;
  left: 0;
  height: 100lvh;
  width: 100vw;
  transition: .5s;
}
.popup.popopen{
  opacity: 1;
  pointer-events: all;
  z-index: 10000;
}
.popbg{
  background: rgba(232, 238, 245, .8);
  cursor: pointer;
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
}
.popup .popupbox{
  background: #8DAACB;
  border-radius: 16px;
  overflow: hidden;
  padding: 5rem;
  position: absolute;
  top: 150%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition: .5s .4s;
}
.popup.popopen .popupbox{
  top: 50%;
}
body.popactive{
  overflow: hidden;
}
.popup .popupbox .popclose{
  aspect-ratio: 1 / 1;
  background: #D2E397;
  border-radius: 50%;
  position: absolute;
  top: -45px;
  right: -45px;
  width: 100px;
}
.popup .popupbox .popclose span{
  aspect-ratio: 27 / 17;
  background: url(../images/ob/popcross.svg) no-repeat center / contain;
  position: absolute;
  top: 55px;
  left: 20px;
  width: 30px;
}
.popup .popupbox .whitebox{
  background: #fff;
  border-radius: 16px;
  padding: 5rem 6rem;
  height: 100%;
}
.popup .popupbox .whitebox .content{
  height: 100%;
  overflow: auto;
  padding: 0 3rem;
  position: relative;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  
}

/*****************************
  インタビュー 一覧
*****************************/
.peplelist {
  gap: 2rem 5%;
}
.peplelist li{
  width: 30%;
}
.peplelist li a > .imgbox{
  border-radius: 16px;
  overflow: hidden;
  margin-bottom: 1rem;
}
.peplelist li a > .imgbox img{
  aspect-ratio: 7 / 8;
  object-fit: cover;
  height: auto;
  width: 100%;
}
.peplelist li .info .department{
  color: #BED17B;
}
.peplelist li .info .name{
  font-weight: 500;
  margin-right: 2rem;
}
.peplelist li .info .name span{
  font-size: 2rem;
  font-weight: bold;
}
.peplelist li a:hover .info .name{
  color: #BED17B;
}

.popup .popupinterview{
  aspect-ratio: 16 / 9;
  max-width: 1000px;
  height: auto;
  width: 90vw;
}
.popupinterview .imgbox{
  border-radius: 10px;
  float: left;
  margin: 0 2rem 2rem 0;
  overflow: hidden;
  width: 280px;
}
.popupinterview .popinfo {
  border-bottom: 3px dashed #D2E397;
}
.popupinterview .popinfo p{
  font-weight: 500;
}
.popupinterview .department{
  margin-right: 1rem;
}
.popupinterview .name{
  font-size: 2rem;
}
.popupinterview .name span{
  font-size: 3.4rem;
  font-weight: bold;
}
.popupinterview .poptxtgr{
  margin-top: 4rem;
}
.popupinterview .poptxt {
  margin-bottom: 4rem;
}
.popupinterview .poptxt:nth-of-type(2){
  clear: both;
}
.popupinterview .poptxt dt{
  color: #8DAACB;
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.popupinterview .poptxt dd{
  font-weight: 500;
}

@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  .popup .popupinterview{
    aspect-ratio: 4 / 3;
    padding: 5rem 3rem;
  }
  .popup .popupbox .whitebox {
    padding: 3rem;
  }
  .popupinterview .imgbox {
    width: 200px;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .peplelist {
    gap: 2rem 4%;
  }
  .peplelist li{
    margin: 0 0 2rem ;
    width: 48%;
  }
  .popup .popupbox .whitebox{
    padding: 2rem;
  }
  .popup .popupinterview {
    padding: 5rem 2rem 2rem;
    height: 80lvh;
    width: 95vw;
  }
  .popup .popupinterview .whitebox .content{
    padding: 0 1rem 0 0;
  }
  .popupinterview .imgbox{
    float: none;
    margin: 0 auto;
  }
  .popupinterview .poptxtgr {
    margin-top: 3rem;
  }
  .popupinterview .name,
  .popupinterview .poptxt dt {
    font-size: 1.8rem;
  }
  .popupinterview .name span {
    font-size: 2.8rem;
  }
}


/*****************************
フォーム
*****************************/

.formbox{
  max-width: 1000px;
  margin: 0 auto;
}
.formbox .fomin{
  background: #f9fcff;
  border-top: 1px solid #8DAACB;
  border-bottom: 1px solid #8DAACB;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: space-between;
  overflow: hidden;
}
.formbox .fomin:not(:first-of-type){
  border-top: 0;
}
.formbox .fomttl{
  font-weight: bold;
  padding: 0 1rem;
  text-align: left;
  width: 230px;
}
.formbox .fomttl span{
  color: #A42020;
  font-size: 1.2rem;
  line-height: 1;
  margin-left: .5rem;
  padding: .2rem .5rem .3rem;
}
.formbox .fomcontent{
  background: #fff;
  padding: 1rem;
  width: calc(100% - 230px);
}
.formbox .fomcontent span.error{
  background: none;
  margin: 0;
}
.formbox .fomcontent dl{
  margin-bottom: 1rem;
}
.formbox .fomcontent dt{
  width: 100px;
}
.formbox .fomcontent dd{
  margin: 0;
  width: calc(100% - 165px);
}
.formbox .input-check{
  text-align: left;
}
.formbox .input-radio .wpcf7-list-item,
.formbox .input-check .wpcf7-list-item{
  margin-right: 1rem;
  margin-left: 0;
}
.input-submit{
  margin: 3rem auto;
  text-align: center;
}
.formtxt{
  max-width: 500px;
  margin: 2rem auto;
  padding: 2rem 0 0;
}
.formtxt .inbox{
  margin: 2rem 0;
}
.formtxt .inbox p{
  margin-bottom: 2rem;
}

.formbox .input-txt input,
.formbox .input-num input,
.formbox .input-age input,
.formbox .input-zip input,
.formbox .input-txtarea textarea,
.formbox .input-select select {
  background: #f3f3f3;
  border: 1px solid #9f9f9f;
  border-radius: 3px;
  width: 100%;
}
.formbox .input-age input,
.formbox .input-num input{
  margin-right: 1rem;
  max-width: 100px;
}
.formbox .input-day:first-child{
  margin-bottom: 1rem;
}
.formbox .input-day input{
  width: calc(100% - 145px);
}

.formbox .input-txt input,
.formbox .input-num input,
.formbox .input-age input,
.formbox .input-zip input,
.formbox .input-select select {
  font-size: 1.6rem;
  height: 36px;
  padding: 0 .5rem;
}
.formbox .input-date input{
  margin: .5rem 0;
}
.formbox .input-select select{
  appearance: auto;
}
.formbox .input-txtarea textarea {
  padding: .5em;
}
.formbox .input-add{
  margin-top: 1rem;
}
.formbox .input-zip input{
  margin: 0 1rem;
  width: 100px;
}
.formbox .input-zip .subtxt{
  display: block;
  font-size: 1.4rem;
  margin-bottom: -1rem;
  text-align: right;
}

.formbox .input-submit {
  text-align: center;
  margin-top: 2em;
}
.formbox .input-submit div {
  display: inline-block;
  vertical-align: middle;
}
.formbox .input-submit input {
  height: 50px;
  padding: 0 30px;
}

.pagesec-contact{
  position: relative;
}
.pagesec-contact .inner1{
  position: relative;
}
.pagesec-contact .ttlbox1{
  margin-bottom: 2rem;
}
.pagesec-contact .txtbox,
.pagesec-contact .ppbox,
.formblock .lastcheck{
  margin: 0 auto;
  max-width: 1000px;
}
.pagesec-contact .txtbox{
  margin: 0 auto 3rem;
}
.pagesec-contact .txtbox p{
  font-weight: 600;
}
.pagesec-contact .ppbox{
  margin: 2rem auto;
}
.pagesec-contact .ppbox a{
  text-decoration: underline;
}

.pagesec-contact .wpcf7-spinner {
  margin: 0;
  position: absolute;
  bottom: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
form.sent .formblock,
form .sent-after,
form.sent .fomb{
  display: none;
}
form.sent .sent-after{
  display: block;
  margin: 0 auto 2rem;
  max-width: 800px;
  padding: 1rem;
  position: relative;
  text-align: center;
}
.pagesec-contact .wpcf7 form .wpcf7-response-output{
  margin: 0 auto;
  max-width: 800px;
  padding: 20px;
  text-align: center;
}

.fomb {
  max-width: 300px;
  margin: 2rem auto 0;
}
.fomb input{
  background: #8DAACB;
  border: 2px solid #8DAACB;
  border-radius: 8px;
  color: #fff;
  display: inline-block;
  min-width: 180px;
  opacity: 1 !important;
  padding: .5rem 2rem ;
  position: relative;
  transition: .3s;
}
.fomb:hover input{
  background-color: #fff;
  color: #333;
}
.fomb input:disabled{
  background: #b5b5b5 !important;
  border-color: transparent;
  color: #333;
}


@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {

}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .formbox .input-zip .subtxt{
    margin-bottom: 1rem;
    text-align: left;
  }
  .formbox .fomttl {
    padding: 1rem;
    text-align: left;
    width: 100%;
  }
  .formbox .fomcontent{
    padding: 1.5rem 1rem;
    width: 100%;
  }
  .contactlink .fbox{
    margin: .5rem 0;
    width: 100%;
  }
  .formbox .input-age input, .formbox .input-num input {
    margin-right: 1rem;
    max-width: 70px;
  }
  .pagesec-contact .ppbox .formpp h3 {
    font-size: 2.4rem;
  }
  .pagesec-contact .wpcf7 form .wpcf7-response-output{
    margin: 0 auto;
    max-width: 800px;
    padding: 20px;
    text-align: left;
  }
  .pagesec-contact .txtbox,
  form.sent .sent-after{
    text-align: left;
  }

  .formbox .fomcontent dt,
  .formbox .fomcontent dd{
    width: 100%;
  }
  .formbox .input-add {
    margin: 0 0 1rem;
  }
  .pagesec-contact .formlinks li{
    margin: 0 auto;
    width: 80%;
  }
  .pagesec-contact .formlinks li a{
    border: 1px solid #8DAACB;
    border-bottom: 0;
  }
  .pagesec-contact .formlinks li:last-of-type{
    border-bottom: 1px solid #8DAACB;
  }
}


/*****************************
  WORK
*****************************/
.firsttxtarea{
  text-align: center;
}
.firsttxtarea p{
  font-size: 2rem;
  font-weight: bold;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {

}
@media only screen and (max-width: 820px) {
  .firsttxtarea p{
    font-size: 1.8rem;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .pagesec.firsttxtarea {
    padding-bottom: 10rem;
    text-align: left;
  }
  .firsttxtarea p{
    font-size: 1.6rem;
  }
}

/*****************************
  pagesec-career
*****************************/
.careerlist {
  gap: 3rem 5%;
}
.careerlist > li{
  width: 30%;
}
.careerlist .popbtncareer .imgbox{
  border-radius: 16px;
  overflow: hidden;
  text-align: center;
}
.careerlist .popbtncareer .imgbox p{
  background: #D2E397;
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  font-weight: 500;
  padding: .5rem 0;
}
.careerlist .popbtncareer .name{
border-bottom: 1px solid #D2E397;
font-weight: 500;
padding: 0rem 1rem;
position: relative;
line-height: 1.6;
}
.careerlist .popbtncareer .name span{
  font-size: 2rem;
  font-weight: 500;
}
/* corporate-name */
.careerlist .popbtncareer .corporate-name{
font-weight: 500;
padding: 0rem 1rem;
position: relative;
line-height: 1.6;
font-size: 1.4rem;
}
.careerlist .popbtncareer .corporate-name span{
  font-size: 1.8rem;
  font-weight: 500;
}
/* .careerlist .popbtncareer .name::before{
  content: "";
  aspect-ratio: 32 / 11;
  background: url(../../images/ob/arrow_blue.svg) no-repeat center / contain;
  position: absolute;
  top: 50%;
  right: 1rem;
  transform: translateY(-50%);
  width: 32px;
} */

.popup .popupcareer{
  padding: 2rem 5rem 5rem;
  height: 80lvh;
  width: 700px;
}
.popupcareer .genre{
  color: #fff;
  font-family: "M PLUS 1", sans-serif;
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1rem;
  text-align: center;
}
.popup .popupcareer .whitebox {
  padding: 3rem 1rem ;
  height: calc(100% - 5rem);
}
.popupcareer .info dt{
  border-bottom: 3px dashed #D2E397;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.popupcareer .info dt span{
  font-size: 2.4rem;
  font-weight: bold;
}
.popupcareer .info dd p{
  font-weight: 500;
  margin-top: 1rem;
}
.popupcareer .info .fimgbox{
  border-radius: 10px;
  overflow: hidden;
}
.careergr .career{
  border-top: 1px solid #8DAACB;
  padding: 2rem 0 1rem;
  margin-top: 3rem;
}
.careergr .career .careerttl{
  color: #8DAACB;
  font-family: "M PLUS 1", sans-serif;
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
.careergr .career dd{
  font-weight: 500;
}

.careergr .model ul,
.careergr .model li {
  position: relative;
}

.careergr .model li{
  padding-left: 5rem;
  position: relative;
}
.careergr .model li:not(:last-of-type){
  margin-bottom: 2rem;
}
.careergr .model ul::before,
.careergr .model li::before,
.careergr .model li:last-of-type:after{
  content: "";
  position: absolute;
}
.careergr .model ul::before{
  background: #D2E397;
  top: 3px;
  left: 1.5rem;
  height: calc(100% - 3px);
  width: 3px;
}
.careergr .model li::before{
  aspect-ratio: 1/1;
  background: url(../../images/page/career-plan/model_circle.svg) no-repeat center / contain;
  top: 3px;
  left: .5rem;
  width: 23px;
  z-index: 1;
}
.careergr .model li:last-of-type:after{
  background: #fff;
  bottom: 0;
  left: 1.5rem;
  height: calc(100% - 3px);
  width: 3px;
}
.careergr .model li p{
  font-weight: 500;
}
.careergr .model li .year{
  width: 100px;
}
.careergr .model li .event{
  margin-left: auto;
  width: calc(100% - 120px);
}
.careergr .interview .qa{
  margin: 2rem 0 3rem;
}
.careergr .interview .question{
    background: #EBF4CD;
    border-radius: 17px;
    display: inline-block;
    font-size: 1.8rem;
    font-weight: bold;
    padding: 1rem 5rem;
    position: relative;
    line-height: 1.4;
}
.careergr .interview .question span{
  color: #8DAACB;
  font-family: "Roboto", sans-serif;
  font-size: 4rem;
  font-weight: 500;
  line-height: 1;
  position: absolute;
  top: -1.5rem;
  left: 0;
}
.careergr .interview .answer{
  margin-top: 2rem;
}
@media only screen and (max-width: 1180px) {
  
}
@media only screen and (max-width: 1024px) {
  
}
@media only screen and (max-width: 820px) {
  .careerlist > li {
    width: 40%;
  }
  .careerlist .popbtncareer .imgbox p {
    font-size: 2rem;
  }
}
@media only screen and (max-width: 768px) {
  
}
@media only screen and (max-width: 767px) {
  .careerlist > li {
    max-width: 315px;
    width: 100%;
  }
  .careerlist .popbtncareer .name {
    padding: 0.5rem 1rem;
  }
  .popup .popupcareer {
    max-width: calc(100% - 2rem);
    padding: 1rem 1.5rem 4rem;
    width: 100%;
  }
  .popup .popupcareer .whitebox .content {
    padding: 0 2rem 0 1rem;
  }
  .popupcareer .info .fimgbox,
  .popupcareer .info .ftxtbox{
    width: 100%;
  }
  .popupcareer .info .fimgbox{
    margin: 0 auto 2rem;
    max-width: calc(100% - 4rem);
  }
  .careergr .model ul::before {
    top: 6px;
    left: 7px;
    height: calc(100% - 6px);
  }
  .careergr .model li {
    padding-left: 2.5rem;
  }
  .careergr .model li::before {
    top: 6px;
    left: 0;
    width: 18px;
  }
  .careergr .model li:last-of-type:after {
    left: 7px;
    height: calc(100% - 6px);
  }
  .careergr .model li p{
    width: 100% !important;
  }
  .careergr .model li .year{
    font-weight: bold;
  }
  .careergr .model li .event {
    padding-left: 2rem;
  }
  .careergr .interview .question {
    font-size: 1.6rem;
    padding: .5rem 3rem;
  }
  .careergr .interview .question span {
    font-size: 3.4rem;
    top: -1.2rem;
  }
  .careergr .interview .answer {
    margin-top: 1rem;
  }
}

.career-plan-top-area{
  margin-top: 50px;
  margin-bottom: 80px;
}

/* スリック */

/* slick化時のレイアウト調整 */
.careerlist { 
  gap: 0; 
}
.careerlist > li {
  width: auto; 
  }

/* スライドの余白（カード間のスペース） */
.careerlist .slick-slide {
  padding: 12px;
  box-sizing: border-box;
}

/* カード外観はお好みで */
.careerlist li {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

/* 矢印とドット（お好みならそのまま流用） */
.slick-prev:before,
.slick-next:before { 
    color: #8daacb;
    font-size: 40px;
}
.slick-dots li button:before { 
  font-size:12px; 
  color:#999; }
.slick-dots li.slick-active button:before { 
  color:#333; 
}

.slick-prev, .slick-next {
    font-size: 0;
    line-height: 0;
    position: absolute;
    top: 50%;
    display: block;
    width: 40px;
    height: 40px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
    cursor: pointer;
    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}

.slick-next {
    right: -10px;
}
.slick-prev {
    left: -10px;
    z-index: 1;
}


@media screen and (max-width: 767px) {
  .slick-prev,.slick-next { 
   display: none !important;
  }
.slick-prev:before,
.slick-next:before { 
   display: none !important;
}
}


.pagesec-catch02 {
    /* margin-top: -15rem; */
    margin-top: 0rem;
    padding: 0;
}
.pagesec-catch02 .boxinner {
    /* box-shadow: 0 0 20px rgba(154, 167, 182, .22); */
    padding-bottom: 0;
    margin-bottom: 80px;
}
.shin_main_text{
  padding: 5rem;
}
.shin_main_text p{
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}
.company_page .shin_main_text p{
  font-size: 2rem;
  font-weight: bold;
  text-align: left;
}

@media screen and (max-width: 820px) {
.shin_main_text{
  padding: 5rem 1rem;
  text-align: left;
}
.shin_main_text p{
  text-align: left;
}
}


.col_3flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  width: 80%;
  margin: 0 auto;
}
.col_3flex li{
  width: calc(100% / 3);
  padding: 10px;
  text-align: center;
}
.col_3flex li img:first-child{
  width: 100px;
  max-width: 100%;
}
@media screen and (max-width: 820px) {
.col_3flex{
  width: 100%;
  margin: 0 auto;
}
.col_3flex li{
  width: calc(100% / 2);
  padding: 10px;
  text-align: center;
}
.col_3flex li img:first-child{
  width: 80px;
  max-width: 100%;
}
}
@media screen and (max-width: 600px) {
  .col_3flex{
  width: 80%;
  margin: 0 auto;
}
.col_3flex li{
  width: calc(100% / 1);
  padding: 10px;
  text-align: center;
}
}

.features_3flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 1024px) {
.features_3flex{
  padding: 0 2rem;
}
}

.features_3flex .work_area{
  width: calc(100% / 3);
}
.features_3flex .work_area img{
  width: 100%;
}
@media screen and (max-width: 1024px) {
.features_3flex .work_area{
  width: calc(100% / 2);
}
.features_3flex .work_area img{
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
}
@media screen and (max-width: 767px) {
.features_3flex .work_area{
 width: 600px;
 max-width: 100%;
margin: 0 auto;
}

}


.features_3flex .work_area_text{
  padding: 20px;
}
.features_3flex .work_area_text h2{
  font-family: "M PLUS 1", sans-serif;
    font-size: 2.8rem;
    font-weight: 600;
}
.features_3flex .work_area_text h2 span{
  color: #D2E397;
  font-family: "Roboto", sans-serif;
  font-size: 6rem;
  font-weight: bold;
  position: relative;
  margin-right: 10px;
}
@media screen and (max-width: 1024px) {
.features_3flex .work_area_text h2{
    font-size: 2.6rem;
}
.features_3flex .work_area_text h2 span{
  font-size: 4.5rem;
}
}

.features_3flex .work_area_text h2 span::before {
    content: "";
    background-image: linear-gradient(to left, #D2E397 6px, transparent 6px);
    background-repeat: repeat-x;
    background-size: 10px 4px;
    position: absolute;
    bottom: 0;
    left: 0;
    height: 4px;
    width: 70%;
}
.features_3flex .work_area_text h3{
 font-family: "M PLUS 1", sans-serif;
font-size: 2rem;
font-weight: 600;
margin-bottom: 1rem;
}
.features_3flex .work_area_text p{
font-weight: 500;
}

.company_area{
  padding: 5rem;
}
@media screen and (max-width: 1024px) {
.company_area{
padding: 0 2rem 2rem;
}
}


.features_logo{
  margin-top: 30px;
  margin-bottom: 30px;
}
.features_logo img{
  width: 300px;
}
.features_txt p{
  font-size: 2rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
.features_txt p{
  font-size: 1.8rem;
}
}

.features_bg_01{
  padding: 4rem 0;
}
.features_bg_02{
  padding: 4rem 0;
  background: #e8eef5;
}

.btn_3col{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
width: 80%;
margin: 0 auto;

}
.btn_3col li{
  width: calc(100% / 3);
  padding: 10px;
}
@media screen and (max-width: 820px) {
.btn_3col li{
  width: calc(100% / 1);
  padding: 10px;
}
.btn_3col li .morebtn1 {
    margin-top: 2rem;
    margin-left: auto;
    margin: 0 auto;
    width: 300px;
    max-width: 100%;
}
}

.company_bg_01{
  padding: 4rem 0;
  background: #E8EEF5;
}
.company_bg_02{
  padding: 4rem 0;
  background: #F3F7EC;
  margin-bottom: 50px;
}

.board_member_list{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
}
.board_member_list li:first-child{
  width: 130px;
  font-weight: bold;
}
.board_member_list li:last-child{
  width: calc(100% - 130px);
}

.img_list img{
  margin-right: 20px;
  height: 60px;
}
.listlink_style a{
  color: #e03025;
}

.graph_flex{
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  background: #fff;
  padding: 50px 30px;
  margin-bottom: 50px;
}
@media screen and (max-width: 600px) {
.graph_flex{
  padding: 30px 0px;
}
}

.graph_flex .left_area{
  width: 78%;
  padding: 5px;
}
.graph_flex .right_area{
  width: 22%;
  padding: 5px;
}
@media screen and (max-width: 1024px) {
.graph_flex .left_area{
  width: 68%;
  padding: 5px;
}
.graph_flex .right_area{
  width: 32%;
  padding: 5px;
}
}
@media screen and (max-width: 820px) {
.graph_flex .left_area{
  width: 100%;
  padding: 5px;
}
.graph_flex .right_area{
  width: 100%;
  padding: 5px;
}
}


.graph_flex p{
  font-size: 14px;
  margin-top: 10px;
  margin-bottom: 5px;
  text-align: center;
}
.img_area_flex{
  display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
}
.img_area_flex li{
  width: 100%;
}
@media screen and (max-width: 820px) {
.img_area_flex li{
  width: 50%;
}
}
@media screen and (max-width: 600px) {
.img_area_flex li{
 width: 350px;
 max-width: 100%;
 margin: 10px auto;
}
}

.company_2col_flex{
  display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: flex-start;
    justify-content: flex-start;
    align-items: flex-start;
}
.company_2col_flex .company_area{
  width: calc(100% / 2);
  padding: 20px;
  position: relative;
}
@media screen and (max-width: 820px) {
.company_2col_flex .company_area{
  width: calc(100% / 1);
  padding: 20px;
}
}
@media screen and (max-width: 767px) {
.company_2col_flex .company_area{
  padding: 20px 0;
}
}


/* .company_2col_flex .company_area:nth-child(1)::before{
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  background-image: url(../images/page/work_logo02.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 40px;
  left: 40px;
  width: 200px;
  filter: drop-shadow(1px 1px 4px #fff);
  z-index: 1;
}
.company_2col_flex .company_area:nth-child(2)::before{
  content: "";
  position: absolute;
  aspect-ratio: 1/1;
  background-image: url(../images/page/work_logo03.png);
  background-size: contain;
  background-repeat: no-repeat;
  top: 40px;
  left: 40px;
  width: 200px;
  filter: drop-shadow(1px 1px 4px #fff);
  z-index: 1;
} */

.company_2col_flex .company_area img{
  width: 100%;
  aspect-ratio: 3 / 1;
  object-fit: cover;
}
.company_2col_flex .company_area .text_area{
  padding: 20px;
  background: #fff;
}
.company_2col_flex .company_area:nth-child(1) .text_area img{
  width: 200px;
  max-width: 100%;
  margin-bottom: 10px;
}
.company_2col_flex .company_area:nth-child(2) .text_area img{
  width: 200px;
  max-width: 100%;
  margin-bottom: 10px;
}

.company_2col_flex .company_area .text_area h2{
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 5px;
  letter-spacing: 1px;
}
.company_2col_flex .company_area .text_area p{
  font-size: 16px;
}

.img_r{
  width: 100%;
  position: relative;
}
.img_r:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    /* background: rgb(255, 255, 255, 0.3); */
}


.btn_2col{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: flex-start;
align-items: center;
width: 80%;
margin: 0 auto;

}
.btn_2col li{
  width: calc(100% / 2);
  padding: 10px;
}
@media screen and (max-width: 820px) {
.btn_2col li{
  width: calc(100% / 1);
  padding: 10px;
}
.btn_2col li .morebtn1 {
    margin-top: 2rem;
    margin-left: auto;
    margin: 0 auto;
    width: 400px;
    max-width: 100%;
}
}

.message_flex{
display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-start;
  align-items: flex-start;
  margin-top: 50px;
}

.message_flex .left_area{
  width: 40%;
  padding: 10px;
}
.message_flex .right_area{
  width: 60%;
  padding: 10px;
}
@media screen and (max-width: 820px) {
.message_flex .left_area{
  width: 100%;
  padding: 10px 0;
}
.message_flex .right_area{
  width: 100%;
  padding: 10px 0;
}
}

.message_flex .img_area01{
 width: 250px;
  margin: 0 auto 30px;
}

.message_bg01{
  background: #ffffff;
}
.message_bg02{
  background: #F7F7F7;
}


.message_bg01 .img_area02{
  width: 450px;
  max-width: 100%;
  margin: 0 auto;
  position: relative;
}
.message_bg02 .img_area02{
 width: 300px;
 max-width: 100%;
margin: 0 auto;
position: relative;
}

.topmessage_name {
    position: absolute;
    width: 100%;
    text-align: center;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    margin: 0;
    padding: 10px 0;
    z-index: 1;
    max-width: 100%;
}
.topmessage_name p{
  font-size: 25px;
    font-weight: bold;
    text-align: left;
    line-height: 1.4;
    width: 300px;
    margin: 0 auto;
}
.topmessage_name p span{
  font-size: 16px;
  display: block;
  font-weight: bold;
}

/* business_list_flex_red */
.business_list_flex_red{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: flex-start;
justify-content: flex-start;
align-items: flex-start;
border: 2px solid #D22E26;
width: 900px;
max-width: 100%;
margin: 0 auto 10px;
}
.business_list_flex_red .left_area{
  width: 30%;
  padding: 10px;
}
.business_list_flex_red .right_area{
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 600px) {
.business_list_flex_red .left_area{
  width: 100%;
  padding: 10px;
}
.business_list_flex_red .right_area{
  width: 100%;
  padding: 10px;
}
}


.business_list_flex_red img{
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
@media screen and (max-width: 820px) {
.business_list_flex_red img{
  aspect-ratio: 1 / 1;
}
}
@media screen and (max-width: 600px) {
.business_list_flex_red img{
  aspect-ratio: 2 / 1;
}
}
.business_list_flex_red h3{
  font-size: 22px;
  font-weight: bold;
  color: #D22E26;
  letter-spacing: 2px;
}

/* business_list_flex_blue */
.business_list_flex_blue{
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: flex-start;
justify-content: flex-start;
align-items: flex-start;
border: 2px solid #0963AA;
width: 900px;
max-width: 100%;
margin: 0 auto 10px;
}
.business_list_flex_blue .left_area{
  width: 30%;
  padding: 10px;
}
.business_list_flex_blue .right_area{
  width: 70%;
  padding: 10px;
}
@media screen and (max-width: 600px) {
.business_list_flex_blue .left_area{
  width: 100%;
  padding: 10px;
}
.business_list_flex_blue .right_area{
  width: 100%;
  padding: 10px;
}
}
.business_list_flex_blue img{
  width: 100%;
  aspect-ratio: 5 / 3;
  object-fit: cover;
}
@media screen and (max-width: 820px) {
.business_list_flex_blue img{
  aspect-ratio: 1 / 1;
}
}
@media screen and (max-width: 600px) {
.business_list_flex_blue img{
  aspect-ratio: 2 / 1;
}
}

.business_list_flex_blue h3{
  font-size: 22px;
  font-weight: bold;
  color: #0963AA;
  letter-spacing: 2px;
}

.business_logo_area{
  width: 500px;
  max-width: 100%;
  margin: 30px auto;
  text-align: center;
}
.business_logo_area img{
  width: 100%;
  margin-bottom: 30px;
}
.business_logo_area p{
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
}


/* ----------------------------------------
animate.cssカスタム
------------------------------------------*/
.animate__delay-01s {animation-delay: calc(var(--animate-delay) * 0.1);}
.animate__delay-02s {animation-delay: calc(var(--animate-delay) * 0.2);}
.animate__delay-03s {animation-delay: calc(var(--animate-delay) * 0.3);}
.animate__delay-04s {animation-delay: calc(var(--animate-delay) * 0.4);}
.animate__delay-05s {animation-delay: calc(var(--animate-delay) * 0.5);}
.animate__delay-06s {animation-delay: calc(var(--animate-delay) * 0.6);}
.animate__delay-07s {animation-delay: calc(var(--animate-delay) * 0.7);}
.animate__delay-08s {animation-delay: calc(var(--animate-delay) * 0.8);}
.animate__delay-09s {animation-delay: calc(var(--animate-delay) * 0.9);}
.animate__delay-10s {animation-delay: calc(var(--animate-delay) * 1.0);}
.animate__delay-11s {animation-delay: calc(var(--animate-delay) * 1.1);}
.animate__delay-12s {animation-delay: calc(var(--animate-delay) * 1.2);}
.animate__delay-13s {animation-delay: calc(var(--animate-delay) * 1.3);}
.animate__delay-14s {animation-delay: calc(var(--animate-delay) * 1.4);}
.animate__delay-15s {animation-delay: calc(var(--animate-delay) * 1.5);}
.animate__delay-16s {animation-delay: calc(var(--animate-delay) * 1.6);}
.animate__delay-17s {animation-delay: calc(var(--animate-delay) * 1.7);}
.animate__delay-18s {animation-delay: calc(var(--animate-delay) * 1.8);}
.animate__delay-19s {animation-delay: calc(var(--animate-delay) * 1.9);}
.animate__delay-20s {animation-delay: calc(var(--animate-delay) * 2);}



      /* ----------------------------------------
よくあるご質問
------------------------------------------*/
.ul-tab-faq {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 0 auto 50px;
}

.ul-tab-faq li {
  width: calc(100% / 3);
  padding: 10px;
  text-align: center;
}
@media screen and (max-width: 820px) {
  .ul-tab-faq {
    justify-content: flex-start;
  }
  .ul-tab-faq li {
    width: calc(100% / 2);
    padding: 10px;
    text-align: center;
  }
}
@media screen and (max-width: 767px) {
  .ul-tab-faq {
    width: 300px;
  }
  .ul-tab-faq li {
    width: calc(100% / 1);
  }
  .ul-tab-faq li a {
    padding: 1rem;
  }
}

.ul-tab-faq li a {
background: #8DAACB;
  border: 1px solid #8DAACB;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-family: "Roboto", sans-serif;
  font-size: 2rem;
  opacity: 1 !important;
  padding: 1.5rem 2.5rem;
  position: relative;
  text-align: left;
  transition: .5s;
  text-align: center;
}

@media only screen and (max-width: 767px) {
.ul-tab-faq li a {
        font-size: 1.8rem;
        padding: 1rem 4rem 1rem 2rem;
    }
}

.ul-tab-faq li a::after {
    content: "";
    position: absolute;
    border-top: 7px solid #6b829c;
    border-right: 7px solid transparent;
    border-bottom: 7px solid transparent;
    border-left: 7px solid transparent;
    margin-left: 0%;
    bottom: -3px;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
}
@media only screen and (max-width: 767px) {
.ul-tab-faq li a::after {
    bottom: -8px;
}
}

.ul-work-gallery{
  margin-bottom: 100px;
}

/*****************************
  ピラミッド　CSS
*****************************/

.academy_tab_box {
    margin-top: 5.6rem;
}
@media screen and (max-width: 834px) {
    .academy_tab_box {
        margin-top: 2.8rem;
    }
  }

.tab_area {
    margin: 0 auto;
    display: flex;
}

@media screen and (max-width: 834px) {
    .tab_area {
        display: block;
}

input[type=radio], input[type=checkbox] {
    box-sizing: border-box;
    padding: 0;
}
}

.tab_btn {
    display: none;
}
.tab_area .tab_list_wrap {
    display: block;
    width: 32rem;
    text-align: center;
}
@media screen and (max-width: 834px) {
.tab_area .tab_list_wrap {
        width: 100%;
        margin: 0px auto 50px;
    }
}

.tab_area .tab_content_wrap{
  width: calc(100% - 32rem);
}
@media screen and (max-width: 834px) {
.tab_area .tab_content_wrap{
        width: 100%;
    }
}

.tab_list_wrap li {
    position: relative;
    height: 6rem;
    margin: 0 auto 10px;
}

/* @media screen and (max-width: 834px) {
    .tab_list_wrap li {
        height: 5rem;
    }
} */
.pagesec-academy .tab_list {
    display: inline-block;
    cursor: pointer;
}

.pagesec-academy label {
    display: inline-block;
    margin-bottom: .5rem;
}
.tab_list_inner {
    position: relative;
    z-index: 1;
}

.tab_list_wrap li p {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    line-height: 6rem;
    color: #8daacb;
    font-weight: 600;
}
@media screen and (max-width: 834px) {
    .tab_list_wrap li p {
        line-height: 5rem;
    }
}

#tab_btn1:checked~.tab_list_wrap #tab_list1 p, #tab_btn2:checked~.tab_list_wrap #tab_list2 p, #tab_btn3:checked~.tab_list_wrap #tab_list3 p, #tab_btn4:checked~.tab_list_wrap #tab_list4 p, #tab_btn5:checked~.tab_list_wrap #tab_list5 p {
    color: #fff;
}
.academy_tab {
    display: block;
    transition: all .3s ease;
    fill: #fff;
    margin: 0 auto;
}
.pagesec-academy svg {
    overflow: hidden;
    vertical-align: middle;
}
#tab_btn1:checked~.tab_list_wrap #tab_list1 .academy_tab, #tab_btn2:checked~.tab_list_wrap #tab_list2 .academy_tab, #tab_btn3:checked~.tab_list_wrap #tab_list3 .academy_tab, #tab_btn4:checked~.tab_list_wrap #tab_list4 .academy_tab, #tab_btn5:checked~.tab_list_wrap #tab_list5 .academy_tab {
    fill: #8daacb;
}

.academy_stroke {
    fill: #8daacb;
}
#tab_btn1:checked~.tab_list_wrap #tab_list1 .academy_stroke, #tab_btn2:checked~.tab_list_wrap #tab_list2 .academy_stroke, #tab_btn3:checked~.tab_list_wrap #tab_list3 .academy_stroke, #tab_btn4:checked~.tab_list_wrap #tab_list4 .academy_stroke, #tab_btn5:checked~.tab_list_wrap #tab_list5 .academy_stroke {
    fill: none;
}

#tab_btn1:checked~.tab_list_wrap #tab_list1::after, #tab_btn2:checked~.tab_list_wrap #tab_list2::after, #tab_btn3:checked~.tab_list_wrap #tab_list3::after, #tab_btn4:checked~.tab_list_wrap #tab_list4::after, #tab_btn5:checked~.tab_list_wrap #tab_list5::after {
    position: absolute;
    top: 1.5rem;
    right: -5.3rem;
    content: "";
    width: 15.8rem;
    height: 2.5rem;
    z-index: 0;
}

@media screen and (min-width: 835px) {
    #tab_btn1:checked~.tab_list_wrap #tab_list1::after, #tab_btn2:checked~.tab_list_wrap #tab_list2::after, #tab_btn3:checked~.tab_list_wrap #tab_list3::after, #tab_btn4:checked~.tab_list_wrap #tab_list4::after, #tab_btn5:checked~.tab_list_wrap #tab_list5::after {
        background: url(../svg/img_academy_tab_arrow.svg) no-repeat right top / 100%;
    }
}


#tab_btn1:checked~.tab_content_wrap #tab_content1, #tab_btn2:checked~.tab_content_wrap #tab_content2, #tab_btn3:checked~.tab_content_wrap #tab_content3, #tab_btn4:checked~.tab_content_wrap #tab_content4, #tab_btn5:checked~.tab_content_wrap #tab_content5 {
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
}
.tab_content {
    display: none;
    width: calc(100% - 4rem);
    height: 100%;
    margin-left: 4rem;
        background-color: #e8eef5;
    padding: 4rem 2.6rem 2.6rem 5.6rem;
    align-items: center;
    border-radius: 16px;
}
@media screen and (max-width: 834px) {
    .tab_content {
        width: 100%;
        margin: 2rem 0 0;
        padding: 2rem;
    }
}

@media screen and (min-width: 835px) {
    .careerSec .tab_content_inner {
        position: relative;
        z-index: 1;
        background-color: #fff;
        padding: 5.6rem 2.6rem 2.6rem 5.6rem;
    }
}

.tab_content_inner h3 {
font-size: 2.2rem;
font-weight: bold;
margin-bottom: 0rem;
letter-spacing: 2px;
padding-left: 2.4rem;
position: relative;
}
.tab_content_inner h3:not(:first-child) {
margin-top: 3rem;
}

.tab_content_inner h3::before {
    content: "●";
    color: #8DAACB;
    position: absolute;
    top: 0;
    left: 0;
}




@media screen and (max-width: 834px) {
    .tab_content_inner h3 {
        font-size: 1.8rem;
        margin-bottom: .5rem;
    }
}
.tab_content_inner p {
    font-weight: normal;
    font-size: 1.6rem;
    line-height: 2;
    color: #000;
    letter-spacing: .02em;
}

/*****************************
  ピラミッド　CSS　END
*****************************/