@charset 'utf-8';

/* 職種紹介＆INDEX
--------------------------------------- */
.overview{}
.overview .wrap{
  padding:70px 0 110px;
}
.overview .title{
  margin-bottom:50px;
}
.overview .title .icon{
  width:41px;
  margin:0 auto 30px;
}
.overview .title h2{
  font-size:30px;
  font-weight:600;
  line-height:1.2;
  text-align:center;
}

.overview .introduce{}
.overview .introduce h3{
  margin-bottom:40px;
  padding-bottom:10px;
  font-size:32px;
  font-weight:600;
  line-height:1.2;
  color:#004ea2;
  border-bottom:2px solid #004ea2;
}
.overview .introduce .block{
  display:flex;
  flex-wrap:nowrap;
  justify-content:space-between;
    align-items:flex-start;
  gap:0 30px;
  transition:all 200ms;
}
.overview .introduce .block .more{/*
  display:flex;
  flex-direction:column;
  flex:1;*/
  width:31.666%;
  max-width:380px;
  padding:10px 30px;
  background-color:#eaf0f7;
  border-radius:8px;
}
.overview .introduce .block .more.open{
  padding-bottom:10px;
}

.overview .introduce .block .more h4{
  position:relative;
  display:flex;
  justify-content:flex-start;
  align-items:center;
  height:60px;
  font-size:24px;
  line-height:1.2;
  font-weight:600;
  cursor:pointer;
  white-space:nowrap;
}
.overview .introduce .block .more h4:after{
  content:'';
  position:absolute;
  top:16px;
  right:-14px;
  width:30px;
  height:30px;
  margin:auto;
  background:url(../images/common/icon_more_tp.png) 0 0 no-repeat;
  transform:rotate(90deg);
  transition:transform 300ms;
  background-size:cover;
}
.overview .introduce .block .more.open h4:after{
  background-position:0 -30px;
  transform:rotate(180deg);
}
.overview .introduce .block .more .tx{
  display:none;
    height:250px;
  padding-bottom:20px;
  font-size:15px;
  text-align:justify;
  text-justify:inter-ideograph;
}
.overview .introduce .block .more.open .tx{}
.overview .introduce .block .more h4.ln2 br{display:none;}

.overview .introduce .block .more ul{
  padding:1.0em;
  text-indent:-1.0em;
}
@media screen and (max-width:1157px){
  .overview .introduce .block .more h4.ln2{
    font-size:21px;
  }
  .overview .introduce .block .more .tx{
    height:330px;
  }
  .overview .introduce .block .more h4.ln2 br{display:block;}
}
@media screen and (max-width:857px){
  .overview .introduce .block .more h4.ln2{
    font-size:18px;
  }
  .overview .introduce .block .more .tx{
    height:450px;
  }
}

@media screen and (max-width:750px){
  .overview .wrap{
    padding:70px 0 60px;
  }
  .overview .title{
    margin-bottom:90px;
  }

  .overview .introduce h3{
    margin-bottom:60px;
    font-size:36px;
  }
  .overview .introduce .block{
    flex-wrap:normal;
      align-items:normal;
    flex-direction:column;
    justify-content:flex-start;
    gap:50px 0;
    transition:none;
  }
  .overview .introduce .block .more{
    width:100%;
    max-width:initial;
    padding:10px 20px;
  }
.overview .introduce .block .more.open{
  padding-bottom:10px;
}

  .overview .introduce .block .more h4,
  .overview .introduce .block .more h4.ln2{
    height:150px;
    font-size:36px;
  }
  .overview .introduce .block .more h4:after{
    top:58px;
    right:-5px;
    width:40px;
    height:40px;
  }
  .overview .introduce .block .more.open h4:after{
    background-position:0 -40px;
  }
  .overview .introduce .block .more .tx{
    display:none;
    height:initial;
    padding-bottom:40px;
    font-size:26px;
  }
  .overview .introduce .block .more h4.ln2 br{display:none;}
}

