/* 画像全体をクリック可能にするaタグ */
.interview-photo-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 2;
  /* テキスト装飾を消す */
  text-decoration: none;
  color: inherit;
}
/* 共通社員画像コンポーネント用スタイル */
.employee-image {
  width: 240px;
  height: 250px;
  position: relative;
  margin: 0 auto;
}
@media screen and (min-width: 560px) {
  .employee-image {
    width: 320px;
    height: 333px;
  }
}
.employee-image-gradient {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 932.4px 932.4px 74.7px 74.7px;
  background: linear-gradient(135deg, #ffef64 0%, #ffface 100%);
}
.interview-frame-yellow .employee-image-gradient {
  background: linear-gradient(135deg, #ffef64 0%, #ffface 100%);
}
.interview-frame-blue .employee-image-gradient {
  background: linear-gradient(137deg, #156fc6 20.83%, #c2e0ff 86.53%);
  border-radius: 999px;
}
.interview-frame-blue .employee-image-inner {
  border-radius: 999px;
}
.interview-frame-green .employee-image-gradient {
  background: linear-gradient(137deg, #2dcbbc 15.8%, #a4eeee 92.11%);
}

.employee-image-inner {
  width: calc(100% - 20px);
  height: calc(100% - 24px);
  position: absolute;
  top: 12px;
  left: 10px;
  border-radius: 932.4px 932.4px 74.7px 74.7px;
  background-color: #ffffff;
}
.employee-image-container {
  width: calc(100% - 13px);
  height: calc(100% - 12px);
  position: absolute;
  top: 6px;
  left: 7px;
  border-radius: 932.4px 932.4px 74.7px 74.7px;
  background-color: #fffdea;
  overflow: hidden;
}
.employee-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 社員画像のフレームスタイル 色別 */
/* 青丸フレーム */
.interview-frame-blue .employee-image-gradient {
  border-radius: 999px;
}
.interview-frame-blue .employee-image-inner {
  border-radius: 999px;
}
.interview-frame-blue .employee-image-container {
  border-radius: 999px;
}

/* 緑四角フレーム */
.interview-frame-green .employee-image-gradient {
  border-radius: 16px;
}
.interview-frame-green .employee-image-inner {
  border-radius: 8px;
}
.interview-frame-green .employee-image-container {
  border-radius: 8px;
}
