@charset "UTF-8";
/*
採用情報ページ
/recruit/
Version: 1.0.0
Update: 2024-09-03
*/
/* トップイメージ */
.topImage {
  position: relative;
  background-color: #0068b6;
}

.topImage .images {
  overflow: hidden;
}

.topImage .images > li {
  float: left;
  width: 25%;
}

@media screen and (max-width: 767px) {
  .topImage .images > li {
    float: none;
    width: 100%;
  }
}

.topImage .images > li img {
  width: 100%;
}

.topImage .copy1a,
.topImage .copy1b,
.topImage .copy2 {
  position: absolute;
  filter: drop-shadow(0px 0px 20px rgba(0, 0, 0, 0.5));
}

.topImage .copy1a img,
.topImage .copy1b img,
.topImage .copy2 img {
  width: 100%;
}

.topImage .copy1a {
  top: 59%;
  left: 0;
  width: 36.9%;
}

@media screen and (max-width: 767px) {
  .topImage .copy1a {
    top: 21%;
    width: 100%;
  }
  .topImage .copy1a img {
    width: 59.5%;
  }
}

.topImage .copy1b {
  top: 59%;
  right: 0;
  width: 59.5%;
}

@media screen and (max-width: 767px) {
  .topImage .copy1b {
    top: 46.5%;
    width: 100%;
  }
}

.topImage .copy2 {
  top: 78%;
  left: 0;
  right: 0;
}

@media screen and (max-width: 767px) {
  .topImage .copy2 {
    top: 73.5%;
  }
}

.topImage .copy2 img {
  width: 38.1%;
}

@media screen and (max-width: 767px) {
  .topImage .copy2 img {
    width: 62%;
  }
}

.topImage.show .images .showobj {
  transform: translateY(-100%);
}

@media screen and (max-width: 767px) {
  .topImage.show .images .showobj {
    transform: translateX(-100%) translateY(0);
  }
}

.topImage.show.is-show .images .showobj {
  transform: translateY(0);
}

@media screen and (max-width: 767px) {
  .topImage.show.is-show .images .showobj {
    transform: translateX(0) translateY(0);
  }
}

.topImage.show .copy.showobj {
  transform: translateX(-20px) translateY(0);
}

.topImage.show.is-show .copy.showobj {
  transform: translateX(0) translateY(0);
}

/* コンテンツ */
@media screen and (max-width: 767px) {
  .content section {
    padding: 40px 15px;
  }
}

.content section .heading .en {
  font-size: 8rem;
}

@media screen and (max-width: 767px) {
  .content section .heading .en {
    font-size: 3.2rem;
  }
}

.content section .heading .jp {
  color: #0068b6;
  font-size: 2.4rem;
}

@media screen and (max-width: 767px) {
  .content section .heading .jp {
    font-size: 1.2rem;
  }
}

.content::before, .content::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
}

.content::before {
  top: 0;
  left: 50%;
  right: auto;
  bottom: 0;
  width: 980px;
  height: auto;
  margin: -490px;
  z-index: -2;
  background-image: none;
  background-color: #fff;
}

@media screen and (max-width: 767px) {
  .content::before {
    left: 20px;
    right: 20px;
    width: auto;
    margin: 0;
  }
}

.content::after {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -3;
  background-color: #e5f0f8;
}

/* 導入 */
#introduction {
  font-size: 2.4rem;
  text-align: center;
  line-height: 2;
}

@media screen and (max-width: 767px) {
  #introduction {
    font-size: 1.2rem;
  }
}

/* 社長メッセージ */
#topmessage {
  padding: 140px 0 140px;
}

@media screen and (max-width: 767px) {
  #topmessage {
    padding: 20px 15px 50px;
  }
}

#topmessage .container {
  position: relative;
}

#topmessage .heading {
  margin-left: -55px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #topmessage .heading {
    margin-left: 0;
    text-align: center;
  }
}

#topmessage .subheading {
  padding-left: 70px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  #topmessage .subheading {
    padding-left: 0;
    padding-bottom: 0;
    text-align: center;
  }
}

#topmessage .photo {
  position: absolute;
  top: -150px;
  right: -60px;
}

@media screen and (max-width: 767px) {
  #topmessage .photo {
    position: static;
    margin-bottom: 30px;
  }
}

#topmessage .photo::before, #topmessage .photo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 540px;
  height: 400px;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  #topmessage .photo::before, #topmessage .photo::after {
    width: 100%;
    height: auto;
    aspect-ratio: 135 / 100;
    border-radius: 16px;
  }
}

#topmessage .photo::before {
  content: "";
  z-index: -1;
  background-color: #ffff00;
}

