@charset "utf-8";

/* CSS Document */


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

.mainVisual {
  position: relative;
  height: 100svh;
  min-height: 600px;
  margin-left: var(--side-padding);
  overflow: hidden;
  user-select: none;
  opacity: 0;
  transition: 1s;
}
body.is-loaded .mainVisual {
  opacity: 1;
}

/*
visual
*/

.mainVisual-visual {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
}
.mainVisual-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.25);
}

/*
container
*/

.mainVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 6em;
  z-index: 10;
  opacity: 0;
  transition: 1s;
}
body.is-started .mainVisual-container {
  opacity: 1;
  transition-delay: 0.1s;
}

.mainVisual-block {
  font-size: clamp(154%,1.7vw, 400%);
  position: relative;
  padding-left: 2em;
  color: var(--color-base);
}

.mainVisual-lead {
  padding-bottom: 1em;
}
.mainVisual-lead-text {
  display: block;
  font-weight: 700;
  font-style: italic;
  font-size: 331%;
  font-feature-settings: "palt";
  line-height: 1.1;
  letter-spacing: 0.06em;
}
.mainVisual-lead-text span {
  display: inline-block;
  opacity: 0;
  translate: 0 0.3em;
  rotate: -5deg;
  transition: 1s;
}
body.is-started .mainVisual-lead-text span {
  opacity: 1;
  translate: 0 0;
  rotate: 0deg;
}



.mainVisual-subLead {
  display: inline-block;
  position: relative;
  z-index: 8;
  background: var(--color-grad01);
  color: var(--color-base);
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
  vertical-align: middle;
}
.mainVisual-subLead-text {
  display: block;
  font-weight: 700;
  font-feature-settings: "palt";
  padding: 0.1em 0.6em 0.2em 0.5em;
  letter-spacing: 0.04em;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  transition: 0.8s cubic-bezier(0.65, 0, 0.35, 1) 0.5s;
  vertical-align: middle;
}
body.is-started .mainVisual-subLead {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  transition-delay: 0.7s;
}
body.is-started .mainVisual-subLead-text {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
  transition-delay: 0.9s;
}
.mainVisual-subLead-text br {
  display: none;
}




/*
slider
*/

.mainVisual-slider{
  opacity: 0;
  transition: all 0.5s ease 0s;
}
body.is-started .mainVisual-slider{
  opacity: 1;
}
.mainVisual-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
  height: 100svh;
}
.mainVisual-img{
  width: 100%;
  height: 100svh;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.mainVisual-img::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background-color: #000;
  opacity: 0;
  z-index: 2;
  transition: 3s;
}
body.is-loaded .mainVisual-img::after{
  opacity: 0.2;
}
.mainVisual-img > img {
  width: 100%;
  height: 100svh;
  min-height: 600px;
  object-fit: cover;
}

.mainVisual-img.-zoom{
  transform-origin: center center;
}
.slick-animation .mainVisual-img.-zoom{
  animation: amin-mainVisual-zoom 12s linear forwards;
}
.mainVisual-img.-left{
  width: 120%;
  transform-origin: left center;
}
.slick-animation .mainVisual-img.-left{
  animation: amin-mainVisual-left 12s linear forwards;
}
.mainVisual-img.-right{
  width: 120%;
  transform-origin: right center;
}
.slick-animation .mainVisual-img.-right{
  animation: amin-mainVisual-right 12s linear forwards;
}




.mainVisual .slick-dots{
  position: absolute;
  right: 4vw;
  bottom: 35px;
  display: flex;
  justify-content: end;
  z-index: 99;
}
.mainVisual .slick-dots button{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  background-color: var(--color-base);
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  text-indent: -99999px;
  overflow: hidden;
  margin-left: 15px;
  padding: 0;
  cursor: pointer;
}
.mainVisual .slick-dots .slick-active button{
  background-color: var(--color-brand02);
  box-shadow: 0 0 0 4px rgba(0, 42, 126, 0.3);
}


