@charset "UTF-8";
/* webfont 変数　*/
/* ofi */
/*====================================================================

index.css

=====================================================================*/
.main {
  overflow: hidden;
}

/*--------------------------------------------------------------------/
	main-view
/--------------------------------------------------------------------*/
.main-view {
  position: relative;
  overflow: hidden;
}

.main-view__catch {
  z-index: 4;
  position: absolute;
  bottom: -0.15em;
  left: 4%;
  color: #ffffff;
}
.main-view__catch .is-catch01,
.main-view__catch .is-catch02 {
  display: block;
}
.main-view__catch .is-catch01__inner,
.main-view__catch .is-catch02__inner {
  position: relative;
  font-style: italic;
  font-weight: 900;
  font-size: clamp(26px, 9.29vw, 140px);
  line-height: 0.95;
  font-family: 'Noto Sans JP', sans-serif;
  letter-spacing: -0.05em;
}
.main-view__catch .is-catch01__letter,
.main-view__catch .is-catch02__letter {
  display: inline-block;
  line-height: 1em;
}

.main-slider {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  /* マスク */
}
.main-slider .mask {
  -webkit-transform: translateY(-100%);
  -webkit-transition: -webkit-transform 0.6s ease;
  z-index: 3;
  position: absolute;
  left: 0;
  width: 100%;
  height: 50%;
          transform: translateY(-100%);
  background: #000000;
  transition: -webkit-transform 0.6s ease;
  transition: transform 0.6s ease;
  transition: transform 0.6s ease, -webkit-transform 0.6s ease;
}
.main-slider .mask-bottom {
  -webkit-transform: translateY(100%);
  bottom: 0;
          transform: translateY(100%);
}
.main-slider.close .mask-top {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-slider.close .mask-bottom {
  -webkit-transform: translateY(0);
          transform: translateY(0);
}
.main-slider.open .mask-top {
  -webkit-transform: translateY(-100%);
  -webkit-transition-delay: 0.3s;
          transform: translateY(-100%);
          transition-delay: 0.3s;
}
.main-slider.open .mask-bottom {
  -webkit-transform: translateY(100%);
  -webkit-transition-delay: 0.3s;
          transform: translateY(100%);
          transition-delay: 0.3s;
}

.main-slider__list {
  position: absolute;
  inset: 0;
}

.main-slider__slide {
  -webkit-transition: opacity 1s ease, -webkit-transform 5s cubic-bezier(0.1, 0, 0.2, 1);
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease, -webkit-transform 5s cubic-bezier(0.1, 0, 0.2, 1);
  transition: opacity 1s ease, transform 5s cubic-bezier(0.1, 0, 0.2, 1);
  transition: opacity 1s ease, transform 5s cubic-bezier(0.1, 0, 0.2, 1), -webkit-transform 5s cubic-bezier(0.1, 0, 0.2, 1);
}
.main-slider__slide.is-active {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 1;
}

.main-view__inner {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.main-view__inner .l-cont {
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
  height: 100%;
}

/* scroll */
.scroll-line {
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
  z-index: 4;
  position: absolute;
  right: min(1%, 1em);
  bottom: 20%;
          writing-mode: vertical-rl;
}
.scroll-line a {
  -webkit-box-align: center;
      -ms-flex-align: center;
  -webkit-transition: all 0.3s ease 0s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
  gap: 8px;
  gap: 0.5rem;
  color: #ffffff;
  font-weight: 500;
  font-size: 0.7em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  text-decoration: none !important;
  text-transform: uppercase;
  transition: all 0.3s ease 0s;
}
.scroll-line a:hover {
  color: #0450E6;
}
.scroll-line__txt {
  rotate: 180deg;
  letter-spacing: 0;
}
.scroll-line span {
  display: block;
  position: relative;
  inline-size: 48px;
  inline-size: 3rem;
  block-size: 1px;
  overflow: hidden;
  background: transparent;
  content: "";
}
.scroll-line span::before {
  -webkit-animation: scroll-line 1.75s cubic-bezier(1, 0, 0, 1) infinite;
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
  inline-size: 100%;
  block-size: 1px;
  background: #ffffff;
  content: "";
          animation: scroll-line 1.75s cubic-bezier(1, 0, 0, 1) infinite;
  transition: all 0.3s ease 0s;
}

@-webkit-keyframes scroll-line {
  0% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 0);
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 1);
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 1);
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 0);
            transform-origin: 0 100%;
  }
}

