/* People
-------------------------------------------*/

/* top --------------------------*/

.people .sec .sec_in{
  width: var(--page-width);
  margin: 0 auto;
  padding-top: calc(var(--sec-margin)*2);
  text-align: left;
}
.people .sec .sec_heading__jp{
  margin-bottom: 3rem;
}
#interview{
  padding-bottom: calc(var(--sec-margin)*2.5);
}
.interview_list{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}
.interview_list li a{
  position: relative;
  overflow: hidden;
  padding: 1.5rem 1rem 2rem;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: .5rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  border-radius: 6px;
  transition: transform .2s, box-shadow .3s;
}
.interview_list li a:hover{
  transform: translateY(-6px);
  box-shadow: 0 10px 20px rgba(0,0,0,.1);
}
.interview_list li a:hover img{
  opacity: 1;
}
.interview_list li:nth-child(odd) a{
  background-color: #ffac47;
}
.interview_list li:nth-child(even) a{
  background-color: #ec7447;
}
.interview_list li .num,
.staff_nav li .num{
  line-height: 1.25;
  font-weight: 500;
  font-family: var(--font-en);
  font-size: clamp(30px,4.615vw,40px);
}
.interview_list li .pic,
.staff_nav li .pic{
  padding-bottom: .5rem;
}
.interview_list li .pic img,
.staff_nav li .pic img{
  object-fit: cover;
  width: 110px;
  height: 110px;
  border-radius: 55px;
}
.interview_list li .staff_dept,
.staff_nav li .staff_dept{
  background: #fff;
  border-radius: 20px;
  color: var(--black);
  padding: .25rem 0;
  font-size: clamp(12px,1.846vw,14px);
}
.interview_list li .join,
.staff_nav li .join{
  line-height: 1.5;
  letter-spacing: .05em;
  font-size: clamp(12px,1.846vw,15px);
}

#special{
  background: #fff;
  border-top-left-radius: 100px;
  padding-bottom: 100px;
  z-index: -1;
}
.people .join_us{
  margin-top: -100px;
}
#special .sec_in .head_tit{
  position: relative;
}
#special .sec_in .head_tit p{
  padding-left: 1.2rem;
  color: var(--blue)
}
#special .sec_in .head_tit p::before{
  content: "■";
  position: absolute;
  left: 0;
  top: .4em;
  font-size: .75em;
}
#special .sec_in .head_tit h3{
  background: none;
}
.special_bnr{
  position: relative;
  margin: 0 auto;
  padding-bottom: calc(var(--sec-margin)*3);
}
.special_bnr a{
  position: relative;
  z-index: 2;
  display: block;
  overflow: hidden;
  border-radius: 12px;
}
.special_bnr a img{
  display: block;
  transition: transform .6s ease, filter .4s ease;
}
.special_bnr a:hover img{
  opacity: 1;
  filter: brightness(1.1);
  transform: scale(1.02);
}
.top_shape{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none; /* クリック邪魔しない */
  z-index: 1;
}
.top_shape_bg{
  position: absolute;
}
.top_shape_bg img{
  width: 100%;
  height: auto;
  object-fit: cover;
}
.special_shape_1{
  top: -3rem;
  right: -3rem;
  width: min(140px,12%);
}
.special_shape_2{
  top: 18rem;
  left: -2rem;
  width: min(76px,10%);
}

@media screen and (max-width: 650px){
  
  .interview_list{
    grid-template-columns: repeat(2,1fr);
  }
  .interview_list li a{
    padding: 1.25rem 1rem 1.5rem;
  }
  .interview_list li .pic,
  .staff_nav li .pic{
    padding-bottom: .5rem;
  }
  .interview_list li .staff_dept,
  .staff_nav li .staff_dept{
    padding: .5rem 0;
  }
  #special{
    border-top-left-radius: 60px;
  }
  .special_shape_1{
    top: -1.5rem;
    right: -1rem;
  }
  .special_shape_2{
    top: 10rem;
  }
}


/* Interview --------------------------*/

.staff .staff_nav ul{
  width: var(--page-width);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 3rem;
}
.staff .staff_nav li{
  position: relative;
}
.staff .staff_nav li:not(:last-child)::after{
  content: "";
  position: absolute;
  top: 20%;
  right: -1.5rem;
  width: 1px;
  height: 64%;
  border-right: 1px dashed rgba(255,255,255,.4);
}
.staff .staff_nav li a{
  position: relative;
  overflow: hidden;
  min-width: auto;
  border: none;
  padding: 0;
  display: flex;
  flex-flow: column;
  justify-content: space-between;
  gap: .1rem;
  color: #fff;
  border-radius: inherit;
}
.staff .staff_nav li a:hover img{
  opacity: 1;
}
.staff .staff_nav li a:hover{
  background: none;
  color: #fff;
  opacity: var(--hover);
}
.staff .staff_nav li a::before{
  content: inherit;
}
.staff_nav li .num{
  font-size: clamp(21px,3.231vw,33px);
}
.staff_nav li .staff_dept,
.staff_nav li .join{
  width: 100%;
  font-size: clamp(11px,1.692vw,13px);
}

