  @charset "UTF-8";
/* ============================================ */
/* interview（index）
/* ============================================ */
/* ===== top-area ===== */
#top-area {
  padding: 30px 0 50px;
}
#top-area .wrap {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  max-width: 1400px;
  width: 90%;
}
#top-area .page-title {
  width: 160px;
}
#top-area .top-text {
  width: calc(100% - 240px);
}

@media screen and (max-width: 1024px) {
  #top-area .top-text {
    width: calc(100% - 210px);
  }
}
@media screen and (max-width: 768px) {
  #top-area .page-title {
    width: 140px;
  }
  #top-area .top-text {
    width: calc(100% - 180px);
  }
}
@media screen and (max-width: 600px) {
  #top-area .wrap {
    flex-direction: column;
    align-items: center;
  }
  #top-area .page-title {
    margin: 0 0 20px;
  }
  #top-area .top-text {
    width: 100%;
    text-align: center;
  }
}
/* ===== filter ===== */
#filter {
  padding: 40px 0;
  background: #cae7ee;
}
#filter .box {
  display: flex;
  justify-content: space-between;
}
#filter .box + .box {
  margin: 40px 0 0;
}
#filter .box-name {
  width: 180px;
  font-weight: 500;
  flex-shrink: 0;
}
#filter .list {
  position: relative;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: calc(100% - 180px);
  padding: 0 0 0 17%;
}
#filter .list::before {
  content: "";
  display: block;
  width: 24%;
  height: 0;
  order: 1;
}
#filter .list::after {
  content: "";
  display: block;
  width: 24%;
  height: 0;
}
#filter .list .list-item {
  width: 24%;
  white-space: nowrap;
  margin: 0 0 10px;
}
#filter .list .list-item label {
  display: block;
  width: 100%;
  font-weight: 500;
  text-align: center;
  background: #fff;
  padding: 7px 10px;
  border-radius: 1em;
  cursor: pointer;
}
#filter .list .list-item input {
  -webkit-appearance: none;
  appearance: none;
  display: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}
#filter .list .list-item input[type=radio]:checked + label {
  color: var(--color-white);
  background: #96cfdd;
}
#filter .list .list-item.all {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--color-white);
  width: 19%;
}
#filter .list .list-item.all input[type=radio]:checked + label {
  background: var(--color-black);
}
#filter .list .list-item.all label {
  background: #707070;
}

@media screen and (max-width: 1400px) {
  #filter .list {
    padding: 0 0 0 25%;
  }
  #filter .list::before {
    width: 49%;
  }
  #filter .list::after {
    width: 49%;
  }
  #filter .list .list-item {
    width: 49%;
  }
  #filter .list .list-item.all {
    width: 29.5%;
  }
}
@media screen and (max-width: 1024px) {
  #filter .box {
    flex-direction: column;
    justify-content: center;
  }
  #filter .box-name {
    width: 100%;
    margin: 0 0 1.5em;
  }
  #filter .list {
    width: 100%;
    padding: 0;
    justify-content: space-between;
  }
  #filter .list::before {
    width: 32%;
  }
  #filter .list::after {
    width: 32%;
  }
  #filter .list .list-item {
    width: 32%;
    margin: 0 0 10px;
  }
  #filter .list .list-item.all {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  #filter .list {
    width: 100%;
    padding: 0;
    justify-content: space-between;
  }
  #filter .list .list-item {
    width: 32%;
    margin: 0 0 10px;
  }
  #filter .list .list-item.all {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
  }
}
@media screen and (max-width: 600px) {
  #filter .list {
    font-size: 13px;
    font-size: 0.8125rem;
  }
  #filter .list .list-item {
    width: 48%;
  }
}
/* ===== interview-list ===== */
#interview-list {
  padding: 100px 0 0;
}
#interview-list .list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#interview-list .list::after {
  content: "";
  display: block;
  width: 30%;
}
#interview-list .list .list-item {
  width: 30%;
  transition: 0.3s ease-in-out;
  margin: 0 0 70px;
}
#interview-list .list .list-item.is-hide {
  display: none;
}
#interview-list .list .list-item .img {
  position: relative;
  width: 100%;
  background: #32a0bb;
}
#interview-list .list .list-item .img figcaption {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-size: 22px;
  font-size: 1.375rem;
  line-height: normal;
  text-align: center;
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}
#interview-list .list .list-item .text {
  margin: 20px 0 0;
}
#interview-list .list .list-item .text .profile {
  display: flex;
  justify-content: space-between;
  font-weight: 500;
}
#interview-list .list .list-item .text .profile .name {
  width: 55px;
  font-size: 25px;
  font-size: 1.5625rem;
}
#interview-list .list .list-item .text .profile .name + div {
  width: calc(100% - 55px);
}
#interview-list .list .list-item .text .profile .department {
  color: var(--color-category);
  line-height: 1.5;
  padding: 0.2em 0 0;
}
#interview-list .list .list-item .text .profile .year {
  font-size: 90%;
  margin: 0.5em 0 0;
}
#interview-list .list .list-item .text .view-more {
  display: block;
  width: fit-content;
  margin: 10px 0 0 auto;
}
#interview-list .list .no-item {
  width: 100%;
  text-align: center;
  margin: 0 0 100px;
}

