/*===========================================================================
unique
単一ページで使用するCSS
接頭辞【.u-】

【予測変換用 _base.css記述】
:root {
	--font-color-base: #000;
	--font-family-base: "Noto Sans JP", sans-serif;
	--back-color-base: #fff;
	--design-size-pc: 1400;
	--design-size-sp: 750;
}
===========================================================================*/
.l-main {
  background: #fff;
}




.u-interview {
  display: flex;
  flex-wrap: wrap;
  gap: 124rem var(--gap);
  margin-top: 80rem;
  --gap: 36rem;
}
.u-interview__item {
  width: calc(100% / 3 - 24rem);
}
.u-interview__item:nth-child(3n + 2) {
  transform: translateY(80rem);
}
.u-interview__itemInr {
  display: block;
  transition: opacity 0.3s linear;
}
.u-interview__itemInr:hover img {
  opacity: 1;
}
.u-interview__col {
  box-sizing: border-box;
  padding: 24rem 8rem 0;
}
.u-interview__cell {
  display: flex;
  gap: 16rem;
}
.u-interview__cellTtl {
  color: var(--font-color-sub);
  font-size: 14rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-interview__post {
  color: var(--font-color-sub);
  font-size: 13rem;
  line-height: 1.5;
}
.u-interview__colTtl {
  margin-top: 16rem;
  font-size: 20rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.04em;
}
.u-interview__colData {
  display: flex;
  align-items: center;
  gap: 18rem;
  margin-top: 8rem;
}
.u-interview__name {
  font-size: 16rem;
  font-weight: bold;
  line-height: 1.8;
  letter-spacing: 0.04em;
}
.u-interview__join {
  font-size: 12rem;
  line-height: 1.8;
}

@media (any-hover: hover) {
  .u-interview__itemInr:hover {
    opacity: 0.7;
  }
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-interview {
    display: block;
    margin-top: 52rem;
  }
  .u-interview__item {
    width: 100%;
  }
  .u-interview__item:not(:first-child) {
    margin-top: 64rem;
  }
  .u-interview__item:nth-child(3n + 2) {
    transform: translateY(0);
  }
  .u-interview__col {
    padding: 16rem 8rem 0;
  }
  .u-interview__colTtl {
    font-size: 18rem;
  }
}





/* ----------------------------------
↓↓↓ 詳細 ↓↓↓
---------------------------------- */

.u-dtlVis__wrap {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--gap-num);
  box-sizing: border-box;
  padding: 60rem 0 72rem;
  --gap-num: 80rem;
}
.u-dtlVis__wrap::before {
  content: "";
  position: absolute;
  top: -10rem;
  right: 342rem;
  z-index: -1;
  z-index: 1;
  width: 1160rem;
  height: 310rem;
  background-color: var(--schedule-txt);
  -webkit-mask: url(/recruit/interview/images/sales_vis_mv.svg) no-repeat top / cover;
  mask: url(/recruit/interview/images/sales_vis_mv.svg) no-repeat top / cover;
}
.u-dtlVis__img {
  position: relative;
  z-index: 1;
  width: 592rem;
  height: 600rem;
}
.u-dtlVis__imgPosi {
  position: absolute;
  top: 0;
  right: -206rem;
  width: 800rem;
}
.u-dtlVis__img img {
  width: 100%;
  height: auto;
}
.u-dtlVis__col {
  position: relative;
  z-index: 1;
  flex: 1;
}
.u-dtlVis__en {
  color: var(--font-color-en);
  font-size: 16rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-dtlVis__ttlWrap {
  margin-top: 56rem;
}
.u-dtlVis__post {
  color: var(--font-color-en);
  font-size: 18rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-dtlVis__ttlJp {
  margin-top: 18rem;
  font-size: 40rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-dtlVis__data {
  margin-top: 48rem;
}
.u-dtlVis__name {
  font-size: 24rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-dtlVis__join {
  margin-top: 8rem;
  font-size: 16rem;
  font-weight: bold;
  line-height: 1.5;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-dtlVis__wrap {
    position: relative;
    display: block;
    padding: 40rem 0 32rem;
  }
  .u-dtlVis__wrap::before {
    position: absolute;
    top: 150rem;
    right: auto;
    left: -20rem;
    width: calc(100% + 40rem);
    height: 182rem;
    -webkit-mask: url(/recruit/interview/images/sp_sales_vis_mv.svg) no-repeat top / cover;
    mask: url(/recruit/interview/images/sp_sales_vis_mv.svg) no-repeat top / cover;
  }
  .u-dtlVis__img {
    width: 100%;
    height: auto;
    margin-top: 26rem;
  }
  .u-dtlVis__imgPosi {
    position: static;
    right: 0;
    width: 100%;
  }
  .u-dtlVis__ttlWrap {
    margin-top: 24rem;
  }
  .u-dtlVis__ttlJp {
    margin-top: 4rem;
    font-size: 32rem;
  }
  .u-dtlVis__data {
    margin-top: 24rem;
  }
  .u-dtlVis__join {
    margin-top: 5rem;
  }
}




.u-question {
  position: relative;
  box-sizing: border-box;
  padding-left: 20rem;
  color: var(--txt-color);
  font-size: 16rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-question::before {
  content: "Q";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--txt-color);
  font-family: var(--font-family-poppins);
  font-size: 18rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-specialQ {
  display: inline-block;
  box-sizing: border-box;
  padding: 4rem 30rem;
  border-radius: 45rem;
  background: #fff;
  color: var(--txt-color);
  font-size: 16rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-answerCol {
  margin-top: 30rem;
}
.u-answerCol__ttl {
  font-size: 28rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-answerCol__ttl:not(:first-child) {
  margin-top: 40rem;
}
.u-answerCol__ttl:not(:first-child) + * {
  margin-top: 48rem;
}
.u-answerCol__txt {
  margin-top: 32rem;
  line-height: 1.8;
  letter-spacing: 0.01em;
}
.u-special__txt {
  margin-top: 24rem;
  font-size: 20rem;
  line-height: 1.8;
}
.u-answerCol__txt ul {
  margin-top: 32rem;
}
.u-answerCol__txt li {
  display: flex;
  gap: 32rem;
}
.u-answerCol__txt li:not(:first-child) {
  margin-top: 40rem;
}
.u-answerCol__txt li p {
  font-weight: bold;
}
.u-answerCol__txt .u-time {
  display: flex;
  justify-content: center;
  box-sizing: border-box;
  width: 98rem;
  padding: 0 12rem;
  border-radius: 45rem;
  background: #fff;
  color: var(--schedule-txt);
  font-weight: 600;
}

.u-answer {
  display: flex;
  gap: 32rem;
}
.u-answer .u-answer__ttl {
  width: 488rem;
}
.u-answer .u-answer__txt {
  margin-top: 0;
}
.u-answer__ttl {
  font-size: 28rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.01em;
}
.u-answer__txt {
  flex: 1;
  margin-top: 26rem;
  line-height: 1.8;
}
.m-imgCol__set + .m-imgCol__col .u-answerCol,
.m-imgCol__set + .m-imgCol__col .u-answerCol__txt {
  margin-top: 0;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-specialQ {
    display: block;
    padding: 4rem 10rem;
    text-align: center;
  }
  .u-answerCol {
    margin-top: 24rem;
  }
  .u-answerCol__ttl:not(:first-child) {
    margin-top: 24rem;
  }
  .u-answerCol__ttl:not(:first-child) + * {
    margin-top: 32rem;
  }
  .u-answer {
    flex-direction: column;
    gap: 16rem;
  }
  .u-answer .u-answer__ttl {
    width: auto;
  }
  .u-answer__ttl {
    width: 100%;
    font-size: 24rem;
  }
  .u-answerCol__txt li {
    align-items: flex-start;
    gap: 10rem;
  }
  .u-answerCol__txt li:not(:first-child) {
    margin-top: 24rem;
  }
  .u-answerCol__txt .u-time {
    min-width: 92rem;
    line-height: 1.4;
  }
  .u-answerCol__txt li p {
    flex: 1;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
  .u-answerCol__txt li .u-time {
    margin-top: 2rem;
  }
}



.u-postBlock {
  margin-top: 120rem;
  margin-inline: var(--negative-margin);
  padding-inline: abs(var(--negative-margin));
  background: no-repeat center / cover;
  background-image: var(--bg-img);
}
.u-postBlock01 {
  background-image: var(--bg-img);
}
.u-postBlock02 {
  background-image: var(--bg-img02);
}
.u-postBlock03 {
  background-image: var(--bg-img03);
}
.u-postBlock__inr {
  position: relative;
  box-sizing: border-box;
  padding: 80rem 0;
}
.u-postBlock01 .u-postBlock__inr::before {
  content: "";
  position: absolute;
  right: -360rem;
  bottom: 0;
  width: 886rem;
  height: 258rem;
  background-color: #fff;
  mask: url(/recruit/interview/images/sec_element01.svg) no-repeat center / contain;
  -webkit-mask: url(/recruit/interview/images/sec_element01.svg) no-repeat center / contain;
}
.u-postBlock02 .u-postBlock__inr::before {
  content: "";
  position: absolute;
  top: 40rem;
  right: -426rem;
  width: 1092rem;
  height: 504rem;
  background-color: #fff;
  mask: url(/recruit/interview/images/sec_element03.svg) no-repeat center / contain;
  -webkit-mask: url(/recruit/interview/images/sec_element03.svg) no-repeat center / contain;
}
.u-postBlock__inr *:first-child {
  margin-top: 0;
}
.u-postBlock03 .m-imgCol {
  gap: 56rem;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-postBlock {
    margin-top: 80rem;
  }
  .u-postBlock__inr {
    padding: 64rem 0;
  }
  .u-postBlock01 .u-postBlock__inr::before {
    right: -20rem;
    width: calc(100% + 40rem);
    height: 128rem;
    mask: url(/recruit/interview/images/sp_sec_element01.svg) no-repeat center / contain;
    -webkit-mask: url(/recruit/interview/images/sp_sec_element01.svg) no-repeat center / contain;
  }
  .u-postBlock02 .u-postBlock__inr::before {
    top: 406rem;
    right: -20rem;
    width: 375rem;
    height: 174rem;
    mask: url(/recruit/interview/images/sp_sec_element03.svg) no-repeat center / contain;
    -webkit-mask: url(/recruit/interview/images/sp_sec_element03.svg) no-repeat center / contain;
  }

  .u-postBlock03 .m-imgCol {
    gap: 0;
  }
  .u-postBlock03 .m-imgCol__img,
  .u-postBlock03 .m-imgCol__col {
    display: contents;
  }
}




.u-knowJob {
  font-size: 26rem;
  font-weight: bold;
  line-height: 1.8;
}
.u-post {
  margin-top: 40rem;
}
.u-post__en {
  position: relative;
  box-sizing: border-box;
  padding-left: 15rem;
  font-family: var(--font-family-poppins);
  line-height: 1.5;
}
.u-post__en::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 8rem;
  height: 8rem;
  margin-top: -4rem;
  border-radius: 100%;
  background: #fff;
}
.u-post__jp {
  font-size: 20rem;
  font-weight: bold;
  line-height: 1.5;
}
.u-msg {
  margin-top: 32rem;
}
.u-msg__ttl {
  position: relative;
  padding-left: 16rem;
  font-weight: 500;
  line-height: 1.8;
}
.u-msg__ttl::before {
  content: "";
  position: absolute;
  top: 14rem;
  left: 0;
  width: 8rem;
  height: 2rem;
  background: #fff;
}
.u-msg__txt {
  margin-top: 24rem;
  line-height: 1.8;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-knowJob {
    order: 1;
  }
  .u-postBlock03 .m-imgCol__img picture {
    order: 2;
    margin-top: 16rem;
  }
  .u-post {
    order: 3;
    margin-top: 32rem;
  }
  .u-msg {
    order: 4;
    margin-top: 40rem;
  }
  .u-msg__txt {
    margin-top: 16rem;
  }
  .u-postBlock03 .m-btn {
    order: 5;
    margin-top: 80rem;
  }
}






.u-secImg {
  margin-top: 120rem;
  margin-inline: var(--negative-margin);
  padding-inline: abs(var(--negative-margin));
}
.u-secImg__inr {
  position: relative;
  overflow: hidden;
  width: 1920rem;
  height: 800rem;
  transform: translateX(-360rem);
}
.u-secImg__inr picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
}
.u-secImg__inr img {
  width: 100%;
  height: auto;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-secImg {
    margin-top: 80rem;
  }
  .u-secImg__inr {
    width: calc(100% + 40rem);
    height: auto;
    transform: translateX(-20rem);
  }
  .u-secImg01 .u-secImg__inr {
    width: calc(100% + 20rem);
    transform: translateX(-20rem);
  }
  .u-secImg__inr picture {
    position: static;
  }
}




.m-imgCol__set,
.m-imgCol__col {
  position: relative;
  z-index: 2;
}
.u-secElement::before {
  content: " ";
  position: absolute;
  top: -353rem;
  left: 26rem;
  width: 1356rem;
  height: 625rem;
  background: var(--schedule-txt);
  mask: url(/recruit/interview/images/sec_element02.svg) no-repeat center / contain;
}
/* SP
----------------------------------*/
@media screen and (max-width: 768px) {
  .u-secElement::before {
    top: auto;
    bottom: -56rem;
    left: -20rem;
    width: 375rem;
    height: 177rem;
    mask: url(/recruit/interview/images/sp_sec_element02.svg) no-repeat center / contain;
  }
}
