@charset "utf-8";

/* CSS Document */

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

.mainVisual {
  position: relative;
  font-size: clamp(12px,0.9vw, 24px);
  padding-top: calc(var(--header-height) + 3em);
}

.mainVisual-wrapper {
  position: relative;
}

/*
visual
*/

.mainVisual-visual {
  margin-left: 28vw;
  overflow: hidden;
  opacity: 0;
  transition: opacity 2s ease 0.2s;
}
.mainVisual-slider {
}
.mainVisual-slider-img {
  width: max(20vw,22em);
  padding-right: 1px;
}
body.is-loaded .mainVisual-visual {
  opacity: 1;
}
body.is-pc .mainVisual-slider a{
  transition: opacity 0.5s ease;
}
body.is-pc .mainVisual-slider a:hover {
  opacity: 0.8;
}

/*
container
*/

.mainVisual-container {
  position: absolute;
  left: 0;
  bottom: 0;
  z-index: 9;
  display: flex;
  flex-direction: column;
  justify-content: end;
  text-align: left;
  padding-bottom: 3em;
  padding-left: 3vw;
  opacity: 0;
  transition: opacity 2s ease 0.2s;
}
body.is-loaded .mainVisual-container {
  opacity: 1;
}
.mainVisual-block {
}
.mainVisual-inner {
  display: inline-block;
  position: relative;
  min-width: 21vw;
}

.mainVisual-badge {
  display: flex;
  justify-content: end;
  margin-bottom: -3em;
  user-select: none;
}
.mainVisual-badge-item {
  position: relative;
  right: -5vw;
  width: 11em;
  background: url(../../img/aniv_base.png) no-repeat center center / 100% auto;
  aspect-ratio: 1 / 1;
}
.mainVisual-badge img {
  animation: anim-mainVisual-badge 40s linear infinite;
}
@keyframes anim-mainVisual-badge {
  0% { rotate: 0deg; }
  100% {rotate: -360deg; }
}


.mainVisual-lead {
  font-size: 260%;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.1em;
  color: var(--color-dark01);
  white-space: nowrap;
  line-height: 1.8;
  user-select: none;
}
.mainVisual-lead-inner {
  display: inline-block;
  text-align: left;
}
.mainVisual-lead-text:not(:last-child) {
  border-bottom: 1px solid var(--color-dark01);
}



.mainVisual-lead-text span {
  display: inline-block;
  opacity: 0;
  translate: 0 0.2em;
  transition: opacity 2.5s ease , translate 1.5s ease;
}
body.is-loaded .mainVisual-lead-text span {
  opacity: 1;
  translate: 0 0;
}


.mainVisual-cv {
  display: flex;
  justify-content: center;
  padding-top: 4em;
}
.mainVisual-cv-item {
  padding: 2px;
}
.mainVisual-cv-btn {
  display: inline-block;
  width: 12em;
  padding: 1em 2em 1em 3.5em;
  white-space: nowrap;
  background-color: var(--color-main);
  color: var(--color-base);
  text-decoration: none;
  text-align: center;
  font-weight: 500;
  position: relative;
}
.mainVisual-cv-btn::after {
  content: "";
  display: block;
  width: calc(100% - 6px);
  height: calc(100% - 6px);
  position: absolute;
  left: 3px;
  top: 3px;
  border: 1px solid var(--color-base);
}

.mainVisual-cv-btn img {
  width: 2em;
  position: absolute;
  left: 1em;
  top: 50%;
  translate: 0 -50%;
}


.mainVisual-cv-btn.-request {
  background-color: var(--color-dark01);
}
body.is-pc .mainVisual-cv-btn.-request:hover {
  background-color: var(--color-main);
}
.mainVisual-cv-btn.-reservation {
  background-color: var(--color-brand01);
}
body.is-pc .mainVisual-cv-btn.-reservation:hover {
  background-color: var(--color-brand02);
}



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

  .mainVisual {
    padding-top: calc(var(--header-height) + 1em);
  }

  /*
  visual
  */

  .mainVisual-visual {
    margin-left: 35vw;
  }
  .mainVisual-slider-img {
    width: max(20vw,18em);
  }

}

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

  .mainVisual {
    font-size: clamp(15px,3.4vw, 18px);
    padding-top: var(--header-height);
  }

  .mainVisual-wrapper {
    position: relative;
  }

  /*
  visual
  */

  .mainVisual-visual {
    margin-left: 0;
  }
  .mainVisual-slider-img {
    width: max(28vw,200px);
    padding-right: 1px;
  }

  /*
  container
  */

  .mainVisual-container {
    position: static;
    display: flex;
    justify-content: center;
    width: 100%;
    padding-bottom: 3em;
    padding-left: 5vw;
    padding-right: 5vw;
  }
  .mainVisual-inner {
    display: block;
    width: 100%;
    min-width: initial;
    margin: 0 auto;
    max-width: 520px;
  }

  .mainVisual-badge {
    display: flex;
    justify-content: end;
    margin-bottom: 0;
    padding-bottom: 2em;
    user-select: none;
    position: relative;
    width: 100%;
  }
  .mainVisual-badge-item {
    position: absolute;
    right: -2vw;
    bottom: -2em;
    width: 10em;
  }

  .mainVisual-lead {
    font-size: 220%;
    text-align: left;
    line-height: 1.5;
  }


  .mainVisual-cv {
    padding-top: 2em;
    margin-left: -2px;
    margin-right: -2px;
  }
  .mainVisual-cv-item {
    padding: 2px;
    flex-grow: 1;
  }
  .mainVisual-cv-btn {
    width: 100%;
    padding: 1em 1em 1em 2.5em;
  }

  .mainVisual-cv-btn img {
    width: 1.8em;
    position: absolute;
    left: 1em;
    top: 50%;
    translate: 0 -50%;
  }

}

