@charset "utf-8";

/* CSS Document */


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

.mainVisual {
  --mv-height: 100svh;
  --mv-minHeight: 600px;
  position: relative;
  z-index: 9;
  height: var(--mv-height);
  min-height: var(--mv-minHeight);
  overflow: hidden;
  background-color: var(--color-brand01);
}

.mainVisual-visual {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
body.is-opening .mainVisual-visual {
  opacity: 1;
  transition: opacity 3s ease 0.1s;
}
.mainVisual-video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.mainVisual-logo {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  pointer-events: none;
  user-select: none;
}

.mainVisual-logo-title {
  display: block;
  width: clamp(2.5rem, 5vw, 3.5rem);
  margin: 0 auto;
  opacity: 0;
}
.mainVisual-logo-title > img {
  filter: brightness(0) invert(1);
}
body.is-started .mainVisual-logo-title {
  opacity: 1;
  transition: opacity 2s ease 0.2s;
}

.mainVisual-steam {
  position: absolute;
  z-index: 8;
  bottom: -18%;
  opacity: 0;
  pointer-events: none;
  user-select: none;
  opacity: 0;
}
.mainVisual-steam.-left {
  left: -2%;
  width: clamp(28rem, 80vw, 120rem);
}
.mainVisual-steam.-right {
  right: -2%;
  width: clamp(20rem, 50vw, 80rem);
}
.mainVisual-steam.-right img {
  transform: scaleX(-1);
}
body.is-first-opening .mainVisual-steam.-left {
  animation: anim-steam-left 5s ease-out 0.1s both;
}
body.is-first-opening .mainVisual-steam.-right {
  animation: anim-steam-right 5s ease-out 0.35s both;
}

@keyframes anim-steam-left {
  0% {
    opacity: 0;
    filter: blur(2px);
    translate: 0 -0%;
  }
  100% {
    opacity: 0.4;
    translate: 0 -20%;
    filter: blur(12px);
    scale: 1.1;
  }
}

@keyframes anim-steam-right {
  0% {
    opacity: 0;
    filter: blur(2px);
    translate: 0 20%;
  }
  100% {
    opacity: 0.4;
    translate: 0 15%;
    filter: blur(8px);
    scale: 1.1;
  }
}

/*
container
*/

.mainVisual-container {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  z-index: 90;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 1em 2em;
  flex-direction: row-reverse;
  align-items: end;
  padding: 0 clamp(2rem,4vw, 2.5rem) clamp(2rem,4vw, 2.5rem);
  opacity: 0;
}
body.is-opening .mainVisual-container {
  opacity: 1;
  transition: opacity 2s ease 0.1s;
}

.mainVisual-link {
}
.mainVisual-btn {
  display: inline-block;
  font-size: clamp(0.9rem,2vw, 1.2rem);
  padding: 1em 2.2em 1em 4.5em;
  background-color: #fff3;
  color: var(--color-base);
  text-decoration: none;
  text-align: center;
  border-radius: 4em;
  line-height: 1;
  position: relative;
  white-space: nowrap;
}
.mainVisual-btn::before {
  content: "";
  display: block;
  width: 2.5em;
  aspect-ratio: 1 / 1;
  background: url(../../img/icon/play.svg) no-repeat 0 0 / 100% auto;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
}
body.is-pc .mainVisual-btn:hover {
  box-shadow: 0 0 4em #fff7 inset;
}
.mainVisual-btn-title {
  display: block;
}
.mainVisual-btn-text {
  display: block;
  font-size: 0.7em;
  padding-top: 0.5em;
}

.mainVisual-info {
  background-color: #fffc;
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  border-radius: 4px;
  font-size: clamp(0.7rem,1.8vw, 0.85rem);
  padding: 1em 2em;
  max-width: clamp(30em,35vw, 35em);
  line-height: 1.7;
  position: relative;
}
.mainVisual-topics {
}
.mainVisual-topics li {
}
.mainVisual-topics li a {
  display: flex;
  color: inherit;
  text-decoration: none;
  padding: 0.1em 0;
}

.mainVisual-topics-time {
  display: inline-block;
  width: 6.5em;
}
.mainVisual-topics-title {
  flex: 1;
  height: calc(1em * 1.7);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 0.3em;
  transition: 0.4s;
}
body.is-pc .mainVisual-topics li a:hover .mainVisual-topics-title {
  text-decoration-color: inherit;
}


/*
home
*/

body.home .l-header {
  transition: opacity 1s ease 0.3s, height 0.3s ease, box-shadow 0.3s ease, color 0.3s ease, background-color 0.3s ease;
}
body.home:not(.is-started.is-opening) .l-header {
  opacity: 0;
}


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


  .mainVisual
  .mainVisual-logo {
  }

  .mainVisual-logo-title {
    display: block;
    width: clamp(1.5rem, 10vw, 2.5rem);
    margin: 0 auto;
    padding-bottom: 4em;
  }

  .mainVisual-steam {
    bottom: -8%;
  }
  .mainVisual-steam.-left {
    left: -48%;
    width: 120vw;
  }
  .mainVisual-steam.-right {
    right: -42%;
    width: 100vw;
  }

  /*
  container
  */

  .mainVisual-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2em 2em;
    flex-direction: column;
    align-items: center;
    padding: 0 var(--padding-side) var(--padding-side);
  }
  .mainVisual-link {
  }
  .mainVisual-btn {
    display: inline-block;
    font-size: clamp(0.9rem,3.8vw, 1.1rem);
  }

  .mainVisual-info {
    font-size: clamp(0.8rem,3.5vw, 0.9rem);
    padding: 0.8em 2em 0.8em 1.5em;
    max-width: clamp(1em,100%, 55em);
    line-height: 1.7;
  }
  .mainVisual-topics li a {
    display: block;
    padding: 0.2em 0;
  }

  .mainVisual-topics-time {
    font-size: 0.85em;
    width: initial;
    display: block;
    line-height: 1.3;
  }

