@charset "UTF-8";
nav.NavMenu ul {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

nav.NavMenu ul li {
  font-size: 18px;
  list-style-type: none;
  width: 100%;
  padding-bottom: 0px;
  letter-spacing: 1px;
}

nav.NavMenu ul li:last-child {
  padding-bottom: 0;
}

nav.NavMenu ul li a {
  display: block;
  color: #333;
  padding: 15px 0;
  font-weight: bold;
  font-size: 18px;
}

/*ボタンのスタイル*/
.Toggle {
  position: fixed;
  right: 10px;
  top: 1.5%;
  width: 45px;
  height: 45px;
  cursor: pointer;
  z-index: 9998;
  display: block;
}

.Toggle span {
  display: block;
  position: absolute;
  width: 21px;
  border-bottom: solid 2px #808080;
  transition: 0.35s ease-in-out;
  left: 6px;
}

.Toggle span:nth-child(1) {
  top: 13px;
}

.Toggle span:nth-child(2) {
  top: 20px;
}

.Toggle span:nth-child(3) {
  top: 27px;
}

.Toggle.active span:nth-child(1) {
  top: 18px;
  left: 6px;
  transform: rotate(-45deg);
  border-bottom: solid 3px #808080;
}

.Toggle.active span:nth-child(2),
.Toggle.active span:nth-child(3) {
  top: 18px;
  transform: rotate(45deg);
  border-bottom: solid 3px #808080;
}

/*=== 画像の設定 ======================================= */
.slide img {
  display: block;
  position: absolute;
  width: 100%;
  height: auto;
  opacity: 0;
  -webkit-animation: slideAnime 20s ease infinite;
          animation: slideAnime 20s ease infinite;
  -o-object-position: center;
     object-position: center;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 768px) {
  .slide img {
    height: 100vh;
  }
}

/*=== スライドのアニメーションを段差で開始する ========= */
.slide img:nth-of-type(1) {
  -webkit-animation-delay: 0s;
          animation-delay: 0s;
}

.slide img:nth-of-type(2) {
  -webkit-animation-delay: 4s;
          animation-delay: 4s;
}

.slide img:nth-of-type(3) {
  -webkit-animation-delay: 8s;
          animation-delay: 8s;
}

.slide img:nth-of-type(4) {
  -webkit-animation-delay: 12s;
          animation-delay: 12s;
}

.slide img:nth-of-type(5) {
  -webkit-animation-delay: 16s;
          animation-delay: 16s;
}

/*=== スライドのアニメーション ========================= */
@-webkit-keyframes slideAnime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  23% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
@keyframes slideAnime {
  0% {
    opacity: 0;
  }
  5% {
    opacity: 1;
  }
  23% {
    opacity: 1;
  }
  25% {
    opacity: 0;
  }
  100% {
    opacity: 0;
  }
}
body, html {
  font-family: "PT Sans", sans-serif;
  color: #808080;
}
@media (min-width: 768px) {
  body, html {
    margin: 0 7%;
  }
}

header h1 {
  font-size: 1.6rem;
  letter-spacing: 4px;
  text-align: center;
  margin-top: 4.8%;
}
@media (min-width: 768px) {
  header h1 {
    margin-top: 3%;
  }
}

nav.NavMenu {
  position: fixed;
  z-index: 9997;
  top: 0;
  left: 0;
  background: #fff;
  text-align: center;
  width: 100%;
  height: 100%;
  display: none;
}

.title {
  text-align: center;
  margin: 150px 0 80px 0;
  letter-spacing: 2px;
}

.collects {
  align-items: center;
}
.collects img {
  width: 100%;
  height: auto;
  margin-bottom: 10px;
}
.collects .collects-pc {
  display: none;
}
.collects .cimg {
  display: block;
  width: 60%;
  margin: 0 auto 10px auto;
}
.collects .set {
  display: flex;
  align-items: flex-end;
}

@media (min-width: 1024px) {
  .collects .collects-pc {
    display: block;
  }
  .collects .collects-sp {
    display: none;
  }
  .collects img {
    margin-bottom: 15px;
  }
  .collects .cimg {
    width: 70%;
    margin-bottom: 15px;
  }
}

footer {
  margin: 40px 0;
  text-align: center;
  font-size: 12px;
  letter-spacing: 1px;
}
footer img {
  width: 15px;
  margin-bottom: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=collection.css.map */