﻿@charset "utf-8";
/*--------------------------------------------------------------------------------

  main visual

--------------------------------------------------------------------------------*/
:root { --mv-area-video-height: 200vh; }
@media not (max-width: 760px) {
  :root { --mv-max-height: 960px; }
}
@media (max-width: 760px) {
  :root { --mv-max-height: 640px; }
  :root { --mv-min-height: 400px; }
}
.mv-area-video {
  position: relative;
  height: var(--mv-area-video-height);
}
.mv-video {
  pointer-events: none;
  width: 100%;
  height: 100dvh;
  max-height: var(--mv-max-height);
  min-height: var(--mv-min-height);
  object-fit: cover;
  position: sticky;
  left: 0;
  top: 0;
  z-index: -100;
}
.mv-area-catch {
  position: sticky;
  left: 0;
  top: 0;
  z-index: -99;
  width: 100%;
  height: 100dvh;
  max-height: var(--mv-max-height);
  min-height: var(--mv-min-height);
  display: grid;
  place-content: center;
  place-items: center;
  margin-top: calc(-1 * var(--mv-area-video-height));
  padding-bottom: var(--intro-rd);  /* .intro の角丸分 */
}
.mv-catch {
  line-height: var(--line-height-s);
  font-family: var(--ff-go);
  font-weight: 700;
  font-size: var(--fs-3l);
  color: #FFF;
  display: flex;
  flex-direction: column;
  row-gap: 0.5rem;
}
.mv-catch .txt {
  padding-left: 1rem;
  text-align: center;
}
.mv-catch .txt:last-of-type {
  margin-top: 1rem;
  background-color: #FFF;
  padding: 0.5rem 0 0.5rem 1rem;
  color: var(--color-primary);
  font-weight: 800;
}

/*--------------------------------------------------------------------------------

  intro

--------------------------------------------------------------------------------*/
:root { --intro-rd: var(--rd-4); }
.intro {
  height: 300vh;
  position: relative;
  overflow: hidden;
  background-color: var(--color-primary);
  z-index: -99;
  border-radius: var(--intro-rd) var(--intro-rd) 0 0;
  margin-top: calc(-1 * var(--intro-rd));
}
.intro-catch {
  width: 100vw;
  height: 100vh;
  position: relative;
  z-index: 2;
}
.intro-catch_txt {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  white-space: nowrap;
  font-family: var(--ff-en);
  font-size: min(12vw, 6.5rem);
  color: #FFF;
  font-weight: 700;
  line-height: 1;
}
.intro-catch_txt.-catch1 { opacity: 0; }

/*--------------------------------------------------------------------------------
  .intro-bg
--------------------------------------------------------------------------------*/
.intro-bg {
  --rd: 0;
  --start-bg: #FFF;
  --end-bg: var(--color-primary);
  position: fixed;
  left: 50%;
  top: 50%;
  width: max(200vw, 200vh);
  height: max(200vw, 200vh);
  clip-path: circle(var(--rd) at center);
  transform: translate(-50%, -50%);
}
.intro-bg_animation {
  pointer-events: none;
  width: 100%;
  height: max(100%, 100vh);
  position: fixed;
  left: 0;
  top: 0;
  background: url("../../img/recruit/bg_animation.webp") repeat center center;
  background-size: clamp(140px, (240 / 760 * 100vw), 240px) auto;
  opacity: 0;
  animation: intro-bg 180s linear infinite;
}
@keyframes intro-bg {
	0% { background-position: 0% 0%; }
	100% { background-position: 100% -100%; }
}

/*--------------------------------------------------------------------------------
  .intro-area-txt
--------------------------------------------------------------------------------*/
.intro-area-txt {
  padding: 0 var(--side-space) var(--space-4l) var(--side-space);
  position: relative;
  margin-top: -50vh;
  display: grid;
  place-content: center;
  place-items: center;
}
.intro-txt {
  line-height: var(--line-height-l);
  font-family: var(--ff-go);
  font-size: clamp(1.5rem, 5vw, 2.25rem);
  font-weight: 600;
  text-align: center;
  color: #FFF;
}
.intro-area-txt:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  z-index: -100;
}