@media (hover: hover) {
  #interview-list .list .list-item a:hover .img img {
    opacity: 0.3;
  }
  #interview-list .list .list-item a:hover .img::before {
    transform: scale(1);
  }
  #interview-list .list .list-item a:hover .img figcaption {
    opacity: 1;
  }
}
@media screen and (min-width: 769px) {
  #interview-list .link .btn-view-more {
    flex-direction: row;
    justify-content: space-between;
    max-width: 460px;
  }
  #interview-list .link .btn-view-more .view-more {
    margin: 0 0 0 1.5em;
  }
}
@media screen and (max-width: 768px) {
  #interview-list .list::after {
    width: 47%;
  }
  #interview-list .list .list-item {
    width: 47%;
    margin: 0 0 70px;
  }
  #interview-list .list .list-item .text .profile .name {
    width: 45px;
    font-size: 20px;
    font-size: 1.25rem;
  }
  #interview-list .list .list-item .text .profile .name + div {
    width: calc(100% - 45px);
  }
}
@media screen and (max-width: 600px) {
  #interview-list .list .list-item {
    margin: 0 0 35px;
  }
  #interview-list .list .list-item .text .profile {
    flex-direction: column;
    margin: 10px 0 0;
  }
  #interview-list .list .list-item .text .profile .name {
    width: 100px;
  }
  #interview-list .list .list-item .text .profile .name + div {
    width: 100%;
  }
}
/* ============================================ */
/* interview（個別）
/* ============================================ */
/* ===== focus-area ===== */
#focus-area {
  position: relative;
  width: 100%;
  height: calc(100vh - 75px);
  height: calc(100svh - 75px);
  padding: 0 0 10px;
  overflow: hidden;
}
#focus-area .wrap {
  width: 100%;
  max-width: 1800px;
  height: 100%;
}
#focus-area .page-title {
  position: absolute;
  left: 5%;
  top: 65px;
  width: 160px;
  z-index: 1;
}
#focus-area .img {
  position: absolute;
  right: 0;
  top: 0;
  width: 100%;
  height: calc(100% - 200px);
  transition: 1s;
}
#focus-area .img .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  border-radius: 10px;
  opacity: 0;
  transition: var(--transition);
}
#focus-area .img .bg.top {
  opacity: 1;
}
#focus-area .top-catch {
  position: absolute;
  width: 55%;
  max-width: 620px;
}
#focus-area .top-catch svg {
  fill: var(--color-black);
  stroke: var(--color-black);
  stroke-miterlimit: 4;
  stroke-width: 0.5px;
}
#focus-area .profile {
  position: absolute;
  left: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  height: 200px;
  padding: 0 calc(10% - 10px);
  font-weight: 500;
}
#focus-area .profile .name {
  font-size: 25px;
  font-size: 1.5625rem;
}
#focus-area .profile .department {
  color: var(--color-category);
  line-height: 1.5;
  padding: 0.5em 0 0;
}
#focus-area .profile .year,
#focus-area .profile .from {
  font-size: 90%;
  margin: 0.5em 0 0;
}