@keyframes amin-mainVisual-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.2);
  }
}
@keyframes amin-mainVisual-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-10%);
  }
}
@keyframes amin-mainVisual-right {
  0% {
    transform: translateX(-10%);
  }
  100% {
    transform: translateX(0);
  }
}

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


  .mainVisual {
    min-height: 400px;
    margin-left: 0;
  }

  /*
  container
  */

  .mainVisual-container {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }
  body.is-started .mainVisual-container {
  }

  .mainVisual-block {
    font-size: clamp(100%,3.2vw, 254%);
    padding-left: 3vw;
  }

  .mainVisual-lead {
    padding-bottom: 1em;
  }
  .mainVisual-lead-text {
    font-size: 331%;
    line-height: 1.3;
    letter-spacing: 0.02em;
  }

  .mainVisual-subLead {
    background: none;
    font-size: 154%;
  }
  .mainVisual-subLead-text {
    padding: 0;
    letter-spacing: 0.04em;
  }
  .mainVisual-subLead-text br {
    display: inline;
  }

  .mainVisual-subLead-item {
    display: inline-block;
    margin-bottom: 0.2em;
    padding: 0.1em 0.5em;
    background: var(--color-grad03);
  }

  /*
  slider
  */

  .mainVisual-slider :not(.slick-dots) li,
  .mainVisual-img,
  .mainVisual-img > img {
    width: 100%;
    height: 100svh;
    min-height: 400px;
  }

}

/***********
homeTicker
************/

/*
ticker
*/

.homeTicker {
  width: 100%;
  opacity: 0;
  transition: 1s;
  font-size: clamp(600%,8vw, 1500%);
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  line-height: 1.4;
  padding-bottom: 0.1em;
  opacity: 0.5;
}
body.is-started .homeTicker {
  opacity: 1;
  transition-delay: 0.1s;
}
.homeTicker-container {
  display: flex;
}
.homeTicker-container img {
}
.homeTicker-item {
  display: inline-block;
  padding-right: 0.2em;
}
.homeTicker-item:nth-child(odd) {
  background: var(--color-grad01);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.homeTicker-item:nth-child(even) {
  background: var(--color-grad02);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


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

  .homeTicker {
    font-size: clamp(100%,15vw, 600%);
    padding-top: 0.2em;
    padding-bottom: 0.2em;
  }

}

/***********
homeHeading
************/

.homeHeading {
  font-size: clamp(200%,1.8vw, 300%);
}
.homeHeading-title {
  font-size: 154%;
  font-weight: 700;
  font-feature-settings: "palt";
  letter-spacing: 0.04em;
}
.homeHeading-subTitle {
  display: inline-block;
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  font-size: 85%;
  color: var(--color-brand02);
  position: relative;
  line-height: 1.3;
  letter-spacing: 0.04em;
  margin-top: 0.4em;
}
.homeHeading-subTitle::after {
  content: "";
  display: block;
  width: 7em;
  height: 2px;
  background-color: var(--color-brand02);
  position: absolute;
  left: calc(100% + 0.5em);
  top: calc(50% - 1px);
}


.homeHeading.-white,
.homeHeading.-white .homeHeading-subTitle{
  color: var(--color-base);
}
.homeHeading.-white .homeHeading-subTitle::after{
  background-color: var(--color-base);
}

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

  .homeHeading {
    font-size: clamp(139%,5vw, 200%);
  }

}


/***********
homeService
************/

.homeService {
  background: var(--color-grad03);
}
.homeHeading.homeService-heading {
  padding-bottom: 1.5em;
}
.homeService-link {
  text-align: center;
  padding-top: 3em;
}

/***********
home
************/

.homeText {
  font-size: clamp(116%,1vw, 170%);
  line-height: 1.8;
}

.l-btn.homeBtn {
  font-size: clamp(1.24rem,1.2vw, 1.85rem);
}

/***********
homeFlow
************/

.homeFlow {
  padding: 8em 7vw 12em;
}

.homeFlow-container {
  display: flex;
}
.homeFlow-inner {
  padding-top: 4em;
  flex: 1;
}

