@charset "UTF-8";
/*__ root __*/
:root {
  /* color */
  --color-key: #FABE00;
  --color-base: #000;
  /* transition */
  --transition-opacity: opacity 0.2s ease;
  /* hover opacity */
  --hover-opacity: 0.6;
  /* z-index */
  --z-hamburger-menu: 1000;
  --z-header: 2000;
  --z-contact: 3000;
}

/**/
section[class*="has-bg"]{
  position: relative;
}
section[class*="has-bg"]::after,
section[class*="has-bg"]::before{
  content:"";
  position: absolute;
  display: block;
  width: 100%;
}
section[class*="has-bg"]::before{
  top:0;
}
section[class*="has-bg"]::after{
  bottom: 0;
}
section[class*="has-bg"] .interview-title{
  margin-bottom: 20px;
}

/*__ reset __*/
html{
  background-color: #fff;
}
figure{
  margin: 0;
  padding: 0;
}

/*__ common __*/
.interview{
	min-width: auto;
	font-size: 14px;
	font-weight: normal;
	line-height: 1.75;
  scrollbar-width: none;
}
.interview *{
	letter-spacing: 0.075rem;
	box-sizing: border-box;
}
.interview-main{
  margin-top: 90px;
	background: #fff;
}

@media screen and (max-width: 1139px) {
  .interview-main{
    margin-top: 50px;
  }
}

.interview-inner{
	width: 100%;
	max-width: 1320px;
	padding: 80px 40px;
	margin: 0 auto;
}
.interview-title{
	font-size: 28px;
	font-weight: 800;
	line-height: 1.7;
	text-align: center;
	padding-bottom: 24px;
	margin-bottom: 60px;
	position: relative;
}
.interview-title::after{
	content: "";
	display: inline-block;
	width: 60px;
	height: 2px;
	background: #D96623;
	position: absolute;
	bottom: 0;
	left: 0;
	right: 0;
	margin: 0 auto;
}
[class*="has-bg"] .interview-title::after{
  display: none;
  visibility: hidden;
}
.has-bg-base::before,
.has-bg-base::after,
.has-bg-light::before,
.has-bg-light::after{
  background-size:100% 80px;
  height: 80px;
  width: 100%;
}
.has-bg-base.is-top_right::before,
.has-bg-light.is-top_right::before{
  background: url(../img/interview/isosceles_triangle-tr.svg) no-repeat top right;
}
.has-bg-light.is-top_left::before
.has-bg-light.is-top_left::before{
  background: url(../img/interview/isosceles_triangle-tl.svg) no-repeat top left;
}
.has-bg-base.is-bottom_right::after,
.has-bg-light.is-bottom_right::after{
  background: url(../img/interview/isosceles_triangle-br.svg) no-repeat bottom right;
}
.has-bg-base.is-bottom_left::after,
.has-bg-light.is-bottom_left::after{
  background: url(../img/interview/isosceles_triangle-bl.svg) no-repeat bottom left;
}
@media screen and (max-width: 639px) {
  .has-bg-base::before,
  .has-bg-base::after,
  .has-bg-light::before,
  .has-bg-light::after{
    background-size:100% 50px;
    height: 50px;
  }
}

@media screen and (max-width: 639px) {
  .interview-inner{
    padding: 40px 20px;
  }
  .interview-title{
    font-size: 20px;
    padding-bottom: 16px;
    margin-bottom: 40px;
  }
  .interview-title::after{
    width: 40px;
    height: 2px;
  }
  .interview-sub-title{
    font-size: 16px;
  }
  .interview-only-sp{
    display: inline;
  }
}

/*interview-header*/
.interview-header{
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: #000;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 99;
	width: 100%;
	height: 90px;
}
.interview-header-logo{
	width: 268px;
	padding: 20px 30px;
	position: relative;
	z-index: 98;
}

.interview-header-nav{
	display: flex;
	align-items: center;
	gap: 20px;
	height: 100%;
}
.interview-header-nav-list-inner{
	display: flex;
	align-items: center;
}
.interview-header-nav-link{
	display: block;
	padding: 38px 14px;
	font-weight: 600;
	transition: color .2s;
  color: #fff;
}
.interview-header-nav-recruit{
	height: 100%;
	position: relative;
	z-index: 98;
}

