@charset "UTF-8";
/*
 * MAINVISUAL
 * -------------------------------------------------------------------
 */
#first-view-loading {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  z-index: 100000;
  width: 100%;
  height: 100vh;
  overflow: hidden;
}
#first-view-loading .loading {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  z-index: 9999;
  background: #ffffff;
}
#first-view-loading .loading svg {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 60%;
  max-width: 500px;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
#first-view-loading .loading svg .st0 {
  fill: #000;
  stroke: #000;
  stroke-dasharray: 1450;
  stroke-dashoffset: 0;
  stroke-width: 0.5;
  -webkit-animation: loading 2.5s ease-in 0s;
  animation: loading 2.5s ease-in 0s;
}
@-webkit-keyframes loading {
  0% {
    stroke-dashoffset: 1450;
    fill: transparent;
  }
  40% {
    stroke-dashoffset: 1450;
    fill: transparent;
  }
  50% {
    fill: transparent;
  }
  100% {
    stroke-dashoffset: 0;
    fill: #000;
  }
}
#first-view-loading .loading.loading-lefttop svg {
  animation: animeLeftTop 3s ease-in-out 0s forwards;
}
@keyframes animeLeftTop {
  0% {
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    opacity: 1;
  }
  100% {
    top: 36px;
    left: 15px;
    transform: translate(0%, 0%);
    -webkit-transform: translate(0%, 0%);
    -ms-transform: translate(0%, 0%);
    margin: 0px;
    width: 110px;
  }
}
#first-view-animation {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10001;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  transform: scaleX(0);
}
#first-view-animation.first-view-animation {
  animation: firstViewAnimation 0.8s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s both;
  background-color: #d01e40;
}
#first-view-animation.first-view-animation::after {
  content: '';
}
@keyframes firstViewAnimation {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  35% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  36%, 60% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  to {
    transform: scaleX(0);
    transform-origin: right center;
  }
}
#first-view {
  position: relative;
  width: 100%;
  height: calc(100vh - 50px);
  overflow: visible;
  -ms-overflow-style: none;
  scrollbar-width: none;
  opacity: 1;
}
#first-view::-webkit-scrollbar {
  display: none;
}
#first-view .main-visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: 0px 0px 0px 0px;
  padding: 0px;
  width: 100%;
  user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-drag: none;
  -khtml-user-drag: none;
  -webkit-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
#first-view .main-visual .main-visual-container {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
#first-view .main-visual .main-visual-container .message {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 15px 0px;
  opacity: 0;
  -webkit-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