/*--------------------------------------------------------------------------------

  about

--------------------------------------------------------------------------------*/
.sec-about { position: relative; }
.sec-about:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: var(--color-primary);
  z-index: -100;
}
.about {
  position: relative;
  display: grid;
  align-items: center;
  color: #FFF;
}
.about a {
  --link-color: #FFF;
  --link-color-hover: #FFF;
}
.about_hd {
  --ttl-color: #FFF;
}
.about_img {
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.8s var(--cubic-bezier), opacity 0.4s ease-in-out;
}
.about_img.is-active {
  opacity: 1;
  transform: scale(1);
}
.about_txt {
  line-height: var(--line-height-l);
}
.about_txt .lead {
  line-height: var(--line-height-n);
  font-weight: bold;
  font-size: var(--fs-2m);
  padding-bottom: 1.5rem;
}
.about_btn {
  font-weight: bold;
  padding-top: var(--space-l);
  text-align: right;
}
@media not (max-width: 760px) {
  .about {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: 
      "about-img about-hd"
      "about-img about-txt";
    gap: var(--space-m);
  }
  .about_hd { grid-area: about-hd; align-self: end; }
  .about_img { grid-area: about-img; }
  .about_txt { grid-area: about-txt; align-self: start; padding-top: 1rem; }
}
@media (max-width: 760px) {
  .about {
    gap: var(--space-l) var(--space-m);
  }
}

/*--------------------------------------------------------------------------------
  .about-slider
--------------------------------------------------------------------------------*/
.about-slider {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin-inline: auto;
}
.about-slider:before {
  content: "";
  display: block;
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  transform: scale(0.999);
  background-color: #FFF;
}
.about-slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media not (max-width: 760px) {
  .about-slider {
    width: min(calc(100% - var(--space-l)), 520px);
  }
}
@media (max-width: 760px) {
  .about-slider {
    width: min(80%, 400px);
  }
}

/*--------------------------------------------------------------------------------
  .entry-btns
--------------------------------------------------------------------------------*/
.about-entry {
  --link-color: var(--txt-color);
  --link-color-hover: var(--txt-color);
  --link-deco: none;
  --link-deco-hover: none;
  padding: var(--space-3l) 0 var(--space-2l) 0;
  display: flex;
  gap: var(--space-s) var(--space-2s);
}
.about-entry li {
  width: 100%;
  line-height: var(--line-height-s);
}
.about-entry a {
  height: 100%;
  display: flex;
  align-items: center;
  column-gap: 1rem;
  background-color: #FFF;
  border-radius: var(--rd-q);
  padding: var(--inner-space-m);
}
.about-entry_txt .en {
  font-family: var(--ff-en);
  color: var(--color-primary);
}
.about-entry_txt .jp {
  font-family: var(--ff-go);
  font-size: var(--fs-3l);
  font-weight: 700;
}
.about-entry_btn {
  --arrow-size: 3rem;
  margin-left: auto;
}
@media (max-width: 760px) {
  .about-entry {
    flex-direction: column;
  }
}

/*--------------------------------------------------------------------------------

  company

--------------------------------------------------------------------------------*/
.sec-company {
  background-color: #FFF;
  padding-top: var(--space-2l);
}
.company-item {
  display: flex;
  gap: var(--space-l);
  position: relative;
}
.company-item:not(:first-of-type) {
  margin-top: var(--space-2l);
}
.company-item .img {
  flex-shrink: 0;
  overflow: hidden;
  border-radius: var(--rd-1h);
}
.company-item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company-item .txt {
  line-height: var(--line-height-l);
}
.company-item .ttl {
  font-family: var(--ff-go);
  font-size: var(--fs-2l);
  font-weight: 700;
  line-height: var(--line-height-s);
  padding-bottom: var(--space-s);
}
.company-item .ttl .highlight {
  font-weight: 800;
  font-size: var(--fs-l);
  color: var(--color-primary);
}
@media not (max-width: 760px) {
  .company-item .txt { padding: var(--space-s) 0; }
  .company-item .img {
    aspect-ratio: 2 / 2.5;
    width: 30%;
    margin-left: auto;
  }
  .company-item:first-of-type .img img { object-position: 75% center; }
  .company-item:nth-of-type(even) .txt { order: 2; }
  .company-item:nth-of-type(even) .img {
    order: 1;
    margin-right: auto;
  }
}
@media (max-width: 760px) {
  .company-item .img { aspect-ratio: 2 / 1; }
  .company-item { flex-direction: column; }
}
/* ひよこイラスト */
@media not (max-width: 760px) {
  .company-item:first-of-type .area-ttl {
    display: inline-flex;
  }
  .company-item:first-of-type .illust {
    flex-shrink: 0;
    width: min(15%, 110px);
    margin-top: calc(-1 * var(--space-m));
    /* values(min:0rem, max:5rem) viewport(min:760px, max:1200px) */
    margin-left: clamp(0rem, -8.636rem + 18.18vw, 5rem);
  }
}
@media (max-width: 760px) {
  .company-item:first-of-type .area-ttl {
    position: relative;
  }
  .company-item:first-of-type .illust {
    width: min(20%, 90px);
    display: inline-block;
    position: absolute;
    top: calc(-1 * var(--space-3l));
    right: 0;
  }
  .company-item:first-of-type .ttl .sp-inblock {
    display: inline-block;
    padding-right: 25%;
  }
}
/* ニワトリ親子イラスト */
.company-illust {
  display: flex;
  align-items: end;
  column-gap: 4%;
  margin-left: auto;
  transform: translateY(var(--space-m));
  margin-top: calc(-1 * var(--space-s));
}
.company-illust li:not(:last-child) {
  width: 20%;
  padding-bottom: 1.5%;
}
.company-illust li:last-child {
  width: 40%;
  padding-left: 6%;
}
@media not (max-width: 760px) {
  .company-illust {
    width: min(35%, 400px);
  }
}
@media (max-width: 760px) {
  .company-illust {
    width: min(60%, 360px);
    padding-top: var(--space-s);
  }
}

