@charset "utf-8";

/* CSS Document */

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

.mainVisual {
  --mv-height: 100svh;
  --mv-minHeight: 600px;
  height: var(--mv-height);
  min-height: var(--mv-minHeight);
  position: relative;
}

.mainVisual img {
  width: 100%;
  max-width: 100%;
}
.mainVisual-bg {
  content: "";
  display: block;
  width: 102%;
  height: calc(100% + 300px);
  min-height: 800px;
  position: absolute;
  left: 0;
  top: -100px;
  background: url(../../img/mv_bg.png) no-repeat center center / cover ;
  opacity: 0;
  filter: blur(5px);
  transition: opacity 1s ease, filter 1.5s ease;
}
body.is-loaded .mainVisual-bg {
  opacity: 1;
  filter: blur(0);
}

.mainVisual-ui {
  position: absolute;
  left: 1.2em;
  top: 0.8em;
  z-index: 2;
  width: 13em;
}


.mainVisual-container {
  position: relative;
  z-index: 2;
  height: 100%;
  pointer-events: none;
}
.mainVisual-upper {
  padding-top: calc(var(--header-height) / 1);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-left: 10vw;
  display: flex;
  align-items: center;
}
.mainVisual-upper-inner {
  translate: 0 -65%;
}

.mainVisual-lead {
  font-size: clamp(22px,1.4vw, 32px);
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1.6;
  color: var(--color-base);
  padding-bottom: 0.8em;
}
.mainVisual-logo {
  width: max(20vw,220px);
}
.mainVisual-logo img {
  width: 100%;
  max-width: 100%;
  margin-left: -4%;
}

.mainVisual-block {
  padding-top: calc(var(--header-height) / 1);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  padding-right: 10vw;
  display: flex;
  align-items: center;
  justify-content: end
}
.mainVisual-title {
  width: max(32vw,300px);
}


/*
scroll
*/

.mainVisual-scroll {
  position: absolute;
  left: 5vw;
  bottom: 0;
  translate: -100% 0;
  rotate: 90deg;
  transform-origin: right bottom;
  text-align: left;
  z-index: 99;
}
.mainVisual-scroll a {
  display: block;
  width: 15em;
  padding: 2px 0 ;
  position: relative;
  overflow: hidden;
  color: var(--color-base);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.80rem;
  letter-spacing: 0.1em;
}
.mainVisual-scroll a::before,
.mainVisual-scroll a::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  right: 0;
  bottom: 0;
  transform-origin: left;
  background-color: #fff;
}
.mainVisual-scroll a::before{
  background-color: #fff8;
}
.mainVisual-scroll a::after {
  transform: scaleX(0);
  animation: anim-mainVisualScroll01 2.5s cubic-bezier(0.65, 0, 0.35, 1) 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:1280px) {

  .mainVisual-ui {
    left: 1em;
    top: 0.8em;
    width: 10em;
  }

  .mainVisual-container {
  }
  .mainVisual-upper {
    padding-left: 7vw;
  }
  .mainVisual-block {
    padding-right: 7vw;
  }
  .mainVisual-scroll {
    left: 4vw;
  }
}


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

  .mainVisual {
    --mv-height: 100svh;
    --mv-minHeight: 600px;
  }

  .mainVisual-bg {
    width: 100%;
    height: 150%;
    min-height: var(--mv-minHeight);
    top: -33%;
    background: url(../../img/mv_bg.png) no-repeat 45% center / cover ;
  }
  body.is-loaded .mainVisual-bg {
    opacity: 1;
    filter: blur(0);
  }

  .mainVisual-ui {
    left: min(3vw,20px);
    top: 10px;
    width: 10em;
  }

  .mainVisual-container {
    pointer-events: none;
  }
  .mainVisual-upper {
    padding-left: 5vw;
  }
  .mainVisual-upper-inner {
    translate: 0 -130%;
  }

  .mainVisual-lead {
    font-size: clamp(15px,4.4vw, 20px);
  }
  .mainVisual-logo {
    width: clamp(180px,50vw, 240px);
  }

  .mainVisual-block {
    padding-top: 0;
    padding-right: 0;
    padding-left: var(--padding-side);
    justify-content: start;
  }
  .mainVisual-title {
    width: clamp(180px,75vw, 300px);
    translate: 0 48%;
  }

  /*
  scroll
  */

  .mainVisual-scroll {
    left: 90vw;
  }
  .mainVisual-scroll a {
    display: block;
    width: 8em;
    padding: 2px 0 ;
    position: relative;
    overflow: hidden;
    color: var(--color-base);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.70rem;
    letter-spacing: 0.05em;
  }

}

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

