/************************************/
/*共通*/
/************************************/
* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'M PLUS Rounded 1c', sans-serif;
}

/*ニュース font*/
@font-face {
 font-family: "RockSalt";
 src:url("../font/RockSalt-Regular.ttf");
}
@font-face {
 font-family: "azukifont";
 src: url("../font/azukiB.woff") format("woff"),
 url("../font/azukiB.woff2") format("woff2"),
 url("../font/azukiB.ttf") format("truetype"),
 url("../font/azukiB.eot");
}

body {
  background-color: #FFF;
  animation: loadBg-anime 1s 1s forwards;
  animation: bg-color 60s 1s infinite;
  position:relative;
}

@keyframes bg-color {
  0% { background-color: #FFF; }
  2% { background-color: #92cfe8; }
  30% { background-color: #91CFC2; }
  60% { background-color: #C6CF5D; }
  100% { background-color: #f0c684; }
}

@keyframes loadBg-anime {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

a{
  color: #500404;
　text-decoration: none;
}

/* 下からふわっと出現*/
.fadein {
  opacity : 0;
  transform: translateY(100px);
  transition: all 1s;
}

/************************************/
/*ヘッダー*/
/************************************/
#header {
    width: 100%;
    height: 83px;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
/*タイトルロゴ*/
#titleLogo {
    width: 19%;
    position: absolute;
    top: 34px;
    left: 45px;
    cursor: pointer; 
    opacity: 0;
    animation: fadein-anime 1s 1s forwards;
    
}
#titleLogo a img{
    width: 100%;
}
#titleLogo a{
    display: inline-block;
}
/*メニュー*/
#menuUl {
    width: 80%;
    position: absolute;
    top: 45px;
    right: 42px;
    list-style: none;
    text-align: right;
    color: #500404;
    font-weight: 700;
    font-size: 18px;
    opacity: 0;
    animation: fadein-anime 1s 1.5s forwards;
}
#menuUl li{
    display: inline-block;
    margin-left: 28px;
}
#menuUl li:hover{
    animation: menu-hover-anime .3s;
}

@keyframes menu-hover-anime {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1
    }
}
@keyframes fadein-anime {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0px);
  }
}
/************************************/
/*フッター*/
/************************************/
#footerDiv {
    margin-top: 500px;
    width: 100%;
    height: 200px;
    background-color: #500404;
    color: #FFF;
    text-align: center;
}
/*TOPへ戻るボタン*/
.toTop {
    width: 90px;
    height: 90px;
    background-color: #FFF;
    border-radius: 50%;
    position: absolute;
    bottom: 230px;
    right: 30px;  
    cursor: pointer; 
    transition-duration: 0.5s;

}
/*TOPへ戻るボタン ホバー*/
.toTop:hover {
     background-color:rgba(255,255,255,0.4);
}
/*TOPへ戻るボタンの矢印 棒*/
.toTop span {
  position: absolute;
  right: 39px;
  top: 27px;
  width: 10px;
  height: 40px;
  border-radius: 5px;
  background-color: #004d61;
  animation: toTop-anime 1s alternate infinite;
}

/*TOPへ戻るボタンの矢印 三角屋根左*/
.toTop span::after {
  position: absolute;
  right: 0px;
  top: 2px;
  content: "";
  width: 25px;
  height: 10px;
  border-radius: 5px;
  background-color: #5bd1d7;
  transform: rotate(-45deg);      
}

/*TOPへ戻るボタンの矢印 三角屋根右*/
.toTop span::before {
  position: absolute;
  right: -13px;
  top: 1px;
  content: "";
  width: 26px;
  height: 10px;
  border-radius: 5px;
  background-color: #ff502f;
  transform: rotate(45deg);
  z-index: 99;
}
    
@keyframes toTop-anime {
    0% {
        transform: none;
    }
    100% {
        transform: translateY(-8px);
    }
}

#copyright {
    width: 100%;
    text-align: center;
    margin-top: 30px;
    font-size: 15px;
    letter-spacing: 0.25em;
}
.snsLink{
    width: 80px;
    height: 80px;
/*    background-color: #FFF;*/
    border-radius: 50%;
    display: inline-block;
    margin-top: 40px;
    cursor: pointer;  
    
}
.snsLink img{
    width: 80px;
    height: 80px;
}
.snsLink img:hover{
    animation: sns-icon-anime .3s;
}
@keyframes sns-icon-anime {
    0% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
    100% {
        opacity: 1
    }
}
/************************************/
/*ただいま作成中*/
/************************************/
.comingSoon {
    font-size: 28px;
    color: #FFF;
    opacity: 0.5;
}
