/*=============================================
mainvisual
=============================================*/
.mv01 .slide-media {
  height: 45vh;
}

.mainvisual {
  width: 100%;
  position: relative;
  /* position: fixed;
  left: 0;
  top: 0; */
  /* aspect-ratio: 145 / 73; */
}

.l-inner {
  position: relative;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 10rem;
}

.l-section {
  border-top: 1px solid #eee;
}

.l-section .l-inner {
  padding-top: 8rem;
  padding-bottom: 8rem;
}

[class*=swiper]:focus {
  outline: none;
}

.slide-media,
.thumb-media {
  position: relative;
  overflow: hidden;
}

.slide-media img,
.thumb-media img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}


.mv01 .swiper-button-disabled {
  pointer-events: none;
  opacity: 0;
}

.mv01 .l-inner {
  padding-bottom: 0;
}

.mv01 .swiper-fade .mv01 .swiper-slide {
  -webkit-transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, -webkit-transform !important;
  transition-property: opacity, transform !important;
  transition-property: opacity, transform, -webkit-transform !important;
  pointer-events: none;
}


.mv01 .slide-media img {
  -webkit-transition: 7s 1s ease-out;
  transition: 7s 1s ease-out;
}


.mv01 .swiper-slide[class*=-active] .slide-media img {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.mv01 .swiper-horizontal>.swiper-pagination-bullets,
.mv01 .swiper-pagination-bullets.swiper-pagination-horizontal,
.mv01 .swiper-pagination-custom,
.mv01 .swiper-pagination-fraction {
  bottom: -35px;
}

.mv01 .swiper-pagination-bullet {
  opacity: 1;
  border: solid 1px #a3a3a3;
  background-color: #fff;
  width: 10px;
  height: 10px;
}

.mv01 .swiper-pagination-bullet-active {
  background: #a3a3a3;
}

@-webkit-keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
    filter: blur(300px);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

@keyframes mv01-fadeIn {
  0% {
    -webkit-transform: scale(0.5);
    transform: scale(0.5);
    opacity: 0;
    -webkit-filter: blur(300px);
    filter: blur(300px);
  }

  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-filter: blur(0);
    filter: blur(0);
  }
}

/* @media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
}
 */

@media only screen and (min-width: 960px) {
  .mv01 .slide-media {
    height: 80vh;
  }
}



/*=============================================
mainvisual__logo
=============================================*/

.mainvisual__logo {
  display: none;
}

@media only screen and (min-width: 960px) {
  .mainvisual__logo {
    display: block;
    position: absolute;
    z-index: 2;
    top: calc(50% - 3%);
    left: 0;
    right: 0;
    margin: auto;
    background-color: rgba(0, 0, 0, 0.75);
    width: 30%;
    padding: 3% 4%;
  }
}

/*=============================================
mainvisual__reserve
=============================================*/

.mainvisual__reserve {
  writing-mode: vertical-rl;
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}

.mainvisual__reserve a {
  padding: 10px 5px;
  text-decoration: none;
  color: #fff;
  display: block;
  transition: all 0.5s;
  background: rgba(210, 170, 94, 0.8);
}

.mainvisual__reserve a:hover {
  background: #000;
}

@media only screen and (min-width: 960px) {
  .mainvisual__reserve {
    top: calc(50% - 61px);
    bottom: auto;
  }

  .mainvisual__reserve a {
    padding-right: 20px;
  }
}