#topmessage .photo::after {
  content: "";
  z-index: -2;
  background-color: #0068b6;
  transform: rotate(0deg);
  transform-origin: left bottom;
  transition-duration: 0.3s;
  transition-delay: 0.4s;
}

@media screen and (max-width: 767px) {
  #topmessage .photo::after {
    transition-delay: 0.7s;
  }
}

#topmessage .messages {
  display: none;
  padding: 0 90px;
}

@media screen and (max-width: 767px) {
  #topmessage .messages {
    padding: 0;
  }
}

#topmessage .messages .title {
  color: #0068b6;
  font-family: "Noto Sans Bold", -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI", "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic", Verdana, Meiryo, sans-serif;
  font-size: 3.2rem;
}

@media screen and (max-width: 767px) {
  #topmessage .messages .title {
    font-size: 2rem;
  }
}

#topmessage .messages .comment {
  padding-top: 30px;
}

@media screen and (max-width: 767px) {
  #topmessage .messages .comment {
    padding-top: 15px;
    font-size: 1.2rem;
  }
}

#topmessage .messages .sign {
  padding-top: 40px;
  font-size: 2.4rem;
  text-align: right;
}

@media screen and (max-width: 767px) {
  #topmessage .messages .sign {
    padding-top: 20px;
    font-size: 1.8rem;
    text-align: center;
  }
}

#topmessage .messages .sign span {
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  #topmessage .messages .sign span {
    font-size: 1.2rem;
  }
  #topmessage .messages .sign span.company {
    display: block;
  }
}

#topmessage .pageLink {
  padding-top: 30px;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #topmessage .pageLink {
    padding-top: 15px;
  }
}

#topmessage.is-show .photo::after {
  transform: rotate(5deg);
}

/* エフピコアルライトで働く */
#workstyle .container {
  position: relative;
}

#workstyle .heading {
  margin-right: -55px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  #workstyle .heading {
    margin-right: 0;
    text-align: center;
  }
}

#workstyle .subheading {
  padding-left: 520px;
  padding-right: 50px;
  padding-bottom: 150px;
}

@media screen and (max-width: 767px) {
  #workstyle .subheading {
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 20px;
  }
}

#workstyle .image {
  position: absolute;
  top: -60px;
  left: -60px;
  overflow: hidden;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  #workstyle .image {
    position: static;
    margin-bottom: 30px;
    border-radius: 15px;
  }
}

#workstyle .pageLink {
  text-align: center;
}

/* 社員インタビュー */
#interview {
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  #interview {
    padding-bottom: 20px;
  }
}

#interview .heading {
  margin-left: -55px;
  text-align: left;
}

@media screen and (max-width: 767px) {
  #interview .heading {
    margin-left: 0;
    padding-bottom: 0;
    text-align: center;
  }
}

#interview .interviewList {
  width: auto;
  margin: -120px -100px 0;
  padding-top: 70px;
  padding-bottom: 50px;
}

@media screen and (max-width: 767px) {
  #interview .interviewList {
    margin: 0;
    padding-top: 0;
    padding-bottom: 15px;
    overflow: visible;
  }
}

#interview .interviewList > li {
  width: 50%;
  padding: 50px 30px 0;
}

@media screen and (max-width: 767px) {
  #interview .interviewList > li {
    float: none;
    width: 100%;
    padding: 20px 0;
  }
}

#interview .interviewList > li:nth-child(2n + 1) {
  clear: left;
}

#interview .interviewList > li:nth-child(2n) {
  margin-top: -120px;
}

@media screen and (max-width: 767px) {
  #interview .interviewList > li:nth-child(2n) {
    margin-top: 0;
  }
}

#interview .interviewList > li a {
  display: block;
  position: relative;
}

#interview .interviewList > li a .photo {
  border-width: 0;
}

#interview .interviewList > li a .photo img {
  transition: 0.3s;
  transform-origin: bottom;
}

#interview .interviewList > li a .photo::before, #interview .interviewList > li a .photo::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 520px;
  height: 400px;
  border-radius: 30px;
}

@media screen and (max-width: 767px) {
  #interview .interviewList > li a .photo::before, #interview .interviewList > li a .photo::after {
    width: 100%;
    height: auto;
    aspect-ratio: 135 / 100;
    border-radius: 16px;
  }
}

#interview .interviewList > li a .photo::before {
  content: "";
  z-index: -1;
  background-color: #ffff00;
}

#interview .interviewList > li a .photo::after {
  content: "";
  z-index: -2;
  background-color: #0068b6;
  transform: rotate(0deg);
  transform-origin: left bottom;
  transition-duration: 0.3s;
}

#interview .interviewList > li a .job {
  position: absolute;
  top: 40px;
  left: 50px;
}

