@charset "UTF-8";
/* ============================================ */
/* interview
/* ============================================ */
#page-title {
  padding: 0 0 20px !important;
}

#link {
  padding: 20px 0 100px;
  background: var(--color-lightgray);
}
#link .filter {
  width: 100%;
  background: var(--color-white);
  padding: 30px 40px;
  border-radius: 10px;
}
#link .filter .guide-text {
  color: var(--color-red);
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.5;
  margin: 0 0 1em;
}
#link .filter .filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
}
#link .filter .filter-item {
  min-width: 11em;
  font-size: 16px;
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 0.5em 1em;
  background: var(--color-white);
  border: solid 2px var(--color-red);
  border-radius: 2.5em;
  color: var(--color-red);
  text-align: center;
  cursor: pointer;
  transition: 0.2s ease;
}
#link .link-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px 0;
  margin: 70px 0 0;
}
#link .link-list::after {
  content: "";
  display: block;
  width: 31%;
  height: 0;
}
#link .link-list .item {
  position: relative;
  max-width: 31%;
  opacity: 0;
  transform: scale(0.95);
  cursor: pointer;
}
#link .link-list .item.fade-out {
  opacity: 0;
  transform: scale(0.95);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#link .link-list .item.fade-in {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#link .link-list .img-wrap {
  position: relative;
}
#link .link-list .img-wrap .catch {
  position: absolute;
  left: -3%;
  bottom: 5%;
  width: 75%;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}
#link .link-list .img-wrap .paint {
  padding: 0 0.5em 0.1em;
  margin-bottom: 0.3em;
  display: block;
  width: fit-content;
  white-space: nowrap;
}
#link .link-list .img-wrap .paint.bg-red {
  background-color: var(--color-red);
}
#link .link-list .img-wrap .icon-department {
  position: absolute;
  bottom: -10px;
  right: 15px;
  display: block;
  width: 17%;
  z-index: 1;
}
#link .link-list .link-name {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 1.5;
  padding: 0.8em 0.5em 0 0.8em;
}
#link .link-list .profile .department {
  font-size: 14px;
  font-size: 0.875rem;
}
#link .link-list .profile .en {
  font-family: var(--fontfamily-en);
  font-size: 22px;
  font-size: 1.375rem;
  color: var(--color-red);
}
#link .link-list .profile .year {
  font-size: 70%;
  margin-left: 1.5em;
}
#link .link-list .icon-arrow {
  stroke: var(--color-red);
}
#link .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 60px 0 0;
}

@media screen and (max-width: 1024px) {
  #link .filter .filter-list::after {
    width: 48%;
  }
  #link .link-list .item {
    max-width: 48%;
  }
}
@media screen and (max-width: 768px) {
  #link .filter {
    padding: 30px 20px;
  }
  #link .filter .guide-text {
    font-size: 16px;
    font-size: 1rem;
  }
  #link .filter .filter-item {
    font-size: 15px;
    font-size: 0.9375rem;
  }
  #link .link {
    margin: 30px 0 0;
  }
}
@media screen and (max-width: 600px) {
  #link .filter .filter-item {
    width: 100%;
  }
  #link .link-list {
    flex-direction: column;
    align-items: center;
  }
  #link .link-list .item {
    max-width: 100%;
    max-width: 360px;
  }
}
/* ===== 色設定 ===== */
#link .filter .filter-item.all {
  color: var(--color-black);
  border-color: var(--color-black);
}
#link .filter .filter-item.all.is-active {
  background: var(--color-black);
  color: var(--color-white);
}
#link .filter .filter-item.sales-management {
  color: var(--color-green);
  border-color: var(--color-green);
}
#link .filter .filter-item.sales-management.is-active {
  background: var(--color-green);
  color: var(--color-white);
}
#link .filter .filter-item.research-development {
  color: var(--color-blue);
  border-color: var(--color-blue);
}
#link .filter .filter-item.research-development.is-active {
  background: var(--color-blue);
  color: var(--color-white);
}
#link .filter .filter-item.production-technology {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}
#link .filter .filter-item.production-technology.is-active {
  background: var(--color-yellow);
  color: var(--color-white);
}
#link .filter .filter-item.engineering {
  color: var(--color-yellow);
  border-color: var(--color-yellow);
}
#link .filter .filter-item.engineering.is-active {
  background: var(--color-yellow);
  color: var(--color-white);
}
#link .filter .filter-item.dairy-farming {
  color: var(--color-pink);
  border-color: var(--color-pink);
}
#link .filter .filter-item.dairy-farming.is-active {
  background: var(--color-pink);
  color: var(--color-white);
}