/*
slick
*/

  .mainVisual-info .slick-dots {
    display: flex;
    flex-direction: column;
    gap: 5px;
    position: absolute;
    top: 50%;
    right: 1em;
    translate: 0 -50%;
  }
  .mainVisual-info .slick-dots li,
  .mainVisual-info .slick-dots button {
    width: 3px;
    height: 3px;
  }
  .mainVisual-info .slick-dots button {
    display: block;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background-color: currentColor;
    opacity: 0.3;
    font-size: 0;
  }
  .mainVisual-info .slick-dots .slick-active button {
    opacity: 1;
  }

}

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

.homeContents {
  padding-block: min(18vw,8em);
}
.homeContents-section {
}
.homeContents-section:not(:last-of-type) {
  padding-bottom: min(18vw,8em);
}


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

  .homeContents {
    display: flex;
    flex-direction: column;
    gap: min(18vw,8em) 0;
  }
  .homeContents-section:not(:last-of-type) {
    padding-bottom: 0;
  }

  .homeContents-section.-seasonMenu {
    order: 2;
  }
  .homeContents-section.-grandMenu {
    order: 3;
  }
  .homeContents-section.-feature {
    order: 4;
  }
  .homeContents-section.-news {
    order: 1;
  }
}


/***********
homeSeason
************/

.homeSeason {
  position: relative;
}
.homeSeason-link {
  text-align: right;
  position: absolute;
  right: 0;
  bottom: 0;
}

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

  .homeSeason {
    position: relative;
  }
  .homeSeason-link {
    padding-top: 2rem;
    text-align: right;
    position: static;
  }

}

/***********
homeGrand
************/

.homeGrand {
}

