body {
  /*フォントの指定*/
  font-family: 'メイリオ', 'Meiryo', 'ヒラギノ角ゴ Pro', 'Hiragino Kaku Gothic Pro', 'Noto Sans Japanese', Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  /*サイト全体のフォントサイズを指定*/
  font-size: 14px;
  /*行間の指定*/
  line-height: 2em;
  /*サイト全体にかかるmarginをリセット*/
  margin: 0 auto;
  /*サイト全体にかかるpaddingをリセット*/
  padding: 0;
  /*サイトのデフォルトとなる文字の色を指定*/
  color: #333333;
  height: 100%;
}

a {
  text-decoration: none;
  color: #ffffff;
  }

/* 大枠ボックス */
.layer{
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  margin: 0 auto;
}

/* 背景画像の読み込み */
.layer-bg{
  background: no-repeat 0 0;
  background-image: url("top.jpg");
  background-size: 100%;
  height: 100%;
}

/* 背景画像SP非表示 */
@media screen and (max-width: 600px) {
  .layer-bg{
    height: 400px;
 }

 a {
  text-decoration: none;
  color: #333333;
  }
}

/* 重ねる文字の基本設定 */
.layer-txt{
  text-shadow: 1px 1px 4px rgba(0,0,0,0.4);
  color: #ffffff;
  letter-spacing: 0.4rem;
  padding: 20px;
}

/* SP非表示設定 */
@media screen and (max-width: 600px) {
  .layer-txt {
    font-size: 1rem;
    padding-top: 300px;
    color: #333333;
    text-shadow: none;
  }
  .text {
    font-size: 12px !important;
    letter-spacing: 0 !important;
  }
}

/* PC表示設定 */
@media screen and (min-width: 601px) {
  .layer-txt{
    font-size: 2rem;
    padding: 20px;
  }
}

h2 {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
}

.text {
  font-family: "游明朝", YuMincho, "ヒラギノ明朝 ProN W3", "Hiragino Mincho ProN", "HG明朝E", "ＭＳ Ｐ明朝", "ＭＳ 明朝", serif;
  font-size: 14px;
}

.btn-circle-fishy {
  display: inline-block;
  text-decoration: none;
  color: #FFF;
  width: 120px;
  height: 120px;
  line-height: 120px;
  border-radius: 50%;
  text-align: center;
  overflow: hidden;
  background-image: linear-gradient(45deg, #709dff 0%, #91fdb7 100%);
  transition: .4s;
}

.btn-circle-fishy:hover {
  -webkit-transform: rotate(10deg);
  transform: rotate(10deg);
}