@charset "UTF-8";
@keyframes transformLeftRight {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes transformRightLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(100%);
    opacity: 0;
  }
}
#hero {
  position: relative;
}
#hero #copy {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 100;
  color: #ffffff;
  font-size: clamp(1rem, 6vw, 10rem);
  line-height: 1.3;
  text-align: center;
  font-weight: 500;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #hero #copy {
    font-size: clamp(3.4rem, 8vw, 10rem);
  }
}
#hero .copyen {
  position: absolute;
  bottom: 3rem;
  left: 5rem;
  color: #ffffff;
  z-index: 100;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  #hero .copyen {
    font-size: 10px;
    left: 5vw;
    bottom: 5vw;
  }
}

#visual {
  position: relative;
  overflow: hidden;
  line-height: 1;
  /* レイアウトシフト防止とスムーズな調整 */
  height: calc(100vh - var(--header-height, 90px));
  min-height: calc(100vh - 120px);
  /* 最小保証 */
  transition: height 0.2s ease-out;
  /* スムーズな調整 */
  contain: layout;
  /* レイアウト影響を制限 */
  will-change: height;
  /* 最適化ヒント */
}
@media screen and (max-width: 767px) {
  #visual {
    min-height: 100vh-var(--header-height);
    transition: none;
    /* スマホでは不要 */
  }
  #visual img {
    height: 50vh;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
#visual .visual-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  opacity: 0;
  scale: 1.1;
}
#visual .visual-slide.active {
  opacity: 1;
  position: relative;
}

.toptitle {
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  .toptitle {
    margin: 0 0 5rem 0;
  }
}
.toptitle.flexs {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .toptitle.flexs {
    display: block;
  }
}
.toptitle.flexs .lead {
  width: 40vw;
}
@media screen and (max-width: 767px) {
  .toptitle.flexs .lead {
    width: 100%;
  }
}
.toptitle.bor {
  border-top: 1px solid #E60000;
}
.toptitle p.en {
  display: inline-block;
  font-size: 7rem;
  background: transparent linear-gradient(-200deg, #820000 0%, #E60000 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  /* フォールバック用 */
}
@media screen and (max-width: 767px) {
  .toptitle p.en {
    font-size: 4rem;
  }
}
.toptitle p.jp {
  color: #E60000;
}
.toptitle .lead {
  width: 60vw;
  margin: 5rem 0 0 0;
}
@media screen and (max-width: 767px) {
  .toptitle .lead {
    width: 100%;
    margin: 2rem 0 0 0;
  }
}

.topcont {
  padding: 8vw;
}

.tags {
  margin: 2rem 0 0 0;
}
.tags ul {
  display: flex;
  flex-wrap: wrap;
}
.tags ul li {
  display: inline-block;
  border: 1px solid #E60000;
  color: #E60000;
  margin: 0 0.5rem 0.5rem 0;
  font-size: 14px;
  padding: 0 1em;
}
@media screen and (max-width: 1060px) {
  .tags ul li {
    font-size: 11px;
  }
}
@media screen and (max-width: 767px) {
  .tags ul li {
    font-size: 10px;
  }
}

.about_cont {
  display: grid;
  grid-template-columns: 60% 40%;
  grid-template-rows: auto auto;
  gap: 5rem;
}
.about_cont a .image {
  margin: 0 0 1rem 0;
}
.about_cont a h3 {
  font-size: var(--fluid-1);
  color: #E60000;
  margin: 0 0 1rem 0;
}
.about_cont .left {
  grid-column: 1;
  grid-row: 1/span 2;
  /* 2行にまたがる */
}
.about_cont .right01 {
  grid-column: 2;
  grid-row: 1;
}
.about_cont .right02 {
  grid-column: 2;
  grid-row: 2;
}
@media screen and (max-width: 767px) {
  .about_cont {
    /* スマホでは縦並び */
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
  }
  .about_cont .left {
    grid-column: 1;
    grid-row: 1;
  }
  .about_cont .right01 {
    grid-column: 1;
    grid-row: 2;
  }
  .about_cont .right02 {
    grid-column: 1;
    grid-row: 3;
  }
}

#people {
  background: #F4F3F2;
}

