@charset "utf-8";

/* CSS Document */



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

.mainVisual {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  background-color: var(--color-main);
  user-select: none;
  transition: 1s;
}

/*
visual
*/

.mainVisual-visual {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
  opacity: 0;
}
body.is-loaded .mainVisual-visual {
  opacity: 1;
  transition: 0.5s ease 0s;
}

/*
start
*/

.mainVisual-start {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  pointer-events: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  translate: 0 -1em;
  opacity: 0;
}
.mainVisual-start-logo {
  width: 13em;
  margin: 0 auto;
  filter: invert(1);
}
body.is-loaded .mainVisual-start {
  translate: 0 0;
  transition: 1s ease 0.4s;
  opacity: 1;
}
body.is-loaded .mainVisual-start-logo {
  translate: 0 1em;
  transition: 1s ease 2s;
  opacity: 0;
}

/*
container
*/

.mainVisual-container {
  position: absolute;
  left: 3em;
  bottom: 140px;
  color: var(--color-base);
}
.mainVisual-block {
  translate: 0 -1em;
  opacity: 0;
}
.mainVisual-lead {
  width: 26em;
}
.mainVisual-lead-title {
}
.mainVisual-text {
  font-size: 0.8rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  line-height: 1.3;
  padding-top: 1.2em;
}
body.is-started .mainVisual-block {
  translate: 0 0;
  transition: 1s ease 2s;
  opacity: 1;
}


/*
scroll
*/

.mainVisual-scroll {
  position: absolute;
  right: 4em;
  bottom: 1em;
  transform: rotate(90deg) ;
  transform-origin: right bottom;
  z-index: 99;
}
.mainVisual-scroll a {
  display: block;
  width: 180px;
  padding: 10px 0 ;
  position: relative;
  overflow: hidden;
  color: var(--color-base);
  text-decoration: none;
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 0.85rem;
  letter-spacing: 0.18em;
}
.mainVisual-scroll a::before,
.mainVisual-scroll a::after {
  content: "";
  display: block;
  width: calc(100% - 4em);
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: left;
  background-color: rgba(255, 255, 255, 0.5);
}
.mainVisual-scroll a::before{
  background-color: rgba(255, 255, 255, 0.2);
}
.mainVisual-scroll a::after {
  transform: scaleX(0);
  animation: anim-mainVisualScroll01 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}

@keyframes anim-mainVisualScroll01 {
  0% {
    transform: scaleX(0)
  }
  35% {
    transform: scaleX(1);
    transform-origin: left
  }
  40% {
    transform-origin: right
  }
  50% {
    transform: scaleX(1)
  }
  85% {
    transform: scaleX(0);
    transform-origin: right
  }
  100% {
    transform-origin: left
  }
}
@keyframes anim-mainVisualScroll02 {
  0% {
    opacity: 0.2;
  }
  20% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }

}

/*
slider
*/

