html, body {
  padding: 0;
  margin: 0;
}

html {
  min-height: 100%;
  position: relative;
}

body {
  font-family: 游ゴシック体, 'Yu Gothic', YuGothic, 'ヒラギノ角ゴシック Pro', 'Hiragino Kaku Gothic Pro', メイリオ, Meiryo, Osaka, 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  display: flex;
  flex-flow: column;
  width:100%;
  height:100%;
  overflow-x: hidden;
}

header {
  position: relative;
  padding-top: 10px;
  padding-bottom: 6px;
  width:100%;
  background:#513a90;
  margin-bottom: 15px;
}

main {
  flex: 1;
  min-height: 100vh;
  margin-bottom:50px;
}

footer  {
  text-align:center;
  background:#513a90;
  padding:10px 0;
}

footer *{
  color: #FEFEFE;
}

footer p  {
  font-size:11px;
}

footer ul{
  display: flex;
  justify-content: center;
  list-style:none;
}

nav{
  position: relative;
  display: flex;
  justify-content: center;
  list-style: none;
}
nav *{
  color: #FEFEFE;
}

nav a{
  margin: 0.4rem 1rem;
  font-size: 1.2rem;
  font-weight: bold;
  margin-right: 20px;
  text-decoration: none;
}

#viewCart{
  position: relative;
}
#viewCart .cartBadge{
  position:absolute;
  right:-1rem;
  top:-4px;
  background: #ff0000;
  padding:1px 4px;
  font-size:1rem;
  border-radius: 50%;
}

/*全体*/
.container {
  width:82%;
  margin:10px auto;
}

/*メディアクエリ　タブレット・スマホ*/
@media screen and (max-width:900px) {
  .container {
    width:100%;
  }
} /*メディアクエリ終わり*/
