@charset "utf-8";

/* CSS Document */

/***********
mv
************/

.mv {
  position: relative;
  height: 100svh;
  min-height: 600px;
  overflow: hidden;
  user-select: none;
  background-color: var(--color-base);
  z-index: 9;
  -webkit-mask: url(../../img/mask_bg01.png);
  mask: url(../../img/mask_bg01.png);
  -webkit-mask-size: max(100%,1280px) 100%;
  mask-size: max(100%,1280px) 100%;
  overflow: hidden;
  position: relative;
}
.mv::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 30, 0.2);
  z-index: 9;
  mix-blend-mode: multiply;
}

/*
promo
*/


.mv-promo {
  width: 100%;
  height: 100%;
  position: relative;
  user-select: none;
  opacity: 0;
  transition: all 2s ease 0.1s;
}
body.is-loaded .mv-promo {
  opacity: 1;
}

/*
video
*/

.mv-video {
  min-height: 100%;
  min-height: 100vh;
  min-width: 100%;
  min-width: 100vw;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  opacity: 0;
  transition: all 2s ease 0.1s;
}
body.is-loaded .mv-video {
  opacity: 1;
}



/*
container
*/

.mv-container {
  position: absolute;
  left: 2em;
  bottom: 3.5em;
  z-index: 99;
  color: var(--color-base);
  font-size: clamp(32px,2vw, 50px);
}
.mv-lead {
}

.mv-lead-text {
  white-space: nowrap;
  font-family: var(--font-family-serif);
  font-weight: 300;
  letter-spacing: 0.3em;
  line-height: 2;
}
.mv-lead-text span {
  display: inline-block;
  opacity: 0;
  transition: 3s;
  translate: 0 0.2em;
  filter: blur(0.1em);
}
body.is-loaded .mv-lead-text span {
  opacity: 1;
  translate: 0 0;
  filter: blur(0);
}


/*
slider
*/

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


.mv-img{
  width: 100%;
  transform-origin: center center;
}
.slick-animation .mv-img{
  animation: amin-mv-zoom 10s linear forwards;
}
/* .mv-img.-right{
  width: 120%;
  transform-origin: right center;
}
.slick-animation .mv-img.-right{
  animation: amin-mv-right 12s linear forwards;
} */





@keyframes amin-mv-zoom {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

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

  .mv {
    -webkit-mask-size: max(100%,480px) 100%;
    mask-size: max(100%,480px) 100%;
  }

  /*
  container
  */

  .mv-container {
    left: 1em;
    bottom: 3.5em;
    font-size: clamp(20px,6vw, 36px);
  }

}

/***********
fade
************/

[data-fade] {
  opacity: 0;
  transition-delay: 0.1s;
  transition: 2s;
}
[data-fade].is-show {
  opacity: 1;
}

[data-fade="fade-up"] {
  transform: translateY(20px);
}
[data-fade="fade-up"].is-show {
  transform: translateY(0);
}

[data-fade="fade-ripple"] {
  scale: 0.8;
  opacity: 0;
  transition: 0s;
}
[data-fade="fade-ripple"].is-show {
  scale: 1;
  opacity: 1;
  transition: 3s;
}


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

.homeContents {
  margin-top: min(-3vw,-60px);
  position: relative;
  z-index: 1;
  background-color: var(--color-base);
  overflow: hidden;
}

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

  .homeContents {
    margin-top: min(-3vw,-50px);
  }

}

/***********
homeSection01
************/

.homeSection01 {
  background: url(../../img/bg01.png) no-repeat center top / max(100%,1280px) auto;
}

.homeSection01-upper {
  padding-top: min(15vw,18em);
  padding-bottom: min(20vw,22em);
  text-align: center;
}
.homeSection01-upper-block {
  display: inline-block;
  position: relative;
  font-family: var(--font-family-serif);
  font-size: clamp(16px,1.1vw, 26px);
  color: var(--color-brand01);
}
.homeSection01-upper-heading {
  font-weight: 500;
  font-size: 154%;
  letter-spacing: 0.3em;
  line-height: 1.8;
  padding-bottom: 1.5em;
}
.homeSection01-upper-text {
  letter-spacing: 0.2em;
  line-height: 2.4;
}
.homeSection01-upper-subText {
  font-family: var(--font-family-serif-en);
  font-size: 85%;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 6em;
}


