@charset "UTF-8";
body {
  width: 100%;
  position: relative;
  min-width: 320px;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 24px;
  font-size: 3.2vw;
  font-weight: 400;
  color: #68392a;
  line-height: 1.5;
  -webkit-text-size-adjust: 100%;
  text-align: justify;
  overflow: hidden;
}
body a {
  color: #000;
  text-decoration: none;
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}

img {
  width: 100%;
  max-width: 100%;
  height: auto;
}

.viewPc {
  display: none !important;
}

.btn .off {
  opacity: 0.5;
}

@media print, screen and (min-width: 751px) {
  body {
    width: 100%;
    font-size: 1.6rem;
  }

  body a[href^="tel:"] {
    pointer-events: none;
  }

  body a:hover {
    -webkit-animation: btn 0.5s;
    animation: btn 0.5s;
    opacity: 0.8;
  }

  .viewSp {
    display: none !important;
  }

  .viewPc {
    display: block !important;
  }
}
/*=============================================================
 01_base
=============================================================*/
/*=============================================================
 02_layout
=============================================================*/
/*!  main
================================================ */
main {
  position: relative;
}

main::before {
  display: block;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: url(../images/global/bg.png) no-repeat 50% 50%/100% auto;
  z-index: -1;
}

/* .kv
-------------------------------------------------*/
.kv {
  position: relative;
  width: 100%;
  height: 211.8666666667vw;
  margin-bottom: 3.3333333333vw;
}
.kv .chara {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 164.6666666667vw;
  z-index: 1;
}
.kv h1 {
  position: absolute;
  top: 81.6vw;
  left: 4.2666666667vw;
  width: 93.6%;
  z-index: 10;
  opacity: 0;
}
.kv h1.on {
  -webkit-animation: fadeIn 0.8s ease-out 0.6s forwards;
          animation: fadeIn 0.8s ease-out 0.6s forwards;
}
.kv .catch01 {
  position: absolute;
  top: 2.1333333333vw;
  left: 1.3333333333vw;
  width: 31.8666666667%;
  z-index: 10;
  opacity: 0;
}
.kv .catch01.on {
  -webkit-animation: bounceIn ease-in 1s forwards;
          animation: bounceIn ease-in 1s forwards;
}
.kv .catch02 {
  position: absolute;
  top: 0.5333333333vw;
  right: 0.6666666667vw;
  width: 32.5333333333%;
  z-index: 10;
  opacity: 0;
}
.kv .catch02.on {
  -webkit-animation: bounceIn ease-in 1s forwards;
          animation: bounceIn ease-in 1s forwards;
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}
.kv .release {
  position: absolute;
  top: 23.3333333333vw;
  left: 3.6vw;
  width: 22.6666666667%;
  z-index: 10;
  opacity: 0;
}
.kv .release.on {
  -webkit-animation: fadeIn 0.8s ease-out 0.6s forwards;
          animation: fadeIn 0.8s ease-out 0.6s forwards;
}
.kv .author {
  position: absolute;
  top: 117.7333333333vw;
  left: 5.0666666667vw;
  width: 22.5333333333%;
  z-index: 10;
  opacity: 0;
}
.kv .author.on {
  -webkit-animation: fadeIn 0.8s ease-out 0.6s forwards;
          animation: fadeIn 0.8s ease-out 0.6s forwards;
}
.kv .box-cover {
  width: 92%;
}
.kv .box-cover .cover {
  position: absolute;
  top: 107.8666666667vw;
  right: 2.6666666667vw;
  width: 42.2666666667%;
  border: 6px solid #fff;
  z-index: 10;
  opacity: 0;
}
.kv .box-cover .cover img {
  border: 2px solid #ff9900;
}
.kv .box-cover .cover.on {
  -webkit-animation: fadeIn 0.8s ease-out 0.6s forwards;
          animation: fadeIn 0.8s ease-out 0.6s forwards;
}
.kv .box-cover .btn {
  position: absolute;
  top: 134.6666666667vw;
  left: 6.1333333333vw;
  width: 43.3333333333%;
  z-index: 10;
  opacity: 0;
}
.kv .box-cover .btn li:first-child {
  margin-bottom: 3.0666666667vw;
}
.kv .box-cover .btn.on {
  -webkit-animation: fadeIn 0.8s ease-out 0.6s forwards;
          animation: fadeIn 0.8s ease-out 0.6s forwards;
}
.kv .catch03 {
  position: absolute;
  top: 169.7333333333vw;
  left: 5.6vw;
  width: 90%;
  z-index: 10;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  40% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -10px, 0);
  }
  75% {
    opacity: 1;
    transform: translate3d(0, 5px, 0);
  }
  90%, 100% {
    opacity: 1;
    transform: none;
  }
}
@keyframes bounceInDown {
  0%, 100%, 60%, 75%, 90% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  40% {
    opacity: 1;
    transform: translate3d(0, 25px, 0);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -10px, 0);
  }
  75% {
    opacity: 1;
    transform: translate3d(0, 5px, 0);
  }
  90%, 100% {
    opacity: 1;
    transform: none;
  }
}
@-webkit-keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
/* .navigation
-------------------------------------------------*/
nav {
  margin-bottom: 8vw;
}

