@charset "utf-8";

/* CSS Document */

/***********
mainVisual
************/

.mainVisual {
  position: relative;
  overflow: hidden;
  margin-top: 6.6vw;
}
.mainVisual-wrapper {
}

.mainVisual-video {
  vertical-align: bottom;
  width: 100%;
  max-width: 100%;
}

.mainVisual-visual {
  background-color: var(--color-main);
}
.mainVisual-img {
  width: 100%;
  left: 0;
  top: 0;
  opacity: 0;
  transition: 0.5s;
}
.mainVisual-img img {
  width: 100%;
  min-width: 100%;
}
.mainVisual-img.-no01 {
  position: relative;
}
.mainVisual-img.-no02 ,
.mainVisual-img.-no03 ,
.mainVisual-img.-no04 ,
.mainVisual-img.-no05 {
  position: absolute;
}

.mainVisual-img.-no01 {
  translate: 0 -2vw;
}
.mainVisual-img.-no02 {
  translate: 2vw 2vw;
}
.mainVisual-img.-no03 {
  translate: -2vw -2vw;
}
.mainVisual-img.-no04 {
  translate: 2vw -2vw;
}
.mainVisual-img.-no05 {
  translate: -2vw 2vw;
}
body.is-loaded .mainVisual-img {
  opacity: 1;
  translate: 0 0;
}
body.is-loaded .mainVisual-img.-no01 {
  transition-delay: 0.1s;
}
body.is-loaded .mainVisual-img.-no02 {
  transition-delay: 0.3s;
}
body.is-loaded .mainVisual-img.-no03 {
  transition-delay: 0.5s;
}
body.is-loaded .mainVisual-img.-no04 {
  transition-delay: 0.7s;
}
body.is-loaded .mainVisual-img.-no05 {
  transition-delay: 0.9s;
}

.mainVisual-logo {
  position: absolute;
  left: 1vw;
  top: 1vw;
  width: 33%;
  z-index: 2;
}



.mainVisual-cv {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 44%;
  translate: 5vw 0;
  transition: 0.3s;
  opacity: 0;
}
.mainVisual-cv::after {
  content: "";
  display: block;
  width: 120%;
  height: 30%;
  position: absolute;
  right: 0;
  bottom: 0;
  background: var(--color-main);
  transform: skewX(-15deg);
  transform-origin: left bottom;
}
.mainVisual-cv a {
  display: block;
  translate: 5px 0;
  position: relative;
  z-index: 2;
}
body.is-pc .mainVisual-cv a:hover {
  translate: 0 0;
}
.mainVisual-cv-img {
  position: relative;
  z-index: 9;
}
.mainVisual-cv-img::after {
  content: "";
  display: block;
  width: 25%;
  height: 50%;
  position: absolute;
  right: 98%;
  bottom: 0;
  background: url(../../img/manga_badge.png) no-repeat 0 0 / 100% auto;
  animation: anim-mainVisualBtn 2.5s infinite -1s;
}
.mainVisual-cv-robot {
  position: absolute;
  z-index: 8;
  left: 0;
  top: 0;
  width: 41.5%;
  animation: anim-mainVisualRobot .1s  infinite;
}

.mainVisual-cv.is-show {
  translate: 0 0;
  opacity: 1;
}


@keyframes anim-mainVisualRobot {
  0% {transform: translate(0px, 0px) rotateZ(0deg)}
  25% {transform: translate(1px, 1px) rotateZ(0.5deg)}
  50% {transform: translate(0px, 1px) rotateZ(0deg)}
  75% {transform: translate(1px, 0px) rotateZ(-0.5deg)}
  100% {transform: translate(0px, 0px) rotateZ(0deg)}
}

@keyframes anim-mainVisualBtn {
  0% {transform: translateY(0px);}
  5% {transform: translateY(-10px);}
  10% {transform: translateY(0px);}
  15% {transform: translateY(-10px);}
  20% {transform: translateY(0px);}
}

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

  .mainVisual {
    margin-top: 11.5vw;
  }
}

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

  .mainVisual {
    padding-bottom: 8vw;
  }
  .mainVisual-logo {
    width: 62%;
  }

  .mainVisual-cv {
    width: 70%;
  }

}

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

  .mainVisual {
    margin-top: 32vw;
  }
}



/***********
fairy
************/

