body,.wrapper{
  width: 100%;
}
img{
  width: 100%;
}
.container{
  padding: 5%;
  margin: auto;
}
.content{
  margin-bottom: 24px;
}
.bb-1{
  border-bottom: solid 1px #aaa;
}
.footer{
  text-align: center;
  color: #fff;
  padding: 10px;
  background: #000;
}
.font-size-nomal{
  font-size: 0.75rem;
}
@media (min-width: 480px) {
  .font-size-nomal{
    font-size: 0.875rem;
  }
}
@media (min-width: 768px) {
  .font-size-nomal{
    font-size: 1rem;
  }
}
@media (min-width: 1240px) {
  .content{
    width: 1240px;
    margin: auto;
    margin-bottom: 24px;
  }
}

/******** header ********/
header{
  margin: 0;
  padding: 0;
  width: 100%;
  background: #fff;
  filter: drop-shadow(0px 3px 3px rgba(0,0,0,0.3));
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
}
.header-inner{
  width: 98%;
  margin: 10px auto;
  display: flex;
  justify-content: space-between;
  box-sizing: border-box;
}
.shop-logo{
  width: 20%;
  box-sizing: border-box;
}
nav{
  width: 80%;
  box-sizing: border-box;
}
nav ul{
  display: flex;
  justify-content: flex-end;
  font-family: 'Oswald', sans-serif;
  margin-top: 5px;
}
nav ul li{
  margin: 0 0.6rem;
  position: relative;
}
nav ul li a{
  color: #333;
  font-size: 12px;
  transition: all 0.3s ease-out;
}
nav ul li a:hover{
  color: #ccc;
  text-decoration: none;
}
nav ul li::before{
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #5bc0de;
  border-right: solid 2px #5bc0de;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: -0.5rem;
  margin-top: -3px;
}
@media (min-width: 768px) {
  .header-inner{
    margin: 24px auto;
  }
  .shop-logo{
    width: 15%;
  }
  nav{
    width: 85%;
  }
  nav ul li{
    margin: 0 1rem;
  }
  nav ul li a{
    font-size: 14px;
  }
}

/******** ボタン各種 ********/
/* 黒ボタン デフォルトは白文字*/
a.btn-01{
  font-size: 13px;
  width: 160px;
  padding: 8px 4px;
  margin: 16px 0 36px 0;
  display: block;
  box-sizing: border-box;
  border-radius: 2px;
  background: #e32027;
  text-align: center;
  text-decoration: none;
  color: #fff;
  position: relative; /* ボタン内アイコン用 */
  transition: all 0.5s ease-out;
}
a.btn-01::before{
  content: '';
  width: 6px;
  height: 6px;
  border-top: solid 2px #5bc0de;
  border-right: solid 2px #5bc0de;
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  left: 10px;
  margin-top: -4px;
}
a.btn-01:hover{
  background: #999;
}

/******** コンテナのフェード  ********/
.effect-fade{
  opacity : 0;
  transform : translate(0, 45px);
  transition : all 2000ms;
}
.effect-fade.effect-scroll{
  opacity : 1;
  transform : translate(0, 0);
}