.start-point {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  height: 100svh;
}

#career #focus-area .page-title {
  width: auto;
}
#career #focus-area .page-title .en {
  display: block;
  font-family: var(--fontfamily-en);
  font-size: 56px;
  font-size: 3.5rem;
  font-weight: 200;
  line-height: 1;
}
#career #focus-area .page-title .ja {
  display: block;
  font-size: 22px;
  font-size: 1.375rem;
  margin: 0.5em 0 0;
}

/* 横幅1025px以上で、高さ750px以下の場合 */
@media (min-width: 1024px) and (max-height: 750px) {
  #focus-area .img {
    width: 60%;
    height: calc(100% - 200px);
  }
}
@media screen and (max-width: 1024px) {
  #focus-area {
    height: auto;
    margin: 0 0 120px;
  }
  #focus-area .img {
    position: relative;
    right: auto;
    top: auto;
    height: 500px;
  }
  #focus-area .profile {
    position: relative;
    left: auto;
    bottom: auto;
    height: auto;
    margin: 50px 0 0;
  }
  #career #focus-area .page-title .en {
    font-size: 42px;
    font-size: 2.625rem;
  }
  #career #focus-area .page-title .ja {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
@media screen and (max-width: 768px) {
  #focus-area {
    margin: 0 0 100px;
  }
  #focus-area .page-title {
    left: 0;
    top: 30px;
    width: 120px;
  }
  #focus-area .img {
    height: 400px;
  }
  #focus-area .profile {
    margin: 30px 0 0;
  }
  #career #focus-area .page-title {
    left: 25px;
  }
  #career #focus-area .page-title .en {
    font-size: 36px;
    font-size: 2.25rem;
  }
  #career #focus-area .page-title .ja {
    font-size: 16px;
    font-size: 1rem;
  }
}
@media screen and (max-width: 600px) {
  #focus-area .page-title {
    top: 20px;
    width: 100px;
  }
  #focus-area .img {
    height: auto;
  }
  #focus-area .img .bg.top {
    position: relative;
    height: 250px;
  }
  #focus-area .top-catch {
    position: relative;
    left: 3% !important;
    bottom: auto !important;
    width: 94%;
    max-width: none;
    margin: 30px 0 0;
  }
  #focus-area .top-catch svg {
    fill: var(--color-black) !important;
    stroke: var(--color-black) !important;
  }
  #career #focus-area .page-title {
    left: 15px;
  }
  #career #focus-area .page-title .en {
    font-size: 30px;
    font-size: 1.875rem;
  }
  #career #focus-area .page-title .ja {
    font-size: 14px;
    font-size: 0.875rem;
  }
}
/* ===== article ===== */
#article {
  position: absolute;
  left: 0;
  top: 200vh;
  top: 200svh;
  width: 100%;
  opacity: 0;
  transition: 0.3s;
}
#article .wrap {
  width: 100%;
  max-width: 1600px;
}
#article .part {
  width: 55%;
  padding: 0 0 100px 10%;
}
#article .part + .part {
  margin-top: 250px;
}
#article .part .title {
  white-space: nowrap;
  font-weight: 500;
  color: var(--color-category);
}
#article .part .catch {
  font-size: 26px;
  font-size: 1.625rem;
  line-height: 1.8;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 0.2em;
  margin: 1.5em 0;
}
#article .part .text {
  line-height: 2;
}
#article .part .text p + p {
  margin: 1.5em 0 0;
}