.homeTicker {
  font-size: clamp(50px,4vw, 80px);
  padding-top: clamp(120px,3em, 250px);
  padding-bottom: 1em;
  white-space: nowrap;
  position: relative;
  background: linear-gradient(to bottom,transparent 0%, #f00 100px, #fff 98%);
  color: #fffd;
}
.homeTicker-slider {
}
.homeTicker-item {
  padding: 0 0.15em;
  letter-spacing: 0.1em;
  font-weight: 500;
}

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

  .homeTicker {
    font-size: clamp(20px,7vw, 50px);
    padding-top: clamp(50px,2em, 150px);
    background: linear-gradient(to bottom,transparent 0%, #f00 10px, #fff 98%);
  }

}

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

.homeIntro {
  background-color: var(--color-base);
  position: relative;
  z-index: 9;
}
.homeIntro-container {
  display: flex;
  align-items: center;
  gap: 0 2%;
  padding-block: 3em;
}
.homeIntro-inner {
  flex: 1;
  padding-block: 3em;
}
.homeIntro-title {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 2;
  letter-spacing: 0.1em;
  padding-bottom: 1.5em;
}
.homeIntro-text {
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.04em;
}


.homeIntro-gallery {
  width: 48%;
}
.homeIntro-gallery-inner {
  margin-right: -3vw;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (min-width:1560px) {
  .homeIntro-gallery-inner {
    margin-right: -10vw;
  }
}

.homeIntro-img {
}
.homeIntro-img.-no01 {
  width: 55%;
  text-align: right;
}
.homeIntro-img.-no01 img {
  width: 65%;
}

.homeIntro-img.-no02 {
  width: 45%;
  padding-top: 10%;
  text-align: right;
}
.homeIntro-img.-no02 img {
  width: 70%;
}

.homeIntro-img.-no03 {
  width: 40%;
}
.homeIntro-img.-no03 img {
  width: 75%;
}

.homeIntro-img.-no04 {
  width: 60%;
  padding-top: 5%;
}
.homeIntro-img.-no04 img {
  width: 70%;
}

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

  .homeIntro {
  }
  .homeIntro-container {
    display: block;
    padding-block: var(--padding-main);
  }
  .homeIntro-inner {
    padding-block: 0;
  }
  .homeIntro-title {
    font-size: 1.4rem;
    line-height: 1.8;
    padding-bottom: 1.5em;
  }
  .homeIntro-text {
    font-size: 1rem;
    line-height: 1.8;
  }


  .homeIntro-gallery {
    width: auto;
    margin-inline: calc(var(--padding-side) * -1);
    padding-top: 3em;
  }
  .homeIntro-gallery-inner {
    margin-right: 0;
    display: flex;
    flex-wrap: nowrap;
  }

  .homeIntro-img {
  }
  .homeIntro-img.-no01 {
    width: 30%;
    padding-top: 5%;
    padding-right: 5%;
  }
  .homeIntro-img.-no01 img {
    width: auto;
  }

  .homeIntro-img.-no02 {
    width: 20%;
    padding-top: 20%;
    padding-right: 3%;
  }
  .homeIntro-img.-no02 img {
    width: auto;
  }

  .homeIntro-img.-no03 {
    width: 20%;
    padding-top: 2%;
  }
  .homeIntro-img.-no03 img {
    width: auto;
  }

  .homeIntro-img.-no04 {
    width: 30%;
    padding-left: 5%;
    padding-top: 15%;
  }
  .homeIntro-img.-no04 img {
    width: auto;
  }


}


/***********
homePickup
************/

.homePickup {
  background: url(../../img/bg01.jpg) no-repeat center center / cover ;
  color: var(--color-base);
}

.homePickup-link {
  padding-top: 2.5em;
}


.homePickup-container {
  position: relative;
}

.homePickup-slider {
  opacity: 0;
  transition: opacity .1s ease;
}
.homePickup-slider.slick-initialized {
  opacity: 1;
}

.homePickup-slider {
}
.homePickup-slider li {
}
.homePickup-slider .slick-slide {
  margin: 0 0.8em;
}
.homePickup-slider .slick-list {
  margin: 0 -0.8em;
}

.homePickup-slider li a{
  display: block;
  color: inherit;
  text-decoration: none;
  width: clamp(260px,30vw, 445px);
  position: relative;
}
.homePickup-slider li a::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 2;
  background: url(../../img/icon/play.png) no-repeat center center / 50px auto;
  background-color: #0004;
  opacity: 0;
  transition: 0.4s;
}
body.is-pc .homePickup-slider li a:hover::after {
  opacity: 0.8;
}

