@charset "utf-8";

/* CSS Document */



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

.mainVisual {
  --mv-height: 100svh;
  --mv-minHeight: 600px;
  position: relative;
  overflow: hidden;
  z-index: 9;
  height: var(--mv-height);
  min-height: var(--mv-minHeight);
  background-color: var(--color-dark01);
}

/*
visual
*/

.mainVisual-visual {
  width: 100%;
  position: relative;
}
.mainVisual-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
}
body.is-loaded .mainVisual-visual {
  opacity: 1;
  transition: 0.5s ease 0s;
}

/*
slider
*/

.mainVisual-slider{
  opacity: 0;
  transition: all 2s ease 0.1s;
}
body.is-loaded .mainVisual-slider{
  opacity: 1;
}
.mainVisual-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
  height: var(--mv-height);
  min-height: var(--mv-minHeight);
}
.mainVisual-img{
  width: 100%;
  height: var(--mv-height);
  min-height: var(--mv-minHeight);
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
}
.mainVisual-img > img {
  width: 100%;
  height: 100%;
  min-height: var(--mv-minHeight);
  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.15;
  }
}
@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;
  }
}

/*
container
*/



.mainVisual-base {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}


.mainVisual-container {
}

.mainVisual-heading {
  width: clamp(320px,20vw, 500px);
  margin-inline: auto;

}
.mainVisual-logo-lead {
  width: 64%;
  margin-inline: auto;
  opacity: 0;
  filter: blur(0.2em);
  transition: opacity 1.2s ease, translate 1.2s ease, filter 1.2s ease;
  transition-delay: 0.5s;
  translate: 0 0.5em;
  display: inline-block;
}
.mainVisual-logo-lead img {
  translate: 0 40%;
}
.mainVisual-logo-name {
  opacity: 0;
  transition-delay: 1s;
}
.mainVisual-logo-text {
}



body.is-loaded .mainVisual-logo-lead{
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
}
body.is-loaded .mainVisual-logo-name{
  opacity: 1;
}

/*
lead
*/

.mainVisual-lead {
  white-space: nowrap;
  padding-top: 1em;
  font-size: clamp(18px,1.2vw, 32px);
  color: var(--color-base);
  opacity: 0;
  filter: blur(10px);
  transition: opacity 1.2s ease, translate 1.2s ease, filter 1.2s ease;
  transition-delay: 0.5s;
  translate: 0 0.5em;
  user-select: none;
}
.mainVisual-lead-text {
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 2.4;
}
.mainVisual-lead-text:nth-child(2) {
  padding-top: 7em;
}
body.is-loaded .mainVisual-lead{
  opacity: 1;
  filter: blur(0);
  translate: 0 0;
}


/*
scroll
*/

.mainVisual-scroll {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 99;
  translate: 85% 0 ;
  rotate: -90deg;
  transform-origin: left bottom;
}
.mainVisual-scroll a {
  display: block;
  width: 180px;
  padding: 0.5em 0 0.8em 0;
  text-align: right;
  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.04em;
}
.mainVisual-scroll a::before,
.mainVisual-scroll a::after {
  content: "";
  display: block;
  width: calc(100% - 4em);
  height: 1px;
  position: absolute;
  left: 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) reverse 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;
  }

}


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


  .mainVisual {
  }
  /*
  container
  */

  .mainVisual-base {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 99;
    padding-bottom: 80px;
  }

  .mainVisual-container {
    position: static;
    display: block;
    padding-left: 0;
    height: auto;
  }

  .mainVisual-heading {
    width: clamp(240px,50vw, 320px);
    margin: 0 auto;
  }

  /*
  lead
  */

  .mainVisual-lead {
    display: block;
    position: static;
    width: 100%;
    text-align: center;
    font-size: clamp(14px,4vw, 18px);
    padding-top: 2.5em;
  }
  .mainVisual-lead-text {
    ;height: 2px;
  }


  /*
  scroll
  */

  .mainVisual-scroll a {
    width: 120px;
    font-size: 0.85rem;
    transform-origin: left;
    scale: 0.8;
  }

}


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

.homeNews {
  overflow: hidden;
}

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