@media screen and (max-width: 1024px) {
  #article {
    position: relative;
    left: auto;
    top: auto;
    width: 100%;
    opacity: 1;
  }
  #article .part {
    width: 80%;
    margin: 0 auto;
    padding: 0;
  }
  #article .part + .part {
    margin-top: 120px;
  }
  #article .img {
    width: 100%;
    height: 400px;
    margin: 50px 0 0;
    background-repeat: no-repeat;
    background-size: cover;
    border-radius: 10px;
  }
}
@media screen and (max-width: 768px) {
  #article .part .catch {
    font-size: 22px;
    font-size: 1.375rem;
  }
  #article .part .img {
    height: 360px;
  }
}
@media screen and (max-width: 600px) {
  #article .part .catch {
    font-size: 18px;
    font-size: 1.125rem;
  }
  #article .part .img {
    height: 320px;
    margin: 30px 0 0;
  }
}
/* ===== message ===== */
#message {
  margin: 200px 0 0;
}
#message .title {
  width: 100%;
  max-width: 400px;
  margin: 0 0 20px;
  padding: 0 0 0 20px;
}
#message .text-wrap {
  border: solid #707070 1px;
  padding: 50px 70px 60px;
}
#message .catch {
  font-size: 28px;
  font-size: 1.75rem;
  line-height: 1.8;
  font-weight: 600;
  /*text-decoration: underline;
  text-underline-offset: 0.2em;*/
  margin: 0 0 1em;
}
#message .text {
  line-height: 2;
}

@media screen and (max-width: 768px) {
  #message {
    margin: 120px 0 0;
  }
  #message .text-wrap {
    padding: 25px 7.5% 40px;
  }
  #message .catch {
    font-size: 22px;
    font-size: 1.375rem;
  }
}
@media screen and (max-width: 600px) {
  #message {
    margin: 80px 0 0;
  }
  #message .title {
    max-width: 240px;
    padding: 0;
  }
  #message .text-wrap {
    padding: 20px 7.5% 30px;
  }
  #message .catch {
    font-size: 18px;
    font-size: 1.125rem;
  }
}
/* ===== schedule ===== */
#schedule {
  margin: 220px 0 0;
}

@media screen and (max-width: 768px) {
  #schedule {
    margin: 120px 0 0;
  }
}
@media screen and (max-width: 600px) {
  #schedule {
    margin: 100px 0 0;
  }
}
/* ===== back ===== */
#back {
  padding: 85px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#back .btn {
  font-family: var(--fontfamily-gothic);
}

@media screen and (max-width: 600px) {
  #back {
    padding: 60px 0 0;
  }
}
/* ===== 画像/位置指定 ===== */
.bg {
  background-position: center;
}

.img {
  background-position: center;
}

.nr01 .top {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr01/top.jpg);
}
.nr01 .top.position-change {
  background-position: 60% center;
}
.nr01 .part01 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr01/part01.jpg);
}
.nr01 .part02 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr01/part02.jpg);
}
.nr01 .part03 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr01/part03.jpg);
  background-position: center 28%;
}
.nr01 #focus-area .top-catch {
  left: 5%;
  bottom: 15%;
}

.ad .top {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ad/top.jpg);
}
.ad .top.position-change {
  background-position: 30% center;
}
.ad .part01 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ad/part01.jpg);
  background-position: center 40%;
}
.ad .part02 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ad/part02.jpg);
}
.ad .part03 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ad/part03.jpg);
  background-position: center 25%;
}
.ad #focus-area .top-catch {
  left: 55%;
  bottom: 15%;
}
.ad #focus-area .top-catch svg {
  fill: var(--color-white);
  stroke: var(--color-white);
}

