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

.interview{
  padding-top: 0;
}
.interview_nav{
  width: 100%;
  padding: 4rem 0;
  color: #fff;
  background: url(../img/cmn/bg_pattern.gif) repeat left top / 50px;
}
.interview_nav .tit{
  font-family: var(--font-en2);
  padding-bottom: 1rem;
}
.interview_nav .tit span{
  font-size: clamp(20px,3.077vw,24px);
  vertical-align: -5%;
  padding: 0 .75rem;
}
.interview_nav ul{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  column-gap: 1.25rem;
  width: 90%;
  margin: 0 auto;
  font-weight: bold;
}
.interview_nav ul li{
  width: calc((100% - 10rem) / 8);
}
.interview_nav ul li a{
  display: block;
  color: #fff;
}
.interview_nav ul li a img{
  border-radius: 50%;
}
.interview_nav ul li a img:hover{
  opacity: 1;
}
.interview_nav ul li a p{
  font-size: clamp(9px,1.384vw,11px);
}
.interview_nav ul li a p.dept{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-radius: 17px;
  line-height: 1.2;
  padding: 0 .5rem;
  margin: .75rem 0 .25rem;
  border: 1px solid #fff;
  transition: all 0.2s ease;
}
.interview_nav ul li a:hover p.dept{
  color: var(--blue);
  background-color: #fff;
}

@media screen and (max-width: 650px){
  
  .interview_nav{
    padding: 3rem 0;
  }
  .interview_nav ul{
    gap: 1rem 1rem;
  }
  .interview_nav ul li{
    width: calc((100% - 3rem) / 4);
  }
  .interview_nav ul li a p.dept{
    height: 30px;
    border-radius: 15px;
    line-height: 1.2;
    padding: 0 .25rem;
    margin: .5rem 0 .2rem;
  }
}

/* interview contents ----------------------*/

.interview_list .interview_item{
  position: relative;
  width: 100%;
  padding: 10rem 0;
  background: url(../img/cmn/bg_pattern_wh.gif) repeat left top / 50px;
}
.interview_list li:nth-child(even){
  background: #f2f2f2;
}
.interview_tag{
  position: absolute;
  top: 8rem;
  left: 0;
  padding: 2rem 0rem;
  border-radius: 0 4px 4px 0;
  font-family: var(--font-en2);
  font-weight: bold;
  writing-mode: vertical-rl; /* 縦書き（右→左） */
  background: linear-gradient(to bottom, #3cc6f0, #6df8a7);
}
.interview_tag p{
  margin: 0;
}
.interview_tag span {
  font-size: 1.5em;
  padding-top: .25rem;
}
.interview_wrap{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: min(84%,1120px);
  margin: 0 auto;
}
.interview_body{
  width: 44%;
}
.interview_img{
  width: 50%;
}
.interview_head{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-start;
  gap: .75rem;
  width: 100%;
  font-weight: bold;
}
.interview_head .dept{
  display: flex;
  align-items: center;
  justify-content: center;
  height: 34px;
  border-radius: 17px;
  padding: 0 2rem;
  color: var(--blue);
  border: 1px solid var(--blue);
  font-size: clamp(10px,1.538vw,13px);
}
.interview_head .join{
  font-size: clamp(11px,1.692vw,14px);
}
.interview_content{
  width: 100%;
  text-align: justify;
}
.interview_content__title{
  display: inline-flex;
  align-items: center;
  font-weight: bold;
  font-size: clamp(15px,2.308vw,24px);
  padding-top: 2rem;
}
.interview_content__title::before {
  content: "●";
  color: var(--blue); 
  margin-right: 0.5em;
  font-size: .7em;
}
.interview_content__text{
  padding-top: 1rem;
  font-size: clamp(12px,1.846vw,16px);
}
.interview_img img{
  border-radius: 20px;
}

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

  .interview_wrap{
    align-items: flex-start;
  }
} 
@media screen and (max-width: 650px){
  
  .interview_list .interview_item{
    padding: 5rem 0;
  }
  .interview_tag{
    top: 3rem;
    padding: 2rem 0rem;
  }
  .interview_wrap{
    row-gap: 2rem;
    flex-direction: column-reverse;
  }
  .interview_body,
  .interview_img{
    width: 100%;
  }
  .interview_head .dept{
    height: 30px;
    border-radius: 15px;
    padding: 0 1.2rem;
  }
  .interview_content__title{
    padding-top: 1rem;
  }
  .interview_content__text{
    padding-top: .5rem;
  }
  .interview_img{
    width: 76%;
    margin: 0 auto;
  }
}