.mainVisual-slider{
  opacity: 0;
  transition: all 0.5s ease 0s;
}
body.is-loaded .mainVisual-slider{
  opacity: 1;
}
.mainVisual-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
  height: 100svh;
  min-height: 600px;
}
.mainVisual-img{
  width: 100%;
  height: 100svh;
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.mainVisual-img > img {
  width: 100%;
  height: 100%;
  min-height: 600px;
  object-fit: cover;
}

.mainVisual-img.-zoom{
  transform-origin: center center;
}
.slick-animation .mainVisual-img.-zoom{
  animation: amin-mainVisual-zoom 10s linear forwards;
}
.mainVisual-img.-left{
  width: 110%;
  transform-origin: left center;
}
.slick-animation .mainVisual-img.-left{
  animation: amin-mainVisual-left 10s linear forwards;
}
.mainVisual-img.-right{
  width: 110%;
  transform-origin: right center;
}
.slick-animation .mainVisual-img.-right{
  animation: amin-mainVisual-right 10s linear forwards;
}
.mainVisual-img.-up{
  height: 110svh;
}
.slick-animation .mainVisual-img.-up{
  animation: amin-mainVisual-up 10s linear forwards;
}
.mainVisual-img.-down{
  height: 110svh;
}
.slick-animation .mainVisual-img.-down{
  animation: amin-mainVisual-down 10s linear forwards;
}

@keyframes amin-mainVisual-zoom {
  0% {
    scale: 1;
  }
  100% {
    scale: 1.1;
  }
}
@keyframes amin-mainVisual-left {
  0% {
    translate: 0 0;
  }
  100% {
    translate: -5% 0;
  }
}
@keyframes amin-mainVisual-right {
  0% {
    translate: -5% 0;
  }
  100% {
    translate: 0 0;
  }
}
@keyframes amin-mainVisual-up {
  0% {
    translate: 0 0;
  }
  100% {
    translate: 0 -5%;
  }
}
@keyframes amin-mainVisual-down {
  0% {
    translate: 0 -5%;
  }
  100% {
    translate: 0 0;
  }
}

/*
dots
*/

.mainVisual .slick-dots {
  position: absolute;
  left: 3em;
  bottom: 60px;
  z-index: 9;
  display: flex !important;
  justify-content: start;
  align-items: center;
  gap: 12px;
  list-style: none;
  margin: 0;
}
.mainVisual .slick-dots li {
  display: inline-block;
  margin: 0;
  padding: 0;
}
.mainVisual .slick-dots li button {
  position: relative;
  width: 46px;
  height: 46px;
  background: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: none;
}
.mainVisual .slick-dots li button .dot-number {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-size: 13px;
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
  color: var(--color-base);
  z-index: 2;
  pointer-events: none;
  font-family: monospace;
}

/* --- SVGの設定 --- */
.mainVisual .dot-progress {
  width: 100%;
  height: 100%;
  transform: rotate(-90deg);
  z-index: 1;
}
.mainVisual .dot-progress circle {
  fill: none;
  stroke-width: 1;
  transition: stroke 0.3s;
}
.mainVisual .dot-progress .bg {
  stroke: rgba(255, 255, 255, 0.1);
}
.mainVisual .dot-progress .fg {
  stroke: var(--color-base);
  stroke-dasharray: 100;
  stroke-dashoffset: 100;
  stroke-linecap: round;
  opacity: 0.7;
}
/* --- 初回スライド用アニメーション--- */
.mainVisual .fg.animating-first {
  animation: progressCircle var(--first-duration, 4.0s) linear forwards;
}
/* --- 2回目以降のスライド用アニメーション--- */
.mainVisual .fg.animating-rest {
  animation: progressCircle var(--rest-duration, 6s) linear forwards;
}
/* --- アクティブな数字の色 --- */
.mainVisual .slick-dots li.slick-active .dot-number {
}

@keyframes progressCircle {
  from {
    stroke-dashoffset: 100;
  }
  to {
    stroke-dashoffset: 0;
  }
}


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

  .mainVisual {
    height: 100svh;
    min-height: 600px;
  }

  /*
  start
  */

  .mainVisual-start-logo {
    width: 11em;
  }

  /*
  container
  */

  .mainVisual-container {
    left: 7vw;
    bottom: 140px;
  }
  .mainVisual-lead {
    width: clamp(180px,70vw, 400px);
  }
  .mainVisual-lead-title {
  }
  .mainVisual-text {
    font-size: max(0.7rem,9px);
    line-height: 1.4;
    padding-top: 1.2em;
  }
  body.is-started .mainVisual-block {
    translate: 0 0;
    transition: 1s ease 2s;
    opacity: 1;
  }


  /*
  scroll
  */

  .mainVisual-scroll {
    right: 2em;
    bottom: 0;
    z-index: 99;
  }
  .mainVisual-scroll a {
  }
  .mainVisual-scroll a span{
    display: none;
    opacity: 0;
  }
  .mainVisual-scroll a::before,
  .mainVisual-scroll a::after {
    width: 100px;
  }

  /*
  slider
  */

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

  .mainVisual-img.-left{
    width: 140%;
  }
  .slick-animation .mainVisual-img.-left{
  }
  .mainVisual-img.-right{
    width: 140%;
  }
  .slick-animation .mainVisual-img.-right{
  }
  .mainVisual-img.-up{
    height: 120svh;
  }
  .slick-animation .mainVisual-img.-up{
  }
  .mainVisual-img.-down{
    height: 120svh;
  }
  .slick-animation .mainVisual-img.-down{
  }

  @keyframes amin-mainVisual-zoom {
    0% {
      scale: 1;
    }
    100% {
      scale: 1.2;
    }
  }
  @keyframes amin-mainVisual-left {
    0% {
      translate: 0 0;
    }
    100% {
      translate: -20% 0;
    }
  }
  @keyframes amin-mainVisual-right {
    0% {
      translate: -20% 0;
    }
    100% {
      translate: 0 0;
    }
  }
  @keyframes amin-mainVisual-up {
    0% {
      translate: 0 0;
    }
    100% {
      translate: 0 -10%;
    }
  }
  @keyframes amin-mainVisual-down {
    0% {
      translate: 0 -10%;
    }
    100% {
      translate: 0 0;
    }
  }

  /*
  dots
  */

  .mainVisual .slick-dots {
    left: 7vw;
    bottom: 35px;
    gap: 12px;
    list-style: none;
    margin: 0;
    scale: 0.8;
    transform-origin: left bottom;
  }

}

/***********
homeBase
************/