@keyframes scroll-line {
  0% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 0);
            transform-origin: 0 0;
  }
  50% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 0;
            transform: scale(1, 1);
            transform-origin: 0 0;
  }
  51% {
    -webkit-transform: scale(1, 1);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 1);
            transform-origin: 0 100%;
  }
  100% {
    -webkit-transform: scale(1, 0);
    -webkit-transform-origin: 0 100%;
            transform: scale(1, 0);
            transform-origin: 0 100%;
  }
}
/* common
----------------------------------------------------------------*/
/*--------------------------------------------------------------------/
	contents
/--------------------------------------------------------------------*/
.contents {
  background: left center repeat;
  background-image: url(../img/common/bg_white.webp);
  color: #ffffff;
}

/*--------------------------------------------------------------------/
	top intro
/--------------------------------------------------------------------*/
.top-intro {
  position: relative;
  padding-top: clamp(6em, 9vw, 9em);
  padding-bottom: clamp(30em, 135vw, 135vw);
  overflow: hidden;
  background: url(../img/top/top-about_bg_sp.webp) top left/cover no-repeat;
  isolation: isolate;
}
.top-intro__add {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 75%;
}
.top-intro__img01 {
  position: absolute;
  top: 3em;
  right: 3%;
  width: 70%;
}
.top-intro__img02 {
  position: absolute;
  right: 0;
  bottom: 3em;
  width: 85%;
}
.top-intro__img02__inner {
  position: relative;
  aspect-ratio: 895/1176;
}
.top-intro__img02 .is-img01 {
  position: absolute;
  top: 0;
  right: 0;
  width: 85.6%;
}
.top-intro__img02 .is-img02 {
  position: absolute;
  top: 38%;
  left: 0;
  width: 67.6%;
}
.top-intro__img02 .is-img03 {
  position: absolute;
  right: 10.6%;
  bottom: 0;
  width: 37.7%;
}
.top-intro__inner {
  position: relative;
}

.top-intro__ttl {
  width: 62%;
  margin-bottom: clamp(2em, 3vw, 3em);
}
.top-intro__ttl img {
  mix-blend-mode: overlay;
}
.top-intro__catch {
  margin-bottom: 1em;
  font-weight: 900;
  font-size: clamp(14px, 5vw, 76px);
  line-height: 1;
}
.top-intro__catch span {
  display: inline-block;
  margin-bottom: 0.2em;
  padding: 0.3em 0.5em;
  background: #000000;
}
.top-intro__txt {
  line-height: 2;
}
.top-intro__txt .txt p:not(:last-child) {
  margin-bottom: 2em;
}

/*--------------------------------------------------------------------/
	top company
/--------------------------------------------------------------------*/
.top-company {
  position: relative;
  padding-top: clamp(5em, 9vw, 9em);
  overflow: hidden;
  color: #202020;
}
.top-company__add {
  position: absolute;
  top: -12vw;
  left: -12%;
  width: 68%;
}
.top-company__inner {
  z-index: 1;
  position: relative;
}
.top-company .cont-ttl__inner {
  color: #202020 !important;
}
.top-company .cont-ttl__inner::before {
  background: #202020 !important;
}
.top-company__list {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  row-gap: clamp(3em, 9vw, 9em);
          flex-direction: column;
}

.top-company__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
}
.top-company__box:nth-of-type(even) .top-company__box__txt__inner::before {
  z-index: -1;
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: calc(100% - 3em);
  background: left center repeat;
  background-image: url(../img/common/bg_black.webp);
  content: "";
}
.top-company__box:nth-of-type(even) .top-company__box__txt__txt {
  color: #ffffff;
}