.homeSection01-img {
  width: clamp(400px,30vw, 700px);
  position: absolute;
}
.homeSection01-img.-no01 {
  right: 105%;
  top: 6em;
  -webkit-mask: url(../../img/mask01.png);
  mask: url(../../img/mask01.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}
.homeSection01-img.-no02 {
  left: 105%;
  bottom: -12em;
  -webkit-mask: url(../../img/mask02.png);
  mask: url(../../img/mask02.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}


.homeSection01-ripple {
  position: absolute;
}
.homeSection01-ripple.-no01 {
  width: clamp(400px,30vw, 700px);
  left: 90%;
  top: -7em;
}
.homeSection01-ripple.-no02 {
  width: clamp(100px,10vw, 200px);
  left: 120%;
  top: 9em;
}
.homeSection01-ripple.-no03 {
  width: clamp(200px,18vw, 400px);
  right: 120%;
  bottom: -2em;
}
.homeSection01-ripple.-no04 {
  width: clamp(220px,20vw, 440px);
  right: 80%;
  bottom: -11em;
}

/*
lower
*/


.homeSection01-lower {
  display: flex;
  flex-direction: row-reverse;
  position: relative;
}
.homeSection01-lower-img {
  width: 62%;
  padding-right: 4%;
}


.homeSection01-lower-inner {
  flex: 1;
  position: relative;
  font-family: var(--font-family-serif);
  font-size: clamp(16px,1.1vw, 26px);
  padding-top: 3em;
  padding-bottom: 20vw;
  color: var(--color-brand01);
}
.homeSection01-lower-heading {
  font-weight: 500;
  font-size: 154%;
  letter-spacing: 0.3em;
  line-height: 1.8;
  padding-bottom: 1em;
}
.homeSection01-lower-text {
  letter-spacing: 0.2em;
  line-height: 2.4;
}

.homeSection01-lower-link {
  padding-top: 2em;
}


.homeSection01-ripple.-no05 {
  width: clamp(400px,26vw, 600px);
  left: 56%;
  bottom: 3em;
}

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

  .homeSection01 {
    background-size: max(100%,1280px) auto;
  }

  .homeSection01-upper {
    padding-top: 10em;
    padding-bottom: 10em;
  }
  .homeSection01-upper-block {
    font-family: var(--font-family-serif);
    font-size: clamp(13px,3.2vw, 16px);
  }
  .homeSection01-upper-heading {
    font-size: 131%;
  }
  .homeSection01-upper-subText {
    font-size: 93%;
    margin-top: 4em;
    padding-left: 8vw;
    padding-right: 8vw;
  }


  .homeSection01-img {
    width: clamp(150px,65vw, 320px);
    position: static;
  }
  .homeSection01-img.-no01 {
    margin-top: 4em;
    translate: -2vw 0 ;
  }
  .homeSection01-img.-no02 {
    translate: 40vw 0 ;
    margin-top: -8vw;
  }


  .homeSection01-ripple {
    position: absolute;
  }
  .homeSection01-ripple.-no01 {
    width: clamp(200px,50vw, 300px);
    left: 50%;
    top: -8em;
  }
  .homeSection01-ripple.-no02 {
    width: clamp(80px,20vw, 120px);
    left: 80%;
    top: 0em;
  }
  .homeSection01-ripple.-no03 {
    width: clamp(150px,45vw, 250px);
    right: 50%;
    bottom: 5vw;
  }
  .homeSection01-ripple.-no04 {
    width: clamp(150px,45vw, 250px);
    right: 70%;
    bottom: -15vw;
  }

  /*
  lower
  */

  .homeSection01-lower {
  }
  .homeSection01-lower-img {
    width: 50%;
    padding-right: 0;
  }

  .homeSection01-lower-inner {
    font-size: clamp(13px,3.2vw, 16px);
    padding-top: 2em;
  }
  .homeSection01-lower-heading {
    font-size: 131%;
    letter-spacing: 0.2em;
  }
  .homeSection01-lower-text {
  }

  .homeSection01-lower-link {
    padding-top: 2em;
  }

  .homeSection01-ripple.-no05 {
    width: clamp(200px,40vw, 300px);
    left: 56%;
    bottom: -2vw;
  }

}


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

  .homeSection01-upper {
    padding-bottom: 2em;
  }

  /*
  lower
  */

  .homeSection01-lower {
    display: block;
    text-align: center;
  }
  .homeSection01-lower-img {
    width: auto;
    padding-right: 0;
  }


  .homeSection01-lower-inner {
    padding-top: 3em;
    padding-bottom: 10vw;
  }

  .homeSection01-lower-link {
    padding-top: 3em;
  }


  .homeSection01-ripple.-no05 {
    bottom: 62vw;
  }

}


