@charset "UTF-8";

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

	FV

---------------------------------------------*/
.secFv__animation {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
}

@media screen and (max-width: 540px) {
  .secFv__animation {
    top: 46%;
    transform: none;
  }
}

.container {
  min-height: 100vh;
  position: relative;
}

.pin-wrap {
  position: relative;
  height: 100vh;
  overflow: hidden;
}

@media screen and (max-width: 820px) {
  .pin-wrap {
    display: flex;
    flex-direction: column;
    height: auto;
  }
}

.stack {
  position: absolute;
  inset: 0;
  height: 200vh;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .stack {
    display: contents;
  }
}

/* 上段＝背景（100vh） */
.bgPanel {
  position: relative;
  /* height: 100vh; */
  width: 100%;
  aspect-ratio: 1280 / 890;
  background-color: #E4E9F3;
}

@media screen and (max-width: 820px) {
  .bgPanel {
    /* display: none; */
    aspect-ratio: 390/497;
  }
}


.background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: bottom;
  transform: translateZ(0);
  will-change: transform;
}

@media screen and (max-width: 820px) {
  .background {
    position: static;

  }
}


/* 画面中央テキスト（不動でフェードのみ） */
.stage {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  pointer-events: none;
}

@media screen and (max-width: 820px) {
  .stage {
    display: contents;
    pointer-events: all;
  }
}

.first,
.second {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  font-size: 4rem;
  color: #fff;
  opacity: 0;
  z-index: 10;
}

@media screen and (max-width: 820px) {
  .first {
    position: relative;
    background-color: #E4E9F3;
  }

  .first.pc {}

  .second {
    display: contents;
  }
}

.first {
  opacity: 1;
}


.seam {
  height: 100vh;
  width: 100%;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 820px) {
  .seam {
    display: contents;
  }
}

@media screen and (min-width: 820px) {

  /* デフォは貫通。必要時だけON/OFF */
  .stage {
    pointer-events: none;
  }

  .first,
  .second {
    pointer-events: auto;
  }

  /* 基本は押せる */
  .is-zero {
    pointer-events: none !important;
  }

}

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

	リードテキスト

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

.textBlock {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .textBlock {
    padding: 3rem 0 0 0;
    flex-direction: column;

    background-color: #E4E9F3;
  }
}

.read__textblock {
  flex-basis: 53%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.read_text {
  padding: 0.8rem;

  color: #000;
  text-shadow: 0 0 2px rgba(255, 255, 255, 0.78), 0 0 10px rgba(255, 255, 255, 0.62);
  font-size: 1rem;
  font-size: 1rem;
  font-style: normal;
  font-weight: 350;
  line-height: 200%;
}

@media screen and (max-width: 820px) {
  .read_text {
    padding: 0rem;
    width: 100%;
    text-shadow: none;
    text-align: center;
  }
}

@media screen and (max-width: 540px) {
  .read_text {
    width: 100%;
    text-shadow: none;
    text-align: center;
    font-size: 0.9375rem;
    letter-spacing: 0.05625rem;
  }
}


.read-button-box {
  display: flex;
  justify-content: flex-start;
  width: 100%;
}

@media screen and (max-width: 820px) {
  .read-button-box {
    justify-content: center;
  }
}

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

	about

---------------------------------------------*/
.secChallengeStories {
  position: relative;
  padding: 5.5rem 0;
  height: 100%;
  z-index: 1;
  background-color: var(--bg-blue);
  order: 3;
}

@media screen and (max-width: 540px) {
  .secChallengeStories {
    padding: 7rem 0 4.5rem 0;
  }
}

.challengeStories__panel {
  position: relative;
  padding: 6.6rem 4.68rem 15rem 5.546rem;
  background: #FBFBFB;
}

@media screen and (max-width: 1500px) {
  .challengeStories__panel {
    padding: 6.6rem 4.68rem 6.5rem 5.546rem;
  }
}

@media screen and (max-width: 540px) {
  .challengeStories__panel {
    padding: 2.5rem 2rem;
  }
}

.challengeStories__mediaBlock {
  display: flex;
}

@media screen and (max-width: 820px) {
  .challengeStories__mediaBlock {
    flex-direction: column;
    align-items: flex-start;
  }
}

.challengeStories__content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-basis: 34.4%;
}

