/************************************/
/*共通*/
/************************************/
* {
    margin:0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'M PLUS Rounded 1c', sans-serif;
    text-decoration: none;
    overscroll-behavior-x: none !important;
}

/*ニュース 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;
  position: relative;
  animation: loadBg-anime 1s 1s forwards;
  animation: bg-color 60s infinite;
}

@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;
    }
}

/* 下からふわっと出現*/
.fadein {
  opacity : 0;
  transform: translateY(100px);
  transition: all 1s;
}

/************************************/
/*ヘッダー*/
/************************************/
#header {
    width: 100%;
    height: 60px;
    background-color: #FFF;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
}
/*タイトルロゴ*/
#titleLogo {
    width: 30%;
    position: absolute;
    top: 20px;
    left: 20px;
    left: 20px;
    cursor: pointer; 
    opacity: 0;
    animation: fadein-anime 1s 1.5s forwards;
}
#titleLogo a img{
    width: 100%;
}
#titleLogo a{
    display: inline-block;
}
@keyframes fadein-anime {
  0% {
      opacity: 0;
      transform: translateY(50px);
  }
  100% {
      opacity: 1;
      transform: translateY(0px);
  }
}
/************************************/
/*ハンバーガーメニュー*/
/************************************/
/*メニュー*/
/*　ハンバーガーボタン　*/
.hamburger {
  display : block;
  position: fixed;
  z-index : 3;
  right : 13px;
  top   : 12px;
  width : 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
.hamburger span {
  display : block;
  position: absolute;
  width   : 30px;
  height  : 4px ;
  left    : 6px;
  border-radius: 4px; 
  background : #b9bdb3;
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition   : 0.3s ease-in-out;
  transition        : 0.3s ease-in-out;
}
.hamburger span:nth-child(1) {
  top: 10px;
}
.hamburger span:nth-child(2) {
  top: 20px;
}
.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  top : 16px;
  left: 6px;
  background :#fff;
  z-index : 1001;
  -webkit-transform: rotate(-45deg);
  -moz-transform   : rotate(-45deg);
  transform        : rotate(-45deg);
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  top: 16px;
  background :#fff;
  z-index : 1001;
  -webkit-transform: rotate(45deg);
  -moz-transform   : rotate(45deg);
  transform        : rotate(45deg);
}

nav.globalMenuSp {
  position: fixed;
  z-index : 2;
  top  : 0;
  left : 0;
  color: #FFF;
  background-color:rgba(255,255,255,0.4);
  text-align: left;
  transform: translateX(100%);
  transition: all 0.6s;
  width: 100%;
  height: 100vh;
}

nav.globalMenuSp ul {
  margin: 60px 10px;
  padding: 0;
  width: 100%;
  font-size: 10px;
  letter-spacing: 0.1em;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
}
nav.globalMenuSp ul li:last-child {
  padding-bottom: 3px;
}

nav.globalMenuSp ul li:hover{
   background-color:rgba(255,255,255,0.4);
}

nav.globalMenuSp ul a li {
  display: block;
  color: #FFF;
  padding: 2.5em 5px;
  text-decoration :none;
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateX(70%);
/*#4f574d*/
  background-color:rgba(79,89,77,0.4);
}

/************************************/
/*フッター*/
/************************************/
#footerDiv {
    margin-top: 80px;
    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: relative;
    margin: 200px auto 0;
    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: 22px;
    color: #FFF;
    opacity: 0.5;
    margin-top: -15px;
}