@media screen and (max-width: 767px) {
  #interview .interviewList > li a .job {
    top: 15px;
    left: 30px;
    width: 55px;
  }
}

#interview .interviewList > li a:hover .photo img {
  scale: 1.05;
}

#interview .interviewList > li:nth-child(2n + 1) a {
  display: block;
  position: relative;
}

#interview .interviewList > li:nth-child(2n + 1) a .photo::after {
  transform-origin: right bottom;
}

#interview .interviewList > li:nth-child(1) a .photo::after {
  transition-delay: 0.4s;
}

#interview .interviewList > li:nth-child(2) a .photo::after {
  transition-delay: 0.7s;
}

#interview .interviewList > li:nth-child(3) a .photo::after {
  transition-delay: 1s;
}

#interview .interviewList > li:nth-child(4) a .photo::after {
  transition-delay: 1.3s;
}

#interview .interviewList > li:nth-child(5) a .photo::after {
  transition-delay: 1.6s;
}

#interview .interviewList > li:nth-child(6) a .photo::after {
  transition-delay: 1.9s;
}

#interview .interviewList > li:nth-child(7) a .photo::after {
  transition-delay: 2.2s;
}

#interview .interviewList > li:nth-child(8) a .photo::after {
  transition-delay: 2.5s;
}

#interview .interviewList > li:nth-child(9) a .photo::after {
  transition-delay: 2.8s;
}

#interview .interviewList > li:nth-child(10) a .photo::after {
  transition-delay: 3.1s;
}

#interview.is-show .interviewList > li .photo::after {
  transform: rotate(5deg) !important;
}

#interview.is-show .interviewList > li:nth-child(2n + 1) .photo::after {
  transform: rotate(-5deg) !important;
}

/* 会社紹介動画 */
#profileMovie {
  padding-bottom: 60px;
}

@media screen and (max-width: 767px) {
  #profileMovie {
    padding-bottom: 30px;
  }
}

#profileMovie .movie {
  margin: 30px -10px 0;
}

@media screen and (max-width: 767px) {
  #profileMovie .movie {
    margin: 30px 0 0;
  }
}

#profileMovie .movie .youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
}

#profileMovie .movie .youtube iframe {
  width: 100%;
  height: 100%;
}

/* 他コンテンツリンク */
#links .container {
  position: relative;
  min-height: 580px;
}

@media screen and (max-width: 767px) {
  #links .container {
    min-height: 1px;
  }
}

#links .recruitTexts,
#links .contactTexts {
  position: absolute;
  top: 0;
  width: 520px;
  padding: 70px 70px;
  color: #fff;
  text-align: center;
}

@media screen and (max-width: 767px) {
  #links .recruitTexts,
  #links .contactTexts {
    position: static;
    width: 100%;
    padding: 30px 15px;
  }
}

#links .recruitTexts .heading .en,
#links .contactTexts .heading .en {
  color: #fff;
}

#links .recruitTexts .heading .jp,
#links .contactTexts .heading .jp {
  color: #fff;
}

#links .recruitTexts .comment,
#links .contactTexts .comment {
  min-height: 100px;
}

@media screen and (max-width: 767px) {
  #links .recruitTexts .comment,
  #links .contactTexts .comment {
    min-height: 1px;
    padding-bottom: 30px;
    font-size: 1.2rem;
    text-align: left;
  }
}

@media screen and (max-width: 767px) {
  #links .recruitTexts .pageLink,
  #links .contactTexts .pageLink {
    padding: 0 15px;
  }
}

#links .recruitTexts .pageLink a,
#links .contactTexts .pageLink a {
  color: #0068b6;
  background-image: none;
  background-color: #fff;
}

#links .recruitTexts .pageLink a::after,
#links .contactTexts .pageLink a::after {
  border-color: #0068b6;
}

#links .recruitTexts::before,
#links .contactTexts::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  background-image: linear-gradient(90deg, #408ec8, #0068b6);
  border-radius: 30px;
}

#links .recruitTexts::after,
#links .contactTexts::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 10px;
  right: -10px;
  bottom: -10px;
  z-index: -2;
  background-color: #ffff00;
  border-radius: 30px;
  transition-duration: 0.3s;
}

@media screen and (max-width: 767px) {
  #links .recruitTexts::after,
  #links .contactTexts::after {
    top: 5px;
    left: 5px;
    right: -5px;
    bottom: -5px;
  }
}

#links .recruitTexts {
  right: -60px;
}

#links .contactTexts {
  top: 120px;
  left: -60px;
}

@media screen and (max-width: 767px) {
  #links .contactTexts {
    margin-top: 30px;
  }
}