.navigation-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 13.6vw;
  background: #967361;
  /*  padding: 0 0 mixin.vw(26);*/
}

.menu01 {
  margin-bottom: 1.3333333333vw;
}
.menu01 li:first-child {
  width: 21.6%;
  margin-right: 5.3333333333vw;
}
.menu01 li:nth-child(2) {
  width: 25.7333333333%;
  margin-right: 5.3333333333vw;
}
.menu01 li:last-child {
  width: 25.8666666667%;
}

.menu02 li:first-child {
  width: 17.6%;
  margin-right: 8.4vw;
}
.menu02 li:last-child {
  width: 17.6%;
}

/* .pv
-------------------------------------------------*/
.pv {
  background: url("../images/pv/sp/bg01.png");
  padding: 4.2666666667vw 0 10.8vw;
}
.pv h2 {
  width: 78.6666666667%;
  margin: 0 auto 3.7333333333vw;
}
.pv .comingsoon {
  width: 68.8%;
  margin: 0 auto;
}
.pv .movie {
  position: relative;
  width: auto;
}

.pv .movie .movieSlider {
  position: static;
  width: 92vw;
  margin: 0 auto;
}

.pv .movie .movieSlider .slick-list {
  /*overflow: hidden;*/
  overflow: visible;
}

.pv .movie .movieSlider .item {
  position: relative;
  font-size: 0;
  text-align: center;
  margin: 0 1.3333333333vw;
}

.pv .movie .movieSlider .item a {
  display: inline-block;
  position: relative;
  border: 2px solid #ffd861;
}

.pv .movie .movieSlider .item a::after {
  display: block;
  position: absolute;
  content: "";
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 62px;
  height: 62px;
  margin: -31px 0 0 -31px;
  background-image: url(../images/pv/play.png);
  background-size: 62px;
  transition: all 0.2s ease;
}

.pv .movie .movieSlider .item a:hover::before {
  opacity: 0;
}

.pv .movie .movieSlider .item a:hover::after {
  opacity: 0;
  transform: scale(1.1);
}

.pv .movie .movieSlider .slick-prev {
  overflow: hidden;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  top: 50%;
  left: 0;
  width: 44px;
  height: 111px;
  margin-top: -55px;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  background-image: url(../images/pv/arrow.png);
  background-color: transparent;
  background-size: 44px 111px;
  text-indent: 100%;
  white-space: nowrap;
  transition: all 0.3s ease;
}

.pv .movie .movieSlider .slick-prev:hover {
  opacity: 0.7;
}

.pv .movie .movieSlider .slick-next {
  overflow: hidden;
  position: absolute;
  cursor: pointer;
  z-index: 2;
  top: 50%;
  right: 0;
  width: 44px;
  height: 111px;
  margin-top: -55px;
  padding: 0;
  border: none;
  outline: none;
  -webkit-appearance: none;
  background-image: url(../images/pv/arrow.png);
  background-color: transparent;
  background-size: 44px 111px;
  text-indent: 100%;
  white-space: nowrap;
  transform: scale(-1, 1);
  transition: all 0.3s ease;
}

.pv .movie .movieSlider .slick-next:hover {
  opacity: 0.7;
}

.pv .movie .movieSlider .item img {
  width: 100%;
}

.tos-wrapper.tos-fixed {
  background-color: rgba(68, 39, 31, 0.85) !important;
}

/*モーダルの背景色を変更*/
/* .story
-------------------------------------------------*/
.story {
  background: url("../images/story/sp/bg01.png") no-repeat;
  background-size: cover;
  margin-bottom: 2.6666666667vw;
  padding: 18.8vw 0 13.3333333333vw;
}
.story h2 {
  width: 31.7333333333%;
  margin: 0 auto 19.7333333333vw;
}
.story p {
  width: 98.1333333333%;
  margin: 0 auto;
}

