@charset "utf-8";

/* CSS Document */

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

.mainVisual {
  --mainVisual-height: 100svh;
  --mainVisual-minHeight: 600px;
  --mainVisual-blur: 100px;
  --mainVisual-blurSpeed: 4s;
  position: relative;
  z-index: 2;
  height: var(--mainVisual-height);
  min-height: var(--mainVisual-minHeight);
  overflow: hidden;
  background-color: var(--color-dark01);
  user-select: none;
  transition: 1s;
}


.mainVisual-mist {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 10;
  pointer-events: none;
  -webkit-mask-image: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.25) 68%, #000 82%, #000 100%);
  mask-image: radial-gradient(ellipse at center, transparent 0%, transparent 50%, rgba(0, 0, 0, 0.25) 68%, #000 82%, #000 100%);
}

.mainVisual-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
  opacity: 0;
}
body.is-loaded .mainVisual-bg {
  opacity: 1;
  transition: 2s ease 0s;
}

/*
visual
*/

.mainVisual-visual {
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  user-select: none;
  opacity: 0;
  z-index: 9;
}
.mainVisual-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.45);
}
body.is-loaded .mainVisual-visual {
  opacity: 1;
  transition: 5s ease 0.5s;
}

/*
container
*/

.mainVisual-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-base);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  padding-top: calc(var(--header-height) / 2);
  font-size: clamp(1.3rem,5vw, 1.7rem);
}
.mainVisual-block {
  filter: blur(0.5em);
  opacity: 0;
  translate: 0 0.5em;
  transition: 2s;
}
body.is-loaded .mainVisual-block {
  filter: blur(0);
  opacity: 1;
  translate: 0 0;
  transition: filter 2s ease 0.1s , opacity 1.5s ease 0.1s , translate 1.5s ease 0.1s;
}

.mainVisual-logo {
  filter: invert(1);
  width: 7.8em;
  margin: 0 auto;
}
.mainVisual-lead {
  font-family: var(--font-family-serif);
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-right: -1em;
  padding-top: 1em;
}



/*
slider
*/

.mainVisual-slider{
  opacity: 0;
  transition: all 0.5s ease 0s;
}
body.is-loaded .mainVisual-slider{
  opacity: 1;
}
.mainVisual-slider > li,
.mainVisual-slider .slick-slide{
  position: relative;
  width: 100%;
  height: var(--mainVisual-height);
  min-height: var(--mainVisual-minHeight);
}

.mainVisual-item {
  width: 100%;
  height: var(--mainVisual-height);
  min-height: var(--mainVisual-minHeight);
}

.mainVisual-img{
  width: 100%;
  height: var(--mainVisual-height);
  min-height: var(--mainVisual-minHeight);
  background-position: center center;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  filter: blur(0);
  opacity: 1;
  transition:
    filter var(--mainVisual-blurSpeed) ease,
    opacity var(--mainVisual-blurSpeed) ease;
}
.slick-prev-slide .mainVisual-img {
  filter: blur(var(--mainVisual-blur));
  opacity: 0;
}
.mainVisual-img > img {
  width: 100%;
  height: 100%;
  min-height: var(--mainVisual-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: 110%;
}
.slick-animation .mainVisual-img.-up{
  animation: amin-mainVisual-up 10s linear forwards;
}
.mainVisual-img.-down{
  height: 110%;
}
.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;
  }
}

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

  /*
  container
  */

  .mainVisual-container {
    font-size: clamp(1rem,4vw, 1.3rem);
    padding-top: 0;
  }
  .mainVisual-logo {
    width: 7em;
  }
}


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

.homeIntro {
  text-align: center;
  padding-top: min(25vw,15rem);
  padding-bottom: min(40vw,35rem);
  position: relative;
  overflow: hidden;
  background-image: url(../../img/bg01_lower.png),url(../../img/bg01_upper.png);
  background-repeat: no-repeat, no-repeat;
  background-position: center bottom , center top;
  background-size: max(100%,480px) , max(100%,480px);
  font-family: var(--font-family-serif);
}
.homeIntro-container {
  position: relative;
}
.homeIntro-container-inner {
  position: relative;
  z-index: 9;
}

.homeIntro-heading {
  display: inline-block;
  position: relative;
  white-space: nowrap;
  padding-bottom: 3em;
}
.homeIntro-heading-title {
  font-size: 350%;
  font-weight: 500;
  padding-bottom: 0.1em;
  letter-spacing: 0.2em;
  text-indent: 0.2em;
  color: var(--color-dark02);
}
.homeIntro-heading-title small{
  font-size: 52%;
  padding-right: 0.8em;
  letter-spacing: 0.18em;
}
.homeIntro-heading-subTitle {
  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
  line-height: 1.35;
  border-top: 2px solid var(--color-main);
  border-bottom: 1px solid var(--color-main);
  padding: 0.8em 0;
}

