@charset "UTF-8";
/* ブレイクポイント設定 */
/* 色設定 */
/* 配置(フレックス) */
/* transition */
/* レスポンシブ */
.sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .sp {
    display: block;
  }
}

/* 基盤 */
html {
  font-size: 62.5%;
}
@media screen and (max-width: 1280px) {
  html {
    font-size: 0.78125vw;
  }
}
@media screen and (max-width: 767px) {
  html {
    font-size: 1.3037809648vw;
  }
}

body {
  color: #2B2B2B;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  line-height: 1.2;
  width: 100%;
  text-align: center;
  overflow-wrap: anywhere;
  word-break: normal;
  line-break: strict;
}

a {
  position: relative;
  text-decoration: none;
  color: #2B2B2B;
  display: block;
  -webkit-tap-highlight-color: transparent;
}

li {
  list-style: none;
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ヘッダー(タイトル) */
.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 15;
  width: 100%;
  height: 16rem;
  color: #fff;
  background: green;
  font-size: 3rem;
}
@media screen and (max-width: 767px) {
  .header {
    height: 14rem;
    font-size: 2.2rem;
  }
}

.page-title {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* スクロールでふわっと表示 */
.slide-in05__blank {
  display: flex;
  justify-content: center;
  align-items: center;
  height: calc(100vh - 10rem);
  font-size: 6rem;
}
@media screen and (max-width: 767px) {
  .slide-in05__blank {
    height: calc(100vh - 14rem);
    font-size: 3rem;
  }
}

/* スクロールに連動してスライドイン */
.slide-in05__content {
  position: relative;
  height: 80vh;
}

.slidetext {
  position: absolute;
  color: lightgreen;
  font-size: 9rem;
  font-weight: bold;
  transition: transform 0.1s ease;
}

.concept__slidetext {
  top: 20rem;
  left: -42rem;
  width: 42rem;
}

.recruit__slidetext {
  top: 10rem;
  right: -38rem;
  width: 38rem;
}/*# sourceMappingURL=style.css.map */