/* .character
-------------------------------------------------*/
.character {
  position: relative;
  background: rgba(255, 248, 235, 0.8);
  margin-bottom: 8vw;
  padding: 4vw 0 8.6666666667vw;
}
.character::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  width: 100%;
  height: 8.2666666667vw;
  background: url("../images/character/sp/bg01.png") no-repeat center top;
  background-size: cover;
  z-index: 1;
}
.character h2 {
  position: relative;
  width: 59.3333333333%;
  margin: 0 auto 4.8vw;
  z-index: 10;
}
.character .character-list li {
  width: 93.8666666667%;
  margin: 0 auto 2.9333333333vw;
}

/* .recommend
-------------------------------------------------*/
.recommend {
  position: relative;
  background: url("../images/recommend/sp/bg01.png") center -0.6666666667vw;
  margin-bottom: 8vw;
  padding: 97.3333333333vw 0 13.3333333333vw;
}
.recommend::before {
  position: absolute;
  display: block;
  content: "";
  top: -8.2666666667vw;
  width: 100%;
  height: 105.6vw;
  background: url("../images/recommend/sp/chara.png") no-repeat left top;
  background-size: cover;
  z-index: 1;
}
.recommend::after {
  position: absolute;
  display: block;
  content: "";
  bottom: 0;
  width: 100%;
  height: 8.2666666667vw;
  background: url("../images/recommend/sp/bg02.png") no-repeat center bottom;
  background-size: cover;
  z-index: 1;
}
.recommend h2 {
  position: absolute;
  top: 4.2666666667vw;
  right: 2.9333333333vw;
  width: 64.9333333333%;
  z-index: 10;
}
.recommend p {
  position: absolute;
  top: 25.2vw;
  right: 1.2vw;
  width: 52.4%;
  z-index: 10;
}
.recommend .recommend-list:first-of-type {
  margin-bottom: 6.9333333333vw;
}
.recommend .recommend-list li {
  width: 95.3333333333%;
  margin: 0 auto 2.6666666667vw;
}
.recommend h3 {
  width: 67.0666666667%;
  margin: 0 auto 2.9333333333vw;
}

/* .bonus
-------------------------------------------------*/
.bonus {
  position: relative;
  background: rgba(216, 247, 255, 0.8);
  margin-bottom: 12vw;
  padding: 4vw 0 8vw;
}
.bonus::before {
  position: absolute;
  display: block;
  content: "";
  top: 0;
  width: 100%;
  height: 8.2666666667vw;
  background: url("../images/bonus/sp/bg01.png") no-repeat center top;
  background-size: cover;
  z-index: 1;
}
.bonus h2 {
  position: relative;
  width: 88.1333333333%;
  /*margin: 0 auto mixin.vw(200);*/
  margin: 0 auto 2.6666666667vw;
  z-index: 10;
}
.bonus .comingsoon {
  width: 68.8%;
  margin: 0 auto;
}
.bonus ul {
  width: 95.3333333333%;
  margin: 0 auto;
}
.bonus ul li {
  margin-bottom: 2.6666666667vw;
}
.bonus .bonus-list {
  position: relative;
}
.bonus .bonus-list div {
  position: absolute;
  top: 51.4666666667vw;
  right: 5.8666666667vw;
  width: 36.6666666667%;
}
.bonus .note {
  width: 90.6666666667%;
  margin: 2.6666666667vw auto 0;
  font-size: 2.9333333333vw;
}

