body,.wrapper{
  width: 100%;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 500;
}
img{
  width: 100%;
}
/******** body ********/
body{
  color: #111;
}
p{
  font-size: 14px;
}
a{
  color: #000;
}

/******** container ********/
.container{
  padding: 48px 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) {
  p{
    font-size: 16px;
  }
  .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: 40%;
  box-sizing: border-box;
}
nav{
  box-sizing: border-box;
  width: 15%;
}
@media (min-width: 768px) {
  .header-inner{
    margin: 24px auto;
  }
  .shop-logo{
    width: 15%;
  }
  nav{
    box-sizing: border-box;
    width: 8%;
  }
}
@media (min-width: 960px) {
  nav{
    box-sizing: border-box;
    width: 6%;
  }
}

/******** ボタン各種 ********/
/* 黒ボタン デフォルトは白文字*/
a.btn-01{
  font-size: 16px;
  font-weight: bold;
  padding: 8px 4px;
  margin: 16px 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;
  border-radius: 5px;
}
/*a.btn-01::before{
  content: '';
  width: 8px;
  height: 8px;
  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;
}

/******** line-up ********/
ul.lineup-card-list{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
ul.lineup-card-list li{
  box-sizing: border-box;
  width: 48%;
  margin-bottom: 20px;
  transition: ease-out 0.5s all;
  line-height: 0;
}
ul.lineup-card-list li a:hover{
  opacity: 0.5;
}
.onlineshop-link{
  display: flex;
  align-items: center;
  text-align: center;
}
.onlineshop-link a{
  margin: auto;
}
@media screen and (min-width: 960px){
  ul.lineup-card-list li{
    width: 32%;
    margin-bottom: 40px;
  }
}
/******** コンテナのフェード  ********/
.effect-fade{
  opacity : 0;
  transform : translate(0, 100px);
  transition : all 500ms;
}
.effect-fade.effect-scroll{
  opacity : 1;
  transform : translate(0, 0);
}
/******** ぼかしエフェクト  ********/
.blur{
  -ms-filter: blur(20px);
    filter: blur(20px);
  transition : all 1500ms;
}
.blur.blur-scroll{
  -ms-filter: blur(0);
    filter: blur(0);
}
