@charset "utf-8";

/* CSS Document */

/*
  font-family: 'Libre Baskerville', serif;
  font-family: 'Shippori Mincho', serif;
*/

/***********
mainVisual
************/

.mainVisual {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  max-height: 1400px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.mainVisual-img {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.mainVisual-img img {
  display: none;
}

.mainVisual-container{
  position: relative;
  z-index: 2;
}

.mainVisual-block{
  padding-left: 10%;
}

.mainVisual-title {
  font-size: 500%;
  font-size: max(500%, 4vw);
  font-family: 'Shippori Mincho', serif;
  font-weight: 600;
  white-space: nowrap;
  line-height: 1.3;
}
.mainVisual-title-text {
  display: inline-block;
  background: #fff;
  line-height: 1;
  padding-bottom: 0.08em;
  letter-spacing: 0.1em;
  text-indent: 0.1em;
  position: relative;
  clip-path: polygon(0% 0%, 0% 0%, 0% 100%, 0 100%);
}
.mainVisual-title-text::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: #fff;
  transform: scaleX(1);
  transform-origin: right;
}
.mainVisual-title-text span {
  display: inline-block;
  background: url(../../img/mainvisual.jpg) no-repeat center center / cover ;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-attachment: fixed;
}
@-moz-document url-prefix() {
  .mainVisual-title-text span {
    display: inline-block;
    background: #66a4e1;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-attachment: scroll;
  }
}


body.is-loaded  .mainVisual-title-text {
  transition: all 0.8s cubic-bezier(0.76, 0, 0.24, 1);
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0 100%);
}
body.is-loaded  .mainVisual-title-text::after {
  transition: all 0.8s cubic-bezier(0.33, 1, 0.68, 1);
  transform: scaleX(0);
}

body.is-loaded .mainVisual-title-text:nth-of-type(1) {
  transition-delay: 0.2s;
}
body.is-loaded .mainVisual-title-text:nth-of-type(1)::after {
  transition-delay: 2.2s;
}

body.is-loaded .mainVisual-title-text:nth-of-type(2) {
  transition-delay: 0.4s;
}
body.is-loaded .mainVisual-title-text:nth-of-type(2)::after {
  transition-delay: 2.4s;
}


.mainVisual-lead {
  font-family: 'Libre Baskerville', serif;
  font-size: 200%;
  font-size: max(200%, 1.4vw);
  font-style: italic;
  color: #fff;
  padding-top: 0.8em;
  letter-spacing: 0.08em;
}

.mainVisual-sns {
  display: flex;
  padding-top: 2em;
}
.mainVisual-sns li {
  padding-right: 0.6em;
}
.mainVisual-sns a {
  display: block;
  color: #fff;
  border: 1px solid #fff;
  background-color: rgba(0, 0, 0, 0.1);
  padding: 0.4em 1.5em;
  position: relative;
  text-align: center;
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-size: 116%;
  font-weight: 400;
  letter-spacing: 0.05em;
  border-radius: 100vw;
}
.mainVisual-sns i {
  margin-right: 0.8em;
  margin-left: -0.5em;
  transform: scale(1.3);
}
body.is-pc .mainVisual-sns a:hover {
  background-color: #1da1f2;
  border-color: #1da1f2;
}


/*
scroll
*/

.mainVisual-scroll {
  position: absolute;
  right: 80px;
  bottom: 20vh;
  transform: rotate(90deg) ;
  transform-origin: right bottom;
  z-index: 99;
}
.mainVisual-scroll::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translate(50% , -50%);
  border-radius: 50%;
  border: 1px solid rgba(0, 0, 0, 0.8);
  animation: anim-mainVisualScroll02 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
  pointer-events: none;
}
.mainVisual-scroll a {
  display: block;
  width: 120px;
  padding: 10px 0 ;
  position: relative;
  overflow: hidden;
  color: inherit;
  text-decoration: none;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05em;
}
.mainVisual-scroll a::before,
.mainVisual-scroll a::after {
  content: "";
  display: block;
  width: 70px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform-origin: left;
  background-color: rgba(0, 0, 0, 0.5);
}
.mainVisual-scroll a::before{
  background-color: rgba(0, 0, 0, 0.2);
}
.mainVisual-scroll a::after {
  transform: scaleX(0);
  animation: anim-mainVisualScroll01 2.5s cubic-bezier(0.65, 0, 0.35, 1) infinite;
}



body.is-ios .mainVisual-img,
body.is-ipados .mainVisual-img{
  background-attachment: scroll;
}
body.is-ios .mainVisual-title-text span,
body.is-ipados .mainVisual-title-text span{
  display: inline-block;
  background: #66a4e1;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-attachment: scroll;
}