.homeIntro {
}
.homeIntro-upper {
  width: 100%;
  height: 110svh;
  min-height: 18em;
  font-size: clamp(22px,2.4vw, 60px);
  position: sticky;
  top: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  line-height: 1;
}
.homeIntro-upper-lead {
}
.homeIntro-word {
  font-weight: 400;
  padding: 20px 0;
  overflow: hidden;
  user-select: none;
}
.homeIntro-word-item {
}
.homeIntro-word-item.-no01 {
  font-size: 280%;
  padding-bottom: 0.2em;
  translate: 0 0;
}
.homeIntro-word-item.-no02 {
  font-size: 160%;
  padding-bottom: 0.1em;
  translate: -3% 0;
}
.homeIntro-word-item.-no03 {
  font-size: 130%;
  padding-bottom: 0.1em;
  margin-top: -0.2em;
  translate: -1% 0;
}
.homeIntro-word-item.-no04 {
  font-size: 150%;
  padding-top: 0.1em;
  padding-bottom: 0.1em;
  translate: -1.2% 0;
}
.homeIntro-word-item.-no05 {
  font-size: 190%;
  margin-top: -0.3em;
  translate: 1.5% 0;
}
.homeIntro-word-item.-no06 {
  font-size: 100%;
  padding-bottom: 1em;
  translate: -1% 0;
}
.homeIntro-word-item.-no07 {
  font-size: 100%;
  padding-bottom: 0.1em;
}
.homeIntro-word-wave {
  width: 7em;
  margin: 1.5em auto 0;
}

.homeIntro-word > div{
  opacity: 0;
  filter: blur(20px);
  transition: opacity 2s ease, filter 2s ease;
  transition-delay: 0.1s;
}
.homeIntro-word.is-show > div{
  opacity: 1;
  filter: blur(0);
}


/*
container
*/

.homeIntro-container {
  overflow: hidden;
  padding: 5em 0;
}

/*
section01
*/

.homeIntro-section01 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 clamp(70px,6vw, 140px);
}
.homeIntro-section01-visual {
  width: 38%;
}
.homeIntro-section01-img01 {
  padding-left: 10%;
  width: 75%;
  position: relative;
  z-index: 2;
}
.homeIntro-section01-img02 {
  padding-left: 30%;
  margin-top: -15%;
}
.homeIntro-section01-inner {
  width: 36%;
  padding: 4em 0
}
.homeIntro-heading {
  padding-bottom: 3em;
}
.homeIntro-heading-object {
  width: 14vw;
  padding-bottom: 4em;
  translate: 24% 0;
}
.homeIntro-heading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-size: clamp(2.4rem,4.4vw, 4rem);
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 0.3em;
}
.homeIntro-heading-title {
  font-size: clamp(1rem,1vw, 1.5rem);
  font-weight: 400;
  background-color: var(--color-main);
  color: var(--color-base);
  padding: 0 0.5em;
  display: inline-block;
}

.homeIntro-text {
  font-size: clamp(1rem,1vw, 1.5rem);
  line-height: 2.4;
}

/*
section02
*/

.homeIntro-section02 {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
  justify-content: space-between;
  gap: 0 clamp(70px,6vw, 140px);
}
.homeIntro-section02-visual {
  width: 36%;
}
.homeIntro-section02-img {
}
.homeIntro-section02-inner {
  padding-left: 4%;
  padding-block: 2em;
  flex: 1;
}

/*
section03
*/