.homeBase {
  padding-left: 5vw;
  padding-right: 5vw;
}


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

  .homeBase {
    padding-left: min(5vw,30px);
    padding-right: min(5vw,30px);
  }

}


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

.homeHeading {
  padding-bottom: 2em;
}
.homeHeading-title {
  font-size: clamp(4.5rem,10vw, 12rem);
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.22;
  white-space: nowrap;
  position: relative;
  color: rgba(0, 0, 0, 0.1);
}

.homeHeading-text {
  font-size: 0.85rem;
  line-height: 1.8;
  letter-spacing: 0.06em;
  padding-top: 0.8em;
}

.homeHeading.-bar::before {
  content: "";
  display: block;
  width: 1.8em;
  height: 1px;
  background-color: var(--color-main);
  margin-bottom: 0.5em;
}

.homeHeading.-white.-bar::before {
  background-color: var(--color-base);
}
.homeHeading.-white .homeHeading-title {
  color: rgba(255, 255, 255, 0.2);
}
.homeHeading.-white .homeHeading-title::after {
  color: rgba(255, 255, 255, 1);
}

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

  .homeHeading {
    padding-bottom: 2em;
  }
  .homeHeading-title {
    /* font-size: clamp(2.5rem,14vw, 4.5rem); */
    font-size: clamp(2.5rem,14vw, 4.5rem);
  }

  .homeHeading-text {
    font-size: 0.85rem;
    padding-top: 0.8em;
  }

  .homeHeading.-bar::before {
    width: 1.4em;
  }

}

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

.homeIntro {
  padding-top: min(20vw,10em);
  padding-bottom: min(25vw,15em);
  background-color: var(--color-dark01);
  color: var(--color-base);
  overflow: hidden;
}



.homeIntro-headline {
  font-size: clamp(30px,4vw, 90px);
  font-feature-settings: "palt";
  padding-bottom: 0.5em;
  letter-spacing: 0.1em;
  font-weight: 600;
  line-height: 1.1;
  white-space: nowrap;
}
.homeIntro-headline-lead {
}
.homeIntro-headline-lead + .homeIntro-headline-lead{
  margin-top: 0.4em;
  margin-left: 3em;
}
.homeIntro-headline-text {
  display: inline-block;
  background-color: var(--color-brand01);
  padding: 0.1em 0.5em 0.2em;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
  transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1) 1s;
}
.homeIntro-headline-lead:nth-child(2) .homeIntro-headline-text {
  transition-delay: 1.2s;
}
.homeIntro-headline.is-show .homeIntro-headline-text {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}

.homeIntro-headline-text span {
  display: inline-block;
  translate: 0 110%;
  transition: translate ease 0.8s;
}
.homeIntro-headline.is-show .homeIntro-headline-text span {
  translate: 0 0;
}






.homeIntro-container {
  display: flex;
  align-items: start;
}
.homeIntro-visual {
  width: 48%;
  padding-top: 3em;
  overflow: hidden;
}
.homeIntro-visual-inner {
  width: 200%;
}
.homeIntro-inner {
  flex: 1;
  padding-left: 10%;
}
.homeIntro-title {
  width: clamp(400px,65%, 800px);
}
.homeIntro-lead {
  width: clamp(300px,50%, 600px);
  padding-top: 3em;
  padding-bottom: 1.8em;
}
.homeIntro-text {
  font-weight: 500;
  line-height: 2.2;
  letter-spacing: 0.06em;
}
.homeIntro-subText {
  font-family: var(--font-family-gothic-en);
  font-size: max(85%,12px);
  font-weight: 400;
  letter-spacing: 0.06em;
  opacity: 0.5;
  padding-top: 2em;
}

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

.homeIntro-slider {
  transform: translate(0, 0);
}
.homeIntro-slider.slick-initialized.is-action {
  animation: anim-homeIntro-move 2.8s ease forwards 0.5s;
}
.homeIntro-slider.slick-initialized.is-reset {
  animation: anim-homeIntro-reset 0.5s ease forwards;
}

