@charset "UTF-8";

/* mv
---------------------------------------------- */
.tpl-cover--hero .tpl-figure {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .swiper-slide-active.tpl-cover__bg01 .tpl-image,
  .swiper-slide-duplicate-active.tpl-cover__bg01 .tpl-image,
  .swiper-slide-prev.tpl-cover__bg01 .tpl-image{
    animation: zoom 6s 0s 1 normal both;
  }
  @keyframes zoom {
    0% {
      transform: scale(1.2);
    }
    100% {
      transform: scale(1);
    }
  }

  .swiper-slide-active.tpl-cover__bg02 .tpl-image,
  .swiper-slide-duplicate-active.tpl-cover__bg02 .tpl-image,
  .swiper-slide-prev.tpl-cover__bg02 .tpl-image{
    animation: slide 7s 0s 1 normal both;
  }
  @keyframes slide {
    0% {
      transform: translateX(-20%);
    }
    100% {
      transform: translateX(-30%);
    }
  }

  .swiper-slide-active.tpl-cover__bg03 .tpl-image,
  .swiper-slide-duplicate-active.tpl-cover__bg03 .tpl-image,
  .swiper-slide-prev.tpl-cover__bg03 .tpl-image{
    animation: slide02 7s 0s 1 normal both;
  }
  @keyframes slide02 {
    0% {
      transform: scale(1.1) translate(-40%, 5%);
    }
    100% {
      transform: scale(1.1) translate(-40%, 0);
    }
  }

  .tpl-cover__bg .tpl-image:not(.tpl-cover__bg01 .tpl-image) {
    width: auto;
  }
}

/* merit
---------------------------------------------- */
.merit {
  padding-top: 20px;
}
.meritList {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 1280px;
  margin-inline: auto;
}
.meritList > li {
  font-size: clamp(.8rem, 0.53rem + 0.73vw, 2.4rem); /* 375 - 2560 */
  font-weight: 500;
  line-height: 1.6;
  padding: .5em calc(50 / 1280 * 100%);
  text-align: center;
  position: relative;
  z-index: 0;
}
.meritList > li::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--accent-color);
  z-index: 0;
}
.meritList > li:last-child::after {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 100%;
  background-color: var(--accent-color);
  z-index: 0;
}
.meritList > li sup {
  top: -1em;
  font-size: 60%;
}

@media screen and (max-width: 768px) {
  .merit {
    padding-top: 5px;
  }
  .meritList > li {
    padding-block: 1em;
  }
  .meritList > li:first-child::before,
  .meritList > li:last-child::after {
    content: none;
  }
}

/* topics
---------------------------------------------- */
@media (hover: hover) and (pointer: fine) {
  .tpl-link__title:not(a.tpl-link__title):hover {
    text-decoration: none;
  }
}

/* actionArea
---------------------------------------------- */
@media screen and (min-width: 769px) {
  .actionArea .tpl-col .tpl-headline__subcopy {
    text-align: center;
  }
}

/* movieBox
---------------------------------------------- */
.movieBox {
  min-height: revert;
  /* margin-right: calc(50% - 50vw); */
  padding: 0;
}

@media screen and (max-width: 768px) {
  .movieBox {
    margin-inline: calc(50% - 50vw);
  }
}

/* plan
---------------------------------------------- */
.tpl-room-type__example-note .tpl-room-type__example[data-example=storage] {
  background-color: #cab7ad;
}