.homePickup-slider-img {
  position: relative;
  box-shadow: 0 0 1.2em #0002;
  margin-bottom: 1.2em;
}
.homePickup-slider-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}


.homePickup-control {
  display: flex;
  justify-content: end;
  gap: 0 1em;
  padding-bottom: 2em;
  margin-top: -2em;
}

.homePickup .slick-prev,
.homePickup .slick-next {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-base);
  background: url(../../img/icon/arrow_wt.png) no-repeat center center / 40% auto;
  border: 1px solid var(--color-base);
  border-radius: 50%;
  font-size: 1.3rem;
  font-weight: 300;
  width: 2em;
  height: 2em;
  cursor: pointer;
}
.homePickup .slick-next {
}
.homePickup .slick-prev {
  rotate: 180deg;
}

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

  .homePickup {
    background: url(../../img/bg01.jpg) repeat 40% center / cover ;
  }

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


  .homePickup-slider .slick-slide {
    margin: 0 0.5em;
  }
  .homePickup-slider .slick-list {
    margin: 0 -0.5em;
  }

  .homePickup-slider li a{
    display: block;
    color: inherit;
    text-decoration: none;
    width: clamp(200px,75vw, 320px);
  }

  .homePickup-control {
    gap: 0 0.5em;
    padding-bottom: 1em;
    margin-top: 0;
  }

  .homePickup .slick-prev,
  .homePickup .slick-next {
    font-size: 1.1rem;
  }

}


/***********
homeSession
************/

.homeSession {
  background-color: var(--color-sub01)
}
.homeSession-container {
  display: flex;
  gap: 0 3%;
}
.homeSession-inner {
  flex: 1;
}
.homeSession-visual {
  width: 55%;
}

.homeSession-illust {
  display: flex;
  translate: 0 -1em;
}
.homeSession-illust-base {
  order: 2;
}
.homeSession-illust-balloon {
}
.homeSession-illust-balloon.-no01 {
  order: 1;
  padding-right: 1em;
}
.homeSession-illust-balloon.-no02 {
  order: 3;
  translate: 0 -2em;
}

.homeSession-link {
  margin-top: -5em;
}

@media screen and (max-width:1280px) {
  .homeSession-link {
    margin-top: -2em;
  }
}

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

  .homeSession {
  }
  .homeSession-container {
    display: block;
  }
  .homeSession-inner {
  }
  .homeSession-visual {
    width: auto;padding-top: 2em;
  }


  .homeSession-illust {
    display: flex;
    flex-wrap: wrap;
    translate: 0 0;
    padding-top: 1em;
    width: 85%;
    max-width: 400px;
    margin: 0 auto;
  }
  .homeSession-illust-base {
    width: 70%;
    margin: 0 auto;
    order: 3;
    margin-top: -5%;
  }
  .homeSession-illust-balloon {
    width: 50%;
  }
  .homeSession-illust-balloon.-no01 {
    order: 1;
    padding-right: 1em;
  }
  .homeSession-illust-balloon.-no02 {
    order: 2;
    translate: 0 -2em;
  }

  .homeSession-link {
    margin-top: 2em;
  }


}