@keyframes anim-homeIntro-move {
  from {
    transform: translate(0, 0);
  }
  to {
    transform: translate(-3vw, 0);
  }
}
@keyframes anim-homeIntro-reset {
  from {
    transform: translate(-3vw, 0);
  }
  to {
    transform: translate(0, 0);
  }
}


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

  .homeIntro-visual {
    width: 52%;
    padding-top: 2em;
  }
  .homeIntro-inner {
    padding-left: 5%;
  }
  .homeIntro-title {
    width: clamp(280px,100%, 400px);
  }
}

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

  .homeIntro {
    padding-top: min(15vw,8em);
    padding-bottom: min(20vw,12em);
  }


  .homeIntro-headline {
    font-size: clamp(16px,6vw, 30px);
    padding-bottom: 1.5em;
  }
  .homeIntro-headline-lead + .homeIntro-headline-lead{
    margin-top: 0.4em;
    margin-left: 1.2em;
  }





  .homeIntro-container {
    display: block;
  }
  .homeIntro-visual {
    width: auto;
    padding-top: 0;
  }
  .homeIntro-inner {
    padding-left: 0;
    padding-top: 2em;
  }
  .homeIntro-title {
    width: clamp(200px,95%, 400px);
  }
  .homeIntro-lead {
    width: clamp(180px,70%, 300px);
    padding-top: 2em;
    padding-bottom: 1.8em;
  }
  .homeIntro-text {
    font-size: 0.85rem;
  }
  .homeIntro-subText {
    font-size: max(70%,10px);
  }

  .homeIntro-link {
    padding-top: 1em;
    text-align: center;
  }

}

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

.homeWorks {
  padding-top: min(20vw,10em);
  padding-bottom: min(25vw,15em);
  overflow: hidden;
}

.homeWorks-container {
  padding-top: 3em;
}
.homeWorks-title {
  font-size: 1.8rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0.02em;
  padding-bottom: 1.5em;
}
.homeWorks-title::before {
  content: "";
  display: block;
  width: 1em;
  height: 1px;
  background-color: var(--color-main);
  margin-bottom: 0.5em;
}

.homeWorks-section {
}
.homeWorks-section + .homeWorks-section {
  padding-top: 8em;
}

.homeWorks-link {
  text-align: center;
  padding-top: 2em;
}


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

  .homeWorks {
    padding-top: min(15vw,8em);
    padding-bottom: min(20vw,12em);
  }

  .homeWorks-container {
    padding-top: 1em;
  }
  .homeWorks-title {
    font-size: 1.6rem;
    padding-bottom: 0.5em;
  }

  .homeWorks-section + .homeWorks-section {
    padding-top: 4em;
  }

  .homeWorks-link {
    padding-top: 1em;
  }

}
/***********
homeNews
************/

.homeNews {
  padding-top: min(20vw,10em);
  padding-bottom: min(20vw,10em);
  overflow: hidden;
}
.homeNews-container {
  display: flex;
}
.homeNews-heading {
  padding-right: 5%;
  min-width: 22em;
}
.homeNews-heading-block {
  display: flex;
  align-items: end;
  flex-wrap: wrap;
  white-space: nowrap;
}
.homeNews-heading-subTitle {
  font-size: 4.2rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 0.4em;
}
.homeNews-heading-title {
  font-size: 0.9rem;
  font-weight: 500;
  translate: 0 -0.1em;
}
.homeNews-inner {
  flex: 1;
  padding-top: 2em;
}
.homeNews-link {
  padding-top: 3em;
  text-align: right;
}

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

  .homeNews-heading {
    padding-right: 3%;
    min-width: 16em;
  }

}

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

  .homeNews {
    padding-top: min(12vw,6em);
    padding-bottom: min(12vw,6em);
  }
  .homeNews-container {
    display: block;
  }
  .homeNews-heading {
    padding-right: 0;
    min-width: auto;
  }
  .homeNews-heading-block {
    display: flex;
    align-items: end;
    flex-wrap: wrap;
    white-space: nowrap;
  }
  .homeNews-heading-subTitle {
    font-size: clamp(2.5rem,14vw, 4.5rem);
  }
  .homeNews-heading-title {
  }
  .homeNews-inner {
    padding-top: 2em;
  }
  .homeNews-link {
    padding-top: 1em;
    text-align: center;
  }
}

/***********
homeColumn
************/

.homeColumn {
  padding-top: min(20vw,10em);
  padding-bottom: min(20vw,10em);
  overflow: hidden;
}
.homeColumn-heading {
  padding-bottom: 4em;
}
.homeColumn-heading-subTitle {
  font-size: 4.2rem;
  font-family: var(--font-family-gothic-en);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
  margin-right: 0.4em;
}
.homeColumn-heading-text {
  font-size: 0.9rem;
  font-weight: 400;
  padding-top: 2em;
}
.homeColumn-link {
  padding-top: 4em;
  text-align: center;
}


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

  .homeColumn {
    padding-top: min(12vw,6em);
    padding-bottom: min(12vw,6em);
  }
  .homeColumn-heading {
    padding-bottom: 2em;
  }
  .homeColumn-heading-subTitle {
    /* font-size: clamp(2rem,12vw, 4rem); */
    font-size: clamp(2.5rem,14vw, 4.5rem);
  }
  .homeColumn-heading-text {
    font-size: 0.85rem;
    padding-top: 1em;
    line-height: 1.8;
  }
  .homeColumn-link {
    padding-top: 1em;
    text-align: center;
  }


}



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