/***********
stepText
************/

.stepText {
}
.stepText span{
  opacity: 0;
  transition: 2s;
}
.stepText.is-show span{
  opacity: 1;
}

/***********
homeBtn
************/

.homeBtn {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: clamp(14px,1.2vw, 18px);
  font-family: var(--font-family-gothic);
  font-weight: 400;
  font-feature-settings: "palt";
  letter-spacing: 0.12em;
  background-color: var(--color-brand01);
  border-radius: 5em;
  color: var(--color-base);
  text-decoration: none;
  min-height: 3.6em;
  padding: 1em 4em 1em 5em;
  position: relative;
}
.homeBtn::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 100% auto;
  position: absolute;
  left: 2.5em;
  top: 50%;
  translate: 0 -50%;
  transition: 0.3s;
}
.homeBtn:hover {
  background-color: var(--color-brand02);
}
.homeBtn:hover::before {
  left: 2.8em;
}

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

.homeVisual {
  -webkit-mask: url(../../img/mask_bg02.png);
  mask: url(../../img/mask_bg02.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
  position: relative;
  z-index: 19;
}
.homeVisual-promo {
}

.homeVisual-container {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  z-index: 9;
}
.homeVisual-lead {
  font-family: var(--font-family-serif-en);
  color: var(--color-base);
  white-space: nowrap;
  font-size: clamp(18px,1.6vw, 36px);
  letter-spacing: 0.1em;
  user-select: none;
}
.homeVisual-lead span {
  display: inline-block;
  translate: -4px 4px;
}
.homeVisual-lead.is-show span {
  translate: 0 0;
}



/*
slider
*/

.homeVisual-slider{
  opacity: 0;
  transition: all 1s ease 0.2s;
}
body.is-loaded .homeVisual-slider{
  opacity: 1;
}
.homeVisual-slider :not(.slick-dots) li{
  position: relative;
  width: 100%;
}
.homeVisual-img{
  width: 100%;
  background-position: center center;
  background-size: cover;
}

.homeVisual-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 1920 / 800;
}


.homeVisual-img{
  width: 100%;
  transform-origin: center center;
}
.slick-animation .homeVisual-img{
  transform-origin: center center;
  animation: amin-mv-zoom 12s linear forwards;
}

@keyframes amin-homeVisual-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-5%);
  }
}

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

  .homeVisual {
    -webkit-mask-size: max(100%,640px) 100%;
    mask-size: max(100%,640px) 100%;
  }
  .homeVisual-img > img {
    aspect-ratio: 16 / 12;
    max-height: 400px;
  }

  .homeVisual-lead {
    font-size: clamp(16px,4vw, 20px);
  }

}



/***********
homeSection02
************/

.homeSection02 {
  margin-top: min(-4vw,-70px);
  padding-top: min(22vw,25em);
  padding-bottom: min(30vw,30em);
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: url(../../img/bg01.png) no-repeat center top / max(100%,1024px) auto;
  background-color: var(--color-base);
}