/* .books
-------------------------------------------------*/
.books {
  padding: 0 0 8vw;
}
.books h2 {
  width: 53.0666666667%;
  margin: 0 auto 8.6666666667vw;
}
.books .information {
  width: 92%;
  background: rgba(255, 253, 249, 0.8);
  margin: 0 auto 10px;
  padding: 8.1333333333vw 0;
}
.books .cover {
  width: 55.2%;
  margin: 0 auto 3.6vw;
  border: 2px solid #ff9900;
}
.books .btn {
  margin-bottom: 6.2666666667vw;
}
.books .btn li {
  width: 58%;
  margin: 0 auto;
}
.books .btn li:first-child {
  margin-bottom: 1.3333333333vw;
}
.books .book-information {
  width: 88.5333333333%;
  margin: 0 auto;
}
.books .book-information .book-data {
  text-align: center;
  margin-bottom: 6vw;
  padding-bottom: 6.1333333333vw;
  border-bottom: 1px solid #262626;
}
.books .book-information .book-data h3 {
  font-weight: 700;
  font-size: 40px;
  font-size: 5.8666666667vw;
  text-align: center;
  line-height: 1.1;
  margin-bottom: 3.4666666667vw;
}
.books .book-information .book-data p {
  font-size: 20px;
  font-size: 4.2666666667vw;
  line-height: 1;
}
.books .book-information .book-data .author {
  margin-bottom: 1.3333333333vw;
}
.books .book-information .book-data .illustrator {
  margin-bottom: 2.6666666667vw;
}
.books .book-information .book-data .isbn {
  font-size: 20px;
  font-size: 2.9333333333vw;
  line-height: 1.5;
}
.books .book-information .outline p {
  font-size: 20px;
  font-size: 3.2vw;
  line-height: 1.6;
  margin-bottom: 5.8666666667vw;
}
.books .book-information .outline p:last-of-type {
  margin-bottom: 0;
}
.books .book-information .outline .lead {
  color: #ff4885;
  font-weight: 700;
  font-size: 26px;
  font-size: 4.2666666667vw;
  font-feature-settings: "palt";
  letter-spacing: 0.15em;
  line-height: 1.3;
  margin-bottom: 4.8vw;
}

/* .pagetop
-------------------------------------------------*/
.pagetop {
  position: fixed;
  right: 1.3333333333vw;
  bottom: 2.9333333333vw;
  width: 8.2666666667%;
  z-index: 100;
}

.pagetop a {
  display: block;
}

/* footer
-------------------------------------------------*/
footer {
  text-align: center;
  background: #44271f;
  padding: 4vw 0 11.3333333333vw;
}
footer .bnr {
  width: 89.3333333333%;
  margin: 0 auto 4vw;
}
footer .logo {
  width: 34.2666666667%;
  margin: 0 auto 4.4vw;
}
footer .sns {
  display: flex;
  justify-content: center;
  margin-bottom: 4.9333333333vw;
}
footer .sns li {
  margin: 0 1.3333333333vw 0;
}
footer .copyright {
  font-size: 16px;
  font-size: 2.5333333333vw;
  color: #ffede4;
}

/* .shoplist
-------------------------------------------------*/
.shoplist .contents-inner {
  background-color: #fefdfb;
  padding-bottom: 4.9333333333vw;
}
.shoplist h1 {
  margin-bottom: 2.9333333333vw;
}
.shoplist table {
  width: 92.1875%;
  font-size: 14px;
  color: #000;
  line-height: 1.5;
  vertical-align: middle;
  margin: 0 auto;
}
.shoplist table th {
  white-space: nowrap;
  font-weight: bold;
  text-align: center;
  background: #ffced2;
  padding: 2%;
  border: solid 1px #656565;
}
.shoplist table td {
  padding: 2%;
  border: solid 1px #656565;
  border-top: none;
  border-left: none;
}

