@charset "utf-8";

/* CSS Document */

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

.mainVisual {
  margin-top: var(--header-height);
  margin-left: var(--fv-padding);
  margin-right: var(--fv-padding);
  /* height: calc(100svh - var(--header-height));
  min-height: 600px; */
  border-radius: var(--rounded-main);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  position: relative;
}
.mainVisual-bg {
  /* position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%; */
}
.mainVisual-bg img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}
.mainVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  z-index: 9;
  padding-top: 3.5vw;
}
.mainVisual-title {
  width: clamp(600px,62vw, 1400px);
  margin: 0 auto;
}
.mainVisual-lead {
  display: flex;
  justify-content: center;
  font-size: clamp(20px,1.7vw, 40px);
  margin-top: -0.5em;
}
.mainVisual-lead-item {
}
.mainVisual-lead-text {
  background-color: var(--color-brand01);
  color: var(--color-base);
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
  margin: 0 0.1em;
  padding: 0.2em 1.2em 0.3em;
  transform: skewX(-10deg);
}


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

  .mainVisual-bg img {
    height: 100vw;
    min-height: 300px;
    max-height: 600px;
    object-position: center bottom;
  }
  .mainVisual-container {
    padding-top: 8vw;
  }
  .mainVisual-title {
    width: clamp(240px,100%, 600px);
    margin: 0 auto;
  }
  .mainVisual-lead {
    font-size: clamp(11px,3.4vw, 24px);
    margin-top: 0;
  }
  .mainVisual-lead-item {
  }
  .mainVisual-lead-text {
    background-color: var(--color-brand01);
    color: var(--color-base);
    font-weight: 700;
    font-feature-settings: "palt";
    letter-spacing: 0.04em;
    margin: 0 0.1em;
    padding: 0.2em 1.2em 0.3em;
    transform: skewX(-10deg);
  }

}

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

.homeIntro {
  padding-top: min(10vw,6em);
  padding-bottom: min(12vw,12em);
  position: relative;
  overflow: hidden;
}

.homeIntro-bg {
  position: absolute;
  right: 0;
  bottom: 0;
  width: calc(100% + 5vw);
  pointer-events: none;
  overflow: hidden;
}
.homeIntro-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
}
.homeIntro.is-inview .homeIntro-bg img {
  translate: 5vw 0;
  transition: translate 20s linear;
}

.homeIntro-container {
  position: relative;
  z-index: 9;
  display: flex;
}
.homeIntro-inner {
  flex: 1;
  padding-right: 4%;
  padding-top: 1em;
}
.homeIntro-heading {
  font-size: 4rem;
  padding-bottom: 0.5em;
  white-space: nowrap;
}
.homeIntro-heading-lead {
  color: var(--color-brand01);
  font-weight: 900;
  font-size: max(34%,15px);
  padding-bottom: 0.5em;
}
.homeIntro-heading-title {
  font-weight: 900;
  line-height: 1.2;
}
.homeIntro-text {
  line-height: 1.8;
  text-align: justify;
  max-width: 460px;
}
.homeIntro-visual {
  width: 52%;
}
.homeIntro-img01 {
  margin-right: -100px;
  margin-left: 8%;
}
.homeIntro-img02 {
  position: relative;
  margin-top: -25%;
  margin-right: 38%;
}

.homeIntro-img01 img,
.homeIntro-img02 img {
  border-radius: var(--rounded-sub);
}

@media screen and (max-width:1024px) {
  .homeIntro-heading {
    font-size: clamp(30px,8vw, 40px);
  }
}

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

  .homeIntro {
    padding-top: min(8vw,5em);
    padding-bottom: 100px;
  }

  .homeIntro-bg {
    width: 1400px;
  }
  .homeIntro-bg img {
  }
  .homeIntro.is-inview .homeIntro-bg img {
    translate: 100px 0;
  }

  .homeIntro-container {
    display: block;
  }
  .homeIntro-inner {
    padding-right: 0;
    padding-top: 0;
  }
  .homeIntro-heading {
    font-size: clamp(30px,9vw, 50px);
    padding-bottom: 0.5em;
  }
  .homeIntro-heading-lead {
    font-size: max(50%,15px);
  }
  .homeIntro-text {
    max-width: initial;
  }
  .homeIntro-visual {
    width: auto;
    padding-top: 2em;
  }
  .homeIntro-img01 {
    margin-right: 0;
    margin-left: 8%;
  }

}

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

.homeAnalysis {
  background: url(../../img/pattern02.jpg);
  background-size: max(100%,1000px);
  padding-top: min(10vw,6em);
  padding-bottom: min(10vw,8em);
  color: var(--color-base);
}

.homeAnalysis-heading {
  text-align: center;
  padding-bottom: 3.5em;
}
.homeAnalysis-heading-title {
  font-size: 2.8rem;
  font-weight: 900;
  line-height: 1.2;
}
.homeAnalysis-heading-title small {
  padding-right: 0.2em;
  padding-left: 0.1em;
  font-size: 70%;
}
.homeAnalysis-heading-num {
  font-size: 120%;
  font-family: var(--font-family-gothic-en);
}
.homeAnalysis-heading-lead {
  padding-top: 1em;
  line-height: 1.8;
  color: var(--color-brand03);
  font-weight: 600;
}


