@charset "UTF-8";
/*================================= 見出し =================================*/
/*== 日本語 ==*/
/*== 日本語 SP ==*/
/*== 数字 ==*/
/*== 数字 SP ==*/
/*== 英語 ==*/
/*== 英語 SP ==*/
/*================================= 本文 =================================*/
/*== SP ==*/
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400&display=swap");
:root {
  --clmidcareer: #F15A24;
  --clnewgraduate: #298AE2;
  --clred01: #E50012;
  --clred02: #FFF2F3;
  --clgray01: #6C6A6A;
  --clgray02: #C1C1C1;
  --clgray03: #F7F7F7;
  --header-h: 0px;
}

body {
  position: relative;
}

#header {
  background: none;
}

div.hero-area-wrap {
  overflow: hidden;
  position: relative;
  width: 100vw;
}

div.hero-area00 {
  position: absolute;
  z-index: 1000;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  pointer-events: none;
}
div.hero-area00::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  z-index: 0;
  animation: hero-area00 1s 3.8s forwards;
}
@keyframes hero-area00 {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
div.hero-area00 div.grid {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(11, 1fr);
  grid-template-rows: repeat(11, 1fr);
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
}
div.hero-area00 .cell {
  box-sizing: border-box;
  background-color: #fff;
  animation: scaleIn 0.2s ease forwards;
  animation-delay: var(--delay, 0ms);
}
@keyframes scaleIn {
  0% {
    transform: scaleX(1);
    transform-origin: center right;
  }
  100% {
    transform: scaleX(0);
    transform-origin: center right;
  }
}
div.hero-area00 div.hero-logo {
  width: 70%;
  height: 9vw;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  margin: auto;
  transform: translate(0, -50%);
  transform-origin: center center;
  overflow: hidden;
  z-index: 3;
  animation: hero-logo-scale 8s 0s cubic-bezier(0.37, 0.01, 0, 0.99) forwards, hero-logo-clip 1s 4s ease forwards;
}
@media screen and (min-width: 768px) {
  div.hero-area00 div.hero-logo {
    width: 50%;
    height: 6vw;
  }
}
@keyframes hero-logo-clip {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(100% 0, 100% 0, 100% 100%, 100% 100%);
  }
}
@keyframes hero-logo-scale {
  0% {
    transform: scale(1.2) translate(0, -50%);
    transform-origin: center center;
  }
  100% {
    transform: scale(0.8) translate(0, -50%);
    transform-origin: center center;
  }
}
@keyframes hero-logo {
  0% {
    transform: translate(0, 100%);
  }
  40% {
    transform: translate(0, 0);
  }
  60% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, -50%);
  }
}
div.hero-area00 div.hero-logo div.hero-logo-inner {
  transform: translate(0, 100%);
  animation: hero-logo 1s 0.5s ease forwards;
}
div.hero-area00 div.hero-logo div.hero-logo-inner p {
  text-align: center;
  color: var(--clred01);
  font-size: 12.4vw;
  line-height: 1em;
  letter-spacing: 0.12em;
  font-weight: bold;
  margin-top: 0.1em;
}
@media screen and (min-width: 768px) {
  div.hero-area00 div.hero-logo div.hero-logo-inner p {
    font-size: 7vw;
    margin-top: 0;
  }
}
@keyframes line-bg-fade {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
div.hero-area00 div.line-bg-b {
  position: absolute;
  top: 0;
  left: 0;
  height: 9.0909090909%;
  width: 100vw;
  box-sizing: border-box;
  z-index: 1;
  animation: line-bg-fade 0.6s 4.2s ease forwards;
}
@keyframes line-bg-af-b {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
div.hero-area00 div.line-bg-b::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: var(--clred01);
  transform: scaleX(0);
  transform-origin: left;
  animation: line-bg-af-b 0.6s 2s ease forwards;
}
div.hero-area00 div.line-bg-b.line-bg02 {
  top: 9.0909090909%;
}
div.hero-area00 div.line-bg-b.line-bg03 {
  top: 18.1818181818%;
}
div.hero-area00 div.line-bg-b.line-bg04 {
  top: 27.2727272727%;
}
div.hero-area00 div.line-bg-b.line-bg05 {
  top: 36.3636363636%;
}
div.hero-area00 div.line-bg-b.line-bg06 {
  top: 45.4545454545%;
}
div.hero-area00 div.line-bg-b.line-bg07 {
  top: 54.5454545455%;
}
div.hero-area00 div.line-bg-b.line-bg08 {
  top: 63.6363636364%;
}
div.hero-area00 div.line-bg-b.line-bg09 {
  top: 72.7272727273%;
}
div.hero-area00 div.line-bg-b.line-bg10 {
  top: 72.7272727273%;
}
div.hero-area00 div.line-bg-b.line-bg11 {
  top: 81.8181818182%;
}
div.hero-area00 div.line-bg-b.line-bg12 {
  top: 90.9090909091%;
}
div.hero-area00 div.line-bg-b.line-bg13 {
  top: 100%;
}
div.hero-area00 div.line-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 9.0909090909%;
  height: 100vh;
  box-sizing: border-box;
  z-index: 1;
  animation: line-bg-fade 0.6s 4.2s ease forwards;
}
@keyframes line-bg-af {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}
div.hero-area00 div.line-bg::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 1px;
  width: 1px;
  height: 100%;
  background-color: var(--clred01);
  transform: scaleY(0);
  transform-origin: bottom;
  animation: line-bg-af 0.6s 2s ease forwards;
}
div.hero-area00 div.line-bg.line-bg02 {
  left: 9.0909090909%;
}
div.hero-area00 div.line-bg.line-bg03 {
  left: 18.1818181818%;
}
div.hero-area00 div.line-bg.line-bg04 {
  left: 27.2727272727%;
}
div.hero-area00 div.line-bg.line-bg05 {
  left: 36.3636363636%;
}
div.hero-area00 div.line-bg.line-bg06 {
  left: 45.4545454545%;
}
div.hero-area00 div.line-bg.line-bg07 {
  left: 54.5454545455%;
}
div.hero-area00 div.line-bg.line-bg08 {
  left: 63.6363636364%;
}
div.hero-area00 div.line-bg.line-bg09 {
  left: 72.7272727273%;
}
div.hero-area00 div.line-bg.line-bg10 {
  left: 72.7272727273%;
}
div.hero-area00 div.line-bg.line-bg11 {
  left: 81.8181818182%;
}
div.hero-area00 div.line-bg.line-bg12 {
  left: 90.9090909091%;
}
div.hero-area00 div.line-bg.line-bg13 {
  left: 100%;
}