@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 {
    height: 100vh;
    height: 100svh;
  }

  .mainVisual-block{
    padding-left: 5%;
  }

  .mainVisual-title {
    font-size: 400%;
    font-size: max(400%, 8vw);
  }


  .mainVisual-lead {
    font-size: 154%;
    font-size: max(154%, 1.2vw);
  }

  .mainVisual-sns {
    padding-top: 2em;
  }
  .mainVisual-sns a {
    font-size: 93%;
  }

}

@media screen and (max-width:520px) {

  .mainVisual-title {
    font-size: 12vw;
  }

  .mainVisual-lead {
    font-size: 5vw;
  }

  /*
  scroll
  */

  .mainVisual-scroll {
    right: 50px;
    bottom: 35%;
  }
  .mainVisual-scroll::after {
    width: 30px;
    height: 30px;
  }
  .mainVisual-scroll a {
    width: 120px;
    padding: 10px 0 ;
    font-size: 10px;
  }

}



/***********
homeNews
************/

.homeNews{
  background-color: #1b1b1b;
  color: #fff;
  padding: 40px 0;
  position: relative;
}

.homeNews-container {
  display: flex;
}
.homeNews-heading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.homeNews-heading-title {
  font-size: 300%;
  font-family: 'Libre Baskerville', serif;
  font-weight: 400;
  letter-spacing: 0.08em;
  padding-right: 100px;
}

.homeNews-inner {
  flex: 1;
  position: relative;
}
.homeNews-box {
  min-width: 900px;
  margin-right: calc((100vw - 1200px) / -2);
}


.homeNews-list{
  display: flex;
}
.homeNews-list li {
  margin-right: 2em;
}
.homeNews-list li a {
  display: block;
  width: 320px;
  color: #fff;
  text-decoration: none;
  position: relative;
  border-radius: 6px;
  overflow: hidden;
}

.homeNews-list-img{
  position: relative;
  overflow: hidden;
}
.homeNews-list-img::after{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: 0.2s;
  pointer-events: none;
}
.homeNews-list-img img{
  transform: scale(1.1);
  filter: blur(0.2em);
  transition: 0.2s;
  border-radius: 6px;
}
.homeNews-list-block {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 1em;
  pointer-events: none;
  z-index: 9;
}
.homeNews-list-time {
  font-family: 'Shippori Mincho', serif;
  font-weight: 400;
  font-size: 85%;
  letter-spacing: 0.05em;
  padding-bottom: 0.5em;
}
.homeNews-list-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 116%;
}


body.is-pc .homeNews-list li a:hover .homeNews-list-img img {
  filter: blur(0.05em);
  transform: scale(1.15);
}
body.is-pc .homeNews-list li a:hover .homeNews-list-img::after {
  opacity: 0;
}

/*
slick
*/

.homeNews .homeNews-slider-next,
.homeNews .homeNews-slider-prev{
  display: block;
  position: absolute;
  top: 50%;
  z-index: 99;
}
.homeNews .homeNews-slider-next{
  right: 0;
}
.homeNews .homeNews-slider-prev{
  right: 100%;
}
.homeNews .homeNews-slider-next span,
.homeNews .homeNews-slider-prev span{
  display: inline-block;
  width: 60px;
  height: 70px;
  margin-top: -35px;
  position: relative;
  cursor: pointer;
  background: #1b1b1b;
}

.homeNews .homeNews-slider-next span::before,
.homeNews .homeNews-slider-prev span::before{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}
.homeNews .homeNews-slider-next span::before{
  transform: rotate(45deg);
  margin-left: -15px;
}
.homeNews .homeNews-slider-prev span::before{
  transform: rotate(-135deg);
  margin-left: -5px;
}

@media screen and (max-width:834px) {

  .homeNews{
    padding: 2em 0;
  }

  .homeNews-container {
    display: block;
  }
  .homeNews-heading {
    display: block;
  }
  .homeNews-heading-title {
    font-size: 200%;
    padding: 0 0 0.8em 0;
  }

  .homeNews-inner {
    position: static;
  }
  .homeNews-box {
    min-width: initial;
    margin-right: 0;
    margin-left: -5.5%;
    margin-right: -5.5%;
  }


  .homeNews-list{
  }
  .homeNews-list li {
    margin: 0 5px;
  }
  .homeNews-list li a {
    width: 280px;
  }

  .homeNews-list-time {
    font-size: 77%;
  }
  .homeNews-list-title {
    font-size: 100%;
  }


  body.is-pc .homeNews-list li a:hover .homeNews-list-img img {
    filter: blur(0.05em);
    transform: scale(1.15);
  }
  body.is-pc .homeNews-list li a:hover .homeNews-list-img::after {
    opacity: 0;
  }

  /*
  slick
  */

  .homeNews .homeNews-slider-next,
  .homeNews .homeNews-slider-prev{
    top: 60%;
  }
  .homeNews .homeNews-slider-next{
    right: 0;
  }
  .homeNews .homeNews-slider-prev{
    right: auto;
    left: 0;
  }
  .homeNews .homeNews-slider-next span,
  .homeNews .homeNews-slider-prev span{
    width: 30px;
    height: 40px;
    margin-top: -20px;
  }

  .homeNews .homeNews-slider-next span::before,
  .homeNews .homeNews-slider-prev span::before{
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
  }
  .homeNews .homeNews-slider-next span::before{
    margin-left: -8px;
  }
  .homeNews .homeNews-slider-prev span::before{
    margin-left: -2px;
  }

}