.fairy {
  width: clamp(200px,22vw, 500px);
  position: sticky;
  left: 0;
  top: 5vw;
  height: 0;
  z-index: 1000;
  animation: anim-float 3s ease-in-out infinite;
  pointer-events: none;
}
.fairy-block {
  translate: 0 -40%;
  transition: 4s;
}

body.is-fixed .fairy-block {
  translate: 0 0;
  transition: 2s;
}
.fairy img {
  transition: all 2s ease 0s;
  translate: -10vw 0;
  opacity: 0;
}
.fairy img.is-show {
  translate: 0 0;
  opacity: 1;
}

@keyframes anim-float {
  0% ,100%{
    translate: 0 0;
  }
  50% {
    translate: 0 1vw;
  }
}


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

  .fairy {
    position: absolute;
    width: clamp(80px,30vw, 150px);
    top: 0;
    z-index: 99;
  }

  .fairy-block {
    translate: 0 0;
    transition: 0s;
  }
  @keyframes anim-float {
    0% ,100%{
      translate: 0 -30px;
    }
    50% {
      translate: 0 -20px;
    }
  }
}

/***********
homeIntro
************/

.homeIntro {
  text-align: center;
}
.homeIntro-wrapper {
  max-width: 2200px;
  margin: 0 auto;
  padding: 5% 10%;
  position: relative;
}
.homeIntro-container {
  position: relative;
}
.homeIntro-img {
  position: relative;
  z-index: 9;
}
.homeIntro-character01 {
  width: 29%;
  position: absolute;
  left: 50%;
  translate: -45% 0 ;
  bottom: 10%;
  z-index: 10;
  pointer-events: none;
}


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

  .homeIntro-wrapper {
    padding: 5vw 2%;
  }

}

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

  .homeIntro {
  }
  .homeIntro-wrapper {
    padding: 10vw 2% 5vw;
  }
  .homeIntro-character01 {
    width: 36%;
    translate: -48% 0 ;
    bottom: 20%;
  }
}

/***********
homeAnalysis
************/

.homeAnalysis {
  background-color: var(--color-brand01);
  position: relative;
}
.homeAnalysis-wrapper {
  max-width: 2100px;
  margin: 0 auto;
  padding: 5% 10% 8%;
  position: relative;
}
.homeAnalysis-container {
  position: relative;
}

.homeAnalysis-object01 {
  position: absolute;
  width: 35vw;
  max-width: 600px;
  left: 0;
  bottom: 0;
  pointer-events: none;
  opacity: 0.1;
  transition: 2s;
}
.homeAnalysis-object02 {
  position: absolute;
  width: 12vw;
  max-width: 300px;
  right: 2vw;
  bottom: 10vh;
  pointer-events: none;
  opacity: 0.1;
  transition: 2s;
}
.homeAnalysis-character01 {
  width: 25%;
  position: absolute;
  right: -5%;
  top: 0;
  translate: 0 -50%;
  z-index: 10;
  pointer-events: none;
}
.homeAnalysis-character02 {
  width: 22%;
  position: absolute;
  left: -5%;
  bottom: 0;
  translate: 0 70%;
  z-index: 10;
  pointer-events: none;
}


.homeAnalysis-heading {
  width: 74%;
  padding-right: 10%;
  margin: 0 auto;
}