/*--------------------------------------------------------------------------------

  work

--------------------------------------------------------------------------------*/
.sec-work {
  background-color: var(--bg-quaternary);
  transition: background 0.2s ease-in-out;
}
.sec-work:has(.work-activity.is-active) {
  background-color: var(--color-tertiary-light);
}

/*--------------------------------------------------------------------------------
  .work-hd
--------------------------------------------------------------------------------*/
.work-hd {
  text-align: center;
  font-family: var(--ff-go);
  font-size: clamp(1.25rem, 4vw, 1.75rem);
  font-weight: 700;
  line-height: var(--line-height-s);
  padding-top: var(--space-3l);
}
.work-hd .ttl { margin-top: 0.5rem; }
.work-hd .sub-ttl .highlight {
  font-size: var(--fs-m);
  color: var(--color-tertiary-light);
}
.work-hd .ttl .highlight {
  font-weight: 800;
  font-size: var(--fs-l);
  color: var(--color-primary);
}

/*--------------------------------------------------------------------------------
  .work-flow
--------------------------------------------------------------------------------*/
.work-flow {
  --container-side-space: var(--SP-side-space-s);
  display: flex;
  flex-direction: column;
  row-gap: calc(var(--space-l) + var(--fs-3l));
  padding-top: var(--space-3l);
}
.work-flow_item {
  border-radius: var(--rd-1h);
  background-color: #FFF;
  padding: var(--inner-space-m);
  position: relative;
}
.work-flow .img {
  overflow: hidden;
  border-radius: var(--rd-1);
}
.work-flow img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.work-flow .sub-ttl {
  position: absolute;
  left: calc(var(--inner-space-m) - 0.25em);
  top: calc(-1 * (var(--fs-3l) / 2));
  line-height: 1;
  color: var(--color-primary);
  font-family: var(--ff-en);
  font-size: var(--fs-3l);
  font-weight: 600;
}
.work-flow .sub-ttl .num {
  font-size: var(--fs-2l);
  font-weight: 700;
}
.work-flow .ttl {
  font-size: var(--fs-2l);
  font-family: var(--ff-go);
  font-weight: 700;
  margin-top: 0.5rem;
}
@media not (max-width: 760px) {
  .work-flow_item {
    display: grid;
    grid-template-columns: 1fr 0.5fr;
    grid-template-rows: auto 1fr;
    grid-template-areas: 
      "work-flow-ttl work-flow-img"
      "work-flow-txt work-flow-img";
    column-gap: var(--space-m);
  }
  .work-flow .img { grid-area: work-flow-img; }
  .work-flow .ttl { grid-area: work-flow-ttl; margin-bottom: var(--space-3s); }
  .work-flow .txt { grid-area: work-flow-txt; }
}
@media (max-width: 760px) {
  .work-flow .img { aspect-ratio: 2 / 1; margin: var(--space-s) 0 var(--space-m) 0; }
}