/* 職員インタビュー INDEX
--------------------------------------- */
.interview{}
.interview .wrap{
  padding:0px 0 40px;
}
.interview .title{
  display:flex;
  justify-content:space-between;
  margin-bottom:20px;
}
.interview .title h3{
  font-size:24px;
  font-weight:600;
  line-height:1.2;
}
.interview .title p{
  font-size:15px;
}

.interview .select{margin-bottom:50px;}
.interview .select ul{
  display:flex;
  flex-wrap:nowrap;
  justify-content:space-between;
  align-items:center;
  padding:20px 40px;
  font-size:24px;
  line-height:1.2;
  border:1px solid #d9d9d9;
}
.interview .select ul li{white-space:nowrap;}
.interview .select label,
.interview .select input[type='checkbox']{
  cursor:pointer;
}
.interview .select input[type='checkbox']{
  position:absolute;
  width:1px;
  height:1px;
  padding:0;
  margin:-1px;
  overflow:hidden;
  clip:rect(0, 0, 0, 0);
  border:0;
}

.interview .select ul li .chkbox-txt{
  cursor:pointer;
  display:inline-block;
  padding:0px 0 4px 30px;
  position:relative;
}
.interview .select ul li input[type='checkbox']:checked+.chkbox-txt::after{
  opacity:1;
}
.interview .select ul li .chkbox-txt::before{
  content:'';
  top:50%;
  transform:translateY(-50%);
  left:0;
  display:block;
  width:24px;
  height:24px;
  position:absolute;
  border:2px solid #ccc;
}
.interview .select ul li .chkbox-txt::after {
  content:'';
  display:block;
  width:14px;
  height:24px;
  position:absolute;
  top:28%;
  left:-3px;
  transform:rotate(35deg) skewY(16deg) translateY(-50%);
  transform-origin:center right;
  border-right:2px solid #f00;
  border-bottom:2px solid #f00;
  opacity:0;
}
@media screen and (max-width:1017px){
  .interview .select ul{
    flex-wrap:wrap;
    align-items:flex-start;
    align-content:flex-start;
    gap:20px 0;
  }
  .interview .select ul li{
    width:50%;
  }
}
@media screen and (max-width:750px){
  .interview .wrap{
    padding:0px 0 40px;
  }
  .interview .title{
    display:block;
    justify-content:normal;
    margin-bottom:30px;
    text-align:center;
  }
  .interview .title h3{
    margin-bottom:30px;
    font-size:36px;
    line-height:1.5;
  }
  .interview .title p{
    font-size:21px;
  }
  .interview .select{margin-bottom:70px;}
  .interview .select ul{
    gap:30px 0;
    padding:30px 50px;
  }
}

/* 職員インタビュー INDEX
--------------------------------------- */
.result{
  display:flex;
  flex-wrap:wrap;
  justify-content:space-between;
  align-items:flex-start;
  align-content:flex-start;
  width:100%;
  gap:40px 10px;
}
.result .person{
  display:none;
  width:calc(50% - 10px);
  opacity:0;
}
.result .person a{
  display:flex;
  justify-content:flex-start;
  width:100%;
}
.result .person .img{
  width:120px;
  height:120px;
  margin-right:30px;
  border-radius:8px;
  overflow:hidden;
}
.result .person a .img img{
  transition:transform 300ms ease-in-out;
}
.result .person a:hover .img img{
  transform:scale(1.08);
}
.result .person .dtl{
  width:calc(100% - 150px);
}
.result .person .dtl .name{
  margin-bottom:8px;
  font-size:18px;
  line-height:1.2;
}
.result .person .dtl ul{
  font-size:13px;
  line-height:1.3;
}
.result .person .dtl ul.hash{
  color:#004ea2;
}