.interview-header-nav-recruit-link{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 100%;
	background: #D96623;
	font-weight: 600;
	color: #fff;
	padding: 20px 30px;
	transition: background .2s;
}
@media (hover: hover) {
  .interview-header-nav-link:hover{
    color: #D96623;
    opacity: 1;
  }
  .interview-header-nav-recruit-link:hover{
    background: #e47e2d;
    opacity: 1;
  }
}
.interview-header-btn{
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 100;
  background: #666;
  display: none;
}
.interview-header-btn a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 17px 15px;
}
.interview-header-btn a span, .interview-header-btn a:before, .interview-header-btn a:after {
  position: absolute;
  content: '';
  right: 12px;
  height: 2px;
  background-color: #fff;
  transition: width .25s cubic-bezier(0.2, 1, 0.25, 1), transform .25s cubic-bezier(0.2, 1, 0.25, 1);
  width: 25px;
}
.interview-header-btn a span{
  top: 24px;
}
.interview-header-btn a:before{
  top: 17px;
}
.interview-header-btn a:after{
  bottom: 17px;
}
.open.interview-header-btn{
  background: #fff;
}
.open.interview-header-btn a span{
  display: none;
}
.open.interview-header-btn a:before,
.open.interview-header-btn a:after{
  top: 25px;
	right: 10px;

}
.open.interview-header-btn a:before{
  transform: rotate(45deg);
	background: #000;
}
.open.interview-header-btn a:after{
  transform: rotate(-45deg);
	background: #000;
}


@media screen and (max-width: 1139px) {
  .interview-header{
    height: 50px;
  }
  .interview-header-logo{
    width: 136px;
    padding: 12px 15px;
  }
  .interview-header-nav{
    gap: 0;
  }
  .interview-header-nav-list{
    width: 100%;
    height: 100vh;
    overflow-y: scroll;
    background: #212121;
    position: absolute;
    z-index: 99;
    top: 0;
    left: 0;
    display: none;
    scrollbar-width: none;
  }
  .interview-header-nav-list-inner{
    flex-direction: column;
    justify-content: center;
    text-align: center;
    min-height: 100%;
    padding: 50px 0;
  }
  .interview-header-nav-item {
    width: 100%;
  }
  .interview-header-nav-link {
    padding: 30px 20px;
  }
  .interview-header-nav-recruit-link{
    padding: 12px 15px;
  }
  .interview-header-btn{
    display: block;
  }
}

/*__ hero __*/
.interview-hero{
	display: flex;
  align-items: center;
  padding: 24px 0 30px;
	min-width: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
  max-height: 280px;
}
.interview-hero::before,
.interview-hero::after{
  content: "";
  position: absolute;
  bottom: 0;
  height: 24px;
  width: 50vw;
}
.interview-hero::before{
  left: 50%;
  background: url(../img/interview/hero_effect_right.svg) no-repeat bottom left;
}
.interview-hero::after{
  right: 50%;
  background: url(../img/interview/hero_effect_left.svg) no-repeat bottom right;
}

.interview-hero-img{
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  z-index: -1;
  background: #999;
  object-fit: contain;
}
.interview-hero-img img{
  height: 100%;
  width: 100%;
}
.interview-hero .interview-inner{
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
  z-index: 10;
}
.interview-hero-logo{
	flex-shrink: 0.5;
  padding: 5px;
  background: #fff;
  box-shadow: 0 2px 2px rgba(0,0,0,0.15 );
}
.interview-hero-logo{
	width: min(30.49%, 340px);
}
.interview-hero-text{
	font-size: 32px;
  line-height: 1.15;
	font-weight: 800;
	color: #fff;
  text-shadow: 2px 2px 2px rgba(0,0,0,0.15 );
}

@media screen and (max-width: 1139px) {
  .interview-hero{
    padding: 40px 0 40px;
  }
}
@media screen and (max-width: 639px) {
  .interview-hero{
    padding: 80px 0 90px;
  }
  .interview-hero .interview-inner{
    flex-direction: column;
    gap: 8px;
  }
  .interview-hero-logo{
    width: 240px;
  }
  .interview-hero-text{
    font-size: 18px;
    text-align: center;
  }
}

/*----------------------------------------*/
/*__ appeal __*/

.feature-list.is-row{
	display: flex;
	justify-content: space-between;
}
.feature-list-item{
	width: 31.1%;
}
.feature-list-img{
	width: 72.5%;
	margin: 0 auto 30px;
	border-radius: 9999px;
	overflow: hidden;
}
.feature-list-item h3{
  font-weight: 600;
  line-height: 1.2;
  display: flex;
  align-items: center;
  height: 3.4em;
}

@media screen and (max-width: 639px) {
  .feature-list.is-row{
    flex-direction: column;
    gap: 40px;
  }
  .feature-list-item{
    width: 100%;
  }
  .feature-list-img{
    width: 59.7%;
    margin: 0 auto 20px;
  }
}

