@charset "utf-8";

/* CSS Document */



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

.mainVisual {
  --mv-height: 100svh;
  --mv-minHeight: 600px;
  --mv-side: max(22vw,250px);
  position: relative;
  z-index: 9;
  height: var(--mv-height);
  min-height: var(--mv-minHeight);
}

.mainVisual-wrapper {
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  justify-content: end;
}

/*
visual
*/

.mainVisual-visual {
  width: calc(100% - var(--mv-side));
  position: relative;
}
.mainVisual-visual::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.08);
}
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.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;
  }
}


/*
container
*/

.mainVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--mv-side);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.mainVisual-logo {
  font-size: 100%;
  padding: 1em 12% 2em;
}

/*
lead
*/

.mainVisual-lead {
  white-space: nowrap;
  display: flex;
  flex-direction: row-reverse;
  position: absolute;
  right: 5vw;
  bottom: 6vw;
  font-size: clamp(24px,1.4vw, 36px);
  color: var(--color-base);
}
.mainVisual-lead-text {
  font-weight: 200;
  letter-spacing: 0.15em;
  line-height: 1.7;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
.mainVisual-lead-text:nth-child(2) {
  padding-top: 2em;
}

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

  .mainVisual {
    --mv-height: 100lvh;
    font-size: clamp(14px,4vw, 18px);
  }
  .mainVisual-visual {
    width: 100%;
  }


  /*
  container
  */

  .mainVisual-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    z-index: 9;
    font-size: clamp(14px,4vw, 18px);
  }
  .mainVisual-container {
    position: static;
    width: auto;
    height: auto;
    display: block;
  }
  .mainVisual-logo {
    width: 14em;
    margin: 0 auto;
    padding: 0 0;
    filter: brightness(1000%);
  }

  /*
  lead
  */

  .mainVisual-lead {
    padding-top: 1.5em;
    display: block;
    position: static;
    font-size: 100%;
  }
  .mainVisual-lead-text {
    font-weight: 300;
    letter-spacing: 0.1em;
    line-height: 1.7;
    -webkit-writing-mode: horizontal-lr;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
  }
  .mainVisual-lead-text:nth-child(2) {
    padding-top: 0;
  }


}


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

.homeTicker {
  width: 100vw;
  height: clamp(150px,25vw, 600px);
  margin-bottom: var(--padding-small);
}
.homeTicker-slider {
  white-space: nowrap;
  display: flex;
}
.homeTicker-item {
  padding-inline: 5px;
}
.homeTicker-item img {
  width: auto;
  height: clamp(150px,25vw, 600px);
}

/*
text
*/

.homeTicker02 {
  width: 100vw;
  height: clamp(100px,8vw, 300px);
  margin-top: min(7vw,3em);
}
.homeTicker02-slider {
  white-space: nowrap;
  display: flex;
}
.homeTicker02-item {
}
.homeTicker02-item img {
  width: auto;
  height: clamp(100px,8vw, 300px);
}

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

  .homeTicker ,
  .homeTicker-item img{
    height: clamp(150px,45vw, 400px);
  }
  .homeTicker-item {
    padding-inline: 2px;
  }
  .homeTicker-item img {
    height: clamp(150px,45vw, 400px);
  }

  .homeTicker02 ,
  .homeTicker02-item img {
    margin-top: 0;
    height: clamp(80px,20vw, 100px);
  }


}

/***********
homeAbout
************/

.homeAbout {
  padding-top: min(15vw,10em);
  padding-bottom: min(30vw,30em);
  font-size: clamp(14px,1vw, 24px);
  position: relative;
}
.homeAbout-container {
  display: flex;
  justify-content: center;
}
.homeAbout-block {
  width: 52em;
  aspect-ratio: 1 / 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.homeAbout-block::after {
  content: "";
  display: block;
  width: 52em;
  aspect-ratio: 1 / 1;
  position: absolute;
  left: 50%;
  top: 50%;
  translate: -50% -50%;
  background: var(--color-base);
  border-radius: 50%;
}
.homeAbout-block-box {
  position: relative;
  z-index: 9;
}
.homeAbout-text {
  line-height: 2.4em;
  text-align: center;
}

.homeAbout-link {
  padding-top: 3em;
}


.homeAbout-img {
  position: absolute;
}
.homeAbout-img.-no01 {
  width: 22em;
  top: 12em;
  right: calc(50% + 28em);
}
.homeAbout-img.-no02 {
  width: 27em;
  top: 13em;
  left: calc(50% + 24em);
}
.homeAbout-img.-no03 {
  width: 24em;
  top: 55em;
  right: calc(50% + 16em);
}
.homeAbout-img.-no04 {
  width: 18em;
  top: 45em;
  left: calc(50% + 30em);
}
.homeAbout-img.-no05 {
  width: 21em;
  top: 68em;
  left: calc(50% + 2em);
}


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

  .homeAbout {
    padding-top: min(15vw,10em);
    padding-bottom: min(15vw,10em);
    font-size: clamp(11px,3.6vw, 16px);
  }
  .homeAbout-container {
    display: flex;
    justify-content: center;
    padding-top: 4em;
  }
  .homeAbout-block {
    width: auto;
    aspect-ratio: auto;
  }
  .homeAbout-block::after {
    width: 38em;
    box-shadow: 0 0 50px rgba(182, 158, 87, 0.1);
  }
  .homeAbout-block-box {
    position: relative;
    z-index: 9;
  }
  .homeAbout-text {
    line-height: 2.8em;
    text-align: center;
  }

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



  .homeAbout-gallery {
    padding-top: 10vmax;
    display: flex;
    flex-wrap: wrap;
  }

  .homeAbout-img {
    position: static;
  }
  .homeAbout-img.-no01 {
    width: 40%;
  }
  .homeAbout-img.-no02 {
    width: 60%;
    margin-top: 15vw;
  }
  .homeAbout-img.-no02 img {
    translate: 5vw 0 ;
  }
  .homeAbout-img.-no03 {
    width: 60%;
    margin-top: 10vw;
  }
  .homeAbout-img.-no03 img {
    translate: -5vw 0 ;
  }
  .homeAbout-img.-no04 {
    width: 40%;
    margin-top: 20vw;
  }
  .homeAbout-img.-no05 {
    width: 50%;
    margin-top: -15vw;
  }


}
/***********
xxxxx
************/

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

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

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

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

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

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