.homeFlow-heading {
  padding-bottom: 2em;
}

.homeFlow-link {
  padding-top: 4em;
}
.homeFlow-process {
  width: 62%;
  padding-left: 5%;
}

.homeFlow-subLink {
  display: none;
}

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

  .homeFlow {
    padding: 8em 4vw 12em;
  }


}

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

  .homeFlow-container {
    display: block;
  }
  .homeFlow-inner {
    padding-top: 0;
    padding-bottom: 2em;
  }

  .homeFlow-heading {
    padding-bottom: 2em;
  }

  .homeFlow-link {
    display: none;
  }

  .homeFlow-subLink {
    display: block;
    text-align: center;
    padding-top: 4em;
  }
  .homeFlow-process {
    width: auto;
    padding-left: 0;
  }

}

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

  .homeFlow {
    padding: 4em 4vw 6em;
  }

}


/***********
process
************/

.process {
}
.process li {
  background-color: var(--color-sub03);
  font-size: clamp(116%,1vw, 154%);
  padding: 1.2em 1em 1.4em 5.5em;
  position: relative;
}
.process li:not(:last-child) {
  margin-bottom: 15px;
}

.process-icon {
  width: 0.8em;
  height: 0.8em;
  background-color: var(--color-brand04);
  border-radius: 50%;
  position: absolute;
  left: 2em;
  top: 50%;
  translate: 0 -50%;
}
.process-icon::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: var(--color-brand04);
  border-radius: 50%;
  animation: anim-processIcon 4s ease-out infinite;
}
@keyframes anim-processIcon {
  0% {
    scale: 1;
    opacity: 0.5;
  }
  50%,100% {
    scale:8;
    opacity: 0;
    filter: blur(2px);
  }
}
.process li:nth-child(1) .process-icon::after {  animation-delay: 0.0s;  }
.process li:nth-child(2) .process-icon::after {  animation-delay: 0.3s;  }
.process li:nth-child(3) .process-icon::after {  animation-delay: 0.6s;  }
.process li:nth-child(4) .process-icon::after {  animation-delay: 0.9s;  }
.process li:nth-child(5) .process-icon::after {  animation-delay: 1.2s;  }
.process li:nth-child(6) .process-icon::after {  animation-delay: 1.5s;  }

.process-container {
  display: flex;
  align-items: center;
}
.process-num {
  width: 1.3em;
  font-size: 454%;
  font-family: var(--font-family-gothic-en);
  font-weight: 700;
  color: var(--color-base);
  text-stroke: 1px var(--color-brand03);
  -webkit-text-stroke: 1px var(--color-brand03);
  white-space: nowrap;
  line-height: 1;
  letter-spacing: -0.04em;
  padding-top: 0.1em;
}
.process-inner {
  flex: 1;
  padding-left: 2em;
}
.process-title {
  color: var(--color-brand03);
  font-size: 154%;
  padding-bottom: 0.2em;
}
.process-text {
  font-weight: 500;
}

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

  .process {
  }
  .process li {
    font-size: clamp(116%,2.6vw, 124%);
    padding: 1.2em 1em 1.4em 2em;
  }
  .process li:not(:last-child) {
    margin-bottom: 5px;
  }

  .process-icon {
    width: 0.5em;
    height: 0.5em;
    left: 0.6em;
  }

  .process-num {
    font-size: 300%;
  }
  .process-inner {
    padding-left: 0.5em;
  }
  .process-title {
    font-size: 124%;
  }

}

/***********
homeVisual
************/

.homeVisual {
  width: 100%;
  height: clamp(300px,50vw, 600px);
  overflow: hidden;
  position: relative;
}
.homeVisual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  top: 50%;
  translate: 0 -50%;
}

/***********
homeWorks
************/

.homeWorks {
  padding: 10em 7vw 12em;
}
.homeWorks-heading {
  display: flex;
  justify-content: space-between;
  padding-bottom: 5em;
}
.homeWorks-heading-upper {
  white-space: nowrap;
  padding-right: 10em;
}