@media (hover: hover) {
  #link .filter .filter-item:hover.is-active {
    background: var(--color-black);
    color: var(--color-white);
  }
  #link .filter .filter-item.sales-management:hover {
    background: var(--color-green);
    color: var(--color-white);
  }
  #link .filter .filter-item.research-development:hover {
    background: var(--color-blue);
    color: var(--color-white);
  }
  #link .filter .filter-item.production-technology:hover {
    background: var(--color-yellow);
    color: var(--color-white);
  }
  #link .filter .filter-item.engineering:hover {
    background: var(--color-yellow);
    color: var(--color-white);
  }
  #link .filter .filter-item.dairy-farming:hover {
    background: var(--color-pink);
    color: var(--color-white);
  }
}
/* ============================================ */
/* interview （個別）
/* ============================================ */
/* ===== top-area ===== */
#top-area {
  position: relative;
  width: 100%;
  height: calc(100vh - 86px - 130px);
  height: calc(100svh - 86px - 130px);
  margin: 70px 0 0;
}
#top-area .wrap {
  height: 100%;
}
#top-area .img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#top-area .catch-wrap .catch {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  line-height: 1.5;
  color: var(--color-white);
}
#top-area .catch-wrap .paint {
  padding: 0 15px 3px;
  margin-bottom: 0.3em;
  display: inline-block;
  white-space: nowrap;
}
#top-area .catch-wrap .paint.bg-red {
  background-color: var(--color-red);
}
#top-area .catch-wrap.left {
  position: absolute;
  top: -4%;
  left: 8%;
}
#top-area .catch-wrap.right {
  position: absolute;
  top: -4%;
  right: 0;
}

@media screen and (max-width: 1024px) {
  #top-area {
    height: 550px;
  }
  #top-area .catch-wrap.left {
    left: 0;
  }
}
@media screen and (max-width: 768px) {
  #top-area {
    height: 460px;
  }
  #top-area .catch-wrap .catch {
    font-size: 24px;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 600px) {
  #top-area {
    height: 360px;
  }
  #top-area .catch-wrap .catch {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #top-area .catch-wrap.left {
    left: -20px;
  }
}
/* ===== self-introduction ===== */
#self-introduction .profile {
  position: relative;
  padding: 25px 0 0 80px;
}
#self-introduction .profile::before {
  content: "";
  display: inline-block;
  width: 61px;
  height: 107px;
  position: absolute;
  top: -18px;
  left: -8px;
}
#self-introduction .profile .name {
  font-size: 29px;
  font-size: 1.8125rem;
  line-height: 0.8;
  margin: 0.3em 0 0;
}
#self-introduction .profile .name .en {
  font-family: var(--fontfamily-en);
  color: var(--color-red);
}
#self-introduction .profile .year {
  font-size: 50%;
  margin-left: 0.5em;
}
#self-introduction .profile .graduate {
  font-size: 50%;
  margin-left: 1.8em;
}
#self-introduction .flex-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin: 35px 0 0;
}
#self-introduction .profile-text {
  width: 47%;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2.2;
  padding: 0 0 0 80px;
}
#self-introduction .like {
  position: relative;
  width: 47%;
  max-width: 500px;
}
#self-introduction .like .text-wrap {
  color: var(--color-white);
  background-color: var(--color-red);
  border-radius: 20px;
  padding: 35px 65px 55px;
  text-align: center;
}
#self-introduction .like .text-wrap .catch {
  width: 100%;
}
#self-introduction .like .text-wrap .text {
  width: 85%;
  line-height: 2.2;
  margin: 50px 0 0 0;
  text-align: left;
}
#self-introduction .like .text-wrap .text .notes {
  font-size: 13px;
  font-size: 0.8125rem;
  display: block;
  margin: 1.5em 0 0;
}
#self-introduction .like .line-dotted::before {
  position: absolute;
  top: 80px;
  width: 100%;
  height: 2px;
  background-image: url(../img/job-people/interview/line-dotted.svg);
  background-color: var(--color-red);
}
#self-introduction .like .person {
  position: absolute;
  bottom: -100px;
  right: -8.5%;
  width: 35%;
  transform: rotate(3deg);
}
#self-introduction .like .item {
  position: absolute;
  top: 91%;
  left: -5%;
  width: 48%;
  transform: rotate(-5deg);
}
#self-introduction .like .item.item-horizontal {
  left: 0;
}