.homeAnalysis-container {
  display: flex;
  margin-left: -1.5em;
  margin-right: -1.5em;
  counter-reset : homeAnalysis_num;
}
.homeAnalysis-section {
  flex: 1;
  padding: 0.5em 1.8em;
}
.homeAnalysis-section:not(:last-child) {
  border-right: 2px dotted rgba(255, 255, 255, 0.2);
}
.homeAnalysis-title {
  text-align: center;
  font-size: 1.2rem;
  margin-bottom: 1em;
  white-space: nowrap;
}
.homeAnalysis-title span {
  display: inline-block;
  padding-left: 2em;
  position: relative;
}
.homeAnalysis-title span::before {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  counter-increment:homeAnalysis_num;
  content: counter(homeAnalysis_num, decimal-leading-zero) ;
  width: 2.2em;
  height: 2.2em;
  background-color: var(--color-brand03);
  color: var(--color-base);
  font-family: var(--font-family-gothic-en);
  font-size: 90%;
  border-radius: 50%;
  white-space: nowrap;
  position: absolute;
  left: -0.5em;
  top: 50%;
  translate: 0 -50%;
}
.homeAnalysis-data {
  text-align: center;
  font-size: 2.6rem;
  font-weight: 900;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
  justify-content: end;
  line-height: 1;
}
.homeAnalysis-data-text {
}
.homeAnalysis-data-num {
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  font-size: 250%;
  letter-spacing: -0.06em;
}
.homeAnalysis-data-num.-small {
  font-size: 200%;
}
.homeAnalysis-data-num.-xsmall {
  font-size: 160%;
}
.homeAnalysis-data-unit {
  padding-left: 0.1em;
}
.homeAnalysis-text {
  padding-top: 1.2em;
  line-height: 1.8;
  text-align: justify;
}

.homeAnalysis-link {
  padding-top: 3.5em;
  text-align: center;
}

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

  .homeAnalysis {
    padding-top: min(12vw,5em);
    padding-bottom: min(16vw,6em);
  }

  .homeAnalysis-heading {
    padding-bottom: 2.5em;
  }
  .homeAnalysis-heading-title {
    font-size: 2rem;
  }
  .homeAnalysis-heading-lead {
    font-size: 1rem;
  }

  .homeAnalysis-section {
    padding: 0.5em 1.2em;
  }

  .homeAnalysis-data {
    font-size: 1.6rem;
  }

}

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

  .homeAnalysis-container {
    display: block;
    margin-left: 0;
    margin-right: 0;
    border-top: 2px dotted rgba(255, 255, 255, 0.2);
  }
  .homeAnalysis-section {
    padding: 2em 3vw;
    border-bottom: 2px dotted rgba(255, 255, 255, 0.2);
  }
  .homeAnalysis-section:not(:last-child) {
    border-right: none;
  }
  .homeAnalysis-title {
    font-size: 1.3rem;
    margin-bottom: 0.5em;
  }

  .homeAnalysis-data {
    font-size: 2rem;
  }

  .homeAnalysis-link {
    padding-top: 2em;
  }

}


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

.homeJob {
  background: url(../../img/pattern01.jpg);
  background-size: max(100%,1000px);
  padding-top: min(10vw,6em);
  padding-bottom: min(10vw,8em);
}