.people_cont {
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  .people_cont {
    margin: 0 0 3rem 0;
  }
}
.people_cont .people_flex {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 1fr;
  gap: 2rem;
}
.people_cont .people_flex .box {
  display: block;
  transition: all 0.3s ease;
}
.people_cont .people_flex .box .image {
  margin: 0 0 1rem 0;
  overflow: hidden;
}
.people_cont .people_flex .box .image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}
.people_cont .people_flex .box .txt p.job {
  color: #E60000;
  margin: 0 0 0.5rem 0;
  font-size: var(--fluid-s);
  color: #E60000;
}
@media screen and (max-width: 767px) {
  .people_cont .people_flex .box .txt p.job {
    font-size: 12px;
    font-feature-settings: "palt";
  }
}
.people_cont .people_flex .box .txt p {
  line-height: 1.6;
  font-size: var(--fluid-s);
}
@media screen and (max-width: 767px) {
  .people_cont .people_flex .box .txt p {
    font-size: 12px;
    font-feature-settings: "palt";
  }
}
.people_cont .people_flex .box:hover .image img {
  transform: scale(1.05);
}
@media screen and (max-width: 767px) {
  .people_cont .people_flex {
    /* スマホでは2列2行 */
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 1.5rem;
  }
}

.career_flex {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .career_flex {
    display: block;
  }
}
.career_flex.comingsoon {
  pointer-events: none;
}
.career_flex.comingsoon .image {
  position: relative;
}
.career_flex.comingsoon .image::before {
  content: "COMING SOON";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: #fff;
  padding: 0.5rem 1rem;
  font-size: 1.5rem;
  border-radius: 5px;
  z-index: 10;
}
.career_flex.comingsoon .image::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 5;
}
.career_flex .image {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .career_flex .image {
    width: 100%;
  }
}
.career_flex .toptitle {
  width: 45%;
  padding: 0 5rem 0 0;
}
@media screen and (max-width: 767px) {
  .career_flex .toptitle {
    width: 100%;
    padding: 0;
    margin-bottom: 2rem;
  }
}
.career_flex .toptitle .lead {
  width: 100%;
}

.crosstalk_cont a {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .crosstalk_cont a {
    display: block;
  }
}
.crosstalk_cont .title {
  color: #E60000;
  width: 25%;
}
@media screen and (max-width: 767px) {
  .crosstalk_cont .title {
    width: 100%;
    margin: 0 0 2rem 0;
  }
}
.crosstalk_cont .title p.en {
  font-size: var(--fluid-3);
}
@media screen and (max-width: 767px) {
  .crosstalk_cont .title p.jp {
    font-size: 1em;
  }
}
.crosstalk_cont .image {
  width: 72%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .crosstalk_cont .image {
    width: 100%;
  }
}

.toptitle.flexs {
  display: flex;
  justify-content: space-between;
}
.toptitle.flexs .lead {
  width: 30vw;
  padding: 0.5em 0 0 0;
}
@media screen and (max-width: 767px) {
  .toptitle.flexs {
    flex-direction: column;
    gap: 1.5rem;
  }
  .toptitle.flexs .lead {
    width: 100%;
  }
}