@media (min-width: 992px) {
  #first-view .main-visual .main-visual-container .message {
    align-items: flex-end;
    justify-content: flex-end;
  }
}
#first-view .main-visual .main-visual-container .message .message-text-main {
  margin-bottom: 10px;
  padding: 5px;
  min-width: 350px;
  font-size: 24px;
  font-weight: 200;
  font-family: 'Noto Serif JP', serif;
  font-feature-settings: "palt";
  letter-spacing: 0.3em;
  line-height: 1.2;
  text-align: center;
  background: rgba(255, 255, 255, 0.9);
}
#first-view .main-visual .main-visual-container .message .message-text-main:last-child {
  margin-bottom: 50px;
}
@media (min-width: 992px) {
  #first-view .main-visual .main-visual-container .message .message-text-main {
    font-size: 28px;
    min-width: 700px;
  }
  #first-view .main-visual .main-visual-container .message .message-text-main br {
    display: none;
  }
}
#first-view .main-visual .main-visual-container .message .message-text-sub {
  font-size: 18px;
  font-weight: normal;
  font-family: 'Noto Serif JP', serif;
  line-height: 1.2;
  text-align: center;
}
@media (min-width: 992px) {
  #first-view .main-visual .main-visual-container .message .message-text-sub {
    font-size: 1.5em;
  }
  #first-view .main-visual .main-visual-container .message .message-text-sub br {
    display: none;
  }
}
#first-view .main-visual .main-visual-container .message .message-animation {
  position: relative;
}
#first-view .main-visual .main-visual-container .message .message-animation span {
  opacity: 0;
  animation: titleTextAnimation 0.2s linear 0.5s forwards;
}
#first-view .main-visual .main-visual-container .message .message-animation::after {
  animation: titleAnimation 0.8s cubic-bezier(0.04, 0.435, 0.315, 0.9) 0.3s both;
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: scaleX(0);
  background-color: #d01e40;
}
@keyframes titleTextAnimation {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes titleAnimation {
  0% {
    transform: scaleX(0);
    transform-origin: left center;
  }
  35% {
    transform: scaleX(1);
    transform-origin: left center;
  }
  36%, 60% {
    transform: scaleX(1);
    transform-origin: right center;
  }
  to {
    transform: scaleX(0);
    transform-origin: right center;
  }
}
#first-view .main-visual .main-visual-container .swiper-container {
  width: 100%;
  height: 100%;
  margin: 0px 0px 0px 0px;
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide {
  width: 100%;
  height: 100%;
  text-align: center;
  font-size: 18px;
  background: #ffffff;
  display: -webkit-box;
  /* Center slide text vertically */
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  overflow: hidden;
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide.swiper-slide-active, #first-view .main-visual .main-visual-container .swiper-container .swiper-slide.swiper-slide-duplicate-active, #first-view .main-visual .main-visual-container .swiper-container .swiper-slide.swiper-slide-prev {
  /*
                    @media (min-width: 992px) {
                        height:600px;
                    }
                    */
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide.swiper-slide-active .image, #first-view .main-visual .main-visual-container .swiper-container .swiper-slide.swiper-slide-duplicate-active .image, #first-view .main-visual .main-visual-container .swiper-container .swiper-slide.swiper-slide-prev .image {
  animation: imageAnimation 10s linear 0s 1 normal both;
}
@keyframes imageAnimation {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide .slide-img img {
  display: block;
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide .image {
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  transform: scale(1);
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide .image.image-1 {
  background-image: url("../img/toppage/mainvisual-1.jpg");
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide .image.image-2 {
  background-image: url("../img/toppage/mainvisual-2.jpg");
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide .image.image-3 {
  background-image: url("../img/toppage/mainvisual-3.jpg");
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide .image.image-4 {
  background-image: url("../img/toppage/mainvisual-4.jpg");
}
#first-view .main-visual .main-visual-container .swiper-container .swiper-slide .image.image-5 {
  background-image: url("../img/toppage/mainvisual-5.jpg");
}
#first-view .main-visual-pagination {
  position: absolute;
  bottom: -40px;
  left: 30px;
}
@media (min-width: 992px) {
  #first-view .main-visual-pagination {
    bottom: -40px;
    left: 120px;
  }
}
#first-view .main-visual-pagination .swiper-pagination-bullet {
  margin-left: 10px;
  width: 15px;
  height: 15px;
  display: inline-block;
  border-radius: 100%;
  background: #c8cce3;
  opacity: 1;
  -webkit-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
}
#first-view .main-visual-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  opacity: 1;
  background: #d01e40;
}
#first-view .main-visual-bar {
  position: absolute;
  bottom: -50px;
  left: 10px;
  width: 2px;
  height: 100px;
  background: rgba(255, 255, 255, 0.5);
  z-index: 2;
  overflow: hidden;
}
@media (min-width: 992px) {
  #first-view .main-visual-bar {
    bottom: -50px;
    left: 100px;
  }
}
#first-view .main-visual-bar .bar {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 0px;
  background: #d01d40;
}
#toppage-main-area {
  opacity: 1;
  transform: translateY(0px);
  -webkit-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -moz-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -ms-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  -o-transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition: all 0.3s cubic-bezier(0.04, 0.435, 0.315, 0.9);
  transition-duration: 0.5s;
}
#toppage-main-area.toppage-main-area-waiting {
  opacity: 0;
  transform: translateY(100px);
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sourceRoot%22%3A%22https%3A%2F%2Fheart-gh.liber-develop.com%2F%22%2C%22sources%22%3A%5B%22wp-content%2Fthemes%2Ftemplate_20240722%2Fcss%2Fstyle-mainvisual.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22AAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAA6BA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOJ%3BAAAA%3BAAAA%3BAAGI%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAepB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAIJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAKR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMI%3BAAAA%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAEI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYJ%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAIJ%3BAACI%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAII%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAyBI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAEI%3BAACI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAMZ%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOI%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAQpB%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASI%3BAAAA%3BAAAA%3BAAAA%3BAAMR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQI%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASR%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKI%3BAAAA%3BAAAA%3BAAAA%22%7D */