/***********
homeFesta
************/

.homeFesta {
  background-color: var(--color-sub01)
}

.homeFesta-headline {
}
.homeFesta-headline-title {
  position: relative;
}
.homeFesta-headline-schedule {
  width: clamp(320px,40%, 640px);
  position: absolute;
  right: 0;
  bottom:  0.35em;
}



.homeFesta-container {
  display: flex;
  gap: 0 4%;
  padding-top: 0.5em;
}
.homeFesta-inner {
  flex: 1;
}
.homeFesta-lead {
  font-size: 1.5rem;
  font-weight: 500;
  padding-bottom: 0.5em;
  letter-spacing: 0.05em;
}

.homeFesta-banner {
  width: 42%;
}
.homeFesta-banner a {
  display: inline-block;
  color: inherit;
}
.homeFesta-banner-text {
  font-weight: 500;
  font-size: 0.9rem;
  display: inline-block;
  position: relative;
  margin-bottom: 0.8em;
}
.homeFesta-banner a[target="_blank"] .homeFesta-banner-text{
  padding-right: 1.5em;
}
.homeFesta-banner a[target="_blank"] .homeFesta-banner-text::after {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  background: url(../../img/icon/arrow_rd.png) no-repeat center center / 100% auto;
  position: absolute;
  right: 0;
  top: 50%;
  rotate: -45deg;
  translate: 0 -40%;
  transition: 0.3s;
  filter: grayscale(100%) ;
}
body.is-pc .homeFesta-banner a[target="_blank"]:hover .homeFesta-banner-text::after {
  translate: 15% -50%;
}
.homeFesta-banner a img {
  transition: 0.3s;
}
body.is-pc .homeFesta-banner a:hover img {
  translate: 0 -5px;
}

@keyframes anim-homeFesta-banner {
  0% {transform: translateY(0px);}
  10% {transform: translateY(-5px);}
  20% {transform: translateY(0px);}
  30% {transform: translateY(-5px);}
  40% {transform: translateY(0px);}
}


.homeFesta-card {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 4%;
}
.homeFesta-card li {
}

.homeFesta-card-img {
}
.homeFesta-card-inner {
  margin-top: 1em;
  position: relative;
  padding-left: 1.5em;
}
.homeFesta-card-inner::before {
  content: "";
  display: block;
  width: 5px;
  height: clamp(7em,100%, 8em);
  position: absolute;
  left: 0;
  top: -0.3em;
  background: linear-gradient(to bottom, var(--color-brand01) 0%, transparent 100%);
}
.homeFesta-card-title {
  font-size: 1.2rem;
  letter-spacing: 0.04em;
}
.homeFesta-card-text {
  letter-spacing: 0.04em;
  padding-top: 0.8em;
  font-size: 0.9rem;
  font-weight: 500;
  line-height: 1.7;
}


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

  .homeFesta-headline {
    margin-bottom: 5vw;
  }
  .homeFesta-headline-title {
    position: relative;
  }
  .homeFesta-headline-schedule {
    width: clamp(160px,60%, 400px);
    bottom:  auto;
    top: 100%;
  }

}

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


  .homeFesta-container {
    display: block;
    padding-top: 0.5em;
  }
  .homeFesta-lead {
    font-size: 1.1rem;
  }

  .homeFesta-banner {
    width: auto;
    padding-top:4em;
  }


  .homeFesta-card {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 3em 0;
  }
  .homeFesta-card li {
  }

  .homeFesta-card-img {
  }
  .homeFesta-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 16 / 8;
  }
  .homeFesta-card-inner::before {
    height: clamp(5em,100%, 8em);
  }
  .homeFesta-card-title {
    font-size: 1.1rem;
  }

}

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

  .homeFesta-headline-schedule {
    top: calc(100% - 0.08em);
  }
  .homeFesta-card-img img {
    aspect-ratio: 16 / 11;
  }

}

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

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

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

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

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

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