.homeGrand-container {
  position: relative;
}
.homeGrand-lead {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: clamp(1.2rem,5vw, 1.6rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  white-space: nowrap;
  line-height: 1.8;
  position: absolute;
  right: 8%;
}
.homeGrand-lead-item:nth-child(2) {
  padding-top: 1.8em;
}
.homeGrand-text {
  font-size: 0.9rem;
  line-height: var(--lineheight-main);
}
.homeGrand-link {
  padding-top: 6rem;
}

.homeGrand-section.-no03 {
  padding-top: 5rem;
}


.homeGrand-marquee {
  --homeGrand-marquee-height: clamp(16rem,18vw, 22rem);
  overflow: hidden;
}
.homeGrand-marquee-slider {
  --marquee-gap: 0px;
  position: relative;
  overflow: hidden;
  width: 200vw;
  margin-left: -100vw;
  touch-action: pan-y;
  cursor: grab;
}
.homeGrand-marquee-slider:active {
  cursor: grabbing;
}
.homeGrand-marquee-track {
  position: relative;
  column-gap: var(--marquee-gap);
}
.homeGrand-marquee-item {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  padding-right: 1.5rem;
  width: max-content;
  will-change: transform;
}
.homeGrand-marquee-item img {
  display: block;
  width: auto;
  max-width: none;
  height: var(--homeGrand-marquee-height);
  object-fit: cover;
  aspect-ratio: 16 / 10;
}

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

  .homeGrand-lead {
    right: 0;
  }
  .homeGrand-text {
    padding-right: 8rem;
  }

  .homeGrand-marquee {
    --homeGrand-marquee-height: clamp(10rem,33vw, 16rem);
  }
  .homeGrand-marquee-item {
    padding-right: 0.5rem;
  }
  .homeGrand-marquee-item img {
    aspect-ratio: 16 / 11;
  }

}

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



  .homeGrand {
    display: flex;
    flex-direction: column;
  }
  .homeGrand-section.-no01 {
    order: 1;
  }
  .homeGrand-section.-no02 {
    order: 3;
  }
  .homeGrand-section.-no03 {
    order: 2;
    padding-top: 0;
  }


  .homeGrand-container {
    position: relative;
    padding-top: 1.5rem;
  }
  .homeGrand-lead {
    -webkit-writing-mode: horizontal-lr;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0.1em;
    padding-bottom: 0.8em;
    line-height: 1.5;
    position: static;
  }
  .homeGrand-lead-item:nth-child(2) {
    padding-top: 0;
  }
  .homeGrand-text {
    padding-right: 0;
  }
  .homeGrand-link {
    padding-top: 2rem;
    text-align: right;
  }

  .homeGrand-marquee {
    --homeGrand-marquee-height: clamp(10rem,45vw, 16rem);
  }

}

/***********
homeFeature
************/

.homeFeature {
  position: relative;
  padding-bottom: 3rem;
}
.homeFeature + .homeFeature{
  margin-top: min(18vw,8em);
}
.homeFeature-visual {
  display: flex;
}
.homeFeature-img {
  width: 82vw;
  overflow: hidden;
}
.homeFeature-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 7;
  transition: scale 0.5s ease;
}
body.is-pc a:hover .homeFeature-img img {
  scale: 1.03;
  transition: scale 1s ease;
}
.homeFeature-container {
  position: absolute;
  right: min(3vw,3rem);
  bottom: 0;
  z-index: 9;
}
.homeFeature-block {
  max-width: 37em;
  background-color: var(--color-brand01);
  color: var(--color-base);
  padding: 3rem 3.5rem;
  display: flex;
  gap: 0 3rem;
}
.homeFeature-heading {
  padding-top: 0.5rem;
}
.homeFeature-heading-title {
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
  font-size: clamp(1.6rem,7vw, 2.1rem);
  font-weight: 500;
  white-space: nowrap;
  letter-spacing: 0.35em;
  line-height: 1;
}
.homeFeature-text {
  font-size: 0.9rem;
  line-height: var(--lineheight-main);
}
.homeFeature-link {
  padding-top: 1rem;
  text-align: right;
}


.homeFeature.-reverse .homeFeature-visual {
  justify-content: end;
}
.homeFeature.-reverse .homeFeature-container {
  inset: auto;
  left: min(3vw,3rem);
  bottom: 0;
}

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

  .homeFeature {
    padding-bottom: 8rem;
  }

}

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

  .homeFeature-img {
    width: 88vw;
  }
  .homeFeature {
    padding-bottom: 12rem;
  }

}

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


  .homeFeature {
    padding-bottom: 0;
  }
  .homeFeature + .homeFeature{
    margin-top: min(10vw,3em);
  }
  .homeFeature-visual {
    display: block;
    position: relative;
    z-index: 9;
  }
  .homeFeature-img {
    width: 92vw;
  }
  .homeFeature-img img {
    aspect-ratio: 16 / 10;
  }
  .homeFeature-container {
    position: static;
    padding-left: var(--padding-side);
  }
  .homeFeature-block {
    max-width: 37em;
    background-color: var(--color-brand01);
    color: var(--color-base);
    padding: 6rem 1rem 3rem 1.5rem;
    display: block;
    margin-top: -4rem;
  }
  .homeFeature-heading {
    padding-top: 0.5rem;
  }
  .homeFeature-heading-title {
    -webkit-writing-mode: horizontal-lr;
    -ms-writing-mode: lr-tb;
    writing-mode: horizontal-tb;
    letter-spacing: 0.08em;
    line-height: 1.5;
    padding-bottom: 0.6em;
  }
  .homeFeature-text {
  }
  .homeFeature-link {
    padding-top: 1rem;
    text-align: right;
  }

}