.homeSection02-container {
  display: flex;
}
.homeSection02-container-visual {
  width: 55%;
  padding: 0 7% 0 8%;
  margin-top: -5em;
}

.homeSection02-container-img {
  -webkit-mask: url(../../img/mask03.png);
  mask: url(../../img/mask03.png);
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  overflow: hidden;
}
.homeSection02-container-inner {
  flex: 1;
  font-family: var(--font-family-serif);
  font-size: clamp(16px,1.1vw, 26px);
  color: var(--color-brand01);
}
.homeSection02-heading {
  font-weight: 500;
  font-size: 154%;
  letter-spacing: 0.3em;
  line-height: 1.8;
  padding-bottom: 1em;
}
.homeSection02-text {
  letter-spacing: 0.2em;
  line-height: 2.4;
}
.homeSection02-subText {
  font-family: var(--font-family-serif-en);
  font-size: 85%;
  letter-spacing: 0.04em;
  line-height: 1.8;
  margin-top: 3em;
}
.homeSection02-link {
  padding-top: 2em;
}



.homeSection02-ripple {
  position: absolute;
}
.homeSection02-ripple.-no06 {
  width: clamp(300px,24vw, 500px);
  left: 78%;
  top: 0;
}
.homeSection02-ripple.-no07 {
  width: clamp(120px,9vw, 260px);
  left: 70%;
  top: 0;
  translate: 0 200%;
  transition-delay: 300ms;
}
.homeSection02-ripple.-no08 {
  width: clamp(120px,9vw, 260px);
  left: 78%;
  top: 0;
  translate: 0 300%;
  transition-delay: 600ms;
}

.homeSection02-ripple.-no09 {
  width: clamp(100px,10vw, 200px);
  right: 8%;
  bottom: 5%;
}
.homeSection02-ripple.-no10 {
  width: clamp(400px,33vw, 700px);
  left: 2%;
  bottom: 0;
}

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

  .homeSection02 {
    margin-top: min(-4vw,-40px);
    padding-top: 8em;
    padding-bottom: 12em;
  }

  .homeSection02-container {
    display: flex;
    flex-direction: row-reverse;
  }
  .homeSection02-container-visual {
    width: 45%;
    padding: 0 0 0 0;
    margin-top: 3em;
  }

  .homeSection02-container-img {
  }
  .homeSection02-container-inner {
    padding-left: 5vw;
    font-size: clamp(13px,3.2vw, 16px);
  }
  .homeSection02-heading {
    font-size: 131%;
    letter-spacing: 0.2em;
  }
  .homeSection02-link {
    padding-top: 2em;
  }

}

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

  .homeSection02 {
  }

  .homeSection02-container {
    display: block;
  }
  .homeSection02-container-visual {
    width: 60vw;
    margin: 0 auto;
    padding: 0 ;
  }

  .homeSection02-container-img {
  }
  .homeSection02-container-inner {
    padding-top: 2em;
    text-align: center;
  }
  .homeSection02-link {
    padding-top: 3em;
  }



  .homeSection02-ripple {
    position: absolute;
  }
  .homeSection02-ripple.-no06 {
    width: clamp(200px,50vw, 400px);
    left: 55%;
    top: 0;
  }
  .homeSection02-ripple.-no07 {
    width: clamp(60px,15vw, 120px);
    left: 50%;
    translate: 0 280%;
  }
  .homeSection02-ripple.-no08 {
    width: clamp(60px,15vw, 120px);
    left: 70%;
    top: 0;
    translate: 0 340%;
  }

  .homeSection02-ripple.-no09 {
    width: clamp(80px,20vw, 140px);
    right: 2%;
    bottom: 8vw;
  }
  .homeSection02-ripple.-no10 {
    width: clamp(200px,60vw, 300px);
    left: 2%;
  }
}



/***********
homePress
************/