.homeWorks-heading-lower {
  width: 60%;
}

.homeWorks-control {
  display: flex;
  justify-content: end;
  margin-top: -80px;
}
.homeWorks-link {
  padding-top: 1em;
}

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

  .homeWorks {
    padding: 10em 4vw 12em;
  }

}

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

  .homeWorks {
    padding: 5em 4vw 5em;
  }
  .homeWorks-heading {
    display: block;
    padding-bottom: 3em;
  }
  .homeWorks-heading-upper {
    padding-right: 0;
  }

  .homeWorks-heading-lower {
    width: auto;
  }

  .homeWorks-control {
    display: block;
    margin-top: 0;
    text-align: center;
  }
  .homeWorks-link {
    padding-top: 2em;
  }

}

/***********
homeNews
************/

.homeNews {
  padding: 0 7vw 12em;
}

.homeNews-container {
  display: flex;
  max-width: 1800px;
  margin: 0 auto;
}
.homeNews-heading {
  white-space: nowrap;
  padding-right: 14em;
}

.homeNews-inner {
  flex: 1;
}

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

  .homeNews {
    padding: 0 4vw 12em;
  }

}

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

  .homeNews {
    padding-bottom: 6em;
  }

  .homeNews-container {
    display: block;
  }
  .homeNews-heading {
    padding-right: 0;
    padding-bottom: 1em;
  }
}


/***********
homeRecruit
************/

.homeRecruit {
  padding: 0 7vw 12em;
}
.homeRecruit-container {
  position: relative;
}
.homeRecruit-container::after {
  content: "";
  display: block;
  width: 100vw;
  height: 100%;
  position: absolute;
  left: 0;
  top: 5em;
  background: var(--color-grad03);
  opacity: 0.2;
}
.homeRecruit-visual {
  position: absolute;
  right: 50%;
  z-index: 9;
  height: 100%;
}
.homeRecruit-img {
  margin-left: -7vw;
  height: 100%;
}
.homeRecruit-img .simpleParallax {
  border-radius: 10px;
  overflow: hidden;
  isolation: isolate;
  transform: translateZ(0);
  height: 95%;
}
.homeRecruit-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homeRecruit-inner {
  position: relative;
  z-index: 10;
  padding: 14em 0 2em 58%;
}
.homeHeading {
  padding-bottom: 1em;
}
.homeRecruit-lead {
  font-size: clamp(300%,2.4vw, 454%);
  line-height: 1.3;
  padding-bottom: 0.8em;
  color: var(--color-brand03);
}
.homeRecruit-link {
  text-align: right;
  padding-top: 4em;
}

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

  .homeRecruit {
    padding: 0 4vw 12em;
  }
  .homeRecruit-visual {
    right: 55%;
  }
  .homeRecruit-inner {
    padding: 10em 0 2em 50%;
  }
  .homeRecruit-link {
    padding-top: 3em;
  }

}

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

  .homeRecruit {
    padding: 0 4vw 6em;
  }
  .homeRecruit-container {
  }
  .homeRecruit-container::after {
    content: "";
    display: block;
    width: 100vw;
    height: 100%;
    position: absolute;
    left: 0;
    top: 5em;
    background: var(--color-grad03);
    opacity: 0.2;
  }
  .homeRecruit-visual {
    position: relative;
    left: auto;
    top: auto;
    right: auto;
  }
  .homeRecruit-img {
    margin-left: -5vw;
  }
  .homeRecruit-img .simpleParallax {
    height: auto;
  }
  .homeRecruit-img img {
    aspect-ratio: 16 / 10;
    max-height: 300px;
  }
  .homeRecruit-inner {
    padding: 3em 0 2em 5%;
  }
  .homeHeading {
    padding-bottom: 1em;
  }
  .homeRecruit-lead {
    font-size: clamp(154%,6vw, 200%);
    line-height: 1.4;
  }
  .homeRecruit-link {
    text-align: center;
    padding-top: 2em;
  }

}

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


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


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


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


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