@media screen and (max-width: 1024px) {
  #self-introduction .flex-wrap {
    flex-direction: column;
  }
  #self-introduction .profile-text {
    width: 100%;
    padding: 0;
  }
  #self-introduction .like {
    width: 100%;
    margin: 50px 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #self-introduction .profile {
    padding: 20px 0 0 55px;
  }
  #self-introduction .profile::before {
    width: 46px;
    height: 80px;
    top: -16px;
  }
  #self-introduction .profile .name {
    font-size: 25px;
    font-size: 1.5625rem;
  }
  #self-introduction .profile-text {
    font-size: 12px;
    font-size: 0.75rem;
  }
}
@media screen and (max-width: 600px) {
  #self-introduction .like .text-wrap {
    padding: 35px 30px 55px;
  }
  #self-introduction .like .text-wrap .catch {
    max-width: 300px;
  }
  #self-introduction .like .text-wrap .text {
    width: 78%;
  }
  #self-introduction .like .person {
    bottom: -60px;
    min-width: 120px;
  }
  #self-introduction .like .item {
    top: 92%;
    left: -8%;
    width: 60%;
    max-width: 200px;
  }
}
@media screen and (max-width: 450px) {
  #self-introduction .like .text-wrap {
    padding: 35px 20px 55px;
  }
  #self-introduction .like .text-wrap .text {
    width: 100%;
  }
  #self-introduction .like .person {
    top: 90%;
    bottom: auto !important;
  }
}
/* ===== theme共通 ===== */
.theme {
  position: relative;
}
.theme .title {
  display: flex;
  align-items: baseline;
  gap: 30px 0;
  font-size: 16px;
  font-size: 1rem;
  color: var(--color-red);
  line-height: 1.8;
  margin: 0 0 50px -50px;
}
.theme .title .number {
  display: flex;
  width: fit-content;
}
.theme .title .catch {
  margin: 0 0 0 -2em;
}
.theme .theme-catch {
  font-size: 26px;
  font-size: 1.625rem;
  font-weight: 600;
  line-height: 1.8;
  margin: 0 0 2.5em;
}
.theme .flex-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.theme .text-wrap p {
  line-height: 2.2;
}
.theme .text-wrap p + p {
  margin: 2em 0 0;
}
.theme .red-box {
  color: var(--color-white);
  background-color: var(--color-red);
  padding: 0 3px 1px;
  margin-right: 5px;
}
.theme .red-box:first-of-type {
  margin-left: 5px;
}

@media screen and (max-width: 1024px) {
  .theme .flex-wrap {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .theme .title {
    font-size: 14px;
    font-size: 0.875rem;
    margin: 0 0 30px -5% !important;
  }
  .theme .title .catch {
    margin: 0 0 0 -1em;
  }
  .theme .theme-catch {
    font-size: 24px;
    font-size: 1.5rem;
    margin: 0 0 1.7em;
  }
}
@media screen and (max-width: 600px) {
  .theme .title .number {
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }
  .theme .title .catch {
    margin: 3em 0 0;
  }
  .theme .theme-catch {
    font-size: 20px;
    font-size: 1.25rem;
  }
}
/* ===== theme-half ===== */
#theme-half .in-wrap {
  max-width: 1100px;
  margin: 0 auto;
}
#theme-half .in-wrap.indent {
  padding: 0 0 0 80px;
}
#theme-half .theme01 {
  width: 42%;
  margin-top: -100px;
}
#theme-half .theme02 {
  width: 42%;
  margin-top: 180px;
}
#theme-half .img {
  margin-top: 100px;
  max-width: 700px;
}
#theme-half .img-two .img01 {
  width: 85%;
  min-width: 210px;
}
#theme-half .img-two .img02 {
  width: 75%;
  min-width: 210px;
  margin: 75px 0 0 auto;
}

