@charset "UTF-8";
html *,
::before,
::after {
  box-sizing: border-box;
}

body {
  font-family: "Hiragino Kaku Gothic ProN","Roboto","Droid Sans","YuGothic","游ゴシック","Meiryo","メイリオ",Verdana,"ＭＳ Ｐゴシック",sans-serif;
  font-weight: 500;
  color: #2f2c2b;
  font-size: 14px;
  animation: bodyfadeIn 2s ease 0s 1 normal;
  -webkit-animation: bodyfadeIn 2s ease 0s 1 normal;
  font-feature-settings: "palt";
}
p {
  font-size: 17px;
  line-height: 1.7;
}

a {
  color: #2f2c2b;
  text-decoration:none;
}

.trans {
  transition: all 0.3s;
}

.trans:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.wrap {
  max-width: 1100px;
  width: 90%;
  margin: auto;
}

.spv {
  display: none;
}

@keyframes bodyfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@-webkit-keyframes bodyfadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@media (min-width: 1px) and (max-width: 960px) {
  .trans:hover {
    opacity: 1;
  }
}
@media (min-width: 1px) and (max-width: 767px) {
  .pcv {
    display: none;
  }
  .spv {
    display: block;
  }
  p {
    font-size: 14px;
  }
  a {
    font-size: 14px;
  }
}