.result .btn-more{
  display:flex;
  justify-content:flex-end;
  width:100%;
  margin-bottom:20px;
  gap:2px;
}
.result .btn-more a{
  position:relative;
  display:block;
  width:100%;
  padding:10px 60px 10px 40px;
  border:1px solid #d9d9d9;
  font-size:14px;
  text-align:right;
}
.result .btn-more a.more-link:after{
  content:'';
  position:absolute;
  top:7px;
  right:20px;
  width:30px;
  height:30px;
  margin:auto;
  background:url(../images/common/icon_more_tp.png) 0 0 no-repeat;
  background-size:cover;
}
.result .btn-more a.less-link:after{
  background-position:0 -30px;
}
.result .note{
  font-size:15px;
}
@media screen and (max-width:750px){
  .result{
    gap:60px 0;
  }
  .result .person{
    display:none;
    width:100%;
    opacity:0;
  }
  .result .person .img{
    width:180px;
    height:180px;
  }
  .result .person a .img img{
    transition:none;
  }
  .result .person a:hover .img img{
    transform:scale(1);
  }
  .result .person .dtl{
    width:calc(100% - 210px);
  }
  .result .person .dtl .name{
    margin-bottom:6px;
    font-size:26px;
  }
  .result .person .dtl ul{
    font-size:24px;
    line-height:1.2;
  }

  .result .btn-more{
    gap:10px;
  }
  .result .btn-more a{
    padding-right:70px;
    font-size:26px;
  }
  .result .btn-more a.more-link:after{
    top:12px;
    width:40px;
    height:40px;
  }
  .result .btn-more a.less-link:after{
    background-position:0 -40px;
  }
  .result .note{
    font-size:26px;
  }
}

/* 表示時の演出 */
.person.is-animated{
  display:block !important;
  animation:fadeInUp 0.5s ease-out forwards;
}
@keyframes fadeInUp{
  from{
    opacity:0;
    transform:translateY(20px);
  }
  to {
    opacity:1;
    transform:translateY(0);
  }
}

/* キャリアパス
--------------------------------------- */
.career{}
.career .wrap{padding:0px 0 130px;}
.career .detail{
  display:flex;
  justify-content:space-between;
  width:100%;
  margin-bottom:40px;
  padding:20px 30px;
  background-color:#f9f0e3;
}
.career .detail .title{
  width:160px;
  margin-right:10px;
}
.career .detail .title h4{
  margin-bottom:30px;
  font-size:24px;
  font-weight:600;
}
.career .detail .title .icon{
  width:64px;
  margin:auto;
}
.career .detail .dtl{
  width:84%;
  max-width:940px;
  font-size:15px;
}
@media screen and (max-width:750px){
  .career .wrap{padding:0px 0 110px;}
  .career .detail{
    display:block;
    justify-content:normal;
    margin-bottom:60px;
    padding:40px 40px 50px;
  }
  .career .detail .title{
    width:100%;
    margin-right:0;
    margin-bottom:40px;
  }
  .career .detail .title h4{
    margin-bottom:20px;
    font-size:36px;
    text-align:center;
  }
  .career .detail .dtl{
    width:100%;
    max-width:initial;
    font-size:26px;
  }
}


/* 総合職
--------------------------------------- */
.general .introduce .lead{margin-bottom:40px;}
.general .introduce .lead .mi{
  margin-bottom:10px;
  font-size:24px;
  font-weight:600;
}
.general .introduce .lead .ld{
  font-size:15px;
  line-height:2.0;
}
@media screen and (max-width:750px){
  .general .introduce .lead{margin-bottom:60px;}
  .general .introduce .lead .mi{
    font-size:36px;
  }
  .general .introduce .lead .ld{
    font-size:24px;
    line-height:1.8;
  }
}
/*  */
.general .select ul{
  justify-content:flex-start;
  gap:0 80px;
}
@media screen and (max-width:750px){
  .general .select ul{
    justify-content:space-between;
    gap:0;
  }
}