@media screen and (max-width: 1200px) {
  #theme-half .in-wrap {
    margin: 0 0 0 auto;
  }
  #theme-half .in-wrap.indent {
    padding: 0 5vw 0 0;
  }
}
@media screen and (max-width: 1024px) {
  #theme-half .in-wrap {
    margin: 0;
  }
  #theme-half .in-wrap.indent {
    padding: 0;
  }
  #theme-half .text-wrap {
    padding: 0 0 0 10vw;
  }
  #theme-half .theme01 {
    width: 100%;
    margin-top: 20%;
  }
  #theme-half .theme02 {
    width: 100%;
    margin-top: 100px;
  }
}
@media screen and (max-width: 768px) {
  #theme-half .theme02 {
    margin-top: 60px;
  }
}
/* 画像調整*/
@media screen and (min-width: 1801px) {
  #theme-half .img {
    margin-left: -100%;
  }
}
@media screen and (min-width: 1401px) and (max-width: 1800px) {
  #theme-half .img {
    width: 50vw;
    margin-left: calc(100% - 48vw);
  }
}
@media screen and (min-width: 1201px) and (max-width: 1400px) {
  #theme-half .img {
    width: 50vw;
    margin-left: calc(100% - 47vw);
  }
}
@media screen and (max-width: 1200px) {
  #theme-half .img {
    width: 50vw;
    margin-left: calc(100% - 46vw);
  }
}
@media screen and (max-width: 1024px) {
  #theme-half .img {
    width: 80%;
    max-width: 500px;
    margin: 45px 0 0;
  }
  #theme-half .img .img02 {
    margin: 40px 0 0 auto;
  }
}
@media screen and (max-width: 600px) {
  #theme-half .img .img01 {
    width: 90%;
  }
  #theme-half .img .img02 {
    width: 80%;
  }
}
/* ===== theme03 ===== */
#theme03 {
  padding: 100px 0;
}
#theme03 .text-wrap {
  width: 40%;
  max-width: 430px;
}
#theme03 .img {
  width: 50%;
  max-width: 700px;
  margin: 12% 0 0;
}