/***********
homeNews
************/

.homeNews {
  position: relative;
  min-height: 5rem;
}
.homeNews-container {
  display: flex;
  gap: 0 5%;
}
.homeNews-heading {
  width: clamp(14rem,35%, 20rem);
}
.homeNews-inner {
  flex: 1;
}

.homeNews-link {
  position: absolute;
  left: 0;
  bottom: 0;
}

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

  .homeNews {
    min-height: initial;
  }
  .homeNews-container {
    display: block;
  }
  .homeNews-heading {
    width: auto;
  }

  .homeNews-link {
    position: static;
    padding-top: 2rem;
    text-align: right;
  }

}


/***********
homeShop
************/

.homeShop {
  background-color: var(--color-sub01);
}
.homeShop-container {
}
.homeShop-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 0 5%;
}
.homeShop-inner {
}
.homeShop-text {
  font-size: 0.9rem;
  line-height: var(--lineheight-main);
  max-width: 40em;
}
.homeShop-link {
}

.homeShop-marquee {
  --homeShop-marquee-height: clamp(12rem, 16vw, 18rem);
  margin-top: 4rem;
  margin-inline: calc(50% - 50vw);
  overflow: hidden;
}
.homeShop-marquee-slider {
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}
.homeShop-marquee-slider:active {
  cursor: grabbing;
}
.homeShop-marquee-track {
  display: flex;
  column-gap: 1rem;
  width: max-content;
  padding-left: max(var(--padding-side), calc((100vw - 1260px) / 2 + var(--padding-side)));
  will-change: transform;
}
.homeShop-marquee-item {
  flex: 0 0 auto;
}
.homeShop-marquee-item img {
  display: block;
  width: auto;
  max-width: none;
  height: var(--homeShop-marquee-height);
  object-fit: cover;
  aspect-ratio: 16 / 10;
  pointer-events: none;
  user-select: none;
}
.homeShop-marquee-item a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.homeShop-marquee-item:last-child {
  margin-right: 5rem;
}

.homeShop-marquee-text {
  padding-top: 0.6em;
  font-size: 0.9rem;
  max-width: clamp(19.2rem, 25.6vw, 28.8rem);
}

@media screen and (min-width:1921px) {

  .homeShop-marquee-track {
    padding-left: calc((100vw - (1260px + 8vw)) / 2 + var(--padding-side));
  }

}

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


  .homeShop-header {
    display: block;
  }
  .homeShop-inner {
  }
  .homeShop-text {
    max-width: initial;
  }
  .homeShop-link {
    padding-top: 2em;
    text-align: right;
  }

  .homeShop-marquee {
    --homeShop-marquee-height: clamp(10rem, 33vw, 14rem);
    margin-top: 3rem;
  }
  .homeShop-marquee-slider {
    overflow-x: auto;
    overflow-y: hidden;
    touch-action: auto;
    cursor: auto;
    -webkit-overflow-scrolling: touch;
  }
  .homeShop-marquee-slider:active {
    cursor: auto;
  }
  .homeShop-marquee-track {
    column-gap: 0.5rem;
    will-change: auto;
  }


  .homeShop-marquee-item {
    width: clamp(16rem, 52.8vw, 22.4rem);
  }
  .homeShop-marquee-text {
    max-width: 100%;
  }

}


/***********
pageBanner
************/

.pageBanner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3em 3%;
}
.pageBanner-title {
  padding-top: 0.6rem;
}

.pageBanner a {
  display: block;
  color: inherit;
  text-decoration: none;
}
.pageBanner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}

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

  .pageBanner {
    grid-template-columns: repeat(1, 1fr);
    gap: 2em 0;
  }
  .pageBanner-title {
    font-size: 1.1rem;
    padding-top: 0.6rem;
  }
  .pageBanner img {
    aspect-ratio: 2 / 1;
  }

}

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