.top-company__box__txt {
  z-index: 2;
  position: relative;
}
.top-company__box__txt__inner {
  z-index: 1;
  position: relative;
  padding: clamp(2em, 3vw, 3em) clamp(1.5em, 5%, 5em) clamp(3em, 6vw, 6em);
}
.top-company__box__txt__ttl {
  text-wrap: nowrap;
  position: relative;
  margin-bottom: 1em;
  overflow: visible;
  color: #ffffff;
  font-size: clamp(12px, 4.29vw, 34px);
}
.top-company__box__txt__ttl__inner em {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.1em 0.25em 0.2em;
  background: #000000;
  font-style: normal;
  font-weight: 800;
  font-size: 2em;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: 0;
  text-transform: uppercase;
}
.top-company__box__txt__ttl__inner b {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0.2em 0.5em 0.4em;
  background: #000000;
  font-weight: 900;
  line-height: 1;
}
.top-company__box__txt .btn-wrap {
  max-width: 480px;
  margin-top: 2em;
}
.top-company__box__img {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

/*--------------------------------------------------------------------/
	top interview
/--------------------------------------------------------------------*/
.top-interview {
  position: relative;
  padding-top: clamp(6em, 9vw, 9em);
  padding-bottom: clamp(3em, 6vw, 6em);
  background: left center repeat;
  background-image: url(../img/common/bg_black.webp);
}
.top-interview::before {
  -webkit-transform: skew(-75deg);
  -webkit-transform-origin: left bottom;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
          transform: skew(-75deg);
          transform-origin: left bottom;
  background: rgba(14, 59, 206, .37);
  content: "";
  mix-blend-mode: screen;
}
.top-interview__read {
  margin-bottom: clamp(2em, 3vw, 3em);
}
.top-interview .btn-wrap {
  margin-top: 2em;
}

.top-interview__list {
  position: relative;
  padding-bottom: clamp(3em, 6vw, 6em);
}
.top-interview__list::before {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: #101010;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(16, 16, 16, .75)), color-stop(98%, rgba(16, 16, 16, 0)));
  background: linear-gradient(180deg, rgba(16, 16, 16, .75) 0%, rgba(16, 16, 16, 0) 98%);
  content: "";
}
.top-interview__list__inner {
  z-index: 1;
  position: relative;
}

.top-interview__list {
  position: relative;
}
.top-interview__list .swiper {
  position: relative;
  width: 100%;
  overflow: visible;
}
.top-interview__list .swiper-foot {
  position: relative;
  padding-top: clamp(2em, 3vw, 3em);
}
.top-interview__list .swiper-control {
  position: relative;
  width: 100%;
  height: 48px;
}
.top-interview__list .swiper-next_prev {
  -webkit-transform: translateY(-50%);
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
  -ms-flex-negative: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 2;
  position: absolute;
  top: 40%;
  left: -2%;
      flex-shrink: 0;
          justify-content: space-between;
  width: 104%;
  height: 48px;
          transform: translateY(-50%);
}
.top-interview__list .swiper-button-prev,
.top-interview__list .swiper-button-next {
  display: block;
  position: relative;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 48px;
  height: 48px;
  margin: 0;
  float: none;
  background-image: none;
}
.top-interview__list .swiper-button-prev::before,
.top-interview__list .swiper-button-next::before {
  -webkit-transition: all 0.3s ease 0s;
  position: absolute;
  width: 100%;
  height: 100%;
  border: 2px solid #ffffff;
  border-radius: 50%;
  background: transparent;
  content: "";
  transition: all 0.3s ease 0s;
}
.top-interview__list .swiper-button-prev::after,
.top-interview__list .swiper-button-next::after {
  -webkit-transition: all 0.3s ease 0s;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 50%;
  color: #ffffff;
  font-size: 1.5em;
  transition: all 0.3s ease 0s;
}
.top-interview__list .swiper-button-prev:hover::before,
.top-interview__list .swiper-button-next:hover::before {
  border-color: #0E3BCE;
  background: #0E3BCE;
}
.top-interview__list .swiper-button-prev:hover::after,
.top-interview__list .swiper-button-next:hover::after {
  color: #ffffff;
}
.top-interview__list .swiper-button-prev:after {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e902";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.top-interview__list .swiper-button-prev::after {
  -webkit-transform: translate(-60%, -50%);
          transform: translate(-60%, -50%);
}
.top-interview__list .swiper-button-next:after {
  speak: never;
  -webkit-font-feature-settings: normal;
          font-feature-settings: normal;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e901";
  font-style: normal;
  font-variant: normal;
  font-weight: normal;
  line-height: 1;
  font-family: "icomoon" !important;
  text-transform: none;
}
.top-interview__list .swiper-button-next::after {
  -webkit-transform: translate(-40%, -50%);
          transform: translate(-40%, -50%);
}
.top-interview__list .swiper-navigation-icon {
  display: none !important;
}
.top-interview__list .swiper-scrollbar {
  -webkit-transform: translateY(-50%);
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 6px;
          transform: translateY(-50%);
  background: #f6f6f6;
}
.top-interview__list .swiper-scrollbar-drag {
  -webkit-transition: all 0.3s ease 0s;
  height: 6px;
  background: #C9CED2;
  cursor: pointer;
  transition: all 0.3s ease 0s;
}
.top-interview__list .swiper-scrollbar-drag:hover {
  background-color: #0E3BCE;
}

/*--------------------------------------------------------------------/
	top environment
/--------------------------------------------------------------------*/
.top-environment {
  position: relative;
  padding-bottom: clamp(6vw, 9vw, 9em);
  background: left center repeat;
  background-image: url(../img/common/bg_black.webp);
}
.top-environment::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(14, 59, 206, .37);
  content: "";
  mix-blend-mode: screen;
}
.top-environment__inner {
  z-index: 3;
  position: relative;
}
.top-environment__read {
  margin-bottom: clamp(2em, 3vw, 3em);
}
.top-environment__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.top-environment__btn a {
  -webkit-transition: all 0.3s ease 0s;
  display: block;
  z-index: 1;
  position: relative;
  aspect-ratio: 216/185;
  overflow: hidden;
  color: #ffffff;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.top-environment__btn a::before {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(3, 10, 44, .39);
  content: "";
}
.top-environment__btn__img {
  -o-object-fit: cover;
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  left: 0;
  margin: auto;
     object-fit: cover;
}
.top-environment__btn__txt {
  -webkit-transform: translateY(-50%);
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  z-index: 3;
  position: absolute;
  top: 50%;
  left: 10%;
  row-gap: 0.5em;
          flex-direction: column;
          transform: translateY(-50%);
  color: #ffffff;
  font-size: clamp(14px, 5vw, 36px);
}
.top-environment__btn__txt .is-ttl {
  font-weight: 900;
  font-size: 1.42em;
  line-height: 1;
}
.top-environment__btn__txt .is-engttl {
  color: #0E3BCE;
  font-style: italic;
  font-weight: 800;
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}
.top-environment__btn__txt i {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
          align-items: center;
          justify-content: center;
  width: 38px;
  background: #ffffff;
}
.top-environment__btn__txt i {
  height: 38px;
}
.top-environment__btn__txt i {
  -webkit-transition: all 0.3s ease 0s;
  border-radius: 50%;
  font-size: 23.04px;
  font-size: 1.44rem;
  text-decoration: none !important;
  transition: all 0.3s ease 0s;
}
.top-environment__btn__txt i::before {
  -webkit-transition: all 0.3s ease 0s;
  color: #0E3BCE;
  transition: all 0.3s ease 0s;
}