@media screen and (max-width: 1024px) {
  #theme03 .text-wrap {
    width: calc(100% - 10vw) !important;
    max-width: none;
  }
  #theme03 .img {
    width: 80%;
    max-width: 500px;
    margin: 45px 0 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #theme03 {
    padding: 60px 0 50px;
  }
}
/* ===== reason-career ===== */
#reason-career {
  background-color: var(--color-lightpink);
  padding: 0 0 50px;
}
#reason-career .catch {
  width: 45%;
  max-width: 410px;
  margin: 0 0 0 auto;
}
#reason-career .g-box-wrap {
  align-items: flex-start;
  margin: -170px 0 0;
}
#reason-career .g-box {
  line-height: 2.2;
  padding: 55px 50px 60px;
}
#reason-career .g-box .title {
  font-size: 30px;
  font-size: 1.875rem;
  font-weight: 600;
  color: var(--color-red);
  margin: 0 0 0.8em;
}
#reason-career .career {
  margin: 260px 0 0;
}
#reason-career .career .step li {
  display: flex;
}
#reason-career .career .step li .date {
  position: relative;
  width: 100px;
  flex-shrink: 0;
}
#reason-career .career .step li .date::after {
  content: "：";
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 1024px) {
  #reason-career .catch {
    width: 100%;
    margin: 0;
  }
  #reason-career .g-box-wrap {
    flex-direction: column;
    margin: 50px 0 0;
  }
  #reason-career .g-box.half {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  #reason-career .catch {
    max-width: 360px;
  }
  #reason-career .g-box {
    padding: 30px;
  }
  #reason-career .g-box .title {
    font-size: 22px;
    font-size: 1.375rem;
  }
  #reason-career .career .step li .date {
    width: 93px;
  }
}
@media screen and (max-width: 600px) {
  #reason-career .g-box .title {
    font-size: 20px;
    font-size: 1.25rem;
  }
  #reason-career .career .step li {
    flex-direction: column;
  }
  #reason-career .career .step li + li {
    margin-top: 20px;
  }
  #reason-career .career .step li .date {
    width: 100%;
  }
  #reason-career .career .step li .date::after {
    content: normal;
  }
}
/* ===== Weekly Schedule ===== */
#schedule {
  background-color: var(--color-yellow);
  padding: 0 0 100px;
  text-align: center;
  /* 画像サイズ÷2 */
  /*  モーダル  */
}
#schedule .wrap {
  max-width: 1200px;
}
#schedule .title {
  position: relative;
  font-family: var(--fontfamily-en);
  font-size: 79px;
  font-size: 4.9375rem;
  font-weight: 100;
  color: var(--color-white);
  margin: 0 0 0.7em;
}
#schedule .title::after {
  content: "";
  position: absolute;
  left: 7%;
  top: 45px;
  display: block;
  width: 230px;
  height: 40px;
  background: url(../img/job-people/interview/schedule-title.svg);
  background-repeat: no-repeat;
  background-size: contain;
}
#schedule .g-box {
  padding: 80px 70px 100px;
}
#schedule .g-box .max-620 {
  max-height: 620px;
}
#schedule .g-box .asterisk {
  font-size: 14px;
  font-size: 0.875rem;
  text-align: left;
  margin: 0 0 20px;
}
#schedule .schedule-table {
  position: relative;
  width: 1000px;
  margin: 0 auto;
}
#schedule .schedule-table .fixed-column {
  position: sticky;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 50px;
  background: var(--color-white);
  z-index: 2;
}
#schedule .schedule-table .fixed-column::before {
  content: "";
  position: sticky;
  display: block;
  background: var(--color-white);
  width: 7.5%;
  height: 49px;
  left: 0;
  top: 0;
  z-index: 1;
}
#schedule .schedule-table .fixed-column img {
  display: block;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
}
#schedule .schedule-table .row-wrap {
  position: relative;
  width: 100%;
}
#schedule .schedule-table .fixed-row {
  position: sticky;
  left: 0;
  top: 0;
  width: 7.5%;
  background: var(--color-white);
  z-index: 1;
}
#schedule .schedule-table .table-body {
  position: absolute;
  left: 7.5%;
  top: 0;
  display: block;
}
#schedule .schedule-table-underline {
  position: relative;
  left: 100px;
  width: calc(100% - 125px);
  height: 4px;
  border-radius: 2px;
  background: var(--color-gray);
}
#schedule .modal {
  position: absolute;
  left: 0;
  top: 0;
  width: 3%;
  cursor: pointer;
  animation: fuwafuwa 1.2s ease-in-out infinite alternate-reverse;
}
#schedule .modal img {
  display: block;
  transition: 0.2s ease;
}
#schedule .modal:hover img {
  transform: scale(1.1);
}
#schedule .link {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 100px 0 0;
}