#jobs {
  height: 80vh;
  position: relative;
  padding: 0 8vw;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #jobs {
    padding: 8vw;
    height: auto;
  }
}
#jobs .bgimage {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  content: "";
  /* transitionは個別に指定 */
  transition: background-image 0s, transform 0.8s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  transform: scale(1);
  /* 常に1をベースに */
  /* アニメーション実行中のスタイル */
}
#jobs .bgimage::before {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 1;
  background: rgba(0, 0, 0, 0.7);
}
@media screen and (max-width: 767px) {
  #jobs .bgimage::before {
    background: rgba(0, 0, 0, 0.85);
  }
}
#jobs .bgimage.job01 {
  background: url("/career/assets/image/top/job01_big.jpg") no-repeat center center;
  background-size: cover;
}
#jobs .bgimage.job02 {
  background: url("/career/assets/image/top/job02_big.jpg") no-repeat center center;
  background-size: cover;
}
#jobs .bgimage.animating {
  transform: scale(1);
}
#jobs .toptitle {
  position: relative;
  z-index: 4;
}
#jobs .toptitle p.en,
#jobs .toptitle p.jp,
#jobs .toptitle .lead {
  color: #ffffff;
}
#jobs .toptitle p.en {
  background: transparent linear-gradient(-200deg, #fff 0%, #fff 100%) 0% 0% no-repeat padding-box;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #ffffff;
  /* フォールバック用 */
}
#jobs .toptitle .lead {
  width: 30vw;
}
@media screen and (max-width: 767px) {
  #jobs .toptitle .lead {
    width: 100%;
  }
}
#jobs .job_btn {
  width: 30vw;
  position: absolute;
  bottom: 5rem;
  right: 5rem;
  z-index: 100;
}
@media screen and (max-width: 767px) {
  #jobs .job_btn {
    width: 100%;
    position: static;
  }
}
#jobs .job_btn a {
  position: relative;
  display: block;
}
#jobs .job_btn a .image {
  position: relative;
}
#jobs .job_btn a .image::before {
  content: "";
  background: rgba(0, 0, 0, 0.4);
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  content: "";
  z-index: 3;
}
#jobs .job_btn a .txt {
  position: absolute;
  top: 2rem;
  left: 2rem;
  color: #ffffff;
  z-index: 200;
}
#jobs .job_btn a .icons {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 200;
  height: 3em;
  color: #E60000;
  font-size: 1em;
  background: rgba(255, 255, 255, 0.9);
  width: 77px;
  height: 77px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  #jobs .job_btn a .icons {
    width: 44px;
    height: 44px;
  }
}
#jobs .job_btn a:hover .icons {
  background: #E60000;
  color: #ffffff;
}
#jobs .job_btn a:hover span.c-icons.befores {
  animation-name: transformRightLeft;
}
#jobs .job_btn a:hover span.c-icons.afters {
  animation-name: transformLeftRight;
  /* 修正: hover時のアニメーションを指定 */
  animation-delay: 0.2s;
}

.last_flex {
  display: flex;
  justify-content: space-between;
  margin: 0 0 10rem 0;
}
@media screen and (max-width: 767px) {
  .last_flex {
    display: block;
    margin: 0 0 3rem 0;
  }
}
.last_flex .wide {
  width: 100%;
}
.last_flex .title {
  display: flex;
  align-items: baseline;
  color: #E60000;
  margin: 0 0 3rem 0;
}
@media screen and (max-width: 767px) {
  .last_flex .title {
    margin: 0 0 1rem 0;
  }
}
.last_flex .title p.en {
  font-size: var(--fluid-3);
  margin: 0 2rem 0 0;
}
.last_flex a {
  width: 48%;
  display: block;
}
@media screen and (max-width: 767px) {
  .last_flex a {
    width: 100%;
    margin: 0 0 2rem 0;
  }
  .last_flex a.boxs {
    margin: 0 0 3rem 0 !important;
  }
}

.rec_btn_flex {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .rec_btn_flex {
    display: block;
  }
}
.rec_btn_flex a {
  width: 48%;
  display: block;
  background: #ffffff;
  padding: 2.5rem;
  transition: all 0.3s ease;
}
@media screen and (max-width: 767px) {
  .rec_btn_flex a {
    width: 100%;
    text-align: center;
  }
}
.rec_btn_flex a:hover {
  background: #E60000;
  color: #ffffff;
}

.icons {
  background: none;
  position: relative;
  overflow: hidden;
}
.icons span.c-icons {
  position: absolute;
  width: 1em;
  height: 1em;
  line-height: 1;
  vertical-align: middle;
  display: inline-block;
  font-size: 2em;
  line-height: 1;
  animation-fill-mode: forwards;
  animation-duration: 0.8s;
  animation-timing-function: cubic-bezier(0, 1, 0.25, 1);
  display: inline-block;
  --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='%23000' d='m13.692 17.308l-.707-.72l4.088-4.088H5v-1h12.073l-4.088-4.088l.707-.72L19 12z'/%3E%3C/svg%3E");
  background-color: currentColor;
  -webkit-mask-image: var(--svg);
  mask-image: var(--svg);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
}
@media screen and (max-width: 767px) {
  .icons span.c-icons {
    --svg: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath fill='none' stroke='%23000' stroke-linecap='round' stroke-linejoin='round' d='m10 17l5-5l-5-5' stroke-width='1'/%3E%3C/svg%3E");
  }
}
.icons span.c-icons.afters {
  transform: translateX(-100%);
  opacity: 0;
}