.homeIntro-section03 {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0 clamp(70px,6vw, 140px);
}
.homeIntro-section03-img {
  width: 44%;
  padding-left: 20%;
}
.homeIntro-inner {
  width: 36%;
  padding-bottom: 2em;
}
.homeIntro-link {
  padding-top: 3em;
}


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

  /*
  section01
  */

  .homeIntro-section01-visual {
    width: 38%;
  }
  .homeIntro-section01-img01 {
    padding-left: 2%;
    width: 90%;
  }

  /*
  section02
  */

  .homeIntro-section02-inner {
    padding-left: 4%;
    max-width: 40vw;
  }

  /*
  section03
  */

  .homeIntro-section03-img {
    width: 38%;
    padding-left: 4%;
  }

}

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

  .homeIntro {
  }
  .homeIntro-upper {
    height: 110svh;
    min-height: 10em;
    font-size: clamp(18px,6vw, 24px);
  }
  .homeIntro-upper-lead {
  }
  .homeIntro-word {
    padding: 40px 0 20px;
    max-width: 10em;
    margin: 0 auto;
    transition: 1.5s;
  }
  body.is-homeIntro-container .homeIntro-word {
    opacity: 0.15;
    filter: blur(2px);
  }
  .homeIntro-word-item {
  }
  .homeIntro-word-item.-no01 {
    padding-bottom: 0.2em;
  }
  .homeIntro-word-item.-no02 {
    translate: -10% 0;
  }
  .homeIntro-word-item.-no03 {
    margin-top: -0.2em;
    translate: -2% 0;
  }
  .homeIntro-word-item.-no04 {
    padding-bottom: 0.1em;
    translate: -5% 0;
  }
  .homeIntro-word-item.-no05 {
    margin-top: -0.1em;
    translate: 2.5% 0;
  }
  .homeIntro-word-item.-no06 {
    padding-bottom: 0.5em;
    translate: -3% 0;
  }
  .homeIntro-word-item.-no07 {
    font-size: 100%;
    padding-bottom: 0.1em;
  }
  .homeIntro-word-wave {
    width: 7em;
    margin: 1.5em auto 0;
  }

  .homeIntro-word > div{
    opacity: 0;
    filter: blur(15px);
    transition: opacity 1s ease, filter 1s ease;
    transition-delay: 0.1s;
  }
  /*
  container
  */

  .homeIntro-container {
    padding: 3em 0;
    position: relative;
    z-index: 9;
  }

  /*
  section01
  */

  .homeIntro-section01 {
    display: block;
  }
  .homeIntro-section01-visual {
    width: auto;
  }
  .homeIntro-section01-img01 {
    padding-left: 2%;
    width: 85%;
  }
  .homeIntro-section01-inner {
    width: auto;
    padding: 4em 6vw 4em;
  }
  .homeIntro-heading {
    padding-bottom: 2em;
  }
  .homeIntro-heading-object {
    width: 45vw;
    max-width: 200px;
    padding-bottom: 1em;
    translate: 30vw 0;
  }
  .homeIntro-heading-subTitle {
    font-size: clamp(2.4rem,13vw, 4rem);
  }
  .homeIntro-heading-title {
    font-size: clamp(1rem,4.4vw, 1.2rem);
  }

  .homeIntro-text {
    font-size: clamp(0.8rem,4.4vw, 1.2rem);
    line-height: 2.4;
  }

  /*
  section02
  */

  .homeIntro-section02 {
    display: block;
  }
  .homeIntro-section02-visual {
    width: auto;
  }
  .homeIntro-section02-inner {
    padding: 4em 6vw 4em;
    max-width: initial;
  }
  .homeIntro-section02 .homeIntro-text {
  }

  /*
  section03
  */

  .homeIntro-section03 {
    display: block;
  }
  .homeIntro-section03-img {
    width: auto;
    margin-left: 30%;
    padding-left: 3%;
    text-align: right;
  }
  .homeIntro-section03-img img {
    max-width: 240px;
  }
  .homeIntro-inner {
    width: auto;
  }
  .homeIntro-link {
    text-align: center;
    padding-top: 2em;
  }

}


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

.homeTicker {
  overflow: hidden;
  font-size: clamp(150px,14vw, 300px);
  white-space: nowrap;
  line-height: 1;
  height: 0.95em;
  -webkit-mask-image: url(../../img/mask01.png);
  mask-image: linear-gradient(to bottom, black 20%, transparent 100%);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  position: relative;
  pointer-events: none;

}
.homeTicker-slider {
}
.homeTicker-item {
  padding: 0 0.15em;
  letter-spacing: -0.05em;
  font-feature-settings: "palt";
  font-weight: 600;
  opacity: 0.1;
}

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

  .homeTicker {
    font-size: clamp(80px,20vw, 120px);
  }

}


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