.homeAnalysis-base {
  font-size: clamp(15px,1.5vw, 30px);
  max-width: 50em;
  height: 26em;
  margin: 0 auto;
  color: var(--color-base);
  position: relative;
}
.homeAnalysis-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  width: 24em;
  aspect-ratio: 132 / 68;
  position: absolute;
}
.homeAnalysis-item.-no01 {
  background: url(../../img/analysis_bg01.png) no-repeat center center / 100% 100%;
  left: 0;
  top: 5%;
}
.homeAnalysis-item.-no02 {
  background: url(../../img/analysis_bg02.png) no-repeat center center / 100% 100%;
  left: 40%;
  top: 0;
}
.homeAnalysis-item.-no03 {
  background: url(../../img/analysis_bg03.png) no-repeat center center / 100% 100%;
  left: 16%;
  bottom: 10%;
}
.homeAnalysis-item.-no04 {
  background: url(../../img/analysis_bg04.png) no-repeat center center / 100% 100%;
  right: 0;
  bottom: 0;
}
.homeAnalysis-block {
  width: 50%;
  height: 60%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.homeAnalysis-title {
  color: var(--color-brand01);
  font-size: 93%;
  font-family: var(--font-family-serif);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  min-height: 2.5em;
  padding-top: 0.8em;
}
.homeAnalysis-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.homeAnalysis-item.-no04 .homeAnalysis-inner {
  padding-top: 1.5em;
}

.homeAnalysis-data {
  font-weight: 900;
  font-size: 200%;
  line-height: 1;
}
.homeAnalysis-num {
  display: inline-block;
  font-family: "Oswald", sans-serif;
  font-weight: 500;
  padding: 0 0.2em;
}
.homeAnalysis-unit {
  font-size: 60%;
  display: inline-block;
}

.homeAnalysis-text {
  font-weight: 900;
  font-size: 60%;
  padding-top: 0.5em;
}

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

  .homeAnalysis-wrapper {
    padding: 5% 4% 8%;
  }
  .homeAnalysis-heading {
    width: 86%;
  }

  .homeAnalysis-base {
    font-size: clamp(15px,1.8vw, 30px);
    max-width: 54em;
  }

}

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


  .homeAnalysis {
  }
  .homeAnalysis-wrapper {
    padding: min(8vw,3em) 4% ;
  }

  .homeAnalysis-object01 {
    width: 55vw;
    max-width: 300px;
  }
  .homeAnalysis-object02 {
    width: 22vw;
    max-width: 200px;
    right: 0;
    bottom: auto;
    top: 0;
  }
  .homeAnalysis-character01 {
    width: 25%;
    right: 5%;
    top: 20vw;
    translate: 0 0;
  }
  .homeAnalysis-character02 {
    width: 25%;
    left: -5%;
    translate: 0 60%;
  }


  .homeAnalysis-heading {
    width: auto;
    padding-right: 15%;
    margin: 0 auto;
  }



  .homeAnalysis-base {
    font-size: clamp(15px,4.2vw, 20px);
    max-width: initial;
    width: 24em;
    margin: 0 auto;
    height: 38em;
  }
  .homeAnalysis-item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    width: 24em;
    aspect-ratio: 132 / 68;
    position: absolute;
  }
  .homeAnalysis-item.-no01 {
    left: -5%;
    top: 5%;
  }
  .homeAnalysis-item.-no02 {
    left: 20%;
    top: 10em;
  }
  .homeAnalysis-item.-no03 {
    left: -20%;
    bottom: 9em;
  }
  .homeAnalysis-item.-no04 {
    left: 5%;
    bottom: 0;
  }
  .homeAnalysis-title {
    font-size: 108%;
    min-height: 2.3em;
    padding-top: 0.6em;
  }
  .homeAnalysis-item.-no04 .homeAnalysis-inner {
    padding-top: 1em;
  }
  .homeAnalysis-text {
    font-size: 77%;
    padding-top: 0.2em;
  }
}


/***********
homeAbout
************/

.homeAbout {
  background-color: var(--color-base);
  position: relative;
}
.homeAbout-visual {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  width: 50%;
}
.homeAbout-visual-img {
  width: 100%;
  height: 100%;
  clip-path: polygon(20% 0%, 100% 0%, 100% 100%, 0 100%);
}
.homeAbout-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}


.homeAbout-wrapper {
  max-width: 2100px;
  margin: 0 auto;
  padding: 5% 0% 8% 10%;
  position: relative;
}

.homeAbout-object01 {
  position: absolute;
  width: 8vw;
  max-width: 200px;
  left: 5vw;
  bottom: 5vw;
  pointer-events: none;
  opacity: 0.1;
  transition: 2s;
}
.homeAbout-character01 {
  width: 16%;
  position: absolute;
  left: 3%;
  bottom: 0;
  translate: 0 60%;
  z-index: 10;
  pointer-events: none;
}


.homeAbout-block {
  width: 50%;
  padding-left: 5%;
}
.homeAbout-heading {
  padding-right: 8%;
}
.homeAbout-laed {
  font-size: clamp(200%,2.2vw, 500%);
  font-weight: 900;
  padding-bottom: 1em;
}
.homeAbout-text {
  font-size: clamp(139%,1.1vw, 200%);
  font-weight: 600;
  line-height: 2;
}