@media screen and (max-width: 540px) {
  .challengeStories__content {
    display: contents;
  }
}

@media screen and (max-width: 540px) {
  .challengeStories__title {
    order: 1;
  }

  .challengeStories__text {
    order: 2;
  }
}

.challengeStories__imgge {
  width: 50.173%;
  position: absolute;
  right: 5.62%;
  top: 6%;
}

@media screen and (max-width: 540px) {
  .challengeStories__imgge {
    position: static;
    width: 92%;
    order: 3;
    margin-left: 0;
  }

  .challengeStories__button {
    order: 4;
    min-width: auto;
    padding: 0.9rem 3rem;
  }
}

.stamp {
  position: absolute;
  top: 16px;
  left: -72px;
  width: clamp(150px, 14.6875vw, 188px);
}

@media screen and (max-width: 820px) {

  .stamp {
    position: absolute;
    top: -57px;
    left: -26px;
    width: clamp(142px, 36.41vw, 160px);
  }
}


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

	事業内容

---------------------------------------------*/
.secBusiness {
  padding: 9rem 0 6rem 0;
  overflow: hidden;
}

@media screen and (max-width: 540px) {
  .secBusiness {
    padding: 3rem 0 5rem 0;
  }
}

.secBusiness__panel {
  position: relative;
  padding: 6rem 4.4rem 4.4rem 5.1rem;
  background: #FBFBFB;
}

@media screen and (max-width: 768px) {
  .secBusiness__panel {
    padding: 2.5rem 8.6486% 2.5rem 8.6486%;
  }
}

.secBusiness__mediaBlock {
  display: flex;
  width: 100%;
  margin-bottom: 6rem;
}

@media screen and (max-width: 540px) {
  .secBusiness__mediaBlock {
    margin-bottom: 2rem;
    flex-direction: column;
  }
}

@media screen and (max-width: 768px) {
  .secBusiness__contet {
    width: 50%;
  }
}


@media screen and (max-width: 540px) {
  .secBusiness__contet {
    width: auto;
  }
}

.secBusiness__image {
  position: absolute;
  right: 0;
  top: -12%;
  width: clamp(300px, 48vw, 621px);
}

@media screen and (max-width: 768px) {
  .secBusiness__image {
    position: static;
    margin-right: calc(40% - 40vw);

  }
}


@media screen and (max-width: 540px) {
  .secBusiness__image {
    position: static;
    margin-right: calc(40% - 40vw);
    width: auto;
  }
}

.cLinkGrid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.8rem;
  grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
  .cLinkGrid {
    gap: 0.5rem;
  }
}

.cLinkItem {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 1.9rem 1.875rem;
  background: #F3F3F1;
  text-decoration: none;
}

@media screen and (max-width: 540px) {
  .cLinkItem {
    padding: 1rem;
    justify-content: flex-start;
    gap: 0.1rem;
  }
}

.cLinkItem:hover {
  background: #eef3f7;
  transform: translateY(-1px);
}

.cLinkItem:focus-visible {
  outline: 3px solid #aac9ff;
  outline-offset: 2px;
}

.cLinkItem__icon {
  width: 26px;
  height: 26px;
  display: block;
}

@media screen and (max-width: 540px) {
  .cLinkItem__icon {
    width: 1.25rem;
    height: 1.25rem;
  }
}

.cLinkItem__icon img {
  vertical-align: baseline;
}

/* ラベル */
.cLinkItem__label {
  color: #25599A;
  font-size: 1rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .cLinkItem__label {
    font-size: 0.8125rem;
  }
}

/* 右矢印（CSSで描画：画像不要） */
.cLinkItem__arrow {
  position: absolute;
  right: 9%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.655rem;
  height: auto;
}

@media screen and (max-width: 540px) {
  .cLinkItem__arrow {
    width: 0.87375rem;
  }
}

/* 行間を詰めたいとき（任意） */
.cLinkItem+.cLinkItem {
  margin-top: 0;
}

/* 紙飛行機 */
.secBusiness__deco {
  position: absolute;
  top: 38%;
  left: 3%;
  width: 9.0625vw;
  animation: fuwafuwa 1.8s 1s ease-in-out infinite alternate-reverse;
}



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

	その他の情報

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

