@charset "UTF-8";
/*====================================================================

recruit 採用ページ用css

====================================================================*/
/*
interview
---------------------------------------------------------*/
.p-interview {
  padding: 100px 0;
}
.p-interview__item {
  display: flex;
  gap: 50px;
  position: relative;
}
.p-interview__item + .p-interview__item {
  margin-top: 100px;
}
.p-interview__item .textbox {
  width: 40%;
  padding-top: 100px;
}
.p-interview__item .textbox .title {
  color: #1c3f87;
  font-size: 2.5rem;
  margin-bottom: 30px;
}
.p-interview__item .textbox .button {
  margin-top: 30px;
}
.p-interview__item .imagebox {
  width: 60%;
  position: relative;
  padding-bottom: 50px;
}
.p-interview__item .imagebox img {
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .p-interview__item {
    flex-wrap: wrap;
    flex-direction: column-reverse;
    gap: 0;
  }
  .p-interview__item + .p-interview__item {
    margin-top: 80px;
  }
  .p-interview__item .textbox {
    width: 100%;
    padding-top: 0;
  }
  .p-interview__item .textbox .title {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  .p-interview__item .textbox .button {
    margin-top: 20px;
  }
  .p-interview__item .imagebox {
    width: 100%;
    position: relative;
    padding-bottom: 0;
    margin-bottom: 10px;
  }
}

/*
entryrow
---------------------------------------------------------*/
.p-entryrow {
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
  justify-content: space-between;
}
.p-entryrow__item {
  width: calc((100% - 60px) / 2);
}
.p-entryrow__item a {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  padding: 30px;
  background-color: #fff;
  border-radius: 10px;
  text-decoration: none;
  position: relative;
  display: flex;
  align-items: center;
}
.p-entryrow__item a .icon {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #ecf2ff;
  margin-right: 20px;
}
.p-entryrow__item a .icon img {
  width: 100%;
  display: block;
  line-height: 1;
}
.p-entryrow__item a .title {
  color: #1c3f87;
  font-size: 1.5rem;
  flex: 1;
  transition: 0.3s;
}
.p-entryrow__item a:hover {
  opacity: 1;
  background-color: #1c3f87;
}
.p-entryrow__item a:hover img {
  opacity: 1;
}
.p-entryrow__item a:hover .title {
  color: #fff;
}
@media screen and (max-width: 960px) {
  .p-entryrow {
    gap: 20px;
  }
  .p-entryrow__item {
    width: 100%;
  }
  .p-entryrow__item a {
    padding: 20px;
  }
  .p-entryrow__item a .icon {
    width: 50px;
    height: 50px;
    margin-right: 10px;
  }
  .p-entryrow__item a .title {
    font-size: 1.25rem;
  }
}

/*
entrybox
---------------------------------------------------------*/
.p-entrybox {
  margin-top: 50px;
  border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  background-color: #fff;
  padding: 50px;
}
@media screen and (max-width: 960px) {
  .p-entrybox {
    margin-top: 20px;
    padding: 20px;
  }
}

/*
text
--------------------------------------------------- */
.p-text {
  color: #ecedf1;
  overflow: hidden;
  display: flex;
  width: 100%;
  position: relative;
  margin-top: -17.71vw;
  font-family: "Space Grotesk", sans-serif;
  font-weight: 300;
}
.p-text__item {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 12.5rem;
  line-height: 1.5;
}
.p-text:not(.no-tick) .p-text__item:nth-child(odd) {
  animation: MoveLeft var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}
.p-text:not(.no-tick) .p-text__item:nth-child(even) {
  animation: MoveLeft2 var(--tick-duration, 24s) infinite linear;
}
@media screen and (max-width: 960px) {
  .p-text {
    margin-top: 0;
  }
  .p-text__item {
    font-size: 3.125rem;
  }
}

.p-text--lr:not(.no-tick) .p-text__item:nth-child(odd) {
  animation: MoveRight var(--tick-duration, 24s) var(--tick-delay, -12s) infinite linear;
}

.p-text--lr:not(.no-tick) .p-text__item:nth-child(even) {
  animation: MoveRight2 var(--tick-duration, 24s) infinite linear;
}

@keyframes MoveLeft {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes MoveLeft2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
@keyframes MoveRight {
  from {
    transform: translateX(-100%);
  }
  to {
    transform: translateX(100%);
  }
}
@keyframes MoveRight2 {
  from {
    transform: translateX(-200%);
  }
  to {
    transform: translateX(0);
  }
}
/*
recruitmessage
--------------------------------------------------- */
.p-recruitmessage {
  display: flex;
  gap: 100px;
}
.p-recruitmessage__text {
  width: 60%;
  padding-left: 9.9vw;
}
.p-recruitmessage__text .title {
  font-size: 3.25rem;
  color: #1c3f87;
}
.p-recruitmessage__text p {
  line-height: 2.2;
  margin: 30px 0;
  font-size: 1.25rem;
}
.p-recruitmessage__image {
  width: 40%;
  position: relative;
  margin-top: -80px;
  padding-bottom: 100px;
}
.p-recruitmessage__image .image01 {
  width: 80%;
  margin-left: auto;
}
.p-recruitmessage__image .image01 img {
  border-radius: 10px 0 0 10px;
}
.p-recruitmessage__image .image02 {
  position: absolute;
  bottom: 0;
  left: 0;
  max-width: 40%;
}
.p-recruitmessage__image .image02 img {
  border-radius: 10px;
}
@media screen and (max-width: 1240px) {
  .p-recruitmessage__text {
    padding-left: 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-recruitmessage {
    flex-wrap: wrap;
    gap: 30px;
    padding-bottom: 0;
  }
  .p-recruitmessage__text {
    width: 100%;
    padding: 0 20px;
  }
  .p-recruitmessage__text .title {
    font-size: 2rem;
  }
  .p-recruitmessage__text p {
    font-size: 1rem;
  }
  .p-recruitmessage__image {
    width: 100%;
    margin: 0;
    padding-bottom: 0;
  }
  .p-recruitmessage__image .image02 {
    left: 20px;
  }
}

/*
interviewtitle
---------------------------------------------------------*/
.p-interviewtitle {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 100px;
}
.p-interviewtitle__text {
  position: absolute;
  padding: 50px 50px 50px 9.9vw;
  width: 40vw;
  color: #fff;
}
.p-interviewtitle__text::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: #1c3f87;
  border-radius: 0 10px 10px 0;
  position: absolute;
  left: 0;
  top: 0;
}
.p-interviewtitle__text > * {
  position: relative;
  z-index: 3;
}
.p-interviewtitle__text .title {
  font-size: 2.5rem;
}
.p-interviewtitle__text .detail {
  font-size: 1.25rem;
  line-height: 2;
}
.p-interviewtitle__image {
  margin-left: auto;
  max-width: 70.31vw;
}
.p-interviewtitle__image img {
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 1580px) {
  .p-interviewtitle__text .title {
    font-size: 2.53vw;
  }
  .p-interviewtitle__text .detail {
    font-size: 1rem;
  }
}
@media screen and (max-width: 1240px) {
  .p-interviewtitle__text {
    padding: 50px 20px;
  }
}
@media screen and (max-width: 960px) {
  .p-interviewtitle {
    display: block;
    margin: 0 0 50px;
  }
  .p-interviewtitle__text {
    position: relative;
    padding: 30px 20px 20px;
    width: 100%;
  }
  .p-interviewtitle__text::before {
    border-radius: 0;
  }
  .p-interviewtitle__text .title {
    font-size: 1.5rem;
  }
  .p-interviewtitle__text .detail {
    font-size: 0.875rem;
  }
  .p-interviewtitle__image {
    max-width: 100%;
    overflow: hidden;
  }
  .p-interviewtitle__image img {
    border-radius: 0;
    max-width: 120%;
  }
}

/*
intervierow
---------------------------------------------------------*/
.p-intervierow {
  display: flex;
  gap: 80px;
  margin-bottom: 100px;
}
.p-intervierow--reverse {
  flex-direction: row-reverse;
}
.p-intervierow__text {
  width: 100%;
}
.p-intervierow__image {
  width: 100%;
}
.p-intervierow__image img {
  border-radius: 10px;
}
@media screen and (max-width: 960px) {
  .p-intervierow {
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 50px;
  }
}

/*
inmessage
---------------------------------------------------------*/
.p-inmessage {
  background: no-repeat url(/img/recruit/bg_inmessage.jpg) center center/cover;
  padding: 50px;
  margin-top: 100px;
}
.p-inmessage__inner {
  background-color: #fff;
  border-radius: 10px;
  padding: 50px;
  position: relative;
}
.p-inmessage__inner .c-en {
  font-size: 1.25rem;
  color: #1c3f87;
  text-align: center;
  margin: 0;
}
.p-inmessage__inner .title {
  font-size: 1.25rem;
  text-align: center;
  margin: 0 0 20px;
}
.p-inmessage__inner .subtitle {
  font-size: 2rem;
  text-align: center;
  color: #1c3f87;
}
.p-inmessage__inner .detail {
  max-width: 700px;
  margin: 20px auto;
}
@media screen and (max-width: 960px) {
  .p-inmessage {
    margin-top: 50px;
    padding: 50px 0;
  }
  .p-inmessage__inner {
    padding: 30px 20px;
  }
  .p-inmessage__inner .c-en {
    font-size: 1rem;
  }
  .p-inmessage__inner .title {
    font-size: 1rem;
  }
  .p-inmessage__inner .subtitle {
    font-size: 1.5rem;
  }
  .p-inmessage__inner .detail {
    max-width: 700px;
    margin: 20px auto;
  }
}

/*
interviewmenu
---------------------------------------------------------*/
.p-interviewmenu {
  padding: 20px 0 100px;
}
.p-interviewmenu__list {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: flex;
  gap: 60px;
}
.p-interviewmenu__list__item {
  width: 100%;
}
.p-interviewmenu__list__item a {
  display: block;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.15);
  border-radius: 10px;
  text-decoration: none;
  background-color: #fff;
  overflow: hidden;
}
.p-interviewmenu__list__item a .image {
  display: block;
  line-height: 1;
  position: relative;
  overflow: hidden;
  height: 280px;
}
.p-interviewmenu__list__item a .image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  transition: 0.3s;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.p-interviewmenu__list__item a .text {
  padding: 30px;
}
.p-interviewmenu__list__item a .text .title {
  color: #1c3f87;
  font-size: 1.5rem;
}
.p-interviewmenu__list__item a .text p {
  font-size: 0.875rem;
  color: #222;
}
.p-interviewmenu__list__item a:hover .image img {
  transform: translateX(-50%) translateY(-50%) scale(1.05);
}
@media screen and (max-width: 1240px) {
  .p-interviewmenu__list__item a .image {
    height: 23vw;
  }
}
@media screen and (max-width: 960px) {
  .p-interviewmenu__list {
    flex-wrap: wrap;
  }
  .p-interviewmenu__list__item a .image {
    height: 44.87vw;
  }
  .p-interviewmenu__list__item a .text {
    padding: 20px;
  }
  .p-interviewmenu__list__item a .text .title {
    font-size: 1.25rem;
  }
}

/*
movie
---------------------------------------------------------*/
.p-movie {
  padding-bottom: 200px;
}
.p-movie__video {
  max-width: 1200px;
  margin: 0 auto;
}
.p-movie__video video {
  width: 100%;
  height: auto;
}

/*
itemlist
--------------------------------------------------- */
.p-itemlist {
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
}
.p-itemlist__item {
  padding: 30px 0 0 20px;
  border-top: 1px solid #b1b7c4;
  width: calc((100% - 50px) / 2);
  position: relative;
}
.p-itemlist__item::before {
  content: "";
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #1c3f87;
  position: absolute;
  left: 0;
  top: 38px;
}
.p-itemlist__item .title {
  color: #1c3f87;
  font-size: 1.25rem;
}
@media screen and (max-width: 960px) {
  .p-itemlist {
    gap: 30px;
  }
  .p-itemlist__item {
    width: 100%;
  }
}

/*
piclist
--------------------------------------------------- */
.p-piclist {
  display: flex;
  gap: 10px;
  margin: 50px 0 0;
  text-align: center;
}
.p-piclist__item {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .p-piclist {
    flex-wrap: wrap;
  }
}