.homeAbout-img {
  width: 85%;
  margin-left: -5%;
  padding-top: 4em;
}

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

  .homeAbout-visual {
    display: none;
  }

  .homeAbout-wrapper {
    padding: min(12vw,5em) 0;
  }

  .homeAbout-object01 {
    width: 18vw;
    max-width: 120px;
    left: auto;
    right: -2%;
    bottom: auto;
    top: 0;
    z-index: 9;
    opacity: 0.15;
  }
  .homeAbout-character01 {
    width: 22%;
    max-width: 150px;
    left: 1%;
    translate: 0 30%;
  }


  .homeAbout-box {
    padding: 3em 8% 0 10%;
  }
  .homeAbout-block {
    width: auto;
    padding-left: 0;
  }
  .homeAbout-heading {
    padding: 0 30% 30vw 10%;
    position: relative;
  }
  .homeAbout-heading::after {
    content: "";
    display: block;
    width: 100%;
    height: 88%;
    position: absolute;
    left: 0;
    bottom: 0;
    background: url(../../img/about_visual.jpg) no-repeat center center / cover;
    clip-path: polygon(0% 60%, 100% 0%, 100% 100%, 0 100%);
  }
  .homeAbout-heading img {
    position: relative;
    z-index: 8;
  }


  .homeAbout-laed {
    font-size: clamp(200%,4vw, 300%);
  }
  .homeAbout-text {
    font-size: clamp(116%,2vw, 154%);
    line-height: 1.8;
    text-align: justify;
  }

  .homeAbout-img {
    max-width: 400px;
    width: 80%;
    margin: 0 auto;
    padding-top: 1em;
  }

}

/***********
homeJob
************/

.homeJob {
  background-color: var(--color-brand01);
  position: relative;
  color: var(--color-base);
}

.homeJob-wrapper {
  max-width: 1400px;
  width: 64%;
  margin: 0 auto;
  padding: 5% 0;
  position: relative;
}


.homeJob-object01 {
  position: absolute;
  width: 12vw;
  max-width: 400px;
  right: 2vw;
  bottom: 0;
  pointer-events: none;
  opacity: 0.1;
  transition: 2s;
}
.homeJob-object02 {
  position: absolute;
  width: 22vw;
  max-width: 700px;
  left: -5vw;
  top: 20%;
  pointer-events: none;
  opacity: 0.1;
  transition: 2s;
}
.homeJob-character01 {
  width: 22%;
  position: absolute;
  right: -5%;
  top: 0;
  translate: 0 -30%;
  z-index: 10;
  pointer-events: none;
}

.homeJob-heading {
  width: 60%;
  padding-bottom: 5%;
}


.homeJob-list {
  display: flex;
  justify-content: space-between;
}
.homeJob-list li {
  width: 31%;
}
.homeJob-list-visual {
  position: relative;
  padding-left: 14%;
}
.homeJob-list-title {
  font-size: clamp(300%,3.8vw, 654%);
  font-weight: 900;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
  z-index: 9;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  line-height: 1;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.homeJob-list-img {
  margin-bottom: 3em;
  font-size: clamp(100%,1vw, 116%);
  position: relative;
}
.homeJob-list-img figcaption {
  width: 100%;
  position: absolute;
  right: 0;
  top: 100%;
  padding-top: 0.3em;
  text-align: right;
}
.homeJob-list-inner {
  border-bottom: 1px solid var(--color-base);
}
.homeJob-list-text {
  font-size: clamp(116%,1.4vw, 170%);
  line-height: 1.8;
  padding-bottom: 1em;
}

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

  .homeJob-wrapper {
    width: auto;
    padding: 5% 0 0;
    position: relative;
  }

  .homeJob-heading {
    width: 70%;
    padding-left: 15%;
    padding-bottom: 5%;
  }

  .homeJob-list {
    padding: 0 5%;
  }
  .homeJob-list-visual {
    position: relative;
    padding-left: 14%;
  }
  .homeJob-list-title {
    font-size: clamp(300%,5.2vw, 654%);
  }
}

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

  .homeJob-wrapper {
    padding: 5em 0 0;
    position: relative;
  }

  .homeJob-heading {
    width: auto;
    padding: 0 15% 2em 10%;
    padding-bottom: 2em;
  }

  .homeJob-object01 {
    width: 25vw;
    max-width: 200px;
    right: -5vw;
    bottom: auto;
    top: 25vw;
    pointer-events: none;
    opacity: 0.1;
    transition: 2s;
  }
  .homeJob-object02 {
    width: 45vw;
    max-width: 400px;
    left: -15vw;
    top: 15vw;
    opacity: 0.08;;
  }


  .homeJob-character01 {
    width: 22%;
    right: -2%;
  }
  .homeJob-list {
    display: block;
    padding-left: 10%;
    padding-right: 10%;
  }
  .homeJob-list li {
    width: auto;
  }
  .homeJob-list li + li {
    margin-top: 3em;
  }
  .homeJob-list-visual {
    padding-left: 14%;
  }
  .homeJob-list-title {
    font-size: clamp(300%,8vw, 654%);
    letter-spacing: 0.15em;
  }
  .homeJob-list-img {
    margin-bottom: 1em;
  }
  .homeJob-list-img figcaption {
    width: 100%;
    position: absolute;
    right: 0;
    top: auto;
    bottom: 100%;
    padding-top: 0;
    padding-bottom: 0.2em;
  }
  .homeJob-list-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 2 / 1;
  }
  .homeJob-list-inner {
    padding-bottom: 1em;
  }
  .homeJob-list-text {
    font-size: clamp(116%,1.4vw, 170%);
    padding-bottom: 1em;
  }

}


