@charset "UTF-8";
@import url("//fonts.googleapis.com/css2?family=Rajdhani:wght@700&display=swap");
.interview__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 640px;
  overflow: hidden;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .interview__header {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: auto;
  }
}
.interview__header::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) scale(3);
          transform: translate(-50%, -50%) scale(3);
  background-image: url(../img/career-logo.png);
  background-size: cover;
  width: 280px;
  height: 184px;
  z-index: 10;
  opacity: 0;
  -webkit-transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, -webkit-transform 1s ease;
  transition: opacity 1s ease, transform 1s ease;
  transition: opacity 1s ease, transform 1s ease, -webkit-transform 1s ease;
}
@media only screen and (max-width: 430px) {
  .interview__header::before {
    width: 160px;
    height: 105px;
  }
}
.interview__header.show-before::before {
  opacity: 1;
  -webkit-transform: translate(-50%, -50%) scale(1);
          transform: translate(-50%, -50%) scale(1);
  -webkit-animation: shakeLoop 3s ease-in-out 1s infinite;
          animation: shakeLoop 3s ease-in-out 1s infinite;
}
@-webkit-keyframes shakeLoop {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  5% {
    -webkit-transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
            transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
  }
  10% {
    -webkit-transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
            transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
  }
  15% {
    -webkit-transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
            transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
  }
  20% {
    -webkit-transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
            transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}
@keyframes shakeLoop {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
  5% {
    -webkit-transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
            transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
  }
  10% {
    -webkit-transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
            transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
  }
  15% {
    -webkit-transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
            transform: translate(calc(-50% + 2px), -50%) scale(1) rotate(1deg);
  }
  20% {
    -webkit-transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
            transform: translate(calc(-50% - 2px), -50%) scale(1) rotate(-1deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1) rotate(0deg);
            transform: translate(-50%, -50%) scale(1) rotate(0deg);
  }
}
.interview__header__woman {
  width: 50%;
  background-image: url(../img/head-woman.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 1s ease;
  transition: -webkit-filter 1s ease;
  transition: filter 1s ease;
  transition: filter 1s ease, -webkit-filter 1s ease;
}
@media only screen and (max-width: 430px) {
  .interview__header__woman {
    width: 100%;
    height: 300px;
  }
}
.interview__header__woman::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 5;
}
.interview__header__woman:has(.interview__header__woman__inner .interview__header__woman__innerMore a:hover) {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.interview__header__woman:has(.interview__header__woman__inner .interview__header__woman__innerMore a:hover)::after {
  opacity: 0;
}
.interview__header__woman::before {
  position: absolute;
  content: "";
  background-image: url(../img/career01_parts1.png);
  background-size: cover;
  width: 70px;
  height: 440px;
  left: 0;
  bottom: 0;
  z-index: 10;
}
@media only screen and (max-width: 430px) {
  .interview__header__woman::before {
    width: 48px;
    height: 300px;
  }
}
.interview__header__woman {
  /*& a {
  	display: flex;
  	text-decoration: none;
  	color: #000000;
  }*/
}
.interview__header__woman__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90%;
  padding: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__inner {
    padding: 0;
  }
}
.interview__header__woman__innerInfo {
  width: 190px;
  position: relative;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .interview__header__woman__innerInfo {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerInfo {
    font-size: 13px;
    line-height: 1.6;
  }
}
.interview__header__woman__innerInfo {
  letter-spacing: 0;
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerInfo {
    position: absolute;
    width: 130px;
    right: 20px;
    top: 20px;
  }
}
.interview__header__woman__innerInfo::before {
  position: absolute;
  content: "CAREER 01";
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__woman__innerInfo::before {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerInfo::before {
    font-size: 13px;
  }
}
.interview__header__woman__innerInfo::before {
  font-family: "Ropa Sans", sans-serif;
  font-weight: bold;
  left: -20px;
  top: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  z-index: 10;
  will-change: transform;
}
.interview__header__woman__innerInfo p:nth-of-type(1) {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__woman__innerInfo p:nth-of-type(1) {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerInfo p:nth-of-type(1) {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.interview__header__woman__innerInfo p:nth-of-type(1) {
  font-weight: 600;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px var(--color-black);
  position: relative;
}
.interview__header__woman__innerInfo p:nth-of-type(1)::after {
  position: absolute;
  right: -4px;
  top: 29px;
  content: "●";
  z-index: 10;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__woman__innerInfo p:nth-of-type(1)::after {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerInfo p:nth-of-type(1)::after {
    font-size: 12px;
  }
}
.interview__header__woman__innerInfo p:nth-of-type(2) {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .interview__header__woman__innerInfo p:nth-of-type(2) {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerInfo p:nth-of-type(2) {
    font-size: 13px;
    line-height: 1.6;
  }
}
.interview__header__woman__innerMore {
  width: 240px;
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerMore {
    position: absolute;
    width: 130px;
    right: 20px;
    top: 160px;
  }
}
.interview__header__woman__innerMore a {
  background-color: var(--color-white);
  border-top: solid 2px var(--color-black);
  border-bottom: solid 2px var(--color-black);
  color: var(--color-black);
  text-decoration: none;
  padding: 12px;
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__woman__innerMore a {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerMore a {
    font-size: 12px;
    letter-spacing: 0;
  }
}
.interview__header__woman__innerMore a {
  font-weight: 600;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerMore a {
    padding: 8px;
  }
}
.interview__header__woman__innerMore a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "▼";
  z-index: 10;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__woman__innerMore a::after {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__woman__innerMore a::after {
    font-size: 11px;
  }
}
.interview__header__woman__innerMore a:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.interview__header__man {
  width: 50%;
  background-image: url(../img/head-man.jpg);
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
  -webkit-transition: -webkit-filter 1s ease;
  transition: -webkit-filter 1s ease;
  transition: filter 1s ease;
  transition: filter 1s ease, -webkit-filter 1s ease;
}
@media only screen and (max-width: 430px) {
  .interview__header__man {
    width: 100%;
    height: 300px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.interview__header__man::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  -webkit-transition: opacity 0.4s ease;
  transition: opacity 0.4s ease;
  z-index: 5;
}
.interview__header__man:has(.interview__header__man__inner .interview__header__man__innerMore a:hover) {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.interview__header__man:has(.interview__header__man__inner .interview__header__man__innerMore a:hover)::after {
  opacity: 0;
}
.interview__header__man::before {
  position: absolute;
  content: "";
  background-image: url(../img/career02_parts1.png);
  background-size: cover;
  background-position: center center;
  width: 70px;
  height: 440px;
  right: 0;
  bottom: 0;
  z-index: 10;
}
@media only screen and (max-width: 430px) {
  .interview__header__man::before {
    width: 48px;
    height: 300px;
  }
}
.interview__header__man__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  height: 90%;
  padding: 48px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 10;
}
@media only screen and (max-width: 430px) {
  .interview__header__man__inner {
    padding: 0;
  }
}
.interview__header__man__innerInfo {
  margin-left: 30px;
  width: 160px;
  position: relative;
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerInfo {
    position: absolute;
    width: 130px;
    left: 20px;
    bottom: 70px;
  }
}
.interview__header__man__innerInfo::before {
  position: absolute;
  content: "CAREER 02";
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__man__innerInfo::before {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerInfo::before {
    font-size: 13px;
  }
}
.interview__header__man__innerInfo::before {
  font-family: "Ropa Sans", sans-serif;
  font-weight: bold;
  left: -20px;
  top: 0;
  -webkit-transform: translateY(-50%) rotate(90deg);
          transform: translateY(-50%) rotate(90deg);
  -webkit-transform-origin: left center;
          transform-origin: left center;
  z-index: 10;
  will-change: transform;
}
.interview__header__man__innerInfo p:nth-of-type(1) {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__man__innerInfo p:nth-of-type(1) {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerInfo p:nth-of-type(1) {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.interview__header__man__innerInfo p:nth-of-type(1) {
  font-weight: 600;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px var(--color-black);
  position: relative;
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerInfo p:nth-of-type(1) {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.interview__header__man__innerInfo p:nth-of-type(1)::after {
  position: absolute;
  right: -4px;
  top: 29px;
  content: "●";
  z-index: 10;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__man__innerInfo p:nth-of-type(1)::after {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerInfo p:nth-of-type(1)::after {
    font-size: 12px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerInfo p:nth-of-type(1)::after {
    top: 25px;
  }
}
.interview__header__man__innerInfo p:nth-of-type(2) {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .interview__header__man__innerInfo p:nth-of-type(2) {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerInfo p:nth-of-type(2) {
    font-size: 13px;
    line-height: 1.6;
  }
}
.interview__header__man__innerMore {
  width: 240px;
  position: relative;
  z-index: 20;
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerMore {
    position: absolute;
    width: 130px;
    left: 20px;
    bottom: 20px;
  }
}
.interview__header__man__innerMore a {
  background-color: var(--color-white);
  border-top: solid 2px var(--color-black);
  border-bottom: solid 2px var(--color-black);
  color: var(--color-black);
  text-decoration: none;
  padding: 12px;
  display: block;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__man__innerMore a {
    font-size: 15px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerMore a {
    font-size: 12px;
    letter-spacing: 0;
  }
}
.interview__header__man__innerMore a {
  font-weight: 600;
  position: relative;
  -webkit-transition: background-color 0.3s ease, color 0.3s ease;
  transition: background-color 0.3s ease, color 0.3s ease;
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerMore a {
    padding: 8px;
  }
}
.interview__header__man__innerMore a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "▼";
  z-index: 20;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__header__man__innerMore a::after {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__header__man__innerMore a::after {
    font-size: 11px;
  }
}
.interview__header__man__innerMore a:hover {
  background-color: var(--color-black);
  color: var(--color-white);
}
.interview__container {
  width: 960px;
  margin: 100px auto 0;
}
@media only screen and (max-width: 960px) {
  .interview__container {
    width: 90%;
  }
}
.interview__container__desc {
  margin-bottom: 40px;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__container__desc {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__desc {
    font-size: 12px;
  }
}
.interview__container__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
}
@media only screen and (max-width: 430px) {
  .interview__container__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    row-gap: 16px;
  }
}
.interview__container__info__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 50%;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media only screen and (max-width: 430px) {
  .interview__container__info__left {
    width: 100%;
  }
}
.interview__container__info__leftText {
  text-align: left;
  padding-right: 3%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.interview__container__info__leftText p:nth-of-type(1) {
  font-family: "Rajdhani", sans-serif;
  font-size: 36px;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__container__info__leftText p:nth-of-type(1) {
    font-size: 28px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__info__leftText p:nth-of-type(1) {
    font-size: 22px;
  }
}
.interview__container__info__leftText p:nth-of-type(1) {
  margin-bottom: 16px;
}
.interview__container__info__leftText p:nth-of-type(2) {
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__container__info__leftText p:nth-of-type(2) {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__info__leftText p:nth-of-type(2) {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.interview__container__info__leftText p:nth-of-type(2) {
  font-weight: 600;
  padding-bottom: 16px;
  margin-bottom: 16px;
  border-bottom: solid 1px var(--color-black);
  position: relative;
}
@media only screen and (max-width: 430px) {
  .interview__container__info__leftText p:nth-of-type(2) {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }
}
.interview__container__info__leftText p:nth-of-type(2)::after {
  position: absolute;
  right: -4px;
  top: 29px;
  content: "●";
  z-index: 10;
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__container__info__leftText p:nth-of-type(2)::after {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__info__leftText p:nth-of-type(2)::after {
    font-size: 12px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__info__leftText p:nth-of-type(2)::after {
    top: 25px;
  }
}
.interview__container__info__leftText p:nth-of-type(3) {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .interview__container__info__leftText p:nth-of-type(3) {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__info__leftText p:nth-of-type(3) {
    font-size: 14px;
  }
}
.interview__container__info__leftPhoto {
  width: 200px;
  text-align: center;
  border-left: 1px solid var(--color-black);
  border-right: 1px solid var(--color-black);
  padding: 0 2.5%;
}
@media only screen and (max-width: 430px) {
  .interview__container__info__leftPhoto {
    width: 160px;
  }
}
.interview__container__info__leftPhoto img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.interview__container__info__right {
  width: 50%;
  text-align: center;
  border-right: 1px solid var(--color-black);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media only screen and (max-width: 430px) {
  .interview__container__info__right {
    width: 100%;
    border: none;
  }
}
.interview__container__info__rightText {
  font-size: 28px;
  line-height: 1.8;
}
@media only screen and (max-width: 768px) {
  .interview__container__info__rightText {
    font-size: 24px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__info__rightText {
    font-size: 20px;
  }
}
.interview__container__info__rightText {
  font-weight: 600;
  letter-spacing: 0.2em;
}
.interview__container__block {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  border: 1px solid var(--color-black);
  background-color: var(--color-yellow-light);
  margin-bottom: 80px;
}
@media only screen and (max-width: 430px) {
  .interview__container__block {
    margin-bottom: 40px;
  }
}
.interview__container__block__head {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background-color: var(--color-yellow);
  position: relative;
  border-bottom: solid 1px var(--color-black);
}
.interview__container__block__head::after {
  position: absolute;
  content: "";
  background-image: url(../img/career-parts1.png);
  background-size: cover;
  width: 140px;
  height: 80px;
  right: 0;
  bottom: 0;
  z-index: 10;
}
@media only screen and (max-width: 430px) {
  .interview__container__block__head::after {
    width: 105px;
    height: 60px;
  }
}
.interview__container__block__headText {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.interview__container__block__headText p {
  padding: 20px;
}
.interview__container__block__headText p:nth-of-type(1) {
  border-right: 1px solid var(--color-black);
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__container__block__headText p:nth-of-type(1) {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__block__headText p:nth-of-type(1) {
    font-size: 18px;
    letter-spacing: 0;
  }
}
.interview__container__block__headText p:nth-of-type(1) {
  font-weight: 600;
}
.interview__container__block__headText p:nth-of-type(2) {
  font-size: 14px;
  letter-spacing: 0.05em;
  line-height: 1;
}
@media only screen and (max-width: 768px) {
  .interview__container__block__headText p:nth-of-type(2) {
    font-size: 13px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__block__headText p:nth-of-type(2) {
    font-size: 12px;
  }
}
.interview__container__block__headText p:nth-of-type(2) {
  font-weight: 600;
}
.interview__container__block__container {
  background-color: #fffdf4;
  padding: 20px;
}
.interview__container__block__container p {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
}
@media only screen and (max-width: 768px) {
  .interview__container__block__container p {
    font-size: 15px;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__block__container p {
    font-size: 14px;
  }
}
.interview__container__link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-bottom: 80px;
}
@media only screen and (max-width: 430px) {
  .interview__container__link {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    margin-bottom: 0px;
  }
}
.interview__container__link__left {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url(../img/link-woman.jpg);
  background-size: cover;
  background-position: center center;
  height: 340px;
  position: relative;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media only screen and (max-width: 430px) {
  .interview__container__link__left {
    width: 100%;
    min-height: 300px;
    background-position: left;
  }
}
.interview__container__link__left::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.interview__container__link__left:has(.interview__container__link__left__inner .interview__container__link__left__innerBtn a:hover) {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.interview__container__link__left:has(.interview__container__link__left__inner .interview__container__link__left__innerBtn a:hover)::after {
  opacity: 0;
}
.interview__container__link__left__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.interview__container__link__left__innerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  margin-top: 40px;
}
.interview__container__link__left__innerBtn a {
  width: 160px;
  border-top: solid 2px var(--color-black);
  border-bottom: solid 2px var(--color-black);
  color: var(--color-black);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .interview__container__link__left__innerBtn a {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__link__left__innerBtn a {
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }
}
.interview__container__link__left__innerBtn a {
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
  padding: 0 0 0 16px;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media only screen and (max-width: 430px) {
  .interview__container__link__left__innerBtn a {
    width: 120px;
  }
}
.interview__container__link__left__innerBtn a:hover {
  border-top-color: var(--color-white);
  border-bottom-color: var(--color-white);
  color: var(--color-white);
}
.interview__container__link__left__innerBtn a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  content: "▼";
  z-index: 10;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.interview__container__link__left__innerBtn p {
  position: relative;
  z-index: 10;
}
.interview__container__link__left__innerBtn:has(a:hover) p {
  -webkit-animation: rotateLoop 2s linear infinite;
          animation: rotateLoop 2s linear infinite;
}
@-webkit-keyframes rotateLoop {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes rotateLoop {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
.interview__container__link__right {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
  background: url(../img/link-man.jpg);
  background-size: cover;
  background-position: center center;
  height: 340px;
  position: relative;
  overflow: hidden;
  -webkit-filter: grayscale(100%);
          filter: grayscale(100%);
}
@media only screen and (max-width: 430px) {
  .interview__container__link__right {
    width: 100%;
    min-height: 300px;
    background-position: right;
  }
}
.interview__container__link__right::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
  opacity: 1;
  -webkit-transition: opacity 0.3s ease;
  transition: opacity 0.3s ease;
  z-index: 1;
}
.interview__container__link__right:has(.interview__container__link__right__inner .interview__container__link__right__innerBtn a:hover) {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.interview__container__link__right:has(.interview__container__link__right__inner .interview__container__link__right__innerBtn a:hover)::after {
  opacity: 0;
}
.interview__container__link__right__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.interview__container__link__right__innerBtn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  row-gap: 20px;
  margin-top: 40px;
}
.interview__container__link__right__innerBtn a {
  width: 160px;
  border-top: solid 2px var(--color-black);
  border-bottom: solid 2px var(--color-black);
  color: var(--color-black);
  text-decoration: none;
  font-size: 20px;
  letter-spacing: 0.1em;
  line-height: 1.6;
}
@media only screen and (max-width: 768px) {
  .interview__container__link__right__innerBtn a {
    font-size: 18px;
    letter-spacing: 0.1em;
  }
}
@media only screen and (max-width: 430px) {
  .interview__container__link__right__innerBtn a {
    font-size: 18px;
    letter-spacing: 0.02em;
    line-height: 1.6;
  }
}
.interview__container__link__right__innerBtn a {
  font-weight: 600;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 10;
  padding: 0 0 0 16px;
  -webkit-transition: color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, border-color 0.3s ease;
}
@media only screen and (max-width: 430px) {
  .interview__container__link__right__innerBtn a {
    width: 120px;
  }
}
.interview__container__link__right__innerBtn a:hover {
  border-top-color: var(--color-white);
  border-bottom-color: var(--color-white);
  color: var(--color-white);
}
.interview__container__link__right__innerBtn a::after {
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-90deg);
          transform: translateY(-50%) rotate(-90deg);
  content: "▼";
  z-index: 10;
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1;
}
.interview__container__link__right__innerBtn p {
  position: relative;
  z-index: 10;
}
.interview__container__link__right__innerBtn:has(a:hover) p {
  -webkit-animation: rotateLoop 2s linear infinite;
          animation: rotateLoop 2s linear infinite;
}
@keyframes rotateLoop {
  from {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}

.woman-style .interview__header__woman {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.woman-style .interview__header__woman::after {
  opacity: 0;
}
.woman-style .interview__header__woman__innerMore {
  display: none;
}
.woman-style .interview__container__link__left {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.woman-style .interview__container__link__left::after {
  opacity: 0;
}
.woman-style .interview__container__link__left__innerBtn a {
  opacity: 0;
  pointer-events: none;
  color: var(--color-white);
  border-bottom: solid 2px var(--color-white);
  border-top: solid 2px var(--color-white);
}

.man-style .interview__header__man {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.man-style .interview__header__man::after {
  opacity: 0;
}
.man-style .interview__header__man__innerMore {
  display: none;
}
.man-style .interview__container__link__right {
  -webkit-filter: grayscale(0%);
          filter: grayscale(0%);
}
.man-style .interview__container__link__right::after {
  opacity: 0;
}
.man-style .interview__container__link__right__innerBtn a {
  opacity: 0;
  pointer-events: none;
  color: var(--color-white);
  border-bottom: solid 2px var(--color-white);
  border-top: solid 2px var(--color-white);
}