/*----------------------------------------*/
/*__ about __*/
.feature-items{
	display: flex;
  justify-content: space-between;
	flex-wrap: wrap;
}
.feature-article{
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.feature-article:nth-of-type(even) .feature-article-img{
  order: 1;
}
.feature-article-img{
	width: 33.33%;
	overflow: hidden;
}
.feature-article-body{
	width: 61.66%;
}
.feature-article-body h3{
  font-weight: 600;
  margin-bottom: 1em;
}

@media screen and (max-width: 639px) {
  .feature-items{
    flex-direction: column;
    align-items: center;
    gap: 60px;
  }
  .feature-article{
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }
  .feature-article-img{
    width: 100%;
  }
  .feature-article:nth-of-type(even) .feature-article-img{
    order: 0;
  }
  .feature-article-body{
    width: 100%;
  }
}


/*----------------------------------------*/
/*__ career __*/


/*----------------------------------------*/
/*__ jobfinder __*/
.interview-content{
  display: flex;
  gap: 40px;
  margin: 0 0 30px;
  padding: 0 0 30px;
}
.interview-content + .interview-content{
  padding-top: 60px;
  border-top: solid 2px #fff;
}
.interview-img{
  width: 120px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.interview-img figcaption{
  font-size: 90%;
  line-height: 1;
}
.interview-body{
  width: calc( 100% - 200px );
}
.interview-text-block dt{
  font-weight: 600;
}
.interview-text-block dd{
  padding-bottom: 1em;
}

@media screen and (max-width: 639px) {
  .interview-content{
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  .interview-img{
    width: 100%;
  }
  .interview-body{
    width: 100%;
  }
}

/*----------------------------------------*/
/*__ recruiter __*/
.interview-recruiter{
  overflow: hidden;
}
.recruiter-img{
  order: 1;
  width: 220px;
  position: relative;
  z-index: 70;
}
.recruiter-caption{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: left;
  gap: 10px;
  text-align: left;
  background: #fff;
  padding: 10px;
  box-shadow: 4px 4px 4px  rgba(0,0,0,0.15 );
  position: relative;
  top: -20px;
  right: -20px;
  z-index: 80;
}
.recruiter-caption p{
  font-size: 90%;
  line-height: 1.15;
}
.recruiter-body{
  width: calc( 100% - 240px );
}

@media screen and (max-width: 639px) {
  .recruiter-img{
    order: 0;
  }
  .recruiter-img::before{
    content: "";
    position: absolute;
    top: 20%;
    left: -60vw;
    width: 90vw;
    height: 2px;
    background: #666;
    z-index: -1;
  }
  .recruiter-img::after{
    content: "";
    position: absolute;
    bottom: 20%;
    right: -60vw;
    width: 90vw;
    height: 1px;
    background: #666;
    z-index: -1;
  }
  .recruiter-body{
    width: 100%;
  }
}

.recruiter-text-block{
  margin:20px 0 30px;
  padding: 20px 0 30px;
  position: relative;
}
.recruiter-text-block::after{
  content: "";
  position: absolute;
  bottom: 0;
  right: -50vw;
  height: 1px;
  width: 80vw;
  background: #ccc;
}
.interview-body-title{
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
  padding-bottom: 12px;
  margin-bottom: 12px;
  position: relative;
}
.interview-body-title::after{
  content: "";
  position: absolute;
  bottom: 0;
  left: -20vw;
  width: 50vw;
  height: 2px;
  background: #666;
}

.interview-body-text p{
  margin-bottom: 1em;
}
.has-interviewee{
  padding-left: 3em;
  position: relative;
}
.has-interviewee::before{
  content:attr(data-interviewee);
  position: absolute;
  left: 0;
  font-weight: 600;
}

@media screen and (max-width: 639px) {
  .recruiter-text-block::after{
    right: -10vw;
    width: 40vw;
  }
  .interview-body-title::after{
    left: -10vw;
    width: 40vw;
  }
}

/*----------------------------------------*/
/*__ recruit __*/

.recruit-item{
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  padding: 10px 20px;
  background: #fff;
  box-shadow: 0 4px 4px rgba(0,0,0,0.25 );
}
.recruit-item-logo{
  max-width: 340px;
}
.recruit-item-body{
  width: calc( 100% - 380px );
}
.recruit-item-body h4{
  font-size: 18px;
  font-weight: 600;
}
.recruit-item-text-more{
  text-align: right;
}
.recruit-item:hover{
  opacity: 0.9;
  box-shadow: 0 2px 8px rgba(0,0,0,0.15 );
}
@media screen and (max-width: 639px) {
  .interview-recruit{
    padding-bottom: 100px;
  }
  .recruit-item{
    flex-direction: column;
    gap: 4px;
  }
  .recruit-item-body{
    width: 100%;
  }
}