@charset "UTF-8";
/*------------------------------------------------------------index_header*/
header {
  height: 100vh;
  width: 100%;
  background: #231815;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  z-index: 9999;
}

/*最初のlogo*/
#logo_path {
  width: 150px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

#logo_path path {
  fill: none;
  stroke: rgba(255, 255, 255, 0.8);
  /*線の色を指定する*/
  stroke-dasharray: 2000;
  /*線の間隔を指定する*/
  stroke-dashoffset: 0;
  /*線の位置を指定する(IEは効かない属性)*/
  stroke-width: 0.5;
  /*線の太さを指定する*/
  -webkit-animation: hello 3s ease-in forwards;
  animation: hello 3s ease-in forwards;
}

@-webkit-keyframes hello {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
    /*透過*/
  }
  50% {
    fill: transparent;
    /*透過*/
  }
  100% {
    stroke-dashoffset: 0;
    fill: #333;
  }
}

@keyframes hello {
  0% {
    stroke-dashoffset: 2000;
    fill: transparent;
    /*透過*/
  }
  50% {
    fill: transparent;
    /*透過*/
  }
  100% {
    stroke-dashoffset: 0;
    fill: #fff;
  }
}

@media print, screen and (min-width: 768px) {
  #logo_path {
    width: 200px;
  }
}

/*------------------------------------------------------------slider*/
.swiper-container {
  width: 100%;
  height: 100vh;
}

#mainimg_logo {
  cursor: pointer;
  position: absolute;
  z-index: 250;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 200px;
  /*fill: #231815;*/
  fill: #fff;
  -webkit-animation: slide_logo_anime 4s ease-out 5s forwards;
          animation: slide_logo_anime 4s ease-out 5s forwards;
}

@-webkit-keyframes slide_logo_anime {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}

@keyframes slide_logo_anime {
  0% {
    -webkit-filter: blur(10px);
            filter: blur(10px);
    opacity: 0;
  }
  100% {
    -webkit-filter: blur(0px);
            filter: blur(0px);
    opacity: 1;
  }
}


@media print, screen and (min-width: 992px) {
  #mainimg_logo {
    cursor: pointer;
    position: absolute;
    z-index: 250;
    top: 0;
    bottom: 0;
    left: 80px;
    margin: auto 0;
    width: 250px;
  }
}

.swiper-slide {
  position: relative;
}

@media screen and (orientation: portrait) { 
    /* 縦向きの場合のスタイル */
    #mainimg_logo {
        position: absolute;
        top:0;
        bottom:0;
        left:20px;
        margin:auto auto auto 0;
        opacity: 0.8;
        width: 180px;
        padding-top: 3px;
    }
    h2{
        /*background: rgba(35, 24, 21, 0.7);*/
        width:280px;
        display: block;
        height: 70px;
        position: absolute;
        left: 0;
        top:0;
        bottom: 0;
        margin: auto;
        z-index:99;
        -webkit-animation: slide_logo_anime 4s ease-out 5s forwards;
        animation: slide_logo_anime 4s ease-out 5s forwards;
    }
  .slide01 {
      background: url(../img/index_img/slide01_sp.jpg) center center no-repeat;
      background-size:cover;
  }
  .slide02 {
      background: url(../img/index_img/slide02_sp.jpg) center center no-repeat;
      background-size: cover;
  }
  .slide03 {
      background: url(../img/index_img/slide03_sp.jpg) center center no-repeat;
      background-size: cover;
  }
  .slide04 {
      background: url(../img/index_img/slide04_sp.jpg) center center no-repeat;
      background-size: cover;
  }
  .slide05 {
      background: url(../img/index_img/slide05_sp.jpg) center center no-repeat;
      background-size: cover;
  }
  .slide06 {
      background: url(../img/index_img/slide06_sp.jpg) center center no-repeat;
      background-size: cover;
  }
}

@media screen and (orientation: landscape) {
    /* 横向きの場合のスタイル */
    h3 img{
        display: none;
    }
 
  .slide01 {
    background: url(../img/index_img/slide02.jpg) center center no-repeat;
    background-size: cover;
  }
  .slide02 {
    background: url(../img/index_img/slide03.jpg) center center no-repeat;
    background-size: cover;
  }
  .slide03 {
    background: url(../img/index_img/slide04.jpg) center center no-repeat;
    background-size: cover;
  }
  .slide04 {
    background: url(../img/index_img/slide05.jpg) center center no-repeat;
    background-size: cover;
  }
  .slide05 {
    background: url(../img/index_img/slide06.jpg) center center no-repeat;
    background-size: cover;
  }
  .slide06 {
    background: url(../img/index_img/slide01.jpg) center center no-repeat;
    background-size: cover;
  }
}
/*# sourceMappingURL=index.css.map */
.michelin {
  position: absolute;
  z-index: 250;
  top: calc(50% + 50px);
  left: 67px;
  -webkit-animation: slide_logo_anime 4s ease-out 5s forwards;
          animation: slide_logo_anime 4s ease-out 5s forwards;
}
.michelin img {
  width: 86px;
  height: auto;
}
@media print, screen and (min-width: 768px) {
.michelin {
  position: absolute;
  z-index: 250;
  top: calc(50% + 60px);
  left: calc( 50% - 43px);
  -webkit-animation: slide_logo_anime 4s ease-out 5s forwards;
          animation: slide_logo_anime 4s ease-out 5s forwards;
}
.michelin img {
  width: 86px;
  height: auto;
}
}
@media print, screen and (min-width: 992px) {
.michelin {
  position: absolute;
  z-index: 250;
  top: calc(50% + 70px);
  left: 155px;
  -webkit-animation: slide_logo_anime 4s ease-out 5s forwards;
          animation: slide_logo_anime 4s ease-out 5s forwards;
}
.michelin img {
  width: 100px;
  height: auto;
}
}
@media screen and (orientation: portrait) { 
.michelin {
  position: absolute;
  z-index: 250;
  top: calc(50% + 50px);
  left: 67px;
  -webkit-animation: slide_logo_anime 4s ease-out 5s forwards;
          animation: slide_logo_anime 4s ease-out 5s forwards;
}
.michelin img {
  width: 86px;
  height: auto;
}
}