@charset "utf-8";
@import url('https://fonts.googleapis.com/css2?family=Cinzel&display=swap');
/* CSS Document */
 @import url("https://fonts.googleapis.com/css2?family=Spartan:wght@400;700&display=swap");
  :root {
    --easing: cubic-bezier(.2, 1, .2, 1);
    --transition: .8s var(--easing);
    --color-base: #f8f8f8;
    --color-gray: #ddd;
    --color-theme: #4a5f6f;
    --color-theme-darken: #4a5f6f;
    --box-shadow: 8px 8px 12px rgba(0, 0, 0, .05), -8px -8px 12px #fff;
    --box-shadow-hover: 10px 10px 15px rgba(0, 0, 0, .08), -10px -10px 15px #fff;
    --box-shadow-inset: inset 8px 8px 12px rgba(0, 0, 0, .05), inset -8px -8px 12px #fff;
    --box-shadow-dark: 8px 8px 12px rgba(0, 0, 0, .1), -8px -8px 12px rgba(#fff,.2);
  }
  #visual {
    display: block;
	  margin: 0;
	  padding: 0;
  }  

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

  [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 {
    margin-bottom: 160px;
  }
  .mv01 .l-inner {
    padding-bottom: 0;
  }
  .mv01 .swiper-fade .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 .swiper-fade .swiper-slide-active {
    pointer-events: auto;
  }
  .mv01 .swiper-pagination {
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    left: 25px;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    margin: auto;
  }
  .mv01 .swiper-pagination-bullet {
    display: block;
    width: 2px;
    height: 70px;
    cursor: pointer;
    -webkit-transition: var(--transition);
    transition: var(--transition);
    background-color: rgba(255, 255, 255, 0.4);
  }
  .mv01 .swiper-pagination-bullet:not(:first-child) {
    margin-top: 8px;
  }
  .mv01 .swiper-pagination-bullet-active {
    background-color: var(--color-theme);
  }
  .mv01 .slide-media {
    height: 800px;
  }
  .mv01 .slide-media img {
    -webkit-transition: 7s 1s ease-out;
    transition: 7s 1s ease-out;
  }
  .mv01 .slide-title {
    font-size: 3.5em;
	font-family: 'Cinzel', serif;
    font-weight: normal;
    line-height: 1.4;
    position: absolute;
    right: 50px;
    bottom: 10%;
    margin-left: 160px;
    text-align: right;
    color: #fff;
	text-shadow: -2px -2px 5px #808080;
  }
  .mv01 .slide-copy {
	font-size: 23px;
	font-family: YuMincho, "Yu Mincho", "Hiragino Mincho ProN", "serif";
    line-height: 1.2;
    position: absolute;
    right: 50px;
    bottom: 6%;
    margin-left: 160px;
    text-align: right;
    color: #fff;
	text-shadow: -2px -2px 5px #808080;
}
  .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-slide[class*=-active] .slide-title {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
            animation: mv01-fadeIn 2s 0.5s var(--easing) both;
  }
 .mv01 .swiper-slide[class*=-active] .slide-copy {
    -webkit-animation: mv01-fadeIn 2s 0.5s var(--easing) both;
            animation: mv01-fadeIn 2s 0.5s var(--easing) both;
  }

  @-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%;
    }*/
    .l-inner {
      padding: 0 40px;
    }    
    .mv01 {
      margin-bottom: 80px;
    }
    .mv01 .slide-media {
      height: max(70vh, 70vw);
    }
  }
  @media only screen and (max-width: 599px) {
    .mv01 .slide-title {
      font-size: 1.4em;
      right: 30px;
      margin-left: 60px;
		bottom: 8%;
    }
	  .mv01 .slide-copy {
      font-size: 1em;
      right: 30px;
      margin-left: 60px;
		  bottom: 1%;
    } 
	  .mv01 .slide-media {
    height: 500px;
  }
}
