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

.top-background {
  background: var(--color-nav-open);
}

/* サブナビ --------------------------------*/
@media screen and (max-width: 833px) {
  .global-subnav {
    display: none;
  }
}

@media screen and (min-width: 834px), print {
  .global-subnav {
    text-align: right;
    position: absolute;
    top: 120px;
    right: 40px;
    z-index: 5;
  }

  .global-subnav li+li {
    margin-top: 0.5em;
  }

  .global-subnav li a {
    position: relative;
    color: var(--color-text);
    font-size: 1rem;
    font-weight: bold;
  }

  .global-subnav li a::after {
    content: '';
    width: 100%;
    height: 2px;
    background: var(--color-text);
    transform: scale(0, 1);
    transform-origin: left top;
    position: absolute;
    bottom: -4px;
    left: 0;
    transition: transform .3s;
  }

  .global-subnav li a:hover {
    text-decoration: none;
  }

  .global-subnav li a:hover::after {
    transform: scale(1, 1);
  }
}

/*------------------------------------------*/
/* メイン
/*------------------------------------------*/

.topmain {
  position: relative;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}

.topmain .image {
  position: absolute;
  bottom: -500px;
  left: 0;
  z-index: 2;
}

/* キャッチコピー --------------------------------*/
.topmain .catchcopy {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  font-size: 0;
  display: inline-block;
  background: url('../img/top/topmain-copy.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 562/148;
  width: 90%;
  height: auto;
  position: absolute;
  top: 300px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

@media screen and (min-width: 768px), print {
  .topmain .catchcopy {
    width: 80%;
  }
}

@media screen and (min-width: 834px), print {
  .topmain .catchcopy {
    width: 562px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}

/* 下 --------------------------------*/
.topmain-sub {
  position: relative;
  background: var(--gradient-main);
  width: 100%;
  height: 300px;
  overflow: hidden;
}

.topmain-sub .image {
  position: absolute;
  top: -500px;
  left: 0;
  z-index: 2;
}

@media screen and (min-width: 834px), print {
  .topmain-sub {
    height: 400px;
  }
}


/*------------------------------------------*/
/* 共通
/*------------------------------------------*/

.top-heading .en {
  display: inline-block;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1.2;
}

.top-heading.gradation .en {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.top-heading .jp {
  font-size: 0.9rem;
  font-weight: bold;
}

.top-heading.white .en,
.top-heading.white .jp {
  color: white;
}

@media screen and (min-width: 834px), print {
  .top-heading {
    text-align: left;
  }

  .top-heading .en {
    font-size: 4rem;
  }

  .top-heading .jp {
    font-size: 1rem;
  }
}

/*------------------------------------------*/
/* 共通 section
/*------------------------------------------*/

.top-section {
  width: calc(100% - 40px);
  margin: 0 auto;
}

@media screen and (min-width: 768px), print {
  .top-section {
    width: calc(100% - 80px);
  }
}

@media screen and (min-width: 834px), print {
  .top-section {
    width: calc(100% - 120px);
  }
}

@media screen and (min-width: 1240px), print {
  .top-section {
    width: 1100px;
  }
}

/*------------------------------------------*/
/* 共通 separator
/*------------------------------------------*/


.contents {
  position: relative;
}

.contents::after {
  content: '';
  aspect-ratio: 140/16;
  width: 100%;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.separator {
  position: relative;
  width: 100%;
}

.separator::before,
.separator::after {
  content: '';
  aspect-ratio: 140/16;
  width: 100%;
  height: auto;
  position: absolute;
  left: 0;
  z-index: 2;
}

.separator.white-top::before {
  background: url('../img/top/separator_white_top.svg') no-repeat;
  background-size: 100%;
  top: -1px;
}

.separator.white-bottom::before {
  background: url('../img/top/separator_white_bottom.svg') no-repeat;
  background-size: 100%;
  bottom: -1px;
}

.separator.gra-top::after {
  background: url('../img/top/separator_gradation_top.svg') no-repeat;
  background-size: 100%;
  top: -1px;
}

.separator.gra-bottom::after {
  background: url('../img/top/separator_gradation_bottom.svg') no-repeat;
  background-size: 100%;
  bottom: -1px;
}

.separator.gra-top-reverse::after {
  background: url('../img/top/separator_gradation_top_reverse.svg') no-repeat;
  background-size: 100%;
  top: -1px;
}

.separator.gra-bottom-reverse::after {
  background: url('../img/top/separator_gradation_bottom_reverse.svg') no-repeat;
  background-size: 100%;
  bottom: -1px;
}



/*------------------------------------------*/
/* 会社を知る
/*------------------------------------------*/

.top-company {
  background: var(--gradient-main);
  padding-top: calc(var(--separator-height, 0) + 60px);
  padding-bottom: 60px;
}

/* box --------------------------------*/
@media screen and (min-width: 834px), print {
  .top-company .box {
    display: grid;
    grid-template-columns: 500px 1fr;
  }
}

/* 見出し --------------------------------*/
@media screen and (max-width: 833px) {
  .top-company .top-heading {
    margin-bottom: 40px;
  }
}

/* テキスト --------------------------------*/
.top-company .cont .text {
  color: white;
}


/*------------------------------------------*/
/* others
/*------------------------------------------*/

.top-others {
  padding-top: calc(var(--separator-height, 0) + 60px);
  padding-bottom: 60px;
}

.top-others .box {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
}

@media screen and (min-width: 768px), print {
  .top-others .box {
    grid-template-columns: repeat(3, 1fr);
    row-gap: 0;
    column-gap: 40px;
  }
}

/* cont --------------------------------*/
.top-others .cont {
  position: relative;
  text-align: left;
  overflow: hidden;
  z-index: 5;
}

.top-others .inner {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 30px 30px 70px 30px;
  z-index: 4;
}

.top-others .mask {
  position: absolute;
  bottom: -1px;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: var(--color-nav-open);
  border-radius: 20px 20px 0 20px;
  mask-image: linear-gradient(var(--color-nav-open), var(--color-nav-open)), url('../img/common/mask_btnspace.svg');
  mask-repeat: no-repeat, no-repeat;
  mask-position:
    0 0,
    right bottom;
  mask-size:
    100% 100%,
    95px 75px;
  mask-composite: exclude;
  z-index: 1;
}

.top-others .mask::after {
  content: '';
  display: inline-block;
  aspect-ratio: 211/195;
  width: 211px;
  height: auto;
  position: absolute;
  top: -40px;
  right: -60px;
  z-index: 2;
}

.top-others .cont.message .mask::after {
  background: url('../img/top/top-others_message.png') no-repeat;
  background-size: 100%;
}

.top-others .cont.dx .mask::after {
  background: url('../img/top/top-others_dx.png') no-repeat;
  background-size: 100%;
}

.top-others .cont.movie .mask::after {
  background: url('../img/top/top-others_movie.png') no-repeat;
  background-size: 100%;
}

@media screen and (min-width: 834px), print {
  .top-others .inner {
    padding: 60px 80px 60px 60px;
  }
}

/* 見出し --------------------------------*/
.top-others .top-heading .en,
.top-others .top-heading .jp {
  position: relative;
  color: var(--color-text);
  -webkit-text-stroke: 6px var(--color-nav-open);
  text-stroke: 6px var(--color-nav-open);
  paint-order: stroke;
  z-index: 3;
}

.top-others .top-heading .en {
  font-size: 2rem;
  font-weight: bold;
  transform: scaleX(0.8);
  transform-origin: left top;
}

.top-others .top-heading .jp {
  font-size: 0.9rem;
  margin-top: 0.5em;
}

/* ボタン --------------------------------*/
.top-others .btn-others-wrap {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 10;
}


/*------------------------------------------*/
/* 採用情報
/*------------------------------------------*/

.top-recruit {
  position: relative;
  width: 100%;
  margin: 0;
  padding-top: calc(var(--separator-height, 0) + 60px);
  padding-bottom: calc(var(--separator-height, 0) + 60px);
  overflow: hidden;
}

.top-recruit_background::before {
  content: '';
  display: inline-block;
  background: url('../img/top/top_recruit_img_01.jpg') no-repeat;
  background-size: cover;
  background-position: 50% 50%;
  aspect-ratio: 28/50;
  width: 100%;
  height: auto;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}

.top-recruit_background::after {
  content: '';
  display: inline-block;
  background: url('../img/top/top_recruit_img_02.png') no-repeat;
  background-size: 100%;
  aspect-ratio: 172/62;
  width: calc(calc(400 / 834) * 100vw);
  height: auto;
  position: absolute;
  top: calc(calc(60 / 834) * 100vw);
  left: 20px;
  z-index: 1;
}

.top-recruit_background {
  padding-top: calc(calc(80 / 834) * 100vw);
  padding-bottom: calc(calc(100 / 834) * 100vw);
}

@media screen and (min-width: 834px), print {
  .top-recruit_background {
    padding-top: calc(calc(60 / 834) * 100vw);
    padding-bottom: calc(calc(140 / 834) * 100vw);
  }

  .top-recruit_background::before {
    bottom: calc(calc(50 / 834) * -100vw);
  }

  .top-recruit_background::after {
    width: calc(calc(300 / 834) * 100vw);
    top: calc(calc(80 / 834) * 100vw);
    left: calc(calc(40 / 834) * 100vw);
  }
}

/* ボタン --------------------------------*/
@media screen and (min-width: 834px), print {
  .top-recruit .btn-type-wrap {
    margin-top: 100px;
  }
}


/* box --------------------------------*/

@media screen and (min-width: 834px), print {
  .top-recruit .top-section .box {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 60px;
    align-items: flex-end;
  }
}


/* テキスト --------------------------------*/
.top-recruit .copy {
  color: var(--color-text);
  font-weight: 500;
}

.top-recruit .copy .catchcopy {
  font-size: 2rem;
  margin-top: 40px;
}

.top-recruit .copy .subcopy {
  font-size: 0.9rem;
  margin-top: 20px;
}

@media screen and (min-width: 834px), print {
  .top-recruit .copy .catchcopy {
    text-align: left;
    font-size: 3rem;
    margin-top: 0;
  }

  .top-recruit .copy .subcopy {
    text-align: left;
    font-size: 1rem;
    margin-top: 40px;
  }

  .top-recruit .copy .catchcopy .span-1 {
    margin-left: -0.5em;
  }

  .top-recruit .copy .catchcopy .span-2 {
    margin-left: 0.5em;
  }

  .top-recruit .copy .subcopy span {
    margin-left: 0.5em;
  }
}


/*------------------------------------------*/
/* 事業内容
/*------------------------------------------*/

.top-service {
  background: var(--gradient-main);
  padding-top: 60px;
  padding-bottom: calc(var(--separator-height, 0) + 60px);
}

/* box --------------------------------*/
.top-service .box {
  display: grid;
  grid-template-columns: 1fr;
  row-gap: 20px;
  margin-top: 40px;
}

@media screen and (min-width: 768px), print {
  .top-service .box {
    grid-template-columns: repeat(2, 1fr);
    row-gap: 0;
    column-gap: 60px;
    margin-top: 80px;
  }
}

/* cont --------------------------------*/
.top-service .cont {
  position: relative;
  text-align: left;
  overflow: hidden;
  z-index: 5;
}

.top-service .inner {
  position: relative;
  padding: 30px 30px 70px 30px;
  z-index: 4;
}

.top-service .mask {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  background-color: var(--color-nav-open);
  border-radius: 20px 20px 0 20px;
  mask-image: linear-gradient(var(--color-nav-open), var(--color-nav-open)), url('../img/common/mask_btnspace.svg');
  mask-repeat: no-repeat, no-repeat;
  mask-position:
    0 0,
    right bottom;
  mask-size:
    100% 100%,
    95px 75px;
  mask-composite: exclude;
  z-index: 1;
}

.top-service .mask::after {
  content: '';
  display: inline-block;
  background: url('../img/top/top-service_back.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 680/509;
  width: 140%;
  height: auto;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 2;
}

@media screen and (min-width: 834px), print {
  .top-service .inner {
    padding: 60px 80px 60px 60px;
  }

  .top-service .mask::after {
    width: 120%;
  }
}

/* 見出し --------------------------------*/
.top-service .sub-heading {
  text-align: left;
  font-size: 1.1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (min-width: 834px), print {
  .top-service .sub-heading {
    text-align: left;
    font-size: 1.4rem;
  }
}

/* テキスト --------------------------------*/
.top-service .cont .text {
  font-size: 1rem;
  font-weight: 500;
}


/* ボタン --------------------------------*/
.top-service .btn-service-wrap {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 5;
}

/*------------------------------------------*/
/* お知らせ
/*------------------------------------------*/

.top-news {
  display: inline-block;
  width: calc(100% - 20px);
  margin-left: 20px;
  padding-top: 60px;
}

@media screen and (min-width: 768px), print {
  .top-news {
    width: calc(100% - 40px);
    margin-left: 40px;
  }
}

@media screen and (min-width: 834px), print {
  .top-news {
    width: calc(100% - 60px);
    margin-left: 60px;
  }
}

@media screen and (min-width: 1240px), print {
  .top-news {
    width: calc(50% + 550px);
    margin-left: calc(100% - calc(50% + 550px));
  }
}


/* スライド --------------------------------*/
.top-news .splide {
  position: relative;
  margin-top: 80px;
}

@media screen and (min-width: 834px), print {
  .top-news .splide {
    margin-top: 80px;
  }
}

/* スライド コンテンツ --------------------------------*/
.top-news .splide__slide {
  position: relative;
  text-align: left;
  overflow: hidden;
  z-index: 5;
}

.top-news .inner {
  position: relative;
  padding: 30px 30px 70px 30px;
  z-index: 4;
}

.top-news .mask {
  position: absolute;
  bottom: -1px;
  right: -1px;
  width: 100%;
  height: 100%;
  background-color: var(--color-nav-open);
  border-radius: 20px 20px 0 20px;
  mask-image: linear-gradient(var(--color-nav-open), var(--color-nav-open)), url('../img/common/mask_btnspace.svg');
  mask-repeat: no-repeat, no-repeat;
  mask-position:
    0 0,
    right bottom;
  mask-size:
    100% 100%,
    95px 75px;
  mask-composite: exclude;
  z-index: 1;
}


/* テキスト --------------------------------*/
.top-news .date {
  font-family: var(--font-en);
  font-size: 1rem;
  font-weight: bold;
  margin-bottom: 1em;
}

.top-news .title {
  font-size: 1rem;
}

/* ボタン --------------------------------*/
.top-news .btn-news-wrap {
  position: absolute;
  bottom: 0;
  right: 10px;
  z-index: 5;
}


/* ナビゲーション --------------------------------*/
.top-news .splide__arrows {
  position: absolute;
  top: -40px;
  right: 20px;
}

@media screen and (min-width: 768px), print {
  .top-news .splide__arrows {
    top: -60px;
    right: 60px;
  }
}

.top-news .splide__arrow {
  position: relative;
  display: inline-block;
  border-style: solid;
  border-width: 2px;
  border-color: var(--color-neon-blue);
  background: var(--color-neon-blue);
  border-radius: 40px;
  width: 54px;
  height: 40px;
  opacity: 1;
  transition: all .5s ease;
}

.top-news .splide__arrow::after {
  content: '';
  display: inline-block;
  background: url('../img/common/btn_arrow_white.svg') no-repeat;
  background-size: 100%;
  aspect-ratio: 1/1;
  width: 12px;
  height: auto;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  transition: transform 1s;
}

.top-news .splide__arrow--prev {
  margin-right: 60px;
}

.top-news .splide__arrow--prev::after {
  transform: scale(-1, 1);
}

.top-news .splide__arrow:hover {
  text-decoration: none;
  background: transparent;
}

.top-news .splide__arrow:hover::after {
  background: url('../img/common/btn_arrow.svg') no-repeat;
  background-size: 100%;
  transform: rotateY(360deg);
}

.top-news .splide__arrow--prev:hover::after {
  transform: scale(-1, 1) rotateY(360deg);
}