/* -------------------------------
PC用のレイアウト（768px以上のスクリーン）
----------------------------------*/
/* -------------------------------
共通設定（PC）
----------------------------------*/
body {
  font-size: 62.5%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: normal;
  color: #000;
}
a {
  text-decoration: underline;
}
a:link, a:visited {
  color: #39f;
}
a:hover, a:active {
  color: #f60;
  opacity: 0.9;
}
/* ブラウザのCSSをリセット */
p {
  margin: 0 !important;
  padding: 0 !important;
}
/* -------------------------------
 全体レイアウト/背景設定（PC）
 ----------------------------------*/
.main {
  background-image: url("../images/bg_main_in.png");
}
/* 記事（ボディエリア） */
.article {
  background-color: #fff;
  box-shadow: 0 0 10px #8f8f8f;
  font-size: 1.6em;
}
/* 記事（ボディエリア）の行間 */
.article p {
  line-height: 1.6;
}
.article img {
  width: 100%;
}
.article {
  width: 700px;
  margin: 0 auto;
}
.btn_area {
  background-color: #f9f5f2;
  padding: 0.5em 6.2em 1em;
}
.scroll_btn {
  animation-name: fuwafuwa;
  animation-duration: 2s;
  animation-iteration-count: infinite;
}
@keyframes fuwafuwa {
  0% {
    transform: translate(0, 0px);
  } /*X軸とY軸*/
  50% {
    transform: translate(0, -13px);
  }
  100% {
    transform: translate(0, 0px);
  }
}
/* -------------------------------
フッターエリアの設定
----------------------------------*/
.footer {
  background-color: #213345;
  padding: 2em 0em;
  text-align: center;
  color: #fff;
  font-size: 1.4em;
}
.footer a {
  color: #fff;
}