.homeIntro-box {
  display: inline-block;
  position: relative;
}
.homeIntro-text {
  font-size: 1rem;
  font-weight: 500;
  color: var(--color-dark02);
  line-height: 2.5;
  letter-spacing: 0.05em;
}

/*
Gallery
*/

.homeIntro-gallery {
  position: absolute;
  left: 50%;
  top: 0;
  width: 60em;
  translate: -50% 0;
  pointer-events: none;
  padding-top: min(15vw,10rem);
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  pointer-events: none;
}
.homeIntro-gallery-item {
  position: relative;
}

.homeIntro-gallery-box {
  opacity: 0;
  filter: blur(5px);
  position: relative;
  top: 1vmax;
}
.homeIntro-gallery-box.is-show {
  opacity: 1;
  filter: blur(0);
  transition: opacity 2s , filter 2s , top 2s;
  top: 0;
}

.homeIntro-gallery-object {
  position: absolute;
  z-index: 9;
}

.homeIntro-gallery-img {
  position: relative;
}
/*
no
*/

.homeIntro-gallery-item.-no01 {
  width: 22em;
  translate: -24em 0;
}

.homeIntro-gallery-item.-no02 {
  width: 21em;
  margin-top: 8em;
  translate: 24em 0;
}

.homeIntro-gallery-item.-no03 {
  width: 20em;
  margin-top: 8em;
  translate: -5em 0;
}

.homeIntro-gallery-item.-no04 {
  width: 15em;
  margin-top: 2em;
  translate: 5em 0;
}

.homeIntro-gallery-item.-no05 {
  width: 16em;
  margin-top: 4em;
  translate: 17em 0;
}

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

  .homeIntro {
    padding-top: min(18vw,5rem);
    padding-bottom: min(20vw,15rem);
  }


  .homeIntro-heading {
    padding-bottom: 2em;
    font-size: clamp(0.8rem,3.4vw, 1.2rem);
  }

  .homeIntro-text {
    font-size: clamp(0.9rem,3.8vw, 1.2rem);
  }

  /*
  Gallery
  */

  .homeIntro-gallery {
    position: static;
    width: auto;
    translate: 0 0;
    padding-top: 1em;
  }
  .homeIntro-gallery-item {
    position: relative;
  }

  .homeIntro-gallery-box {
    top: 5vmax;
  }

  /*
  no
  */

  .homeIntro-gallery-item.-no01 {
    width: 45vw;
    padding-right: 3vw;
    margin-top: 3em;
    translate: -3vw 0;
  }

  .homeIntro-gallery-item.-no02 {
    width: 50vw;
    translate: 0 0;
  }

  .homeIntro-gallery-item.-no03 {
    width: 50vw;
    margin-top: 2em;
    padding-right: 3vw;
    translate: -5vw 0;
  }
  .homeIntro-gallery-item.-no04 {
    width: 33vw;
    margin-top: 5em;
    translate: 0 0;
    scale: 1.2;
  }

  .homeIntro-gallery-item.-no05 {
    width: 35vw;
    margin-top: -2em;
    translate: -22vw 0;
  }

}

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


  .homeIntro-object {
    position: absolute;
    pointer-events: none;
    user-select: none;
  }
  .homeIntro-object.-no01 {
    right: calc(100% - 2em);
  }
  .homeIntro-object.-no02 {
    bottom: calc(100% - 1em);
  }

  .homeIntro-object.-no03 {
    width: clamp(3rem,20vw, 7rem);
    left: 100%;
    top: -5em;
    translate: -50% 0 ;
  }
  .homeIntro-object.-no04 {
    bottom: -6rem;
    translate: 80% 0 ;
  }
  .homeIntro-object.-no05 {
    top: auto;
    bottom: -6em;
    left: 80%;
    translate: -50% 0 ;
  }


}

/***********
homeContents
************/

.homeContents {
  position: relative;
  z-index: 2;
  background-color: var(--color-base);
}

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

.homeVisual {
  height: 35rem;
  position: relative;
}
.homeVisual::before {
  content: "";
  display: block;
  width: 100%;
  height: 100lvh;
  position: fixed;
  left: 0;
  top: 0;
  background: url(../../img/visual01.jpg) no-repeat center center / cover ;
}

.homeVisual-lead {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 2;
  color: var(--color-base);
  background-color: #0003;

  font-family: var(--font-family-gothic-en);
  font-weight: 400;
  font-size: 1.1rem;
  letter-spacing: 0.5em;
  text-indent: 0.5em;
}

.homeVisual-img {
  position: absolute;
  right: 12vw;
  top: 0;
  width: clamp(10rem,20vw, 14rem);
  margin-top: -2rem;
  z-index: 9;
}

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


  .homeVisual {
    height: 30rem;
  }
  .homeVisual::before {
  }

  .homeVisual-lead {
    font-size: 0.9rem;
  }

  .homeVisual-img {
    right: 6vw;
    top: 0;
    width: clamp(8rem,33vw, 10rem);
    margin-top: -1rem;
    z-index: 9;
  }


}

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

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

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

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

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

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

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