/*--------------------------------------------------------------------/
	top recruit
/--------------------------------------------------------------------*/
.top-recruit {
  position: relative;
  padding-top: clamp(6em, 14vw, 12em);
  padding-bottom: clamp(12em, 100vw, 30em);
  background: url(../img/top/top-recruit_bg_tb.webp) center bottom/cover no-repeat;
}
.top-recruit::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .26);
  content: "";
}
.top-recruit .l-cont_xxl {
  -webkit-box-align: center;
      -ms-flex-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
          align-items: center;
  height: 100%;
}
.top-recruit__inner {
  z-index: 1;
  position: relative;
  width: 100%;
}

.top-recruit__ttl {
  display: block;
  color: #ffffff;
  font-style: italic;
  font-weight: 800;
  font-size: clamp(40px, 14.29vw, 256px);
  line-height: 1;
  font-family: 'Montserrat', sans-serif;
  letter-spacing: -0.05em;
  text-transform: uppercase;
}

.top-recruit__flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}

.top-recruit__catch {
  font-weight: 900;
  font-size: clamp(24px, 8.57vw, 120px);
  line-height: 1.1;
  letter-spacing: 0;
}

.top-recruit__txt {
  color: #ffffff;
}
.top-recruit__txt span {
  display: inline-block;
  margin-bottom: 0.3em;
  padding: 0.2em 0.75em;
  background: #000000;
}
@media (min-width: 376px) {
  /*====================================================================/
  /*--iPhone 以上--
  /====================================================================*/
}
@media (min-width: 576px) {
  /*====================================================================/
  /*--スマホ 以上--
  /====================================================================*/
  .top-intro {
    padding-bottom: clamp(30em, 110vw, 110vw);
  }
  .top-intro__img02 {
    width: 72%;
  }
}
@media (min-width: 576px) and (max-width: 767px) {
  /*====================================================================/
  /*--スマホ以上 タブレット iPadmini未満--
  /====================================================================*/
}
@media (min-width: 768px) {
  /*====================================================================/
  /*--タブレット　iPadmini 以上--
  /====================================================================*/
  .main-view {
    height: 56.3vw;
  }
  .main-view__catch .is-catch01__inner,
  .main-view__catch .is-catch02__inner {
    font-size: clamp(72px, 9.38vw, 140px);
  }
  .scroll-line a {
    font-size: 0.9em;
  }
  .scroll-line span {
    inline-size: 5rem;
  }
  .top-intro {
    background-image: url(../img/top/top-about_bg.webp);
  }
  .top-intro__img01 {
    top: 6em;
    width: 48%;
  }
  .top-intro__txt {
    font-size: 1.12em;
  }
  .top-company__add {
    top: -12vw;
    left: -12%;
    width: 45.93%;
  }
  .top-company__box:nth-of-type(odd) .top-company__box__txt__ttl__inner {
    left: 0;
  }
  .top-company__box:nth-of-type(even) {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
  }
  .top-company__box:nth-of-type(even) .top-company__box__txt__inner::before {
    height: calc(100% - 5vw);
  }
  .top-company__box:nth-of-type(even) .top-company__box__txt__ttl__inner {
    right: 0;
  }
  .top-company__box__txt {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            flex-direction: column;
            justify-content: flex-end;
    width: 48%;
  }
  .top-company__box__txt__inner {
    padding: clamp(2em, 3vw, 3em) clamp(1.5em, 10%, 10em) 0;
  }
  .top-company__box__txt__ttl {
    height: 8.85vw;
    font-size: clamp(14px, 1.82vw, 34px);
  }
  .top-company__box__txt__ttl__inner {
    position: absolute;
  }
  .top-company__box__txt__ttl__inner em {
    font-size: 2.7em;
  }
  .top-company__box__txt__txt {
    font-size: clamp(11.5px, 1.5vw, 16px);
  }
  .top-company__box__img {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
    -webkit-box-align: end;
        -ms-flex-align: end;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
            flex-direction: column;
            align-items: flex-end;
    width: 52%;
  }
  .top-environment__list {
    -webkit-column-gap: 2%;
       -moz-column-gap: 2%;
            column-gap: 2%;
  }
  .top-environment__btn {
    width: 49%;
  }
  .top-environment__btn__txt {
    font-size: clamp(20px, 2.6vw, 50px);
  }
  .top-recruit__ttl {
    font-size: clamp(100px, 13.02vw, 256px);
  }
  .top-recruit__catch {
    font-size: clamp(60px, 7.81vw, 120px);
  }
}
@media (min-width: 768px) and (max-width: 1175px) {
  /*====================================================================/
  /*--タブレット iPadmini以上 XGAサイズ iPadPro未満--
  /====================================================================*/
  .top-company__box__txt .btn-wrap {
    max-width: 100%;
    font-size: 0.8em;
  }
  .top-company__box__txt .btn-wrap a i {
    width: 25px;
    height: 25px;
    font-size: 0.94rem;
  }
}
@media (min-width: 1176px) {
  /*====================================================================/
  /*--XGAサイズ　iPadPro 以上--
  /====================================================================*/
  .main-view {
    height: 100vh;
  }
  .main-view__catch .is-catch01__inner,
  .main-view__catch .is-catch02__inner {
    font-size: clamp(92px, 8.52vw, 150px);
  }
  .scroll-line {
    bottom: 40%;
  }
  .top-intro {
    padding-bottom: clamp(9em, 24vw, 24em);
  }
  .top-intro__img02 {
    width: 47%;
  }
  .top-intro__txt {
    width: 50%;
    font-size: clamp(14px, 1.3vw, 20px);
  }
  .top-company__box__txt {
    width: 39.07%;
  }
  .top-company__box__txt__ttl {
    font-size: clamp(18px, 1.67vw, 34px);
  }
  .top-company__box__txt__txt {
    font-size: clamp(15px, 1.39vw, 19px);
  }
  .top-company__box__img {
    width: 60.93%;
  }
  .top-interview__read {
    font-size: clamp(15px, 1.39vw, 20px);
  }
  .top-interview__list .swiper-control {
    height: 64px;
  }
  .top-interview__list .swiper-next_prev {
    height: 64px;
  }
  .top-interview__list .swiper-button-prev,
  .top-interview__list .swiper-button-next {
    width: 64px;
    height: 64px;
  }
  .top-interview__list .swiper-scrollbar {
    height: 8px;
  }
  .top-interview__list .swiper-scrollbar-drag {
    height: 8px;
  }
  .top-environment__read {
    font-size: clamp(15px, 1.39vw, 20px);
  }
  .top-environment__btn__txt i {
    width: 50px;
    height: 50px;
    font-size: 1.88rem;
  }
  .top-recruit {
    padding-top: clamp(10em, 24vw, 20em);
    padding-bottom: clamp(16em, 30vw, 20em);
    background: url(../img/top/top-recruit_bg_pc.webp) center center/cover no-repeat;
  }
  .top-recruit__flex {
    -webkit-column-gap: 4%;
       -moz-column-gap: 4%;
            column-gap: 4%;
  }
  .top-recruit__catch {
    width: 48%;
    font-size: clamp(60px, 5.56vw, 120px);
  }
  .top-recruit__txt {
    width: 48%;
    font-size: clamp(11.5px, 1.06vw, 18px);
  }
}
@media (min-width: 1176px) and (max-width: 1552px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro以上 PC未満--
  /====================================================================*/
}
@media (min-width: 1553px) {
  /*====================================================================/
  /*---PC 以上--
  /====================================================================*/
}
@media (min-width: 1553px) and (max-width: 1732px) {
  /*====================================================================/
  /*--px以上 Large PC未満--
  /====================================================================*/
}
@media (min-width: 1733px) {
  /*====================================================================/
  /*--Large PC 以上--
  /====================================================================*/
}
@media (min-width: 1921px) {
  .main-view__catch .is-catch01__inner,
  .main-view__catch .is-catch02__inner {
    font-size: 9.38rem;
  }
  .top-intro__catch {
    font-size: 4.75rem;
  }
  .top-company__box__txt__ttl {
    font-size: 2.13rem;
  }
  .top-company__box__txt__txt {
    font-size: 1.19rem;
  }
  .top-interview__read {
    font-size: 1.25rem;
  }
  .top-environment__read {
    font-size: 1.25rem;
  }
  .top-environment__btn__txt i {
    width: 1.9791666667vw;
  }
  .top-environment__btn__txt i {
    height: 1.9791666667vw;
  }
  .top-recruit__ttl {
    font-size: 16rem;
  }
  .top-recruit__txt {
    font-size: 1.13rem;
  }
}
@media (min-width: 768px) and (max-width: 1175px) and (min-width: 1921px) {
  .top-company__box__txt .btn-wrap a i {
    width: 1.3020833333vw;
  }
  .top-company__box__txt .btn-wrap a i {
    height: 1.3020833333vw;
  }
}
@media (min-width: 1176px) and (min-width: 1921px) {
  .top-environment__btn__txt i {
    width: 2.6041666667vw;
  }
  .top-environment__btn__txt i {
    height: 2.6041666667vw;
  }
}
@media (max-width: 1732px) {
  /*====================================================================/
  /*--Large PC 未満--
  /====================================================================*/
}
@media (max-width: 1552px) {
  /*====================================================================/
  /*--PC 未満--
  /====================================================================*/
  .top-company .cont-ttl em {
    position: relative;
    line-height: 0.6;
  }
}
@media (max-width: 1175px) {
  /*====================================================================/
  /*--XGAサイズ iPadPro 未満--
  /====================================================================*/
  .top-recruit__flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
    row-gap: 2em;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  /*====================================================================/
  /*--タブレット iPadmini 未満--
  /====================================================================*/
  .main-view {
    height: 125vw;
  }
  .top-intro__inner {
    padding-top: 16vw;
  }
  .top-company .cont-ttl {
    padding-bottom: 0.5em;
  }
  .top-company__box {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .top-environment__list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
    row-gap: 1.5em;
            flex-direction: column;
  }
}
@media (max-width: 575px) {
  /*====================================================================/
  /*--iPhone 以下--
  /====================================================================*/
}
/*# sourceMappingURL=map/top.css.map */
