@charset "utf-8";
/* CSS Document */
/*---------------
pc版レイアウト（768px以上スクリーン）
----------------*/
/*---------------
共通設定（pc）
----------------*/
/*body全体の初期スタイル調整*/
body {
  font-size: 62.5%;
  font-family: "Noto Sans JP", sans-serif;
  min-height: 100vh;
  margin: 0 auto;
  font-weight: normal;
  color: #000;
}

/*リンク文字の設定*/
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
}
/*ブラウザのcssリセット*/
p {
  margin: 0 !important;
  padding: 0 !important;
}
/*セクションエリアの共通設定*/
section {
  clear: both;
  overflow: auto;
}

/*---------------
全体レイアウト/背景設定（pc）
----------------*/
/*記事（body）エリア*/
.wrapOuter {
  background-color: #fff;
  font-size: 1.6em; /*16px*/
}
/*記事（body）エリアの行間*/
.wrapOuter p {
  line-height: 1.6;
}
/*カラム全体の幅を変更する*/
.wrapOuter, .wrapInner, .fv_in {
  width: 1080px;
  margin: 0 auto; 
}
.pc {
}
.sp {
	display: none;
}

.btnArea {
  position:relative;
}
.btn p{
  position: absolute;
  top: 77%;
  left: 50%;
  -ms-transform: translate(-50%,-50%);
  -webkit-transform: translate(-50%,-50%);
  transform: translate(-50%,-50%);
}
.anim-box.poyopoyo {
  animation: poyopoyo 2s ease-out infinite;
  opacity: 1;
}
@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1.0);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
/*---------------
footer部分
----------------*/
.footer {
  background-color: #000;
  padding: 2em 0em;
  text-align: center;
  font-size: 1.4em;
  color: #ffff;
}
.footer a {
  color: #fff;
}