@charset "UTF-8";

/*----------------------------------------
■ビジュアル
----------------------------------------*/

#page_interview .visual {
  background-color: #fff;
  margin-bottom: 40px;
  position: relative;
  width: 100%;
  aspect-ratio: 1368/650;
}

#page_interview .visual:before {
  content: "";
  display: block;
  width: 562px;
  aspect-ratio: 562/483;
  background-image: url(/img/dot_bg.png);
  background-image: image-set(url(/img/dot_bg.png) 1x, url(/img/dot_bg@2x.png) 2x);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: -281px;
  top: 0px;
}

#page_interview .visual .img {
  width: 100%;
}

#page_interview .visual .img img {
  width: 100%;
  max-width: none;
}

#page_interview .visual .title_01,
#page_interview .visual .title_02,
#page_interview .visual .title_03,
#page_interview .visual .title_04,
#page_interview .visual .title_05,
#page_interview .visual .title_06 {
  width: calc(220 / 1368 * 100%);
  aspect-ratio: 220 / 190;
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: calc(97 / 1368 * 100%);
  bottom: calc(150 / 650 * 100%);
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#page_interview .visual.matsuda_ishikawa .title_06 {
  bottom: calc(343 / 650 * 100%);
}

#page_interview .visual .title_01 {
  background-image: url(/img/index/interview/employee/isa/title.svg);
}

#page_interview .visual .title_02 {
  background-image: url(/img/index/interview/employee/shimohira/title.svg);
}

#page_interview .visual .title_03 {
  background-image: url(/img/index/interview/employee/kikuchi/title.svg);
}

#page_interview .visual .title_04 {
  background-image: url(/img/index/interview/employee/minei/title.svg);
}

#page_interview .visual .title_05 {
  background-image: url(/img/index/interview/employee/inamine/title.svg);
}

#page_interview .visual .title_06 {
  background-image: url(/img/index/interview/employee/matsuda_ishikawa/title.svg);
}


#page_interview .visual .sub_title {
  width: calc(527 / 1368 * 100%);
  aspect-ratio: 527 / 64;

  background-image: url(/img/index/interview/employee/sub_title.png);
  background-image: image-set(url(/img/index/interview/employee/sub_title.png) 1x, url(/img/index/interview/employee/sub_title@2x.png) 2x);
  background-size: contain;
  background-repeat: no-repeat;
  position: absolute;
  left: 0;
  bottom: calc(50 / 650 * 100%);
  text-indent: 100%;
  overflow: hidden;
  white-space: nowrap;
}

#page_interview .visual.matsuda_ishikawa .sub_title {
  bottom: calc(242 / 650 * 100%);
}

#page_interview .visual .info {
  position: absolute;
  right: calc(116 / 1368 * 100%);
  bottom: calc(50 / 650 * 100%);
  background-color: rgb(255, 255, 255, 0.7);
  padding: 15px 25px;
  text-align: center;
  min-width: 260px;
  min-height: 145px;
}


#page_interview .visual .info {
  position: absolute;
  right: calc(116 / 1368 * 100%);
  bottom: calc(50 / 650 * 100%);
  background-color: rgb(255, 255, 255, 0.7);
  padding: 15px 25px;
  text-align: center;
  min-width: 260px;
  min-height: 145px;
}

#page_interview .visual .info:before {
  content: "";
  position: absolute;
  right: 5px;
  width: 100%;
  height: 100%;
  bottom: calc(25 / 650 * 100%);
  background-color: rgb(255, 255, 255, 0.7);
  text-align: center;
  z-index: 0;
  min-width: 260px;
}

#page_interview .visual .info_2 {
  left: calc(100/ 1368 * 100%);
  right: auto;
}

#page_interview .visual .info .date {
  border-bottom: 1px solid #000;
  font-size: 18px;
  padding-bottom: 10px;
  margin-bottom: 20px;
  z-index: 1;
  position: relative;
}

#page_interview .visual .info .name {
  font-size: 21px;
  margin-bottom: 15px;
  z-index: 1;
  position: relative;
}

#page_interview .visual .info .division {
  font-size: 18px;
  z-index: 1;
  position: relative;
}


/*----------------------------------------
■対話
----------------------------------------*/
#page_interview #interviewPageContent>.inner {
  max-width: 1082px;
}

#page_interview #interviewPageContent .boxes {
  display: flex;
  flex-direction: column;
  gap: 85px;
  margin-bottom: 85px;
}

#page_interview #interviewPageContent .boxes .box {
  display: grid;
  grid-template-areas:
    "img title"
    "img q"
    "img a";
  justify-content: space-between;
  grid-template-columns: calc(504 / 1082 * 100%) 1fr;
  column-gap: calc(70 / 1082 * 100%);
}

#page_interview #interviewPageContent .boxes .box:nth-child(even) {
  grid-template-areas:
    "title img"
    "q img"
    "a img";
  grid-template-columns: 1fr calc(504 / 1082 * 100%);
}

#page_interview #interviewPageContent .boxes .box .img {
  grid-area: img;
  display: flex;
  flex-direction: column;
  gap: 25px;
}




#page_interview #interviewPageContent .boxes .box .title {
  grid-area: title;
  font-size: 24px;
  margin-bottom: 25px;
  line-height: 130%;
  font-weight: bold;
}

#page_interview #interviewPageContent .boxes .box .q {
  grid-area: q;
  color: #5faad8;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
  font-size: 18px;
  font-weight: bold;
}

#page_interview #interviewPageContent .boxes .box .q:before {
  content: "";
  width: 34px;
  height: 29px;
  background-image: url(/img/index/interview/employee/icon_q.svg);
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 5px;
}

#page_interview #interviewPageContent .boxes .box .a {
  grid-area: a;
  font-size: 16px;
  line-height: 170%;
}

#page_interview #interviewPageContent .schedule {
  display: flex;
  justify-content: space-between;
  gap: 70px;
}

#page_interview #interviewPageContent .video {
  aspect-ratio: 359/638;
  max-width: 432px;
  width: calc(432 /1082 * 100%);
}

#page_interview #interviewPageContent .video iframe {
  width: 100%;
}

#page_interview .ctaBtn.back {
  margin-bottom: 85px;
}

#page_interview #sec_InterView {
  margin-bottom: 40px;
}

.color_orange {
  color: #f39800;
}

.color_pink {
  color: #f7796f;
}