/***********
welcome
************/

.welcome {
  margin-top: 15%;
  position: relative;
  color: var(--color-main);
}
.welcome::after {
  content: "";
  display: block;
  width: 200%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  background: rgba(255, 255, 255, 0.5);
  transform: skewX(15deg);
  transform-origin: right bottom;
}
.welcome-container {
  display: flex;
  flex-direction: row-reverse;
  align-items: end;
  position: relative;
  z-index: 9;
}
.welcome-inner {
  flex: 1;
  padding: 3em 10% 6em 5%;
}
.welcome-heading {
  width: 80%;
}
.welcome-text {
  font-size: clamp(116%,1.4vw, 170%);
  font-weight: 500;
  line-height: 1.8;
  padding-top: 1em;
}
.welcome-visual {
  width: 45%;
  margin-left: -10%;
}


.welcome-character01 {
  width: 35%;
  position: absolute;
  left: -25%;
  top: 0;
  translate: 0 -40%;
  z-index: 10;
  pointer-events: none;
}

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

  .welcome {
    padding-left: 10%;
  }

  .welcome-character01 {
    width: 35%;
    max-width: 250px;
    left: -5%;
    translate: 0 -40%;
  }

}

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

  .welcome {
    margin-top: 3em;
  }
  .welcome::after {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.5);
    transform: skewX(0);
    clip-path: polygon(0% 0%, 100% 20%, 100% 100%, 0 100%);
  }
  .welcome-container {
    display: block;
  }
  .welcome-inner {
    padding: 4em 10% 4em 0;
    position: relative;
  }
  .welcome-heading {
    width: 70%;
    max-width: 320px;
  }
  .welcome-text {
    font-size: clamp(116%,1.4vw, 170%);
    font-weight: 500;
    line-height: 1.8;
    padding-top: 1em;
  }
  .welcome-visual {
    width: 40%;
    max-width: 200px;
    margin-left: 0;
    position: absolute;
    right: 0;
    top: 20%;
  }

  .welcome-character01 {
    width: 25%;
    left: auto;
    right: 10%;
    top: 5%;
    translate: 0 -40%;
  }

}

/***********
homeCi
************/

.homeCi {
border-bottom: 10px solid var(--color-brand01);
padding: 4em 0;
}
.homeCi-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.homeCi-list li {
  padding: 0 20px;
}
.homeCi-list li img {
  width: auto;
  max-height: 50px;
}

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

  .homeCi {
    border-bottom-width: 5px;
    padding: 5em 0 1em;
  }
  .homeCi-list {
  }
  .homeCi-list li {
    padding: 5px 10px;
  }
  .homeCi-list li img {
    max-height: 30px;
  }

}

/***********
homeInfo
************/

.homeInfo {
}
.homeInfo-section {
}
.homeInfo-section + .homeInfo-section {
  padding-top: 5em;
}
.homeInfo-heading {
  text-align: center;
  font-size: clamp(170%,4vw, 300%);
  font-weight: 900;
  letter-spacing: 0.08em;
  padding-bottom: 0.5em;
}


.homeInfo-table {
  border: 1px solid #ddd;
  font-size: clamp(100%,1.4vw, 139%);
  line-height: 1.6;
}
.homeInfo-table th {
  border: 1px solid #ddd;
  padding: 0.8em 1em;
  width: 14em;
  font-weight: 500;
  background-color: var(--color-sub03);
}
.homeInfo-table td {
  border: 1px solid #ddd;
  padding: 0.8em 1.5em;
}


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

  .homeInfo-table th {
    width: 8em;
  }

}


/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/

/***********
xxxxx
************/
