@charset "UTF-8";
/* PC用設定 ーーーーーーーーーーーーーーーーーーーーーーーーーーーーーーー */
:root {
  --font-mincho: "Yu Mincho", "Hiragino Mincho ProN", "serif";
  --font-gothic: "hiragino-kaku-gothic-pron", sans-serif;
  --main-color: 89, 87, 87;
  --point-color: 114, 113, 113;
  --brand-color: 8, 51, 123;
}
* {
  box-sizing: border-box;
  font-feature-settings: "palt";
  padding: 0;
}
body {background-color: black;}

main {
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  font-family: var(--font-gothic);
  color: rgba(var(--main-color), 1);
  text-align: center;
}
.annotation {
  font-family: var(--font-gothic);
}
.pc_hidden {display: none;}

.annotation span:not(:last-of-type) {
  margin-right: 1em;
}

/* ↓ product ↓ ------------------------------------------------------------------ */
#product {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
}







/* ↓ return ↓ --------------------------------------------------- */
#return {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: grid;
  z-index: 100;
}
#return div {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(var(--brand-color), 1);
  display: grid;
  align-items: center;
}
#return p {
  text-align: center;
  color: white;
  font-size: 15px;
  line-height: 1.3em;
  letter-spacing: 0.05em;
  margin-top: 3px;
}
#return p span {display: block;}


@media screen and (min-width: 1401px) {
/*
  #bc_logo {margin-left: calc((100% - 1401px) / 2 + 20px);}
  .menu-btn {right: calc((100% - 1401px) / 2 + 20px);}
*/
  #return {right: calc((100% - 1401px) / 2 + 30px);}
}