/***********
homeMovie
************/

.homeMovie{
  width: 100%;
  height: 600px;
  position: relative;
  overflow: hidden;
}
.homeMovie::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: linear-gradient(120deg, #008ee8 20%, #26018e 80%);
  opacity: 0.5;
  pointer-events: none;
/*  mix-blend-mode: multiply;*/
}

.homeMovie-video {
  min-height: 100%;
  min-width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%,-50%);
  z-index: 1;
  pointer-events: none;
}

.homeMovie a {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}

.homeMovie-play {
  display: block;
  width: 150px;
  height: 150px;
  background: url(../../img/icon/play01.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 9;
  transform: translate(-50% , -50%) scale(0.92);
  transition: 0.2s;
}
.homeMovie-play::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: url(../../img/icon/play_text.png) no-repeat 0 0 / 100% 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 9;
  animation: anim-spin 100s linear infinite;
}

@keyframes anim-spin {
  0% {transform: ;}
  100% {transform: rotate(360deg) ;}
}

body.is-pc a:hover .homeMovie-play:hover  {
  transform: translate(-50% , -50%) scale(1);
}


@media screen and (max-width:834px) {

  .homeMovie{
    height: 60vmin;
  }

  .homeMovie-play {
    width: 100px;
    height: 100px;
  }

}

/***********
homeSection
************/

.homeSection{
  position: relative;
}

.homeSection-wrapper {
  position: relative;
  z-index: 9;
}
.homeSection-heading {
  display: flex;
}
.homeSection-heading-title {
  font-family: 'Shippori Mincho', serif;
  font-size: 2000%;
  font-weight: 400;
  line-height: 1;
  position: relative;
}
.homeSection-heading-title::before {
  content: attr(data-text)"";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  font-size: 40%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 0.1em;
  color: #fff;
}
.homeSection-heading-title::after {
  content: "";
  display: block;
  width: 1.2em;
  height: 1px;
  background: #fff;
  position: absolute;
  left: 1em;
  top: 55%;
  transform: scaleX(0);
  transform-origin: right;
}
.homeSection-heading.aos-animate .homeSection-heading-title::after {
  transform: scaleX(1);
  transition: all 4s ease-in-out;
}

.homeSection-link{
  text-align: center;
  padding-top: 80px;
  padding-bottom: 120px;
}

/*
layout
*/

.homeSection.is-before{
  background: linear-gradient(to bottom, #26018e 10%, #8bcef9 80%);
}
.homeSection.is-before::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: -200px;
  background: url(../../img/bg02.png) no-repeat center bottom / 100% auto ;
  pointer-events: none;
  z-index: 2;
}
.homeSection.is-before .homeSection-heading-title {
  color: rgba(255, 255, 255, 0.1);
}

.homeSection.is-after{
  background: linear-gradient(to bottom, #8bcef9 10%, #bfd7fd 80%);
}
.homeSection.is-after::before{
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../../img/bg03.png) no-repeat center bottom / 100% auto ;
  pointer-events: none;
}
.homeSection.is-after .homeSection-heading-title {
  color: rgba(14, 111, 217, 0.2);
}
.homeSection.is-after .homeSection-heading {
  flex-direction: row-reverse;
  text-align: right;
}
.homeSection.is-after .homeSection-heading-title{
  width: 2.21em;
  white-space: nowrap;
  text-align: left;
}
.homeSection.is-after .homeSection-heading-title::before {
  left: auto;
  right: 0;
  text-align: right;
}
.homeSection.is-after .homeSection-heading-title::after {
  left: auto;
  right: 1em;
  transform-origin: left;
}
.homeSection.is-after .homeSection-heading.aos-animate .homeSection-heading-title::after {
}


/*
video
*/

.homeSection-movie{
}
.homeSection-movie:hover .l-movie a::after {
  opacity: 0;
  transition: 0.5s;
}
.homeSection-video{
  width: 100%;
  height: 800px;
  object-fit: cover;
  vertical-align: middle;
  background: url(../../img/after_img03.jpg) no-repeat center center / cover;
}

/*
gallery
*/