@media print, screen and (min-width: 751px) {
  main::before {
    background: url(../images/global/bg.png) 50% 50%/30% auto;
  }

  /* .kv
  -------------------------------------------------*/
  .kv {
    width: 100%;
    height: 996px;
    background: #fff2df url("../images/kv/pc/kv-bg01.jpg") no-repeat center 74px;
    margin-bottom: 0;
  }
  .kv::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    width: 100%;
    height: 109px;
    background: url("../images/kv/pc/kv-bg02.png") repeat-x;
    z-index: 5;
  }
  .kv::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    width: 100%;
    height: 169px;
    background: url("../images/kv/pc/kv-bg03.png") repeat-x;
    z-index: 5;
  }
  .kv .contents-inner {
    position: relative;
    width: 1060px;
    height: 996px;
    background: url("../images/kv/pc/kv.jpg") no-repeat center top;
    margin: 0 auto;
    /*z-index: 1;*/
  }
  .kv .chara {
    top: -2px;
    left: 208px;
    width: 624px;
    height: 996px;
    /*      transform: translateX(-50%);
          -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);*/
    z-index: 10;
  }
  .kv h1 {
    top: 554px;
    left: 90px;
    width: 702px;
  }
  .kv .catch01 {
    top: 22px;
    left: 35px;
    width: 339px;
  }
  .kv .catch02 {
    top: 5px;
    right: 32px;
    width: 332px;
  }
  .kv .release {
    top: 124px;
    left: 763px;
    width: 113px;
  }
  .kv .author {
    top: 124px;
    left: 93px;
    width: 135px;
  }
  .kv .box-cover {
    width: 171px;
  }
  .kv .box-cover .cover {
    top: 124px;
    right: 0;
    width: 166px;
    border: 3px solid #fff;
  }
  .kv .box-cover .cover img {
    border: 1px solid #ff9900;
  }
  .kv .box-cover .btn {
    top: 384px;
    right: 0;
    left: auto;
    width: 171px;
  }
  .kv .box-cover .btn li:first-child {
    margin-bottom: 12px;
  }
  .kv .catch03 {
    position: absolute;
    top: 650px;
    left: 52px;
    width: 978px;
  }

  /* .navigation
  -------------------------------------------------*/
  nav {
    position: relative;
    margin-bottom: 40px;
    z-index: 20;
  }

  .navigation-menu {
    height: 68px;
  }
  .navigation-menu li {
    margin-right: 37px;
  }
  .navigation-menu li:first-child {
    width: 106px;
  }
  .navigation-menu li:nth-child(2) {
    width: 126px;
  }
  .navigation-menu li:nth-child(3) {
    width: 126px;
  }
  .navigation-menu li:nth-child(4) {
    width: 86px;
  }
  .navigation-menu li:last-child {
    width: 86px;
  }

  /* .pv
  -------------------------------------------------*/
  .pv {
    background: url("../images/pv/pc/bg01.png");
    margin-bottom: 50px;
    padding: 31px 0 51px;
  }
  .pv h2 {
    width: 590px;
    margin: 0 auto 31px;
  }
  .pv .comingsoon {
    width: 345px;
  }

  .pv .movie .movieSlider {
    position: static;
    width: 870px;
    margin: 0 auto;
  }

  .pv .movie .movieSlider .item {
    position: relative;
    font-size: 0;
    text-align: center;
    margin: 0 20px;
  }

  .pv .movie .movieSlider .item a::after {
    width: 124px;
    height: 124px;
    margin: -62px 0 0 -62px;
    background-size: 124px;
  }

  .pv .movie .movieSlider .item img {
    width: auto;
  }

  /* .story
  -------------------------------------------------*/
  .story {
    position: relative;
    width: 100%;
    background: #ffefd3;
    margin-bottom: 50px;
    padding: 30px 0 130px;
  }
  .story::before {
    position: absolute;
    display: block;
    content: "";
    top: -50px;
    width: 100%;
    height: 1105px;
    background: url("../images/story/pc/bg01.png") no-repeat center top;
    z-index: 1;
  }
  .story::after {
    position: absolute;
    display: block;
    content: "";
    bottom: 0;
    width: 100%;
    height: 41px;
    background: url("../images/story/pc/bg02.png") repeat-x center bottom;
    z-index: 10;
  }
  .story h2 {
    position: relative;
    width: 238px;
    margin: 0 auto 100px;
    z-index: 10;
  }
  .story p {
    position: relative;
    width: 915px;
    z-index: 10;
  }

  /* .character
  -------------------------------------------------*/
  .character {
    margin-bottom: 50px;
    padding: 30px 0 56px;
  }
  .character::before {
    height: 48px;
    background: url("../images/character/pc/bg01.png") repeat-x;
    background-size: auto;
  }
  .character h2 {
    position: relative;
    width: 445px;
    margin: 0 auto 37px;
  }
  .character .character-list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 968px;
    margin: 0 auto;
  }
  .character .character-list li {
    width: 468px;
    margin: 0 0 38px;
  }

  /* .recommend
  -------------------------------------------------*/
  .recommend {
    background: url("../images/recommend/pc/bg01.png") center 3px;
    margin-bottom: 50px;
    padding: 30px 0 80px;
  }
  .recommend::before {
    position: absolute;
    display: block;
    content: "";
    top: -50px;
    left: calc(50% - 488px);
    width: 646px;
    height: 596px;
    background: url("../images/recommend/pc/chara.png") no-repeat center top;
    background-size: auto;
    z-index: 1;
  }
  .recommend::after {
    height: 47px;
    background: url("../images/recommend/pc/bg02.png") repeat-x center bottom;
    background-size: auto;
  }
  .recommend h2 {
    position: absolute;
    top: 32px;
    right: calc(50% - 450px);
    width: 487px;
  }
  .recommend p {
    top: 193px;
    right: calc(50% - 401px);
    width: 262px;
  }
  .recommend .recommend-list {
    position: relative;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 984px;
    margin: 0 auto;
    padding: 0;
    z-index: 10;
  }
  .recommend .recommend-list li {
    width: 478px;
    margin: 0 0 10px;
  }
  .recommend .recommend-list:first-of-type {
    margin-bottom: 43px;
    padding-top: 432px;
  }
  .recommend .recommend-list:first-of-type li:nth-last-child(-n+2) {
    margin-bottom: 0;
  }
  .recommend .recommend-list:nth-of-type(2) li:last-child {
    margin-top: -90px;
  }
  .recommend h3 {
    width: 503px;
    margin: 0 auto 13px;
  }

  /* .bonus
  -------------------------------------------------*/
  .bonus {
    margin-bottom: 80px;
    padding: 30px 0 51px;
  }
  .bonus::before {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    width: 100%;
    height: 44px;
    background: url("../images/bonus/pc/bg01.png") repeat-x center top;
    background-size: auto;
  }
  .bonus h2 {
    width: 661px;
    margin: 0 auto 34px;
    z-index: 10;
  }
  .bonus .comingsoon {
    width: 345px;
  }
  .bonus ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 888px;
    margin: 0 auto;
  }
  .bonus ul li {
    width: 429px;
    margin-bottom: 20px;
  }
 .bonus ul li.bonus_l{
    width: 888px;
    margin-bottom: 20px;
  }
  .bonus ul li:last-child {
    margin-bottom: 0;
  }
  .bonus .bonus-list div {
    position: absolute;
    top: 230px;
    right: 22px;
    width: 164px;
  }
  .bonus .note {
    width: 888px;
    margin: 20px auto 0;
    font-size: 12px;
  }

  /* .books
  -------------------------------------------------*/
  .books {
    padding: 0 0 70px;
  }
  .books h2 {
    width: 398px;
    margin: 0 auto 32px;
  }
  .books .information {
    display: flex;
    justify-content: space-between;
    width: 860px;
    padding: 43px 70px 52px;
  }
  .books .cover {
    width: 261px;
    margin: 0 0 29px;
  }
  .books .btn {
    width: 261px;
    margin-bottom: 0;
  }
  .books .btn li {
    width: 261px;
    margin: 0 auto;
  }
  .books .btn li:first-child {
    margin-bottom: 8px;
  }
  .books .book-information {
    width: 549px;
    margin: 0;
    padding-top: 6px;
  }
  .books .book-information .book-data {
    text-align: left;
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
  .books .book-information .book-data h3 {
    font-weight: 700;
    font-size: 30px;
    text-align: left;
    line-height: 1.1;
    margin-bottom: 10px;
  }
  .books .book-information .book-data p {
    font-size: 21px;
  }
  .books .book-information .book-data .author {
    margin-bottom: 6px;
  }
  .books .book-information .book-data .illustrator {
    margin-bottom: 12px;
  }
  .books .book-information .book-data .isbn {
    font-size: 14px;
    line-height: 1;
  }
  .books .book-information .outline p {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 30px;
  }
  .books .book-information .outline p:last-of-type {
    margin-bottom: 0;
  }
  .books .book-information .outline .lead {
    font-size: 21px;
    font-weight: bold;
    margin-bottom: 30px;
  }

  /* .pagetop
  -------------------------------------------------*/
  .pagetop {
    right: 15px;
    bottom: 16px;
    width: 62px;
  }

  /* footer
  -------------------------------------------------*/
  footer {
    padding: 30px 0 38px;
  }
  footer .bnr {
    width: 470px;
    margin: 0 auto 30px;
  }
  footer .logo {
    width: 135px;
    margin: 0 auto 30px;
  }
  footer .sns {
    margin-bottom: 32px;
  }
  footer .sns li {
    margin: 0 12px 0 0;
  }
  footer .sns .fb_iframe_widget {
    height: 20px;
  }
  footer .copyright {
    font-size: 12.7px;
  }

  /* .shoplist
  -------------------------------------------------*/
  .shoplist .contents-inner {
    width: 640px;
    margin: 0 auto;
    padding-bottom: 37px;
  }
  .shoplist h1 {
    width: 100%;
    margin-bottom: 22px;
  }
  .shoplist table {
    width: 590px;
  }
  .shoplist table th {
    padding: 12px;
  }
  .shoplist table td {
    padding: 12px;
  }

  footer.footer-shoplist {
    width: 640px;
    margin: 0 auto;
  }
}
/*# sourceMappingURL=style.css.map */