div.hero-area01 {
  width: 100vw;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
div.hero-area01::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: var(--clred01);
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
  animation: hero-area01-bg 1s 3.8s ease forwards;
}
@keyframes hero-area01-bg {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
div.hero-area01 div.scroll-wrap {
  color: #fff;
  position: absolute;
  width: 7vw;
  height: 23vw;
  bottom: 5vw;
  left: 5vw;
}
@media screen and (min-width: 768px) {
  div.hero-area01 div.scroll-wrap {
    width: 32px;
    height: 110px;
    bottom: 30px;
    left: 30px;
  }
}
div.hero-area01 div.scroll-wrap span {
  display: block;
}
div.hero-area01 div.scroll-wrap .line {
  width: 1px;
  height: 100%;
  background: #e3868a;
  font-weight: 500;
  position: relative;
}
div.hero-area01 div.scroll-wrap .line::after {
  content: "";
  display: block;
  width: 1px;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  animation: scrollline 2.6s ease infinite;
  z-index: 1;
}
@keyframes scrollline {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  37% {
    transform: scaleY(1);
    transform-origin: top;
  }
  43% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
  80% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
}
div.hero-area01 div.scroll-wrap .txt {
  text-align: center;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  position: absolute;
  top: 0;
  right: 0;
  transform: rotate(90deg) translate(10px, -13px);
}
@media screen and (min-width: 768px) {
  div.hero-area01 div.scroll-wrap .txt {
    font-size: 16px;
  }
}
div.hero-area01 .hero-txt01 {
  color: #fff;
  font-family: "Poppins", sans-serif;
  line-height: 1em;
  text-align: center;
  position: absolute;
  width: 100%;
  font-weight: bold;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 18vw;
}
@media screen and (min-width: 768px) {
  div.hero-area01 .hero-txt01 {
    font-size: 15.66vw;
  }
}
div.hero-area01 .hero-txt01 .txt {
  letter-spacing: -0.1em;
  line-height: 1em;
}
@keyframes herotxt01 {
  0% {
    transform: translate(100%, 0);
    opacity: 0;
  }
  100% {
    transform: translate(0);
    opacity: 1;
  }
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd {
  display: inline-block;
  transform: translate(100%, 0) scale(0.7);
  opacity: 0;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(1) {
  animation: herotxt02 0.5s 4.2s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(2) {
  animation: herotxt02 0.5s 4.22s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(3) {
  animation: herotxt02 0.5s 4.24s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(4) {
  animation: herotxt02 0.5s 4.26s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(5) {
  animation: herotxt02 0.5s 4.28s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(6) {
  animation: herotxt02 0.5s 4.6s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(7) {
  animation: herotxt02 0.5s 4.62s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(8) {
  animation: herotxt02 0.5s 4.64s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt01 .hd:nth-of-type(9) {
  animation: herotxt02 0.5s 4.66s ease forwards;
}
@keyframes herotxt02 {
  0% {
    transform: translate(100%, 0) scale(1);
    opacity: 0;
  }
  100% {
    transform: translate(0) scale(1);
    opacity: 1;
  }
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd {
  display: inline-block;
  transform: translate(100%, 0) scale(0.7);
  opacity: 0;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(1) {
  animation: herotxt02 0.5s 4.4s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(2) {
  animation: herotxt02 0.5s 4.42s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(3) {
  animation: herotxt02 0.5s 4.44s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(4) {
  animation: herotxt02 0.5s 4.46s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(5) {
  animation: herotxt02 0.5s 4.48s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(6) {
  animation: herotxt02 0.5s 4.5s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(7) {
  animation: herotxt02 0.5s 4.52s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(8) {
  animation: herotxt02 0.5s 4.54s ease forwards;
}
div.hero-area01 .hero-txt01 .txt.txt02 .hd:nth-of-type(9) {
  animation: herotxt02 0.5s 4.56s ease forwards;
}
div.hero-area01 .hero-txt01 .line-wrap {
  display: block;
  position: relative;
  width: 7.2vw;
  height: 10vw;
  margin: 1vw auto 0;
}
@media screen and (min-width: 768px) {
  div.hero-area01 .hero-txt01 .line-wrap {
    width: 7.2vw;
    height: 11.4vw;
    margin: 1vw auto 0;
  }
}
div.hero-area01 .hero-txt01 .line-wrap .line {
  content: "";
  display: block;
  position: absolute;
  width: 30%;
  height: 100%;
  background-color: #fff;
}
@keyframes line01 {
  0% {
    clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
div.hero-area01 .hero-txt01 .line-wrap .line.line01 {
  clip-path: polygon(0 0, 100% 0, 100% 0, 0 0);
  left: 0;
  animation: line01 0.6s 4.6s cubic-bezier(0.37, 0.01, 0, 0.99) forwards;
}
@keyframes line02 {
  0% {
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  }
  100% {
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
  }
}
div.hero-area01 .hero-txt01 .line-wrap .line.line02 {
  clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
  right: 0;
  animation: line02 0.6s 4.6s cubic-bezier(0.37, 0.01, 0, 0.99) forwards;
}

div.hero-area02 {
  padding-top: 100vh;
  position: relative;
  overflow: hidden;
  z-index: 1;
  padding-bottom: 20vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 {
    padding-bottom: 200px;
  }
}
div.hero-area02::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 200px;
  background-color: #fff;
}
div.hero-area02 .g-trigger01 {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 50vh;
  background-color: rgb(255, 0, 132);
  opacity: 0;
  pointer-events: none;
}
div.hero-area02 .top-circle {
  display: block;
  position: absolute;
  top: 95vh;
  left: 0;
  right: 0;
  margin: auto;
  width: 100vw;
  height: 100vw;
  background-color: #fff;
  border-radius: 50vw;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  div.hero-area02 .top-circle {
    width: 100vw;
    height: 100vw;
  }
}
@keyframes circle-pulu {
  0% {
    transform: scale(1, 1) translate(0%, 0%);
    transform-origin: bottom center;
  }
  20% {
    transform: scale(1.01, 1.01) translate(0%, 0%);
    transform-origin: bottom center;
  }
  40% {
    transform: scale(1, 1) translate(0%, 0%);
    transform-origin: bottom center;
  }
}
div.hero-area02 .top-circle::after {
  content: "";
  display: block;
  position: absolute;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50vw;
  animation: circle-pulu 1.8s 0s cubic-bezier(0.253, 0.001, 0, 0.984) infinite;
}
div.hero-area02 div.wh-bg {
  padding: 10vw 0;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.wh-bg {
    padding: 50px 0;
  }
}
div.hero-area02 h2 {
  text-align: center;
}
div.hero-area02 h2 span {
  display: block;
}
div.hero-area02 h2 .en {
  color: var(--clred01);
  margin-bottom: 0.4em;
  font-size: 5.6vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 h2 .en {
    font-size: 37px;
  }
}
@media screen and (min-width: 1000px) {
  div.hero-area02 h2 .en {
    font-size: 41px;
  }
}
div.hero-area02 h2 .ja {
  font-size: 9vw;
  line-height: 1.4em;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  div.hero-area02 h2 .ja {
    font-size: 65px;
  }
}
@media screen and (min-width: 1000px) {
  div.hero-area02 h2 .ja {
    font-size: 74px;
  }
}
div.hero-area02 div.hero-area02-slide {
  position: relative;
  z-index: 2;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.hero-area02-slide {
    margin-bottom: 100px;
  }
}
div.hero-area02 div.hero-area02-slide #stage {
  position: relative;
  width: 100%;
  height: 50vw;
  overflow: hidden;
}
div.hero-area02 div.hero-area02-slide .photo {
  position: absolute;
  left: 35%;
  top: 25%;
  width: 30%;
  will-change: transform, filter;
}
div.hero-area02 #photo1 {
  animation: slidepass6 25s infinite;
  animation-delay: -20.8333s;
}
div.hero-area02 #photo2 {
  animation: slidepass6 25s infinite;
  animation-delay: -16.6667s;
}
div.hero-area02 #photo3 {
  animation: slidepass6 25s infinite;
  animation-delay: -12.5s;
}
div.hero-area02 #photo4 {
  animation: slidepass6 25s infinite;
  animation-delay: -8.3333s;
}
div.hero-area02 #photo5 {
  animation: slidepass6 25s infinite;
  animation-delay: -4.1667s;
}
div.hero-area02 #photo6 {
  animation: slidepass6 25s infinite;
  animation-delay: 0s;
}
@keyframes slidepass6 {
  /* 正面（0deg） */
  0% {
    transform: perspective(120vw) rotateY(0deg) translateZ(50vw) scale(1.1);
    z-index: 20;
    filter: blur(0px);
  }
  10% {
    transform: perspective(120vw) rotateY(0deg) translateZ(50vw) scale(1.1);
    z-index: 20;
    filter: blur(0px);
  }
  /* 60deg */
  16.666% {
    transform: perspective(120vw) rotateY(60deg) translateZ(50vw);
    z-index: 18;
    filter: blur(5px) grayscale(100%);
  }
  26.666% {
    transform: perspective(120vw) rotateY(60deg) translateZ(50vw);
    z-index: 18;
    filter: blur(5px) grayscale(100%);
  }
  /* 120deg */
  33.333% {
    transform: perspective(120vw) rotateY(120deg) translateZ(50vw);
    z-index: 14;
    filter: blur(5px) grayscale(100%);
  }
  43.333% {
    transform: perspective(120vw) rotateY(120deg) translateZ(50vw);
    z-index: 14;
    filter: blur(5px) grayscale(100%);
  }
  /* 180deg */
  50% {
    transform: perspective(120vw) rotateY(180deg) translateZ(50vw);
    z-index: 8;
    filter: blur(5px) grayscale(100%);
  }
  60% {
    transform: perspective(120vw) rotateY(180deg) translateZ(50vw);
    z-index: 8;
    filter: blur(5px) grayscale(100%);
  }
  /* 240deg */
  66.666% {
    transform: perspective(120vw) rotateY(240deg) translateZ(50vw);
    z-index: 10;
    filter: blur(5px) grayscale(100%);
  }
  76.666% {
    transform: perspective(120vw) rotateY(240deg) translateZ(50vw);
    z-index: 10;
    filter: blur(5px) grayscale(100%);
  }
  /* 300deg */
  83.333% {
    transform: perspective(120vw) rotateY(300deg) translateZ(50vw);
    z-index: 12;
    filter: blur(5px) grayscale(100%);
  }
  93.333% {
    transform: perspective(120vw) rotateY(300deg) translateZ(50vw);
    z-index: 12;
    filter: blur(5px) grayscale(100%);
  }
  /* 戻り（360deg） */
  100% {
    transform: perspective(120vw) rotateY(360deg) translateZ(50vw) scale(1.1);
    z-index: 16;
    filter: blur(0px);
  }
}
div.hero-area02 div.txt-area {
  box-sizing: border-box;
  position: relative;
  padding: 0 7vw;
  font-size: 6.67vw;
  font-weight: bold;
  line-height: 1.2em;
  letter-spacing: 0.07em;
  padding-top: 20vw;
  z-index: 1;
  text-align: justify;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area {
    padding-top: 10vw;
    padding: 0 5vw;
    letter-spacing: -0.021em;
    font-size: 3.95vw;
  }
}
div.hero-area02 div.txt-area::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 30vw;
  background: #fff;
  transform: translate(0, -100%);
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area::before {
    content: none;
  }
}
div.hero-area02 div.txt-area::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  background-color: #fff;
  z-index: -1;
}
div.hero-area02 div.txt-area .hero-area02-g-trigger {
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 8vw;
  opacity: 0;
  pointer-events: none;
}
@media screen and (min-width: 1000px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger {
    height: 6vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger02 {
  top: 8vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger02 {
    top: 5vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger03 {
  top: 16vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger03 {
    top: 10vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger04 {
  top: 24vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger04 {
    top: 15vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger05 {
  top: 32vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger05 {
    top: 20vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger06 {
  top: 40vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger06 {
    top: 25vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger07 {
  top: 48vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger07 {
    top: 30vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger08 {
  top: 56vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger08 {
    top: 35vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger09 {
  top: 64vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger09 {
    top: 40vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger10 {
  top: 72vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger10 {
    top: 45vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger11 {
  top: 80vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger11 {
    top: 50vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger12 {
  top: 88vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger12 {
    top: 55vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger13 {
  top: 96vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger13 {
    top: 60vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger14 {
  top: 104vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger14 {
    top: 65vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger15 {
  top: 112vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger15 {
    top: 70vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger16 {
  top: 120vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger16 {
    top: 75vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger17 {
  top: 128vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger17 {
    top: 80vw;
  }
}
div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger18 {
  top: 136vw;
}
@media screen and (min-width: 768px) {
  div.hero-area02 div.txt-area .hero-area02-g-trigger.hero-area02-g-trigger18 {
    top: 85vw;
  }
}
div.hero-area02 div.txt-area p {
  text-align: justify;
  word-break: break-all;
  line-height: 1.6em;
}
div.hero-area02 div.txt-area p span.ani-bg {
  -webkit-text-fill-color: transparent;
  background: linear-gradient(90deg, #000 50%, #b3b3b3 50.1%);
  background-position: 100% 0%;
  background-size: 300% 100%;
  -webkit-background-clip: text;
  background-clip: text;
}

/*===================================================================================================*/
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.work-txt-wrap,
.environment-txt-wrap,
.company-txt-box,
.sec-data .base-btn,
.sec-people .top-txt01 {
  opacity: 0;
}
.work-txt-wrap.animation,
.environment-txt-wrap.animation,
.company-txt-box.animation,
.sec-data .base-btn.animation,
.sec-people .top-txt01.animation {
  animation: fade 1.6s 0.2s ease forwards;
}

.people-slide-wrap .txt-box-inner {
  opacity: 0;
}
.people-slide-wrap.animation .txt-box-inner {
  opacity: 0;
  animation: fade 1.6s 0.2s ease forwards;
}

.top-title {
  position: relative;
  display: inline-block;
}
@keyframes top-title {
  0% {
    transform: translate(0, 1.2em);
  }
  100% {
    transform: translate(0, 0);
  }
}
.top-title.animation .en span.inner span {
  animation: top-title 1.2s cubic-bezier(0.62, 0, 0, 1) forwards;
}
.top-title.animation .ja span {
  animation: top-title 0.6s 0.4s cubic-bezier(0.62, 0, 0, 1) forwards;
}
.top-title .en {
  display: inline-block;
  font-family: "Poppins", sans-serif;
  margin-right: 0.4em;
  font-size: 12vw;
  line-height: 1.2em;
  letter-spacing: 0.06em;
}
@media screen and (min-width: 768px) {
  .top-title .en {
    font-size: 60px;
  }
}
@media screen and (min-width: 1000px) {
  .top-title .en {
    font-size: 70px;
  }
}
@media screen and (min-width: 1280px) {
  .top-title .en {
    font-size: 82px;
  }
}
.top-title .en span.inner {
  border-bottom: #fff solid 10px;
  display: inline-block;
  height: 1.2em;
  overflow: hidden;
}
.top-title .en span.inner span {
  display: inline-block;
  transform: translate(0, 1.2em);
}
.top-title .ja {
  display: inline-block;
  margin-top: 0.8em;
  line-height: 1.2em;
  height: 1.2em;
  overflow: hidden;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  .top-title .ja {
    margin-top: 1em;
    font-size: 20px;
  }
}
@media screen and (min-width: 1000px) {
  .top-title .ja {
    font-size: 25px;
  }
}
@media screen and (min-width: 1280px) {
  .top-title .ja {
    font-size: 30px;
  }
}
.top-title .ja span {
  display: inline-block;
  transform: translate(0, 1.2em);
}

p.top-txt01 {
  line-height: 1.8em;
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  p.top-txt01 {
    font-size: 19px;
  }
}
@media screen and (min-width: 1000px) {
  p.top-txt01 {
    font-size: 23px;
  }
}

p.top-txt02 {
  font-size: 4.26vw;
  font-weight: 400;
  line-height: 2em;
  margin-bottom: 2em;
}
@media screen and (min-width: 768px) {
  p.top-txt02 {
    font-size: 14px;
  }
}
@media screen and (min-width: 1000px) {
  p.top-txt02 {
    font-size: 16px;
  }
}

.sec-wrap {
  background-color: #fff;
  position: relative;
  z-index: 0;
  width: 100vw;
}
.sec-wrap div.sec-wrap-img-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: -2;
  opacity: 0;
}
.sec-wrap div.sec-wrap-img-bg div.sec-wrap-img-bg01 {
  width: 100%;
  height: 100%;
}
.sec-wrap div.sec-wrap-img-bg div.sec-wrap-img-bg02 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.sec-wrap div.sec-wrap-img-bg img {
  height: 100vh;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec-wrap div.sec-wrap-img-bg-area {
  position: relative;
}
.sec-wrap div.sec-wrap-img-bg-area01 {
  clip-path: inset(0 0 0 0);
  opacity: 0;
  z-index: -1;
  height: 60vw;
}
@media screen and (min-width: 768px) {
  .sec-wrap div.sec-wrap-img-bg-area01 {
    height: calc(40vw + 100px);
  }
}
.sec-wrap div.sec-wrap-img-bg-area01::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -3;
  background: url(../myimg/top/sec-wrap-bg01_sp.png) no-repeat;
  background: url(../myimg/top/sec-wrap-bg01_sp.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .sec-wrap div.sec-wrap-img-bg-area01::after {
    background: url(../myimg/top/sec-wrap-bg01_pc.png) no-repeat;
    background: url(../myimg/top/sec-wrap-bg01_pc.webp) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}
.sec-wrap div.sec-wrap-img-bg-area02 {
  clip-path: inset(0 0 0 0);
  height: 70vw;
  margin-top: -10vw;
}
@media screen and (min-width: 768px) {
  .sec-wrap div.sec-wrap-img-bg-area02 {
    height: calc(40vw + 200px);
    margin-top: -100px;
  }
}
.sec-wrap div.sec-wrap-img-bg-area02::after {
  content: "";
  display: block;
  width: 100%;
  height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -3;
  background: url(../myimg/top/sec-wrap-bg02_sp.png) no-repeat;
  background: url(../myimg/top/sec-wrap-bg02_sp.webp) no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (min-width: 768px) {
  .sec-wrap div.sec-wrap-img-bg-area02::after {
    background: url(../myimg/top/sec-wrap-bg02_pc.png) no-repeat;
    background: url(../myimg/top/sec-wrap-bg02_pc.webp) no-repeat;
    background-size: cover;
    background-position: center center;
  }
}

section.sec-work {
  border-radius: 10vw 10vw 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-work {
    border-radius: 70px 70px 0 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-work {
    border-radius: 100px 100px 0 0;
  }
}
section.sec-work {
  position: relative;
  z-index: 1;
  background-color: #fff;
  padding: 20vw 0;
}
@media screen and (min-width: 768px) {
  section.sec-work {
    padding: 140px 0;
  }
}
section.sec-work::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clgray03);
  border-radius: 10vw 10vw 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-work::after {
    border-radius: 70px 70px 0 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-work::after {
    border-radius: 100px 100px 0 0;
  }
}
section.sec-work div.sec-work-inner {
  position: relative;
  z-index: 1;
  width: 84%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-work div.sec-work-inner {
    width: 90%;
    max-width: 1000px;
  }
}
section.sec-work div.work-box {
  margin-top: 12vw;
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-box {
    margin-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
  }
}
section.sec-work div.work-box div.work-img {
  position: relative;
  margin-bottom: 10vw;
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-box div.work-img {
    width: 47%;
    margin-bottom: 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-work div.work-box div.work-img {
    width: 54%;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-work div.work-box div.work-img {
    width: 62%;
  }
}
@media screen and (min-width: 768px) {
  section.sec-work div.work-box div.work-txt-wrap {
    width: 47%;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-work div.work-box div.work-txt-wrap {
    width: 40%;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-work div.work-box div.work-txt-wrap {
    width: 32%;
  }
}

div.sec-data-wrap {
  height: 500vh;
  position: relative;
  overflow: clip;
}
@media screen and (min-width: 768px) {
  div.sec-data-wrap {
    height: 525vh;
  }
}
div.sec-data-wrap::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  width: 0;
  height: 100%;
  pointer-events: none;
}
div.sec-data-wrap .card {
  position: sticky;
  top: 0;
  height: 100vh;
  left: 15%;
  width: 70%;
  box-sizing: border-box;
  padding-top: 80vw;
}
@media screen and (min-width: 768px) {
  div.sec-data-wrap .card {
    height: 105vh;
    width: 30%;
    left: 60%;
    padding-top: 29vh;
  }
}
@media screen and (min-width: 1000px) {
  div.sec-data-wrap .card {
    left: 60%;
    max-width: 400px;
  }
}
@media screen and (min-width: 1280px) {
  div.sec-data-wrap .card {
    left: 55%;
  }
}
div.sec-data-wrap .card img {
  box-shadow: 1px 1px 7px rgba(173, 172, 172, 0.6470588235);
  border-radius: 1em;
}
div.sec-data-wrap .card.card02 {
  transform: rotate(5deg);
}
div.sec-data-wrap .card.card03 {
  transform: rotate(-5deg);
}
div.sec-data-wrap .card.card04 {
  transform: rotate(10deg);
}
div.sec-data-wrap .card div.card-inner {
  position: relative;
}
div.sec-data-wrap .card div.card-inner .icon {
  position: absolute;
  top: 51%;
  left: 0;
  right: 0;
  margin: auto;
  width: 40%;
  border-radius: 50em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  div.sec-data-wrap .card div.card-inner .icon {
    top: 51%;
  }
}

section.sec-data {
  background-color: var(--clgray03);
  height: 100vh;
  position: sticky;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  section.sec-data {
    min-height: 500px;
    height: 105vh;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-data {
    min-height: 600px;
  }
}
section.sec-data::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clred01);
  border-radius: 10vw 10vw 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-data::after {
    border-radius: 70px 70px 0 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-data::after {
    border-radius: 100px 100px 0 0;
  }
}
section.sec-data div.sec-data-inner {
  position: relative;
  z-index: 1;
  padding: 15vw 0;
  width: 84%;
  height: 100vh;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-data div.sec-data-inner {
    width: 90%;
    max-width: 1200px;
    height: 100vh;
    box-sizing: border-box;
    padding-top: var(--header-h);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    padding: 0;
  }
}
section.sec-data div.sec-data-inner div.data-txt-wrap {
  color: #fff;
}
@media screen and (min-width: 768px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap {
    width: 45%;
  }
}
section.sec-data div.sec-data-inner div.data-txt-wrap .top-title {
  margin-bottom: 90vw;
}
@media screen and (min-width: 768px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title {
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title {
    margin-bottom: 35px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title .en {
    font-size: 50px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title .en {
    font-size: 65px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title .en {
    font-size: 70px;
  }
}
section.sec-data div.sec-data-inner div.data-txt-wrap .top-title .en span {
  border-bottom: #db595e solid 10px;
}
@media screen and (min-width: 768px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title .ja {
    font-size: 16px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title .ja {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-data div.sec-data-inner div.data-txt-wrap .top-title .ja {
    font-size: 20px;
  }
}
section.sec-data div.sec-data-inner div.data-txt-wrap a.base-btn {
  color: #fff;
}
section.sec-data div.sec-data-inner div.data-txt-wrap a.base-btn .base-arrow-wrap .arrow {
  background-color: #fff;
}
section.sec-data div.sec-data-inner div.data-txt-wrap a.base-btn .base-arrow-wrap .arrow::before, section.sec-data div.sec-data-inner div.data-txt-wrap a.base-btn .base-arrow-wrap .arrow::after {
  background-color: var(--clred01);
}
section.sec-data div.sec-data-inner div.data-txt-wrap a.base-btn .base-arrow-wrap .circle {
  background: #fff;
}

div.sec-data-sptxt-wrap {
  padding: 5vw 0 20vw;
  background-color: var(--clred01);
  color: #fff;
}
div.sec-data-sptxt-wrap a.base-btn {
  color: #fff;
}
div.sec-data-sptxt-wrap a.base-btn .base-arrow-wrap .arrow {
  background-color: #fff;
}
div.sec-data-sptxt-wrap a.base-btn .base-arrow-wrap .arrow::before, div.sec-data-sptxt-wrap a.base-btn .base-arrow-wrap .arrow::after {
  background-color: var(--clred01);
}
div.sec-data-sptxt-wrap a.base-btn .base-arrow-wrap .circle {
  background: #fff;
}

div.sec-data-sptxt {
  width: 84%;
  margin: auto;
}

p.data-txt01 {
  font-weight: bold;
  margin-bottom: 1em;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  p.data-txt01 {
    font-size: 18px;
  }
}
@media screen and (min-width: 1280px) {
  p.data-txt01 {
    font-size: 23px;
  }
}

p.data-txt02 {
  margin-bottom: 3em;
  font-size: 4.26vw;
  line-height: 2em;
}
@media screen and (min-width: 768px) {
  p.data-txt02 {
    margin-bottom: 2em;
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  p.data-txt02 {
    margin-bottom: 3em;
    font-size: 14px;
  }
}
@media screen and (min-width: 1280px) {
  p.data-txt02 {
    font-size: 16px;
  }
}

div.entry-link-area-wrap {
  overflow: hidden;
  position: relative;
  border-top: solid 4px #fff;
  border-bottom: solid 4px #fff;
  box-sizing: border-box;
}
div.entry-link-area-wrap a.entry-link-area {
  display: flex;
  overflow: hidden;
  width: 380vw;
  background-color: #fff;
  padding: 8vw 0;
  font-weight: bold;
}
@media screen and (min-width: 768px) {
  div.entry-link-area-wrap a.entry-link-area {
    width: 200vw;
    padding: 4.6vw 0;
    transition: all 0.3s;
  }
  div.entry-link-area-wrap a.entry-link-area:hover {
    background-color: var(--clred01);
    color: #fff;
    letter-spacing: 0.12em;
    box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.8588235294);
  }
}
div.entry-link-area-wrap a.entry-link-area .slider {
  animation: scroll-left 20s infinite linear 0.5s both;
  width: 100%;
}
@keyframes scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap {
  display: flex;
  align-items: center;
  font-family: "Poppins", sans-serif;
  font-size: 12vw;
}
@media screen and (min-width: 768px) {
  div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap {
    font-size: 6.04vw;
  }
}
div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap p.entry-txt {
  display: inline-block;
  line-height: 1.2em;
}
div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap div.btn {
  display: inline-block;
  background-color: var(--clred01);
  line-height: 1.2em;
  box-sizing: border-box;
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  box-sizing: border-box;
  padding: 0.4em 1em 0.4em 1em;
  border-radius: 0.4em;
  letter-spacing: 0.1em;
  line-height: 1em;
  margin-left: 2vw;
  border: 2px solid #fff;
  font-size: 5.4vw;
}
@media screen and (min-width: 768px) {
  div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap div.btn {
    font-size: 3.9vw;
    width: 22vw;
    border-radius: 0.1em;
    padding: 0.24em 0.4em 0.24em 0.6em;
  }
}
div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap div.btn .arrow {
  display: block;
  width: 1em;
  margin-left: 0.4em;
}
@media screen and (min-width: 768px) {
  div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap div.btn .arrow {
    width: 0.7em;
    margin: 0;
  }
}
div.entry-link-area-wrap a.entry-link-area div.entry-txt-wrap div.btn .arrow .cls-1 {
  fill: #fff;
}

section.sec-people {
  background-color: var(--clgray03);
  border-radius: 10vw;
}
@media screen and (min-width: 768px) {
  section.sec-people {
    border-radius: 70px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people {
    border-radius: 100px;
  }
}
section.sec-people {
  position: relative;
  overflow: hidden;
  z-index: 1;
  margin-top: -10vw;
}
@media screen and (min-width: 768px) {
  section.sec-people {
    margin-top: -100px;
  }
}
section.sec-people div.sec-people-inner {
  position: relative;
  width: 84%;
  margin: auto;
  padding: 20vw 0;
}
@media screen and (min-width: 768px) {
  section.sec-people div.sec-people-inner {
    width: 90%;
    max-width: 1200px;
    padding: 125px 0 155px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-txt-wrap {
    position: absolute;
    top: 130px;
    right: 0;
    width: 60%;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-txt-wrap {
    top: 7vw;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-people div.people-txt-wrap {
    top: 125px;
  }
}
section.sec-people div.people-txt-wrap h2 {
  margin-bottom: 2em;
}
section.sec-people div.people-txt-wrap div.swiper-button-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 27vw;
  position: absolute;
  top: 68vw;
  right: 0;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-txt-wrap div.swiper-button-wrap {
    position: relative;
    top: 0;
    width: 140px;
    margin-top: 20px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-txt-wrap div.swiper-button-wrap {
    margin-top: 40px;
  }
}
section.sec-people div.people-txt-wrap div.swiper-button-prev, section.sec-people div.people-txt-wrap div.swiper-button-next {
  position: revert;
  transform: translate(0);
  margin: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 10vw;
  height: 10vw;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-txt-wrap div.swiper-button-prev, section.sec-people div.people-txt-wrap div.swiper-button-next {
    width: 55px;
    height: 29px;
  }
  section.sec-people div.people-txt-wrap div.swiper-button-prev:hover .base-arrow-wrap .arrow, section.sec-people div.people-txt-wrap div.swiper-button-next:hover .base-arrow-wrap .arrow {
    transform: translate(3px, 0);
  }
  section.sec-people div.people-txt-wrap div.swiper-button-prev:hover .base-arrow-wrap .circle, section.sec-people div.people-txt-wrap div.swiper-button-next:hover .base-arrow-wrap .circle {
    transform: translate(0, -50%) scale(1.4);
    box-shadow: inset 0.4px 0.4px 2px rgba(80, 78, 78, 0.6588235294);
  }
}
section.sec-people div.people-txt-wrap div.swiper-button-prev::after, section.sec-people div.people-txt-wrap div.swiper-button-next::after {
  content: none;
  margin-top: 0;
  left: 0;
  right: 0;
  top: 0;
}
section.sec-people div.people-txt-wrap div.swiper-button-prev .base-arrow-wrap, section.sec-people div.people-txt-wrap div.swiper-button-next .base-arrow-wrap {
  width: 100%;
}
section.sec-people div.people-txt-wrap div.swiper-button-prev .arrow, section.sec-people div.people-txt-wrap div.swiper-button-next .arrow {
  transform: translate(0, 0);
  left: 0px;
  width: calc(100% - 12px);
}
section.sec-people div.people-txt-wrap div.swiper-button-prev .arrow::before, section.sec-people div.people-txt-wrap div.swiper-button-prev .arrow::after, section.sec-people div.people-txt-wrap div.swiper-button-next .arrow::before, section.sec-people div.people-txt-wrap div.swiper-button-next .arrow::after {
  width: 2vw;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-txt-wrap div.swiper-button-prev .arrow::before, section.sec-people div.people-txt-wrap div.swiper-button-prev .arrow::after, section.sec-people div.people-txt-wrap div.swiper-button-next .arrow::before, section.sec-people div.people-txt-wrap div.swiper-button-next .arrow::after {
    width: 12px;
  }
}
section.sec-people div.people-txt-wrap div.swiper-button-prev .circle, section.sec-people div.people-txt-wrap div.swiper-button-next .circle {
  background: #fff;
  transition: all 0.2s;
  width: 8vw;
  height: 8vw;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-txt-wrap div.swiper-button-prev .circle, section.sec-people div.people-txt-wrap div.swiper-button-next .circle {
    width: 29px;
    height: 29px;
  }
}
section.sec-people div.people-txt-wrap div.swiper-button-prev {
  transform: rotate(180deg);
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-txt-wrap div.swiper-button-prev:hover .base-arrow-wrap .circle {
    box-shadow: inset -0.4px -0.4px 2px rgba(80, 78, 78, 0.6588235294);
  }
}
section.sec-people div.people-slide-wrap {
  position: relative;
  width: 85%;
  margin: 10vw auto 0;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide-wrap {
    width: 100%;
    margin: 0;
  }
  section.sec-people div.people-slide-wrap::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50vw;
    height: 110%;
    left: 0;
    transform: translate(-100%, 0);
    background-color: var(--clgray03);
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide {
    height: 50vw;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-slide {
    height: 43vw;
  }
}
@media screen and (min-width: 1280px) {
  section.sec-people div.people-slide {
    height: 600px;
  }
}
section.sec-people div.people-slide .swiper-wrapper {
  align-items: flex-end;
}
section.sec-people div.people-slide .swiper-slide {
  transition: all 0.3s;
  height: auto;
}
section.sec-people div.people-slide .swiper-slide a {
  display: block;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .swiper-slide a:hover .people-img img {
    transform: scale(1.1);
  }
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .swiper-slide-active {
    width: 35% !important;
    z-index: 2;
  }
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .swiper-slide-active .people-img {
    transform: translate(0, -135px);
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-slide .swiper-slide-active .people-img {
    transform: translate(0, -150px);
  }
}
section.sec-people div.people-slide .swiper-slide-active .people-img span.tag {
  transform: scale(1);
}
section.sec-people div.people-slide .swiper-slide-active .txt-box {
  display: block;
  opacity: 1;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0% 100%);
}
section.sec-people div.people-slide .people-img {
  position: relative;
  display: block;
  transition: 0.4s;
  overflow: hidden;
}
section.sec-people div.people-slide .people-img img {
  transition: all 0.3s;
}
section.sec-people div.people-slide .people-img span.tag {
  position: absolute;
  width: 18vw;
  height: 23vw;
  top: 0;
  left: 0;
  color: #fff;
  font-weight: bold;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  box-sizing: border-box;
  transform-origin: top left;
  transform: scale(0.6);
  transition: 0.4s;
  padding: 2vw 0 0 2vw;
  font-size: 3.73vw;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .people-img span.tag {
    width: 100px;
    height: 120px;
    font-size: 22px;
    padding: 15px 0 0 15px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-slide .people-img span.tag {
    width: 127px;
    height: 141px;
    font-size: 27px;
    padding: 20px 0 0 15px;
  }
}
section.sec-people div.people-slide .people-img span.tag.newgraduate {
  background: var(--clnewgraduate);
}
section.sec-people div.people-slide .people-img span.tag.midcareer {
  background: var(--clmidcareer);
}
section.sec-people div.people-slide .txt-box {
  bottom: 0;
  opacity: 0;
  transition: all 0.5s;
  margin-top: 5vw;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .txt-box {
    height: 120px;
    position: absolute;
    clip-path: polygon(0 100%, 100% 100%, 100% 100%, 0% 100%);
    margin-top: 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-slide .txt-box {
    height: 140px;
  }
}
section.sec-people div.people-slide .txt-box .copy {
  font-weight: bold;
  margin-bottom: 0.8em;
  line-height: 2em;
  letter-spacing: 0.12em;
  font-size: 4.26vw;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .txt-box .copy {
    margin-bottom: 0.5em;
    font-size: 15px;
    line-height: 1.6em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-slide .txt-box .copy {
    font-size: 20px;
  }
}
section.sec-people div.people-slide .txt-box .category {
  line-height: 1.2em;
  margin-bottom: 0.8em;
  font-size: 4vw;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .txt-box .category {
    font-size: 12px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-slide .txt-box .category {
    font-size: 14px;
  }
}
section.sec-people div.people-slide .txt-box .category span {
  display: inline-block;
  background-color: #fff;
}
section.sec-people div.people-slide .txt-box .category .tag {
  font-weight: bold;
  border: solid 1px;
  box-sizing: border-box;
  padding: 0.2em 0.4em;
  border-radius: 50em;
  margin-right: 0.8em;
}
section.sec-people div.people-slide .txt-box .category .tag.newgraduate {
  color: var(--clnewgraduate);
}
section.sec-people div.people-slide .txt-box .category .tag.midcareer {
  color: var(--clmidcareer);
}
section.sec-people div.people-slide .txt-box .category .name {
  font-weight: bold;
  line-break: 1.2em;
  font-size: 4.8vw;
  background: none;
}
@media screen and (min-width: 768px) {
  section.sec-people div.people-slide .txt-box .category .name {
    transform: translate(0, 0.08em);
    font-size: 18px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-people div.people-slide .txt-box .category .name {
    font-size: 20px;
  }
}

section.sec-environment {
  background-color: #fff;
  border-radius: 10vw 10vw 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-environment {
    border-radius: 70px 70px 0 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-environment {
    border-radius: 100px 100px 0 0;
  }
}
section.sec-environment {
  position: relative;
  z-index: 1;
  margin-top: -10vw;
  padding: 20vw 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  section.sec-environment {
    margin-top: -100px;
    padding: 140px 0;
  }
}
section.sec-environment div.sec-environment-inner {
  width: 84%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner {
    width: 90%;
    max-width: 1000px;
  }
}
section.sec-environment div.sec-environment-inner .top-title .en span {
  border-bottom: var(--clgray03) solid 10px;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-box {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: 10px;
  }
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-box div.environment-txt-wrap {
    order: -1;
  }
}
section.sec-environment div.sec-environment-inner div.environment-box div.environment-txt-wrap a.base-btn span.base-arrow-wrap span.circle {
  background-color: var(--clred01);
}
section.sec-environment div.sec-environment-inner div.environment-box div.environment-img {
  position: relative;
  margin: 10vw 0;
}
@media screen and (min-width: 768px) {
  section.sec-environment div.sec-environment-inner div.environment-box div.environment-img {
    width: 56%;
    margin: 0;
  }
}

section.sec-company {
  background-color: #fff;
  position: relative;
}
section.sec-company::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--clred01);
  border-radius: 10vw 10vw 0 0;
}
@media screen and (min-width: 768px) {
  section.sec-company::after {
    border-radius: 70px 70px 0 0;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-company::after {
    border-radius: 100px 100px 0 0;
  }
}
section.sec-company div.sec-company-inner {
  position: relative;
  z-index: 1;
  padding: 20vw 0;
  width: 84%;
  margin: auto;
}
@media screen and (min-width: 768px) {
  section.sec-company div.sec-company-inner {
    width: 90%;
    max-width: 1000px;
    padding: 160px 0;
  }
}
section.sec-company div.company-box {
  display: flex;
  flex-direction: column;
}
@media screen and (min-width: 768px) {
  section.sec-company div.company-box {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}
section.sec-company div.company-img-wrap {
  order: 1;
  margin: 10vw 0;
}
@media screen and (min-width: 768px) {
  section.sec-company div.company-img-wrap {
    width: 42%;
    margin: 0;
  }
}
section.sec-company div.company-img-wrap div.company-img {
  position: relative;
}
section.sec-company div.company-img-wrap div.company-img:nth-of-type(1) {
  margin-bottom: 5vw;
}
@media screen and (min-width: 768px) {
  section.sec-company div.company-img-wrap div.company-img:nth-of-type(1) {
    margin-bottom: 18px;
  }
}
section.sec-company div.company-txt-wrap {
  color: #fff;
  display: contents;
}
@media screen and (min-width: 768px) {
  section.sec-company div.company-txt-wrap {
    display: block;
  }
}
section.sec-company div.company-txt-wrap .top-title {
  order: 0;
}
@media screen and (min-width: 768px) {
  section.sec-company div.company-txt-wrap .top-title {
    margin-bottom: 60px;
  }
}
section.sec-company div.company-txt-wrap .top-title .en span {
  border-bottom: #db595e solid 10px;
}
section.sec-company div.company-txt-wrap div.company-txt-box {
  order: 2;
}
section.sec-company div.company-txt-wrap a.base-btn {
  color: #fff;
}
section.sec-company div.company-txt-wrap a.base-btn span.base-arrow-wrap span.arrow {
  background: #fff;
}
section.sec-company div.company-txt-wrap a.base-btn span.base-arrow-wrap span.arrow::after, section.sec-company div.company-txt-wrap a.base-btn span.base-arrow-wrap span.arrow::before {
  background-color: #fff;
}
section.sec-company div.company-txt-wrap a.base-btn span.base-arrow-wrap span.circle {
  background: none;
  border: solid 1px #fff;
}
section.sec-company a.company-message-link {
  display: block;
  background-color: #cccccc;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  position: relative;
  margin-top: 15vw;
}
@media screen and (min-width: 768px) {
  section.sec-company a.company-message-link {
    align-items: center;
    max-width: 822px;
    margin: 135px auto 0;
  }
  section.sec-company a.company-message-link:hover div.company-message-img img {
    transform: scale(1.06);
  }
  section.sec-company a.company-message-link:hover .base-arrow-wrap .arrow {
    transform: translate(-18px, 0);
  }
  section.sec-company a.company-message-link:hover .base-arrow-wrap .circle {
    transform: translate(0, -50%) scale(1.2);
    box-shadow: inset 0.6px 0.6px 3px rgba(80, 78, 78, 0.6588235294);
  }
}
section.sec-company a.company-message-link div.company-message-img {
  width: 50%;
}
@media screen and (min-width: 768px) {
  section.sec-company a.company-message-link div.company-message-img {
    width: 42%;
    margin-right: 5%;
    overflow: hidden;
  }
}
section.sec-company a.company-message-link div.company-message-img img {
  transition: all 0.3s;
}
section.sec-company a.company-message-link p {
  margin-top: 4vw;
  margin-left: 3vw;
}
@media screen and (min-width: 768px) {
  section.sec-company a.company-message-link p {
    margin: 0;
    margin-right: 50px;
  }
}
section.sec-company a.company-message-link p span {
  display: block;
}
section.sec-company a.company-message-link p span.en {
  color: var(--clred01);
  font-family: "Poppins", sans-serif;
  font-weight: bold;
  margin-bottom: 0.1em;
  font-size: 4.8vw;
}
@media screen and (min-width: 768px) {
  section.sec-company a.company-message-link p span.en {
    font-size: 23px;
    margin-bottom: 0.4em;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-company a.company-message-link p span.en {
    font-size: 25px;
  }
}
section.sec-company a.company-message-link p span.ja {
  font-weight: bold;
  letter-spacing: 0.1em;
  font-size: 4.26vw;
}
@media screen and (min-width: 768px) {
  section.sec-company a.company-message-link p span.ja {
    font-size: 26px;
  }
}
@media screen and (min-width: 1000px) {
  section.sec-company a.company-message-link p span.ja {
    font-size: 29px;
  }
}
section.sec-company a.company-message-link .base-arrow-wrap {
  width: 15vw;
  position: absolute;
  top: 23vw;
  right: 20vw;
}
@media screen and (min-width: 768px) {
  section.sec-company a.company-message-link .base-arrow-wrap {
    width: 100px;
    position: relative;
    top: 0;
    right: 0;
  }
}
section.sec-company a.company-message-link .base-arrow-wrap span.circle {
  background-color: #fff;
  width: 8vw;
  height: 8vw;
}
@media screen and (min-width: 768px) {
  section.sec-company a.company-message-link .base-arrow-wrap span.circle {
    width: 57px;
    height: 57px;
  }
}

/*=========================================== グリッド ===========================================*/
@keyframes grid-ani {
  0% {
    transform: scaleY(1);
    transform-origin: center bottom;
  }
  100% {
    transform: scaleY(0);
    transform-origin: center bottom;
  }
}
div.grid-ani {
  position: absolute;
  width: 100%;
  height: 100%;
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  grid-template-rows: repeat(7, 1fr);
  top: 0;
  left: 0;
  z-index: 1;
  pointer-events: none;
}
div.grid-ani.pc-block {
  display: none;
}
@media screen and (min-width: 768px) {
  div.grid-ani.pc-block {
    display: grid;
  }
}

div.grid-ani.wh .cell::after {
  background: #fff;
}
div.grid-ani.gray .cell::after {
  background: var(--clgray02);
}
div.grid-ani .cell {
  box-sizing: border-box;
  position: relative;
}
div.grid-ani .cell::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: var(--clred01);
  width: calc(100% + 2px);
  height: calc(100% + 2px);
}

div.grid-ani.animation .cell {
  animation: scaleIn 0.2s ease forwards;
  animation-delay: var(--delay, 0ms);
}/*# sourceMappingURL=style.css.map */