@charset "UTF-8";

/* 共通部分
------------------------------- */

html {
    font-size: 100%;
    margin-top: 0px;
}

body{
    font-family: "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "ヒラギノ角ゴ Pro W3", sans-serif;
    line-height: 1.7;
    color: #000000;
    margin-top: 0px;
    padding-top: 0px;
    margin-bottom: 0px;
}

a {
    text-decoration: none;
}
img {
    max-width: 100%;
}


.top {
  height: 100vh;
}
.title {
  text-align: center;
  line-height: 100vh;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  overflow-x: hidden;
}
.top {
  height: 100vh;
}
.title {
  text-align: center;
  line-height: 100vh;
}
@media screen and (min-width:481px) {
  .title {
    font-size: 2rem;
  }
}
/* ブロック共通初期設定 */
.scroll-block {
    width: 1000px;
    height: 100px;
    margin: 0 auto 0px;
    line-height: 49px;
    text-align: left;
    background-color: #ffffff;
    font-size: 2.4rem;
    font-family: YuGothic, "Yu Gothic medium", "Hiragino Sans", Meiryo, sans-serif;
    font-weight: bold;
    text-shadow: 1px 1px #D4D4D4;
    color: #5A5A5A;
}
/* ----------パターン1：透明度が変化---------- */
/* 画面外 */
.fade-block1 {
  opacity: .1;
  transition: all 1.5s;
}
/* 画面に入った時の動き */
.fade-block1.blockIn {
  opacity: 1;
}