.ok .top {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ok/top.jpg);
}
.ok .top.position-change {
  background-position: 80% center;
}
.ok .part01 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ok/part01.jpg);
}
.ok .part02 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ok/part02.jpg);
}
.ok .part03 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ok/part03.jpg);
}
.ok #focus-area .top-catch {
  left: 10%;
  bottom: 15%;
}

.ay .top {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ay/top.jpg);
}
.ay .top.position-change {
  background-position: 30% center;
}
.ay .part01 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ay/part01.jpg);
}
.ay .part02 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ay/part02.jpg);
}
.ay .part03 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ay/part03.jpg);
}
.ay #focus-area .top-catch {
  left: 60%;
  bottom: 15%;
}

.ak .top {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ak/top.jpg);
}
.ak .top.position-change {
  background-position: 42% center;
}
.ak .part01 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ak/part01.jpg);
}
.ak .part02 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ak/part02.jpg);
  background-position: center 35%;
}
.ak .part03 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/ak/part03.jpg);
  background-position: center 35%;
}
.ak #focus-area .top-catch {
  left: 55%;
  bottom: 20%;
}

.nr02 .top {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr02/top.jpg);
}
.nr02 .top.position-change {
  background-position: 70% center;
}
.nr02 .part01 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr02/part01.jpg);
}
.nr02 .part02 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr02/part02.jpg);
  background-position: center 35%;
}
.nr02 .part03 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/nr02/part03.jpg);
  background-position: center 35%;
}
.nr02 #focus-area .top-catch {
  left: 8%;
  bottom: 15%;
}

.kh .top {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/kh/top.jpg);
}
.kh .top.position-change {
  background-position: 25% center;
}
.kh .part01 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/kh/part01.jpg);
  background-position: center 20%;
}
.kh .part02 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/kh/part02.jpg);
  background-position: center 20%;
}
.kh .part03 {
  background-image: url(/recruit/assets/img/newgrads/job-people/interview/kh/part03.jpg);
  background-position: center 40%;
}
.kh #focus-area .top-catch {
  left: 42%;
  bottom: 25%;
}

.ks .top {
  background-image: url(/recruit/assets/img/career/job-people/interview/ks/top.jpg);
  background-position: 85% center;
}
.ks .top.position-change {
  background-position: 45% center;
}
.ks .part01 {
  background-image: url(/recruit/assets/img/career/job-people/interview/ks/part01.jpg);
}
.ks .part02 {
  background-image: url(/recruit/assets/img/career/job-people/interview/ks/part02.jpg);
}
.ks .part03 {
  background-image: url(/recruit/assets/img/career/job-people/interview/ks/part03.jpg);
}
.ks #focus-area .top-catch {
  right: 0;
  bottom: 25%;
}

.ta .top {
  background-image: url(/recruit/assets/img/career/job-people/interview/ta/top.jpg);
}
.ta .top.position-change {
  background-position: 65% center;
}
.ta .part01 {
  background-image: url(/recruit/assets/img/career/job-people/interview/ta/part01.jpg);
}
.ta .part02 {
  background-image: url(/recruit/assets/img/career/job-people/interview/ta/part02.jpg);
}
.ta .part03 {
  background-image: url(/recruit/assets/img/career/job-people/interview/ta/part03.jpg);
}
.ta #focus-area .top-catch {
  left: 5%;
  bottom: 15%;
}

@media screen and (max-width: 600px) {
  .nr01 .top {
    background-position: center center;
  }
  .ad .top {
    background-position: 20% center;
  }
  .ok .top {
    background-position: 80% center;
  }
  .ay .top {
    background-position: 15% center;
  }
  .ak .top {
    background-position: 40% center;
  }
  .nr02 .top {
    background-position: 80% center;
  }
  .kh .top {
    background-position: 20% center;
  }
  .ks .top {
    background-position: 40% center;
  }
}

/*# sourceMappingURL=interview.css.map */
