@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Noto+Sans+JP:400,500,700&display=swap");
/*////////////////////////////
FAUNDATION
////////////////////////////*/
html {
  font-size: 62.5%;
}

body {
  color: #333333;
  font: 1.4rem/1 'Noto Sans JP', 'メイリオ', sans-serif;
  font-weight: 400;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  background: url(../../img/bg.jpg);
  background-position: center top;
  background-size: cover;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  text-decoration: none;
  color: #333333;
}

a:hover {
  opacity: .9;
  -webkit-transition: .2s;
  transition: .2s;
}

main {
  display: block;
}

#btn {
  position: fixed;
  top: 30px;
  right: 30px;
  width: 40px;
  cursor: pointer;
}

#btn img {
  width: 100%;
  height: auto;
}

#pause {
  display: none;
}

@media (max-width: 800px) {
  #btn {
    top: 20px;
    right: 20px;
    width: 30px;
  }
}

/*////////////////////////////
slide
////////////////////////////*/
.gallery {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
          transform: translateX(-50%) translateY(-50%);
  width: 100vw;
}

.gallery_ttl {
  position: fixed;
  top: 30px;
  left: 50%;
  right: 50%;
  width: 360px;
  max-width: 60vw;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}

.gallery_ttl img {
  width: 100%;
}

.gallery-slider {
  width: 100%;
  height: auto;
}

.gallery-slider .swiper-slide {
  position: relative;
  width: auto;
}

.gallery-slider .swiper-slide img {
  width: 100%;
  height: auto;
}

.gallery-slider .swiper-slide > .name {
  position: absolute;
  bottom: 20px;
  left: 20px;
  font-weight: bold;
  font-size: 1.4rem;
  color: #fff;
}

.gallery-thumbs {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.gallery-thumbs .swiper-slide {
  width: 150px;
  height: 100px;
  text-align: center;
  overflow: hidden;
  opacity: 0.45;
}

.gallery-thumbs .swiper-slide-active {
  opacity: 1;
}

.gallery-thumbs .swiper-slide img {
  width: auto;
}

@media (max-width: 800px) {
  .gallery {
    top: 48%;
  }
  .gallery_ttl {
    top: 15px;
    width: 30%;
  }
  .gallery-slider .swiper-slide > .name {
    bottom: 5px;
    left: 5px;
    font-size: 1.0rem;
  }
  .gallery-thumbs {
    width: 100%;
    padding: 0;
    overflow: hidden;
    background: rgba(0, 0, 0, 0);
  }
  .gallery-thumbs .swiper-slide {
    width: 75px;
    height: 50px;
  }
}

.swiper-button-prev,
.swiper-button-next {
  width: 30px;
  height: 48px;
  background-size: 30px 48px;
  margin-top: -15px;
  opacity: 0.3;
}

/* 次ページボタンのスタイル */
.swiper-button-next {
  background-image: url(../../img/slide_arrow.svg);
}

/* 前ページボタンのスタイル */
.swiper-button-prev {
  background-image: url(../../img/slide_arrow.svg);
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
  /* 左右反転 */
}

/*////////////////////////////
UTILITY
////////////////////////////*/
/* 共通フッター用 もしくはブレイクポイントごとの表示指定 */
.pc {
  display: block;
}

.sp {
  display: none;
}

@media (max-width: 800px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}

.cover {
  display: none;
}

.cover > span {
  padding-top: 10px;
  font-size: 1.2rem;
}

@media only screen and (orientation: portrait) {
  .cover {
    position: fixed;
    top: 0;
    left: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column;
            flex-flow: column;
    width: 100%;
    height: 100vh;
    background: white;
    z-index: 1000;
  }
}
/*# sourceMappingURL=style.css.map */