.homeJob-container {
  display: flex;
  flex-wrap: wrap;
  margin-left: -2%;
  padding-top: 2em;
}
.homeJob-section {
  width: 31.3%;
  margin-left: 2%;
}
.homeJob-section a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.homeJob-badge {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 0.75rem;
  white-space: nowrap;
  width: 8em;
  height: 8em;
  border-radius: 50%;
  background-color: var(--color-brand01);
  color: var(--color-base);
  position: absolute;
  left: 2em;
  top: -2em;
  z-index: 9;
  pointer-events: none;
}
.homeJob-badge-title {
  line-height: 1.2;
}
.homeJob-badge-num {
  font-size: 270%;
  font-family: var(--font-family-gothic-en);
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  padding-top: 0.1em;
}
.homeJob-img {
  border-radius: var(--rounded-sub);
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  margin-right: 1em;
}
.homeJob-inner {
  display: flex;
  justify-content: end;
  position: relative;
  z-index: 9;
}
.homeJob-box {
  width: clamp(16em,66%, 25em);
  background-color: var(--color-base);
  border-radius: var(--rounded-sub);
  padding: 1.2em 7% 1.6em;
  margin-top: -30%;
}
.homeJob-heading {
  padding-bottom: 0.8em ;
}
.homeJob-heading-title {
  display: inline-block;
  color: var(--color-brand01);
  font-size: 1.6rem;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
.homeJob-heading-title::after {
  font-family: 'Font Awesome 6 Free';
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: var(--fa-display, inline-block);
  font-weight: 900;
  font-style: normal;
  font-variant: normal;
  line-height: 1;
  text-rendering: auto;
  content: "\f35a";
  position: absolute;
  left: calc(100% + 0.2em);
  top: 50%;
  translate: 0 -50%;
  scale: 0.7;
  line-height: normal;
}
.homeJob-heading-subTitle {
  font-size: max(75%,11px);
  color: var(--color-brand03);
}
.homeJob-text {
  font-size: 0.9rem;
  text-align: justify;
  line-height: 1.7;
}

.homeJob-link {
  padding-top: 3.5em;
  text-align: center;
}

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

  .homeJob {
    padding-top: min(12vw,5em);
    padding-bottom: min(16vw,6em);
  }

  .homeJob-container {
    display: block;
    margin-left: 0;
    padding-top: 2em;
    margin-bottom: -2em;
  }
  .homeJob-section {
    width: auto;
    margin-left: 0;
    margin-bottom: 2em;
  }
  .homeJob-section a {
    display: flex;
    align-items: end;
  }
  .homeJob-badge {
    left: -1.5em;
    font-size: 0.7rem;
  }
  .homeJob-img {
    width: 60%;
    margin-right: 0;
    padding-bottom: 2em;
  }
  .homeJob-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 10;
  }

  .homeJob-inner {
    flex: 1;
    display: block;
  }
  .homeJob-box {
    width: auto;
    padding: 1.2em 1.5em 1.6em;
    margin-top: 0;
    margin-left: -20%;
  }

}

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


  .homeJob-container {
    display: block;
    margin-left: 0;
    padding-top: 2em;
    margin-bottom: -3em;
  }
  .homeJob-section {
    width: auto;
    margin-left: 0;
    margin-bottom: 3em;
  }
  .homeJob-section a {
  }
  .homeJob-badge {
    font-size: 0.7rem;
    left: -1em;
    top: -2em;
  }
  .homeJob-badge-title {
    line-height: 1.2;
  }

  .homeJob-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 12;
  }

  .homeJob-inner {
    display: flex;
    justify-content: end;
    position: relative;
    z-index: 9;
  }
  .homeJob-box {
    width: clamp(16em,100%, 45em);
    padding: 1.2em 7% 1.6em;
    margin-top: -20%;
    margin-right: -4vw;
  }

  .homeJob-link {
    padding-top: 2.5em;
  }
}

/***********
homeExtra
************/

.homeExtra {
  padding-top: min(10vw,7em);
  padding-bottom: min(10vw,8em);
}

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

  .homeExtra {
    padding-top: min(12vw,6em);
    padding-bottom: min(12vw,6em);
  }

}

/***********
homeGate
************/


.homeGate {
  overflow: hidden;
  position: relative;
  font-size: clamp(20px, calc(7px + 0.9vw), 30px);
}
.homeGate-bg {
  overflow: hidden;
}
.homeGate-bg img {
  width: 100%;
  height: 100%;
  aspect-ratio: 100 / 54;
  min-height: 500px;
  object-fit: cover;
  scale: 1.1;
}

.homeGate.is-inview .homeGate-bg img {
  scale: 1;
  transition: scale 20s linear;
}
.homeGate-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  z-index: 9;
}
.homeGate-heading {
  padding-top: 4.5vw;
  color: var(--color-base);
}
.homeGate-heading-title {
  font-size: 260%;
  font-weight: 900;
  text-shadow:
    0 0 0.3em black,
    0 0 0.3em black,
    0 0 0.3em black,
    0 0 0.6em black,
    0 0 0.6em black,
    0 0 0.6em black;
}
.homeGate-heading-subTitle {
  font-family: var(--font-family-gothic-en);
  color: var(--color-brand03);
  font-size: 70%;
  text-shadow:
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 1.0em black,
    0 0 1.0em black,
    0 0 1.0em black,
    0 0 1.0em black,
    0 0 1.0em black;
}
.homeGate-heading-text {
  font-weight: 600;
  font-size: max(90%,17px);
  padding-top: 1em;
  text-shadow:
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 0.5em black,
    0 0 1.0em black,
    0 0 1.0em black,
    0 0 1.0em black,
    0 0 1.0em black,
    0 0 1.0em black;
}

.homeGate-logo {
  width: clamp(640px,42vw, 1400px);
  margin: 0 auto;
  padding-bottom: 7vw;
}

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


  .homeGate {
    font-size: clamp(14px, 4vw, 18px);
  }
  .homeGate-bg img {
    aspect-ratio: 100 / 90;
    min-height: 360px;
    scale: 1.1;
  }


  .homeGate-heading {
    padding-top: 8vw;
  }
  .homeGate-heading-title {
    font-size: 200%;
  }
  .homeGate-heading-subTitle {
    font-size: 85%;
  }
  .homeGate-heading-text {
    font-size: max(90%,15px);
  }

  .homeGate-logo {
    width: clamp(260px,90vw, 640px);
    padding-bottom: 15vw;
  }

}

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

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

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

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

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