/* interview-list */

.staff .sec{
  padding: calc(var(--sec-margin)*1.5) 0 calc(var(--sec-margin)*2);
  text-align: left;
}
#staff_4{
  padding-bottom: calc(var(--sec-margin)*1.5 + 100px);
  z-index: -1;
}
.staff .join_us{
  margin-top: -100px;
}
.staff_wrap{
  width: calc(100% - 5rem);
  margin: 0 0 0 5rem;
}
#staff_2,
#staff_4{
  background-color: #fff;
}
#staff_2{
  border-bottom-left-radius: 100px;
}
#staff_4{
  border-top-left-radius: 100px;
}
.staff_head{
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1rem;
  padding-bottom: 1rem;
}
.staff_head .num{
  font-family: var(--font-en);
  font-size: clamp(60px,9.231vw,140px);
  line-height: 1;
}
#staff_1 .staff_head .num,
#staff_3 .staff_head .num{
  color: var(--orange);
}
#staff_2 .staff_head .num,
#staff_4 .staff_head .num{
  color: var(--red);
}
.staff_head .job{
  display: flex;
  flex-flow: column;
  gap: .25rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: .05em;
  font-size: clamp(12px,1.846vw,16px);
}
.staff_head .dept{
  padding: .25rem 3rem;
  color: #fff;
  border-radius: 20px;
}
#staff_1 .staff_head .dept,
#staff_3 .staff_head .dept{
  background-color: var(--orange);
}
#staff_2 .staff_head .dept,
#staff_4 .staff_head .dept{
  background-color: var(--red);
}
.staff_interview{
  position: relative;
}
.staff_interview ul{
  display: flex;
  flex-direction: column;
  gap: 4rem;
  background-color: #fff;
  border-top-left-radius: 80px;
  border-end-start-radius: 80px;
}
#staff_2 .staff_interview ul,
#staff_4 .staff_interview ul{
  background-color: rgba(var(--red-rgb),.1);
}
.staff_interview ul li{
  display: flex;
  align-items: center;
  gap: 3rem;
}
.staff_interview ul li.item_main{
  padding: 8% 0 1rem;
  padding-left: 8%;
}
.staff_interview ul li.item_sub{
  padding: 0 8% 8%;
}
.staff_interview .interview_area{
  flex: 1;
  max-width: 600px;
}
.staff_interview .ph{
  width: 40%;
}
.staff_interview .ph img{
  width: 100%;
  height: auto;
  display: block;
  border-radius: 12px;
  box-shadow: 0 10px 25px rgba(0,0,0,.05);
}
.staff_interview ul li.item_main .ph img{
  border-end-end-radius: 0;
  border-start-end-radius: 0;
}
.staff_interview ul li .tit{
  position: relative;
  font-weight: bold;
  font-size: clamp(18px,2.769vw,22px);
  margin-bottom: 1rem;
  padding-left: 1.2rem;
  color: var(--orange);
  border-bottom: 1px dashed #ccc;
  padding-bottom: 4px;
}
#staff_1 .staff_interview ul li .tit,
#staff_3 .staff_interview ul li .tit{
  color: var(--orange);
}
#staff_2 .staff_interview ul li .tit,
#staff_4 .staff_interview ul li .tit{
  color: var(--red);
}
.staff_interview ul li .tit span::before{
  content: "■";
  position: absolute;
  left: 0;
  top: 1em;
  font-size: .5em;
}

@media screen and (max-width: 650px){

  .staff .staff_nav ul{
    grid-template-columns: repeat(2,1fr);
    gap: 1.5rem;
  }
  .staff .staff_nav li:nth-child(2)::after{
    display: none;
  }

  .staff .sec{
    padding: calc(var(--sec-margin)*1) 0 calc(var(--sec-margin)*1.25);
  }
  #staff_4{
    padding-bottom: calc(var(--sec-margin)*1 + 60px);
  }
  .staff .join_us{
    margin-top: -60px;
  }
  .staff_wrap{
    width: calc(100% - 1.5rem);
    margin: 0 0 0 1.5rem;
  }
  #staff_2{
    border-bottom-left-radius: 60px;
  }
  #staff_4{
    border-top-left-radius: 60px;
  }
  .staff_head .dept{
    padding: .25rem 1.5rem;
  }
  .staff_interview ul{
    gap: 2rem;
    border-top-left-radius: 40px;
    border-end-start-radius: 40px;
  }
  .staff_interview ul li{
    gap: 1.25rem;
  }
  .staff_interview ul li.item_main{
    flex-flow: column-reverse;
    padding: 10% 12% 0 10%;
  }
  .staff_interview ul li.item_sub{
    flex-flow: column;
    padding: 0 12% 10% 10%;
  }
  .staff_interview .ph{
    width: 100%;
  }
  .staff_interview .ph img,
  .staff_interview ul li.item_main .ph img{
    border-radius: 12px;
  }
  .staff_interview ul li .tit{
    margin-bottom: .5rem;
    padding-left: 1rem;
    border: none;
  }
  .staff_interview ul li .text{
    font-size: 14px;
    text-align: justify;
  }
}