.homePress {
  position: relative;
  padding: 7em 5vw 12em;
  color: var(--color-brand01);
}
.homePress-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
}
.homePress-heading {
  white-space: nowrap;
  padding-right: 10%;
  text-align: left;
}
.homePress-heading-subTitle {
  font-size: clamp(14px,1.2vw, 20px);
  font-family: var(--font-family-gothic-en);
  font-weight: 600;
  letter-spacing: 0.15em;
}
.homePress-heading-title {
  font-size: clamp(26px,3vw, 50px);
  font-weight: 500;
  font-family: var(--font-family-serif);
  line-height: 1.2;
  letter-spacing: 0.1em;
}
.homePress-inner {
  flex: 1;
}
.homePress-link {
  padding-top: 4em;
  text-align: right;
}


.homePress-list {
  border-top: 1px solid var(--color-brand01);
}
.homePress-list li {
  border-bottom: 1px solid var(--color-brand01);
}
.homePress-list a {
  font-size: clamp(15px,1.4vw, 16px);
  padding: 2em 0;
  display: flex;
  color: inherit;
  align-items: start;
  text-decoration: none;
}
.homePress-list-time {
  display: inline-block;
  font-weight: 400;
  font-family: var(--font-family-gothic-en);
  white-space: nowrap;
  width: 8em;
  padding-top: 0.2em;
  letter-spacing: 0.1em;
}
.homePress-list-inner {
  flex: 1;
}
.homePress-list-title {
  font-weight: 400;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.3s;
}
.homePress-list a:hover {
  opacity: 0.8;
}
.homePress-list-subTitle {
  font-family: var(--font-family-serif-en);
  font-size: 85%;
  padding-top: 0.5em;
}


.homePress-ripple {
  position: absolute;
  width: clamp(300px,22vw, 500px);
  left: 22%;
  bottom: 0;
}


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


  .homePress {
    padding: 3em 5vw 12em;
  }
  .homePress-container {
    display: block;
  }
  .homePress-heading {
    padding-right: 0;
    padding-bottom: 2em;
    text-align: center;
  }
  .homePress-link {
    padding-top: 3em;
    text-align: center;
  }


  .homePress-list {
  }
  .homePress-list li {
  }
  .homePress-list a {
    font-size: clamp(13px,3vw, 15px);
    padding: 1.8em 0;
    display: block;
  }
  .homePress-list-time {
    width: auto;
    padding-top: 0;
    padding-bottom: 0.5em;
  }

  .homePress-ripple {
    position: absolute;
    width: clamp(200px,60vw, 400px);
    left: auto;
    right: 0;
    bottom: 0;
  }


}


/***********
homePoem
************/

.homePoem {
  position: relative;
  overflow: hidden;
}
.homePoem::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.4);
}
.homePoem-bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 110%;
  height: 100%;
}
.homePoem-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.homePoem-bg.is-inview {
  left: -5%;
  transition: 30s linear;
}
.homePoem-container {
  position: relative;
  z-index: 9;
  color: var(--color-base);
  font-family: var(--font-family-serif);
  font-size: clamp(16px,1.5vw, 24px);
  letter-spacing: 0.15em;
  line-height: 2.5em;
  padding: 8em 0 8em 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.homePoem-lead {
  display: inline-block;
  margin: 0 auto;
  width: calc(9*2.5em);
}
.homePoem-lead-text {
  white-space: nowrap;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  position: relative;
  translate: -10em 0 ;
  user-select: none;
}
.homePoem-lead-text span {
  display: inline-block;
  translate: -4px 4px;
}
.homePoem-lead-text.is-show span {
  translate: 0 0;
}

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

  .homePoem-bg.is-inview {
    transition: 10s linear;
  }
  .homePoem-container {
    line-height: 2.2em;
    padding: 5em 0 5em 0;
    font-size: clamp(13px,3.4vw, 16px);
  }
  .homePoem-lead {
    -webkit-writing-mode: horizontal-lr;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    width: calc(9*2.2em);
  }


  .homePoem-lead-text {
    translate: 0 0 ;
  }

}


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

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

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

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

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

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