/***********
homeTopics
************/

.homeTopics {
  padding: min(10vw,5em)  min(5vw,30px);
}
.homeTopics-container {
  max-width: 1000px;
  display: flex;
  margin: 0 auto;
  background-color: var(--color-sub01);
}
.homeTopics-heading {
  background: url(../../img/pattern01.png);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  color: var(--color-base);
}
.homeTopics-heading-title {
  font-weight: 500;
  font-size: 100%;
  white-space: nowrap;
  padding: 1em 2em;
}
.homeTopics-block {
  padding: 1.5em 5%;
}
.homeTopics-inner {
  overflow: hidden;
}

.homeTopics-list {
  font-size: 0.9rem;
  pointer-events: none;
}
.homeTopics-list li {
}
.homeTopics-list-text {
  display: flex;
  padding: 0.2em 0;
}
.homeTopics-list time {
  display: inline-block;
  width: 6em;
}
.homeTopics-list p {
  flex: 1;
  height: calc(1em * 1.5);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

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

  .homeTopics {
    padding-top: 0;
  }

}

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

  .homeTopics-container {
    display: block;
  }
  .homeTopics-heading {
    text-align: center;
  }
  .homeTopics-heading-title {
    font-size: 1.1rem;
    padding: 1em 1em;
  }
  .homeTopics-block {
    padding: 1em 5%;
  }

  .homeTopics-list time {
    width: 5em;
  }

}

/***********
homeEvent
************/

.homeEvent {
  background: var(--color-grad01);
}

.homeEvent-container {
}


/***********
homeCollection
************/

.homeCollection {
  background-image: url("../../img/bg01_rt.png"), url("../../img/bg01_lb.png");
  background-repeat: no-repeat, no-repeat;
  background-position: right top, left bottom;
  background-size: 60vw auto, 60vw auto;
  padding-block: min(12vw,8em) min(16vw,10em);
}


.homeCollection-object {
  position: absolute;
  right: 0;
  bottom: 0.4em;
  font-family: var(--font-family-serif-en02);
  font-size: 11rem;
  font-style: italic;
  white-space: nowrap;
  line-height: 1;
  display: inline-block;
  background: var(--color-grad03);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  opacity: 0.4;
  pointer-events: none;
}


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

  .homeCollection {
    background-size: min(90vw,500px) auto, min(90vw,500px) auto;
    padding-block: min(18vw,6em) min(20vw,8em);
  }

  .homeCollection-object {
    bottom: 0;
    font-size: 18vw;
  }

}

/***********
homePlan
************/

.homePlan {
  position: relative;
}
.homePlan:after {
  content: "";
  display: block;
  width: 100%;
  height: 400px;
  position: absolute;
  left: 0;
  bottom: 0;
  background: url(../../img/pattern02.png);
}

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

  .homePlan:after {
    height: 200px;
    background-size: 50px auto;
  }
}


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

.homeNews {
}
.homeNews-container {
  display: flex;
}
.homeNews-heading {
  width: 16em;
  white-space: nowrap;
}
.homeNews-inner {
  flex: 1;
  padding-top: 1em;
}

.homeNews-trigger {
  display: flex;
  flex-wrap: wrap;
  padding-bottom: 3.5em;
}
.homeNews-trigger li {
  display: inline-block;
  background-color: var(--color-base);
  border: 1px solid var(--color-dark01);
  color: inherit;
  padding: 0.4em 1.5em;
  margin: 0 0.2em;
  line-height: 1.3;
  text-decoration: none;
  text-align: center;
  min-width: 6em;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: 3em;
  cursor: pointer;
  transition: 0.2s;
}
.homeNews-trigger li.is-active {
  background-color: var(--color-dark01);
  color: var(--color-base);
}
.homeNews-link {
  text-align: right;
  padding-top: 3em;
}

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


  .homeNews {
  }
  .homeNews-container {
    display: block;
  }
  .homeNews-heading {
    width: auto;
  }
  .homeNews-inner {
    padding-top: 0;
  }

  .homeNews-trigger {
    display: flex;
    flex-wrap: nowrap;
    padding-left: 4vw;
    padding-bottom: 0;
    margin-bottom: 2em;
    margin-left: -4vw;
    margin-right: -4vw;
    overflow: auto;
  }
  .homeNews-trigger li {
    padding: 0.4em 1.2em;
    min-width: initial;
    font-size: 0.95rem;
    white-space: nowrap;
  }
  .homeNews-link {
    text-align: center;
    padding-top: 2em;
  }


}


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

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

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

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