@charset "UTF-8";
html *,
::before,
::after {
  box-sizing: border-box;
}

/* 7/26変更 */
body {
  /* font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'Meiryo', 'メイリオ', 'Osaka', 'MS PGothic', arial, helvetica, sans-serif;
  font-family: "Noto Sans JP", sans-serif; */
  font-family: "Ubuntu";
  font-size: 0.7rem;
  color: #111111;
  animation: bodyfadeIn 1.5s ease 0s 1 normal;
  -webkit-animation: bodyfadeIn 1.5s ease 0s 1 normal;
}
p {
  font-size: 0.8rem;
  line-height: 1.7;
}

a {
  color: #111111;
  text-decoration:none;
}

.trans {
  transition: all 0.3s;
  font-family: "Ubuntu";
  font-size: 16px;
}

.trans:hover {
  opacity: 0.5;
  transition: all 0.3s;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
	pointer-events: none;
}

.wrap {
  max-width: 1200px;
  width: 100%;
  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: 1200px) {
  .wrap {
    width: 90%;
  }
}
@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;
  }
}