@media screen and (max-width: 1400px) {
  #schedule .schedule-table-underline {
    left: 75px;
    width: calc(100% - 75px);
  }
}
@media screen and (max-width: 1024px) {
  #schedule .title {
    font-size: 68px;
    font-size: 4.25rem;
  }
  #schedule .title::after {
    width: 200px;
    height: 36px;
  }
  #schedule .schedule-table {
    height: 800px;
  }
}
@media screen and (max-width: 768px) {
  #schedule {
    padding: 50px 0 100px;
  }
  #schedule .title {
    font-size: 50px;
    font-size: 3.125rem;
  }
  #schedule .title::after {
    position: relative;
    left: 0;
    top: 0;
    margin: 0 auto;
    width: 130px;
    height: 23px;
  }
  #schedule .g-box {
    padding: 30px 10px;
  }
  #schedule .g-box .asterisk {
    font-size: 12px;
    font-size: 0.75rem;
    margin: 0 0 20px 10px;
  }
  #schedule .link {
    margin: 80px 0 0;
  }
}
@media screen and (max-width: 600px) {
  #schedule .title {
    font-size: 38px;
    font-size: 2.375rem;
  }
  #schedule .title::after {
    width: 134px;
    height: 26px;
  }
  #schedule .schedule-table {
    width: 640px;
    height: 450px;
  }
  #schedule .schedule-table .fixed-column {
    height: 36px;
  }
  #schedule .schedule-table .fixed-column::before {
    height: 35px;
  }
  #schedule .schedule-table-underline {
    left: 60px;
    width: calc(100% - 60px);
  }
}
/* ===== 個別スタイル ===== */
#main {
  /* ok */
  /* he */
  /* km */
  /* im */
  /* ka */
  /* kk */
  /* fy */
  /* hh */
  /* kt */
  /* nt */
}
#main.ok #top-area .img::before {
  background-image: url(../img/job-people/interview/ok/top_pc.jpg);
  background-position: right 30% center;
}
#main.ok #self-introduction .profile::before {
  background: url(../img/job-people/interview/ok/icon-department.png) no-repeat;
  background-size: contain;
}
#main.ok #schedule .modal.m01 {
  top: 14%;
  left: 12%;
}
#main.ok #schedule .modal.m02 {
  top: 23%;
  left: 12%;
}
#main.ok #schedule .modal.m03 {
  top: 69.5%;
  left: 82.5%;
}
#main.ok #schedule .modal.m04 {
  top: 41.5%;
  left: 40%;
}
#main.he #top-area .img::before {
  background-image: url(../img/job-people/interview/he/top_pc.jpg);
  background-position: right 30% center;
}
#main.he #self-introduction .profile::before {
  background: url(../img/job-people/interview/he/icon-department.png) no-repeat;
  background-size: contain;
}
#main.he #schedule .modal.m01 {
  top: 23%;
  left: 26%;
}
#main.he #schedule .modal.m02 {
  top: 41%;
  left: 40%;
}
#main.he #schedule .modal.m03 {
  top: 28%;
  left: 68%;
}
#main.km #top-area .img::before {
  background-image: url(../img/job-people/interview/km/top_pc.jpg);
  background-position: right 30% center;
}
#main.km #self-introduction .profile::before {
  background: url(../img/job-people/interview/km/icon-department.png) no-repeat;
  background-size: contain;
}
#main.km #schedule .modal.m01 {
  top: 19%;
  left: 12%;
}
#main.km #schedule .modal.m02 {
  top: 42.5%;
  left: 26%;
}
#main.km #schedule .modal.m03 {
  top: 64.5%;
  left: 82%;
}
#main.km #schedule .modal.m04 {
  top: 55%;
  left: 40%;
}
#main.km #schedule .modal.m05 {
  top: 45%;
  left: 82%;
}
#main.im #top-area .img::before {
  background-image: url(../img/job-people/interview/im/top_pc.jpg);
  background-position: right 30% center;
}
#main.im #self-introduction .profile::before {
  background: url(../img/job-people/interview/im/icon-department.png) no-repeat;
  background-size: contain;
}
#main.im #schedule .modal.m01 {
  top: 42%;
  left: 54%;
}
#main.im #schedule .modal.m02 {
  top: 19%;
  left: 12%;
}
#main.im #schedule .modal.m03 {
  top: 48%;
  left: 68%;
}
#main.ka #top-area .img::before {
  background-image: url(../img/job-people/interview/ka/top_pc.jpg);
  background-position: right 30% center;
}
#main.ka #self-introduction .profile::before {
  background: url(../img/job-people/interview/ka/icon-department.png) no-repeat;
  background-size: contain;
}
#main.ka #schedule .modal.m01 {
  top: 63%;
  left: 26%;
}
#main.ka #schedule .modal.m02 {
  top: 49%;
  left: 40%;
}
#main.ka #schedule .modal.m03 {
  top: 20.5%;
  left: 68%;
}
#main.kk #top-area .img::before {
  background-image: url(../img/job-people/interview/kk/top_pc.jpg);
  background-position: right 30% center;
}
#main.kk #self-introduction .profile::before {
  background: url(../img/job-people/interview/kk/icon-department.png) no-repeat;
  background-size: contain;
}
#main.kk #schedule .modal.m01 {
  top: 48%;
  left: 54%;
}
#main.kk #schedule .modal.m02 {
  top: 50%;
  left: 26%;
}
#main.kk #schedule .modal.m03 {
  top: 58%;
  left: 12%;
}
#main.fy #top-area .img::before {
  background-image: url(../img/job-people/interview/fy/top_pc.jpg);
  background-position: center center;
}
#main.fy #self-introduction .profile::before {
  background: url(../img/job-people/interview/fy/icon-department.png) no-repeat;
  background-size: contain;
}
#main.fy #schedule .modal.m01 {
  top: 54%;
  left: 26%;
}
#main.fy #schedule .modal.m02 {
  top: 19%;
  left: 12%;
}
#main.fy #schedule .modal.m03 {
  top: 50%;
  left: 68%;
}
#main.hh #top-area .img::before {
  background-image: url(../img/job-people/interview/hh/top_pc.jpg);
  background-position: right 30% center;
}
#main.hh #self-introduction .profile::before {
  background: url(../img/job-people/interview/hh/icon-department.png) no-repeat;
  background-size: contain;
}
#main.hh #schedule .modal.m01 {
  top: 21%;
  left: 26%;
}
#main.hh #schedule .modal.m02 {
  top: 45%;
  left: 54.5%;
}
#main.hh #schedule .modal.m03 {
  top: 63.5%;
  left: 54.5%;
}
#main.kt #top-area .img::before {
  background-image: url(../img/job-people/interview/kt/top_pc.jpg);
  background-position: right 30% center;
}
#main.kt .theme02 .cheese {
  display: block;
  width: 100%;
  max-width: 420px;
  margin: 50px 0 0;
}
#main.kt #self-introduction .profile::before {
  background: url(../img/job-people/interview/kt/icon-department.png) no-repeat;
  background-size: contain;
}
#main.kt #schedule .modal.m01 {
  top: 51%;
  left: 12%;
}
#main.kt #schedule .modal.m02 {
  top: 53%;
  left: 40%;
}
#main.kt #schedule .modal.m03 {
  top: 18%;
  left: 54%;
}
#main.nt #top-area .img::before {
  background-image: url(../img/job-people/interview/nt/top_pc.jpg);
  background-position: right 30% center;
}
#main.nt #self-introduction .profile::before {
  background: url(../img/job-people/interview/nt/icon-department.png) no-repeat;
  background-size: contain;
}
#main.nt #schedule .modal.m01 {
  top: 14.5%;
  left: 12%;
}
#main.nt #schedule .modal.m02 {
  top: 14.5%;
  left: 26%;
}
#main.nt #schedule .modal.m03 {
  top: 52%;
  left: 40%;
}