.homeSection-gallery {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
  z-index: 9;
}
.homeSection-img {
}
.homeSection-img img {
}

.homeSection-img:nth-child(12n+1) {
  width: 65%;
}
.homeSection-img:nth-child(12n+2) {
  width: 28%;
  margin-top: 10%;
}
.homeSection-img:nth-child(12n+3) {
  width: 38%;
}
.homeSection-img:nth-child(12n+4) {
  width: 53%;
  margin-top: 7%;
}
.homeSection-img:nth-child(12n+5) {
  width: 65%;
  padding-top: 10%;
}
.homeSection-img:nth-child(12n+6) {
  width: 28%;
}
.homeSection-img:nth-child(12n+7) {
  width: 25%;
  margin-top: 17%;
}
.homeSection-img:nth-child(12n+8) {
  width: 63%;
  padding-top: 6%;
}
.homeSection-img:nth-child(12n+9) {
  width: 50%;
  margin-top: 7%;
}
.homeSection-img:nth-child(12n+10) {
  width: 42%;
}
.homeSection-img:nth-child(12n+11) {
  width: 27%;
  margin-bottom: 7%;
}
.homeSection-img:nth-child(12n+12) {
  width: 63%;
  padding-top: 7%;
  margin-bottom: 7%;
}

@media screen and (max-width:1560px) {

  /*
  video
  */

  .homeSection-video{
    height: 50vw;
  }
}

@media screen and (max-width:834px) {

  .homeSection-heading-title {
    font-size: 1200%;
    font-weight: 400;
    line-height: 1;
    position: relative;
  }

  .homeSection-link{
    padding-top: 50px;
    padding-bottom: 80px;
  }

  /*
  gallery
  */

  .homeSection-img:nth-child(12n+2) {
    width: 32%;
    margin-top: 10%;
  }
  .homeSection-img:nth-child(12n+3) {
    width: 44%;
  }
  .homeSection-img:nth-child(12n+6) {
    width: 32%;
  }
  .homeSection-img:nth-child(12n+7) {
    width: 34%;
  }
  .homeSection-img:nth-child(12n+10) {
    width: 46%;
  }
  .homeSection-img:nth-child(12n+11) {
    width: 34%;
  }

}


@media screen and (max-width:520px) {

  .homeSection-heading-title {
    font-size: 1000%;
  }

  .homeSection-link{
    padding-top: 50px;
    padding-bottom: 80px;
  }

  .homeSection-img:nth-child(12n+2) {
    width: 38%;
    margin-right: -6%;
  }
  .homeSection-img:nth-child(12n+3) {
    width: 50%;
    margin-left: -6%;
  }
  .homeSection-img:nth-child(12n+6) {
    width: 38%;
    margin-right: -6%;
  }
  .homeSection-img:nth-child(12n+7) {
    width: 40%;
    margin-left: -6%;
  }
  .homeSection-img:nth-child(12n+10) {
    width: 52%;
    margin-right: -6%;
  }
  .homeSection-img:nth-child(12n+11) {
    width: 40%;
    margin-left: -6%;
  }

}


/***********
homeCarousel
************/

.homeCarousel{
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 9;
}
.homeCarousel li{
}
.homeCarousel li > div {
  width: 420px;
  display: block;
  margin: 0 10px;
}


.homeCarousel .slick-next,
.homeCarousel .slick-prev{
  display: block;
  position: absolute;
  top: 50%;
  z-index: 99;
}
.homeCarousel .slick-next{
  right: 0;
}
.homeCarousel .slick-prev{
  left: 0;
}
.homeCarousel .slick-next span,
.homeCarousel .slick-prev span{
  display: inline-block;
  width: 60px;
  height: 70px;
  margin-top: -35px;
  position: relative;
  cursor: pointer;
  background-color: #1b1b1b;
}

.homeCarousel .slick-next span::before,
.homeCarousel .slick-prev span::before{
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  position: absolute;
  left: 50%;
  top: 50%;
}
.homeCarousel .slick-next span::before{
  transform: rotate(45deg);
  margin-left: -15px;
}
.homeCarousel .slick-prev span::before{
  transform: rotate(-135deg);
  margin-left: -5px;
}

@media screen and (max-width:834px) {

  .homeCarousel li > div {
    width: 280px;
    margin: 0 5px;
  }

  .homeCarousel .slick-next span,
  .homeCarousel .slick-prev span{
    width: 30px;
    height: 40px;
    margin-top: -20px;
  }

  .homeCarousel .slick-next span::before,
  .homeCarousel .slick-prev span::before{
    width: 10px;
    height: 10px;
    margin-top: -5px;
    margin-left: -5px;
  }
  .homeCarousel .slick-next span::before{
    margin-left: -8px;
  }
  .homeCarousel .slick-prev span::before{
    margin-left: -2px;
  }

}