.secInformation {
  padding: 10rem 0 6.5rem 0;
}

@media screen and (max-width: 540px) {
  .secInformation {
    padding: 4.2rem 0 3.5rem 0;
  }
}

.secInformation__content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4.2rem;
}

@media screen and (max-width: 540px) {
  .secInformation__content {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
}

.secInformation__card {
  position: relative;
  transition: all .3s;
}

.secInformation__card::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  content: "";
  background-image: url(../img/icons/arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 2.95938rem;
  height: 0.90375rem;
}


@media screen and (max-width: 540px) {
  .secInformation__card::after {
    bottom: -22px;
    width: 2.29594rem;
    height: 0.64588rem;
    background-image: url(../img/icons/arrow-sp.svg);
  }
}

.secInformation__image {
  margin-bottom: 2rem;
  overflow: hidden;
}

@media screen and (max-width: 540px) {
  .secInformation__image {
    margin-bottom: 1rem;
  }
}

.secInformation__image img {
  transition: all .5s;
}

.secInformation__card:hover .secInformation__image img {
  transform: scale(1.1);

}

.secInformation__text {
  text-align: center;
}

.secInformation__pageTitle {
  margin-bottom: 0.8rem;
  color: #25599A;
  font-size: 1.3125rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  text-align: center;
}

@media screen and (max-width: 540px) {
  .secInformation__pageTitle {
    margin-bottom: 0.25rem;
    font-size: 1.0625rem;
  }
}

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

	採用情報（全ページ共通）

---------------------------------------------*/
.secRecruit {
  position: relative;
  padding: 3rem 0 10rem 0;
}

@media screen and (max-width: 540px) {
  .secRecruit {
    padding: 2.5rem 0 6.25rem 0;
  }
}

.bgRecruit {
  position: absolute;
  bottom: 2rem;
  width: 100%;
}

@media screen and (max-width: 540px) {
  .bgRecruit {
    /* bottom: 3rem; */
  }
}


.secRecruit__title--en {
  color: #000;
  font-family: Jost;
  font-size: clamp(44px, 5vw, 64px);
  font-style: normal;
  font-weight: 500;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .secRecruit__title--en {
    font-size: clamp(31px, 7.94vw, 41px);
  }
}


.secRecruit__title--jp {
  color: #000;
  font-size: clamp(16px, 1.406vw, 18px);
  font-style: normal;
  font-weight: 300;
  line-height: normal;
}

@media screen and (max-width: 540px) {
  .secRecruit__title--jp {
    font-size: clamp(10px, 3.335vw, 23px);
  }
}


.secRecruit__link {
  position: relative;
  display: block;
  margin: 0 auto;
  padding-top: 4%;
  width: clamp(350px, 35.98vw, 435px);
  text-align: center;
  aspect-ratio: 435/225;
  background-color: #FFFFFF;
  background-image: url(../img/common/bg_letter.svg);
  background-size: 100% 100%;
  height: 100%;
}

@media screen and (max-width: 540px) {
  .secRecruit__link {
    width: 12.5rem;
  }
}

.secRecruit__link::before {
  content: "";
  position: absolute;
  background-image: url(../img/icons/arrow.svg);
  background-size: contain;
  background-repeat: no-repeat;
  width: 2.85938rem;
  height: 0.80438rem;
  right: 5%;
  bottom: 16%;
}

@media screen and (max-width: 540px) {
  .secRecruit__link::before {
    width: 1.312rem;
    height: 0.36906rem;
  }
}

.secRecruit__link:hover {
  transform: translateY(-5px);
  opacity: 1;
}

.secRecruit__linkText {
  margin-bottom: 0.7rem;
  color: #000;
  text-align: center;
  font-size: 1rem;
  font-style: normal;
  font-weight: 350;
  line-height: 160%;
}

@media screen and (max-width: 540px) {
  .secRecruit__linkText {
    margin-bottom: 0.5rem;
    font-size: 0.8125rem;
    line-height: 140%;
  }
}

.secRecruit__linkTitle {
  color: #000;
  text-align: center;
  font-size: 1.625rem;
  font-style: normal;
  font-weight: 400;
  line-height: 180%;
}

@media screen and (max-width: 540px) {
  .secRecruit__linkTitle {
    font-size: 1rem;
  }
}