@media screen and (max-width: 600px) {
  #main.ok #top-area .img::before {
    background-image: url(../img/job-people/interview/ok/top_sp.jpg);
    background-position: center top;
  }
  #main.he #top-area .img::before {
    background-image: url(../img/job-people/interview/he/top_sp.jpg);
    background-position: center top;
  }
  #main.km #top-area .img::before {
    background-image: url(../img/job-people/interview/km/top_sp.jpg);
    background-position: center top;
  }
  #main.im #top-area .img::before {
    background-image: url(../img/job-people/interview/im/top_sp.jpg);
    background-position: center top;
  }
  #main.ka #top-area .img::before {
    background-image: url(../img/job-people/interview/ka/top_sp.jpg);
    background-position: center top;
  }
  #main.kk #top-area .img::before {
    background-image: url(../img/job-people/interview/kk/top_sp.jpg);
    background-position: center top;
  }
  #main.fy #top-area .img::before {
    background-image: url(../img/job-people/interview/fy/top_sp.jpg);
    background-position: center top;
  }
  #main.hh #top-area .img::before {
    background-image: url(../img/job-people/interview/hh/top_sp.jpg);
    background-position: center top;
  }
  #main.kt #top-area .img::before {
    background-image: url(../img/job-people/interview/kt/top_sp.jpg);
    background-position: center top;
  }
  #main.kt .theme02 .cheese {
    margin: 30px 0 0;
  }
  #main.nt #top-area .img::before {
    background-image: url(../img/job-people/interview/nt/top_sp.jpg);
    background-position: center top;
  }
}

/*# sourceMappingURL=interview.css.map */