/*--------------------------------------------------------------------------------
  .work-activity
--------------------------------------------------------------------------------*/
.work-activity {
  padding-top: var(--space-2l);
  text-align: center;
}
.work-activity_txt {
  font-family: var(--ff-go);
  font-size: var(--fs-2l);
  font-weight: 700;
  line-height: var(--line-height-s);
  margin-top: 0.5rem;
}
.work-activity_txt .highlight {
  font-weight: 800;
  font-size: var(--fs-l);
  color: var(--color-quinary);
}
.work-activity.is-active { color: #FFF; }
.work-activity.is-active .work-activity_txt .highlight { color: var(--highlight-quinary); }
@media not (max-width: 760px) {
  .work-activity_txt {
    width: 60%;
    margin-inline: auto;
  }
}

/* .work-activity_img
----------------------------------------*/
.work-activity_img {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  justify-items: center;
}
.work-activity_img .main-illust {
  align-self: end;
}
.work-activity_img .img {
  padding-bottom: var(--space-3l);
}
.work-activity_img .img_inner {
  position: relative;
  display: inline-block;
}
.work-activity_img .pic img {
  aspect-ratio: 1 / 1;
  border-radius: 50%;
  object-fit: cover;
}
.work-activity_img .-img1 { padding-top: 25%; }
.work-activity_img .-img1 { width: 65%; margin-left: 20%; }
.work-activity_img .-img2 { width: 90%; }
.work-activity_img .illust { position: absolute; }
.work-activity_img .-img1 .illust {
  width: 45%;
  left: -15%;
  top: -40%;
}
.work-activity_img .-img2 .illust {
  width: 25%;
  right: 5%;
  bottom: -10%;
}
@media not (max-width: 760px) {
  .work-activity_img .img {
    margin-top: calc(-1 * var(--space-l));
  }
  /* Google翻訳 英語 */
  html.translated-ltr[lang="en"] .work-activity_img .img {
    margin-top: 0;
  }
}
@media (max-width: 760px) {
  .work-activity_img { margin-top: var(--space-l); }
  .work-activity_img .main-illust { transform: scale(1.2); transform-origin: center bottom; }
  .work-activity_img .img { transform: scale(1.2); }
}
/* ニワトリイラスト */
.work-activity_img .main-illust { overflow: hidden; }
.work-activity_img .main-illust img {
  transform: translateY(100%);
  transition: transform 0.8s var(--cubic-bezier);
}
.work-activity.is-active .work-activity_img .main-illust img { transform: translateY(5px); }
/* 写真 */
.work-activity_img .pic img {
  opacity: 0;
  transform: scale(0.5);
  transition: transform 0.8s var(--cubic-bezier), opacity 0.4s ease-in-out;
}
.work-activity_img.is-active .pic img {
  opacity: 1;
  transform: scale(1);
}
/* ひよこイラスト */
.work-activity_img .illust {
  opacity: 0;
  transition: opacity 0.2s ease-in-out;
}
.work-activity_img.is-active .illust {
  opacity: 1;
}
/* ひよこイラスト(右) */
.work-activity_img .-img2 .illust {
  transform: scale(-1, 1);
}

/*--------------------------------------------------------------------------------

  work2

--------------------------------------------------------------------------------*/
.sec-work2 {
  background-color: #FFF;
}

/*--------------------------------------------------------------------------------
  .work2-loop-txt
--------------------------------------------------------------------------------*/
.work2-loop-txt {
  padding-top: var(--space-2l);
  line-height: 1;
  overflow: hidden;
  display: flex;
  column-gap: var(--space-2l);
  white-space: nowrap;
}
.work2-loop-txt_item {
  display: flex;
  column-gap: var(--space-2l);
  animation: work2-loop-txt 50s linear infinite;
  will-change: transform;
}
.work2-loop-txt_item li {
  display: flex;
  align-items: center;
  column-gap: 0.75rem;
  font-family: var(--ff-en);
  font-size: var(--fs-4l);
  font-weight: 600;
  color: var(--bg-quaternary-3);
}
.work2-loop-txt_item .icon {
  width: 1.4em;
  margin-bottom: 0.15em;
}
@keyframes work2-loop-txt {
  from { transform: translateX(0); }
  to { transform: translateX(-100%); }
}

/*--------------------------------------------------------------------------------
  .work2-hd
--------------------------------------------------------------------------------*/
.work2-hd {
  text-align: center;
  font-family: var(--ff-go);
  font-size: var(--fs-2l);
  font-weight: 700;
  line-height: var(--line-height-s);
  padding-top: var(--space-2l);
  margin-bottom: var(--space-m);
}
.work2-hd .sub-ttl,
.work2-hd .ttl { margin-top: 0.5rem; }
.work2-hd .sub-ttl .highlight {
  font-size: var(--fs-m);
  color: var(--color-tertiary);
}
.work2-hd .ttl .highlight {
  font-weight: 800;
  font-size: var(--fs-l);
  color: var(--color-primary);
}

/*--------------------------------------------------------------------------------
  .work2-txt
--------------------------------------------------------------------------------*/
.work2-txt { line-height: var(--line-height-l); }
@media not (max-width: 760px) {
  .work2-txt { text-align: center; }
}

/*--------------------------------------------------------------------------------
  .work2-flow
--------------------------------------------------------------------------------*/
.work2-flow {
  padding: var(--space-3l) var(--side-space);
  overflow: hidden;
}
.work2-flow .swiper {
  overflow: visible;
  cursor: grab;
}
.work2-flow:has(.swiper-scrollbar-drag) .swiper-wrapper {
  padding-bottom: var(--space-l);
}
.work2-flow_item {
  padding: 0 1rem;
}
.work2-flow_item .inner {
  height: 100%;
  border: 2px solid var(--bg-primary-3);
  border-radius: var(--rd-1);
  padding: var(--inner-space-m);
  position: relative;
  text-align: center;
}
.work2-flow_item .no {
  display: inline-grid;
  place-content: center;
  place-items: center;
  position: absolute;
  left: -1rem;
  top: -1rem;
  line-height: 1;
  background-color: var(--color-primary);
  color: #FFF;
  font-family: var(--ff-en);
  font-weight: 600;
  font-size: var(--fs-l);
  padding: clamp(0.75rem, 10%, 1.25rem);
  border-radius: 50%;
  aspect-ratio: 1 / 1;
}
.work2-flow_item img {
  margin-bottom: 0.5rem;
  width: clamp(6rem, 72%, 8rem);
}
.work2-flow_item .ttl {
  color: var(--color-primary);
  font-weight: bold;
  font-size: var(--fs-l);
}
.work2-flow_item .txt {
  text-align: left;
  font-size: var(--fs-s);
  padding-top: 1rem;
}

/*--------------------------------------------------------------------------------

  interview

--------------------------------------------------------------------------------*/
.sec-interview {
  padding-bottom: var(--space-2l);
}

/*--------------------------------------------------------------------------------

  faq

--------------------------------------------------------------------------------*/
.sec-faq {
  background-color: var(--bg-quaternary-2);
  padding-top: var(--space-2l);
  padding-bottom: calc( var(--space-3l) + var(--ft-entry-rd));  /* .l-ft-entryの角丸分 */
}
.faq {
  --container-side-space: var(--SP-side-space-s);
  margin-top: var(--space-l);
  display: flex;
  flex-direction: column;
  row-gap: var(--inner-space-2s);
}
.faq_item {
  transition: var(--hover-trans);
  border-radius: var(--rd-q);
  background-color: #FFF;
}
.faq_inner {
  position: relative;
  padding-left: calc(var(--fs-2l) + min(2vw, 1rem));
}
.faq_q .faq_inner:before { content: "Q"; --mgt: 0.05em; }
.faq_a .faq_inner:before { content: "A"; --mgt: 0em; }
.faq_q .faq_inner:before,
.faq_a .faq_inner:before {
  font-family: var(--ff-en);
  font-size: var(--fs-2l);
  font-weight: 600;
  color: var(--color-primary);
  position: absolute;
  left: 0;
  top: calc((1rem - 1em) + var(--mgt));
}
.faq_q {
  display: flex;
  align-items: center;
  column-gap: var(--inner-space-s);
  padding: var(--inner-space-2s);
  line-height: var(--line-height-s);
}
.faq_item:has(.is-active) .faq_q { font-weight: bold; }
.faq_a {
  padding: var(--inner-space-s) var(--inner-space-2s);
  border-top: 1px solid var(--bg-quaternary-2);
}
.faq_icon {
  flex-shrink: 0;
  width: 1rem;
  height: 1rem;
  position: relative;
  margin-left: auto;
}
.faq_icon:before,
.faq_icon:after {
  content: "";
  display: inline-block;
  --width: 100%;
  --height: 2px;
  width: var(--width);
  height: var(--height);
  background: var(--color-primary);
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: calc(-1 * var(--height) / 2);
}
.faq_icon:after {
  transition: transform 0.5s var(--cubic-bezier);
  transform-origin: center center;
  transform: rotate(90deg) scale(1,1);
}
.faq_item:has(.is-active) .faq_q .faq_icon:after {
  transform: rotate(90deg) scale(0,1);
}
